.modal_wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000055;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: all 0.5s ease;
}

.modal_wrapper.active {
    opacity: 1;
    pointer-events: all
}

.modal_content {
    max-width: 450px;
    flex-grow: 1;
    background: #fff;
    position: relative;
    padding: 30px 50px;
    box-shadow: 0 0 10px #00000050;
    border-radius: 10px;
    margin: 15px;
    transition: all 0.5s ease;
    transform: scale(0.5);
    width: calc(100% - 30px);
}

.active .modal_content {
    transform: scale(1);
}

button.close_modal_btn {
    position: absolute;
    top: 17px;
    left: 20px;
    background: transparent;
    padding: 0;
    width: 25px;
    line-height: 25px;
}

/*
* loading style
*/
.loading_container {
    width: 400px;
    text-align: center;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 180px;
    font-weight: 500;
}

#loading_modal, #upload_progress {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 200;
    background: #1c1c1c91;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all ease 0.3s;
    padding: 20px;
}

#loading_modal.active, #upload_progress.active {
    opacity: 1;
    pointer-events: all;
}

.active .loading_container {
    transform: scale(1);
}

.sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
    filter: drop-shadow(0 0 6px #00000033);
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: var(--color-alt-content-primary);
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {
    80%, 100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }

    100%, 0% {
        transform: scale(1.0);
    }
}

.loading_container p {
    margin-bottom: 25px;
    font-weight: 700;
}

div#upload_progress .progress_bar {
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 5px;
}

#upload_progress .progress {
    width: 100%;
    position: relative;
}

#upload_progress .progress_value {
    font-family: fantasy;
    line-height: 1.5;
    margin-bottom: 8px;
}

div#upload_progress p {
    margin-bottom: 10px;
}

#upload_progress .progress_elapsed {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    border-radius: 5px;
    background: var(--color-alt-content-primary);
}

/*
 * toast styles
 */
.toastify {
    padding: 12px 20px;
    color: #fff;
    display: inline-block;
    box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .12), 0 10px 36px -4px rgba(77, 96, 232, .3);
    background: var(--color-content-primary-grad);
    position: fixed;
    opacity: 0;
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    max-width: calc(70% - 20px);
    z-index: 2147483647
}

.toastify.on {
    opacity: 1
}

.toast-close {
    background: 0 0;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    opacity: .4;
    padding: 0 5px
}

.toastify-right {
    right: 15px
}

.toastify-left {
    left: 15px
}

.toastify-top {
    top: -150px
}

.toastify-bottom {
    bottom: -150px
}

.toastify-rounded {
    border-radius: 25px
}

.toastify-avatar {
    width: 1.5em;
    height: 1.5em;
    margin: -7px 5px;
    border-radius: 2px
}

.toastify-center {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    width: fit-content;
    width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
    .toastify-left, .toastify-right {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        width: fit-content;
        width: -moz-fit-content;
    }

    body {
        background: #fff !important;
    }
}

/*
* otp styles
 */
.otp_title {
    font-size: 15px;
    text-align: center;
    font-weight: 700;
}

div#otp_input_form {
    display: flex;
    flex-direction: row-reverse;
    gap: 11px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

div#otp_input_form input.otp_input {
    padding: 0;
    line-height: 45px;
    width: 45px;
    direction: ltr;
    text-align: center;
    border: none;
    border-bottom: 2px solid var(--color-content-primary);
    border-radius: 5px 5px 0 0;
}

div#otp_input_form input.otp_input.filled {
    border-bottom: 2px solid var(--color-content-primary);
    border-radius: 5px 5px 0 0;
}

.edit_number_for_otp {
    display: flex;
    align-items: center;
    padding: 7px 20px;
    gap: 10px;
    justify-content: center;
    max-width: 180px;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.025em;
    color: #6F6F6F;
    margin: 10px auto;
    background: #DEDEDE;
    border-radius: 10px;
    cursor: pointer;
}

.edit_number_for_otp i {
    font-size: 15px;
}

.otp_timer {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    margin-top: 10px;
}

.otp_timer.disabled {
    pointer-events: none;
}

.nooshika_btn {
    margin: auto;
    width: fit-content;
    width: -moz-fit-content;
    display: block;
    cursor: pointer;
}

.video_modal .video_container {
    overflow: hidden;
    padding: 0;
    max-width: 650px;
}

.active_phone_modal, .my_account_btn, .kasebi-cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    justify-content: center;
    max-width: 160px;
}

.icon_box.w-cart-link-icon {
    margin: 0;
    width: 20px;
    height: 20px
}

div.input_row input.modal_input {
    padding: 0;
    direction: ltr;
    text-align: center;
    border-radius: 5px 5px 0 0;
    border: none;
    border-bottom: 2px solid var(--color-content-primary);
    box-shadow: none;
}

