/* quickshop.css: Rules needed for all or multiple pages of all tenants must be placed in this file */

@import url('login.css');
@import url('map.css');
:root {
    --cart_img_min_dimension : 52px;
}
.cart_img_cnr {
    min-width: var(--cart_img_min_dimension);
}
.mini-cart {
    position: fixed;
    right: 0;
    top: 0;
    width: 0;
    height: 100vh;
    transition: all 0.2s;
    z-index: 1000;
}
.mini-cart-pdt-name-cell {
    max-width: 75%;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.mini-cart .mini-cart--content {
    width: 100%;
    height: 100%;
    position: relative;
}

.mini-cart .mini-cart--content .mini-cart--overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
}

.mini-cart .mini-cart--content .mini-cart--slidebar {
    width: 80%;
    height: 100%;
    float: right;
    position: relative;
    padding: 0;
    transform: scale(1, 1);
}

.mini-cart__header {
    background-color: #26901b;
    height: 150px;
    position: relative;
}

.mini-cart__products {
    padding: 10px;
    height: 350px;
    overflow-y: auto;
}

.mini-cart__products .out-box-cart {
    display: none;
}

.mini-cart__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
}

.mini-cart__footer .title {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    text-align: left;
}

.mini-cart__footer .total {
    color: #26901b;
    font-size: 18px;
    font-weight: bold;
}

.mini-cart__footer .col-6 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.mini-cart__footer a {
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    display: block;
    padding: 10px 20px;
    flex-grow: 1;
    margin-bottom: 10px;
    text-align: center;
}

.mini-cart__footer .view-cart {
    margin-right: 5px;
}

.mini-cart.open {
    width: 100vw;
}
@media screen and (min-width: 1024px) {
    .mini-cart {
        width: 370px;
        position: absolute;
        right: -20px;
        top: 120%;
        height: 500px;
        transform: scale3d(1, 1, 0) translateY(30px);
    }
    .mini-cart .mini-cart--overlay {
        display: none;
    }
    .mini-cart .mini-cart--content .mini-cart--slidebar {
        max-width: 350px;
        max-height: 500px;
        min-height: 150px;
        transform: none;
    }
    .mini-cart .mini-cart__header {
        display: none;
    }
    .mini-cart .mini-cart__products .out-box-cart {
        display: block;
    }
    .mini-cart.open {
        transform: scale3d(1, 1, 1) translateY(0);
        width: 370px;
    }
}
.mini_cart_noitem {
    display: none;
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    box-shadow: 0 0 3px rgb(0 0 0 / 15%);
    border: 1px solid #dddddd;
    border-radius: 3px;
    padding: 26px 20px;
    text-align: center;
    color: #84908c;
    font-size: 16px;
    cursor: default;
}
.ps-product--mini-cart {
    display: flex;
    position: relative;
    margin-bottom: 10px;
}

.ps-product--mini-cart:hover .ps-product__name,
.ps-product--mini-cart:hover u {
    color: #26901b;
}

.ps-product--mini-cart .ps-product__remove i {
    font-size: 19px;
}

.ps-product--mini-cart .ps-product__remove:hover i {
    color: var(--theme-color);
}

.ps-product--mini-cart .ps-product__thumbnail {
    width: var(--cart_img_min_dimension);
    height: 52px;
    border: 1px solid #ddd;
    padding: 2px;
    border-radius: 5px;
}

.ps-product--mini-cart .ps-product__content {
    padding-left: 15px;
    padding-right: 5px;
    flex-grow: 1;
}

.ps-product--mini-cart .ps-product__name,
.ps-product--mini-cart u {
    font-size: 13px;
    color: #282828 !important;
    font-weight: 400;
    /* margin-bottom: 5px; */
    text-align: left;
} 
.cart--box {
    background-color: white;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    border: 1px solid #dddddd;
    border-radius: 3px;
    padding: 20px;
    transition: all 0.3s;
    transform: scale(1, 0);
    transform-origin: 50% 0;
    transition-delay: 0.1s;
    z-index: 100;
}

.cart--box .triangle-box {
    position: absolute;
    right: 20px;
    bottom: 100%;
    width: 30px;
    height: 21.27px;
}

.cart--box .triangle {
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    transform: scaleX(0.7);
}

