html {
  scroll-behavior: smooth;
}
body{
  background-color: #f4f4f5;
  line-height: 1.2;
}

input::placeholder{
  font-weight: 300 !important;
  opacity: 0.5 !important;
  /*color: #eee !important;*/
}

.full-page-loader::before {
  display: block;
  content: " ";
  opacity: 0.1;
  background: #000;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: 99999;
}

p[id^=error] {
    margin: 0;
    display: block;
}

p[id^=error] > strong {
    font-weight: normal;
    font-size: 13px;
}

.input-group-text{
  padding: .83rem 1.2rem;
}

.btn-lg{
  padding: .5rem 3.4rem !important;
}

.bg-light-green {
  background-color: #f1f7f3;
}

.btn-success {
  background-color: #417A73;
  border-color: #417A73;
}
.btn-status-pill{
  font-size: 11px; line-height: .8; letter-spacing: .07em;
  color: #fff; text-transform: uppercase; cursor: auto; white-space: nowrap;
}

.btn.btn-pill {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.customer-label{
  font-size: 11px;display: block;color: #6c757d;letter-spacing: .05rem;font-weight: 400; text-transform: uppercase;
}
.user-avatar{
  border-radius: 50%;background: #eee;width: 100px;height: 100px;font-weight: bold;font-size: 50px;display: flex; align-items: center; justify-content: center;margin: 0 auto;
}

.page-header{
  background: #417A73;
  margin: 0 -.75rem;
  padding: 10px .75rem 10px;
  z-index: 9;
  /* padding-bottom: 0; */
}

.page-header + .row:before{
  content: " ";
  background-color: #417A73;
  z-index: 10;
  width: 100%;
  display: block;
  height: 30px;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

.page-body{
  margin-top: -30px;
}

.card-title{
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #0f0f10;
  display: flex;
  justify-content: space-between;
  height: auto;
  background: transparent;
}

@media (max-width: 767px) {
  .btn-new-order-order-detail {
      position: fixed;
      width: calc(100% - 50px);
      z-index: 99;
      bottom: 42px;
      left: 0;
      right: 0;
      margin: 0 auto;
  }
}


/** modal-dialog */
.modal-dialog .card-header{
  background: transparent;
}
.modal-dialog .card-title{
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: capitalize;
    color: #0f0f10;
    display: flex;
    justify-content: space-between;
    height: auto;
    background: transparent;
}
.modal-dialog .close{
    width: 35px;
    height: 35px;
    color: #000;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    outline: none;
}

/**Modal Left / Right**/
.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
      -ms-transform: translate3d(0%, 0, 0);
       -o-transform: translate3d(0%, 0, 0);
          transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
  padding: 15px 15px 80px;
}

/*Left*/
.modal.left.fade .modal-dialog{
  left: -100%;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
     -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
       -o-transition: opacity 0.3s linear, left 0.3s ease-out;
          transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.show .modal-dialog{
  left: 0;
}

/*Right*/
.modal.right.fade .modal-dialog {
  right: -100%;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
     -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
       -o-transition: opacity 0.3s linear, right 0.3s ease-out;
          transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
  right: 0;
}

/*Right > BottomSheet for mobile layout*/
@media (max-width: 767.98px) {
    /* Custom class to position the modal at the bottom */
    .right > .modal-dialog {
        right: auto !important;
        position: fixed;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        height: auto !important;
        max-height: 80vh; /* Adjust this to control how high the sheet can expand */
        overflow-y: auto; /* Enable scrolling if needed */
        border-radius: 20px 20px 0 0; /* Rounded corners for aesthetics */
    }
    .right.show > .modal-dialog {
      animation: slide-up 0.3s ease-out !important; /* Animation for sliding up */
    }
    .modal.right .modal-content{
    /* padding-bottom: 60px;*/ /** Need to check how it impact in frontend */
      min-height: 50vh;
      max-height: 80vh;
      border-radius: 20px 20px 0 0;
    }
    .modal.right .modal-header{
        border-radius: 20px 20px 0 0;
    }
    .modal-dialog .close{
      right: 1rem;
      top: 1rem;
      padding:0;
      margin: 0;
    }

    /* Slide-up animation when the modal opens */
    @keyframes slide-up {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0%);
        }
    }

    /* Slide-down animation when the modal closes */
    @keyframes slide-down {
        from {
            transform: translateY(0%);
        }
        to {
            transform: translateY(100%);
        }
    }

    .right > .modal-dialog {
    /* Apply slide-down animation when the modal is closing */
        animation: slide-down 0.3s ease-out !important;
    }
}