.form_section {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.modal_content .input_row {
    position: relative;
    margin-bottom: 10px
}

.input_row > input {
    display: block
}

.see_pass {
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
}

a.modal_link {
    text-align: center;
    margin-top: 14px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.icon_box {
    width: 22px;
    height: 22px;
    margin-left: 7px;
    background: currentColor;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: var(--icon-url);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-image: var(--icon-url);
}

.icon_login.icon_box {
    margin: 0;
}

.callBtnContainer.wa {
    position: fixed;
    bottom: 2%;
    left: 3%;
    padding: 9px;
    border: solid var(--color-alt-content-primary);
    border-radius: 100%;
    opacity: 1;
    z-index: 110;
}

.wa .callBtn i {
    color: #fff;
    background-color: var(--color-alt-content-primary);
    width: 50px;
    height: 50px;
    text-align: center;
    padding-top: 10px;
    border-radius: 100%;
    font-size: 30px;
    position: relative
}

.submit_comment.w-btn.nooshika_btn.us-btn-style_1 {
    max-width: 260px;
    margin-right: auto;
    left: 0;
}

.comment_box {
    display: flex;
    gap: 13px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 14px;
}

input#comment_name {
    flex-grow: 1;
}

.submit_comment {
    min-width: 170px;
    cursor: pointer;
}

.cancel_reply.w-btn {
    border: none;
    white-space: nowrap;
    color: #fff;
    background: red;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}

.cancel_reply.w-btn:before {
    display: none;
}

.get_comment_cul_title {
    margin-bottom: 20px;
    color: #313131;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.64px;
    padding-right: 34px;
    position: relative;
}

.get_comment_cul_title:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: 0;
    background: url(../image/comment.png) no-repeat center;
}

.submit_comment.nooshika_btn {
    width: 100%;
    margin-top: 0;
}

.comment_header_row {
    color: #24180E;
    display: flex;
    font-size: 15px;
    font-weight: 700;
    line-height: 28px;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    letter-spacing: -0.6px;
}

.comment_header_dot {
    width: 4px;
    background: currentColor;
    border-radius: 5px;
    height: 4px;
}

.comment_header_line {
    flex-grow: 1;
    border-bottom: 1px solid #d2d2d2;
}

.comments_list_cul {
    margin-top: 70px;
}

.replay_to_form {
    margin-top: 20px;
    margin-bottom: 50px;
}

.replay_to_form:has(+.comments_children) {
    margin-bottom: 90px;
}

.comment_user_avatar img {
    display: block;
    border-radius: 100px;
}

.comment_content {
    margin-right: 52px;
    color: rgba(18, 18, 18, 0.63);
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    line-height: 28px;
    letter-spacing: -0.75px;
}

.comment_date {
    opacity: 0.3;
    font-size: 15px;
    font-weight: 300;
}

.reply_to_btn {
    font-size: 13px;
    padding: 0;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 5px;
    margin-right: auto;
    color: #BEA548;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -0.6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.replay_to_text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

span.cancel_reply {
    font-weight: 300;
    cursor: pointer;
}

.each_comment_row {
    margin-bottom: 20px;
}

.comment_container_box {
    padding: 20px 30px 25px;
    border-radius: 3px;
    background: #F8F5F2;
}

.comments_children {
    filter: drop-shadow(1px 1px 15px rgba(0, 0, 0, 0.15));
    padding: 20px;
    margin-top: -40px;
    background: #fff;
    margin-right: 50px;
}

.comments_children .comment_container_box {
    background: 0 0;
    padding: 0 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #1212121a
}

.comments_children .comment_container_box:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.comment_container_box:has(+.comments_children) {
    padding-bottom: 60px;
}

@media (max-width: 767px) {
    .comment_header_row {
        gap: 5px;
    }

    .icon_box.comment_replayed_icon {
        margin: 0;
    }

    .comment_container_box {
        padding: 20px;
    }

    .comment_content {
        margin-right: 6px;
    }

    .comments_children {
        margin-right: 20px;
        margin-left: 0;
        padding: 20px 30px;
    }

    .comment_box {
        flex-direction: column;
        align-items: flex-end;
    }
}

.off_percent {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.04em;
    display: flex;
    background: #ea1e1e;
    padding: 6px 7px;
    border-radius: 15px;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    height: 22px;
    line-height: 17px;
    margin-top: 3px;
}

.icon_box.off_percent_icon {
    width: 8px !important;
    height: 10px;
    margin: 0
}

.price_box_container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    justify-content: flex-end;
    min-height: 34px;
    position: relative;
}

.price_row {
    display: flex;
    line-height: 1.5;
    font-weight: 500;
    align-items: baseline;
    gap: 5px;
    justify-content: flex-end;
    letter-spacing: -.04em
}

.price_row .icon_box {
    width: 26px;
    height: 11px;
    margin: 0
}

.price_row.regular_price {
    opacity: .5;
    font-size: 0.8em;
    position: relative;
    line-height: 1.2;
    font-weight: 400;
    display: none
}

.on_sale .price_row.regular_price {
    display: flex
}

.price_row.regular_price .price_number:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 45%;
    background: currentColor
}

.price_row.regular_price .price_number {
    position: relative
}

.grid_atts_color {
    display: flex;
    padding: 4px 0;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
}

.each_product_grid_color {
    width: 14px;
    height: 14px;
    border-radius: 10px
}

.each_product_grid_color.has_white_color {
    border: 1px solid #888888;
}

.product_grid_color_palette {
    display: flex;
    margin-bottom: 25px;
    gap: 5px;
    justify-content: flex-end
}