.cart--box .triangle:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #dddddd;
    width: 100%;
    height: 100%;
    background-color: white;
    transform-origin: 0 100%;
    transform: rotate(45deg);
}

.utility-button {
    border: 1px solid #c0ddf7;
    border-radius: 10px;
    background-color: #dae3ec;
    margin-right: 5px;
    padding: 10px 10px;
    height: 40px;
    line-height: 18px;
}
.theme_background, .theme_background a, .theme_background a:link, .theme_background a:hover, .theme_background a:visited {
    background-color: var(--theme-color) !important;
    color : var(--theme-bg-font-color) !important;
}
.theme_border {
    border: 1px solid var(--theme-color) !important;
}
.generic-button-no {
    background-color: #ecf0f1;
}
.generic-button {
    font-size: 14px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
}
.form-buttons-block button {
    margin-right: 10px;
}
.mobile_input {
    padding-left: 45px;
}
.isd_code {
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    padding: 8px 0;
    text-indent: 9px;
    border-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 35px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: max-content;
    text-align: center;
    border-right: 0;
    position: absolute;
    display: inline-flex;
    align-items: center;
}
.order-summary-row {
    padding: 7px 0;
}
.order-item-row {
    padding: 7px 0;
}
.order-item-row img {
    max-width: 90%;
    max-height: 100%;
    margin: 0 10px;
    /* border-radius: 20px; */
    background: #f0f0f6;
}
.my-order-item-row img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    /* border-radius: 20px; */
    padding: 3px;
    margin-top: 5px;
    border: 1px solid #d7d5d5;
    border-radius: 5px;
}
.circle_size:before {
    color: var(--theme-blue);
    font-size: 6rem;
}

.OrderSummary {
    font-size: 13px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ddd;
}

.OrderSummaryH {
    font-size: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    text-align: left;
    padding: 20px 0 10px;
    text-align: center;
}
.form-group--block input {
    height: 35px;
    font-size: 14px;
}
.form-group--block label {
    font-size: 14px;
    margin-top: -8px;
}
.form-label {
    font-size: 14px;
    color: #aaa;
    display: block;
    opacity: 1;
    transform: translateY(-1.6em);
    transform-origin: 0 2;
    transition: all .3s;
    padding-left: 5px;
    bottom: 1.9rem;
}
.form-label {
    margin-bottom: .5rem;
    font-weight: 400;
    margin-left: 10px;
}
.form-control:focus + .form-label {   
    transform : translateY(-4rem);
    margin-left: 0px !important;
}
.form-control:not(:focus):not(:placeholder-shown) + .form-label {
    margin-left: 0px !important;    
    transform : translateY(-4.8rem);
}
.mobile_label {
    margin-left: 40px !important;
}
.login__sec_title {
    margin-bottom: 20px;
    font-size: 16px !important;
    /* color: #8d7a7a; */
    color: #684c46;
    font-weight: bold;
    /* border-bottom: 1px solid #ddd */
}
.login__sec_title #order_option_heading{
    font-size: 16px !important;
    color: #684c46;
    /* font-weight: bold; */
}
.signup-show-map {
    margin-bottom: 10px;
}
.login__content .form-group--block {
    margin-bottom: 1rem;
    transition: all .3s;
}
.referral_box {
    border-bottom: 1px solid #7a7a7a;
    padding-bottom: 20px;
}
.field-icon {
    float: right;
    margin-left: -25px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    right: 10px;
    top: -20px;
    cursor: pointer;
}

.location_field_icon {
    float: right;
    margin-left: -25px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    right: 10px;
    top: -7px
}

.location_field_icon_reg {
    float: right;
    margin-left: -25px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    right: 10px;
    top: -20px
}
.section--login .input-group label {
    margin-left: 10px;
}
.section--login .login__box {
    background-color: #f7f7f7;
    margin: 40px auto 40px;
    padding: 20px;
    max-width: 400px;
}
@media(max-width: 576px) {
    .section--login .login__box {
        padding: 20px 10px !important;
    }
}
.login__box .form-control::placeholder,
.login__content .form-control::placeholder {
    color: transparent;
}

