:root {
    --theme-color: #F84000;
    --theme-color-rgb: 248, 64, 0;
    --theme-light-color: #FED9CC;
    --light-blue: #F3FEFF;
    --theme-color2: linear-gradient(90.56deg, var(--theme-light-color) 8.46%, var(--theme-color) 62.97%);
}

/* common start */
body {
    scroll-behavior: smooth;
    color: #000;
    font-size: calc(13px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

a:hover {
    color: var(--theme-color);
    opacity: 0.8;
}

.no-before::before,
.no-after::after {
    content: none !important;
}

.tx-10 {
    font-size: calc(10px + (16 - 14) * ((100vw - 320px) / (1920 - 320)))
}

.tx-12 {
    font-size: calc(12px + (16 - 14) * ((100vw - 320px) / (1920 - 320)))
}

.tx-main {
    color: var(--theme-color);
}

.tx-sec {
    color: var(--theme-light-color);
}

.a-link-thm {
    color: var(--theme-color);
    transition: all 0.3s;
}

.a-link-thm:hover {
    opacity: 0.9;
}

.a-link-dark {
    color: #000;
    transition: all 0.3s;
}

.a-link-dark:hover {
    color: var(--theme-color);
}


.bg-main,
.bg-thm {
    background: var(--theme-color)
}

.bg-sec,
.bg-thm-light {
    background: var(--theme-light-color);
}

.bg-light-blue {
    background: var(--light-blue);
}

.wd-12 {
    width: 12px;
}

.ht-12 {
    height: 12px;
}

.wd-15 {
    width: 15px;
}

.ht-15 {
    height: 15px;
}


.wd-16 {
    width: 16px;
}

.ht-16 {
    height: 16px;
}

.wd-18 {
    width: 18px;
}

.ht-18 {
    height: 18px;
}

.wd-fit {
    width: fit-content !important;
}

.ht-fit {
    height: fit-content;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    line-height: 1.4;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
    border: 1px solid
}

label.error {
    color: red !important
}

input.error {
    border-color: red !important;
}

.form-control.error:focus {
    border-color: red !important;
}

.box-18 {
    width: 18px;
    height: 18px;
}

.card-cust {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
}

.card-rounded {
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.125);
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
}

.card-rounded .category-name {
    margin: 0;
    padding: 15px;

}

.card-rounded .category-name .title {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin: 0 auto;
    font-size: calc(13px + 2*(100vw - 320px) / 1600);
    letter-spacing: .7px;
    line-height: 1.3;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 0;
    font-weight: 500;
    text-align: center;
}

.card-rounded .product-img {
    width: 100%;
}

.card-rounded img {
    width: 100%;
    max-height: 200px;
    height: 180px;
    object-fit: cover;
    transition: all 0.3s;
    /* border-radius: 10px 10px 0 0; */

}

.card-rounded:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.card-rounded:hover img {
    transform: scale(1.1);
}

.half-slider .slick-list {
    padding-left: 0 !important;
}

.cursor-pointer {
    cursor: pointer !important;
}


.tx-trunc,
.tx-trunc1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tx-trunc2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tx-trunc3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tx-trunc4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tx-trunc5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-category-panel {
    margin-top: -50px;
}

.feature-category-panel .feature-panel {
    background-color: #fff;
    padding: calc(30px + 4 * (100vw - 320px) / 1600);
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 8px rgba(221, 221, 221, .549);
    box-shadow: 0px 4px 8px rgba(221, 221, 221, .549);
    margin: 0 auto;
    width: 100%;
}

.quick-search-wrapper {
    font-size: 12px;
    margin-left: 10px;
}

.search-box-wrapper .search-box .input-group .form-control {
    width: 100%;
    border-radius: 5px 0 0 5px;
    border-color: #ececec;
    padding-right: 70px;
}

.search-box-wrapper .search-box .input-group button {
    background-color: var(--theme-color);
    color: #fff;
    padding: 12px 16px;
    border-radius: 5px;
    border: 1px solid var(--theme-color);
    position: absolute;
    right: 0;
    z-index: 6;

}

.feature-category-panel {
    margin-top: -50px;
}

.feature-category-panel .feature-panel-slider {
    background-color: #fff;
    padding: calc(30px + 4*(100vw - 320px) / 1600);
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 8px rgba(221, 221, 221, .549);
    box-shadow: 0px 4px 8px rgba(221, 221, 221, .549);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 6;
}

.autocomplete-suggestions {
    position: absolute;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    display: none;
}

.autocomplete-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.autocomplete-item:hover {
    background-color: #f1f1f1;
}


.quick-search-wrapper {
    font-size: 12px;
    margin-left: 10px;
}

.quick-ul li a {
    font-weight: 400;
    color: #878787;
}

.quick-ul li a:hover {
    color: var(--thm-color2);
}

.shop-section .left-box {
    top: 110px;
}

.qnt-weight {
    position: relative;
    padding-right: 24px;
}

.qnt-weight::before {
    content: "";
    border: none;
    border-right: 1px solid #000;
    position: absolute;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;

}

#preloader .loader .loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 3px solid #E6EEFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

#preloader .loader .loader-container::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-top: 3px solid var(--theme-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    animation: loaderspin 1.8s infinite ease-in-out;
    -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

#preloader .loader .loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 140px;
    text-align: center;
}

