#cart_page {
  background-color: #f6f6f7;
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
    gap: 10px;
    .hover_btn{
      border-color: #ff5e00;
      background-color: #ff5e00;
      .button_arrow{
        color: #ff5e00;
      }
      &:hover{
        .button_arrow{
          color: #fff;
          background-color: #ff5e00;
        }
        .button_text{
          color: #fe5e00;
        }
      }
    }
  }
  .line-item {
    position: relative;
    padding: 20px 14px;
    width: 100%;
    background-color: white;

    .line-remove-icon {
      border: 2px solid #681e77;
      border-radius: 50%;
      display: flex;
      color: #681e77;
      justify-content: center;
      align-items: center;
      &::before{
        color: #681e78;
      }
    }

    .line-image {
      img {
        border-radius: 5px;
      }
    }

    .line-details {
      flex: 1;

      span.category {
        font-family: "Lato", serif;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.5;
        color: #00000080;
        margin-bottom: 3px;

        @media (max-width: 767px) {
          font-size: 10px;
        }
      }

      .title {
        font-family: "Lato", serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        text-align: left;

        @media (max-width: 767px) {
          font-size: 12px;
        }
      }

      .mobile-quantity {
        display: none !important;

        @media (max-width: 767px) {
          margin-top: 10px;
          display: flex !important;
          justify-content: space-between;
          align-items: center;
        }
      }
    }

    .quantity-price {
      @media (max-width: 767px) {
        display: none !important;
      }
    }

    .quantity-form {
      .form-group {
        .minus-icon,
        .plus-icon {
          border: 1px solid #681e77;
          cursor: pointer;
          display: flex;
          align-items: center;
          &::before{
            color: #681e78;
          }
        }

        svg {
          @media (max-width: 767px) {
            width: 18px;
            height: 18px;
          }
        }

        input.quantity {
          width: 30px;
          padding: 0px 3px;
          -moz-appearance: textfield;
          font-size: 16px;
          text-align: center;
          height: 30px;
          font-weight: 600;
          border-radius: 0px;
          background: #fff;
          border: 0.2px solid #681e77;

          @media (max-width: 767px) {
            font-size: 12px;
            width: 25px;
            height: 25px;
          }

          &::-webkit-outer-spin-button,
          &::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
          }
        }
      }
    }

    .line-price {
      display: flex;
      align-items: flex-end;
      span {
        font-family: "Lato", serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
        color: #681e77;

        @media (max-width: 767px) {
          font-size: 14px;
        }
      }
    }
  }
}

.cart-item {
  border-radius: 5px;
  background-color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  row-gap: 10px;
  padding-left: 12px;
  padding-right: 12px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  input.quantity {
    width: 30px;
    padding: 0px !important;
    -moz-appearance: textfield;
    font-size: 16px;
    outline: none;
    text-align: center;
    height: 30px;
    font-weight: 600;
    border-radius: 0px;
    background: #fff;
    border: 0.8px solid #681e77;

    @media (max-width: 767px) {
      font-size: 12px;
      width: 25px;
      height: inherit;
    }

    &::-webkit-outer-spin-button,
    &::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }
  }
}
.line-amount {
  span.label {
    font-size: 13px;
    display: block;
    font-weight: 600;
    line-height: 1.5;
    color: #00000080;
    margin-bottom: 3px;
    @media (max-width: 767px) {
      font-size: 10px;
    }
  }
  span.line-price {
    font-size: 18px;
    color: #681e77;
    font-weight: 600;
    @media (max-width: 767px) {
      font-size: 14px;
    }
  }
}
.remove {
  border: 0.5px solid #681e77;
  border-radius: 50%;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  @media (max-width:640px) {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 8%;
    right: 2%;
  }
}
.remove i {
  font-size: 16px;
  color: #681e77;
  @media (max-width:640px) {
    font-size: 14px;
  }
}

.decrease,
.increase,
.quantity {
  border: 0.8px solid #681e77;
}
.decrease{
  border-right: none;
}

.increase{
  border-left: none;
}
.vendor {
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.item-price {
  font-size: 18px;
  color: #681e77;
  font-weight: 600;
  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.cart-page-empty>.d-flex {
  margin-bottom: 40px;
}
.min-vh-100.align-items-center.cart-page-empty {
  min-height: fit-content !important;
}
.cart-page-empty{
  h2{
    font-size: 18px;
    font-weight: 400;
    max-width: 640px;
    line-height: 1.5;
    margin-bottom: 0;
    @media (max-width:768px) {
      font-size: 14px !important;
    }
  }
  .hover_btn{
    border-color: #ff5e00;
    background-color: #ff5e00;
    .button_arrow{
      color: #ff5e00;
    }
    &:hover{
      .button_arrow{
        color: #fff;
        background-color: #ff5e00;
      }
      .button_text{
        color: #fe5e00;
      }
    }
  }
}

.price_form {
  width: 50%;
  form {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
  label {
    cursor: pointer;
  }
  input[type="checkbox"] {
    accent-color: #681e77;
  }
}
.cart-item-name {
  font-weight: 600;
}
.cart-item-width {
  max-width: 200px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .price_form {
    width: 100%;
  }
  .appointment-btn {
    width: 100% !important;
  }
  .cart-item-name {
    font-size: 14px;
  }
}
/* coupon code */

.promo_code {
  .form-group {
    position: relative;
    input {
      padding: 10px;
      width: 100%;
      padding-right: 50px;
      text-transform: capitalize;
      border-radius: 5px;
      border: 1px solid #877575;
    }
    button {
      position: absolute;
      top: auto;
      bottom: auto;
      right: 5%;
      width: 32px;
      height: 32px;
      background-color: #681e77;
      border-radius: 50%;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      i {
        color: white;
        font-size: 16px;
      }
    }
  }
}

.newsletter_text {
  width: 300px;
}

.pe-md-5 {
  margin-right: 58px !important;
}

@media (max-width: 640px) {
  .pe-md-5 {
    margin-right: 0 !important;
  }
}

/* dropdown */
em.error.help-block {
  font-size: 12px;
  font-family:  "Lato", serif;
  text-transform: capitalize;
  font-weight: 600;
  color: #e1020280;
}
.cart_dropdown {
  background-color: transparent;
  color: #877575;
  text-align: start;
  outline: none;
  position: relative;
  padding-top: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  border: 1px solid #877575 !important;
}

.cart_dropdown:hover {
  background-color: unset;
  color: #877575;
}
.cart_dropdown:focus {
  background-color: unset;
  color: #877575;
  box-shadow: none;
}
.cart_dropdown:active {
  background-color: unset;
  color: #877575;
}

.cart_dropdown::after {
  display: none;
}

.cart_dropdown::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  color: #681e77;
}

.form_cart_price {
  color: #681e77;
}
#cart_page{
  .submit-button {
    border-color: #ff5e01;
    padding: 8px 0px;
    background-color: #ff5e01;
    &:hover{
      color: #ff5e01;
    }
  }

}
.discount_title {
  font-size: 18px;
  font-weight: 600;
  font-family: "Lato", serif;
  @media (max-width: 768px) {
    font-size: 14px;
  }
}
.hidden-important {
  display: none !important;
}

.discount_title {
  color: #fe5e00;
}
