:root {
    --color1: #305449;
    --color2: #D7B46A;
    --color3: #BCD8BD;
    --danger: #FF0408;
    --white: #ffffff;
    --black: #221E1F;
    --nature: #F8FAFC;
    --nature2: #F1F5F9;
    --gray: #707070;
    --line: #DADADA;
    --Light: IRANSansXLight;
    --Regular: Regular;
    --MediumTitle: MediumTitle;
    --Medium: IRANSansXMedium;
    --heading_h1_fontsize: clamp(22px, 3vw, 32px);
    /*--vh: 9.96px;*/
}
/** Main **/
html,
html *,
::before,
::after {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: var(--color1);
}
::selection {
    color: #fff;
    background: var(--color1);
}
.h-100 {
    height: 100%;
}
strong {
    font-family: var(--Medium) !important;
}
body {
    direction: rtl;
    text-align: right;
    font-family: var(--Regular), Arial !important;
    font-size: 14px;
    color: var(--black);
    line-height: 1.5;
}
@media only screen and (max-width: 768px) {
    footer {
        padding-bottom: 92px !important;
    }
}
@media only screen and (min-width: 768px) {
    .text-center {
        text-align: center !important;
    }
    .text-end {
        text-align: left !important;
    }
    .text-start {
        text-align: right !important;
    }
}
.position-relative {
    position: relative;
}
.s-space {
    margin-block: 88px;
}
.s-space:nth-child(1) {
    margin-top: 0;
}
.s-space:nth-last-child(1) {
    margin-bottom: 0;
}
.s-padding {
    background-color: var(--nature2);
    padding-block: clamp(48px, 5vw, 72px);
}
.s-title {
    font-size: clamp(24px, 3vw, 32px);
    font-family: var(--MediumTitle);
    position: relative;
    color: var(--color1);
}
.s-desc {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--gray);
    line-height: 30px;
    font-family: var(--Regular);
    padding-inline: 20px;
}
.s-intro .row {
    padding: clamp(36px, 6vw, 80px) 8px;
    background: linear-gradient(180deg, #F1F5F9, rgb(241 245 249 / 94%));
    border-radius: 32px;
    position: relative;
    margin-inline: auto;
    &:before {
        content: "";
        background-image: url(../img/pattern.png);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 32px;
    }
    & .title-box {
        margin-bottom: 0;
    }
    & .s-desc {
        padding: 0;
    }
    .read-more {
        margin-top: clamp(8px, 1vw, 12px);
    }
}
@media only screen and (min-width: 992px) {
    .s-intro .row {
        background: linear-gradient(90deg, #F1F5F9, rgb(241 245 249 / 94%));
        padding-inline: 0;
    }
}
p.not-found {
    text-align: center;
    padding: 1rem;
    background: var(--color1);
    border-radius: 0.5rem;
    color: #fff;
}
button {
    border: none;
    background: none;
}
.header-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.title-box {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: clamp(16px, 2vw, 20px);
    text-align: center;
}
.c-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: clamp(32px, 4vw, 48px);
    justify-content: center;
}
.btns {
    font-size: clamp(14px, 2vw, 16px);
    gap: clamp(8px, 1vw, 12px);
    display: flex;
    align-items: center;
    font-family: var(--Medium);
    position: relative;
    padding-inline: 14px 10px;
    border-radius: 100px;
    overflow: hidden;
    transition: 0.4s;
    min-height: 48px;
    min-width: 130px;
    justify-content: space-between;
    & span {
        position: relative;
        transition: 0.4s;
    }
    & i {
        width: 24px;
        height: 24px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: relative;
    }
    &:before {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        z-index: 0;
        transition: 0.4s;
        right: 0;
        top: 0;
    }
    &:hover:before {
        width: 100%;
    }
}
.btn1 {
    background: var(--color1) !important;
    color: var(--white);
    &:before {
        background: var(--color2);
    }
    i {
        background: linear-gradient(-90deg, #467466, transparent);
        transition: 0.4s;
    }
    &:hover {
        color: white;
        i {
            background: linear-gradient(-90deg, #EAD18C, transparent);
        }
    }
}
.btn2 {
    background: var(--color2);
    color: var(--white);
    i {
        background: linear-gradient(-90deg, #EAD18C, transparent);
        transition: 0.4s;
    }
    &:before {
        background: var(--color1);
    }
    &:hover {
        color: white;
        i {
            background: linear-gradient(-90deg, #467466, transparent);
        }
    }
}
.item-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    img {
        transition: 0.4s;
        border-radius: clamp(20px, 2vw, 24px);
    }
}
.inner-page #main {
    padding-top: clamp(24px, 2vw, 32px);
    min-height: 100vh;
}
@media only screen and (min-width: 768px) {
    .item-banner img {
        width: 100%;
    }
    .header-section {
        & .title-box {
            align-items: flex-start;
        }
        .c-btn {
            flex: 0 0 25%;
            justify-content: flex-end;
            margin: 0;
        }
    }
    .s-desc {
        padding-inline: 0;
    }
    .title-box:not(.s-intro .title-box) {
        max-width: clamp(310px, 30vw, 470px);
        margin-inline: auto;
    }
}
.item-banner:hover img {
    transform: translateY(-10px);
    /*filter: drop-shadow(0px 8px 8px #00000030);*/
}
.section-sale .swiper-button-next {
    right: calc(100% - 1.5rem);
}
.section-sale .swiper-button-prev {
    left: calc(100% - 1.5rem);
}
@media screen and (max-width: 768px) {
    .section-sale .swiper-button-next {
        right: calc(100% - 1rem);
    }
    .section-sale .swiper-button-prev {
        left: calc(100% - 1rem);
    }
}
/*.woocommerce.columns-4 {*/
/*    position: relative;*/
/*    padding-bottom: clamp(48px, 5vw, 70px);*/
/*}*/
/** Tab CSS **/
/* --------------------
    TAB CSS
-------------------- */
.tab-content {
    display: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}
.tab-content.active {
    display: block;
}
@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/** Products **/
.sale-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-inline: 16px;
    .title-box {
        margin: 0;
    }
}
@media only screen and (min-width: 768px) {
    .sale-wrap {
        margin-bottom: 32px;
        .title-box {
            width: max-content;
            align-items: flex-start;
            text-align: right;
        }
        .c-btn {
            margin: 0;
        }
    }
}
/** Config **/
.alert {
    position: relative;
    padding: .75rem 1.25rem;
    /*border: 1px solid transparent;*/
    border-radius: .25rem;
    margin-inline: auto;
}
.bg-primary {
    color: #007bff !important;
    width: 90%;
    font-size: 12px;
}
.bg-success {
    color: white !important;
    width: 90%;
    font-size: 12px;
}
.bg-danger {
    color: var(--danger) !important;
    font-size: 12px;
}
.clearfix:after {
    content: '';
    clear: both;
    display: block;
}
.container-full {
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.container-full > .row {
    margin: 0;
}
.sidebar {
    position: sticky;
    top: 20px;
}
.w-100 {
    width: 100%;
}
.row {
    margin-right: -10px;
    margin-left: -10px;
}
.row > [class*="col-"],
.row > [class*="col"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
#wrapper .no-gutters {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
#wrapper .no-gutters > .col,
#wrapper .no-gutters > [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.text-center {
    text-align: center !important;
}
h1, h2, h3, h4, h5, h6, b, strong {
    font-family: var(--Medium), Arial;
}
input {
    font-family: var(--Regular), Arial;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
img {
    max-width: 100%;
    height: auto;
}
video {
    width: 100%;
    pointer-events: none;
}
a {
    transition: 0.3s;
    color: #222;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: var(--color1);
}
.form-control.ltr {
    direction: ltr;
    text-align: left;
}
.inner-pages .site-main {
    padding: 50px 0;
}
.section-title {
    color: #313131;
    font-family: var(--bold_font);
    font-size: 26px;
    line-height: normal;
    margin-bottom: 10px;
}
.section-desc {
    font-size: 16px;
    font-family: var(--main_font);
    color: #555555;
}
.swiper-pagination.pagination-style {
    position: relative !important;
    margin-bottom: 0;
    bottom: 1px !important;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.swiper-pagination.abs-pagination {
    position: absolute !important;
    margin: 0;
    bottom: 24px !important;
}
.pagination-style .swiper-pagination-bullet {
    width: 16px !important;
    height: 8px !important;
    border-radius: 13px;
    background: #2EB77E66;
    opacity: 1;
    transition: 0.4s ease;
    margin: 0 6px !important;
}
.swiper-pagination.abs-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
}
.pagination-style .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color1) !important;
    width: 38px !important;
    border-radius: 6px;
}
.pagination-style.v2 .swiper-pagination-bullet {
    background: #2D32B666;
}
.pagination-style.v2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #2D32B6 !important;
}
.pagination-style.v3 .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
}
.pagination-style.v3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff !important;
}
.swiper-pagination.abs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff !important;
}
.archive-content .editor-content .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color2) !important;
}
.white-content > .swiper-pagination-bullet:hover {
    background: var(--color2);
}
.pagination-style .swiper-pagination-bullet:hover {
    background: var(--color1);
}
.pagination-style.v2 .swiper-pagination-bullet:hover {
    background: var(--color2);
}
.second-color.swiper-pagination .swiper-pagination-bullet {
    background: #44D1C933;
}
.second-color.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.second-color.swiper-pagination .swiper-pagination-bullet:hover {
    background: var(--color2);
}
/*.archive-content,*/
/*.archive-faq,*/
/*.archive-related {*/
/*    margin: 60px 0;*/
/*}*/
.swiper-button-lock {
    display: none !important;
}
/* --------------------
   GENERAL SETTING
-------------------- */
.page-title {
    margin-bottom: 20px;
}
.page-title .title-heading {
    color: #313233;
    font-size: 24px;
    font-family: var(--main_font);
    line-height: 45px;
    margin-bottom: 10px;
}
.page-title .desc p {
    font-size: 14px;
    line-height: 32px;
    color: #555555;
}
.part-title {
    margin-bottom: 20px;
}
.part-title .title-heading {
    font-size: 22px;
    color: #313233;
    line-height: 45px;
}
.part-title.light-title .title-heading {
    color: #fff;
}
.title-part.inner-title h1 {
    font-size: var(--heading_h1_fontsize);
}
.title-part.inner-title {
    margin-bottom: 20px;
}
.title-site h1 {
    font-size: var(--heading_h1_fontsize);
}
.title-site h4,
.title-site h2 {
    font-size: calc(var(--heading_h1_fontsize) - 2px);
}
.title-site-center {
    text-align: center
}
.title-site-center p.desc {
    text-align: center;
}
.title-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* --------------------
    Animation Pulse