/*Bottom*/
.modal.bottom{
  /* Custom class to position the modal at the bottom */
  & .modal-dialog {
    position: fixed;
    right: 0;
    left: 0;
    /*bottom: 0;*/
    bottom: -100%;
    @media (max-width: 767.98px) {
      width: 100%;
      max-width: 100%;
    }
    height: auto !important;
    max-height: 80vh; /* Adjust this to control how high the sheet can expand */
    border-radius: 20px 20px 0 0; /* Rounded corners for aesthetics */
    background: #ffffff;
    margin: auto;

    -webkit-transition: opacity 0.3s linear, bottom 0.3s ease-out;
     -moz-transition: opacity 0.3s linear, bottom 0.3s ease-out;
       -o-transition: opacity 0.3s linear, bottom 0.3s ease-out;
          transition: opacity 0.3s linear, bottom 0.3s ease-out;
  }
  &.show > .modal-dialog {
    /* Animation for sliding up */
    /*animation: slide-up 0.3s ease-out !important; */
  }
  & .modal-content{
    min-height: 50vh;
    max-height: 80vh;
    border-radius: 20px 20px 0 0;
  }
  & .modal-header{
      border-radius: 20px 20px 0 0;
  }
  & .modal-body{
    overflow-y: auto;
  }
  & .modal-dialog .btn-close{
    
  }
  &.fade .modal-dialog {
    bototm: -100%;
  }

  &.fade.show .modal-dialog {
    bottom: 0;
  }

  /* Slide-up animation when the modal opens */
  /*@keyframes slide-up {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0%);
    }
  }*/

  /* Slide-down animation when the modal closes */
  /*@keyframes slide-down {
    from {
      transform: translateY(0%);
    }
    to {
      transform: translateY(100%);
    }
  }

  & .modal-dialog {
    animation: slide-down 0.15s ease-out !important;
  }*/
}

/* ----- MODAL STYLE ----- */
.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  border-bottom-color: #EEEEEE;
  background-color: #FAFAFA;
  position: sticky;
  position: -webkit-sticky; top:0;
  z-index: 9;
}


/* ------ New Modal Style ------*/
.minimalist-modal {
  /* Parent styles here */
  /*display: flex;
  justify-content: center;*/

  & .modal-content {
    background: #FFFFFF; 
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 75%, rgba(203, 242, 232, 1) 100%);
    /*padding: 20px;*/
    border-radius: 16px;
  }

  & .modal-header {
    background: transparent;
    border: 0;
    display: contents;
    text-align: center;
  }
  & .modal-title{
    line-height: 1.1;
  }
  & .modal-subtitle {
    color: #a9afad;
  }
  & .modal-body {
    padding:2rem;
  }
  & .btn-close {
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-top: -1.45rem;
    right: 2.5rem;
    background-color: #cbf2e8;
    font-size: 18px;
    opacity: 1;
    background-clip: border-box;
    position: absolute;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: transform 0.3s ease;
  }
  & .btn-close:hover {
    transform: rotate(90deg);
  }

}

/* ── Auth modal: unified design matching checkout login modal ─────── */
.mn-auth-modal .modal-content {
  border: none;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: #fff;
  min-height: unset;
}