.section--login .login__header {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

.section--login .login__header h3 {
    font-size: 21px;
    margin: 0 10px;
}
@media (max-width: 373px) {
    .section--login .login__header h3 {
        margin: 0 5px;
    }
}
@media (max-width: 343px) {
    .section--login .login__header h3 {
        margin: 0 3px;
    }
}

.section--login .login__header .login__register {
    /* opacity: 0.5; */
}

.section--login .login__content {
    padding: 20px 0;
}

.section--login .login__content input {
    border-radius: 5px;
    background-color: white;
    height: 35px;
}

.section--login .login__content select {
    border-radius: 5px;
    background-color: white;
    height: 45px;
}

.section--login .login__content .form-check input {
    height: auto;
    margin-top: 8px;
}

.section--login .login__content .forgot-pass {
    background-color: white;
    font-size: 12px;
    color: #26901b;
    font-weight: 600;
    border-radius: 5px;
    float: left;
    cursor: pointer;
}

.section--login .input-group {
    margin: 10px 0;
}

.section--login .input-group label {
    margin-left: 10px;
}

.section--login .group-password {
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.section--login .group-password input {
    border: none;
}

.section--login .btn-login {
    color: #fff;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    height: 45px;
    margin-top: 10px;
}

.section--login .login__label {
    margin-bottom: 20px;
}

.section--login .login__conect {
    display: flex;
    align-items: center;
}

.section--login .login__conect hr {
    flex-grow: 1;
    margin: 0;
}

.section--login .login__conect p {
    margin-left: 5px;
    margin-right: 5px;
}

.section--login .btn-social {
    width: 100%;
    margin: 10px 0;
    border-radius: 5px;
    color: white;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 600;
}

.section--login .btn-social i {
    color: white;
    margin-right: 10px;
}

.section--login .btn-social.btn-facebook {
    background-color: #4267b2;
}

.section--login .btn-social.btn-google {
    background-color: #EA4335;
}

.section--login .login__title {
    font-size: 21px;
    margin-top: 40px;
}
#place_order_btn_loader,
#registerbtn_btn_loader {
    display: none
}
.input-group-append input[type="button"] {
    border: none;
}
.number_update {
    color: #fff;
    text-decoration: none;
    border: none;
    padding: 6px 15px 25px 15px;
    border-radius: .25rem;
    font-size: 12px
}
.theme_color {
    color: var(--theme-color);
}
.pen_img, #add_new_shipaddress {
    font-size: 14px!important;
    cursor: pointer;
    /* float: right; */
}
.can_img {
    cursor: pointer;
    padding-left: 5px;
    font-size: 17px!important;
    float: right;
}
.addresss {
    border: 1px solid #d4d4d4;
    padding: 5%;
    font-size: 14px;
    border-radius: 3px;
    overflow-wrap: break-word;
}
.generic-form-input {
    margin-bottom: 15px;
}

.generic-form-input input[type=text],
.generic-form-input input[type=email], .generic-form-input input[type=number]{
    padding: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    width: 100%;
}

.generic-form-input input[type=text]:disabled {
    background-color: gainsboro;
}

.generic-form-input div.cust_location {
    border: 1px solid #ced4da;
    padding: 15px;
    border-radius: 5px;
}

.generic-form-input select {
    padding: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: white;
    min-width: 120px;
    appearance: none !important;
}

.generic-form-label {
    /* padding: 5px;*/
    color: gray;
}

.generic-button {
    font-size: 14px;
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}
@media (min-width: 767px) {
    .generic-button {
        min-width: 100px;
    }
}

.generic-button-yes {
    background-color: #26901b;
    ;
}

.generic-button-no {
    background-color: #ecf0f1;
}
@media (max-width: 767px) {
    .utility-button {
        margin-bottom: 5px;
    }
    .generic-form-input input[type="text"] {
        width: 100%;
    }
    .generic-form-input select {
        width: 100%;
    }
}
#edit_bill_address_tab div.form-buttons-block {
    margin-top: 10px;
}

.form-buttons-block button {
    margin-right: 10px;
}
input {
    height: 1.5em;
}
.tc_acct_btn {
    background-color: rgb(238 238 238 / 0%)!important;
    color: rgb(4 4 4);
    border-color: rgb(238 238 238)!important;
    border: rgb(238 238 238)!important;
    display: block;
    font-weight: 400;
    text-align: center;
    user-select: none;
    padding: .4rem 0;
    font-size: 13px;
    line-height: 1.5;
    border-radius: .3rem
}