#preloader .loader .loader-icon img {
    animation: loaderpulse alternate 900ms infinite;
    width: 70px;
}




img.modal-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}


.transaction-list table .alert {
    padding: 0px 8px !important;
}

.order-summery ul li .alert {
    padding: 0px 8px !important;
}

.test-list .alert {
    padding: 2px 8px !important;
}


@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}


.header-notification {
    height: auto;
    width: 100%;
    overflow: hidden;
    transition: all 0.5s ease;
}

.header-notification.hidden {
    height: 0;
    padding: 0;
}

.bootstrap-growl .close {
    position: absolute;
    right: 10px;
    color: #000;
    font-size: 16px;
    top: 10px;
}

/* common end */

/* Button Start */
.btn-outline-thm {
    color: var(--theme-color);
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    white-space: nowrap;
    background-color: transparent;
    line-height: 1;
    border: 1px solid var(--theme-color);
    margin: 0;
}

.btn-outline-thm:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.btn-thm {
    color: #fff;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    white-space: nowrap;
    line-height: 1;
    border: 1px solid var(--theme-color);
    margin: 0;
    background-color: var(--theme-color);
}

.btn-thm:hover {
    background-color: transparent;
    color: var(--theme-color);
}

.btn-thm-solid {
    color: #fff;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    white-space: nowrap;
    background-color: transparent;
    line-height: 1;
    border: 1px solid var(--theme-color);
    margin: 0;
    background-color: var(--theme-color);
    color: #fff;
}

.btn-thm-solid:hover {
    background-color: #274b21;
    color: #fff;
}

.btn-outline-sec {
    color: var(--theme-color2);
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    white-space: nowrap;
    background-color: transparent;
    line-height: 1;
    border: 1px solid var(--theme-color2);
    margin: 0;
}

.btn-outline-sec:hover {
    background-color: var(--theme-color2);
    color: #fff;
}

.btn-sec {
    color: #fff;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    white-space: nowrap;
    background-color: transparent;
    line-height: 1;
    border: 1px solid var(--theme-color2);
    margin: 0;
    background-color: var(--theme-color2);
    color: #fff;
}

.btn-sec:hover {
    background-color: transparent;
    color: var(--theme-color2);
}

.btn-sec2 {
    border-radius: 5px;
    color: #fff;
    text-align: center;
    position: relative;
    border: 1px solid var(--theme-color2);
    z-index: 0;
    transition: all 0.3s linear;
    overflow: hidden;
}

.btn-sec2:hover {
    color: var(--theme-color2);
}

.btn-sec2::before {
    background-color: var(--theme-color2);
    width: 51%;
    left: 0;
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    z-index: -1;
    transition: all 0.3s linear;
}

.btn-sec2::after {
    background-color: var(--theme-color2);
    width: 51%;
    right: 0;
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    z-index: -1;
    transition: all 0.3s linear;
}

.btn-sec2:hover::before,
.btn-sec2:hover::after {
    width: 0;
    transition: all 0.3s linear;
}

.btn-outline-dark {
    border: 1px solid #000;
}

.btn-outline-danger {
    color: #dc3545;
    border: 1px solid;
    border-color: #dc3545;
}

.btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
}

/* Button End */