.mn-auth-modal .auth-form .form-group label,
.mn-auth-modal .auth-form .form-group > label {
  font-size: 13px;
  font-weight: 600;
  color: var(--mn-ink-1, #1a1a1a);
  margin-top: 3px;
  /*margin-bottom: 5px;*/
}

.mn-auth-modal .auth-form .form-group .form-control {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  background: #fafafa;
  padding: 11px 13px;
  box-shadow: none;
  height: auto;
}

.mn-auth-modal .auth-form .form-group .form-control:focus {
  border-color: var(--mn-primary, #e07b39);
  background: #fff;
  box-shadow: none;
}

.mn-auth-modal .auth-form button[type="submit"] {
  width: 100%;
  padding: 13px;
  border-radius: 50px;
  border: none;
  background: var(--mn-primary, #e07b39);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: opacity .15s;
  display: block;
}

.mn-auth-modal .auth-form button[type="submit"]:hover { opacity: .9; }

.mn-auth-modal .auth-form .text-right a,
.mn-auth-modal .auth-form .mn-lgm-forgot a {
  font-size: 12px;
  color: var(--mn-ink-2, #888);
  text-decoration: none;
}

.mn-auth-modal .auth-form .text-right a:hover,
.mn-auth-modal .auth-form .mn-lgm-forgot a:hover { color: var(--mn-primary, #e07b39); }

.mn-auth-modal .btn-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f0f0f0;
  box-shadow: none;
  opacity: 1;
  font-size: 12px;
  flex-shrink: 0;
}

.btn-order-option,
.additional-help a
{
  /*border-radius: 16px;
  padding: 10px;
  color: #333333;
  background: linear-gradient(145deg, #e9ecf6 0%, #fefefe 100%);
  border: 1px solid #e2dfed;*/

  position: relative;
  background: #f4f6f8;
  border-radius: 18px;
  padding: 10px 10px 14px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  cursor: pointer;
}
.btn-order-option::before,
.additional-help a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.btn-order-option::after,
.additional-help a::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e6b45e, transparent, #e6b45e);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}
.btn-order-option:hover,
.additional-help a:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    background: #ffffff;
}

.btn-order-option:hover::before,
.additional-help a:hover::before {
    opacity: 1;
}

.btn-order-option:hover::after,
.additional-help a:hover::after {
    opacity: 0.35;
}

.btn-order-option svg,
.additional-help a svg {
    font-size: 46px;
    /*margin-bottom: 12px;*/
    transition: transform 0.35s ease, color 0.3s ease;
}

.btn-order-option:hover svg,
.additional-help a:hover svg {
    transform: scale(1.12) rotate(-2deg);
}

.btn-order-option h4,
.additional-help a h4 {
    font-size: 15px;
    letter-spacing: .04rem;
    color: #5c6470;
    /*margin-bottom: 16px;*/
    /*font-size: 13px; 
    letter-spacing: 0.05em;*/
}

.btn-order-option button {
    /*background: linear-gradient(135deg, #e6b45e, #d6a24c);*/
    border: none;
    color: #fff;
    padding: 5px 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}

/* Button shimmer effect */
.btn-order-option button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    /*background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);*/
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.btn-order-option:hover .btn-order-option button::before {
    left: 140%;
}

/* Button hover */
.btn-order-option button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(214,162,76,0.35);
}

/* Click effect */
.btn-order-option button:active {
    transform: scale(0.96);
}

/* Selected / active method card — persists hover elevation + primary border + checkmark */
.btn-order-option--active {
    background: #ffffff;
    border: 2px solid var(--mn-primary, #e07b39);
    box-shadow: 0 8px 24px rgba(224, 123, 57, 0.18);
    transform: translateY(-4px) scale(1.01);
}

.btn-order-option--active::before {
    content: "✓";
    position: absolute;
    top: 8px;
    right: 10px;
    bottom: auto;
    left: auto;
    width: 22px;
    height: 22px;
    background: var(--mn-primary, #e07b39);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
    opacity: 1;
    z-index: 1;
}

.btn-order-option--active svg {
    fill: var(--mn-primary, #e07b39);
    transform: scale(1.1);
}

/*svg, svg polygon{
  fill: #000;
}*/

button.close{
  padding: 0;
  background-color: transparent;
  border: 0;
}


.page-header .header-merchant-info{
  display: grid;
  line-height: 1.2;
}

.page-header .merchant-name{
  color: #fff;
  font-size: 1.3em;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-header .merchant-address{
  padding: 0;
  margin: 0;
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.steps{
  color: rgba(255, 255, 255, 0.59);
  font-size: .8em;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.left-wrapper-sticky{
  background: #fff;
  z-index: 99;
  position: sticky;
  position: -webkit-sticky;
  top: 15px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,.125);
}

#service-body .left-wrapper-sticky{
  border-radius: 0.5rem;
  border-bottom:0;
}

.right-wrapper{
  z-index: 99;
  position: sticky;
  position: -webkit-sticky;
  top: 15px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.merchant-info{
  padding: 1.5rem 1.5rem 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,.125);
  background: #fff;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  position: relative;
}

.edit-delivery,
.edit-time{
  position: absolute;top: 1.5rem;right: 1.3rem;font-size: 20px;text-decoration: none;
}

.edit-time{
  top: .4rem;
}
/*Delivery Address Modal*/
#address {width: 100%;height: 50px;padding: 10px;border: 1px solid #999999;}
#sg_address { overflow: scroll; height: 250px; width: 100%; margin: 15px 0;}
#sg_address ul { list-style: none ; padding: 0; margin: 0;}
#sg_address ul li {
  list-style: none;
  margin: 0;
  padding: 15px 0px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fafafa;}
#sg_address ul li:hover{background-color: #eee;}

.pac-container {
  z-index: 10000 !important;
}
#map {width: 100%; height: 200px; border: 1px solid #ededed; margin: 10px 0;}
.map-help{ font-size: 13px; color: #999999; font-style: italic; line-height: 1.2; display: block;}
#infowindow-content{ padding: 10px; font-size: 14px; }
#place-name{ font-weight: bold; line-height: 1.4; }
#gm-ui-hover-effect{ top: 1px; right: 1px;}

#service-detail{
    border: 0;
    margin: 0 -1rem;
    border-radius: 0;
    overflow: auto;
    max-height: 55vh;
}

#service-form{
  padding-bottom:125px;
  margin-top: .5rem;
}

.anchor{
  top: -170px;
  position: absolute;
}

.service-group-menu-container{
  padding: 1rem 1.3rem; background-color: #fff; border-radius: .5rem;
}

#btn-service-group{
  padding: 0;
  text-decoration: none;
  color: #212529;
  font-weight: 600;
  outline: none;
  box-shadow:none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#btn-service-group .btn:focus{
  box-shadow:none;
}

.service-group-menu{
  list-style: none;
  padding: 0;
  margin: 0;
  white-space:nowrap;
}

.service-group-menu li{
  list-style: none; margin:0;
  display: block;
/*  padding: 0 0 .7rem 0rem;*/
  padding: 0;
}
.service-group-menu li ~ li{
  border-top: 1px solid #e9ecef;
/*  padding-top:  .7rem;*/
}
.service-group-menu li a{
  color: #495057;
  font-size: 1.2rem;
  text-decoration: none;
  white-space: normal;
  display: block;
  padding: .7rem;
}
.service-group-menu li a.active{
  /*color: #212529;
  font-weight: bold;*/
  color: var(--mn-primary);
  font-weight: bold;
  background: var(--mn-primary)33 !important;
  border: 1px solid var(--mn-primary) !important;
}

.service-group-menu li a:hover{
  color: var(--mn-primary);
}

.horizontal-scroll::-webkit-scrollbar {
  height: 4px;
}
.horizontal-scroll::-webkit-scrollbar-thumb {
  background: #0066CC;
  border-radius: 2px;
}
.horizontal-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}
.horizontal-scroll {
  overflow-x: auto; /* show horizontal scroll */
  overflow-y: hidden; /* hide vertical scroll */
  margin-right:15px;
}

.total-price-container{
  font-weight: bold;
}
#services{
  margin:0 -1rem;
}


#services.list-group {border-radius: 0; border-bottom-right-radius: 0.5rem; border-bottom-left-radius: 0.5rem}

.location-address{
  font-size: .9rem; line-height: 1.2;
}

.card {
  border: 0;
  border-radius: .5rem;
}

.list-group-item{
  border-right: 0;
  border-left: 0;
  padding: 1rem 1rem;
  border: 1px solid rgba(0,0,0,.06);
  border-right: 0;
  border-left: 0;
}

.list-group-item:last-child{
  border-bottom: 0;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

/* Example: Alternate colors for shadow list items */
#service-detail li.list-group-item:nth-child(even),
.left-wrapper li.list-group-item:nth-child(even){
  background-color: #fafbff;
}

#service-detail li.list-group-item:nth-child(odd),
.left-wrapper li.list-group-item:nth-child(odd) {
  background-color: #eef1f8
}


.book-button-wrapper{
  position: fixed; bottom: 0; right: 0; left: 0; background: #fff; z-index: 999;
}
.description{
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.3;
  color: #717171;
  letter-spacing: -.02rem;
}

.description p{
  margin-bottom: 5px;
}

.no-discount{
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
}

.price{
  font-weight: 200;
}

.font-weight-bold{
  font-weight: 600 !important;
}

.font-weight-bold .price{
  font-weight: bold;
}

/*.form-control{
  padding: .6rem .75rem;
}
.form-control:focus{
  box-shadow:none;
}*/
.form-control {
    border-radius: 5px !important;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*height: calc(2.7rem + 2px);*/
    border-color: #aab0ec;
    padding: .6rem .75rem;
}
.form-control:focus {
    box-shadow: none !important;
    border: 1px solid #5562eb;
}

.label, 
label {
    display: inline-block;
    margin-bottom: .15rem;
    color: #535354;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
}

.img-thumbnail{max-width: 100px; width: 100px; padding: 0; border: 0; }

.thumbnail-container{ width: 160px }
.thumbnail-container .img-thumbnail{max-width: 145px; width: 145px; padding: 0; height: 145px; object-fit: cover;}

.logo-container .img-thumbnail{ max-height: 55px; width: auto; }

.add-cart{
  width: 150px;
  text-align: center;
  font-size: 14px;
  height: 35px;
/*  font-weight: 600;*/
}

.btn-plus-minus-group{
  width: 150px;
  height: 35px;
}
.dec-cart,
.inc-cart{
  padding-left: 20px;
  padding-right: 20px;
}

.dec-show-cart,
.inc-show-cart{
  padding-left: 15px;
  padding-right: 15px;
  height: 30px !important;
  line-height: 1 !important;
}
.dec-show-cart~input.show-items{
  height: 30px !important;
}
.btn-plus-minus-group > .btn{
  border-color: #0d6efd;
  border-radius: 50px;
  height: 35px;
  line-height: 1.3;
  align-items: center;
}

.btn-plus-minus-group .spinner-border-sm{
  width: .8rem;
  height: .8rem;
  border-width: .15em;
}

.items {
  width: 50px !important;
}

.show-items {
  width: 40px !important;
}

.item-delete{
  position: absolute;
  right: 0px;
}

.cart-image{}

/** time **/
#times{
  margin:0 -1rem;
}

#times.list-group {border-radius: 0; border-bottom-right-radius: 0.5rem; border-bottom-left-radius: 0.5rem}

.datepicker.datepicker-dropdown.active.datepicker-orient-bottom{
  z-index: 8;
}

#times .list-group-item:first-child{
  border-bottom: 0;
}

#times .time-interval{
  font-size: 1rem;
  font-weight: 200;
}

