
#preloader {
    display: none;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-info {
    list-style: none;
    padding: 0;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.slick-slide {
    height: auto;
}


.fullscreen-container {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(90, 90, 90, 0.8);
    z-index: 99;
}

.pop-div {
    height: auto;
    background-color: #ffffff;
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

    .pop-div.pop-user-login {
        max-width: 480px;
        width: 100%;
        top: 6%;
    }

        .pop-div.pop-user-login .pop-div-body {
            padding-top: 10px;
        }

.pop-div-close {
    width: 20px;
    position: absolute;
    top: -15px;
    right: 4px;
    font-size: 30px;
}

    .pop-div-close a {
        margin: 0 !important;
    }

.btn-sqr {
    background: #A1784C;
    border-color: #A1784C;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    padding: 8px 18px;
}

.progressBar {
    display: flex;
}

    .progressBar .num {
        width: 24px;
        height: 24px;
        border: 1px solid var(--sc);
        color: rgba(0,0,0,.6);
        background: var(--sc);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px auto;
        font-weight: bold;
        font-size: 12px;
    }

    .progressBar li {
        position: relative;
        flex: 1;
        min-width: 0;
    }

        .progressBar li::before {
            content: '';
            position: absolute;
            top: 21px;
            left: 54%;
            width: 100%;
            height: 1px;
            background: #e9e9e9;
            z-index: -1;
        }

        .progressBar li:last-child::before {
            display: none;
        }

        .progressBar li.active .num {
            background: #A1784C;
            border-color: #A1784C;
            color: #fff;
        }

        .progressBar li h6 {
            font-size: 14px;
        }

        .progressBar li::before {
            content: '';
            position: absolute;
            top: 21px;
            left: 54%;
            width: 100%;
            height: 1px;
            background: #e9e9e9;
            z-index: -1;
        }

.formTitle {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--sf);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

/* Cart steps wrapper */
.cart-main-wrapper .section-bg-color {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0,0,0,.07);
    padding: 16px 18px 26px;
}

.cart-main-wrapper .steps {
    margin-top: 10px;
}

.cart-main-wrapper .step {
    display: none;
}

    .cart-main-wrapper .step.active {
        display: block;
    }

/* Login popup (UserLogIn_Popup) */
#div_PopUp_UserLogin .VerifyOTP,
#div_PopUp_UserLogin .d-none-reg {
    display: none;
}

#div_PopUp_UserLogin input[type=radio] {
    position: absolute;
    z-index: 999;
    opacity: 0;
    width: 100%;
    height: 100%;
}

#div_PopUp_UserLogin .form-label {
    border: none !important;
    padding-left: 0;
}

    #div_PopUp_UserLogin .form-label::before,
    #div_PopUp_UserLogin .form-label::after {
        display: none;
    }

#div_PopUp_UserLogin .form-control {
    border-radius: 4px;
    border-color: rgba(0,0,0,.16);
    box-shadow: none;
    font-size: 14px;
}

    #div_PopUp_UserLogin .form-control:focus {
        border-color: #A1784C;
        box-shadow: 0 0 0 0.1rem rgba(194, 153, 88, 0.25);
    }

#div_PopUp_UserLogin .btn-sqr {
    background: #A1784C;
    border-color: #A1784C;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    padding: 8px 18px;
}

    #div_PopUp_UserLogin .btn-sqr:hover {
        background: #a77f3f;
        border-color: #a77f3f;
        color: #fff;
    }

.w-100 {
    width: 100%;
}

.hs_blog_right_cate_list_cont_wrapper .active {
    background: #A1784C !important;
    color:#fff;
}