/* Arrow Button Start */
.side-arrow.arrow-slider .slick-prev,
.side-arrow.arrow-slider .slick-next {
    top: 50%;
    z-index: 1;
    border-radius: 100%;
}

.side-arrow.arrow-slider .slick-prev {
    left: -25px;
    right: unset;
}

.side-arrow.arrow-slider .slick-next {
    right: -25px;
}

.side-arrow.arrow-slider.half-slider .slick-next {
    right: 30px;
}

/* Arrow Button End */

/* Header Start*/
header .header-top {
    background: var(--theme-light-color);
}

header .top-nav {
    border-bottom: 1px solid #D1D1D1;
}



/* Header End*/
.ratio_45 .bg-size:before {
    content: "";
    padding-top: 45%;
    display: block;
}

.product-box-4.cust-box {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.125);
}

.product-box-4.cust-box .product-image img {
    width: 100%;
    /* height: 100%; */
    height: calc(300px + 60 * (100vw - 320px) / 1600);
    object-fit: cover;
    margin: 0;
}

.product-box-4.cust-box .product-image {
    overflow: hidden;
    padding: 0;
}

.product-box-4.cust-box .product-detail {
    margin: 0;
}

.product-box-4.cust-box .product-detail .buy-button,
.product-box-4 .product-detail .addtocart_btn .qty-box.open {
    bottom: 16px;
    right: 16px;
}

.product-detail .delivery-box-info {
    width: 50%;
}

.delivery-input {
    border: none;
}

.product-detail .delivery-box-info .check-info {
    border-bottom: 3px solid var(--theme-color);
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.product-detail .right-box-contain .pickup-box .product-info .product-info-list li {
    width: calc(50% - 15px);
}

.cust-box .qty-box {
    max-width: calc(100px + 60 * (100vw - 320px) / 1600);
}


.item-like {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.125);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
    z-index: 5;

}

.item-like svg {
    width: 16px;
    height: 16px;
}

.why-us.faq-contain .faq-top-box {
    text-align: start;
    background-color: transparent;
}

.why-us.faq-contain .faq-top-box .faq-box-icon {
    margin: 0 0 16px;
    background-color: var(--theme-light-color);
    border: 1px solid var(--theme-color);
    border-radius: 10px;
}

.faq-contain .faq-top-box .faq-box-contain p {
    margin: 5px 0 0;
}

.icons-md img {
    width: 60px;
    height: 60px;
}

.service-contain-2:hover .icons-md img {
    filter: brightness(0) invert(1);
}

.common-package {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(5px + 8 * (100vw - 320px) / 1600);
}

.common-package li {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    min-height: unset;
    margin: 0;
    padding: 0;
    position: relative;
}

.common-package .form-check-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    float: unset;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}


.product-section .right-box-contain .product-package .select-package li a.active,
.product-section .right-box-contain .product-package .select-package li:hover a {
    color: var(--theme-color);
    background: transparent;
}

.cust-check .form-check-label {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
    color: #4a5568;
    padding: 6px 10px;
    border: 1px solid rgba(154, 154, 154, .4);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    position: relative;
}

.cust-check .form-check-input:checked~.form-check-label {
    border-color: var(--theme-color);
    background: var(--theme-color);

}

.cust-select .form-check-label {
    width: 100px;
    height: 150px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;

}

.cust-check .form-check-input:checked~.form-check-label span {
    color: #fff;
    background-color: var(--theme-color);
}

.product-section .right-box-contain .product-package .select-package.image li .form-check-label img {
    width: 90px;
    height: 90px;
    border-radius: 5px;
}

.cust-label-thm {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    color: #ffffff;
    padding: 6px 10px;
    border: 1px solid rgba(154, 154, 154, .4);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    width: fit-content;
    border-color: var(--theme-color);
    background: var(--theme-color);
}

.cust-file[type="file"] {
    /* Style the color of the message that says 'No file chosen' */
    color: #878787;
}

.cust-file[type="file"]::-webkit-file-upload-button {
    background: var(--theme-color);
    border: 2px solid var(--theme-color);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    outline: none;
    padding: 5px 15px;
    text-transform: uppercase;
    transition: all 1s ease;
    margin-left: 1px;
}

.cust-file[type="file"]::-webkit-file-upload-button:hover {
    background: var(--theme-color);
    border: 2px solid var(--theme-color);
}