-------------------- */
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(250, 190, 88, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
        box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(250, 190, 88, 0);
        box-shadow: 0 0 0 0 rgba(250, 190, 88, 0)
    }
}
/* --------------------quantity-------------------- */
.quantity.hidden {
    display: none !important;
}
.quantity {
    width: 89px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 8px;
    button {
        font-size: 12px;
        width: 24px;
        height: 24px;
        border-radius: 8px;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        padding: 0;
        &:hover {
            color: var(--color1);
        }
    }
    input {
        -webkit-appearance: none;
        border: none !important;
        text-align: center !important;
        -moz-appearance: textfield;
        width: 36px !important;
        margin: 0 !important;
        height: auto !important;
        font-size: 20px;
        background: none;
        line-height: 37px;
        padding: 0 !important;
        margin: 0 !important;
        font-family: inherit;
        background: transparent !important;
        color: var(--black);
        padding-top: 4px !important;
    }
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* --------------------
    Alerts
-------------------- */
#wrapper .cart-empty.woocommerce-info, .wpcf7-response-output.wpcf7-validation-errors, .woocommerce-error, .comment-awaiting-moderation.waiting_pm, .stock.out-of-stock {
    background: var(--danger);
    border-radius: 8px;
    color: white;
    padding: 12px !important;
    text-align: center;
    font-size: 13px;
    display: block;
    font-style: inherit;
    position: relative;
    width: 100%;
    margin-inline: auto;
    margin-top: 12px;
    & * {
        color: white;
    }
}
.archive .woocommerce-error {
    right: 0;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.woocommerce-error li a {
    color: var(--color1);
}
.woocommerce-message, .woocommerce-success, .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    text-align: center;
    margin: 0 auto 15px;
    font-size: 14px;
    background: var(--nature2);
    padding: 12px clamp(16px, 2vw, 24px);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--gray3);
    /* max-width: fit-content; */
}
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    background: green;
    color: white;
}
.woocommerce-info:not(.woocommerce-message) a:hover {
    color: var(--color1);
}
.woocommerce-info:not(.woocommerce-message) {
    margin-bottom: 10px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--color1);
    color: var(--color1);
}
/** More Description **/
.main-content-modular {
    border-radius: clamp(24px, 2vw, 32px);
    padding: clamp(16px, 2vw, 32px) clamp(16px, 3vw, 42px);
    position: relative;
    border: 1px solid #DADADA;
}
#more-tax-desc p:nth-last-child(1) {
    margin: 0;
}
#more-tax-desc > h1,
#more-tax-desc > h2,
#more-tax-desc > h3,
#more-tax-desc > h4,
#more-tax-desc > h5,
#more-tax-desc > h6 {
    margin: 0;
    margin-bottom: clamp(12px, 1vw, 16px);
    font-family: var(--Medium);
}
/** Page Numbers **/
ul.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: clamp(24px, 2vw, 32px);
    gap: clamp(8px, 2vw, 12px);
}
.page-numbers .page-numbers {
    width: clamp(32px, 3vw, 48px);
    height: clamp(32px, 3vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nature2);
    color: var(--black);
    border-radius: 50%;
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1;
    transition: 0.4s;
    padding-top: 4px;
    &:hover,
    &.current {
        background: var(--color1);
        color: white;
    }
}
.prev.page-numbers,
.next.page-numbers {
    background: unset;
    font-size: 14px;
    padding: 0;
}
@media only screen and (max-width: 768px) {
    ul.page-numbers {
        margin-bottom: 32px;
    }
}
/** Archive Posts **/
.archive--blog {
    margin-top: clamp(24px, 2vw, 32px);
}
.grid-blog {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}
.wrap-ft-menu.widget-side {
    width: 100%;
    position: relative;
    margin-bottom: 16px;
    .accordion-title {
        width: 100%;
        display: flex;
        align-items: center;
        border-radius: 16px;
        padding: 16px;
        background: var(--nature);
        font-size: 16px;
        gap: 8px;
        line-height: 24px;
        cursor: pointer;
        transition: 0.4s ease;
        .icon-plus {
            width: clamp(20px, 2vw, 24px);
            height: clamp(20px, 2vw, 24px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            margin-right: auto;
            padding-top: 3px;
        }
        &.active .icon-plus:before {
            content: "\e908";
            transition: 0.4s ease;
        }
    }
    .accordion-container {
        padding: 16px;
        background: var(--nature);
        font-size: 16px;
        border-radius: 16px;
        margin-top: 16px;
        .cat-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        & > li:not(:nth-last-child(1)) {
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--nature2);
            .children {
                padding-top: 16px;
                margin: 0 !important;
                & .cat-item.current-cat a {
                    color: var(--color2);
                }
                & .cat-item > a {
                    display: block;
                    transition: 0.4s ease;
                    color: var(--gray);
                    font-size: 16px;
                    margin-bottom: 16px;
                    line-height: 24px;
                }
                & .cat-item:nth-last-child(1) a {
                    margin-bottom: 0;
                }
            }
        }
    }
    a:hover {
        color: var(--color1) !important;
    }
}
.caticon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    width: 20px;
    height: 20px;
    font-size: 12px;
    padding-top: 3px;
    color: var(--color1);
}
.caticon:before {
    content: "\e919";
    font-family: icomoon;
    display: inline-block;
    z-index: 0;
    transition: 0.4s ease;
}
.caticon.active {
    transform: rotateX(180deg);
}
.banner-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: clamp(24px, 3vw, 32px);
    overflow: hidden;
    margin-block: 16px;
    img {
        transition: 0.4s;
        width: 100%;
        height: auto;
        border-radius: clamp(24px, 3vw, 32px);
    }
    &:hover img {
        transform: scale(1.05);
    }
}
.widget_categories h4:before {
    content: "\e910";
    font-family: 'icomoon';
    color: var(--color1);
    font-size: clamp(18px, 2vw, 22px);
}
@media only screen and (min-width: 768px) {
    .grid-blog {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 1200px) {
    .grid-blog {
        grid-template-columns: repeat(3, 1fr);
    }
}
.post-categories {
    margin-block: -196px clamp(48px, 5vw, 74px);
}
.category-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: clamp(16px, 2vw, 20px);
    padding: 10px;
    background-color: var(--blackcart);
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    transition: 0.4s;
    & span {
        font-size: clamp(14px, 2vw, 16px);
        font-family: var(--Medium);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        line-height: 30px;
        & i {
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 0;
            font-size: 0;
            transition: 0.4s;
        }
    }
    & img {
        border-radius: 14px;
        width: 100%;
    }
    &:hover {
        color: var(--color2);
    }
    &:hover span i {
        width: 18px;
        font-size: 9px;
    }
}
.single-content,
.modular-content {
    border: 1px solid var(--gray4);
    padding-block: clamp(16px, 2vw, 28px);
    border-radius: 2rem;
    padding-inline: clamp(16px, 2vw, 24px);
}
/** Archive Brand **/
.archive--brands {
    margin-top: clamp(16px, 2vw, 32px);
}
.wrapper--brands {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(26px, 2vw, 28px);
    .brand-card {
        display: flex;
        align-items: center;
        justify-content: center;
        .brand-items {
            display: flex;
            flex-direction: column;
            width: 100%;
            align-items: center;
            text-align: center;
            border-radius: 32px;
            background: var(--nature2);
            gap: 10px;
            padding: clamp(24px, 2vw, 32px) 16px;
            border-bottom: 5px solid var(--nature2);
            transition: 0.4s;
            height: 100%;
            .brand-thumb {
                background: white;
                border-radius: 50%;
                width: clamp(144px, 13vw, 200px);
                height: clamp(144px, 13vw, 200px);
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 16px;
                overflow: hidden;
                img {
                    width: 100%;
                }
            }
            .brand-title {
                font-size: clamp(16px, 2vw, 18px);
                font-family: var(--Medium);
                line-height: 28px;
            }
            .brand-title-en {
                font-size: clamp(16px, 2vw, 18px);
                font-family: var(--Medium);
                line-height: 28px;
                color: var(--gray);
            }
            &:hover {
                border-color: var(--color1);
            }
        }
    }
}
.search-brand {
    width: clamp(280px, 29vw, 470px);
    margin: clamp(24px, 2vw, 32px) auto 0;
    position: relative;
    input {
        width: 100%;
        height: 48px;
        border-radius: 16px;
        border: 1px solid #DADADA80;
        padding: 4px 12px;
        color: var(--black);
        font-size: clamp(14px, 2vw, 16px);
        &::placeholder {
            color: var(--gray);
            font-size: clamp(14px, 2vw, 16px);
        }
    }
    button.search {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        color: #305449;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    button.btn-clear-search {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #820808;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: 0.4s;
        &:hover {
            color: var(--danger);
        }
    }
}
.page-template-template-brand .search-brand i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #305449;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
#brandsWrapper p {
    text-align: center;
}
@media only screen and (min-width: 768px) {
    .wrapper--brands {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (min-width: 1024px) {
    .wrapper--brands {
        grid-template-columns: repeat(4, 1fr);
    }
}
/** Archive Product **/
/* CSS For ALLwidget & sidebar  */
.product-archive-category {
    margin-bottom: 16px;
    .sw--category--shop {
        padding-inline: 1px;
    }
    & .tab-title {
        padding: 8px clamp(14px, 2vw, 24px);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: clamp(80px, 6vw, 90px);
        border-radius: 20px;
        font-size: clamp(14px, 2vw, 16px);
        font-family: var(--Medium);
        border: 1px solid #DADADA;
        background: white;
        &:hover {
            background: var(--nature2);
            color: var(--color1);
        }
    }
    & .cat-icon {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        position: relative;
        i {
            position: relative;
        }
        img {
            position: relative;
            width: 30px;
            height: auto;
        }
        &:before {
            content: "";
            width: 24px;
            height: 24px;
            position: absolute;
            border-radius: 50%;
            z-index: 0;
            right: 8px;
            bottom: 12px;
            background: var(--color3);
        }
    }
}
.orderby-form {
    background: var(--nature2);
    margin-block: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    & .woocommerce-ordering {
        display: flex;
        align-items: center;
        gap: 20px;
        & .orderby-list {
            display: flex;
            gap: 12px;
            & button {
                font-size: 14px;
                font-family: var(--Medium);
                color: var(--black);
                background: transparent;
                transition: 0.4s;
                padding: 8px;
                border-radius: 30px;
                line-height: 21px;
                &.selected,
                &:hover {
                    color: var(--color1);
                    background: white;
                }
            }
        }
    }
    & .woocommerce-ordering__title {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #272829;
        font-size: 16px;
        font-family: var(--Medium);
        & i {
            font-size: 24px;
            color: var(--color1);
        }
    }
    & .product-count {
        font-size: 14px;
        font-family: var(--Medium);
        color: var(--gray);
        display: flex;
        align-items: center;
        gap: 4px;
    }
}
.sidebar-shop {
    border: 1px solid #DADADA;
    padding: 16px;
    border-radius: 20px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-bottom: 32px;
    & .widget-title {
        font-family: var(--Medium);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 16px;
        padding: 16px;
        background: var(--nature2);
        font-size: 16px;
        gap: 8px;
        line-height: 24px;
        cursor: pointer;
        transition: 0.4s ease;
    }
    ul {
        padding: 16px;
        background: var(--nature);
        border-radius: 24px;
        margin-top: 8px;
        font-size: 14px;
        li:not(:nth-last-child(1)) {
            padding-bottom: 16px;
        }
        a {
            color: var(--gray);
            transition: 0.4s ease;
            display: flex;
            align-items: center;
            &:hover {
                color: var(--color1);
            }
        }
    }
    &.open {
        max-height: max-content;
        padding-block: 24px;
        border-width: 1px;
    }
    .woocommerce-widget-layered-nav a:before {
        content: ' ';
        width: 20px !important;
        height: 20px !important;
        background: #aaa0 !important;
        margin: 1px 0 0 8px !important;
        border: 1px solid var(--line) !important;
        display: inline-block;
        border-radius: 5px;
        transition: 0.4s ease;
    }
    li.woocommerce-widget-layered-nav-list__item a:hover:before,
    li.woocommerce-widget-layered-nav-list__item.chosen a:before {
        border-color: var(--color1) !important;
        background: var(--color1) !important;
        transition: 0.4s ease;
    }
    li.woocommerce-widget-layered-nav-list__item a:hover:after,
    li.woocommerce-widget-layered-nav-list__item.chosen a:after {
        opacity: 1 !important;
        visibility: visible !important;
        transition: 0.4s ease;
    }
    .widget_layered_nav_filters .chosen a:before {
        content: ' ';
        width: 20px !important;
        height: 20px !important;
        background: var(--color1) !important;
        margin: 1px 0 0 8px !important;
        border: 1px solid var(--color1) !important;
        display: inline-block;
        border-radius: 5px;
        color: var(--color1) !important;
        content: "\e935";
        font-family: 'icomoon';
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        transition: 0.4s;
    }
}
.title-side {
    background: var(--gray2);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(14px, 2vw, 16px);
    font-family: var(--Medium);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
    &:before {
        content: "\e907";
        font-family: icomoon;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 16px;
        font-size: 10px;
        transition: 0.4s;
    }
    &.open:before {
        transform: rotate(180deg);
    }
}
.sidebar-shop > div:not(:nth-last-child(1)) {
    margin-bottom: 24px;
}
.filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--Medium);
    font-size: 0.875rem;
    & .switch {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 30px;
        & input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        & .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #E1E4E8;
            border-radius: 24px;
            transition: .4s;
            &:before {
                position: absolute;
                content: "";
                height: 24px;
                width: 24px;
                right: 4px;
                bottom: 3px;
                background-color: #707070;
                border-radius: 50%;
                transition: .4s;
            }
        }
    }
    & input:checked + .slider {
        background-color: var(--color1);
    }
    & input:checked + .slider:before {
        transform: translateX(-28px);
        background-color: white;
    }
}
@media only screen and (max-width: 768px) {
    .sidebar-shop {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease;
        padding: 20px;
        overflow-y: auto;
        max-height: none !important;
        z-index: 9999;
        border-radius: 16px 0 0 16px;
    }
    .sidebar-shop.show-canvas {
        right: 0;
    }
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 9998;
    }
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
@media only screen and (max-width: 768px) {
    .orderby-form {
        max-width: 160px;
        font-size: 12px !important;
        position: relative;
        margin: 0;
        margin-right: auto;
        height: 65px;
    }
    .woocommerce-ordering .orderby-list {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: 0.4s ease;
        background: var(--nature2);
        width: 100%;
        top: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        z-index: 2;
        padding: 10px 20px;
        max-height: 290px;
        overflow: auto;
        margin: 0 0 0 -1px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        left: 0;
        border-radius: 12px;
    }
    .orderby-form:hover .orderby-list {
        visibility: visible;
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    .woocommerce-ordering .orderby-list button {
        all: unset;
        cursor: pointer;
        text-align: right;
        transition: 0.4s;
        padding: 0 !important;
        background: none !important;
    }
    .woocommerce-ordering .orderby-list button:hover {
        color: var(--color1);
    }
    #sidebar-0 .title-side {
        background: var(--nature2);
        padding: 16px;
        border-radius: 12px;
        font-size: 16px;
        font-family: var(--Medium);
        cursor: pointer;
        user-select: none;
        display: flex;
        align-items: center;
        position: relative;
        width: 144px;
        height: 65px;
        margin: 0;
        justify-content: center;
        &:before {
            content: none;
        }
    }
    .row-filter-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 24px;
    }
}
/*.widget-side li a {
    color: var(--black);
    font-size: 16px;
    transition: 0.4s;
    display: flex;
    font-family: var(--Regular);
    line-height: 26px;
    transition: 0.4s ease;
    &:hover {
        color: var(--color1) !important;
    }
}*/
.widget_categories .widget-title {
    transition: .4s;
    font-size: 16px;
    line-height: normal;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px 0;
}
.widget-side .children li {
    border: 0;
}
.post-categories .cat-item:not(.children .cat-item) {
    padding-block: 18px;
}
.post-categories .children .cat-item {
    padding: 14px;
}
.post-categories .children .cat-item .children li {
    padding: 14px 0 0;
}
@media (min-width: 62em) {
    .post-categories .widget_categories > ul {
        display: flex !important;
        align-items: center !important;
        align-items: stretch;
        gap: 2rem;
    }
    .widget_categories .widget-title {
        margin-left: 1.5rem;
    }
    .post-categories .widget-side.widget_categories {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    .post-categories .widget_categories .widget-title .caticon {
        display: none;
    }
    .post-categories .widget-side > ul > .cat-item > ul.children {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: 0.4s ease;
        background: var(--gray2);
        width: 300px;
        top: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        z-index: 500;
        padding: 0px;
        max-height: 290px;
        overflow: auto;
        margin: 0 0 0 -1px;
        display: block !important;
    }
    .post-categories .widget-side > ul > .cat-item:hover > ul.children {
        visibility: visible;
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}
.woocommerce-widget-layered-nav-list,
.widget-side:not(.woocommerce-widget-layered-nav) ul {
    display: none;
}
@media only screen and (min-width: 992px) {
    .post-categories h3:before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 20px;
        width: 1px;
        background: var(--gray4);
        left: -24px;
    }
    .subcategories-list {
        transition: 0.4s;
        display: none !important;
        position: absolute;
        background: white;
        min-width: 10rem;
        right: 50%;
        transform: translateX(50%);
        top: 100%;
        padding: 10px 14px;
        z-index: 1;
        box-shadow: 0px 0px 7px 0px #cecece73;
    }
    .has-subcategories:hover .subcategories-list {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
    }
    .has-subcategories:after {
        content: "\e900";
        font-family: 'icomoon';
        position: absolute;
        left: 0;
        top: 56%;
        transform: translateY(-50%);
        font-size: 10px;
        width: 12px;
        height: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sidebar-header {
        position: relative;
        padding-left: 1.5rem;
    }
    .sidebar-header:before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 20px;
        width: 1px;
        background: var(--gray4);
        left: 0px;
    }
}
@media only screen and (max-width: 768px) {
    .categories-wrapper {
        align-items: start;
        background: none;
        flex-direction: column;
        min-width: 12rem;
        gap: 1.5rem;
    }
    .categories-menu {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .categories-wrapper h3 {
        width: 100%;
    }
    .categories-wrapper .accordion-title:before {
        content: "\e91b";
        font-family: 'icomoon';
        position: absolute;
        left: 8px;
        width: 20px;
        height: 20px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        transform: translateY(-50%);
    }
    .category-item.has-subcategories.wrap-ft-menu .accordion-title:before {
        top: 60%;
    }
    .category-item.has-subcategories {
        width: 100%;
    }
    .post-categories {
        padding: 40px 16px;
    }
    .badge {
        top: 12px;
    }
}
/************ **/
li.woocommerce-widget-layered-nav-list__item.chosen a:hover:before,
.widget_layered_nav_filters .chosen a:hover:before {
    content: "\e91e";
    padding: 2px 0px 0px 2px;
}
/** Section Intro **/
.section-intro {
    min-height: 480px;
    position: relative;
    padding-top: 36px;
}
.img-intro {
    position: absolute;
    top: 0;
    right: 1rem;
    width: calc(100% - 2rem);
    height: 100%;
}
.img-intro.active:before {
    content: none;
}
.img-intro.active {
    z-index: 1;
}
.img-intro video,
.img-intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 2rem 2rem;
}
.img-intro:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(180deg, white, transparent);
}
.section-intro .desc {
    margin-top: 1.5rem;
}
.intro-video-btn {
    background: #DCCDC9;
    width: clamp(32px, 4vw, 52px);
    height: clamp(32px, 4vw, 52px);
    font-size: clamp(32px, 4vw, 52px);
    position: absolute;
    bottom: 130px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color2);
    cursor: pointer;
}
@media only screen and (max-width: 768px) {
    .section-intro {
        padding-top: 0;
    }
    .img-intro {
        right: .5rem;
        width: calc(100% - 1rem);
        border-radius: 1.5rem;
    }
    .img-intro img {
        border-radius: 1.5rem;
    }
    .intro-content {
        padding-inline: 8px;
    }
}
/* route-bar */
.route-bar {
    position: relative;
    margin: 0 0 30px 0;
    user-select: none;
    &:before {
        content: "";
        position: absolute;
        top: 30px;
        display: inline-block;
        width: 100%;
        height: 1px;
        background-color: var(--nature2);
    }
    .step-box {
        .wrapper {
            text-align: center;
        }
        .title a:hover {
            color: var(--color1);
        }
        .title,
        .title a {
            margin: 0;
            color: #363636;
        }
        .icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border: 1px solid var(--color1);
            border-radius: 50%;
            margin: 0 auto 5px auto;
            background: #fff;
        }
        .icon-svg {
            display: inline-block;
            width: 28px;
            height: 28px;
            margin: 0;
            border-radius: 0 !important;
        }
    }
}
.woocommerce-cart .route-bar .first-step .icon,
.woocommerce-checkout .route-bar .first-step .icon,
.woocommerce-checkout .route-bar .second-step .icon,
.woocommerce-order-pay .route-bar .first-step .icon,
.woocommerce-order-pay .route-bar .second-step .icon,
.woocommerce-order-pay .route-bar .third-step .icon,
.woocommerce-order-received .route-bar .first-step .icon,
.woocommerce-order-received .route-bar .second-step .icon,
.woocommerce-order-received .route-bar .third-step .icon,
.woocommerce-order-received .route-bar .fourth-step .icon {
    background-color: var(--color1);
    border-color: var(--color1);
}
.woocommerce-cart .route-bar .first-step .icon-svg,
.woocommerce-checkout .route-bar .first-step .icon-svg,
.woocommerce-checkout .route-bar .second-step .icon-svg,
.woocommerce-order-pay .route-bar .first-step .icon-svg,
.woocommerce-order-pay .route-bar .second-step .icon-svg,
.woocommerce-order-pay .route-bar .third-step .icon-svg,
.woocommerce-order-received .route-bar .first-step .icon-svg,
.woocommerce-order-received .route-bar .second-step .icon-svg,
.woocommerce-order-received .route-bar .third-step .icon-svg,
.woocommerce-order-received .route-bar .fourth-step .icon-svg {
    filter: brightness(0) invert(1);
}
.product-list-table {
    width: 100%;
}
.inner-intro.general-intro {
    padding-bottom: 40px;
    margin-bottom: 40px;
}
input#min_price, input#max_price {
    border: 1px solid #E3E3E3;
    background: transparent;
    min-height: 35px;
    padding: 0 12px;
    color: #121212;
    width: 100%;
    margin-bottom: 14px;
}
.price_slider_wrapper {
    position: relative;
    margin: 1.25rem 0 1rem;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    position: relative;
    height: 3px;
    margin: 18px 18px 65px 5px;
    background: #F1F5F9;
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    background: var(--color1)
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    border-radius: 1em
}
.price_slider_wrapper .ui-slider .ui-slider-handle {
    z-index: 2;
    width: 25px;
    height: 25px;
    cursor: ew-resize;
    outline: 0;
    top: -12px;
    margin-left: -5px;
    background: var(--color1);
    border-radius: 100%;
    position: absolute;
    transition: all 0.3s;
    left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center
}
.price_slider_amount {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 14px
}
.price_slider-text {
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    overflow-wrap: normal !important;
    padding: 0;
    position: absolute !important;
    width: 1px;
}
.price_slider_wrapper button {
    height: 40px;
    margin: 0;
    background: var(--color1);
    color: #fff;
    border: 1px solid var(--color1) !important;
    border-radius: 12px !important;
    font-family: var(--Regular);
}
.price_label {
    position: absolute;
    top: 22px;
    font-size: 12px;
    display: flex;
    gap: 8px;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.widget_layered_nav_filters .chosen a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.4s;
}
.widget_layered_nav_filters .widget-title {
    min-width: 7rem;
}
.must-log-in {
    background: #EFF7FA;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 4rem !important;
    text-align: center !important;
}
.must-log-in a {
    background: var(--color2);
    border-radius: 5px;
    margin-inline: 4px;
    padding-inline: 4px;
    color: white;
}
.no-sale-products {
    background: var(--color2);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}