@media(max-width:600px) {
    .tc_acct_btn {
        font-size: 11px;
        padding: .5rem 0
    }
}
.mini-cart__footer .checkout, .mini-cart__footer .view-cart {
    background-color: var(--theme-color);
    color: var(--theme-bg-font-color);
    border-color: var(--theme-color);
}

.list-cart {
    list-style-type: none;
}
.ship_add_box img, .phone-icon {
    width: 15px;
}
.switch-box {
    height: 20px;
    width: 40px;
    background: #d9d9d4;
    border-radius: 10px;
    cursor: pointer;
}
.switch {
    height: 20px;
    width: 20px;
    border-radius: 10px;
    background: #9fad9e;
    position: relative;
}
.switch-on {
    right: -20px;
    background: #26901b;
}
.switch-container {
    flex-grow: 1;
    justify-content: flex-end;
    display: flex;
}
.switch-disabled {
    pointer-events: none;
    color: #b5b3b3;
}
.switch-disabled .switch {
    background: #ededed;
}
.refer-img {
    height: 100px;
    padding: 8px 10px 0px 10px;
}
.refer-hr {
    color: #808080cf;
}
.refer-text {
    margin: 0 !important;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 18px;
}
.refer-button a {
    padding: 7px 10px;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    /* border-radius: 4px; */
}
.refer-button-section {
    padding: 0 !important;
    justify-content: center;
    display: flex;
    align-items: center;
}
.refer-section {
    background-image: url('../image/web-reffer.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--theme-color);
}
@media(max-width: 992px) {
    .refer-section {
        background-color: #ff503a;
    }
    .reffer-text {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #fff;
        margin: 0 1rem 0 10px !important;
      }
}
.reffer-text {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin: 0 4rem 0 10px;
}
.whatsapp-order-pd {
    padding: 8px 25px;
    margin-right: 15px;
    width: max-content;
    width: -webkit-max-content;
    width: -moz-max-content;
}
.whatsapp-order-co {
    padding: 15px 0;
    width: 100%;
    text-align: center;
}
.whatsapp-order {
    white-space: nowrap;
    color: white;
    cursor: pointer;
    border: none;
    background-color: #3cbb4d;
    border-radius: 5px;
}
.whatsapp-order:hover {
    background-color: #099e09;
}
.number-input input[type="number"] {
    max-width: 30px;
    /* max-width: 125px;
    border-radius: 10px; */
}
 .number-input button {
    color: #ffffff;
    font-weight: bold;
 }
 .number-input {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    /* justify-content: center; */
    width: 8.2rem;
    height: 3rem;
    border-radius: .25rem;
    overflow: hidden;
    cursor: initial;
    user-select: none;
}
.number-input button {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 8px;
}
.number-input input[type="number"] {
    text-align: center;
    font-size: 13px;
    color: #222;
    flex-grow: 1;
    height: fit-content;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) and (stroke-color: transparent) {
        .number-input.def-number-input.safari_only button:before, .number-input.def-number-input.safari_only button:after {
            margin-top: -.3rem;
        }
    }
}
.number-input {
    /* width: 100%; */
    justify-content: space-between;
  }
.number-input input[type=number]::-webkit-inner-spin-button,
.number-input input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.number-input button {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 8px;
}
.quantity {
    padding: 6px 6px 8px 6px;
    border: none;
}
@media (min-width: 1024px) {
    .small-screen-only {
        display: none;
    }
}
.cart_price {
    font-size: 12px;
    font-weight: bold !important;
    color: #222 !important;
    text-align: right;
}
.data_show {
    display: block !important;
}
.data_hide {
    display: none !important;
}