.btn_spinner {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.btn_spinner > div {
    width: 12px;
    height: 12px;
    background-color: #ffffffab;
    border-radius: 100%;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.btn_spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.btn_spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.product_add_to_cart_wrapper {
    display: flex;
    align-items: center;
    margin-right: auto;
    padding: 14px 30px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.02em;
    justify-content: space-between;
    color: #000;
    background: var(--color-content-primary);
    cursor: pointer;
    border-radius: 10px;
    font-weight: 700;
    gap: 10px;
}

.product_add_to_cart_wrapper i {
    font-size: 13px;
    line-height: 10px;
    font-weight: 700;
}

.product_change_product_qty_block {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    gap: 5px;
    margin-right: auto;
    color: #383634;
}

.change_product_cart_qty {
    width: 40px;
    line-height: 51px;
    border-radius: 8px;
    background: #e4e3e1;
    text-align: center;
    height: 46px;
    cursor: pointer;
}

.current_cart_qty {
    flex-grow: 1;
    text-align: center;
    border-radius: 8px;
    line-height: 46px;
    border: 1px solid #e4e3e1;
    user-select: none;
    color: #454545;
    background: #fff;
    min-width: 40px;
}

.product_variation_select_wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
    flex-direction: column;
}

.product_variation_select_label {
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -.03em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.each_product_att_select {
    border: solid 2px #e4e3e1;
    line-height: 24px;
    padding: 0 11px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px
}

.each_product_att_select.disabled_att {
    opacity: .5;
    pointer-events: none;
    filter: blur(1px)
}

.each_product_att_select.selected_att {
    border: solid 2px var(--color-content-secondary);
    font-weight: 700
}

.product_variation_options_list {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 5px;
    margin-bottom: 10px
}

.mini-cart_content {
    font-family: nooshikaybakh, nooshikaybakhen, sans-serif;
}

.mini_cart_product_data_cul {
    flex-grow: 1;
}

.kasebi-cart-link span.w-cart-quantity {
    font-size: 0;
    width: 5px;
    height: 5px;
    min-width: 0;
    background: #EA1E1E !important;
    padding: 0;
    top: -3px;
    right: 0;
}

.mini-cart-modal {
    position: fixed;
    width: 100vw;
    left: 0;
    display: flex;
    flex-direction: row-reverse;
    background: #00000047;
    z-index: 250;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: all .5s ease;
}

.active.mini-cart-modal {
    opacity: 1;
    pointer-events: all;
}

.mini-cart-content {
    background: #fff;
    box-shadow: -4px 0 25px 0 #0000000d;
    transition: all .5s ease;
    display: flex;
    width: 100vw;
    max-width: 600px;
}

.kasebi-cart-link.empty span.w-cart-quantity {
    display: none;
}

.mini-cart_content {
    color: #232323;
}

.mini_cart_content_footer {
    margin-top: auto;
    padding: 35px 40px;
    box-shadow: 0 -10px 30px 0 #00000021;
    background: #fff;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: 600px;
}

.widget.woocommerce.widget_shopping_cart {
    display: flex;
    width: 100%;
}

.widget_shopping_cart_content {
    width: 100%;
}

.mini_cart_content_header {
    display: flex;
    padding: 20px 30px;
    justify-content: space-between;
    min-width: 330px;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 5;
    width: 100vw;
    max-width: 600px;
}

.mini-cart_content_header_title {
    font-size: 16px;
    letter-spacing: -.8px;
    display: flex;
    line-height: 25px;
    gap: 10px;
}

.mini_cart_content_header i {
    cursor: pointer;
    font-size: 23px;
    display: block;
}

.mini_cart_content_body {
    max-height: 100vh;
    padding: 70px 40px 160px;
    min-height: 100vh;
    overflow: auto;
}

.empty_mini_cart_text, .mini-cart_empty_icon {
    text-align: center
}

.mini-cart-footer_btn {
    display: flex;
    gap: 20px;
    cursor: pointer;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between
}

.mini_cart_footer_total.price_row {
    width: 100%;
    display: flex;
    align-items: center;
    color: #353535;
}

.mini_cart_btn_row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 16px
}

span.price_row_separator {
    flex-grow: 1;
    border-bottom: 2px dashed #bfbfbf;
    margin: 0 15px
}

span.price_row_value {
    font-size: 22px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: -.88px;
    margin-left: 10px
}

.mini_cart_footer_total .icon_box {
    margin: 0;
    width: 26px
}

span.price_row_label {
    color: #717171;
    font-size: 15px
}

.mini_cart_product_list {
    height: 100%;
    max-height: 100%;
    overflow: auto
}

.each_mini_cart_product_block {
    display: flex;
    flex-direction: row-reverse;
    border-radius: 10px;
    padding: 15px;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 0 25px 0 #00000026;
    gap: 20px;
    background: #fff;
    margin: 10px 25px;
}

.mini_cart_product_image {
    min-width: 105px;
    height: 105px;
    border-radius: 15px;
    overflow: hidden;
    width: 105px;
}

.mini_cart_product_title {
    font-size: inherit;
    line-height: 24px;
    letter-spacing: -0.6px;
    text-align: left;
    margin-bottom: 15px;
    font-weight: 700;
}

span.mini_cart_product_attribute_summary {
    display: block;
    font-size: 13px;
    color: #828282;
    font-weight: 300;
}

.mini_cart_product_price span.price_row_value {
    font-size: 18px;
    line-height: 15px;
    color: #4a4a4a
}

.mini_cart_product_price {
    display: flex;
    align-items: center;
    margin-top: 15px;
    justify-content: flex-end
}

.mini_cart_product_quantity .current_cart_qty {
    line-height: 30px
}

.mini_cart_product_quantity .change_product_cart_qty {
    height: 30px;
    line-height: 36px;
    color: #fff;
    background: #a1a1a1
}

.mini_cart_product_quantity {
    opacity: 0.5;
}

.each_mini_cart_product_block:first-child {
    margin-top: 20px
}

.each_mini_cart_product_block:last-child {
    margin-bottom: 20px
}

.mini-cart_empty.mini_cart_content_body {
    padding: 100px 0 0;
}

@media (max-width: 600px) {
    .mini-cart-content {
        border-radius: 0;
        width: 100vw;
    }

    .mini_cart_content_body {
        padding: 50px 15px 40px;
        max-height: calc(100vh - 88px);
        overflow: auto;
        min-height: calc(100vh - 88px);
    }

    .mini_cart_content_footer {
        padding: 25px 20px;
        left: auto;
        right: 0;
    }

    .header-show .mini_cart_content_header {
        right: 0;
    }

    .header-show .mini_cart_content_footer {
        right: 0;
    }

    .header-show .mini-cart-modal {
        right: 0;
    }

    .mini_cart_content_header {
        padding: 10px 20px;
        right: 0;
        left: auto;
    }

    .mini-cart-footer_btn {
        gap: 10px
    }

    .each_mini_cart_product_block {
        margin-left: 20px;
    }


    div.active_phone_modal:before, a.my_account_btn.w-btn:before, div.kasebi-cart-link:before {
        display: none
    }

    .active_phone_modal .icon_box, .my_account_btn .icon_box, .kasebi-cart-link .icon_box {
        width: 24px;
        height: 24px
    }
}

.product_zoom_sample {
    width: 150px;
    height: 150px;
    position: absolute;
    background: #ffffff80;
    top: 0;
    left: 0;
    opacity: 0;
    border: 1px solid var(--color-content-primary);
    border-radius: 20px;
    transition: opacity .3s ease;
    pointer-events: none
}

.product_featured_image {
    position: relative
}

.product_zoom_view {
    width: 500px;
    height: 500px;
    position: absolute;
    top: 0;
    right: 104%;
    border-radius: 15px;
    box-shadow: 0 0 10px #0000002d;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    z-index: 2000;
    background-color: #fff;
    background-repeat: no-repeat
}

.product_featured_image img {
    display: block;
    border-radius: 20px
}

.product_gallery_slider {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.image_container {
    width: 85px;
    height: 85px;
    border-radius: 15px;
    cursor: pointer;
    overflow: hidden
}

.product_gallery_slider_wrapper {
    position: relative;
    min-width: 85px;
    overflow: hidden
}

.product_gallery_wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 50px
}

.product_gallery_wrapper.mobile_gallery {
    display: none;
}

.product_gallery_slider_content {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s ease
}

.product_image_slider_navigation {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 70px;
    background: linear-gradient(180deg, #fff, #ffffff00);
    top: 0;
    left: 0;
    padding-top: 15px;
    cursor: pointer;
    transition: all .5s ease
}

.product_image_slider_navigation.next_slide {
    top: auto;
    bottom: 0;
    background: linear-gradient(0deg, #fff, #ffffff00);
    align-items: flex-end
}

.product_image_slider_navigation.disabled {
    opacity: 0;
    pointer-events: none
}

.product_image_slider_pagination {
    display: none
}

.product_featured_image_wrapper {
    flex-grow: 1;
}

@media (max-width: 900px) {
    .product_gallery_wrapper {
        flex-direction: column;
        gap: 10px
    }

    .product_image_slider_pagination {
        display: block;
        position: relative
    }

    .product_gallery_slider_wrapper {
        display: none;
    }

    .product_gallery_wrapper.mobile_gallery {
        flex-direction: column;
        gap: 10px;
        display: flex;
    }

    .product_image_slider_pagination {
        display: block;
        position: relative
    }

    .navigation_arrow {
        position: absolute;
        top: 0;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .navigation_arrow.next_nav {
        left: 40px
    }

    .navigation_arrow.prev_nav {
        right: 40px
    }

    .pagination_dots_container {
        height: 24px;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .pagination_dots_container > div {
        width: 0;
        height: 0;
        background: #959595;
        border-radius: 10px;
        transition: all .5s ease;
        position: absolute
    }

    .pagination_dots_container > div.center {
        width: 10px;
        height: 10px
    }

    .center.each_navigation_dot + div {
        width: 6px;
        transform: translateX(-23px);
        height: 6px
    }

    .center.each_navigation_dot + div + div {
        width: 6px;
        transform: translateX(-46px);
        height: 6px
    }

    .each_navigation_dot:has(+.center) {
        width: 6px;
        transform: translateX(23px);
        height: 6px
    }

    .each_navigation_dot:has(+div+.center) {
        width: 6px;
        transform: translateX(46px);
        height: 6px
    }

    .product_zoom_sample, .product_zoom_view {
        display: none
    }

    .product_featured_image img {
        border-radius: 0
    }

    .navigation_arrow.disabled {
        opacity: .5
    }
}

.notif_me_on_stock {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    line-height: 33px;
    padding: 15px 35px 19px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.out_of_stock .product_page_price_section {
    display: none;
}

.price_and_add_to_cart_section.out_of_stock {
    padding: 0;
    display: block;
    text-align: center;
    background: #a1a1a1;
}

.grid_out_of_stock_label {
    font-size: 15px;
    font-weight: 700;
    color: #9c9c9c;
    text-align: center;
    margin-bottom: 15px
}

.kasebi_icon_box {
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    background: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-image: var(--icon-url);
    -webkit-mask-image: var(--icon-url)
}

.w-iconbox .w-iconbox-icon {
    font-size: var(--icon-size)
}

.w-iconbox.style_default.iconpos_left .w-iconbox-icon, .w-iconbox.style_default.iconpos_right .w-iconbox-icon {
    width: var(--icon-size)
}

.w-iconbox.iconpos_left .w-iconbox-icon {
    margin-left: .3em
}

.w-iconbox.iconpos_right .w-iconbox-icon {
    margin-right: 0.3em;
    margin-left: 0;
}

.w-iconbox.style_circle .w-iconbox-icon {
    width: 1.3em;
    height: 1.3em;
    border-radius: 4px
}

a.w-iconbox-link {
    display: flex;
    align-items: center;
    justify-content: center
}

.w-iconbox-meta:empty {
    display: none
}

.product_sku {
    direction: ltr;
    text-align: right;
}

.product_short_description p {
    margin-bottom: 5px;
}

span.product_color_selection_block {
    width: 20px;
    height: 20px;
    display: flex;
    border-radius: 50px;
    position: relative;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
}

span.product_color_selection_block:before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    box-shadow: 0 0 2px #000000cc;
    border-radius: 20px;
}

.timer_section {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    position: relative;
    align-items: flex-start
}

.time_cul {
    text-align: center;
    margin: 0 4px
}

.time_cul > div {
    display: flex;
    gap: 3px
}

.time_cul span {
    background: var(--timer-bg);
    min-width: 1.1em;
    display: inline-block;
    line-height: inherit;
    border-radius: 30px;
    color: var(--timer-color);
    text-align: center;
    max-height: 45px;
    box-shadow: 0 0 6px #00000035;
    font-weight: 700;
    height: 2em
}

.time_cul span.first {
    margin-left: 1px
}

div.cul_title {
    font-size: .6em;
    margin-top: 3px;
    line-height: 1.5;
    text-align: center;
    display: block
}

.timer_separator {
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.9em
}

.hide_title_timer .cul_title {
    display: none
}

a.w-btn.us-btn-style_1.single_add_to_cart_link {
    display: block
}

.landing_buy_form.nooshika_btn {
    width: 100%
}

@media (min-width: 1381px) {
    .w-vwrapper.default_align_left {
        text-align: left;
        align-items: flex-end
    }

    .w-vwrapper.default_align_right {
        text-align: right;
        align-items: flex-start
    }

    .w-vwrapper.default_align_center {
        text-align: center;
        align-items: center
    }

    .w-vwrapper.default_align_justify {
        align-items: stretch
    }
}

@media (min-width: 1025px) and (max-width: 1380px) {
    .w-vwrapper.laptops_align_left {
        text-align: left;
        align-items: flex-end
    }

    .w-vwrapper.laptops_align_right {
        text-align: right;
        align-items: flex-start
    }

    .w-vwrapper.laptops_align_center {
        text-align: center;
        align-items: center
    }

    .w-vwrapper.laptops_align_justify {
        align-items: stretch
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .w-vwrapper.tablets_align_left {
        text-align: left;
        align-items: flex-end
    }

    .w-vwrapper.tablets_align_right {
        text-align: right;
        align-items: flex-start
    }

    .w-vwrapper.tablets_align_center {
        text-align: center;
        align-items: center
    }

    .w-vwrapper.tablets_align_justify {
        align-items: stretch
    }
}

@media (max-width: 600px) {
    .w-vwrapper.mobiles_align_left {
        text-align: left;
        align-items: flex-end
    }

    .w-vwrapper.mobiles_align_right {
        text-align: right;
        align-items: flex-start
    }

    .w-vwrapper.mobiles_align_center {
        text-align: center;
        align-items: center
    }

    .w-vwrapper.mobiles_align_justify {
        align-items: stretch
    }
}

.product_page_price_section {
    margin-top: 30px;
    margin-bottom: 20px
}

.mobile_buy_section_toggle {
    display: none
}

.mobile_overlay {
    position: fixed;
    display: none;
    width: 100vw;
    height: 100vh;
    z-index: 150;
    background: #00000080;
    left: 0;
    top: 0;
    backdrop-filter: blur(2px)
}

@media (max-width: 600px) {
    .mobile_buy_section_toggle {
        display: block;
        position: fixed;
        width: 100%;
        height: 90px;
        left: 0;
        bottom: 0;
        background: #fff;
        padding: 13px 20px 60px;
        z-index: 100;
        box-shadow: 0 2px 18px #00000080;
        text-align: center
    }

    .toggle_buy_section_btn.us-btn-style_1.w-btn {
        width: 100%;
        padding: 7px !important;
    }

    .product_page_buy_section {
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0;
        background: #fff;
        padding: 20px 30px 20px;
        z-index: 200;
        box-shadow: 0 2px 18px #00000080;
        transition: all .5s ease;
        transform: translateY(120%)
    }

    .product_page_buy_section.active {
        transform: translateY(0)
    }

    .price_and_add_to_cart_section {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 25px;
        flex-direction: column;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid #c4c4c4
    }

    .product_add_to_cart_wrapper {
        padding: 10px 20px
    }

    .product_page_price_section {
        margin: 0;
        width: 100%
    }

    .product_add_to_cart_section {
        min-width: 140px;
        width: 100%
    }

    .disabled .toggle_buy_section_btn.us-btn-style_1.w-btn {
        background: #9d9d9d;
        color: #838383
    }
}

.rating_section {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
}

.rating_stars {
    display: flex;
    gap: 5px;
    align-items: center;
}

.rating_star i {
    font-size: 20px;
    color: #878787;
    cursor: pointer;
}

.rating_stars.hovered .rating_star.active i {
    color: #878787;
}

.rating_stars.hovered .rating_star.hovered i {
    color: #f1c40f;
}

.rating_star.hovered i {
    color: #f1c40f;
}

.rating_star.active i {
    color: #f1c40f;
}

.add_to_wishlist {
    cursor: pointer;
}

.icon_box.add_to_wishlist_icon {
    margin: 0;
}

.products_grid_container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.products_pagination_links {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

span.page-link i {
    display: block;
}

.products_pagination_link {
    cursor: pointer;
}

.products_grid_ordering {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
}

.products_grid_ordering_item {
    padding: 1px 8px 4px;
    border-bottom: 1px solid #c4c4c4;
    line-height: 1.3;
    letter-spacing: -0.05em;
    cursor: pointer;
}

.products_grid_ordering_item.active {
    border-color: var(--color-content-primary);
    border-width: 2px;
    font-weight: 800;
}

.product_grid_order_mob {
    display: none;
}

.each_product_grid_item {
    position: relative;
}

@media (max-width: 768px) {
    .product_grid_order_mob {
        border-radius: 7px;
        border: 1px solid;
        display: flex;
        padding: 3px 20px 3px 20px;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
        color: #24180E;
        text-align: center;
        font-size: 15px;
        font-weight: 600;
        line-height: 25px;
        letter-spacing: -0.16px;
    }

    .products_grid_ordering {
        position: fixed;
        bottom: 0;
        background: #fff;
        z-index: 220;
        width: 100vw;
        flex-direction: column;
        box-shadow: 0 0 3px #00000055;
        border-radius: 13px 18px 0 0;
        gap: 0;
        transition: all 0.5s ease;
        left: 0;
        transform: translateY(120%);
        padding: 20px;
    }

    .product_grid_ordering_wrapper {
        position: relative;
    }

    .product_grid_ordering_wrapper:before {
        content: '';
        width: 100vw;
        height: 100vh;
        position: fixed;
        background: #00000035;
        top: 0;
        left: 0;
        backdrop-filter: blur(3px);
        z-index: 210;
        pointer-events: none;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .product_grid_ordering_wrapper.active:before {
        opacity: 1;
        pointer-events: all;
    }

    .products_grid_ordering_item {
        border: none;
        font-size: 15px;
        padding-right: 29px;
        line-height: 20px;
        position: relative;
        display: flex;
        gap: 5px;
        align-items: center;
        padding-bottom: 9px;
        justify-content: space-between;
        margin-bottom: 10px;
        border-bottom: 1px solid #EDEDED !important;
    }

    .products_grid_ordering_item:last-child {
        border-bottom: none !important;
    }

    .products_grid_ordering.active {
        transform: translateY(0);
    }
}

.products_grid_no_result_text {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

a.products_grid_no_result_link {
    text-align: center;
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.kasebi_nav_activator {
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    display: none;
    flex-direction: column;
    align-items: center;
    line-height: 25px;
    position: relative;
    z-index: 5;
}

.first_line {
    background: currentColor;
    border-radius: 10px;
    margin-bottom: 3px;
    transition: width 0.5s ease, transform 0.5s ease;
    width: 18px;
    height: 2px;
}

.second_line {
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 10px;
    transition: width 0.5s ease, transform 0.5s ease;
    margin-bottom: 3px;
}

.third_line {
    width: 14px;
    height: 2px;
    background: currentColor;
    border-radius: 10px;
    transition: width 0.5s ease, transform 0.5s ease;
    margin-bottom: 4px;
}

.kasebi_nav_activator.active .first_line {
    transform: translateY(5px) rotate(-45deg);
    width: 16px;
}

.kasebi_nav_activator.active .second_line {
    width: 0;
}

.kasebi_nav_activator.active .third_line {
    transform: translateY(-5px) rotate(45deg);
    width: 16px;
}

.mobile_nav .kasebi_nav_list {
    position: fixed;
    right: 0;
    top: 0;
    border-left: 1px solid #DADADA;
    width: calc(50vw - var(--site-content-width) / 2 + 390px);
    margin: 0;
    height: 100vh;
    padding: 50px calc(50vw - var(--site-content-width) / 2) 40px 35px;
    border-radius: 25px 0 0 25px;
    margin: 0;
    background: #fff;
    z-index: 100;
    display: none;
    min-width: 365px;
    color: #181818;
}


.nav_close_title {
    display: none;
}

.kasebi_nav_activator.active .nav_activator_title {
    display: none;
}

.kasebi_nav_activator.active .nav_close_title {
    display: block;
}

.kasebi_nav_activator.active .nav_activator_bars {
    color: black;
}

.nav_activator_bars {
    transition: all 0.5s ease;
}

header#page-header.opened_menu {
    --color-header-middle-text: #231F20;
    --color-header-middle-bg: #fff;
    border-left: 1px solid #DADADA;
}

.kasebi_nav_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background: #0000006e;
    transition: all 0.5s ease;
    opacity: 0;
    backdrop-filter: blur(11px);
    z-index: 3;
}

.nav_bg_image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

nav.kasebi_header_nav.opened .kasebi_nav_bg {
    opacity: 1;
    pointer-events: all;
}

nav.kasebi_header_nav.mobile_nav li {
    list-style: none;
    border-bottom: 1px solid #E2E2E2;
    padding: 15px 0;
    line-height: 25px;
    margin: 0;
}

.mobile_nav nav.kasebi_header_nav li:last-child {
    border: none;
}

.admin-bar .mobile_nav .kasebi_nav_list {
    margin-top: 32px;
}

.mobile_nav .kasebi_nav_arrow {
    margin-right: auto;
}

.mobile_nav a.kasebi_nav_anchor:has( + ul) .kasebi_nav_arrow {
    display: block;
    width: 20px;
    height: 20px;
}

a.kasebi_nav_anchor.level_1 {
    line-height: 25px;
    font-size: 16px;
    letter-spacing: -0.04em;
    font-weight: 400;
}

.close_nav_list {
    margin-bottom: 25px;
    cursor: pointer;
    color: #000;
    display: none;
}

.mobile_nav .kasebi_nav_activator {
    display: flex;
}

.mobile_nav .close_nav_list {
    display: block;
}

.mobile_nav .kasebi_nav_list > * {
    margin-right: 35px;
}

.icon_box.nav_icon {
    width: 24px;
    height: 24px;
    margin: 0;
}

a.kasebi_nav_anchor.level_2 {
    line-height: 25px;
    font-size: 15px;
    letter-spacing: -0.04em;
    color: #2d2d2d;
}

a.kasebi_nav_anchor.level_3, a.kasebi_nav_anchor.level_4 {
    line-height: 23px;
    font-size: 14px;
    letter-spacing: -0.04em;
    color: #5d5d5d;
}

a.kasebi_nav_anchor {
    display: flex;
    align-items: center;
    gap: 15px;
}

ul.kasebi_nav_level.level_2 {
    position: absolute;
    right: 0;
    transition: all 0.5s ease;
    width: 230px;
    margin: 0;
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-10px);
    top: 90%;
    box-shadow: 0 0 20px #00000035;
    z-index: 200;
    visibility: hidden;
}

nav.kasebi_header_nav li.level_1:has( > ul) {
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.kasebi_nav_arrow > div {
    margin: 0;
    width: 20px;
    height: 20px;
}

nav.kasebi_header_nav li {
    list-style: none;
    position: relative;
    margin: 0;
}

nav.kasebi_header_nav ul {
    margin: 0;
}

ul.kasebi_nav_level.level_2 .kasebi_nav_arrow {
    display: none;
}

ul.level_2.kasebi_nav_level li:has( ul) > a .kasebi_nav_arrow {
    display: block;
    transform: rotate(0);
    margin-right: auto;
}

ul.level_2.kasebi_nav_level li a {
    justify-content: space-between;
    padding: 4px 9px;
    border-radius: 5px;
    font-weight: 400;
}

ul.level_2.kasebi_nav_level li:last-child {
    margin: 0;
}

ul.kasebi_nav_level.level_3, ul.kasebi_nav_level.level_4 {
    position: absolute;
    right: 100%;
    transition: all 0.5s ease;
    width: 230px;
    margin: 0;
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-10px);
    top: 0;
    box-shadow: 0 0 20px #00000035;
    z-index: 2;
    pointer-events: none;
}

.no_title > a .kasebi_nav_title {
    display: none;
}

nav.kasebi_header_nav li.level_1:hover > ul {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

nav.kasebi_header_nav li.level_2:hover > ul {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.kasebi_nav_back {
    display: none;
}

@media (max-width: 763px) {
    .admin-bar .mobile_nav .kasebi_nav_list {
        margin: 0;
    }

    .kasebi_nav_back {
        display: flex;
        margin-bottom: 25px;
        border-bottom: 1px solid #D2D2D2;
        padding-bottom: 10px;
    }

    .kasebi_nav_back .icon_box.nav_back {
        transform: rotate(180deg);
        color: #000;
        width: 30px;
        height: 30px;
    }

    li.level_1 ul.kasebi_nav_level {
        position: fixed;
        opacity: 0 !important;
        pointer-events: none !important;
        top: 0;
        right: 0;
        width: 100vw;
        border-radius: 0;
        padding: 40px 25px;
        height: 100vh;
        transform: translateX(70px) !important;
    }

    li.level_1 ul.kasebi_nav_level.active {
        opacity: 1 !important;
        pointer-events: all !important;
        transform: translateX(0) !important;
    }

    nav.kasebi_header_nav ul.kasebi_nav_level.level_2 li {
        padding: 10px 0;
        border-bottom: 1px solid #d2d2d2;
    }

    nav.kasebi_header_nav ul.kasebi_nav_level.level_2 li a {
        padding: 0;
        color: #000 !important;
        font-size: 15px;
        background: #fff !important;
    }

    nav.kasebi_header_nav ul.kasebi_nav_level.level_2 li:last-child {
        border: none;
    }

    nav.kasebi_header_nav li.level_1:has( > ul) {
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
}

.zoom_result {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-size: 1500px;
}

.each_product_att_select.out_of_stock {
    opacity: 0.5;
}

.shop_page_grid_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.filter_activator {
    border: 1px solid;
    cursor: pointer;
    display: flex;
    padding: 3px 20px 3px 20px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    color: #24180E;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 25px; /* 156.25% */
    letter-spacing: -0.16px;
    border-radius: 7px;
}

.filters_wrapper {
    width: 540px;
    height: 100vh;
    padding: 40px 50px 70px 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 210;
    background: #fff;
    transition: all 0.5s ease;
    transform: translateX(-120%);
    overflow: auto;
    max-width: 100vw;
}

.product_grid_filter_wrapper:before {
    content: '';
    position: fixed;
    z-index: 209;
    width: 100vw;
    height: 100vh;
    background: #00000078;
    left: 0;
    top: 0;
    pointer-events: none;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: all 0.5s ease;
}

.product_grid_filter_wrapper {
    position: relative;
    padding: 0 20px;
}

.active.product_grid_filter_wrapper:before {
    opacity: 1;
    pointer-events: all;
}

.active.product_grid_filter_wrapper .filters_wrapper {
    transform: translateX(0);
}

.filter_title_container {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.03em;
    position: relative;
    font-weight: 700;
    cursor: pointer;
    padding-bottom: 0;
    transition: all 0.5s ease;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    flex-direction: column;
}

.selected_filter_wrapper {
    display: flex;
    gap: 14px;
    color: #EAA87D;
    font-weight: 400;
    font-size: 15px;
}

.selected_filter {
    position: relative;
}

.selected_filter:not(:last-child):before {
    content: '';
    width: 4px;
    height: 4px;
    background: currentColor;
    position: absolute;
    border-radius: 100%;
    left: -9px;
    top: 7px;
}

.filter_title_container:after {
    font-family: "fontawesome", serif;
    font-weight: 900;
    content: "\f078";
    font-size: 13px;
    border: none;
    transition: all 0.5s ease;
    position: absolute;
    left: 0;
    transform: rotate(0deg);
    color: #A0A0A0;
}

.filter_wrapper_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close_wrapper {
    font-size: 20px;
    cursor: pointer;
}

.filter_wrapper_title > div {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    color: #483729;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: -0.42px;
    position: relative;
}

.filter_wrapper_title.has_filter .base_title:before {
    content: '';
    background: #EA1E1E;
    border: solid 2px #fff;
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 9px;
    z-index: 2;
    left: 14px;
    top: 3px;
}

div.clear_all_filters {
    color: #EAA87D;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    gap: 5px;
    margin-top: 10px;
    cursor: pointer;
    display: none;
}

.has_filter div.clear_all_filters {
    display: flex;
}

.base_title .icon_box {
    width: 18px;
    height: 18px;
    top: 2px;
}

.filter_wrapper_title .icon_box {
    margin: 0;
    position: relative;
}

.clear_all_filters .icon_box {
    width: 15px;
    height: 15px;
    top: 3px;
}

.product_page_filter_list input.search_filter {
    line-height: 30px;
    min-height: 30px;
    display: block;
}

.product_page_filter_list {
    max-height: 0;
    overflow: auto;
    padding-left: 20px;
    padding-right: 25px;
    padding-top: 0;
    position: relative;
    transition: all 0.5s ease;
    margin-top: 0;
}

.opened > .product_page_filter_list {
    max-height: 180px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.opened > .filter_title_container:after {
    transform: rotate(180deg);
}

.each_product_page_filter {
    border-bottom: 1px solid #d2d2d2;
    padding: 15px 20px;
}

.search_list_container {
    position: sticky;
    top: 0;
    background: #fff;
    margin-bottom: 7px;
    z-index: 2;
    padding-top: 3px;
}

.filter_title_container.disabled {
    pointer-events: none;
}

.filter_title_container.disabled:after {
    display: none;
}

.each_product_page_filter.price_list {
    border: none;
}

.stock_status_switch {
    font-size: 15px;
    font-weight: 700;
    position: relative;
    line-height: 20px;
    cursor: pointer;
}

.stock_status_switch:after {
    content: '';
    position: absolute;
    left: 0;
    border-radius: 10px;
    top: 2px;
    width: 32px;
    height: 16px;
    background: #D3D3D3;
}

.stock_status_switch:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #fff;
    position: absolute;
    left: 2px;
    top: 4px;
    border-radius: 10px;
    transition: all 0.5s ease;
    z-index: 2;
}

.each_product_page_filter.stock_list {
    padding: 10px 20px;
}

.stock_status_switch.selected:before {
    transform: translateX(15px);
}

.stock_status_switch.selected:after {
    background: #EAA87D;
}

.product_page_filter_item {
    font-size: 14px;
    padding-right: 29px;
    line-height: 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
    padding-bottom: 9px;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #EDEDED;
}

.product_page_filter_item:before {
    content: '';
    position: absolute;
    right: 0;
    width: 11px;
    height: 11px;
    border: solid 2px #4A4A4A;
    border-radius: 33px;
    top: 2px;
}

.product_page_filter_item.selected:before {
    border-color: #EAA87D;
}

.product_page_filter_item.selected:after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #EAA87D;
    top: 6px;
    right: 4px;
    border-radius: 12px;
}

.each_product_page_filter:last-child {
    border: none;
}

@media (max-width: 768px) {
    .filters_wrapper {
        padding: 30px;
    }

    .product_grid_filter_wrapper {
        padding: 0;
    }

    .shop_page_grid_header {
        gap: 4px;
        padding: 0 10px;
    }
}


.kasebi_icon_box.post_titles_list_icon {
    --icon-url: url(../icon/docs.png);
    --icon-size: 20px;
}

.post_titles_list_header {
    display: flex;
    padding: 15px 35px;
    font-size: 17px;
    font-weight: 700;
    align-items: center;
    cursor: pointer;
    gap: 7px;
}

.post_titles_list {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px -3px 20px 0px #0000001a;
    margin-top: 20px;
    margin-bottom: 20px;
}

.post_titles_list_content {
    padding: 15px 35px;
}

.post_titles_list_item {
    position: relative;
    padding-right: 25px;
    margin-bottom: 4px;
}

.post_titles_list_item a {
    color: #2A2A2A;
    font-size: 15px;
    line-height: 1.8;
    display: block;
}

.post_titles_list_item:before {
    content: '';
    position: absolute;
    width: 10px;
    transform: rotate(45deg);
    height: 10px;
    border-radius: 2px;
    background: #FFBE43;
    right: 0;
    top: 9px;
}

.post_titles_list_item:after {
    content: '';
    position: absolute;
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(270deg, #FFBE43, #FFBE4300);
    right: 6px;
    top: 13px;
}

.post_titles_list_item.H3_indexed {
    margin-right: 25px;
}

.post_titles_list_item.H4_indexed {
    margin-right: 50px;
}
