﻿/*#region VARIABLES*/
/*********** VARIABLES **********/
:root {
  --primary-p100: #fdf9f7;
  --primary-p200: #f8f2ed;
  --primary-p300: #99816a;
  --primary-p400: #543310;
  --secondary-s400: #dc7507;
  --secondary-s50: #4f4f4f;
  --black-b100: #dfdfdf;
  --black-b200: #9f9f9f;
  --black-b300: #222;
  --black-b400: #000000;
  --gray-g100: #f3f3f3;
  --gray-g200: #dadadb;
  --gray-g300: #b4b4b6;
  --gray-g400: #737375;
  --bg-400: #f2f1f0;
  --success: #4cb64c;
  --error: #e3503e;
  --warning: #f3a638;
  --processing: #54b7d3;
  --shipped: #7630ea;
}

/*#endregion VARIABLES*/

/***************** CUSTOM APPOINTMENT PAGE ******************/
.appointment .appointment__details .appointment__details__price {
  font-weight: 700;
}

.appointment .appointment__details .appointment__details__price .actual-price {
  font-size: 32px;
  font-weight: 500;
}

.appointment .appointment__details .appointment__details__price .discounted-price {
  color: #666;
  font-size: 22px;
  text-decoration: line-through;
}

.appointment__form__container {
  background-image: url(../images/appointment-form-bg.png);
  background-size: 30vw;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-color: #F9F6F1;
}

.appointment .appointment__details .button {
  width: fit-content;
}

.appointment__form {
  max-width: 90%;
  margin: 0 auto;
}

.appointment .appointment__page {
  margin-top: 20px;
}


.appointment .appointment-top__image__container {
  height: 300px;
}

.appointment .appointment-top__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.appointment_heading {
  color: var(--primary-p400);
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 10px;
}

.ladily-form .ladily-form__label {
  display: block;
  margin-bottom: 8px;
  text-align: left;
  text-transform: capitalize
}

@media screen and (min-width: 320px) and (max-width: 345px) {
  .h6 {
    font-size: 10px !important;
  }
}

@media only screen and (min-width: 576px) {
  .appointment__form {
    max-width: 50%;
  }

  .appointment .appointment-top__image__container {
    height: 400px;
  }

  .cart-collaterals .current-code {
    font-size: 20px;
    justify-content: left;
  }
}


.message-box_success {
  box-shadow: 0 15px 25px #00000019;
  padding: 24px;
  width: 100%;
  text-align: center;
  margin: 40px auto;
  border-bottom: solid 4px var(--primary-p400);
}

.message-box_success h2 {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 24px;
}

.message-box_success p {
  margin-bottom: 0px;
  font-size: 16px;
}

@media only screen and (min-width: 768px) {
  .message-box_success {
    width: 80%;
    padding: 45px;
  }

  .message-box_success h2 {
    font-size: 32px;
  }

  .message-box_success p {
    margin-bottom: 0px;
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) {
  .message-box_success {
    width: 60%;
  }
}

@media only screen and (min-width: 1400px) {
  .message-box_success {
    width: 50%;
  }
}

.custom-check-icon {
  display: inline-block;
  background-color: #4CB64C;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-check-icon svg {
  width: 62px;
  height: 62px
}


.ladily-form .ladily-form__file-upload {
  width: 100%;
  min-height: 180px;
  padding: 14px;
  border: 1.5px dashed #A6A6A6;
  display: flex;
  gap: 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
}

.ladily-form .ladily-form__file-upload .title {
  font-size: 24px;
  font-weight: 700;
}


.ladily-form .ladily-form__file-upload svg {
  width: 32px !important;
  height: 32px !important;
}

.ladily-form .ladily-form__file-upload input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.ladily-form .ladily-form__file-upload #image-preview .img-remove-btn svg {
  width: auto !important;
  height: auto !important;
  color: #fff;
}

.ladily-form .ladily-form__file-upload #image-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  justify-items: center;
}

.order-list-page .order-list .order-card-animation:not(:last-child) {
  margin-bottom: 30px;
}


.order-status.scheduled {
  color: var(--shipped);
  background-color: #f0e8fd;
}

.order-status.completed {
  color: var(--success);
  background-color: #e1f3e1;
}

.appointment-details-page__header__title {
  text-transform: capitalize;
  color: var(--primary-p400);
  font-weight: 500 !important;
}

.appointment-billing .billing-info__list {
  line-height: 1.5;
}

.appointment-billing .appointment-customer-edit {
  display: flex;
  align-items: center;
}

.appointment-billing .appointment-customer-edit svg {
  height: 15px;
}