@media screen and (min-width: 992px) {
    .desktop-only {
        display: block !important;
    }
    .mobile-only {
        display: none;
    }
}
@media screen and (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block;
    }
    .mob-invisible {
        display: none !important;
    }
}
.order-placed-address {
    text-align: left;
    font-size: 13px;
    /* max-width: 850px; */
    margin-left: auto;
    margin-right: auto;
    /* border-bottom: 1px solid #f0eeee; */
}
.order-placed-address .bill-address-box {
    /* width: fit-content; */
    /* border: 1px solid var(--theme-light-gray); */
    border-top: 1px solid #ebe7e5;
    padding: 10px 0;
    /* border-radius: 5px; */
}
.order-box {
    margin: auto;
    padding: 10px 0;
    border-bottom: 1px solid var(--theme-light-gray);
}
@media (min-width: 992px) {
    .order-box, .order-placed-address {
        width: 50%;
    }
}
/*---- Site Loader Style ----*/

#ec-overlay,
#cart_page_loader {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #ffffff52;
    z-index: 999999999999;
}

#ec-overlay .loader_img,
#cart_page_loader .loader_img {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999999999999;
    background: #ffffff52 url("../image/loader.gif") no-repeat scroll 50% 50%;
    background-size: 65px;
    pointer-events: none;
    overflow: hidden;
}
.cart_empty_img {
    width: 50%;
    max-width: 200px;
}
.section--login p i {
    color: #26901b;
    margin-right: 10px;
    font-weight: bold;
}
.edit-address-marker {
    font-size: 15px !important;
}
.list-cart {
    padding: 0 !important;
}

#order_placed_main .fa-check-circle {
    color: var(--theme-color);
}
.error-border {
    border: 1px solid red !important;
}
@media (min-width:451px) {
    .acct_tab {
        width: 460px;
        margin: auto;
    }
}
@media (max-width:450px) {
    .acct_tab {
        width: 340px
    }
}
.theTarget {
    display: none;
    width: 100%;
    height: 44px;
    color: #fff;
    border-radius: 2px;
    background-color: #127ec2;
    text-decoration: none;
    border: none;
    font-size: 16px;
    text-align: center;
    padding-top: 8px;
    font-weight: 700;
}
.ms_login_btn {
    width: 100%;
    color: #fff;
    border-radius: 2px;
    text-decoration: none;
    border: none;
    font-weight: 700;
}
.head_texthL {
    font-size: 25px;
    font-weight: 500;
}
.l_form_w {
    margin: auto;
    padding-bottom: 25px;
}
.btn_disable {
    pointer-events: none;
    opacity: .5;
    cursor: default;
}
.section--contact .contact__send {
    margin: 20px auto;
    color: #fff;
    border-radius: 2px;
    text-align: center;
    width: 100%;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--theme-color);
    border: 2px;
}
#contactsubmitbtn_loader {
    display: none;
}
#contactsubmitbtn_loader, .email_send, .email_faild {
    display: none;
}
.icon_social {
    padding: 5px 10px;
    font-size: 16px;
    margin: 0 5px;
}

.icon_social i {
    color: white;
}

.icon_social.facebook {
    background-color: #4267b2;
    padding: 5px 12px;
}

.icon_social.twitter {
    background-color: #1DA1F2;
}

.icon_social.instagram {
    background-color: #0174d0;
}

.icon_social.google {
    background-color: #3cbb4d;
}

.icon_social.youtube {
    background-color: #df1a26;
}

.icon_social.wifi {
    background-color: #0174d0;
}
.membership_appeal ul {
    list-style: disc !important;
    padding-left: 12px !important;
}
.chec_cl2 {
    font-size: 13px;
    color: red
}
.item_schdl_button {
    text-align: center;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid gray;
    width: fit-content;
    padding: 1px 5px;
    font-size: 12px;
    /* margin: auto; */
    /* margin-right: 43px; */
    position: relative;
    background-color: var(--theme-light-color);
  }
@media(max-width: 992px) {
    .item_schdl_button {
        padding: 5px;
    }
}
#checkout_del_slot_popup {
    display: none;
}
.item_schdl_button:hover, .item_schdl_button:focus {
    background-color: var(--theme-color);
    color: white;
    border: 1px solid var(--theme-color);
}
.cust_selected_slot {
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
}
.ck_slot_img {
    width: 20px;
}
@media (max-width: 992px) {
    #checkout_del_slot_popup select#order_option_date {
        margin-bottom: 20px;
    }
    #cart_page_binding .cart_item_container {
        border-bottom: 1px solid #e4e4e4;
    }
}
.mgwidth {
    width: 15%;
    z-index: 1000
}