/** customer **/
/*#customer{
  margin:0 -1rem;
}

#customer.list-group {border-radius: 0; border-bottom-right-radius: 0.5rem; border-bottom-left-radius: 0.5rem}

#customer .list-group-item:first-child{
  border-bottom: 0;
}

#customer label{
  font-size: 15px;
  font-weight: bold;
}

#customer label .asteriskField{
  color: #ff0000;
  padding-left: 2px;
}

#customer input, #customer textarea {
  border-radius: 0;
}
#customer input[type="text"],
#customer input[type="email"],
#customer input[type="password"]{
  min-height: 45px;
}

#customer textarea{
  height: 100px;
  margin-bottom: 20px;
}*/

#div_id_payment_gateway_setting .form-check{
  margin-top: 5px;
}

#div_id_payment_gateway_setting .form-check-label{
  font-weight: normal;
  font-size: 17px;
}

#div_id_payment_gateway_setting #stripe-card-element{
  padding: 13px 10px;
  border: 1px solid #ced4da;
  margin-top: 5px;
  margin-left: 30px;
}

.payment-method-help-text{
  font-size: 13px;
  color: #707277;
  line-height: 1.35;
  padding-bottom: 5px;
  margin-left: 30px;
}

#div_id_subscribe_newsletter label{
  font-weight: normal;
}