.modal-cls1 {
    position: absolute;
    top: -30px;
    right: -30px;
}

/************ Cart Css Start *****************/

.cust-qty .qty-box {
    margin-top: 0;
    width: 100%;
    max-width: 130px;
}

.cust-qty .input-group {
    background-color: transparent;
    width: fit-content;
    border: 1px solid #000;
}

.cust-qty .input-group button {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.09);
    background-color: var(--theme-light-color);
}

.cust-qty .input-group input {
    max-width: 70px;
}

.offcanvas.show .cbtn {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.offcanvas.show .cbtn {
    z-index: 9;
}

.cbtn {
    position: absolute;
    left: -60px;
    top: 10px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}

.btnclose {
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 2px solid #e3e3e3;
    box-shadow: 0px 10px 10px #0000004a;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OTP Css */
.otp-field {
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.otp-field input {
    height: 50px;
    width: 50px;
    border-radius: 6px;
    outline: none;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid #ddd;
}

.otp-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.otp-field input::-webkit-inner-spin-button,
.otp-field input::-webkit-outer-spin-button {
    display: none;
}

.market-otp .otp-field {
    gap: 20px;
}

.market-otp .otp-field input {
    width: 100%;
}

.cart-order-items {
    border-radius: 5px;
    /* overflow: hidden; */
}

.cart-order-items .drop-cart {
    display: flex;
    align-items: flex-start;
}

.cart-order-items .drop-image img {
    width: 87px;
    background: #f8f8f8;
    border-radius: 5px;
}

.cart-order-items .accordion-button:not(.collapsed) {
    background: transparent;
    color: #000;
}

.cart-order-items .test-list {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.cart-order-items .test-items {
    width: 100%;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.125);
    padding: 5px 20px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.09);
    transition: all 0.3s ease-in-out;
    color: #222;
}

.cart-order-items .test-items>label {
    cursor: pointer;
    width: 100%;

}

.test-list-item {
    width: 100%;
}

.cart-middle-md {
    max-height: calc(100vh - 265px);
    overflow-y: auto;
    overflow-x: hidden;
}

.cart-middle-test {
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    overflow-x: hidden;
}

.order-cart .cart-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    box-shadow: rgba(90, 93, 95, 0.4) 0px 8px 24px;
}

.payment-icon {
    width: 56px;
    height: 56px;
}

.checkout-section-2 .order-checkout .right-side-summery-box .summery-box-2 .summery-total li {
    justify-content: space-between;
}

.summery-box .summery-contain li {
    padding: calc(0px + 4 * (100vw - 320px) / 1600) 0;
}

header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:first-child {
    display: inline-block;
}

/************ Dashboard Css Start *****************/

.user-dashboard-section .dashboard-left-sidebar .profile-box .cover-image img {
    height: 85px;
}

.order-item-img {
    width: 70px;
    height: 70px;
}

.order-item-img-lg {
    width: 90px;
    height: 70px;
}

.order-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summery-box .summery-contain li,
.summery-box .summery-total li:last-child {
    justify-content: space-between;
}


.profile-pic {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    width: fit-content;
    transition: all 0.3s ease;
    height: calc(99px + (108 - 93) * ((100vw - 320px) / (1920 - 320)));
    width: calc(99px + (108 - 93) * ((100vw - 320px) / (1920 - 320)));
}

.profile-pic img {
    width: calc(99px + (108 - 93) * ((100vw - 320px) / (1920 - 320)));
    height: calc(99px + (108 - 93) * ((100vw - 320px) / (1920 - 320)));
    -o-object-fit: cover;
    object-fit: cover;
    background-color: #f8f8f8;
    border-radius: 0;
    padding: 5px;
    border: 1px solid #ececec;
    -webkit-box-shadow: 2px 3px 8px rgba(34, 34, 34, 0.32);
    box-shadow: 2px 3px 8px rgba(34, 34, 34, 0.32);
    position: absolute;
    z-index: 0;
}

.cover-icon {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: -10px;
    right: -5%;
    background-color: #fff;
    border-radius: 100%;
    color: #4a5568;
    cursor: pointer;
}

.cover-icon i {
    position: relative;
}

.profile-url {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    width: 106%;
    height: 108%;
    cursor: pointer;
    z-index: 1;
}

.user-dashboard-section .dashboard-right-sidebar .dashboard-bg-box {
    padding: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
    background-color: #fff;
    border-radius: 6px;
}

.user-dashboard-section .dashboard-right-sidebar .dashboard-home .dashboard-contant-title {
    border-bottom: 1px solid #ddd;
    padding-bottom: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: calc(10px + (15 - 10) * ((100vw - 320px) /(1920 - 320)));
}

.user-dashboard-section .dashboard-right-sidebar .dashboard-home .dashboard-contant-title h4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.user-dashboard-section .dashboard-right-sidebar .dashboard-home .dashboard-contant-title h4 a {
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.user-dashboard-section .dashboard-right-sidebar .dashboard-home .dashboard-detail h6 {
    margin-bottom: calc(4px + (8 - 4) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.6;
}

.cust-sidebar-nav .nav-item .nav-link {
    justify-content: space-between;
}

.cust-sidebar-nav .nav-item .nav-link.active::before {
    background: var(--theme-light-color) !important;
    opacity: 0.4 !important;
}

.cust-sidebar-nav .nav-item .nav-link.active {
    border: none !important;
}

.user-dashboard-section .dashboard-left-sidebar.account-sidebar {
    overflow: visible;
    top: 154px;
}

.user-dashboard-section .dashboard-left-sidebar.account-sidebar .profile-box .profile-contain {
    padding: 15px;
}

.user-dashboard-section .dashboard-left-sidebar.account-sidebar .profile-box .profile-contain .profile-image {
    margin-top: 0;
}

/************ Dashboard Css End *****************/

/************ Cart Css End *****************/


/* Responsive Start */
@media (max-width:768px) {
    header .top-nav {
        padding: 24px 0;
    }

    .cbtn {
        left: unset;
        right: 5px;
        top: 15px;
    }

    .btnclose {
        width: 25px;
        height: 25px;
    }

    .btn-close {
        width: 0.1em;
        height: 0.1em;
    }

    .product-box-4.cust-box .product-detail .buy-button,
    .product-box-4 .product-detail .addtocart_btn .qty-box.open {
        bottom: unset;
        right: unset;
    }

    .side-arrow.arrow-slider .slick-prev {
        left: -5px;
    }

    .side-arrow.arrow-slider .slick-next {
        right: -5px;
    }

    .side-arrow.arrow-slider.half-slider .slick-next {
        right: 30px;
    }

    .product-detail .right-box-contain .pickup-box .product-info .product-info-list li {
        width: 100%;
    }

    /* header .top-nav .navbar-top .rightside-box .right-side-menu .right-side {
        display: block;
    } */

    .navbar-shadow .btn-close {
        width: 1em;
        height: 1em;
    }

    header .navbar {
        z-index: 2;
    }

    .product-detail .delivery-box-info {
        width: 100%;
    }

    .theme-modal .modal-dialog .modal-content .modal-header .btn-close {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .theme-modal .modal-dialog .modal-content .modal-header .btn-close i {
        margin-top: -1px;
    }
}

.product-section-box .custom-nav .nav-item .nav-link:focus::after,
.product-section-box .custom-nav .nav-item .nav-link:hover::after,
.product-section-box .custom-nav .nav-item .nav-link.active::after {
    background: var(--theme-color);
}

/* 
.breadcrumb-section{
    background-color: var(--light-blue);
} */
.breadcrumb-section .breadscrumb-contain {
    padding: calc(26px + (40 - 26) * ((100vw - 320px) / (1920 - 320))) 0;
    text-align: center;
    color: #222;
    font-family: "Public Sans", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.side-sticky {
    position: sticky;
    top: 30px;
}

.feature-box-img img {
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.123);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-sec-sm.btn-sec {
    font-weight: 500 !important;
    font-size: 13px;
    padding: 6px 7px;
    line-height: 14px;
}

.btn-sec {
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    border: 1px solid var(--thm-color2);
    margin: 0;
    background-color: #f58634;
    color: #fff;
}

/* wishlist style */
.fill-red path {
    fill: red !important;
}

.feature-panel-search {
    background-color: #fff;
    padding: calc(30px + 4*(100vw - 320px) / 1600);
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 8px rgba(221, 221, 221, .549);
    box-shadow: 0px 4px 8px rgba(221, 221, 221, .549);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 6;
}

.ui-autocomplete .ui-menu-item {
    cursor: pointer;
    display: block;
    border-bottom: 1px solid #ddd;
}

.ui-autocomplete {
    z-index: 999999;
}


.product-view-img img {
    max-height: 450px;
}

.slider-main-img img {
    max-height: 600px;
}

.ui-menu {
    background-color: #f8f8f8 !important;
}

.ui-autocomplete .ui-menu-item:hover .ui-menu-item-wrapper {
    background: var(--theme-light-color) !important;
    color: #000 !important;
    border-color: var(--theme-color);
}

.category-div {
    min-height: 18px;
}

.product-box-3 .product-footer .product-detail .name {
    min-height: 56px;
}

.product-box .sold del {
    opacity: 0.5;
}


/* changes new   */

.features-box.border-b-1 {
    border-bottom: 1px solid #ececec;
    padding-bottom: 24px;
}

.product-detail-container .right-box-contain .delivery-info-input {
    width: 40%;
}

@media (max-width:768px) {
    .product-detail-container .right-box-contain .delivery-info-input {
        width: 100%;
    }
}

/* sold price  */
.product-modal-container .modal-body .right-sidebar-modal h6.sold {
    font-weight: 600;
    line-height: 21px;
    color: #000 !important;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600) !important;
}

.product-detail-container .right-box-contain .price-rating .productPrice h6.sold {
    font-weight: 600;
    line-height: 21px;
    color: #000 !important;
    font-size: calc(16px + 1 * (100vw - 320px) / 1600) !important;
}

/* sold price  */

/* del price  */
.product-modal-container .modal-body .right-sidebar-modal h6.sold del {
    color: #8d8d8d;
    font-weight: 400;
    font-size: calc(14px + 1 * (100vw - 320px) / 1600) !important;
}


.product-detail-container .right-box-contain .price-rating .productPrice h6 del {
    color: #8d8d8d;
    font-weight: 400;
    font-size: calc(15px + 1 * (100vw - 320px) / 1600) !important;
}

/* del price  */


.product-modal-container .modal-body .right-sidebar-modal h6 span.text-success {
    font-size: calc(12px + 1 * (100vw - 320px) / 1600) !important;
}

.product-detail-container .right-box-contain .price-rating .productPrice h6 span.text-success {
    font-size: calc(13px + 1 * (100vw - 320px) / 1600) !important;
}




/* modal ------------------ */
.product-modal-container .modal-body .product-view-img {
    height: 450px;
    overflow: hidden;
}

/* product detail  */
.product-detail-container .product-main .single-main-img,
.product-detail-container .product-main .active-main-img {
    height: 600px !important;
    overflow: hidden;
}

.product-detail-container .product-left-box .left-bottom-slider .small-image {
    height: 180px !important;
    overflow: hidden;
}

@media (max-width: 1024px) {

    .product-detail-container .product-main .single-main-img,
    .product-detail-container .product-main .active-main-img {
        height: 500px !important;
    }

    .product-modal-container .modal-body .product-view-img {
        height: 400px;
    }

    .product-detail-container .product-left-box .left-bottom-slider .small-image {
        height: 150px !important;
        overflow: hidden;
    }
}

@media (max-width: 768px) {

    .product-detail-container .product-main .single-main-img,
    .product-detail-container .product-main .active-main-img {
        height: 450px !important;
    }

    .product-modal-container .modal-body .product-view-img {
        height: 350px;
    }

    .product-detail-container .product-left-box .left-bottom-slider .small-image {
        height: 120px !important;
        overflow: hidden;
    }
}

@media (max-width: 576px) {

    .product-detail-container .product-main .single-main-img,
    .product-detail-container .product-main .active-main-img {
        height: 350px !important;
    }

    .product-detail-container .product-left-box .left-bottom-slider .small-image {
        height: 96px !important;
        overflow: hidden;
    }
}



/* product details & modal image  */
.product-modal-container .modal-body .product-view-img img,
.product-detail-container .product-main .single-main-img img,
.product-detail-container .product-main .active-main-img img,
.product-detail-container .product-left-box .left-bottom-slider .small-image img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block !important;
}
.w-h-500 {
    width: 100%;
    height: 500px;
}
.img-cover {
    object-fit: contain;
}