.my-address {
    position: relative;
}

    .my-address input {
        border-radius: 6px;
    }

    .my-address label, .doshTest .options label {
        border: 1px solid rgba(0,0,0,.2);
        padding: 10px 30px 10px 40px;
        border-radius: 6px;
        font-family: var(--pf);
        position: relative;
        cursor: pointer;
        font-size: 14px;
        font-weight: 700;
        width: 100%;
    }

    .my-address -group h6 {
        font-size: 14px;
    }

    .my-address label::before, .doshTest .options label::before {
        content: '';
        position: absolute;
        top: 33%;
        left: 10px;
        width: 16px;
        height: 16px;
        border: 1px solid rgba(0,0,0,.4);
        border-radius: 3px;
    }

    .my-address label::after, .doshTest .options label::after {
        content: '';
        position: absolute;
        top: 40%;
        left: 13px;
        width: 10px;
        height: 5px;
        border-left: 1px solid rgba(255,255,255,1);
        border-bottom: 1px solid rgba(255,255,255,1);
        transform: rotate(-45deg) scale(0);
        transition: .3s ease;
    }

    .my-address input[type="radio"]:checked + label::after, .doshTest .options input[type="radio"]:checked + label::after {
        transform: rotate(-45deg) scale(1);
    }

    .my-address input[type="radio"]:checked + label::before, .doshTest .options input[type="radio"]:checked + label::before {
        background: #A1784C;
        border-color: #A1784C;
    }


.delivery_addresses .delivery_action_btns {
    position: absolute;
    top: 10px;
    right: 10px;
}

.delivery_addresses input[type="radio"]:checked + label {
    background: #A1784C;
    color: #fff !important;
}

    .delivery_addresses input[type="radio"]:checked + label .add_details, .delivery_addresses input[type="radio"]:checked + label + .delivery_action_btns i {
        color: #fff !important;
    }

/* ------------------------------------------------------
   Top user profile (avatar + dropdown)
-------------------------------------------------------*/
.hs_top_user_profile {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .hs_top_user_profile > a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        color: #000;
        text-decoration: none;
        transition: background-color .2s ease, color .2s ease;
    }

        .hs_top_user_profile > a:hover {
            background-color: rgba(0,0,0,.12);
        }

    .hs_top_user_profile img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #c29958;
    }

    .hs_top_user_profile .dropdown-list {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 8px;
        min-width: 160px;
        padding: 6px 0;
        list-style: none;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 12px 30px rgba(0,0,0,.18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
        z-index: 200;
    }

    .hs_top_user_profile:hover .dropdown-list,
    .hs_top_user_profile.open .dropdown-list {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hs_top_user_profile .dropdown-list li a {
        display: block;
        padding: 8px 14px;
        font-size: 13px;
        color: #333;
        text-decoration: none;
        white-space: nowrap;
    }

        .hs_top_user_profile .dropdown-list li a:hover {
            background: #f7f3eb;
            color: #c29958;
        }

/* ------------------------------------------------------
   Cart page: table + summary
-------------------------------------------------------*/
.cart-main-wrapper {
    padding-top: 20px;
    padding-bottom: 40px;
}

.cart-table-modern table {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.cart-table-modern thead tr {
    background: #f7f3eb;
}

.cart-table-modern thead th {
    border-color: #f0e5cf;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.cart-table-modern tbody td {
    vertical-align: middle;
    padding-top: 10px;
    padding-bottom: 10px;
}

.cart-table-modern .pro-title a {
    font-weight: 600;
    color: #333;
}

    .cart-table-modern .pro-title a:hover {
        color: #c29958;
    }

.cart-table-modern .qty {
    max-width: 140px;
    background: #faf7f1;
}

.cart-table-modern .pro-thumbnail img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-table-modern .pro-remove a {
    color: #999;
}

    .cart-table-modern .pro-remove a:hover {
        color: #d9534f;
    }

.cart-calculator-wrapper .cart-calculate-items h6 {
    font-weight: 700;
}

.cart-calculator-wrapper table tr.total td {
    border-top-width: 2px;
}

.cart-calculator-wrapper {
    margin-top: 10px;
}

.svc-slot {
    padding: 0 15px !important;
    width: 32% !important;
    height: 37px !important;
    line-height: 40px !important;
}