/** success **/
#success{
  margin:0 -1rem;
}

#success.list-group {border-radius: 0; border-bottom-right-radius: 0.5rem; border-bottom-left-radius: 0.5rem}

#success .list-group-item:first-child{
  border-bottom: 0;
}

/** rataing **/
.service-rating{ padding: 0 .75rem;
margin-bottom: 20px; }

.service-rating .service-rating-point{
  content: pointer;
  padding: 10px;
}

.service-rating .selected{
  border: 1px solid #1aab0a;background: #e7f7e5;border-radius: 0.3rem;
}

.customer-account-body .card-title-container{
  border-bottom:1px solid #eee;
  background: #fff;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 9;
}
.customer-account-body .card-title-container .card-title{
  align-items: baseline;
}

/*@media (min-width: 768px) {
  .col-md-4 {
      width: 40%;
  }
  .col-md-8 {
      width: 60%;
  }
}*/

@media (max-width: 767px) {
  /*.page-header + .row:before{
      height: 30px;
   } */

  .merchant-name{ font-size: 1.3em }

  .left-wrapper-sticky{
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
    top: 0;
  }

  .left-wrapper-sticky h4{
    padding-right: .75rem!important;
    padding-left: .75rem!important;
  }

  #services-wrapper{
    position: fixed;
    background: #fafafa;
    left: 0;
    right: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 54px;
    z-index: 99;
    height: 100vh;
    /*top: calc(100%); #service */
    top: calc(100% - 54px);
    /*overflow: hidden;*/
    -moz-transition: top 0.25s ease;
    -webkit-transition: top 0.25s ease;
    -o-transition: top 0.25s ease;
    transition: top 0.25s ease;
  }

  .mobile-services{
    padding-top: .5rem!important;
    padding-bottom: .5rem!important;
    padding-left: .75rem;
    padding-right: .75rem;
    text-align: center;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 54px;
    /*top: calc(100vh - 54px);*/
    background: #fafafa;
    bottom: 0px;
  }

  .mobile-services.mobile-services-items-page{
    bottom: 54px;
    overflow: hidden;
  }

  .thumbnail-container{ width: 110px }
  .thumbnail-container .img-thumbnail{max-width: 100px; width: 100px; padding: 0; border: 0; height: 80px;}

  #slide-down,
  #slide-up{
    cursor: pointer;
  }

  #slide-up{
    color: black;
    text-decoration: none;
    display: block;
    line-height: 1.2;
  }

  #slide-up .fa.fa-angle-double-up{
    float: right;
    z-index: 9;
    position:absolute;
    font-size: 27px;
    cursor: pointer;

    -webkit-animation: arrow-jump-up 1.5s infinite; /* Safari 4+ */
    -moz-animation:    arrow-jump-up 1.5s infinite; /* Fx 5+ */
    -o-animation:      arrow-jump-up 1.5s infinite; /* Opera 12+ */
    animation:         arrow-jump-up 1.5s infinite; /* IE 10+, Fx 29+ */
  }

  #slide-down .fa.fa-angle-double-down{
    font-size: 27px;
    cursor: pointer;

    -webkit-animation: arrow-jump-down 1.5s infinite; /* Safari 4+ */
    -moz-animation:    arrow-jump-down 1.5s infinite; /* Fx 5+ */
    -o-animation:      arrow-jump-down 1.5s infinite; /* Opera 12+ */
    animation:         arrow-jump-down 1.5s infinite; /* IE 10+, Fx 29+ */
  }

  #slide-down .fa.fa-angle-double-right {
    font-size: 18px;
    cursor: pointer;
    padding-right:7px;
    -webkit-animation: arrow-jump-right 1.5s infinite;
    -moz-animation: arrow-jump-right 1.5s infinite;
    -o-animation: arrow-jump-right 1.5s infinite;
    animation: arrow-jump-right 1.5s infinite;
  }


  @-webkit-keyframes arrow-jump-up {
    100%   { opacity: 1;}
    0% { opacity: 0;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -0-transform: translateY(10px);
        transform: translateY(10px);
    }
  }

  @-webkit-keyframes arrow-jump-down {
    0%   { opacity: 1;}
    100% { opacity: 0;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -0-transform: translateY(10px);
        transform: translateY(10px);
    }
  }

  @-webkit-keyframes arrow-jump-right {
    0%   { opacity: 0;}
    100% { opacity: 1;
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        -0-transform: translateX(10px);
        transform: translateX(10px);
    }
  }

  .left-wrapper{
    margin-bottom: 100px;
    margin-left: -.75rem;
    margin-right: -.75rem;
  }

  .service-group-menu-container{
    border-radius: 0;
    padding: .75rem;
  }

  .card-body h4{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .list-group-item{
    padding: .75rem;
  }

  .right-wrapper{
    top: 0;
    margin-bottom: 65px;
    /*background: #fff;*/
    min-height: 100vh;
    display: none;
  }

  .merchant-info{
    border-radius: 0 !important;
    padding: .75rem;
  }

  .card-body{}

  .card{
    border-radius: 0;
  }

  .edit-delivery, .edit-time{top: .4rem;}

  #services-wrapper.items-selected-mobile{
    top: calc(100% - 108px);
    /*background: #fff;*/
  }

  #services-wrapper.service-selected.full-height .right-wrapper{
    display: block;
  }

  #services-wrapper.service-selected.full-height{
    top: 0;
    overflow: scroll;
    z-index: 1010;
    position: fixed;
  }

  #services-wrapper.service-selected.full-height > .mobile-services{
    position: fixed;
    z-index: 1010;
    width: 100%;
    height: 54px;
    /*top: calc(100vh - 54px);*/
    background: #fff !important;
    /*background-color: #fafafa;*/
    bottom: 0;
    overflow: scroll;
  }

  /*#service-form,*/
  #service-detail{
    max-height: 100%;
  }

  /** time **/
  #date-form, #select-date {
    width: 100%;
  }

  .customer-account-body{
    margin-top: 0 !important;
  }

  .customer-account-body>.row>* {
    padding: 0 !important;
  }

  /** custome info **/
  .page-customer-info{}
}

