.theme-color-1 {
    --theme-color: #393A96;
    --theme-color-rgb: 217, 159, 70;
}
.theme-color-2 {
    --theme-color: #0baf9a;
    --theme-color-rgb: 11, 175, 154;
}
.theme-color-3 {
    --theme-color: #239698;
    --theme-color-rgb: 35, 150, 152;
}
.theme-color-4 {
    --theme-color: #6262a6;
    --theme-color-rgb: 35, 150, 152;
}
.theme-color-5 {
    --theme-color: #417394;
    --theme-color-rgb: 65, 115, 148;
}
:root {
    --theme-color: #0da487;
    --theme-color-rgb: 13, 164, 135;
    --theme-color1: #393A96;
    --theme-color1-rgb: 14, 148, 122;
    --theme-color2: linear-gradient(90.56deg, var(--theme-color1) 8.46%, var(--theme-color) 62.97%);
}
@-webkit-keyframes scaleUpDown {
    0%,
    100% {
        -webkit-transform: scaleY(1) scaleX(1);
        transform: scaleY(1) scaleX(1);
    }
    50%,
    90% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }
    75% {
        -webkit-transform: scaleY(0.95);
        transform: scaleY(0.95);
    }
    80% {
        -webkit-transform: scaleX(0.95);
        transform: scaleX(0.95);
    }
}
@keyframes scaleUpDown {
    0%,
    100% {
        -webkit-transform: scaleY(1) scaleX(1);
        transform: scaleY(1) scaleX(1);
    }
    50%,
    90% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }
    75% {
        -webkit-transform: scaleY(0.95);
        transform: scaleY(0.95);
    }
    80% {
        -webkit-transform: scaleX(0.95);
        transform: scaleX(0.95);
    }
}
@-webkit-keyframes shake {
    0%,
    100% {
        -webkit-transform: skewX(0) scale(1);
        transform: skewX(0) scale(1);
    }
    50% {
        -webkit-transform: skewX(5deg) scale(0.9);
        transform: skewX(5deg) scale(0.9);
    }
}
@keyframes shake {
    0%,
    100% {
        -webkit-transform: skewX(0) scale(1);
        transform: skewX(0) scale(1);
    }
    50% {
        -webkit-transform: skewX(5deg) scale(0.9);
        transform: skewX(5deg) scale(0.9);
    }
}
@-webkit-keyframes particleUp {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: -100%;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}
@keyframes particleUp {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: -100%;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}
@-webkit-keyframes shape {
    0% {
        background-position: 100% 0;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 0 100%;
    }
}
@keyframes shape {
    0% {
        background-position: 100% 0;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 0 100%;
    }
}
@-webkit-keyframes rounded {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rounded {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes move {
    0% {
        -webkit-transform: scale(1) rotate(0deg) translate3d(0, 0, 1px);
        transform: scale(1) rotate(0deg) translate3d(0, 0, 1px);
    }
    30% {
        opacity: 1;
    }
    100% {
        z-index: 10;
        -webkit-transform: scale(0) rotate(360deg) translate3d(0, 0, 1px);
        transform: scale(0) rotate(360deg) translate3d(0, 0, 1px);
    }
}
@keyframes move {
    0% {
        -webkit-transform: scale(1) rotate(0deg) translate3d(0, 0, 1px);
        transform: scale(1) rotate(0deg) translate3d(0, 0, 1px);
    }
    30% {
        opacity: 1;
    }
    100% {
        z-index: 10;
        -webkit-transform: scale(0) rotate(360deg) translate3d(0, 0, 1px);
        transform: scale(0) rotate(360deg) translate3d(0, 0, 1px);
    }
}
@-webkit-keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}
@keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}
@-webkit-keyframes flash {
    0% {
        opacity: 0.4;
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    100% {
        opacity: 1;
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
}
@keyframes flash {
    0% {
        opacity: 0.4;
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    100% {
        opacity: 1;
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
}
@keyframes shake {
    0% {
        -webkit-transform: translate(3px, 0);
        transform: translate(3px, 0);
    }
    50% {
        -webkit-transform: translate(-3px, 0);
        transform: translate(-3px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
@-webkit-keyframes grow {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes grow {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
.alert {
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 18px 24px;
}

.sp_class_1_level{
    display: block;
    margin-left: 0px;
    
}
.sp_class_2_level{
    display: block;
    margin-left: 20px;    
}
.sp_class_3_level{
    display: block;
    margin-left: 40px;     
}
/*
.jstree-icon {
    display: inline-block;
    text-decoration: none;
    margin: 0;
    padding: 0;
    vertical-align: top;
    text-align: center;
}
.jstree-default .jstree-node, .jstree-default .jstree-icon {
    background-repeat: no-repeat;
    background-color: transparent;
}
.jstree-default .jstree-node, .jstree-default .jstree-icon {
    background-image: url(32px.png);
}
.jstree-default .jstree-icon:empty {
    width: 24px;
    height: 24px;
    line-height: 24px;
}
.jstree-default .jstree-ocl {
    background-position: -68px -4px;
}
.widget_categories ul > li a{
    line-height: 30px;
}*/
.widget_categories ul > li.sp_class_2_level:before, .widget_categories ul > li.sp_class_3_level:before{
    /*width:0px;*/
}
.footer-item .widget ul li{
    display: block;
}
@media (max-width: 575px) {
    .alert {
        top: 0px !important;
        right: 0px !important;
        margin: 12px !important;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}
.alert .alert-success {
    background: #39da8a !important;
    color: #fff !important;
    border: none;
}
.alert .alert-success .close {
    color: #fff;
    opacity: 1;
    top: -4px;
    text-shadow: none;
    font-weight: 400;
    font-size: 24px;
}
.alert .btn-close {
    top: 50% !important;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
}
[dir="rtl"] .alert .btn-close {
    right: unset !important;
    left: 10px !important;
}
[data-notify="icon"] {
    margin-right: 5px;
}
[dir="rtl"] [data-notify="icon"] {
    margin-right: unset;
    margin-left: 5px;
}
[data-notify="progressbar"] {
    width: 100%;
    height: 5px;
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0;
}
.progress-bar-info {
    background-color: #0c5460;
}
.add-cart-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
    position: fixed;
    top: -90px;
    right: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
    border: 1px solid #ececec;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 10px;
    -webkit-box-shadow: 0px 3px 5px rgba(34, 34, 34, 0.129);
    box-shadow: 0px 3px 5px rgba(34, 34, 34, 0.129);
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    z-index: 6;
}
.add-cart-box.show {
    top: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}
.add-cart-box .add-iamge {
    width: 50px;
    height: auto;
}
.add-cart-box .btn-close {
    color: #fff;
    background-color: var(--theme-color);
    opacity: 1;
    background-image: none;
    position: absolute;
    top: -6px;
    right: -6px;
}
.add-cart-box .add-contain h6 {
    font-weight: 600;
}
.breadscrumb-section {
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}
.breadscrumb-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;
}
@media (max-width: 480px) {
    .breadscrumb-section .breadscrumb-contain {
        display: block;
    }
}
.breadscrumb-section .breadscrumb-contain h2 {
    font-weight: 700;
    font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 0;
}
@media (max-width: 480px) {
    .breadscrumb-section .breadscrumb-contain h2 {
        text-align: center;
        margin-bottom: 8px;
    }
}
.breadscrumb-section .breadscrumb-contain .search-box-breadscrumb {
    position: relative;
    width: 70%;
    margin: 0 auto;
}
@media (max-width: 575px) {
    .breadscrumb-section .breadscrumb-contain .search-box-breadscrumb {
        width: 90%;
    }
}
@media (max-width: 360px) {
    .breadscrumb-section .breadscrumb-contain .search-box-breadscrumb {
        width: 100%;
    }
}
.breadscrumb-section .breadscrumb-contain .search-box-breadscrumb input {
    width: 100%;
    border: none;
    border-radius: 6px;
    font-size: 15px;
}
.breadscrumb-section .breadscrumb-contain .search-box-breadscrumb i {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    right: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #4a5568;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
}
.breadscrumb-section .breadscrumb-contain nav {
    margin-left: auto;
}
[dir="rtl"] .breadscrumb-section .breadscrumb-contain nav {
    margin-left: unset;
    margin-right: auto;
}
.breadscrumb-section .breadscrumb-contain nav .breadcrumb {
    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;
}
.breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item {
    font-weight: 500;
}
.breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item i {
    color: #4a5568;
}
.breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item.active {
    color: #000;
    margin-top: 2px;
}
.breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item + .breadcrumb-item {
    position: relative;
}
[dir="rtl"] .breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
    padding-right: 8px;
}
.breadscrumb-section .breadscrumb-contain nav .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    color: #4a5568;
}
.breadscrumb-section .breadscrumb-order {
    display: block;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image {
    width: calc(170px + (250 - 170) * ((100vw - 320px) / (1920 - 320)));
    height: auto;
    margin: 0 auto calc(16px + (28 - 16) * ((100vw - 320px) / (1920 - 320)));
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .checkmark {
    position: relative;
    padding: 30px;
    -webkit-animation: checkmark 5m cubic-bezier(0.42, 0, 0.275, 1.155) both;
    animation: checkmark 5m cubic-bezier(0.42, 0, 0.275, 1.155) both;
    display: inline-block;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    margin: -20px;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .checkmark__check {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    fill: white;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .checkmark__background {
    fill: var(--theme-color);
    -webkit-animation: rotate 35s linear both infinite;
    animation: rotate 35s linear both infinite;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star {
    position: absolute;
    -webkit-animation: grow 3s infinite;
    animation: grow 3s infinite;
    fill: var(--theme-color);
    opacity: 0;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(1) {
    width: 12px;
    height: 12px;
    left: 12px;
    top: 16px;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(2) {
    width: 18px;
    height: 18px;
    left: 168px;
    top: 84px;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(3) {
    width: 10px;
    height: 10px;
    left: 32px;
    top: 162px;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(4) {
    height: 20px;
    width: 20px;
    left: 82px;
    top: -12px;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(5) {
    width: 14px;
    height: 14px;
    left: 125px;
    top: 162px;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(6) {
    width: 10px;
    height: 10px;
    left: 16px;
    top: 16px;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(1) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(2) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(3) {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(4) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(5) {
    -webkit-animation-delay: 7.5s;
    animation-delay: 7.5s;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .star:nth-child(6) {
    -webkit-animation-delay: 9s;
    animation-delay: 9s;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .checkmark {
    position: relative;
    padding: 30px;
    -webkit-animation: checkmark 5m cubic-bezier(0.42, 0, 0.275, 1.155) both;
    animation: checkmark 5m cubic-bezier(0.42, 0, 0.275, 1.155) both;
    display: inline-block;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    margin: -20px;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .checkmark__check {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    fill: white;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image .checkmark__background {
    fill: var(--theme-color);
    -webkit-animation: rotate 35s linear both infinite;
    animation: rotate 35s linear both infinite;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image i {
    font-size: 50px;
    color: #4ead4e;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image h2 {
    margin-top: 10px;
    margin-bottom: 15px;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image p {
    font-size: 18px;
    text-transform: capitalize;
}
.breadscrumb-section .breadscrumb-order .order-box .order-image.order-fail i {
    color: var(--theme-color);
}
.breadscrumb-section .breadscrumb-order .order-box .order-contain h3 {
    font-size: calc(21px + (24 - 21) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
    margin-bottom: 6px;
}
.breadscrumb-section .breadscrumb-order .order-box .order-contain h5 {
    margin-bottom: 8px;
    line-height: 1.4;
}
.faq-breadscrumb {
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}
.faq-breadscrumb .breadscrumb-contain {
    padding: calc(26px + (60 - 26) * ((100vw - 320px) / (1920 - 320))) 0;
    text-align: center;
    color: #222;
    display: block;
}
.faq-breadscrumb .breadscrumb-contain h2 {
    font-size: calc(22px + (48 - 22) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
    margin-top: -6px;
}
.faq-breadscrumb .breadscrumb-contain p {
    margin: calc(11px + (16 - 11) * ((100vw - 320px) / (1920 - 320))) auto 0;
    color: #4a5568;
    width: 50%;
    line-height: 1.7;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
@media (max-width: 1660px) {
    .faq-breadscrumb .breadscrumb-contain p {
        width: 60%;
    }
}
@media (max-width: 1366px) {
    .faq-breadscrumb .breadscrumb-contain p {
        width: 70%;
    }
}
@media (max-width: 991px) {
    .faq-breadscrumb .breadscrumb-contain p {
        width: 90%;
    }
}
@media (max-width: 767px) {
    .faq-breadscrumb .breadscrumb-contain p {
        width: 100%;
    }
}
.faq-breadscrumb .breadscrumb-contain p span {
    display: inline;
}
.faq-breadscrumb .breadscrumb-contain .faq-form-tag {
    position: relative;
    margin: calc(18px + (35 - 18) * ((100vw - 320px) / (1920 - 320))) auto 0;
    width: 50%;
}
@media (max-width: 1660px) {
    .faq-breadscrumb .breadscrumb-contain .faq-form-tag {
        width: 60%;
    }
}
@media (max-width: 1366px) {
    .faq-breadscrumb .breadscrumb-contain .faq-form-tag {
        width: 70%;
    }
}
@media (max-width: 991px) {
    .faq-breadscrumb .breadscrumb-contain .faq-form-tag {
        width: 90%;
    }
}
@media (max-width: 767px) {
    .faq-breadscrumb .breadscrumb-contain .faq-form-tag {
        width: 100%;
    }
}
.faq-breadscrumb .breadscrumb-contain .faq-form-tag .input-group {
    background-color: #fff;
}
.faq-breadscrumb .breadscrumb-contain .faq-form-tag .input-group i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
    color: var(--theme-color);
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.faq-breadscrumb .breadscrumb-contain .faq-form-tag .input-group .form-control {
    padding-left: 0;
    border: none;
}
[dir="rtl"] .faq-breadscrumb .breadscrumb-contain .faq-form-tag .input-group .form-control {
    padding-left: unset;
    padding-right: 0;
}
.faq-breadscrumb .breadscrumb-contain .faq-form-tag .input-group .form-control:focus {
    background-color: transparent;
}
.faq-breadscrumb .breadscrumb-contain .faq-form-tag .input-group .faq-dropdown-menu li {
    display: block;
}
.faq-breadscrumb .breadscrumb-contain .faq-form-tag .input-group .faq-dropdown-button {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    color: var(--theme-color);
    z-index: 0;
}
.faq-breadscrumb .breadscrumb-contain .faq-form-tag .input-group .faq-dropdown-button::after {
    content: unset;
}
.faq-breadscrumb .breadscrumb-contain .faq-form-tag .input-group .faq-dropdown-button i {
    position: relative;
    padding: 0;
    margin-left: 5px;
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] .faq-breadscrumb .breadscrumb-contain .faq-form-tag .input-group .faq-dropdown-button i {
    margin-left: unset;
    margin-right: 5px;
}
.vendore-breadscrumb-section {
    background-image: url("../images/vendor-page/breadcrumb.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(52px + (100 - 52) * ((100vw - 320px) / (1920 - 320))) 0px;
}
.vendore-breadscrumb-section .breadscrumb-contain {
    width: 50%;
    margin: 0 auto;
}
@media (max-width: 1366px) {
    .vendore-breadscrumb-section .breadscrumb-contain {
        width: 63%;
    }
}
@media (max-width: 991px) {
    .vendore-breadscrumb-section .breadscrumb-contain {
        width: 85%;
    }
}
@media (max-width: 767px) {
    .vendore-breadscrumb-section .breadscrumb-contain {
        width: 100%;
    }
}
.vendore-breadscrumb-section .breadscrumb-contain h2 {
    font-size: calc(27px + (54 - 27) * ((100vw - 320px) / (1920 - 320)));
    text-align: center;
    margin-bottom: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.vendore-breadscrumb-section .breadscrumb-contain form {
    position: relative;
}
.vendore-breadscrumb-section .breadscrumb-contain form span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 16px;
}
[dir="rtl"] .vendore-breadscrumb-section .breadscrumb-contain form span {
    left: unset;
    right: 16px;
}
.vendore-breadscrumb-section .breadscrumb-contain form span i {
    font-size: calc(21px + (27 - 21) * ((100vw - 320px) / (1920 - 320)));
    color: var(--theme-color);
}
.vendore-breadscrumb-section .breadscrumb-contain form .form-control {
    padding: calc(8px + (14 - 8) * ((100vw - 320px) / (1920 - 320))) calc(95px + (122 - 95) * ((100vw - 320px) / (1920 - 320))) calc(8px + (14 - 8) * ((100vw - 320px) / (1920 - 320)))
        calc(48px + (59 - 48) * ((100vw - 320px) / (1920 - 320)));
    border: none;
}
[dir="rtl"] .vendore-breadscrumb-section .breadscrumb-contain form .form-control {
    padding-left: calc(95px + (122 - 95) * ((100vw - 320px) / (1920 - 320)));
    padding-right: calc(48px + (59 - 48) * ((100vw - 320px) / (1920 - 320)));
}
.vendore-breadscrumb-section .breadscrumb-contain form button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: calc(3px + (6 - 3) * ((100vw - 320px) / (1920 - 320)));
    padding: 0;
    font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1920 - 320)));
    width: calc(77px + (108 - 77) * ((100vw - 320px) / (1920 - 320)));
    height: calc(33px + (42 - 33) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] .vendore-breadscrumb-section .breadscrumb-contain form button {
    right: unset;
    left: calc(3px + (6 - 3) * ((100vw - 320px) / (1920 - 320)));
}
.btn {
    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;
    color: #222;
    padding: calc(7px + (14 - 7) * ((100vw - 320px) / (1920 - 320))) calc(14px + (32 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    background: transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    z-index: 0;
    white-space: nowrap;
}
.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn:hover .icon {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
}
.btn.dark-button {
    background: linear-gradient(93.33deg, #222221 12.35%, #2f2f2d 99.38%) !important;
}
.btn .icon {
    margin-left: calc(6px + (12 - 6) * ((100vw - 320px) / (1920 - 320)));
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
[dir="rtl"] .btn .icon {
    margin-left: unset;
    margin-right: calc(6px + (12 - 6) * ((100vw - 320px) / (1920 - 320)));
}
.btn .icon-2 {
    margin-left: 6px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
[dir="rtl"] .btn .icon-2 {
    margin-left: unset;
    margin-right: 6px;
}
.btn-furniture {
    border: 1px solid #4a5568;
    color: #4a5568;
    display: block;
}
.btn-animation {
    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;
    overflow: hidden;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    background: transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    background: #ff6b6b;
    background: -webkit-gradient(linear, left top, right top, from(#ff6b6b), to(#ff4f4f));
    background: linear-gradient(90deg, #ff6b6b 0%, #ff4f4f 100%);
    border: none;
    z-index: 0;
}
.btn-animation i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.btn-animation::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    background: #ff4f4f;
    background: -webkit-gradient(linear, left top, right top, from(#ff4f4f), to(#ff6b6b));
    background: linear-gradient(90deg, #ff4f4f 0%, #ff6b6b 100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-animation:hover {
    color: #fff;
}
.btn-animation:hover i {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
}
.btn-animation:hover::after {
    top: 0;
    height: 100%;
}
.btn-md {
    padding: calc(8px + (11 - 8) * ((100vw - 320px) / (1920 - 320))) calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}
.btn-2 {
    padding: 9px 25px;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
}
.btn-2:hover::after {
    top: 0;
    height: 100%;
}
.btn-2-animation {
    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;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    background: #0da487;
    background: -webkit-gradient(linear, left top, right top, from(#0da487), to(#393A96));
    background: linear-gradient(90deg, #0da487 0%, #393A96 100%);
    border: none;
    z-index: 0;
}
.btn-2-animation::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    background: #0da487;
    background: -webkit-gradient(linear, left top, right top, from(#393A96), to(#0da487));
    background: linear-gradient(90deg, #393A96 0%, #0da487 100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-category {
    padding: calc(6px + (8 - 6) * ((100vw - 320px) / (1920 - 320))) calc(16px + (27 - 16) * ((100vw - 320px) / (1920 - 320)));
    letter-spacing: 0.8px;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
    border-radius: 50px;
}
.cookie-bar-box {
    background: #fff;
    position: fixed;
    bottom: 10px;
    right: 10px;
    border-radius: calc(8px + (20 - 8) * ((100vw - 320px) / (1920 - 320)));
    max-width: 370px;
    overflow: hidden;
    z-index: 2;
    -webkit-box-shadow: 0 0.25rem 0.5rem rgba(34, 34, 34, 0.05), 0 24px 35px rgba(34, 34, 34, 0.1);
    box-shadow: 0 0.25rem 0.5rem rgba(34, 34, 34, 0.05), 0 24px 35px rgba(34, 34, 34, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
[dir="rtl"] .cookie-bar-box {
    right: unset;
    left: 10px;
}
@media (max-width: 480px) {
    .cookie-bar-box {
        max-width: 100%;
        right: 0;
        margin: 0 10px;
    }
    [dir="rtl"] .cookie-bar-box {
        right: unset;
        left: 0;
    }
}
.cookie-bar-box.hide {
    opacity: 0;
    bottom: -350px;
}
.cookie-bar-box .cookie-box {
    padding: calc(13px + (30 - 13) * ((100vw - 320px) / (1920 - 320)));
    text-align: center;
}
.cookie-bar-box .cookie-box .cookie-image {
    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;
}
.cookie-bar-box .cookie-box .cookie-image img {
    width: calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
    height: auto;
    margin-right: 10px;
}
[dir="rtl"] .cookie-bar-box .cookie-box .cookie-image img {
    margin-right: unset;
    margin-left: 10px;
}
.cookie-bar-box .cookie-box .cookie-contain {
    margin-top: calc(10px + (16 - 10) * ((100vw - 320px) / (1920 - 320)));
}
.cookie-bar-box .cookie-box .cookie-contain h2 {
    margin-bottom: calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
}
.cookie-bar-box .cookie-box .cookie-contain h5 {
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    margin: 0 auto;
    line-height: 1.3;
}
.cookie-bar-box .button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}
.cookie-bar-box .button-group button {
    white-space: nowrap;
    width: 100%;
    font-weight: 700;
    border-radius: 0;
}
.cookie-bar-box .button-group button.privacy-button {
    background-color: #f8f8f8;
}
.cookie-bar-box .button-group button.ok-button {
    background-color: var(--theme-color);
    color: #fff;
}
.cookie-bar-box-2 {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #eadfd8;
    max-width: 400px;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}
.cookie-bar-box-2 .cookie-bar-image {
    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;
    width: 47px;
    height: 47px;
    background-color: #ded4cd;
    border-radius: 100%;
    margin: 0 auto 13px;
}
.cookie-bar-box-2 .cookie-bar-image i {
    font-size: 26px;
    height: auto;
    color: #2c3249;
}
.cookie-bar-box-2 .cookie-bar-detail h4 {
    line-height: 1.5;
    color: #2c3249;
}
.cookie-bar-box-2 .cookie-bar-detail .cookie-button-group {
    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;
    margin-top: 10px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 12px;
}
.cookie-bar-box-2 .cookie-bar-detail .cookie-button-group .allow-button {
    background-color: rgba(44, 50, 73, 0.16);
    padding: 11px 17px;
    border: 1px solid #2c3249;
    border-radius: 50px 15px 15px 50px;
    font-size: 14px;
    font-weight: 600;
}
.cookie-bar-box-2 .cookie-bar-detail .cookie-button-group .decline-button {
    background-color: rgba(44, 50, 73, 0.16);
    padding: 11px 17px;
    border-radius: 15px 50px 50px 15px;
    font-size: 14px;
    font-weight: 600;
}
.counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.counter .qty-left-minus,
.counter .qty-right-plus {
    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;
    width: calc(30px + (35 - 30) * ((100vw - 320px) / (1920 - 320)));
    height: calc(30px + (35 - 30) * ((100vw - 320px) / (1920 - 320)));
    border: 1px solid #ececec;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 20px;
    line-height: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0;
}
.counter .qty-left-minus i,
.counter .qty-right-plus i {
    font-size: 12px;
    margin-top: 3px;
}
.counter .qty-left-minus:hover,
.counter .qty-right-plus:hover {
    color: #010200;
}
.counter .qty-left-minus {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: 0;
}
[dir="rtl"] .counter .qty-left-minus {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-right: 1px solid #ececec;
    border-left: 0;
}
.counter .qty-right-plus {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left: 0;
}
[dir="rtl"] .counter .qty-right-plus {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    border-left: 1px solid #ececec;
}
.counter input {
    width: 45px;
    height: calc(30px + (35 - 30) * ((100vw - 320px) / (1920 - 320)));
    border: 1px solid #ececec;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 0;
}
[dir="rtl"] .counter input {
    text-align: center;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}
.newsletter-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 11px;
}
.newsletter-form .form-control {
    background-color: transparent;
    padding: calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320)));
}
.newsletter-form .form-control::-webkit-input-placeholder {
    color: #fff;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.newsletter-form .form-control::-moz-placeholder {
    color: #fff;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.newsletter-form .form-control:-ms-input-placeholder {
    color: #fff;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.newsletter-form .form-control::-ms-input-placeholder {
    color: #fff;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.newsletter-form .form-control::placeholder {
    color: #fff;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.normal-form .form-control {
    border: none;
}
.normal-form .form-control:focus {
    background-color: #fff;
}
.theme-form-check {
    cursor: pointer;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.theme-form-check input {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border-radius: 10px;
    background: none;
    border: 0;
    -webkit-box-shadow: inset 0 0 0 1.5px #9f9f9f;
    box-shadow: inset 0 0 0 1.5px #9f9f9f;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    margin: 0;
    -webkit-transition: -webkit-box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25);
    transition: -webkit-box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25);
    transition: box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25);
    transition: box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25), -webkit-box-shadow 150ms cubic-bezier(0.95, 0.15, 0.5, 1.25);
    pointer-events: none;
}
.theme-form-check input:focus {
    outline: none;
}
.theme-form-check input:checked {
    -webkit-box-shadow: inset 0 0 0 6px #6743ee;
    box-shadow: inset 0 0 0 6px #6743ee;
}
.theme-form-check input label {
    vertical-align: middle;
    display: inline-block;
    line-height: 20px;
    padding: 0 8px;
}
.theme-form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    opacity: 0.95;
    top: -5px;
    left: 5px;
    height: 31px;
    background-color: #fff;
    white-space: nowrap;
    opacity: 1;
}
.theme-form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    opacity: 0.95;
    top: -5px;
    left: 5px;
    height: 31px;
    background-color: #fff;
    white-space: nowrap;
    opacity: 1;
}
.theme-form-floating > .form-control:focus ~ label,
.theme-form-floating > .form-control:not(:placeholder-shown) ~ label,
.theme-form-floating > .form-select ~ label {
    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;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    opacity: 0.95;
    top: -5px;
    left: 5px;
    height: 31px;
    background-color: #fff;
    white-space: nowrap;
    opacity: 1;
}
[dir="rtl"] .theme-form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    right: 10px;
    left: unset;
}
[dir="rtl"] .theme-form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
    right: 10px;
    left: unset;
}
[dir="rtl"] .theme-form-floating > .form-control:focus ~ label,
[dir="rtl"] .theme-form-floating > .form-control:not(:placeholder-shown) ~ label,
[dir="rtl"] .theme-form-floating > .form-select ~ label {
    right: 10px;
    left: unset;
}
.theme-form-floating .form-control,
.theme-form-floating .form-select {
    height: calc(51px + (54 - 51) * ((100vw - 320px) / (1920 - 320)));
    line-height: normal;
}
.theme-form-floating > .form-control:not(:-moz-placeholder-shown) {
    padding-top: 17px;
    padding-bottom: 10px;
    font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.theme-form-floating > .form-control:not(:-ms-input-placeholder) {
    padding-top: 17px;
    padding-bottom: 10px;
    font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.theme-form-floating > .form-control:focus,
.theme-form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 17px;
    padding-bottom: 10px;
    font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.theme-form-floating > .form-select {
    padding-top: 12px;
    padding-bottom: 10px;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.theme-form-floating > .form-select:focus {
    border-color: var(--theme-color);
    outline: 0;
    -webkit-box-shadow: 0 0 0 4px transparent;
    box-shadow: 0 0 0 4px transparent;
}
.theme-form-floating .form-control:focus {
    background-color: #fff;
    border: 1px solid #ced4da;
}
.theme-form-floating label {
    font-size: calc(13px + (16 - 13) * ((100vw - 320px) / (1920 - 320)));
    color: #4a5568;
    border: none;
}
.theme-form-floating-2 > .form-control:not(:-moz-placeholder-shown) ~ label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    opacity: 0.95;
    top: -5px;
    left: 10px;
    height: 31px;
    background-color: #fff;
    padding: 0 10px;
    opacity: 1;
}
.theme-form-floating-2 > .form-control:not(:-ms-input-placeholder) ~ label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    opacity: 0.95;
    top: -5px;
    left: 10px;
    height: 31px;
    background-color: #fff;
    padding: 0 10px;
    opacity: 1;
}
.theme-form-floating-2 > .form-control:focus ~ label,
.theme-form-floating-2 > .form-control:not(:placeholder-shown) ~ label,
.theme-form-floating-2 > .form-select ~ label {
    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;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    opacity: 0.95;
    top: -5px;
    left: 10px;
    height: 31px;
    background-color: #fff;
    padding: 0 10px;
    opacity: 1;
}
[dir="rtl"] .theme-form-floating-2 > .form-control:not(:-moz-placeholder-shown) ~ label {
    left: unset;
    right: 10px;
}
[dir="rtl"] .theme-form-floating-2 > .form-control:not(:-ms-input-placeholder) ~ label {
    left: unset;
    right: 10px;
}
[dir="rtl"] .theme-form-floating-2 > .form-control:focus ~ label,
[dir="rtl"] .theme-form-floating-2 > .form-control:not(:placeholder-shown) ~ label,
[dir="rtl"] .theme-form-floating-2 > .form-select ~ label {
    left: unset;
    right: 10px;
}
.theme-form-floating-2 > .form-control:not(:-moz-placeholder-shown) {
    padding-top: 12px;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
}
.theme-form-floating-2 > .form-control:not(:-ms-input-placeholder) {
    padding-top: 12px;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
}
.theme-form-floating-2 > .form-control:focus,
.theme-form-floating-2 > .form-control:not(:placeholder-shown) {
    padding-top: 12px;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
}
.theme-form-floating-2 > .form-select {
    padding-top: 12px;
    padding-bottom: 10px;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.theme-form-floating-2 > .form-select:focus {
    border-color: var(--theme-color);
    outline: 0;
    -webkit-box-shadow: 0 0 0 4px transparent;
    box-shadow: 0 0 0 4px transparent;
}
.theme-form-floating-2 .form-control:focus {
    background-color: #fff;
    border: 1px solid #ced4da;
}
.theme-form-floating-2 > .form-control,
.theme-form-floating-2 > .form-select {
    height: 46px;
}
.theme-form-floating-2 > label {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 9px;
    padding: 0;
    border: none;
    height: auto;
}
[dir="rtl"] .theme-form-floating-2 > label {
    left: unset;
    right: 9px;
}
.theme-form-floating-2 > .form-control {
    padding: 14px 10px;
}
.theme-form-floating-2 label {
    font-size: calc(13px + (16 - 13) * ((100vw - 320px) / (1920 - 320)));
    color: #4a5568;
}
.checkbox_animated {
    cursor: pointer;
    position: relative;
    margin-right: 16px;
    height: 100%;
}
[dir="rtl"] .checkbox_animated {
    margin-right: unset;
    margin-left: 16px;
}
.checkbox_animated:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
    transform: rotate(-45deg) scale(0, 0);
    left: 4px;
    top: 4px;
    z-index: 1;
    border: 2px solid var(--theme-color);
    border-top-style: none;
    border-right-style: none;
}
[dir="rtl"] .checkbox_animated:before {
    left: unset;
    right: 4px;
}
.checkbox_animated:after {
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    top: -2px;
    left: 0;
    background-color: #fff;
    border: 2px solid #ececec;
    cursor: pointer;
}
[dir="rtl"] .checkbox_animated:after {
    left: unset;
    right: 0;
}
.checkbox_animated:checked:before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
}
.custom-form-check-2 {
    min-height: auto;
    margin-bottom: 0;
}
.custom-form-check .form-check-input {
    width: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    height: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    margin-top: 0;
}
[dir="rtl"] .custom-form-check .form-check-input {
    margin-right: -1.5em;
    margin-left: unset;
}
.custom-form-check .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.custom-form-check .form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-control {
    font-size: 14px;
    padding: calc(8px + (14 - 8) * ((100vw - 320px) / (1920 - 320))) calc(12px + (15 - 12) * ((100vw - 320px) / (1920 - 320)));
}
.form-control.subscribe-input {
    border: none;
    border-radius: 0;
}
[dir="rtl"] .form-control {
    text-align: right;
}
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000;
}
.form-select {
    font-size: 14px;
}
.form-select.theme-form-select:focus {
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000;
}
.input-group .btn {
    z-index: 1;
}
.label-flex {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.label-flex .discount {
    background-color: var(--theme-color);
    color: #fff;
    padding: 4px calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 4px;
}
.label-flex .discount.sm-discount label {
    font-size: 12px;
}
.label-flex .discount label {
    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;
    margin: -2px 0;
}
.label-flex .wishlist {
    font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
    color: #4a5568;
    margin-left: auto;
}
[dir="rtl"] .label-flex .wishlist {
    margin-left: unset;
    margin-right: auto;
}
.blur-up {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: filter 400ms, -webkit-filter 400ms;
}
.blur-up.lazyloaded {
    -webkit-filter: blur(0);
    filter: blur(0);
}
.fullpage-loader {
    width: 100vw;
    height: 100vh;
    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: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: #fff;
    z-index: 9999;
    opacity: 1;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.fullpage-loader span {
    width: 6vmin;
    height: 6vmin;
    background-color: var(--theme-color);
    border-radius: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    -webkit-animation-name: move;
    animation-name: move;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.8);
    animation-timing-function: cubic-bezier(0.4, 0, 1, 0.8);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    top: calc(50% - 4vmin);
    left: 50%;
    -webkit-transform-origin: -4vmin center;
    transform-origin: -4vmin center;
}
.fullpage-loader span:nth-child(1) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
    opacity: 0;
}
.fullpage-loader span:nth-child(2) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    opacity: 0;
}
.fullpage-loader span:nth-child(3) {
    -webkit-animation-delay: -1.5s;
    animation-delay: -1.5s;
    opacity: 0;
}
.fullpage-loader span:nth-child(4) {
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
    opacity: 0;
}
.fullpage-loader span:nth-child(5) {
    -webkit-animation-delay: -2.5s;
    animation-delay: -2.5s;
    opacity: 0;
}
.fullpage-loader span:nth-child(6) {
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
    opacity: 0;
}
.fullpage-loader--invisible {
    opacity: 0;
}
.theme-modal .modal-dialog .modal-content {
    border: none;
}
.theme-modal .modal-dialog .modal-content .modal-header {
    border-bottom: none;
    padding: calc(8px + (16 - 8) * ((100vw - 320px) / (1920 - 320))) calc(17px + (16 - 17) * ((100vw - 320px) / (1920 - 320)));
}
.theme-modal .modal-dialog .modal-content .modal-header .modal-title {
    font-weight: 600;
    font-size: 20px;
    width: 95%;
    margin-top: -4px;
}
@media (max-width: 575px) {
    .theme-modal .modal-dialog .modal-content .modal-header .modal-title {
        margin-top: 0;
    }
}
.theme-modal .modal-dialog .modal-content .modal-header .btn-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--theme-color);
    opacity: 1;
    background-image: none;
    border-radius: 4px;
    font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    color: #fff;
    margin: 0;
    padding: 8px;
    z-index: 1;
}
[dir="rtl"] .theme-modal .modal-dialog .modal-content .modal-header .btn-close {
    right: unset;
    left: -15px;
}
@media (max-width: 575px) {
    .theme-modal .modal-dialog .modal-content .modal-header .btn-close {
        right: 13px;
        top: 13px;
    }
    [dir="rtl"] .theme-modal .modal-dialog .modal-content .modal-header .btn-close {
        right: unset;
        left: 13px;
    }
}
@media (max-width: 575px) and (max-width: 575px) {
    .theme-modal .modal-dialog .modal-content .modal-header .btn-close i {
        margin-top: -1px;
        display: block;
    }
}
.theme-modal .modal-dialog .modal-content .modal-footer {
    border: none;
    padding: calc(8px + (16 - 8) * ((100vw - 320px) / (1920 - 320))) calc(17px + (16 - 17) * ((100vw - 320px) / (1920 - 320)));
    gap: 8px;
}
.theme-modal .modal-dialog .modal-content .modal-footer button {
    margin: 0;
}
.view-modal .modal-dialog .modal-content .modal-body {
    padding: calc(18px + (29 - 18) * ((100vw - 320px) / (1920 - 320)));
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .title-name {
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: calc(7px + (3 - 7) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(17px + (25 - 17) * ((100vw - 320px) / (1920 - 320)));
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .price {
    font-size: 20px;
    color: #4a5568;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .brand-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(9px + (12 - 9) * ((100vw - 320px) / (1920 - 320)));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: calc(13px + (19 - 13) * ((100vw - 320px) / (1920 - 320)));
    border-bottom: 1px dashed #ececec;
    padding-bottom: 14px;
}
[dir="rtl"] .view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .brand-list {
    padding-right: 0;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .brand-list li {
    width: 100%;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .brand-list li .brand-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .brand-list li .brand-box h5 {
    width: 110px;
    font-size: 14px;
    color: #4a5568;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .select-size {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: calc(16px + (21 - 16) * ((100vw - 320px) / (1920 - 320)));
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .select-size h4 {
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    white-space: nowrap;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .select-size .select-form-size {
    width: auto;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .product-rating {
    border-bottom: 1px dashed #ececec;
    padding-bottom: 14px;
    margin-top: 14px;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .product-detail {
    margin-top: 12px;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .product-detail h4 {
    font-weight: 600;
    margin-bottom: 7px;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .product-detail p {
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.4;
    margin: 0;
    color: #4a5568;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .select-wight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 17px;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .select-wight .select-form-wight {
    width: auto;
}
@media (max-width: 480px) {
    .view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .select-wight .select-form-wight {
        width: 100%;
    }
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .select-wight .stoke-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
}
@media (max-width: 575px) {
    .view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .select-wight .stoke-box {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .select-wight .stoke-box .feather {
    width: 19px;
    height: auto;
    color: #61b33e;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .select-wight .stoke-box h6 {
    font-size: 16px;
    letter-spacing: 0.9px;
    color: #4a5568;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .select-wight .select-form-wight:focus {
    border-color: #ececec;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .modal-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .modal-button .add-cart-button {
    background-color: #222;
    color: #fff;
    font-weight: 600;
}
.view-modal .modal-dialog .modal-content .modal-body .right-sidebar-modal .modal-button .view-button {
    margin-left: 15px;
}
.location-modal .modal-dialog .modal-content .modal-header {
    display: block;
    padding: calc(13px + (30 - 13) * ((100vw - 320px) / (1920 - 320)));
    padding-bottom: 0;
}
.location-modal .modal-dialog .modal-content .modal-header p {
    margin-bottom: 0;
    line-height: 1.6;
}
.location-modal .modal-dialog .modal-content .modal-body {
    padding: calc(13px + (30 - 13) * ((100vw - 320px) / (1920 - 320))) calc(13px + (30 - 13) * ((100vw - 320px) / (1920 - 320)));
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .search-input {
    position: relative;
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .search-input .form-control {
    padding-left: 45px;
}
[dir="rtl"] .location-modal .modal-dialog .modal-content .modal-body .location-list .search-input .form-control {
    padding-left: unset;
    padding-right: 45px;
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .search-input i {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    font-size: 17px;
    color: #4a5568;
}
[dir="rtl"] .location-modal .modal-dialog .modal-content .modal-body .location-list .search-input i {
    left: unset;
    right: 0;
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .disabled-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320))) calc(7px + (14 - 7) * ((100vw - 320px) / (1920 - 320)));
    border-bottom: 1px solid #ececec;
    margin-top: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .disabled-box h6 {
    color: #4a5568;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .disabled-box span {
    margin-left: auto;
    margin-right: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 10px;
    font-weight: 500;
    color: #9b9bb4;
    padding: 3px 10px;
    border-radius: 30px;
}
[dir="rtl"] .location-modal .modal-dialog .modal-content .modal-body .location-list .disabled-box span {
    margin-right: auto;
    margin-left: unset;
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .location-select li {
    display: block;
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .location-select li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: calc(10px + (10 - 10) * ((100vw - 320px) / (1920 - 320))) calc(7px + (14 - 7) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 0;
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .location-select li a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--theme-color);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .location-select li a:hover::after {
    opacity: 0.2;
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .location-select li a:hover h6 {
    color: var(--theme-color);
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .location-select li a:hover span {
    border-color: transparent;
    background-color: var(--theme-color);
    color: #fff;
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .location-select li a h6 {
    color: #222;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.location-modal .modal-dialog .modal-content .modal-body .location-list .location-select li a span {
    margin-left: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 10px;
    font-weight: 500;
    border: 1px solid #e2e2ec;
    color: #9b9bb4;
    padding: 3px 10px;
    border-radius: 30px;
}
[dir="rtl"] .location-modal .modal-dialog .modal-content .modal-body .location-list .location-select li a span {
    margin-right: auto;
    margin-left: unset;
}
.deal-modal .modal-dialog .modal-content .modal-header {
    padding: calc(13px + (30 - 13) * ((100vw - 320px) / (1920 - 320)));
    padding-bottom: 0;
}
.deal-modal .modal-dialog .modal-content .modal-header p {
    margin-bottom: 0;
    line-height: 1.6;
}
.deal-modal .modal-dialog .modal-content .modal-body {
    padding: calc(13px + (30 - 13) * ((100vw - 320px) / (1920 - 320))) calc(13px + (30 - 13) * ((100vw - 320px) / (1920 - 320)));
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box {
    height: 360px;
    overflow: auto;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(85, 85, 85, 0.14);
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box::-webkit-scrollbar {
    width: 4px;
    background-color: #f5f5f5;
    border-radius: 50px;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(85, 85, 85, 0.5);
}
@media (max-width: 575px) {
    .deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box {
        height: auto;
    }
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(6px + (16 - 6) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] .deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list {
    padding-right: 0;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li {
    width: 100%;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li.list-1 .deal-offer-contain::before {
    background-color: var(--theme-color);
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li.list-2 .deal-offer-contain::before {
    background-color: #ff4f4f;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li.list-3 .deal-offer-contain::before {
    background-color: #ffa53b;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li .deal-offer-contain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 13px;
    position: relative;
    z-index: 0;
    padding: calc(11px + (16 - 11) * ((100vw - 320px) / (1920 - 320)));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li .deal-offer-contain::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.15;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li .deal-offer-contain .deal-image img {
    width: calc(69px + (80 - 69) * ((100vw - 320px) / (1920 - 320)));
    height: calc(69px + (80 - 69) * ((100vw - 320px) / (1920 - 320)));
    -o-object-fit: contain;
    object-fit: contain;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li .deal-offer-contain .deal-contain {
    display: block;
    color: #222;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li .deal-offer-contain .deal-contain a {
    color: #222;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li .deal-offer-contain .deal-contain a:hover {
    color: #222;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li .deal-offer-contain .deal-contain a h5 {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li .deal-offer-contain .deal-contain h5 {
    font-weight: 600;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li .deal-offer-contain .deal-contain h6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 7px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 15px;
    font-weight: 400;
    margin-top: 6px;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li .deal-offer-contain .deal-contain h6 del {
    color: #ff4f4f;
    font-weight: 400;
    font-size: 13px;
}
.deal-modal .modal-dialog .modal-content .modal-body .deal-offer-box .deal-offer-list li .deal-offer-contain .deal-contain h6 span {
    color: #4a5568;
    font-size: 13px;
    font-weight: 400;
}
.remove-profile .modal-dialog .modal-content .modal-header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 0;
}
.remove-profile .modal-dialog .modal-content .modal-body .remove-box p {
    text-align: center;
    line-height: 1.6;
    margin: 0;
    color: #4a5568;
}
.pickup-offcanvas {
    border: none;
}
.pickup-offcanvas .offcanvas-header {
    border-bottom: 1px solid #ececec;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.pickup-offcanvas .offcanvas-header .offcanvas-title {
    font-weight: 600;
}
.pickup-offcanvas .offcanvas-header .offcanvas-title span {
    display: block;
    color: #4a5568;
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
}
.pickup-offcanvas .offcanvas-body .check-box {
    margin-top: 10px;
}
.pickup-offcanvas .offcanvas-body .check-box h6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    color: #4a5568;
}
.pickup-offcanvas .offcanvas-body .check-box h6 i {
    font-size: 20px;
}
.pickup-offcanvas .offcanvas-body .address-box {
    margin-top: 18px;
}
[dir="rtl"] .pickup-offcanvas .offcanvas-body .address-box ul {
    padding-right: 0;
}
.pickup-offcanvas .offcanvas-body .address-box ul li {
    display: block;
    font-size: 13px;
    color: #4a5568;
}
.categories-canvas {
    width: 320px;
}
.categories-canvas .offcanvas-header {
    padding: 20px 24px;
    border-bottom: 1px solid #ececec;
    -webkit-box-shadow: 0 2px 10px -3px rgba(34, 34, 34, 0.1);
    box-shadow: 0 2px 10px -3px rgba(34, 34, 34, 0.1);
}
.categories-canvas .offcanvas-header .offcanvas-title {
    color: var(--theme-color);
    font-weight: 600;
}
.categories-canvas .offcanvas-header .close-button {
    padding: 0;
    margin: -10px 0;
    font-size: 16px;
    background-image: none;
}
.categories-canvas .offcanvas-body {
    padding: 20px 24px;
    margin-top: 13px;
}
.categories-canvas .offcanvas-body .categories-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
}
[dir="rtl"] .categories-canvas .offcanvas-body .categories-list ul {
    padding-left: unset;
    padding-right: 0;
}
.categories-canvas .offcanvas-body .categories-list ul li {
    display: block;
    width: 100%;
}
.categories-canvas .offcanvas-body .categories-list ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #4a5568;
}
.categories-canvas .offcanvas-body .categories-list ul li a:hover h6 {
    letter-spacing: 0.3px;
}
.categories-canvas .offcanvas-body .categories-list ul li a:hover h6::before {
    width: 65px;
}
.categories-canvas .offcanvas-body .categories-list ul li a h6 {
    font-size: 17px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.categories-canvas .offcanvas-body .categories-list ul li a h6:before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--theme-color);
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.categories-canvas .offcanvas-body .categories-list ul li a i {
    margin-left: auto;
}
[dir="rtl"] .categories-canvas .offcanvas-body .categories-list ul li a i {
    margin-left: unset;
    margin-right: auto;
}
.product-section-box {
    margin-top: calc(12px + (48 - 12) * ((100vw - 320px) / (1920 - 320)));
}
.product-section-box .custom-nav {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border: none;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    border-bottom: 1px solid #ececec;
}
.product-section-box .custom-nav .nav-item .nav-link {
    color: #222;
    padding: calc(12px + (15 - 12) * ((100vw - 320px) / (1920 - 320))) calc(17px + (30 - 17) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
    letter-spacing: 0.6px;
    border: none;
    font-weight: 600;
    background-color: #f8f8f8;
    position: relative;
}
.product-section-box .custom-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    top: 0;
    left: 0;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
[dir="rtl"] .product-section-box .custom-nav .nav-item .nav-link::after {
    left: unset;
    right: 0;
}
.product-section-box .custom-nav .nav-item .nav-link:focus,
.product-section-box .custom-nav .nav-item .nav-link:hover,
.product-section-box .custom-nav .nav-item .nav-link.active {
    background-color: #fff;
}
.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 {
    width: 100%;
    background: #1aa488;
}
.product-section-box .offer-table {
    margin-bottom: 0;
    border: 1px solid #ececec;
    table-layout: fixed;
    display: inherit;
    border-radius: 6px;
}
[dir="rtl"] .product-section-box .offer-table {
    right: unset;
    left: 10px;
}
.product-section-box .offer-table tbody tr th,
.product-section-box .offer-table tbody tr td {
    padding: 12px 16px;
}
.product-section-box .offer-table tbody tr th {
    width: 7%;
}
.product-section-box .offer-table tbody tr td {
    vertical-align: middle;
}
.product-section-box .offer-table tbody tr td.offer-name {
    width: 20%;
}
.product-section-box .custom-tab {
    padding-top: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.product-section-box .custom-tab .nav-desh {
    margin-bottom: calc(22px + (30 - 22) * ((100vw - 320px) / (1920 - 320)));
}
.product-section-box .custom-tab .nav-desh:last-of-type {
    margin-bottom: 0;
}
.product-section-box .custom-tab .nav-desh .desh-title {
    margin-bottom: 8px;
}
.product-section-box .custom-tab .nav-desh .desh-title h5 {
    font-weight: 700;
}
.product-section-box .custom-tab .product-detail .detail-title h5 {
    font-weight: 600;
    color: #4a5568;
    font-size: 17px;
    margin-bottom: 10px;
}
.product-section-box .custom-tab .product-detail .detail-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4px;
}
.product-section-box .custom-tab .product-detail .detail-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: #4a5568;
    width: 100%;
}
.product-section-box .custom-tab .product-detail .detail-list li i {
    font-size: 6px;
    color: #4a5568;
    margin: 6px 6px 0 0;
}
.product-section-box .custom-tab .tab-pane .product-description p {
    margin-bottom: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
    color: #4a5568;
    line-height: 1.7;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.product-section-box .custom-tab .tab-pane .product-description p:last-child {
    margin-bottom: 0;
}
.product-section-box .custom-tab .information-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 7px;
}
.product-section-box .custom-tab .information-box ul li {
    color: #4a5568;
    width: 100%;
    display: list-item;
    list-style-type: circle;
    margin-left: 35px;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.product-section-box .custom-tab .review-box .review-title {
    margin-bottom: calc(10px + (18 - 10) * ((100vw - 320px) / (1920 - 320)));
}
.product-section-box .custom-tab .review-box .review-people .review-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 26px;
}
[dir="rtl"] .product-section-box .custom-tab .review-box .review-people .review-list {
    padding-right: 0;
}
.product-section-box .custom-tab .review-box .review-people .review-list li {
    display: block;
    width: 100%;
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    padding: 20px 26px;
    background: #f8f8f8;
}
@media (max-width: 480px) {
    .product-section-box .custom-tab .review-box .review-people .review-list li .people-box {
        display: block;
    }
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box:hover .reply a {
    opacity: 1;
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-image {
    width: 70px;
    height: 70px;
}
@media (max-width: 480px) {
    .product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-image {
        margin: 0 auto;
    }
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
    .product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-image img {
        border-radius: 8px;
    }
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-comment {
    padding-left: 15px;
    width: calc(100% - 70px);
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-comment .name {
    display: block;
    font-weight: 600;
    font-size: 15px;
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-comment .name:hover {
    color: var(--theme-color);
}
[dir="rtl"] .product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-comment {
    padding-left: unset;
    padding-right: 15px;
}
@media (max-width: 480px) {
    .product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-comment {
        padding: 0;
        width: 100%;
        margin-top: 16px;
    }
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-comment .date-time {
    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;
    width: 100%;
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-comment .date-time h6 {
    font-size: 13px;
    color: #777;
    margin-top: 1px;
}
@media (max-width: 360px) {
    .product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-comment .date-time {
        display: block;
    }
    .product-section-box .custom-tab .review-box .review-people .review-list li .people-box .people-comment .date-time .product-rating {
        margin-top: 8px;
    }
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box .reply {
    margin-top: 9px;
    line-height: 1.6;
    color: #4a5568;
    position: relative;
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box .reply p {
    width: 90%;
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 480px) {
    .product-section-box .custom-tab .review-box .review-people .review-list li .people-box .reply p {
        width: 100%;
    }
}
.product-section-box .custom-tab .review-box .review-people .review-list li .people-box .reply a {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
[dir="rtl"] .product-section-box .custom-tab .review-box .review-people .review-list li .people-box .reply a {
    right: unset;
    left: 0;
}
@media (max-width: 575px) {
    .product-section-box .custom-tab .review-box .review-people .review-list li .people-box .reply a {
        opacity: 1;
    }
}
@media (max-width: 480px) {
    .product-section-box .custom-tab .review-box .review-people .review-list li .people-box .reply a {
        position: relative;
        margin-left: 8px;
    }
}
.product-section-box .custom-tab .review-box .rating-box {
    margin-top: 17px;
}
.product-section-box .custom-tab .review-box .rating-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(13px + (20 - 13) * ((100vw - 320px) / (1920 - 320)));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
[dir="rtl"] .product-section-box .custom-tab .review-box .rating-box ul {
    padding-right: 0;
}
.product-section-box .custom-tab .review-box .rating-box ul li {
    width: 100%;
}
.product-section-box .custom-tab .review-box .rating-box ul li .rating-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.product-section-box .custom-tab .review-box .rating-box ul li .rating-list h5 {
    white-space: nowrap;
}
.product-section-box .custom-tab .review-box .rating-box ul li .rating-list .progress {
    width: 100%;
    border-radius: 3px;
}
.product-section-box .custom-tab .review-box .rating-box ul li .rating-list .progress .progress-bar {
    background: var(--theme-color2);
}
.product-section-box .custom-tab .info-table {
    border: 1px solid #ececec;
    margin-bottom: 0;
}
.product-section-box .custom-tab .info-table.table-striped tbody tr:nth-of-type(odd) td {
    background-color: #f8f8f8;
    color: #222;
}
.product-section-box .custom-tab .info-table tbody tr th,
.product-section-box .custom-tab .info-table tbody tr td {
    padding: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320))) calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    white-space: nowrap;
}
.product-section-box .custom-tab .info-table tbody tr td {
    border-left: 1px solid #ececec;
}
.custome-pagination {
    margin-top: calc(22px + (35 - 22) * ((100vw - 320px) / (1920 - 320)));
}
.custome-pagination .pagination {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(6px + (13 - 6) * ((100vw - 320px) / (1920 - 320)));
}
.custome-pagination .pagination .page-item {
    border-radius: 5px;
    overflow: hidden;
}
.custome-pagination .pagination .page-item:not(:first-child) .page-link {
    margin: 0;
}
.custome-pagination .pagination .page-item.active .page-link {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}
.custome-pagination .pagination .page-item .page-link {
    color: #4a5568;
    border: 1px solid transparent;
}
.custome-pagination .pagination .page-item .page-link:hover {
    border-radius: 5px;
    border: 1px solid var(--theme-color);
    background-color: unset;
}
.custome-pagination .pagination .page-item .page-link:focus {
    color: var(--theme-color);
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.ratio_30 .bg-size:before {
    content: "";
    padding-top: 30%;
    display: block;
}
.ratio_35 .bg-size:before {
    content: "";
    padding-top: 35%;
    display: block;
}
.ratio_45 .bg-size:before {
    content: "";
    padding-top: 45.4%;
    display: block;
}
.ratio_50 .bg-size:before {
    content: "";
    padding-top: 50%;
    display: block;
}
.ratio_50_1 .bg-size:before {
    content: "";
    padding-top: 50%;
    display: block;
}
@media (max-width: 1660px) {
    .ratio_50_1 .bg-size:before {
        padding-top: 57%;
    }
}
@media (max-width: 1199px) {
    .ratio_50_1 .bg-size:before {
        padding-top: 80%;
    }
}
@media (max-width: 991px) {
    .ratio_50_1 .bg-size:before {
        padding-top: 59%;
    }
}
@media (max-width: 767px) {
    .ratio_50_1 .bg-size:before {
        padding-top: 68%;
    }
}
@media (max-width: 575px) {
    .ratio_50_1 .bg-size:before {
        padding-top: 77%;
    }
}
@media (max-width: 480px) {
    .ratio_50_1 .bg-size:before {
        padding-top: 84%;
    }
}
.ratio_58 .bg-size:before {
    content: "";
    padding-top: 58%;
    display: block;
}
.ratio_60 .bg-size:before {
    content: "";
    padding-top: 60%;
    display: block;
}
.ratio_65 .bg-size:before {
    content: "";
    padding-top: 65%;
    display: block;
}
.ratio_87 .bg-size:before {
    content: "";
    padding-top: 87%;
    display: block;
}
.ratio_square .bg-size:before {
    padding-top: 100%;
    content: "";
    display: block;
}
.ratio_110 .bg-size:before {
    padding-top: 110%;
    content: "";
    display: block;
}
.ratio_125 .bg-size::before {
    content: "";
    padding-top: 125%;
    display: block;
}
.ratio_148 .bg-size::before {
    content: "";
    padding-top: 148%;
    display: block;
}
.ratio_156 .bg-size:before {
    content: "";
    padding-top: 156%;
    display: block;
}
.ratio_medium .bg-size:before {
    content: "";
    padding-top: 134%;
    display: block;
}
.ratio_180 .bg-size:before {
    content: "";
    padding-top: 180%;
    display: block;
}
.ratio_209 .bg-size:before {
    content: "";
    padding-top: 209%;
    display: block;
}
.ratio_148_1 .bg-size {
    content: "";
    padding-top: 148%;
    display: block;
}
@media (max-width: 1199px) {
    .ratio_148_1 .bg-size {
        padding-top: 88%;
    }
}
.b-bottom {
    background-position: bottom !important;
}
.b-top {
    background-position: top !important;
}
.b-left {
    background-position: left !important;
}
.b-right {
    background-position: right !important;
}
.product-wrapper .slick-dots {
    position: relative;
    bottom: 0;
    margin-top: calc(5px + (20 - 5) * ((100vw - 320px) / (1920 - 320)));
}
.product-wrapper .slick-dots li {
    width: auto;
    height: auto;
}
.product-wrapper .slick-dots li button {
    width: calc(6px + (8 - 6) * ((100vw - 320px) / (1920 - 320)));
    height: calc(6px + (8 - 6) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 4px;
    padding: 0;
    margin: 0;
    background-color: rgba(35, 35, 35, 0.2);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.product-wrapper .slick-dots li button::before {
    display: none;
}
.product-wrapper .slick-dots li.slick-active button {
    margin: 0;
    width: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
    background-color: var(--theme-color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.product-wrapper .timer {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    text-align: center;
}
.product-wrapper.slick-slider.slick-dotted {
    margin-bottom: -2px;
}
.no-arrow .slick-arrow {
    display: none !important;
}
.no-space .slick-list {
    margin: 0 !important;
}
.no-space .slick-list .slick-slide > div,
.no-space .slick-list .slick-slide > ul {
    margin: 0 !important;
}
[dir="rtl"] .no-space .slick-list .slick-slide > div,
[dir="rtl"] .no-space .slick-list .slick-slide > ul {
    direction: rtl;
}
.category-slider .slick-list {
    margin: 0;
}
.category-slider .slick-list .slick-slide {
    padding: 0 10px;
}
[dir="rtl"] .category-slider .slick-list .slick-slide > div,
[dir="rtl"] .category-slider .slick-list .slick-slide > ul {
    direction: rtl;
}
.category-slider.slick-dotted {
    margin-bottom: 0;
}
.slick-slider .slick-list {
    margin: 0 -10px;
}
@media (max-width: 575px) {
    .slick-slider .slick-list {
        margin: 0 -6px;
    }
}
.slick-slider .slick-list .slick-slide > div,
.slick-slider .slick-list .slick-slide > ul {
    margin: 0 10px;
}
[dir="rtl"] .slick-slider .slick-list .slick-slide > div,
[dir="rtl"] .slick-slider .slick-list .slick-slide > ul {
    direction: rtl;
}
@media (max-width: 575px) {
    .slick-slider .slick-list .slick-slide > div,
    .slick-slider .slick-list .slick-slide > ul {
        margin: 0 6px;
    }
}
.slick-slider.slick-dotted {
    margin-bottom: 0;
}
.slick-top .slick-list .slick-track > div {
    margin: 3px 0;
}
.left-slider .slick-list .slick-track .slick-slide img {
    -webkit-filter: grayscale(20%) blur(1px);
    filter: grayscale(20%) blur(1px);
    opacity: 0.8;
}
.left-slider .slick-list .slick-track .slick-slide.slick-current img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-filter: grayscale(0) blur(0);
    filter: grayscale(0) blur(0);
    opacity: 1;
    -webkit-box-shadow: 0 0 8px rgba(34, 34, 34, 0.16);
    box-shadow: 0 0 8px rgba(34, 34, 34, 0.16);
}
.arrow-slider .slick-prev,
.arrow-slider .slick-next {
    width: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
    height: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
    background-color: #fff;
    -webkit-box-shadow: 0px 1px 4px rgba(34, 34, 34, 0.14);
    box-shadow: 0px 1px 4px rgba(34, 34, 34, 0.14);
    position: absolute;
    top: calc(-28px + (-43 - -28) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.arrow-slider .slick-prev::before,
.arrow-slider .slick-next::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--theme-color);
    font-size: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
}
.arrow-slider .slick-prev:hover,
.arrow-slider .slick-next:hover {
    background-color: var(--theme-color);
}
.arrow-slider .slick-prev:hover::before,
.arrow-slider .slick-next:hover::before {
    color: #fff;
}
.arrow-slider .slick-prev {
    left: unset;
    right: 60px;
}
[dir="rtl"] .arrow-slider .slick-prev {
    right: unset;
    left: 0;
}
.arrow-slider .slick-prev::before {
    content: "\f104";
}
@media (max-width: 575px) {
    .arrow-slider .slick-prev {
        right: 45px;
    }
}
.arrow-slider .slick-next {
    right: 5px;
}
[dir="rtl"] .arrow-slider .slick-next {
    right: unset;
    left: 50px;
}
.arrow-slider .slick-next::before {
    content: "\f105";
}
@media (max-width: 575px) {
    [dir="rtl"] .arrow-slider .slick-next {
        left: 40px;
    }
}
.arrow-slider-2 .slick-prev,
.arrow-slider-2 .slick-next {
    top: -42px;
}
@media (max-width: 1460px) {
    .arrow-slider-2 .slick-prev,
    .arrow-slider-2 .slick-next {
        top: -38px;
    }
}
@media (max-width: 1199px) {
    .arrow-slider-2 .slick-prev,
    .arrow-slider-2 .slick-next {
        top: -37px;
    }
}
@media (max-width: 767px) {
    .arrow-slider-2 .slick-prev,
    .arrow-slider-2 .slick-next {
        top: -33px;
    }
}
@media (max-width: 480px) {
    .arrow-slider-2 .slick-prev,
    .arrow-slider-2 .slick-next {
        top: -31px;
    }
}
@media (max-width: 360px) {
    .arrow-slider-2 .slick-prev,
    .arrow-slider-2 .slick-next {
        top: -29px;
    }
}
.arrow-slider-2 .slick-prev {
    left: unset;
    right: 50px;
}
[dir="rtl"] .arrow-slider-2 .slick-prev {
    right: unset;
    left: 0;
}
.arrow-slider-2 .slick-prev::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f053";
    color: #222;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.arrow-slider-2 .slick-prev:hover::before {
    color: var(--theme-color);
}
.arrow-slider-2 .slick-next {
    right: 5px;
}
[dir="rtl"] .arrow-slider-2 .slick-next {
    right: unset;
    left: 30px;
}
.arrow-slider-2 .slick-next::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f054";
    color: #222;
}
.arrow-slider-2 .slick-next:hover::before {
    color: var(--theme-color);
}
.img-slider img {
    display: initial;
}
.product-arrow .slick-prev,
.product-arrow .slick-next {
    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;
    width: calc(28px + (40 - 28) * ((100vw - 320px) / (1920 - 320)));
    height: calc(28px + (40 - 28) * ((100vw - 320px) / (1920 - 320)));
    background-color: #ececec;
    border-radius: 5px;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-arrow .slick-prev::before,
.product-arrow .slick-next::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.product-arrow .slick-prev {
    left: 0;
}
.product-arrow .slick-prev::before {
    color: #000;
    content: "\f104";
}
.product-arrow .slick-prev:hover,
.product-arrow .slick-prev:focus {
    background-color: var(--theme-color);
}
.product-arrow .slick-prev:hover::before,
.product-arrow .slick-prev:focus::before {
    color: #fff;
}
.product-arrow .slick-next {
    right: 0;
}
[dir="rtl"] .product-arrow .slick-next {
    right: unset;
    left: 91%;
}
.product-arrow .slick-next:before {
    color: #000;
    content: "\f105";
}
.product-arrow .slick-next:hover,
.product-arrow .slick-next:focus {
    background-color: var(--theme-color);
}
.product-arrow .slick-next:hover::before,
.product-arrow .slick-next:focus::before {
    color: #fff;
}
.product-box-arrow .slick-prev,
.product-box-arrow .slick-next {
    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;
    width: calc(28px + (40 - 28) * ((100vw - 320px) / (1920 - 320)));
    height: calc(28px + (40 - 28) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.14);
    color: #4a5568;
}
.product-box-arrow .slick-prev::before,
.product-box-arrow .slick-next::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #000;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
}
.product-box-arrow .slick-prev:hover,
.product-box-arrow .slick-prev:focus,
.product-box-arrow .slick-next:hover,
.product-box-arrow .slick-next:focus {
    background-color: var(--theme-color);
}
.product-box-arrow .slick-prev:hover::before,
.product-box-arrow .slick-prev:focus::before,
.product-box-arrow .slick-next:hover::before,
.product-box-arrow .slick-next:focus::before {
    color: #fff;
}
.product-box-arrow .slick-prev {
    left: -28px;
}
@media (max-width: 575px) {
    .product-box-arrow .slick-prev {
        left: -8px;
    }
}
.product-box-arrow .slick-prev::before {
    content: "\f104";
}
.product-box-arrow .slick-next {
    right: -28px;
}
@media (max-width: 575px) {
    .product-box-arrow .slick-next {
        right: -8px;
    }
}
.product-box-arrow .slick-next:before {
    content: "\f105";
}
.slick-height .slick-list .slick-track .slick-slide {
    height: auto;
}
.tab-style-color {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: calc(8px + (20 - 8) * ((100vw - 320px) / (1920 - 320)));
    border: none;
    overflow-x: auto;
    overflow-y: hidden;
}
@media (max-width: 1265px) {
    .tab-style-color {
        margin-top: 13px;
    }
}
@media (max-width: 1265px) {
    .tab-style-color-2 {
        margin-top: 0;
    }
}
@media (max-width: 850px) {
    .tab-style-color-2 {
        margin-top: 13px;
        padding-bottom: 11px;
    }
}
.tab-style-color .nav-item .nav-link {
    border: none;
    color: #222;
    font-weight: 500;
    -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: #fff;
    line-height: 1;
    border: 1px solid var(--theme-color);
    padding: calc(9px + (14 - 9) * ((100vw - 320px) / (1920 - 320))) calc(14px + (30 - 14) * ((100vw - 320px) / (1920 - 320)));
    margin: 0;
}
.tab-style-color .nav-item .nav-link.active,
.tab-style-color .nav-item .nav-link:hover {
    background-color: var(--theme-color);
    color: #fff;
}
.tab-style-color .nav-item .nav-link img {
    margin-right: 5px;
}
[dir="rtl"] .tab-style-color .nav-item .nav-link img {
    margin-right: unset;
    margin-left: 5px;
}
.theme-option {
    position: fixed;
    bottom: calc(10px + (25 - 10) * ((100vw - 320px) / (1920 - 320)));
    right: calc(10px + (25 - 10) * ((100vw - 320px) / (1920 - 320)));
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
[dir="rtl"] .theme-option {
    right: unset;
    left: calc(10px + (25 - 10) * ((100vw - 320px) / (1920 - 320)));
}
@media (max-width: 767px) {
    .theme-option {
        bottom: calc(75px + (80 - 75) * ((100vw - 320px) / (1920 - 320)));
    }
}
.theme-option .back-to-top {
    background-color: var(--theme-color);
    padding: 0;
    border-radius: 5px;
    z-index: 1;
    margin-top: 12px;
}
[dir="rtl"] .theme-option .back-to-top {
    right: unset;
    left: calc(10px + (25 - 10) * ((100vw - 320px) / (1920 - 320)));
}
.theme-option .back-to-top a {
    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;
    width: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
    height: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
}
.theme-option .back-to-top a i {
    color: #fff;
}
.setting-box {
    background-color: var(--theme-color);
    padding: 0;
    border-radius: 5px;
    z-index: 1;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.setting-box .setting-button {
    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;
    width: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
    height: calc(30px + (40 - 30) * ((100vw - 320px) / (1920 - 320)));
    padding: 0;
    color: #fff;
}
.setting-box .theme-setting-2 {
    position: absolute;
    bottom: calc(40px + (46 - 40) * ((100vw - 320px) / (1920 - 320)));
    right: 12px;
    width: 360px;
    background-color: #fff;
    padding: 12px;
    border-radius: 8px 8px 0 8px;
    -webkit-box-shadow: 0 4px 8px rgba(34, 34, 34, 0.12);
    box-shadow: 0 4px 8px rgba(34, 34, 34, 0.12);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
[dir="rtl"] .setting-box .theme-setting-2 {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
[dir="rtl"] .setting-box .theme-setting-2 {
    right: unset;
    left: 12px;
    border-radius: 8px 8px 8px 0;
}
@media (max-width: 360px) {
    .setting-box .theme-setting-2 {
        width: 275px;
    }
}
.setting-box .theme-setting-2.active {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
}
[dir="rtl"] .setting-box .theme-setting-2.active {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.setting-box .theme-setting-2 .theme-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 22px;
    gap: calc(7px + (15 - 7) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] .setting-box .theme-setting-2 .theme-box ul {
    padding-right: 0;
}
.setting-box .theme-setting-2 .theme-box ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding-bottom: 14px;
    gap: 20px;
    border-bottom: 1px dashed #ececec;
}
.setting-box .theme-setting-2 .theme-box ul li:last-child {
    padding-bottom: 0;
    border: none;
}
.setting-box .theme-setting-2 .theme-box ul li.color-box {
    display: block;
    gap: 19px;
}
.setting-box .theme-setting-2 .theme-box ul li .setting-name {
    margin-bottom: 0;
    width: 15%;
}
.setting-box .theme-setting-2 .theme-box ul li .theme-setting-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    width: 85%;
}
.setting-box .theme-setting-2 .theme-box ul li .theme-setting-button button {
    width: 100%;
    background-color: var(--theme-color);
    color: #fff;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.setting-box .theme-setting-2 .theme-box ul li .theme-setting-button button.outline {
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    background-color: #fff;
}
.setting-box .theme-setting-2 .theme-box ul li .theme-setting-button button.rtl-outline {
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    background-color: #fff;
}
[dir="rtl"] .setting-box .theme-setting-2 .theme-box ul li .theme-setting-button button.rtl-outline {
    color: #fff;
    border: 1px solid transparent;
    background-color: var(--theme-color);
}
.setting-box .theme-setting-2 .theme-box ul li .theme-setting-button button.rtl-unline {
    color: #fff;
    border: 1px solid transparent;
    background-color: var(--theme-color);
}
[dir="rtl"] .setting-box .theme-setting-2 .theme-box ul li .theme-setting-button button.rtl-unline {
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    background-color: #fff;
}
.setting-box .theme-setting-2 .theme-box ul li .theme-setting-button.color-picker {
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.setting-box .theme-setting-2 .theme-box ul li .theme-setting-button.color-picker .form-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 15px;
    padding: 0;
    border: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.setting-box .theme-setting-2 .theme-box ul li .theme-setting-button.color-picker .form-control .form-control-color {
    width: 38px;
    height: auto;
    padding: 0;
    font-size: 13px;
    border: none;
}
[dir="rtl"] .setting-box .theme-setting-2 .theme-box ul li .theme-setting-button.color-picker .form-control .form-control-color {
    max-width: 100%;
}
.setting-box .theme-setting-2 .theme-box ul li .theme-setting-button.color-picker .form-control .form-label {
    width: auto;
    font-size: 16px;
    color: #4a5568;
}
.timer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
[dir="rtl"] .timer ul {
    padding-left: unset;
    padding-right: 0;
}
@media (max-width: 360px) {
    .timer ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (max-width: 575px) {
    .timer ul {
        margin-top: 12px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.timer ul li {
    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;
    width: 50px;
    height: 50px;
    position: relative;
    background-color: #ececec;
    padding: 8px;
    border-radius: 5px;
}
@media (max-width: 575px) {
    .timer ul li {
        width: 40px;
        height: 40px;
    }
}
.timer ul li + li {
    margin-left: 15px;
}
[dir="rtl"] .timer ul li + li {
    margin-left: unset;
    margin-right: 15px;
}
.timer ul li + li::after {
    content: ":";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: bolder;
    left: -10px;
}
[dir="rtl"] .timer ul li + li::after {
    left: unset;
    right: -10px;
}
.timer ul li .counter h4 {
    font-weight: 500;
}
@media (max-width: 575px) {
    .timer ul li .counter h4 {
        font-size: 15px;
    }
}
.timer-2 {
    margin-left: 40px;
}
@media (max-width: 575px) {
    .timer-2 {
        margin-left: 0;
    }
}
.timer-2 ul li {
    width: 60px;
    height: 60px;
    color: #000;
    border: 1px solid #222;
    background-color: transparent;
}
.timer-2 ul li.bg-color {
    background-color: var(--theme-color);
    color: #fff;
}
.timer-2 ul li .counter {
    font-size: 20px;
    font-weight: 500;
}
.timer-2 ul li + li::after {
    color: #4a5568;
}
.timer-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 360px) {
    .timer-box ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (max-width: 575px) {
    .timer-box ul {
        margin-top: 12px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.timer-box ul li {
    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;
    width: 50px;
    height: 50px;
    position: relative;
    background-color: #ececec;
    padding: 8px;
    border-radius: 5px;
}
@media (max-width: 575px) {
    .timer-box ul li {
        width: 40px;
        height: 40px;
    }
}
.timer-box ul li + li {
    margin-left: 15px;
}
.timer-box ul li + li::after {
    content: ":";
    position: absolute;
    font-weight: bolder;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
}
.timer-box ul li .counter h4 {
    font-weight: 500;
}
@media (max-width: 575px) {
    .timer-box ul li .counter h4 {
        font-size: 15px;
    }
}
.title-leaf {
    width: 140px;
    text-align: center;
    margin-top: 7px;
    position: relative;
    z-index: 0;
}
.title-leaf::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    left: 0;
    background-color: var(--theme-color);
    z-index: -1;
}
.title-leaf svg {
    background-color: #fff;
    width: 45px;
    z-index: 1;
    fill: var(--theme-color);
}
.title-leaf svg.bg-gray {
    background-color: #f8f8f8;
}
.title {
    margin-bottom: calc(16px + (30 - 16) * ((100vw - 320px) / (1920 - 320)));
    display: inline-block;
    position: relative;
}
.title h2 {
    font-weight: 700;
    color: #222;
    position: relative;
}
.title p {
    line-height: 1.5;
    margin: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320))) 0 0;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #4a5568;
}
.title-flex {
    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;
}
@media (max-width: 1265px) {
    .title-flex {
        display: block;
    }
}
.title-flex .timing-box {
    display: inline-block;
}
.title-flex .timing-box .timing {
    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;
    background-color: #ff4f4f;
    color: #fff;
    padding: calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320))) calc(9px + (11 - 9) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 5px;
}
@media (max-width: 1265px) {
    .title-flex .timing-box .timing {
        margin-top: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
    }
}
.title-flex .timing-box .timing i {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    margin-right: 9px;
}
.title-flex .timing-box .timing .feather {
    width: 17px;
    height: 17px;
    margin-right: 9px;
}
[dir="rtl"] .title-flex .timing-box .timing .feather {
    margin-left: 9px;
    margin-right: unset;
}
.title-flex .timing-box .timing .name {
    font-weight: 600;
    margin-right: 8px;
    line-height: 1;
}
[dir="rtl"] .title-flex .timing-box .timing .name {
    margin-left: 8px;
    margin-right: unset;
}
.title-flex .timing-box .timing .time ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
[dir="rtl"] .title-flex .timing-box .timing .time ul {
    padding-left: unset;
    padding-right: 0;
}
.title-flex .timing-box .timing .time ul li {
    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: relative;
    line-height: 1;
}
.title-flex .timing-box .timing .time ul li + li {
    margin-left: 15px;
}
[dir="rtl"] .title-flex .timing-box .timing .time ul li + li {
    margin-left: unset;
    margin-right: 15px;
}
.title-flex .timing-box .timing .time ul li + li::after {
    content: ":";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: bolder;
    left: -10px;
}
[dir="rtl"] .title-flex .timing-box .timing .time ul li + li::after {
    left: unset;
    right: -10px;
}
.title-flex .timing-box .timing .time ul li .counter h6 {
    font-weight: 600;
}
.title .product-tabs {
    border: none;
    position: absolute;
    top: 0;
    right: 0;
}
.title .product-tabs .nav-item {
    position: relative;
}
.title .product-tabs .nav-item .nav-link {
    border: none;
    border-radius: unset;
    color: #4a5568;
    position: relative;
    font-weight: 400;
    font-size: 16px;
}
.title .product-tabs .nav-item .nav-link.active {
    font-weight: 500;
    color: var(--theme-color);
}
.title .product-tabs .nav-item .nav-link.active::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    bottom: 0;
    left: 17px;
    border-radius: 50px;
    background-color: var(--theme-color);
}
.title .product-tabs .nav-item .nav-link.active::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 2px;
    bottom: 0;
    left: 75px;
    border-radius: 50px;
    background-color: var(--theme-color);
}
.title .product-tabs .nav-item + .nav-item {
    margin-left: 10px;
}
.title .product-tabs .nav-item + .nav-item::before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    top: 9px;
    left: -11px;
    background-image: url(../svg/bag.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.title-border {
    border-bottom: 1px solid #ececec;
    padding-bottom: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320)));
}
.vendor-title h5 {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.vendor-title p {
    margin-bottom: 0;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.seller-title h2 {
    font-weight: 700;
    font-size: 37px;
    margin-bottom: 23px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.seller-title p {
    margin-bottom: 0;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}
.title-flex-2 {
    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;
}
@media (max-width: 850px) {
    .title-flex-2 {
        display: block;
    }
}
.title-flex-2 .timing-box {
    display: inline-block;
}
.title-flex-2 .timing-box .timing {
    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;
    background-color: #ff4f4f;
    color: #fff;
    padding: calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320))) calc(9px + (11 - 9) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 5px;
}
@media (max-width: 850px) {
    .title-flex-2 .timing-box .timing {
        margin-top: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
    }
}
.title-flex-2 .timing-box .timing i {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    margin-right: 9px;
}
.title-flex-2 .timing-box .timing .feather {
    width: 17px;
    height: 17px;
    margin-right: 9px;
}
[dir="rtl"] .title-flex-2 .timing-box .timing .feather {
    margin-left: 9px;
    margin-right: unset;
}
.title-flex-2 .timing-box .timing .name {
    font-weight: 600;
    margin-right: 8px;
    line-height: 1;
}
[dir="rtl"] .title-flex-2 .timing-box .timing .name {
    margin-left: 8px;
    margin-right: unset;
}
.tooltip {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
.tooltip .tooltip-arrow::before {
    border-top-color: var(--theme-color);
}
.tooltip .tooltip-inner {
    font-weight: 500;
    background-color: var(--theme-color);
    color: #fff;
}
@media (min-width: 1464px) {
    .container {
        max-width: 1440px;
    }
}
.col-custome-3 {
    width: 22%;
}
@media (max-width: 1399px) {
    .col-custome-3 {
        width: 25%;
    }
}
@media (max-width: 1199px) {
    .col-custome-3 {
        width: 30%;
    }
}
@media (max-width: 991px) {
    .col-custome-3 {
        width: 0;
    }
}
.col-custome-9 {
    width: 78%;
}
@media (max-width: 1399px) {
    .col-custome-9 {
        width: 75%;
    }
}
@media (max-width: 1199px) {
    .col-custome-9 {
        width: 70%;
    }
}
@media (max-width: 991px) {
    .col-custome-9 {
        width: 100%;
    }
}
.fw-300 {
    font-weight: 300;
}
.w-60 {
    width: 60% !important;
}
.section-small-space {
    padding: calc(18px + (42 - 18) * ((100vw - 320px) / (1920 - 320))) 0;
}
.section-big-space {
    padding: calc(40px + (160 - 40) * ((100vw - 320px) / (1920 - 320))) 0;
}
.section-lg-space {
    padding: calc(30px + (70 - 30) * ((100vw - 320px) / (1920 - 320))) 0;
}
section,
.section-t-space {
    padding-top: calc(30px + (50 - 30) * ((100vw - 320px) / (1920 - 320)));
}
.section-b-space {
    padding-bottom: calc(30px + (50 - 30) * ((100vw - 320px) / (1920 - 320)));
}
.container-fluid-lg {
    padding: 0 calc(12px + (160 - 12) * ((100vw - 320px) / (1920 - 320)));
}
.container-fluid-md {
    padding: 0 calc(12px + (50 - 12) * ((100vw - 320px) / (1920 - 320)));
}
.container-fluid-xs {
    padding: 0 calc(12px + (25 - 12) * ((100vw - 320px) / (1920 - 320)));
}
.section-small-space {
    padding: 30px 0;
}
.p-top-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
[dir="rtl"] .p-top-left {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.p-top-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.p-top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.p-center-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
[dir="rtl"] .p-center-left {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.p-center {
    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;
}
.p-center-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
[dir="rtl"] .p-center-right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.p-bottom-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
[dir="rtl"] .p-bottom-left {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.p-bottom-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.p-bottom-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.p-sticky {
    position: sticky;
    top: 10px;
}
.ls-expanded {
    letter-spacing: 12px;
    margin-right: -12px;
}
.ls-resize-expanded {
    letter-spacing: calc(4px + (10 - 4) * ((100vw - 320px) / (1920 - 320)));
}
.g-8 {
    margin: -8px;
}
.g-8 > div {
    padding: 8px;
}
.icon-width {
    width: 25px;
    height: 25px;
}
.rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 360px) {
    .rating {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
[dir="rtl"] .rating {
    padding-left: unset;
    padding-right: 0;
}
.rating li {
    line-height: 0;
}
.rating li + li {
    margin-left: 2px;
}
[dir="rtl"] .rating li + li {
    margin-left: unset;
    margin-right: 2px;
}
.rating li .feather {
    width: 14px;
    height: 14px;
    stroke: #ffb321;
}
.rating li .feather.fill {
    fill: #ffb321;
}
.product-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.product-rating span {
    color: #4a5568;
    font-size: 12px;
    margin-left: 5px;
}
[dir="rtl"] .product-rating span {
    margin-left: unset;
    margin-right: 5px;
}
.mend-auto {
    margin-right: auto !important;
    text-align: left;
}
.mstart-auto {
    margin-left: auto !important;
    text-align: left;
}
.fw-500 {
    font-weight: 500;
}
.text-theme {
    color: var(--theme-color);
}
.text-title {
    color: #222 !important;
}
.text-content {
    color: #4a5568;
}
.text-yellow {
    color: #ffb321 !important;
}
.text-danger {
    color: #ff4f4f !important;
}
.bg-gray {
    background-color: #f8f8f8 !important;
}
.bg-theme {
    background-color: var(--theme-color);
}
.bg-gradient-color {
    background: linear-gradient(149.8deg, #f8f8fb 17.21%, #f3f5f9 79.21%);
}
.orange-color {
    color: #ffbc5d !important;
}
.text-exo {
    font-family: "Exo 2", sans-serif;
}
.text-russo {
    font-family: "Russo One", sans-serif;
}
.text-pacifico {
    font-family: "Pacifico", cursive;
}
.text-kaushan {
    font-family: "Kaushan Script", cursive;
}
.text-great {
    font-family: "Great Vibes", cursive;
}
.text-qwitcher {
    font-family: "Qwitcher Grypen", cursive;
}
.w-58 {
    width: 58% !important;
}
.colorpick-eyedropper-input-trigger {
    display: none;
}
.hover-effect:hover {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}
body {
    font-family: "Public Sans", sans-serif;
    position: relative;
    font-size: 14px;
    color: #222;
    margin: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding-right: 0 !important;
}
body ::-moz-selection {
    color: #fff;
    background-color: var(--theme-color);
}
body ::selection {
    color: #fff;
    background-color: var(--theme-color);
}
.bg-overlay {
    width: 100vw;
    height: 100vh;
    background-color: #222;
    position: fixed;
    z-index: 9;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.bg-overlay.show {
    visibility: visible;
    opacity: 0.5;
}
ul {
    padding-left: 0;
    margin-bottom: 0;
}
li {
    display: inline-block;
    font-size: 14px;
}
p {
    font-size: 14px;
    line-height: 18px;
}
a {
    color: var(--theme-color);
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}
a:focus {
    outline: none;
}
button:focus {
    outline: none;
}
.btn-close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
:focus {
    outline: none;
}
.form-control {
    background-color: #fff;
}
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--theme-color);
}
h1 {
    font-size: calc(40px + (70 - 40) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    line-height: 1.1;
    text-transform: capitalize;
    margin: 0;
}
h2 {
    font-size: calc(22px + (28 - 22) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
    margin: 0;
}
h3 {
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}
h4 {
    font-size: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
}
h5 {
    font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
}
h6 {
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
}
span {
    display: inline-block;
}
.theme-color {
    color: var(--theme-color) !important;
}
.theme-bg-color {
    background: var(--theme-color) !important;
}
.banner-contain {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
[dir="rtl"] .banner-contain .banner-details {
    text-align: left;
}
.banner-contain .banner-details.banner-b-space {
    padding: calc(27px + (45 - 27) * ((100vw - 320px) / (1920 - 320))) calc(20px + (140 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.banner-contain .banner-details .banner-box {
    position: absolute;
    top: 30px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    padding: calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320))) calc(30px + (39 - 30) * ((100vw - 320px) / (1920 - 320))) calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320))) calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 0px 60px 60px 0px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-box-shadow: 0px 11px 10px rgba(74, 85, 104, 0.06);
    box-shadow: 0px 11px 10px rgba(74, 85, 104, 0.06);
}
.banner-contain .banner-details .banner-box h5 {
    margin: calc(4px + (6 - 4) * ((100vw - 320px) / (1920 - 320))) 0;
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
}
.banner-contain .banner-details .banner-button {
    position: absolute;
    bottom: calc(8px + (16 - 8) * ((100vw - 320px) / (1920 - 320)));
    left: calc(14px + (22 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #fff;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.banner-contain .banner-details h2 {
    font-size: calc(20px + (42 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.banner-contain .banner-details h2.banner-title {
    font-size: calc(31px + (50 - 31) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
}
.banner-contain .banner-details h3 {
    font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
    margin-top: -7px;
}
.banner-contain .banner-details h4 {
    font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.6;
}
.banner-contain .banner-details .coupon-code {
    padding: calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320))) calc(9px + (15 - 9) * ((100vw - 320px) / (1920 - 320)));
    background-color: rgba(var(--theme-color-rgb), 0.4);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    display: inline-block;
    font-weight: 500;
    margin-top: 13px;
}
.banner-contain .banner-details .coupon-code-white {
    background-color: rgba(255, 255, 255, 0.2);
}
.banner-contain .banner-details .coupon-code.code-2 {
    background-color: rgba(153, 105, 31, 0.5);
}
.banner-contain .banner-details p {
    color: #4a5568;
    line-height: 1.5;
}
[dir="rtl"] .banner-contain .banner-details p {
    margin-right: auto;
}
.banner-contain .banner-details p.banner-text {
    width: 62%;
}
@media (max-width: 575px) {
    .banner-contain .banner-details p.banner-text {
        width: 80%;
    }
}
@media (max-width: 480px) {
    .banner-contain .banner-details p.banner-text {
        width: 100%;
    }
}
.banner-contain .banner-details .banner-timing {
    width: 100%;
    height: 210px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(181.97deg, rgba(0, 0, 0, 0.3) 1.66%, rgba(0, 0, 0, 0) 95.27%);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    text-align: center;
    color: #fff;
}
.banner-contain .banner-details .banner-timing .time {
    margin-top: 25px;
}
.banner-contain .banner-details .banner-timing .time ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}
.banner-contain .banner-details .banner-timing .time ul li .counter {
    width: 55px;
    height: 70px;
    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;
    border: 1px dashed #fff;
}
.banner-contain .banner-details .banner-timing .time ul li .counter h5 {
    font-weight: 600;
    margin-bottom: 4px;
}
.banner-contain-2 {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.banner-contain-2 .banner-detail {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: calc(14px + (25 - 14) * ((100vw - 320px) / (1920 - 320))) calc(19px + (25 - 19) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] .banner-contain-2 .banner-detail {
    left: unset;
    right: 0;
    text-align: left;
}
.banner-contain-2 .banner-detail .banner-detail-box {
    position: relative;
    padding: 7px 0;
}
.banner-contain-2 .banner-detail .banner-detail-box::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: -10px;
    background-color: var(--theme-color);
}
.banner-contain-2 .banner-detail .banner-detail-box-2 {
    padding: 7px 0 7px 17px;
}
.banner-contain-2 .banner-detail .banner-detail-box-2::before {
    width: 5px;
    border-radius: 50px;
    left: 0;
}
[dir="rtl"] .banner-contain-2 .banner-detail .banner-detail-box-2::before {
    left: 0;
    right: unset;
}
.banner-contain-2 .banner-detail h3 {
    font-size: calc(27px + (34 - 27) * ((100vw - 320px) / (1920 - 320)));
}
.banner-contain-2 .banner-detail h3 .brand-name {
    font-weight: bold;
    background-color: var(--theme-color);
    color: #fff;
    padding: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320))) calc(8px + (10 - 8) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
    z-index: 0;
}
.banner-contain-2 .banner-detail h3 .brand-name::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: calc(3px + (7 - 3) * ((100vw - 320px) / (1920 - 320)));
    left: calc(3px + (6 - 3) * ((100vw - 320px) / (1920 - 320)));
    border: calc(1px + (2 - 1) * ((100vw - 320px) / (1920 - 320))) solid #222;
    z-index: -1;
}
.banner-contain-2 .banner-detail h2 {
    font-size: calc(42px + (59 - 42) * ((100vw - 1199px) / (1920 - 1199)));
    font-weight: 700;
}
.banner-contain-2 .banner-detail h4 {
    font-weight: 600;
    font-size: calc(17px + (21 - 17) * ((100vw - 320px) / (1920 - 320)));
    color: #222;
}
.banner-contain-2 .banner-detail-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: calc(14px + (25 - 14) * ((100vw - 320px) / (1920 - 320))) calc(19px + (25 - 19) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] .banner-contain-2 .banner-detail-2 {
    left: unset;
    right: 0;
}
.banner-contain-2 .banner-detail-2 > div {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(24.21%, rgba(255, 255, 255, 0.2)), color-stop(75.22%, rgba(255, 255, 255, 0.2)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 24.21%, rgba(255, 255, 255, 0.2) 75.22%);
    padding: 22px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.banner-contain-2 .banner-detail-2 h3 {
    font-size: calc(27px + (36 - 27) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
    color: #fff;
}
.banner-contain-2 .banner-detail-2 h2 {
    font-size: calc(42px + (59 - 42) * ((100vw - 1199px) / (1920 - 1199)));
    font-weight: 700;
}
.banner-contain-2 .banner-detail-2 button {
    background-color: var(--theme-color);
    color: #fff;
    margin: 9px auto 0;
}
.banner-contain-3 {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.banner-contain-3 .flower-pot {
    position: absolute;
    bottom: 0;
    right: -59px;
}
@media (max-width: 1199px) {
    .banner-contain-3 .flower-pot {
        display: none;
    }
}
.banner-contain-3 .social-image {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.banner-contain-3 .delivery-bike {
    text-align: center;
}
.banner-contain-3 .delivery-bike img {
    margin-top: -16px;
}
.banner-contain-3.banner-contain-bg {
    background-image: url(../images/grocery/banner/11-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
}
.banner-contain-3 .banner-detail-2 h2 {
    font-size: calc(25px + (40 - 25) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 10px;
    text-transform: none;
}
.banner-contain-3 .banner-detail-2 h3 {
    font-size: 35px;
}
.banner-contain-3 .banner-detail-2 h4 {
    font-size: 40px;
}
.banner-contain-3 .banner-minus-position {
    margin-top: -13px;
}
@media (max-width: 575px) {
    .banner-contain-3 .banner-minus-position {
        margin-top: 0;
    }
}
@media (max-width: 1660px) {
    .banner-contain-3 .banner-detail-deliver {
        width: 60% !important;
        margin-left: auto;
    }
}
@media (max-width: 575px) {
    .banner-contain-3 .banner-detail-deliver {
        width: 100% !important;
        background: #eaf5f5;
    }
}
.banner-contain-3 .banner-detail {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0;
    padding: calc(20px + (50 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.banner-contain-3 .banner-detail.banner-half-width {
    width: 50%;
}
.banner-contain-3 .banner-detail.banner-p-sm {
    padding: calc(15px + (30 - 15) * ((100vw - 320px) / (1920 - 320))) !important;
}
.banner-contain-3 .banner-detail h2 {
    font-size: calc(25px + (45 - 25) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 3px;
}
.banner-contain-3 .banner-detail h2.sale-name {
    font-size: calc(25px + (38 - 25) * ((100vw - 320px) / (1920 - 320)));
}
.banner-contain-3 .banner-detail h3 {
    font-size: calc(18px + (32 - 18) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 10px;
    line-height: 1.4;
}
.banner-contain-3 .banner-detail h3.banner-contain {
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 0;
}
@media (max-width: 1500px) {
    .banner-contain-3 .banner-detail h3.banner-contain {
        font-size: 20px;
    }
}
.banner-contain-3 .banner-detail h4 {
    font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 5px;
    line-height: 1.4;
}
.banner-contain-3 .banner-detail h4.furniture-title {
    position: relative;
    display: inline-block;
}
.banner-contain-3 .banner-detail h4.furniture-title img {
    position: absolute;
    top: -26px;
    right: -185px;
}
@media (max-width: 1199px) {
    .banner-contain-3 .banner-detail h4.furniture-title img {
        display: none;
    }
}
@media (max-width: 1500px) {
    .banner-contain-3 .banner-detail h4 .delivery-contain {
        font-size: 16px;
    }
}
.banner-contain-3 .banner-detail h5 {
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
    letter-spacing: 1px;
}
.banner-contain-3 .banner-detail h6 {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}
.banner-contain-3 .banner-detail p {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 0;
    line-height: 1.5;
    color: #4a5568;
    letter-spacing: 0.8px;
}
.banner-contain-3 .banner-detail .banner-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}
[dir="rtl"] .banner-contain-3 .banner-detail .banner-list {
    padding-right: 0;
}
.banner-contain-3 .banner-detail .banner-list li {
    display: block;
    width: 100%;
}
.banner-contain-3 .banner-detail .banner-list li .delivery-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 11px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.banner-contain-3 .banner-detail .banner-list li .delivery-box .check-icon {
    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;
    width: 20px;
    height: 20px;
    background-color: #6bbe66;
    color: #fff;
    border-radius: 100%;
    font-size: 11px;
}
@media (max-width: 1500px) {
    .banner-contain-3 .banner-detail .banner-list li .delivery-box .check-contain h5 {
        font-size: 14px;
    }
}
.banner-contain-3 .banner-detail .shop-now-button {
    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;
    padding: 0;
    color: #fff;
    font-size: 15px;
}
.banner-contain-3 .banner-detail .shop-now-button i {
    font-size: 14px;
    margin-left: 8px;
    margin-top: -2px;
}
[dir="rtl"] .banner-contain-3 .banner-detail .shop-now-button i {
    margin-left: unset;
    margin-right: 8px;
}
.offer-banner {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.offer-banner:hover .banner-detail {
    border-radius: 5px;
}
.offer-banner:hover .banner-detail::after {
    opacity: 1;
}
.offer-banner .banner-detail {
    position: absolute;
    top: calc(9px + (18 - 9) * ((100vw - 320px) / (1920 - 320)));
    left: calc(9px + (18 - 9) * ((100vw - 320px) / (1920 - 320)));
    padding: calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320))) calc(21px + (26 - 21) * ((100vw - 320px) / (1920 - 320))) calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320))) calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 5px 30px 30px 5px;
    -webkit-box-shadow: 0px 3px 4px rgba(34, 34, 34, 0.14);
    box-shadow: 0px 3px 4px rgba(34, 34, 34, 0.14);
    z-index: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.95);
}
.offer-banner .banner-detail h5 {
    letter-spacing: 0.6px;
    margin-bottom: 3px;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.offer-banner .banner-detail h6 {
    letter-spacing: 1.7px;
    color: #4a5568;
}
.offer-banner .offer-box {
    position: absolute;
    bottom: calc(7px + (18 - 7) * ((100vw - 320px) / (1920 - 320)));
    right: calc(7px + (18 - 7) * ((100vw - 320px) / (1920 - 320)));
    background-color: var(--theme-color);
    border-radius: 50px;
}
.offer-banner .offer-box a {
    color: #fff;
    padding: calc(4px + (8 - 4) * ((100vw - 320px) / (1920 - 320))) calc(15px + (21 - 15) * ((100vw - 320px) / (1920 - 320)));
    display: block;
}
.offer-banner .offer-box a span {
    letter-spacing: 1.5px;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}
.bank-section .bank-offer {
    border-radius: calc(9px + (20 - 9) * ((100vw - 320px) / (1920 - 320)));
    overflow: hidden;
}
.bank-section .bank-offer:hover .bank-footer-1 .bank-coupon::after {
    top: 0;
    height: 100%;
}
.bank-section .bank-offer:hover .bank-footer-2 .bank-coupon::after {
    top: 0;
    height: 100%;
}
.bank-section .bank-offer:hover .bank-footer-3 .bank-coupon::after {
    top: 0;
    height: 100%;
}
.bank-section .bank-offer .bank-header {
    background: linear-gradient(76.68deg, #e6e6e6 -9.39%, #fafafa 78.76%, #f0f0f0 101.45%, #fff 112.78%);
    padding: calc(21px + (35 - 21) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bank-section .bank-offer .bank-header .bank-left .bank-image {
    width: 120px;
    height: auto;
    margin-bottom: 12px;
}
.bank-section .bank-offer .bank-header .bank-left .bank-name h2 {
    color: #bb0032;
    font-weight: 700;
    margin-bottom: 7px;
    font-size: calc(22px + (31 - 22) * ((100vw - 320px) / (1920 - 320)));
}
.bank-section .bank-offer .bank-header .bank-left .bank-name h2.bank-offer-2 {
    color: #239bf0;
}
.bank-section .bank-offer .bank-header .bank-left .bank-name h2.bank-offer-3 {
    color: #e73718;
}
.bank-section .bank-offer .bank-header .bank-left .bank-name h5 {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.bank-section .bank-offer .bank-header .bank-left .bank-name h5.valid {
    margin-top: calc(22px + (69 - 22) * ((100vw - 320px) / (1920 - 320)));
}
.bank-section .bank-offer .bank-footer {
    padding: calc(7px + (17 - 7) * ((100vw - 320px) / (1920 - 320))) calc(13px + (26 - 13) * ((100vw - 320px) / (1920 - 320)));
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bank-section .bank-offer .bank-footer-1 {
    background: linear-gradient(85.8deg, #bb0032 -4.64%, #ff584d 109.73%, #ff8c75 131.73%);
}
.bank-section .bank-offer .bank-footer-1 .bank-coupon {
    background: linear-gradient(85.8deg, #ff584d -4.64%, rgba(187, 0, 50, 0.1) 131.73%);
}
.bank-section .bank-offer .bank-footer-1 .bank-coupon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #ff584d;
    background: linear-gradient(85.8deg, rgba(187, 0, 50, 0.1) 131.73%, #ff584d -4.64%);
}
.bank-section .bank-offer .bank-footer-2 {
    background: -webkit-gradient(linear, left top, right top, color-stop(15.92%, #2395e8), color-stop(49.57%, #4eb5ff));
    background: linear-gradient(90deg, #2395e8 15.92%, #4eb5ff 49.57%);
}
.bank-section .bank-offer .bank-footer-2 .bank-coupon {
    background: -webkit-gradient(linear, left top, right top, color-stop(15.92%, #2395e8), color-stop(49.57%, #4eb5ff));
    background: linear-gradient(90deg, #2395e8 15.92%, #4eb5ff 49.57%);
}
.bank-section .bank-offer .bank-footer-2 .bank-coupon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #4eb5ff;
    background: -webkit-gradient(linear, left top, right top, color-stop(15.92%, #4eb5ff), color-stop(49.57%, #2395e8));
    background: linear-gradient(90deg, #4eb5ff 15.92%, #2395e8 49.57%);
}
.bank-section .bank-offer .bank-footer-3 {
    background: linear-gradient(85.8deg, #ffb321 -4.64%, #ff584d 109.73%, #ff8c75 131.73%);
}
.bank-section .bank-offer .bank-footer-3 .bank-coupon {
    background: linear-gradient(85.8deg, #ffb321 -4.64%, #ff584d 109.73%, #ff8c75 131.73%);
}
.bank-section .bank-offer .bank-footer-3 .bank-coupon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #ffb321;
    background: -webkit-gradient(linear, right top, left top, color-stop(-4.64%, rgba(255, 140, 117, 0)), color-stop(109.73, rgba(255, 88, 77, 0.1)), color-stop(131.73%, #ffb321));
    background: linear-gradient(-90deg, rgba(255, 140, 117, 0) -4.64%, rgba(255, 88, 77, 0.1) 109.73, #ffb321 131.73%);
}
.bank-section .bank-offer .bank-footer h4 {
    font-weight: 500;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
}
.bank-section .bank-offer .bank-footer h4 input {
    pointer-events: none;
    background-color: transparent;
    color: #fff;
    border: none;
    font-weight: 600;
    width: 60%;
}
.bank-section .bank-offer .bank-footer .bank-coupon {
    margin-left: auto;
    color: #fff;
    font-weight: 600;
    padding: 6px 21px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 0;
}
[dir="rtl"] .bank-section .bank-offer .bank-footer .bank-coupon {
    margin-left: unset;
    margin-right: auto;
}
.shop-banner {
    width: 52% !important;
}
@media (max-width: 575px) {
    .shop-banner {
        width: 100% !important;
    }
}
.shop-banner > div {
    padding: calc(20px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
    background: var(--theme-color);
    color: #fff;
    border-radius: 9px;
}
.shop-banner > div h2 {
    font-size: calc(21px + (37 - 21) * ((100vw - 320px) / (1920 - 320))) !important;
    font-weight: 700 !important;
    line-height: 1.2;
}
.shop-banner > div h3 {
    font-size: calc(19px + (30 - 19) * ((100vw - 320px) / (1920 - 320))) !important;
    margin-top: 18px;
    margin-bottom: -2px;
}
@media (max-width: 575px) {
    .banner-small.ratio_65 .bg-size:before {
        padding-top: 53%;
    }
}
.banner-furniture > .row {
    direction: ltr;
}
@media (min-width: 1400px) {
    .banner-furniture > .row > div {
        margin-left: 16.6666666667%;
    }
}
@media (min-width: 1400px) {
    .banner-furniture > .row > div {
        margin-left: 8.3333333333%;
    }
}
.blog-box:hover .blog-box-image a {
    -webkit-transform: scale(1.12) rotate(3deg);
    transform: scale(1.12) rotate(3deg);
    overflow: hidden;
}
.blog-box:hover .blog-detail h5 {
    color: var(--theme-color);
}
.blog-box .blog-box-image {
    overflow: hidden;
    border-radius: 5px;
}
.blog-box .blog-box-image .blog-image {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-box .blog-detail {
    margin-top: 15px;
    display: block;
}
.blog-box .blog-detail.blog-contain {
    background-color: #ff4f4f;
}
.blog-box .blog-detail h6 {
    color: #4a5568;
    margin-bottom: 3px;
    font-weight: 600;
}
.blog-box .blog-detail h5 {
    color: #222;
    line-height: 1.5;
    font-weight: 600;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-section .blog-box {
    padding-bottom: 1px;
    border-radius: 10px;
    border: 1px solid #ececec;
    overflow: hidden;
    position: relative;
}
.blog-section .blog-box:hover .blog-box-image a {
    -webkit-transform: scale(1.12) rotate(3deg);
    transform: scale(1.12) rotate(3deg);
    overflow: hidden;
}
.blog-section .blog-box:hover .blog-detail label {
    color: #fff;
}
.blog-section .blog-box:hover .blog-detail label::before {
    opacity: 1;
}
.blog-section .blog-box .blog-box-image {
    overflow: hidden;
    border-radius: 0;
}
.blog-section .blog-box .blog-box-image a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-section .blog-box .blog-image {
    position: relative;
}
.blog-section .blog-box .blog-image label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 5px;
    border: none;
    padding: 8px 10px;
    font-size: 12px;
    letter-spacing: 0.9px;
    -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
.blog-section .blog-box .blog-detail {
    padding: calc(11px + (20 - 11) * ((100vw - 320px) / (1920 - 320)));
    margin-top: 0;
}
.blog-section .blog-box .blog-detail h2 {
    font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.4;
}
.blog-section .blog-box .blog-detail label {
    font-size: 12px;
    padding: 7px 11px;
    border-radius: 50px;
    color: var(--theme-color);
    margin-bottom: calc(4px + (12 - 4) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
    overflow: hidden;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-section .blog-box .blog-detail label::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--theme-color);
    opacity: 0.1;

    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-section .blog-box .blog-detail a {
    color: #222;
    display: block;
}
.blog-section .blog-box .blog-detail h3 {
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: 600;
}
.blog-section .blog-box .blog-detail h5 {
    font-size: 15px;
    margin-top: 10px;
    font-weight: 500;
    color: #4a5568;
}
.blog-section .blog-box .blog-detail .blog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 15px;
    gap: calc(14px + (22 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.blog-section .blog-box .blog-detail .blog-list span {
    color: #4a5568;
    margin-bottom: -5px;
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
}
.blog-section .blog-box .blog-detail .blog-list .blog-social-icon {
    position: relative;
}
.blog-section .blog-box .blog-detail .blog-list .blog-social-icon .icon {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.blog-section .blog-box .blog-detail .blog-list .blog-social-icon .icon li {
    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;
    width: 20px;
    height: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-section .blog-box .blog-detail .blog-list .blog-social-icon .icon li .fab {
    font-size: 14px;
    color: #4a5568;
}
.blog-section .blog-box .blog-detail .blog-list .blog-social-icon:hover .icon {
    opacity: 1;
}
.category-box {
    background-color: #f8f8f8;
    margin: 0px auto;
    display: block;
    width: 90%;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: calc(15px + (35 - 15) * ((100vw - 320px) / (1920 - 320))) 8px;
    z-index: 0;
}
.category-box.category-bg {
    background: linear-gradient(149.8deg, #f6f5f2 17.21%, #fbfaf9 79.21%);
}
.category-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background-image: url(../images/vegetable/shape.png);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--theme-color);
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.category-box:hover {
    background-color: transparent;
}
.category-box:hover::after {
    opacity: 1;
}
.category-box:hover img {
    -webkit-filter: invert(1) brightness(100);
    filter: invert(1) brightness(100);
}
.category-box:hover h5 {
    color: #fff;
}
.category-box-2::after {
    background-image: url(../images/cake/bg.jpg);
}
.category-box img {
    width: calc(38px + (45 - 38) * ((100vw - 320px) / (1920 - 320)));
    height: calc(38px + (45 - 38) * ((100vw - 320px) / (1920 - 320)));
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 auto;
}
.category-box h5 {
    color: #222;
    margin-top: 12px;
    font-weight: 500;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.shop-box .shop-category-box {
    padding: 20px 10px;
    background-color: #f8f8f8;
    display: block;
    text-align: center;
    border-radius: 0;
    margin: 0 !important;
    border-right: 1px solid #ececec;
}
.shop-box .shop-category-box a {
    display: block;
    width: 100%;
}
.shop-box .shop-category-box a .shop-category-image {
    width: 68px;
    height: 68px;
    display: inline-block;
    background-color: #f8f8f8;
    padding: 8px;
    border-radius: 7px;
}
.shop-box .shop-category-box a .shop-category-image img {
    width: 100%;
    height: 100%;
}
.shop-box .shop-category-box a .category-box-name {
    position: relative;
    width: 90%;
    margin: 10px auto 0;
    background-color: #f8f8f8;
    color: #222;
    border-radius: 4px;
}
.shop-box .shop-category-box a .category-box-name h6 {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.deal-section .deal-box {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: calc(18px + (25 - 18) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.deal-section .deal-box:hover .category-image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
@media (max-width: 575px) {
    .deal-section .deal-box {
        display: block;
    }
}
.deal-section .deal-box .category-image {
    width: 60%;
}
@media (max-width: 575px) {
    .deal-section .deal-box .category-image {
        width: 100%;
    }
}
.deal-section .deal-box .category-image img {
    width: 80%;
    margin-left: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
[dir="rtl"] .deal-section .deal-box .category-image img {
    margin-left: unset;
    margin-right: auto;
}
@media (max-width: 575px) {
    .deal-section .deal-box .category-image img {
        width: 60%;
        margin: 0 auto 30px;
    }
}
.deal-section .deal-box .buy-box {
    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;
    top: calc(18px + (25 - 18) * ((100vw - 320px) / (1920 - 320)));
    right: calc(18px + (25 - 18) * ((100vw - 320px) / (1920 - 320)));
    background-color: var(--theme-color);
    padding: calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 5px;
}
[dir="rtl"] .deal-section .deal-box .buy-box {
    right: unset;
    left: calc(18px + (25 - 18) * ((100vw - 320px) / (1920 - 320)));
}
.deal-section .deal-box .buy-box .iconly-Buy {
    font-size: 24px;
}
.deal-section .deal-box .deal-detail {
    width: 65%;
}
@media (max-width: 575px) {
    .deal-section .deal-box .deal-detail {
        width: 100%;
    }
}
.deal-section .deal-box .deal-detail .hot-deal {
    background-color: var(--theme-color);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    color: #fff;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.deal-section .deal-box .deal-detail .hot-deal span {
    line-height: 2.1;
}
.deal-section .deal-box .deal-detail h5 {
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    margin: 10px 0 8px;
    text-transform: capitalize;
    font-weight: 500;
}
.deal-section .deal-box .deal-detail .price {
    color: var(--theme-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.deal-section .deal-box .deal-detail .price span {
    color: #4a5568;
    text-decoration: line-through;
    font-weight: 400;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.deal-section .deal-box .deal-detail .custom-progressbar {
    border-radius: 50px;
    height: 10px;
}
.deal-section .deal-box .deal-detail .custom-progressbar .progress-bar {
    background: var(--theme-color2);
    border-radius: 50px;
}
.deal-section .deal-box .deal-detail .item {
    color: #4a5568;
    margin-top: 18px;
}
.deal-section .deal-box .deal-detail .item span {
    color: #222;
    font-weight: 500;
}
.deal-section .deal-box .deal-detail .timer {
    margin-top: 15px;
}
.deal-section .deal-box .deal-detail .timer ul li .counter {
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
}
.deal-section .deal-box .deal-detail .timer ul li .counter > div {
    line-height: 1;
}
.deal-section .deal-box .offer {
    color: #4a5568;
    margin: 5px 0 12px;
}
.category-section-2 .category-slider .shop-category-box {
    position: relative;
    padding-top: 14px;
}
.category-section-2 .category-slider .shop-category-box:hover a::before {
    border-radius: 11px;
}
.category-section-2 .category-slider .shop-category-box:hover a img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}
.category-section-2 .category-slider .shop-category-box a {
    display: block;
    position: relative;
}
.category-section-2 .category-slider .shop-category-box a.circle-1::before {
    background-color: #fff9d8;
}
.category-section-2 .category-slider .shop-category-box a.circle-2::before {
    background-color: #fff2ec;
}
.category-section-2 .category-slider .shop-category-box a.circle-3::before {
    background-color: #fce9e9;
}
.category-section-2 .category-slider .shop-category-box a.circle-4::before {
    background-color: #fcf1ff;
}
.category-section-2 .category-slider .shop-category-box a::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.category-section-2 .category-slider .shop-category-box a img {
    position: relative;
    width: calc(87px + (110 - 87) * ((100vw - 320px) / (1920 - 320)));
    margin: 0 auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.category-section-2 .category-slider .shop-category-box .category-name {
    position: relative;
    text-align: center;
    z-index: 0;
    margin: 16px auto 0;
}
.category-section-2 .category-slider .shop-category-box .category-name h6 {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
    font-size: calc(13px + (15 - 13) * ((100vw - 320px) / (1920 - 320)));
    letter-spacing: 0.7px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    -webkit-line-clamp: 3;
    margin-bottom: 0;
    font-weight: 500;
}
.category-section-3 .category-box-list {
    padding: 20px;
    border-radius: 15px;
    background-color: #f1f1f3;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 0;
}
.category-section-3 .category-box-list::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--theme-color-rgb), 0.15);
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.category-section-3 .category-box-list:hover {
    background-color: #fff;
}
.category-section-3 .category-box-list:hover::after {
    opacity: 1;
}
.category-section-3 .category-box-list:hover .category-name h4 {
    font-weight: 700;
    color: var(--theme-color);
}
.category-section-3 .category-box-list:hover .category-name h6 {
    color: #222;
}
.category-section-3 .category-box-list:hover .category-box-view .shop-button {
    opacity: 1;
    bottom: 17px;
}
.category-section-3 .category-box-list:hover a img {
    opacity: 0.7;
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}
.category-section-3 .category-box-list .category-box-view .shop-button {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--theme-color);
    font-size: 14px;
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    position: absolute;
    bottom: -40px;
    opacity: 0;
}
.category-section-3 .category-box-list .category-box-view .shop-button i {
    margin-left: 6px;
    font-size: 12px;
}
.category-section-3 .category-box-list .category-name {
    margin-bottom: 20px;
    color: #222;
    display: block;
}
.category-section-3 .category-box-list .category-name h4 {
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.category-section-3 .category-box-list .category-name h6 {
    margin-top: 5px;
    color: #4a5568;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.category-section-3 .category-box-list a {
    display: block;
    position: relative;
}
.category-section-3 .category-box-list a img {
    margin: 0 auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.category-section-4 .shop-category-box {
    text-align: center;
}
.category-section-4 .shop-category-box img {
    width: 120px;
    height: 120px;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 25px;
    margin: 0 auto;
    border: 2px solid #fff;
}
.category-section-4 .shop-category-box .category-name {
    margin-top: 14px;
}
.category-section-4 .shop-category-box .category-name h6 {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
footer {
    background-color: #f8f8f8;
    position: relative;
    z-index: 0;
}
footer::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0;
    left: 0;
    /*background-image: url(../images/vegetable/footer-shape.png);*/
    background-repeat: no-repeat;
    z-index: -1;
}
@media (max-width: 1199px) {
    footer::after {
        content: none;
    }
}
footer:before {
    content: "";
    position: absolute;
    width: 30%;
    height: 100%;
    bottom: 0;
    right: 0;
    /*background-image: url(../images/vegetable/footer-shape-2.png);*/
    background-repeat: no-repeat;
    z-index: -1;
}
@media (max-width: 1199px) {
    footer:before {
        content: none;
    }
}
footer .main-footer {
    border-top: 1px dashed #c1c1c1;
}
@media (max-width: 767px) {
    footer .main-footer {
        border: none;
        padding-top: 0;
    }
}
footer .main-footer .footer-theme .footer-theme-contain {
    margin-top: calc(13px + (20 - 13) * ((100vw - 320px) / (1920 - 320)));
}
footer .main-footer .footer-theme .footer-theme-contain p {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #4a5568;
    line-height: 27px;
    margin-bottom: 0;
}
footer .main-footer .footer-theme .footer-theme-contain ul.address {
    margin-top: calc(17px + (30 - 17) * ((100vw - 320px) / (1920 - 320)));
}
footer .main-footer .footer-theme .footer-theme-contain ul.address li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
footer .main-footer .footer-theme .footer-theme-contain ul.address li .feather {
    width: 18px;
    height: 18px;
    stroke: #4a5568;
}
footer .main-footer .footer-theme .footer-theme-contain ul.address li p {
    margin: 1px 0 0 10px;
    color: #4a5568;
}
[dir="rtl"] footer .main-footer .footer-theme .footer-theme-contain ul.address li p {
    margin: 1px 10px 0 0;
}
footer .main-footer .footer-theme .footer-theme-contain ul li {
    display: block;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
footer .main-footer .footer-theme .footer-theme-contain ul li a:hover {
    color: #4a5568;
}
footer .main-footer .footer-theme .footer-theme-contain ul li + li {
    margin-top: calc(4px + (15 - 4) * ((100vw - 320px) / (1920 - 320)));
}
footer .main-footer .footer-logo .theme-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 575px) {
    footer .main-footer .footer-logo .theme-logo {
        margin-bottom: 15px;
    }
}
footer .main-footer .footer-logo .theme-logo a img {
    width: calc(120px + (160 - 120) * ((100vw - 320px) / (1920 - 320)));
}
footer .main-footer .footer-logo .theme-logo h4 {
    margin-left: 10px;
}
footer .main-footer .footer-logo .footer-logo-contain {
    margin: calc(13px + (20 - 13) * ((100vw - 320px) / (1920 - 320))) 0;
}
footer .main-footer .footer-logo .footer-logo-contain p {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #4a5568;
    line-height: 27px;
    margin-bottom: 0;
    width: 88%;
}
@media (max-width: 360px) {
    footer .main-footer .footer-logo .footer-logo-contain p {
        width: 100%;
    }
}
footer .main-footer .footer-logo .footer-logo-contain .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(8px + (15 - 8) * ((100vw - 320px) / (1920 - 320)));
    margin-top: calc(7px + (30 - 7) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] footer .main-footer .footer-logo .footer-logo-contain .address {
    padding-left: unset;
    padding-right: 0;
}
footer .main-footer .footer-logo .footer-logo-contain .address li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
}
footer .main-footer .footer-logo .footer-logo-contain .address li:hover a {
    color: var(--theme-color);
}
footer .main-footer .footer-logo .footer-logo-contain .address li:hover .feather {
    stroke: var(--theme-color);
}
footer .main-footer .footer-logo .footer-logo-contain .address li .feather {
    width: 18px;
    height: 18px;
    stroke: #4a5568;
}
footer .main-footer .footer-logo .footer-logo-contain .address li a {
    margin: 0 0 0 10px;
    color: #4a5568;
    line-height: 18px;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] footer .main-footer .footer-logo .footer-logo-contain .address li a {
    margin-right: 10px;
    margin-left: unset;
}
footer .main-footer .footer-title h4 {
    font-size: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
}
@media (max-width: 575px) {
    footer .main-footer .footer-title h4 {
        font-weight: 500;
    }
}
footer .main-footer .footer-contain {
    margin-top: calc(8px + (20 - 8) * ((100vw - 320px) / (1920 - 320)));
}
footer .main-footer .footer-contain p {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #4a5568;
    line-height: 27px;
    margin-bottom: 0;
}
footer .main-footer .footer-contain ul.address {
    margin-top: calc(17px + (30 - 17) * ((100vw - 320px) / (1920 - 320)));
}
footer .main-footer .footer-contain ul.address li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
footer .main-footer .footer-contain ul.address li .feather {
    width: 18px;
    height: 18px;
    stroke: #4a5568;
}
footer .main-footer .footer-contain ul.address li p,
footer .main-footer .footer-contain ul.address li a {
    margin: 0 0 0 10px;
    color: #4a5568;
    line-height: 18px;
}
[dir="rtl"] footer .main-footer .footer-contain ul.address li p,
[dir="rtl"] footer .main-footer .footer-contain ul.address li a {
    margin-right: 10px;
    margin-left: unset;
}
footer .main-footer .footer-contain ul li {
    display: block;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}
footer .main-footer .footer-contain ul li a {
    display: inline-block;
    position: relative;
}
footer .main-footer .footer-contain ul li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: var(--theme-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
[dir="rtl"] footer .main-footer .footer-contain ul li a::before {
    left: unset;
    right: 0;
}
footer .main-footer .footer-contain ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    left: -13px;
    background-color: var(--theme-color);
    border-radius: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
[dir="rtl"] footer .main-footer .footer-contain ul li a::after {
    left: unset;
    right: -13px;
}
footer .main-footer .footer-contain ul li a:hover {
    color: var(--theme-color);
    margin-left: 13px;
}
[dir="rtl"] footer .main-footer .footer-contain ul li a:hover {
    margin-left: unset;
    margin-right: 13px;
}
footer .main-footer .footer-contain ul li a:hover::before {
    width: 100%;
}
footer .main-footer .footer-contain ul li a:hover::after {
    opacity: 1;
}
footer .main-footer .footer-contain ul li + li {
    margin-top: calc(4px + (15 - 4) * ((100vw - 320px) / (1920 - 320)));
}
footer .main-footer .social-app::before {
    content: none;
}
footer .main-footer .social-app ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
footer .main-footer .social-app ul li {
    display: inline-block;
}
footer .main-footer .social-app ul li::before {
    content: none !important;
}
footer .main-footer .social-app ul li a {
    display: block;
}
footer .main-footer .social-app ul li a img {
    width: calc(114px + (140 - 114) * ((100vw - 320px) / (1920 - 320)));
}
footer .main-footer .footer-contact {
    margin-top: calc(13px + (20 - 13) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] footer .main-footer .footer-contact {
    padding-left: unset;
    padding-right: 0;
}
footer .main-footer .footer-contact ul li {
    display: block;
    margin-bottom: calc(30px + (50 - 30) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
}
footer .main-footer .footer-contact ul li:last-child {
    margin-bottom: 0;
}
footer .main-footer .footer-contact ul li:last-child::before {
    content: none;
}
footer .main-footer .footer-contact ul li.social-app ul li a {
    display: block;
}
footer .main-footer .footer-contact ul li.social-app ul li a img {
    width: 139px;
}
footer .main-footer .footer-contact ul li::before {
    content: "";
    position: absolute;
    bottom: -24px;
    right: 0;
    width: calc(100% - 33px);
    border-bottom: 1px dashed #c1c1c1;
}
[dir="rtl"] footer .main-footer .footer-contact ul li::before {
    right: unset;
    left: 0;
}
@media (max-width: 1460px) {
    footer .main-footer .footer-contact ul li::before {
        bottom: -20px;
    }
}
@media (max-width: 991px) {
    footer .main-footer .footer-contact ul li::before {
        bottom: -18px;
    }
}
@media (max-width: 767px) {
    footer .main-footer .footer-contact ul li::before {
        bottom: -16px;
    }
}
@media (max-width: 360px) {
    footer .main-footer .footer-contact ul li::before {
        bottom: -13px;
    }
}
footer .main-footer .footer-contact ul li .footer-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
footer .main-footer .footer-contact ul li .footer-number .feather {
    width: 18px;
    height: 18px;
    stroke: #4a5568;
}
footer .main-footer .footer-contact ul li .footer-number .contact-number h5 {
    margin-top: 6px;
    font-weight: 600;
    color: #222;
}
footer .sub-footer {
    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;
    border-top: 1px dashed #c1c1c1;
}
@media (max-width: 991px) {
    footer .sub-footer {
        display: block;
        text-align: center;
    }
}
@media (max-width: 767px) {
    footer .sub-footer {
        margin-bottom: 66px;
    }
}
@media (max-width: 991px) {
    footer .sub-footer .payment {
        margin: 8px 0;
    }
}
footer .sub-footer .social-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 991px) {
    footer .sub-footer .social-link {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
footer .sub-footer .social-link h6 {
    margin-right: 10px;
}
[dir="rtl"] footer .sub-footer .social-link h6 {
    margin-left: 10px;
    margin-right: unset;
}
footer .sub-footer .social-link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
footer .sub-footer .social-link ul li:hover i {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
footer .sub-footer .social-link ul li a {
    display: block;
}
footer .sub-footer .social-link ul li a i {
    color: #4a5568;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
footer .sub-footer .social-link ul li + li {
    margin-left: 8px;
}
[dir="rtl"] footer .sub-footer .social-link ul li + li {
    margin-left: unset;
    margin-right: 8px;
}
footer .sub-footer ul {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
}
@media (max-width: 991px) {
    footer .sub-footer ul {
        display: block;
        text-align: center;
    }
}
footer .sub-footer ul li {
    display: block;
}
.footer-section-2 {
    background-color: #f8f8f8;
}
.footer-section-2::before,
.footer-section-2::after {
    content: none;
}
.footer-section-2 .download-image {
    margin-top: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.footer-section-2.footer-color-2 {
    background-color: #051616;
}
.footer-section-2.footer-color-3 {
    background-color: #1d2328;
}
.footer-section-2 .main-footer {
    padding-bottom: calc(18px + (50 - 18) * ((100vw - 320px) / (1920 - 320)));
    border-top: unset;
}
.footer-section-2 .main-footer .foot-logo img {
    width: calc(120px + (160 - 120) * ((100vw - 320px) / (1920 - 320)));
}
.footer-section-2 .main-footer .information-text {
    margin-bottom: 0;
    margin-top: calc(5px + (20 - 5) * ((100vw - 320px) / (1920 - 320)));
    color: #4a5568;
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.7;
}
.footer-section-2 .main-footer .information-text-2 {
    color: #bfbfbf;
    margin-top: calc(18px + (30 - 18) * ((100vw - 320px) / (1920 - 320)));
}
.footer-section-2 .main-footer .social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
[dir="rtl"] .footer-section-2 .main-footer .social-icon {
    padding-left: unset;
    padding-right: 0;
}
.footer-section-2 .main-footer .social-icon li {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.footer-section-2 .main-footer .social-icon li.light-bg::after {
    background-color: #fff;
    opacity: 0.1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.footer-section-2 .main-footer .social-icon li.light-bg:hover::after {
    opacity: 0.3;
}
.footer-section-2 .main-footer .social-icon li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--theme-color);
    opacity: 0.06;
    border-radius: 50%;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.footer-section-2 .main-footer .social-icon li:hover::after {
    opacity: 1;
}
.footer-section-2 .main-footer .social-icon li:hover i {
    color: #fff;
}
.footer-section-2 .main-footer .social-icon li a {
    width: 100%;
    height: 100%;
    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;
    color: #4a5568;
}
.footer-section-2 .main-footer .social-icon li a i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.footer-section-2 .main-footer .social-icon li a.footer-link-color {
    color: #fff;
}
.footer-section-2 .main-footer .download-app {
    margin-top: 20px;
}
.footer-section-2 .main-footer .download-app span {
    margin-bottom: 0;
    margin-top: 20px;
    color: #4a5568;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.footer-section-2 .main-footer .download-app img {
    width: 110px;
    margin-left: 8px;
}
.footer-section-2 .main-footer .footer-title {
    margin-bottom: calc(13px + (36 - 13) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
    position: relative;
}
.footer-section-2 .main-footer .footer-list-light li a:hover {
    color: #fff;
}
.footer-section-2 .main-footer .footer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(7px + (16 - 7) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] .footer-section-2 .main-footer .footer-list {
    padding-right: 0;
}
.footer-section-2 .main-footer .footer-list li {
    display: block;
    width: 100%;
}
@media (max-width: 575px) {
    .footer-section-2 .main-footer .footer-list li:last-child {
        margin-bottom: 16px;
    }
}
.footer-section-2 .main-footer .footer-list li a {
    color: #4a5568;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
}
.footer-section-2 .main-footer .footer-list li a i {
    margin-right: 10px;
}
[dir="rtl"] .footer-section-2 .main-footer .footer-list li a i {
    margin-right: unset;
    margin-left: 10px;
}
.footer-section-2 .main-footer .footer-list li a.light-text {
    color: #bfbfbf;
}
.footer-section-2 .main-footer .footer-list li a:hover {
    color: #fff;
    padding-left: 14px;
}
[dir="rtl"] .footer-section-2 .main-footer .footer-list li a:hover {
    padding-left: unset;
    padding-right: 14px;
}
.footer-section-2 .main-footer .footer-list li a:hover::before {
    left: 0;
    opacity: 0.7;
}
[dir="rtl"] .footer-section-2 .main-footer .footer-list li a:hover::before {
    left: unset;
    right: 0;
}
.footer-section-2 .main-footer .footer-list li a:before {

    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -20px;
    border-radius: 100%;
    opacity: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
[dir="rtl"] .footer-section-2 .main-footer .footer-list li a:before {
    left: unset;
    right: -20px;
}
.footer-section-2 .main-footer .footer-list li a.footer-contain-2::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: unset;
    height: unset;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\f105";
    left: 0;
    opacity: 0;
    background: none;
    color: var(--theme-color);
}
.footer-section-2 .main-footer .footer-list li a.footer-contain-2:hover {
    padding-left: 6px;
    color: var(--theme-color);
}
.footer-section-2 .main-footer .footer-list li a.footer-contain-2:hover::before {
    opacity: 1;
}
[dir="rtl"] .footer-section-2 .main-footer .footer-address {
    padding-right: 0;
}
.footer-section-2 .main-footer .footer-address li {
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer-section-2 .main-footer .footer-address li:last-child {
    margin-bottom: 0;
}
.footer-section-2 .main-footer .footer-address li a {
    color: #4a5568;
    position: relative;
    font-size: 16px;
    display: block;
    width: 100%;
}
.footer-section-2 .main-footer .footer-address li a.light-text {
    color: #bfbfbf;
}
.footer-section-2 .main-footer .footer-address li a .inform-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer-section-2 .main-footer .footer-address li a .inform-box.flex-start-box {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.footer-section-2 .main-footer .footer-address li a .inform-box .feather {
    margin-right: 10px;
    width: 20px;
}
[dir="rtl"] .footer-section-2 .main-footer .footer-address li a .inform-box .feather {
    margin-right: unset;
    margin-left: 10px;
}
.footer-section-2 .main-footer .footer-address li a .inform-box p {
    margin: -3px 0 0;
    width: calc(100% + (64 - 100) * ((100vw - 320px) / (1920 - 320)));
    font-size: 16px;
    line-height: 30px;
}
.footer-section-2 .sub-footer {
    border-top: 1px solid #ececec;
}
.footer-section-2 .sub-footer-lite {
    border-top: 1px solid rgba(236, 236, 236, 0.2);
}
.footer-section-2 .sub-footer p {
    margin-bottom: 0;
    font-size: 15px;
    color: #4a5568;
    text-transform: capitalize;
}
.footer-section-2 .sub-footer p.light-text {
    color: #bfbfbf;
}
.footer-section-2 .sub-footer .payment-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (max-width: 1199px) {
    .footer-section-2 .sub-footer .payment-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 10px;
    }
}
.footer-section-2 .sub-footer .payment-box li {
    margin: 0 5px;
}
.footer-section-2 .sub-footer .payment-box li img {
    width: 40px;
    margin-bottom: -6px;
    display: block;
}
.footer-sm {
    margin-left: 320px;
    background-color: #fff;
}
[dir="rtl"] .footer-sm {
    margin-left: unset;
    margin-right: 320px;
}
@media (max-width: 1199px) {
    .footer-sm {
        margin-left: 0;
    }
    [dir="rtl"] .footer-sm {
        margin-left: unset;
        margin-right: 0;
    }
}
.footer-sm:after,
.footer-sm:before {
    display: none;
}
.footer-sm .sub-footer {
    border-top: none;
    padding: 20px 0;
}
.onhover-category-box {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    -webkit-box-shadow: 0 0 8px #ddd;
    box-shadow: 0 0 8px #ddd;
    padding: 20px 25px;
    border-radius: 5px;
    width: 520px;
    height: 100%;
    overflow: auto;
    display: grid;
    grid-template-columns: auto auto;
    opacity: 0;
    visibility: hidden;
    margin-left: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
[dir="rtl"] .onhover-category-box {
    margin-left: unset;
    margin-right: 14px;
}
@media (max-width: 1199px) {
    .onhover-category-box {
        grid-template-columns: auto;
        display: block;
        width: 100%;
    }
    .onhover-category-box .list-2 {
        margin-top: 15px;
    }
}
@media (max-width: 767px) {
    .onhover-category-box {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 12px 11px;
        margin-top: 7px;
        opacity: 1;
        visibility: visible;
        margin-left: 0;
    }
}
.onhover-category-box .category-title-box {
    margin-bottom: calc(8px + (20 - 8) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.onhover-category-box .category-title-box h5 {
    font-weight: 600;
}
.onhover-category-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(4px + (11 - 4) * ((100vw - 320px) / (1920 - 320)));
}
.onhover-category-box ul li {
    position: relative;
}
.onhover-category-box ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #4a5568;
    border-radius: 100%;
}
.onhover-category-box ul li a {
    margin-left: 13px;
}
header.active .sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: #222;
    -webkit-box-shadow: 0 8px 10px rgba(34, 34, 34, 0.05);
    box-shadow: 0 8px 10px rgba(34, 34, 34, 0.05);
    z-index: 9;
    padding: calc(15px + (24 - 15) * ((100vw - 320px) / (1920 - 320))) 0;
}
header.active .sticky-header-2 {
    background-color: var(--theme-color);
    padding: 14px 0;
}
header.active .sticky-header-3 {
    padding: 14px 0;
}
header .timer-notification {
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}
@media (max-width: 1399px) {
    header .timer-notification {
        text-align: left;
    }
}
header .timer-notification h6 {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
header .timer-notification h6 a {
    text-decoration: underline;
    font-weight: 600;
    display: inline-block;
    margin-left: 5px;
}
header .header-notification {
    position: relative;
}
header .header-notification.remove {
    display: none;
}
@media (max-width: 767px) {
    header .header-notification .notification-slider .timer-notification {
        width: 80%;
        margin: 0 auto;
    }
}
header .header-notification .close-notification {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    right: 11px;
    padding: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
@media (max-width: 575px) {
    header .header-notification .close-notification {
        top: 10px;
        -webkit-transform: none;
        transform: none;
    }
}
@media (max-width: 575px) {
    header .header-notification .close-notification span {
        display: none;
    }
}
header .header-notification .close-notification i {
    margin-left: 5px;
    margin-top: 1px;
}
header .onhover-category-list:hover .onhover-category-box {
    opacity: 1;
    visibility: visible;
    margin-left: 0;
}
[dir="rtl"] header .onhover-category-list:hover .onhover-category-box {
    margin-left: unset;
    margin-right: 0;
}
@media (max-width: 767px) {
    header .onhover-category-list .list-1 {
        margin-bottom: 21px;
    }
}
header .onhover-category-list .onhover-category-box {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    -webkit-box-shadow: 0 0 8px #ddd;
    box-shadow: 0 0 8px #ddd;
    padding: 20px 25px;
    border-radius: 5px;
    width: 520px;
    height: 100%;
    overflow: auto;
    display: grid;
    grid-template-columns: auto auto;
    opacity: 0;
    visibility: hidden;
    margin-left: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
[dir="rtl"] header .onhover-category-list .onhover-category-box {
    margin-left: unset;
    margin-right: 14px;
}
@media (max-width: 991px) {
    header .onhover-category-list .onhover-category-box {
        grid-template-columns: auto;
        display: block;
        width: 100%;
    }
    header .onhover-category-list .onhover-category-box .list-2 {
        margin-top: 15px;
    }
}
@media (max-width: 767px) {
    header .onhover-category-list .onhover-category-box {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 12px 11px;
        margin-top: 7px;
        opacity: 1;
        visibility: visible;
        margin-left: 0;
    }
}
header .onhover-category-list .onhover-category-box .category-title-box {
    margin-bottom: calc(8px + (20 - 8) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
header .onhover-category-list .onhover-category-box .category-title-box h5 {
    font-weight: 600;
}
header .onhover-category-list .onhover-category-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(4px + (11 - 4) * ((100vw - 320px) / (1920 - 320)));
}
header .onhover-category-list .onhover-category-box ul li {
    position: relative;
}
header .onhover-category-list .onhover-category-box ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #4a5568;
    border-radius: 100%;
}
header .onhover-category-list .onhover-category-box ul li a {
    margin-left: 13px;
}
header .header-top {
    padding: 10px 0;
    background-color: var(--theme-color);
}
header .header-top-2 {
    background-color: #222;
}
header .header-top .top-left-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
header .header-top .top-left-header i {
    font-size: 18px;
    margin-right: 5px;
}
[dir="rtl"] header .header-top .top-left-header i {
    margin-right: unset;
    margin-left: 5px;
}
header .header-top .top-left-header span {
    margin-top: 1px;
    font-weight: 500;
}
header .header-top .about-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
}
[dir="rtl"] header .header-top .about-list {
    padding-left: unset;
    padding-right: 0;
}
header .header-top .about-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
header .header-top .about-list li i {
    font-size: 18px;
    margin-right: 5px;
}
[dir="rtl"] header .header-top .about-list li i {
    margin-right: unset;
    margin-left: 5px;
}
header .header-top .about-list li span {
    margin-top: 1px;
    font-weight: 500;
}
header .header-top .about-list li + li {
    margin-left: 25px;
    position: relative;
}
[dir="rtl"] header .header-top .about-list li + li {
    margin-left: unset;
    margin-right: 25px;
}
header .header-top .about-list li + li::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 90%;
    top: 0;
    left: -13px;
    background-color: rgba(255, 255, 255, 0.3);
}
[dir="rtl"] header .header-top .about-list li + li::after {
    left: unset;
    right: -13px;
}
header .header-top .about-list li .theme-form-select {
    padding: 0;
    background-color: transparent;
    color: #fff;
    border: none;
    background-image: none;
    position: relative;
}
header .header-top .about-list li .theme-form-select .dropdown-toggle {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 0 18px 0 0;
}
header .header-top .about-list li .theme-form-select .dropdown-toggle img {
    width: 20px;
    margin-right: 10px;
}
[dir="rtl"] header .header-top .about-list li .theme-form-select .dropdown-toggle img {
    margin-right: unset;
    margin-left: 10px;
}
header .header-top .about-list li .theme-form-select .dropdown-toggle::after {
    content: none;
}
header .header-top .about-list li .theme-form-select .dropdown-toggle:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
header .header-top .about-list li .theme-form-select .dropdown-toggle::before {
    content: "";
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    color: #fff;
}
header .header-top .about-list li .theme-form-select .dropdown-menu.sm-dropdown-menu {
    min-width: 100%;
}
header .header-top .about-list li .theme-form-select .dropdown-menu li + li {
    margin-left: 0;
}
[dir="rtl"] header .header-top .about-list li .theme-form-select .dropdown-menu li + li {
    margin-left: unset;
    margin-right: 0;
}
header .header-top .about-list li .theme-form-select .dropdown-menu li .dropdown-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
header .header-top .about-list li .theme-form-select .dropdown-menu li .dropdown-item:hover,
header .header-top .about-list li .theme-form-select .dropdown-menu li .dropdown-item:focus {
    background-color: transparent;
}
header .header-top .about-list li .theme-form-select .dropdown-menu li .dropdown-item.active,
header .header-top .about-list li .theme-form-select .dropdown-menu li .dropdown-item:active {
    color: #222;
    background-color: transparent;
}
header .header-top .about-list li .theme-form-select .dropdown-menu li .dropdown-item img {
    width: 20px;
    margin-right: 10px;
}
[dir="rtl"] header .header-top .about-list li .theme-form-select .dropdown-menu li .dropdown-item img {
    margin-right: unset;
    margin-left: 10px;
}
header .nav-about {
    padding: 10px 0;
    background-color: var(--theme-color);
}
header .nav-about-2 {
    background-color: #222;
}
header .top-nav {
    padding: 24px 0;
}
@media (max-width: 767px) {
    header .top-nav {
        padding: 24px 0 0;
    }
}
header .top-nav .navbar-top {
    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;
    position: relative;
}
@media (max-width: 1199px) {
    header .top-nav .navbar-top {
        -webkit-box-pack: normal;
        -ms-flex-pack: normal;
        justify-content: normal;
    }
}
@media (max-width: 767px) {
    header .top-nav .navbar-top {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
header .top-nav .navbar-top .web-logo img {
    width: calc(120px + (162 - 120) * ((100vw - 320px) / (1920 - 320)));
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 767px) {
    header .top-nav .navbar-top .web-logo img {
        margin: 0 auto;
    }
}
header .top-nav .navbar-top .middle-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 767px) {
    header .top-nav .navbar-top .middle-box {
        display: none;
    }
}
header .top-nav .navbar-top .middle-box .location-box {
    border-radius: 5px;
    border: 1px solid #ececec;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7px;
    padding-right: 20px;
    margin-right: 13px;
    position: relative;
}
[dir="rtl"] header .top-nav .navbar-top .middle-box .location-box {
    margin-right: unset;
    margin-left: 13px;
    padding-right: 7px;
    padding-left: 20px;
}
@media (max-width: 1199px) {
    header .top-nav .navbar-top .middle-box .location-box {
        margin-right: unset;
        margin-left: 13px;
    }
    [dir="rtl"] header .top-nav .navbar-top .middle-box .location-box {
        margin-left: unset;
        margin-right: 13px;
    }
}
@media (max-width: 1556px) {
    header .top-nav .navbar-top .middle-box .location-box {
        padding-right: 7px;
    }
    [dir="rtl"] header .top-nav .navbar-top .middle-box .location-box {
        padding-right: 7px;
        padding-left: 7px;
    }
}
@media (max-width: 767px) {
    header .top-nav .navbar-top .middle-box .location-box {
        display: none;
    }
}
header .top-nav .navbar-top .middle-box .location-box button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}
header .top-nav .navbar-top .middle-box .location-box button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
header .top-nav .navbar-top .middle-box .location-box button .location-arrow {
    width: 35px;
    height: 35px;
    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;
    color: #4a5568;
    background-color: #f3f5f9;
    border-radius: 5px;
    margin-right: 12px;
}
[dir="rtl"] header .top-nav .navbar-top .middle-box .location-box button .location-arrow {
    margin-right: unset;
    margin-left: 12px;
}
@media (max-width: 1300px) {
    header .top-nav .navbar-top .middle-box .location-box button .location-arrow {
        margin-right: 0;
    }
    [dir="rtl"] header .top-nav .navbar-top .middle-box .location-box button .location-arrow {
        margin-right: unset;
        margin-left: 0;
    }
}
header .top-nav .navbar-top .middle-box .location-box button .location-arrow .feather {
    width: 16px;
    height: 16px;
}
header .top-nav .navbar-top .middle-box .location-box button .locat-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color);
}
@media (max-width: 1300px) {
    header .top-nav .navbar-top .middle-box .location-box button .locat-name {
        display: none;
    }
}
header .top-nav .navbar-top .middle-box .location-box button i {
    margin-left: 17px;
    color: #4a5568;
}
[dir="rtl"] header .top-nav .navbar-top .middle-box .location-box button i {
    margin-left: unset;
    margin-right: 17px;
}
@media (max-width: 1300px) {
    header .top-nav .navbar-top .middle-box .location-box button i {
        display: none;
    }
}
@media (max-width: 1199px) {
    header .top-nav .navbar-top .middle-box .search-box {
        display: none;
    }
}
header .top-nav .navbar-top .middle-box .search-box .input-group ::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 400;
}
header .top-nav .navbar-top .middle-box .search-box .input-group ::-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
}
header .top-nav .navbar-top .middle-box .search-box .input-group :-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
}
header .top-nav .navbar-top .middle-box .search-box .input-group ::-ms-input-placeholder {
    font-size: 16px;
    font-weight: 400;
}
header .top-nav .navbar-top .middle-box .search-box .input-group ::placeholder {
    font-size: 16px;
    font-weight: 400;
}
header .top-nav .navbar-top .middle-box .search-box .input-group .form-control {
    width: 577px;
    border-radius: 5px 0 0 5px;
    border-color: #ececec;
}
[dir="rtl"] header .top-nav .navbar-top .middle-box .search-box .input-group .form-control {
    border-radius: 0 5px 5px 0;
}
@media (max-width: 1812px) {
    header .top-nav .navbar-top .middle-box .search-box .input-group .form-control {
        width: 466px;
    }
}
header .top-nav .navbar-top .middle-box .search-box .input-group .form-control:focus {
    border-color: var(--theme-color);
    background-color: #fff;
}
header .top-nav .navbar-top .middle-box .search-box .input-group button {
    background-color: #ffa53b;
    color: #fff;
    padding: 14px 20px;
    border-radius: 5px;
    border: 1px solid #ffa53b;
}
header .top-nav .navbar-top .middle-box .search-box .input-group button.bg-theme {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
header .top-nav .navbar-top .middle-box .search-box .input-group button.search-button-2 {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
[dir="rtl"] header .top-nav .navbar-top .middle-box .search-box .input-group button {
    border-radius: 5px 0 0 5px !important;
}
header .top-nav .navbar-top .middle-box .search-box .input-group button .feather {
    width: 20px;
    height: 20px;
}
@media (max-width: 1199px) {
    header .top-nav .navbar-top .rightside-box {
        margin-left: auto;
    }
    [dir="rtl"] header .top-nav .navbar-top .rightside-box {
        margin-left: unset;
        margin-right: auto;
    }
}
@media (max-width: 767px) {
    header .top-nav .navbar-top .rightside-box {
        margin-left: unset;
    }
    [dir="rtl"] header .top-nav .navbar-top .rightside-box {
        margin-left: unset;
        margin-right: unset;
    }
}
header .top-nav .navbar-top .rightside-box .right-side-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
[dir="rtl"] header .top-nav .navbar-top .rightside-box .right-side-menu {
    padding-left: unset;
    padding-right: 0;
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side {
    position: relative;
    padding-right: 32px;
}
[dir="rtl"] header .top-nav .navbar-top .rightside-box .right-side-menu .right-side {
    padding-right: unset;
    padding-left: 32px;
}
@media (max-width: 767px) {
    header .top-nav .navbar-top .rightside-box .right-side-menu .right-side {
        display: none;
    }
    header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:last-child {
        display: block;
    }
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:first-child {
    display: none;
}
@media (max-width: 1199px) {
    header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:first-child {
        display: block;
    }
}
@media (max-width: 767px) {
    header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:first-child {
        display: none;
    }
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:last-child {
    padding-right: 0;
}
[dir="rtl"] header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:last-child {
    padding-right: unset;
    padding-left: 0;
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side:last-child::before {
    content: none;
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    right: 14px;
    background-color: rgba(74, 85, 104, 0.5);
}
[dir="rtl"] header .top-nav .navbar-top .rightside-box .right-side-menu .right-side::before {
    right: unset;
    left: 14px;
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .delivery-login-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .delivery-login-box .delivery-icon .feather {
    color: #222;
    margin-right: 14px;
    stroke-width: 1.5;
}
[dir="rtl"] header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .delivery-login-box .delivery-icon .feather {
    margin-right: unset;
    margin-left: 14px;
}
@media (max-width: 1660px) {
    header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .delivery-login-box .delivery-icon .feather {
        margin-right: 0;
    }
    [dir="rtl"] header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .delivery-login-box .delivery-icon .feather {
        margin-right: unset;
        margin-left: 0;
    }
}
@media (max-width: 1660px) {
    header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .delivery-login-box .delivery-detail {
        display: none;
    }
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .delivery-login-box .delivery-detail h6 {
    color: #4a5568;
    margin-bottom: 3px;
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .delivery-login-box .delivery-detail h5 {
    font-weight: 500;
    color: #222;
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .header-badge {
    padding-right: 9px;
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .header-wishlist .feather {
    stroke-width: 1.5;
    color: #4a5568;
}
@media (max-width: 1660px) {
    header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .header-wishlist .feather {
        color: #222;
    }
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .header-wishlist:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .header-wishlist span {
    width: 18px;
    height: 18px;
    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;
    background-color: #ff7272;
    font-size: 12px;
    padding: 0;
    border-radius: 2px;
}
[dir="rtl"] header .top-nav .navbar-top .rightside-box .right-side-menu .right-side .header-wishlist span {
    right: 0 !important;
}
header .onhover-dropdown {
    position: relative;
}
header .onhover-dropdown:hover .onhover-div {
    opacity: 1;
    top: 50px;
    visibility: visible;
}
header .onhover-dropdown .onhover-div {
    position: absolute;
    top: 60px;
    right: -10px;
    background-color: #fff;
    z-index: 1001;
    width: 320px;
    border-radius: 10px;
    padding: calc(14px + (30 - 14) * ((100vw - 320px) / (1920 - 320))) calc(11px + (20 - 11) * ((100vw - 320px) / (1920 - 320)));
    -webkit-box-shadow: -1px 0 10px 0 rgba(34, 34, 34, 0.07), 5px 20px 40px 0 rgba(34, 34, 34, 0.04);
    box-shadow: -1px 0 10px 0 rgba(34, 34, 34, 0.07), 5px 20px 40px 0 rgba(34, 34, 34, 0.04);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
}
[dir="rtl"] header .onhover-dropdown .onhover-div {
    right: unset;
    left: 20px;
}
header .onhover-dropdown .onhover-div-login {
    right: 0;
    width: 160px;
    padding: 20px;
}
header .onhover-dropdown .onhover-div-login .user-box-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
header .onhover-dropdown .onhover-div-login .user-box-name li {
    display: block;
    width: 100%;
}
header .onhover-dropdown .onhover-div-login .user-box-name li a {
    color: #222;
    display: block;
    position: relative;
}
header .onhover-dropdown .onhover-div-login .user-box-name li a:hover::after {
    width: 40%;
}
header .onhover-dropdown .onhover-div-login .user-box-name li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    bottom: 2px;
    left: 0;
    background-color: var(--theme-color);
    opacity: 0.3;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}
header .onhover-dropdown .onhover-div .cart-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: calc(10px + (25 - 10) * ((100vw - 320px) / (1920 - 320)));
    border-bottom: 1px solid #ececec;
    padding-bottom: calc(12px + (22 - 12) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] header .onhover-dropdown .onhover-div .cart-list {
    padding-right: 0;
}
header .onhover-dropdown .onhover-div .cart-list li {
    margin: 0 !important;
}
header .onhover-dropdown .onhover-div .cart-list li::after {
    content: none !important;
}
header .onhover-dropdown .onhover-div .cart-list li .drop-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
header .onhover-dropdown .onhover-div .cart-list li .drop-cart::after {
    content: none;
}
header .onhover-dropdown .onhover-div .cart-list li .drop-cart .drop-image img {
    width: 87px;
    background: #f8f8f8;
    padding: 10px;
}
header .onhover-dropdown .onhover-div .cart-list li .drop-cart .drop-contain h5 {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 5px;
    font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    color: var(--theme-color);
    font-weight: 500;
}
header .onhover-dropdown .onhover-div .cart-list li .drop-cart .drop-contain h6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 5px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
header .onhover-dropdown .onhover-div .cart-list li .drop-cart .drop-contain h6 span {
    margin-top: -2px;
    color: #4a5568;
}
header .onhover-dropdown .onhover-div .cart-list li .drop-cart .drop-contain .close-button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    border: none;
    padding: 0;
    color: #4a5568;
}
[dir="rtl"] header .onhover-dropdown .onhover-div .cart-list li .drop-cart .drop-contain .close-button {
    right: unset;
    left: 0;
}
header .onhover-dropdown .onhover-div .button-group {
    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;
    margin-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}
header .onhover-dropdown .onhover-div .button-group .cart-button {
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    padding: 6px 10px;
}
header .onhover-dropdown .onhover-div .button-group .cart-button:hover {
    background-color: var(--theme-color);
    color: #fff;
}
header .onhover-dropdown .onhover-div .price-box {
    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;
    margin-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}
header .search-full {
    width: 0;
    height: 0;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
header .search-full .input-group {
    border: 1px solid #f0f3f8;
}
header .search-full .input-group .input-group-text {
    background-color: transparent;
    border: none;
}
header .search-full .input-group .input-group-text.close-search {
    cursor: pointer;
}
header .search-full .input-group .input-group-text svg {
    height: 18px;
}
header .search-full .input-group input {
    border: none;
}
header .search-full.open {
    width: 100%;
    height: 100%;
    -webkit-animation: zoomIn 0.5s ease-in-out;
    animation: zoomIn 0.5s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
header .search-full.show .search-suggestion {
    padding: 10px;
    border: 1px solid #f0f3f8;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    max-height: 500px;
    -webkit-transition: max-height 1000ms cubic-bezier(0.27, 0.7, 0, 0.99);
    transition: max-height 1000ms cubic-bezier(0.27, 0.7, 0, 0.99);
}
header .header-nav {
    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;
}
header .header-nav .header-nav-left {
    position: relative;
    /*top:10px;*/
    padding: 13px 12px;
    line-height: 42px;
}
header .header-nav .header-nav-left .dropdown-category {
    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;
    /*padding: calc(10px + (5) * ((100vw - 320px) / (1920 - 320))) calc(16px + (31 - 16) * ((100vw - 320px) / (1920 - 320)));*/
    /*background: var(--theme-color2);*/
    color: #fff;
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
}
@media (max-width: 767px) {
    header .header-nav .header-nav-left .dropdown-category {
        display: none;
    }
    .dropdown-project {
        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;
        padding: calc(10px + (5) * ((100vw - 320px) / (1920 - 320))) calc(16px + (31 - 16) * ((100vw - 320px) / (1920 - 320)));
        background: var(--theme-color2);
        color: #fff;
        border-radius: 5px;
        margin: 10px;
    }
}
header .header-nav .header-nav-left .dropdown-category-2 {
    background: linear-gradient(93.33deg, #222221 12.35%, #2f2f2d 99.38%);
}
header .header-nav .header-nav-left .dropdown-category .feather {
    font-size: 23px;
    margin-right: calc(9px + (16 - 9) * ((100vw - 320px) / (1920 - 320)));
}
[dir="rtl"] header .header-nav .header-nav-left .dropdown-category .feather {
    margin-right: unset;
    margin-left: calc(9px + (16 - 9) * ((100vw - 320px) / (1920 - 320)));
}
header .header-nav .header-nav-left .dropdown-category span {
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
}
header .header-nav .header-nav-left .dropdown-category .dropdown {
    display: inline-block;
}
header .header-nav .header-nav-left .dropdown-category .dropdown.custom-dropdown {
    position: unset;
}
header .header-nav .header-nav-left .dropdown-category .dropdown.custom-dropdown a {
    display: block;
    color: #fff;
    text-decoration: none;
    -webkit-transition: background 0.35s ease;
    transition: background 0.35s ease;
    font-family: "Public Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
}
header .header-nav .header-nav-left .dropdown-category .dropdown.custom-dropdown .fa {
    margin-top: 3px;
    margin-left: 10px;
    font-size: 14px;
    color: var(--theme-color);
}
header .header-nav .header-nav-left .dropdown-category .dropdown.custom-dropdown ul {
    display: none;
    border: 1px solid #ececec;
    border-radius: 5px;
    position: absolute;
    top: 53px;
    width: 100%;
    left: 0;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.14);
    z-index: 999;
}
header .header-nav .header-nav-left .dropdown-category .dropdown.custom-dropdown ul .show {
    display: block;
}
@media (max-width: 1199px) {
    header .header-nav .header-nav-left .dropdown-category .dropdown.custom-dropdown ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
    }
}
header .header-nav .header-nav-left .dropdown-category .dropdown.custom-dropdown ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #ececec;
    cursor: pointer;
    -webkit-transition: background 0.35s ease;
    transition: background 0.35s ease;
    color: #222;
}
header .header-nav .header-nav-left .dropdown-category .dropdown.custom-dropdown ul li img {
    width: 25px;
    height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 6px;
}
header .header-nav .header-nav-left .dropdown-category .dropdown.custom-dropdown ul li:last-child {
    border-bottom: none;
}
header .header-nav .header-nav-left .dropdown-category .dropdown.custom-dropdown ul li:focus,
header .header-nav .header-nav-left .dropdown-category .dropdown.custom-dropdown ul li:hover {
    background-color: #ececec;
}
header .header-nav .header-nav-left:hover .category-dropdown {
    opacity: 1;
    visibility: visible;
    top: 63px;
}
header .header-nav .header-nav-left .category-dropdown {
    position: absolute;
    top: 72px;
    left: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 0 8px #ddd;
    box-shadow: 0 0 8px #ddd;
    z-index: 2;
    width: 235px;
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
@media (max-width: 767px) {
    header .header-nav .header-nav-left .category-dropdown {
        width: calc(300px + (320 - 300) * ((100vw - 320px) / (1920 - 320)));
        height: 100vh;
        position: fixed;
        top: 0;
        left: -320px;
        border-radius: 0;
        z-index: 10;
        padding: 0;
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    [dir="rtl"] header .header-nav .header-nav-left .category-dropdown {
        left: unset;
        right: -320px;
    }
    header .header-nav .header-nav-left .category-dropdown.show {
        left: 0;
    }
    [dir="rtl"] header .header-nav .header-nav-left .category-dropdown.show {
        left: unset;
        right: 0;
    }
    header .header-nav .header-nav-left .category-dropdown:hover {
        opacity: 1;
        visibility: visible;
        top: 0;
    }
}
header .header-nav .header-nav-left .category-dropdown .category-title {
    display: none;
}
@media (max-width: 767px) {
    header .header-nav .header-nav-left .category-dropdown .category-title {
        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;
        padding: 20px 24px;
        border-bottom: 1px solid #ececec;
        -webkit-box-shadow: 0 2px 10px -3px rgba(34, 34, 34, 0.1);
        box-shadow: 0 2px 10px -3px rgba(34, 34, 34, 0.1);
    }
}
header .header-nav .header-nav-left .category-dropdown .category-title h5 {
    color: var(--theme-color);
    font-weight: 600;
}
header .header-nav .header-nav-left .category-dropdown .category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 15px;
}
header .header-nav .header-nav-left .category-dropdown .prodlist {
    max-height: 70vh !important;
    overflow-y: scroll !important;
    min-width: 250px;
}

.prodlist::-webkit-scrollbar { 
            width: 5px; 
            position: relative;
            left: -50px;
        } 
  
        .prodlist::-webkit-scrollbar-track { 
            background: #f1f1f1; 
        } 
  
        .prodlist::-webkit-scrollbar-thumb { 
            background: #4a6916; 
        } 
  
        .prodlist::-webkit-scrollbar-thumb:hover { 
            background: #72a123; 
        } 
  
        .prodlist::-webkit-scrollbar-button { 
            display: none; 
        }
header .header-nav .header-nav-left .category-dropdown .category-list li {
    display: block;
    width: 100%;
}
header .header-nav .header-nav-left .category-dropdown .category-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color:#252525;
    
}
header .header-nav .header-nav-left .category-dropdown .category-list li a:hover h6 {
    letter-spacing: 0.3px;
}
header .header-nav .header-nav-left .category-dropdown .category-list li a:hover h6::before {
    width: 100%;
}
header .header-nav .header-nav-left .category-dropdown .category-list li a img {
    width: 23px;
    height: 23px;
    -o-object-fit: contain;
    object-fit: contain;
}
header .header-nav .header-nav-left .category-dropdown .category-list li a h6 {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
header .header-nav .header-nav-left .category-dropdown .category-list li a h6:before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -4px;
    left: 0;
    background-color: var(--theme-color);
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
header .header-nav .header-nav-left .category-dropdown .category-list li a .according-menu {
    margin-left: auto;
}
[dir="rtl"] header .header-nav .header-nav-left .category-dropdown .category-list li a .according-menu {
    margin-left: unset;
    margin-right: auto;
}
header .header-nav .header-nav-left .category-dropdown .category-list li a i {
    margin-left: auto;
}
[dir="rtl"] header .header-nav .header-nav-left .category-dropdown .category-list li a i {
    margin-left: unset;
    margin-right: auto;
}
@media (max-width: 767px) {
    header .header-nav .header-nav-left .category-dropdown .category-list li a i {
        display: none;
    }
}
@media (max-width: 1024px) {
    header .header-nav .header-nav-left .dropdown-category {
        font-size: 12px;
    }
}
ul.fea-list li {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 0; 
    margin-left: 1.5em; 
    display: list-item;
}