.selected_products {
    margin-block: clamp(24px, 2vw, 32px) 32px;
    & .s-title {
        font-size: clamp(20px, 2vw, 28px);
    }
}
/** Section Download **/
/* AJAX SEARCH IN PERFUMER ARCHIVE */
.search-brand {
    position: relative;
}
.search-brand .input-group {
    position: relative;
    display: flex;
    align-items: center;
}
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 8px;
    margin-top: 5px;
}
.search-result-item {
    display: flex;
    align-items: center;
    padding: 16px 14px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}
.search-result-item .woocommerce-placeholder {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-left: 15px;
    flex-shrink: 0;
}
.search-result-item:hover {
    background-color: #f9f9f9;
}
.search-result-item:last-child {
    border-bottom: none;
}
.search-result-thumb-wrapper {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    object-fit: cover;
    margin-left: 12px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}
.search-result-info {
    display: flex;
    flex-direction: column;
}
.search-result-title {
    font-size: 14px;
    font-family: var(--Medium);
    line-height: 28px;
}
small.search-result-en {
    font-size: 12px;
    font-family: var(--Medium);
    line-height: 28px;
    color: var(--gray);
    line-height: 1;
}
.search-no-results {
    padding: 24px 12px;
    text-align: center;
    color: var(--danger);
    font-size: 14px;
}
/* AJAX SEARCH IN PERFUMER ARCHIVE */
.skeleton-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    height: 350px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.skeleton-image {
    height: 200px;
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 4px;
}
.skeleton-title {
    height: 15px;
    width: 80%;
    background-color: #e0e0e0;
    border-radius: 4px;
}
.skeleton-tag {
    height: 15px;
    width: 15%;
    background-color: #e0e0e0;
    border-radius: 4px;
}
.skeleton-text {
    height: 15px;
    width: 60%;
    background-color: #e0e0e0;
    border-radius: 4px;
}
.skeleton-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.skeleton-circle {
    height: 45px;
    width: 45px;
    background-color: #e0e0e0;
    border-radius: 25px;
}
.skeleton-image,
.skeleton-title,
.skeleton-text,
.skeleton-bottom {
    position: relative;
    overflow: hidden;
}
.skeleton-image::after,
.skeleton-title::after,
.skeleton-bottom::after,
.skeleton-text::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0));
    animation: shimmer 2s infinite;
}
@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}
.mejs-container, .mejs-container .mejs-controls, .mejs-embed, .mejs-embed body {
    background: var(--color1) !important;
    min-height: 64px !important;
    border-radius: 100px !important;
    display: flex;
    align-items: center;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
    background: #fff;
    border-radius: 100px !important;
}
.mejs-controls .mejs-time-rail .mejs-time-loaded,
.mejs-controls .mejs-time-rail .mejs-time-current,
.mejs-controls .mejs-time-rail .mejs-time-total,
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
    border-radius: 100px !important;
    overflow: hidden;
}
.mejs-controls .mejs-time-rail .mejs-time-current {
    background: var(--color2) !important;
}
.podcast-sidebar {
    position: relative;
    border-radius: clamp(24px, 3vw, 32px);
    overflow: hidden;
    &:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(52, 54, 52, 0) 22.6%, #0B0B0B 100%);
    }
    .banner-body {
        position: absolute;
        bottom: clamp(16px, 2vw, 32px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        padding-inline: 12px;
        right: 50%;
        transform: translateX(50%);
        width: 100%;
    }
    p {
        font-size: clamp(18px, 2vw, 22px);
        font-family: var(--Medium);
        margin-bottom: 8px;
    }
    span:not(.btns span) {
        margin-bottom: clamp(24px, 2vw, 32px);
        font-size: clamp(12px, 2vw, 14px);
    }
}