.front-nav {
  background: #276C64 !important;
}

.front-nav a {
  color: #fff;
  padding: .7rem .5rem;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .04rem;
}


/** Table **/
.table thead th{
  vertical-align: bottom;
  border-bottom: 2px solid #e9ecef;
}

.table-lg th, .table-lg td {
    padding: 1.1rem .825rem
}

.search-value a{ display: inline-block; }

.search-value .btn {
    font-size: 0.8rem;
    font-weight: 500;
}

.search-value a span.bg-light-green {
    background-color: #286c64;
    color: #fff;
}

.ball-scale-multiple {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
.ball-scale-multiple div {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #54D3EA;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-scale-multiple 1.5s linear infinite;
}
.ball-scale-multiple div:nth-child(2) {
  -webkit-animation-delay: .2s;
}
.ball-scale-multiple div:nth-child(3) {
  -webkit-animation-delay: .4s;
}
@-webkit-keyframes ball-scale-multiple{
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

/** Item page show more and show less **/
.btn-readmore{
  font-size: 13px;
  color: green;
  cursor: pointer;
  margin-bottom: 5px;
  display: inline-block;
}

/** input-group  **/
.input-group>.input-group-prepend>.input-group-text{
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.input-group>:not(:first-child):not(.dropdown-menu){
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/** Voucher Field **/
.input-group .select2-container {
  flex: 1;
  width: auto;
}

.input-group .select2-container--default .select2-selection--single {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.input-group .select2-container--default .select2-selection--single .select2-selection__rendered,
.input-group .select2-container--default .select2-selection--single .select2-selection__arrow {
  line-height: 37px;
}

.input-group .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 37px;
}

small.coupon-desc{
  line-height: 1.2;
  display: block;
  font-size: .76rem;
  opacity: 0.7;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type="file"] {
  border: 1px solid #aab0ec;
  line-height: 38px;
  border-radius: 5px !important;
}
input[type="file"]::file-selector-button {
  background: #5562eb;
  border: 0;
  color: #fff;
  border-radius: 5px 0 0 5px;
  padding: 2.5px 20px !important
}

.slide-icons-right {
  @include nonselect;
  i {
    -webkit-animation: arrow-animation 1.5s infinite;
    -moz-animation: arrow-animation 1.5s infinite;
    //animation-iteration-count: 3;
    margin-left: -3px;
  }
  i:first-child {
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    margin-left: 5px;
    opacity: 0.15;
  }
  i + i {
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    opacity: 0.5;
  }
  i + i + i {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    opacity: 1;
  }
}

@-webkit-keyframes arrow-animation {
  0%   { opacity: .15;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes arrow-animation {
  0%   { opacity: .15; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes arrow-animation {
  0%   { opacity: .15; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes arrow-animation {
  0%   { opacity: .15; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}

.icon-wrapper {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  position: relative;
  overflow: hidden
}

.icon-wrapper[class*="border-"] {
  border-width: 1px;
  border-style: solid
}

.icon-wrapper .icon-wrapper-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
  opacity: .2
}

.icon-wrapper .icon-wrapper-bg.bg-light {
  opacity: .08
}

.icon-wrapper i {
  margin: auto;
  font-size: 1.7rem;
  position: relative;
  z-index: 5
}

.icon-wrapper i::before {
    margin-top: -3px
}

/****Customer Check Box***/
.form-check,
.checkbox-blue-tick{
  position: relative;
  padding: 0;
  overflow: hidden;
/*    border: 1px solid #5562eb;*/

}

.checkbox-blue-tick {
  display: inline-block;
}

.form-check label,
.checkbox-blue-tick label{
  padding: 2px 30px 2px 30px;
  border-radius: 25px;
  width: 100%;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
}

.checkbox-blue-tick label{
  padding: 2px 35px 2px 0px;
}

.form-check label::before,
.checkbox-blue-tick label::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.form-check label::after,
.checkbox-blue-tick label::after {
  width: 23px;
  height: 23px;
  content: '';
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: -2px -2px;
  border: 2px solid #D1D7DC;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.checkbox-blue-tick label::after {
  width: 27px;
  height: 27px;
  background-position: 0px 0px;
  left: auto;
  right: 8px;
}

.checkbox-blue-tick input:checked ~ label {
  /* color: #fff; */
  border: 2px solid #54E0C7 !important;
  background: #E0F2F1;
}

.form-check input:checked ~ label::before
.checkbox-blue-tick input:checked ~ label::before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.form-check input:checked ~ label::after,
.checkbox-blue-tick input:checked ~ label::after {
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-color: #54E0C7;
  border-color: #54E0C7;
}

.checkbox-blue-tick input:disabled ~ label::after{
  background-color: #b6bcbb;
}

.checkbox-blue-tick input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.option-selected{
  border: 2px solid #54E0C7 !important;
  background: #E0F2F1 !important;
}

.item-in-cart{
  background-color: #E65100 !important;
  border-color: #E65100;
  box-shadow: 0 0 0 .25rem rgb(253 98 49 / 50%);
}

.option-field-wrapper > div~div {
/*  border-top: 1px solid #e5e7e9 !important;*/
}

/*****Toggle Options******/
.btn-toggle-option::after {
  content:"Hide Options"
}
.btn-toggle-option > .fa::before{
  content: "\f139";
}

.collapsed.btn-toggle-option::after {
  content: "Show Options";
}
.collapsed.btn-toggle-option > .fa::before{
  content: "\f13a";
}

.shadow-sm-top{
  box-shadow: rgba(0, 11, 38, 0.3) 0px 1.5rem 1.5rem 0px, rgba(0, 11, 38, 0.22) 0px 0px 1.5rem 0px;
  transform: translateY(0px);
  transition: transform 0.5s ease-in-out;
}
.overflow-x-hidden {overflow-x: hidden;}
.overflow-y-hidden {overflow-y: hidden;}

figure.image img{
  overflow: hidden;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  #service-body { padding-bottom: 70px; }
}

#editCustomerModal .form-group,
.auth-form .form-group {
  padding: 0 0 16px 0;
}