.image-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.image-grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-grid-item img {
  width: 100%;
  max-height: 100px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 5px;
}

#appointmentImageModal .modal-header {
  justify-content: space-between;

}

#appointmentImageModal .modal-header span {
  font-size: 30px;
}

#appointmentImageModal .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
}


.order-details-page
.appointment-details-page__header__back {
  cursor: pointer;
}

.order-details-page
.appointment-details-page__header__back
svg {
  width: 16px;
}

.order-details-page
.appointment-details-page__header__back
p {
  color: var(--primary-p400);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

@media only screen and (min-width: 1200px) {
  .order-details-page
  .appointment-details-page__header__back
  svg {
    width: 20px;
  }

  .order-details-page
  .appointment-details-page__header__back
  p {
    font-size: 24px;
  }
}


.payment-wrapper .payment-details {
  text-align: center;
  font-size: 12px;
}

.visually-hidden:checked + .method-name {
  border: 2px solid var(--primary-p400) !important;
}

.payment-wrapper .payment-details {
  text-align: center;
  font-size: 12px;
}

.payment-method .payment-details {
  display: block;
  width: auto;
  min-width: 0;
  margin: 10px 0 0;
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .ladily-checkout .checkout-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 110px;
  }
}

.ladily-checkout-shipping-address {
  border: 1.5px solid #e4e4e4;
  border-radius: 5px;
  padding: 32px;
}

.shipping-offcanvas .shipping-address__cards .shipping-address__card {
  background-color: white !important;
}

.form-check-input:checked {
  background-color: var(--primary-p400);
  border-color: var(--primary-p400);
}

.advance-payment-input .form-check .form-check-input {
  border-color: var(--primary-p400);
}

.form-check-input[type=radio] {
  border-radius: 50%;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.checkout-page .section {
  margin: 0 0 30px;
}

.checkout-page .section.order-summary {
  margin: 100px 0 30px;
}

.checkout-page .cart-options {
  min-height: 60px;
  overflow: hidden;
}

.checkout-page .cart-footer {
  border-top: none;
}

.checkout-page .total-info {
  margin: 0;
  border-bottom: none;
  padding: 5px 20px 10px;
}


.checkout-page .address-item {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 40px;
}

.checkout-page .address-item ul {
  margin: 0 0 15px;
  background-color: #f9f9f9;
  padding: 20px;
  color: #444;
}

.checkout-page .address-item li {
  padding: 5px 0;
}

.checkout-page .address-item li.name {
  font-size: 16px;
  font-weight: bold;
}

.enter-address .message-error {
  margin: 20px 0;
}

.enter-address .edit-address {
  background-color: #f9f9f9;
  border-top: 1px solid #e6e6e6;
  margin: 0 0 30px;
  padding: 30px 15px;
}

.checkout-page .checkout-page__section .checkout-page__section__title {
  text-transform: uppercase;
  color: var(--primary-p400);
  font-weight: 700 !important;
  margin-bottom: 18px !important;
}

.order-summary__container {
  border: 1.5px solid #A6A6A6;
  border-radius: 0px;
  padding: 14px;
}

/* payment method */
.order-summary__container .method-name {
  cursor: pointer;
  width: 110px;
  height: 90px;
  border: 2px solid #e4e4e4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.order-summary__container .method-list {
  gap: 20px;
  flex-wrap: wrap;
}

.order-summary__container .method-list li:not(:last-child) {
  margin-bottom: 0 !important;
}


/* when radio button is checked */
.visually-hidden:checked + .method-name {
  border: 2px solid var(--primary-p400) !important;
}


.payment-wrapper .payment-details {
  text-align: center;
  font-size: 12px;
}

.visually-hidden:checked + .method-name {
  border: 2px solid var(--primary-p400) !important;
}

.payment-wrapper .payment-details {
  text-align: center;
  font-size: 12px;
}

.payment-method .payment-details {
  display: block;
  width: auto;
  min-width: 0;
  margin: 10px 0 0;
  text-align: center;
}

.ladily-form .ladily-form__input-text {
  border-radius: 5px;
}

.ladily-form .ladily-form__input-select {
  border-radius: 5px;
}

.ladily-checkout-shipping-address {
  border: 1.5px solid #A6A6A6;
  border-radius: 5px;
  padding: 32px;
}

#ladily-appointment-form .ladily-form__label-box {
  display: flex;
  justify-content: space-between;
}

  #ladily-appointment-form .ladily-form__label-box span {
    font-size: 20px;
    font-weight: normal;
    color: var(--error);
  }