.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_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);
}

.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(50% - 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_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;
    margin: 10px auto;
}

.kasebi-cart-link {
    position: relative;
    color: var(--color-content-primary);
    border: 2px solid;
    border-radius: 35px;
    width: 28px;
    height: 28px
}

.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 #589858;/*var(--color-alt-content-primary)*/
    border-radius: 100%;
    opacity: 1;
    z-index: 300;
}

.wa .callBtn i {
    color: #fff;
    background-color: #589858;/*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: -.64px;
    padding-right: 34px
}

.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: #121212;
    display: flex;
    font-size: 15px;
    font-weight: 700;
    line-height: 28px;
    gap: 12px;
    align-items: flex-start;
    padding: 5px 0;
    justify-content: flex-start
}

.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 {
    flex-grow: 1;
}

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

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

.comment_date {
    color: #a8a8a8;
    font-size: 15px;
    font-weight: 300
}

.reply_to_btn {
    font-size: 13px;
    padding: 0;
    cursor: pointer;
    transition: all .5s ease;
    border-radius: 5px;
    margin-right: auto;
    color: #bea548;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -.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 {
    background: #f8f5f2;
    padding: 20px 50px 25px;
    border-radius: 10px
}

.comments_children {
    filter: drop-shadow(1px 1px 15px rgba(0, 0, 0, .15));
    padding: 20px 50px;
    margin: -55px 50px 0;
    background: #fff;
    border-radius: 10px;
}

.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-block: 0
}

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

.ddl-select {
    visibility: hidden;
}

.ddl {
    position: relative;
    width: 100%;
    text-align: initial;
}

.ddl::after, .ddl::before {
    content: '';
    position: absolute;
    top: 17px;
    left: 25px;
    width: 8px;
    height: 2px;
    background: #555;
    z-index: 4;
    transform: rotate(-40deg);
    transition: 0.5s;
}

.ddl:before {
    left: 20px;
    transform: rotate(40deg);
}

.ddl.active:after {
    left: 20px;
}

.ddl.active:before {
    left: 25px;
}

.ddl-input {
    cursor: pointer;
}

.ddl.active .ddl-options {
    visibility: visible;
    opacity: 1;
}

.ddl .ddl-options {
    position: absolute;
    width: 100%;
    top: 35px;
    background: #fff;
    border-radius: 0 0 5px 5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.25s;
    z-index: 999;
    border: 1px solid #c4c4c4;
    border-top: 0;
    max-height: 140px;
    overflow: auto;
}

.ddl .ddl-options > div {
    padding: 6px 15px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.3;
}

.ddl .ddl-options > div:hover {
    background: var(--color-content-primary);
    color: #fff;
}

.ddl .ddl-options.ddl_checkbox > div {
    position: relative;
    padding-right: 30px;
}

.ddl .ddl-options.ddl_checkbox > div:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid #30303080;
    border-radius: 2px;
    right: 12px;
    top: 8px;
}

.ddl .ddl-options.ddl_checkbox > div.active:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    right: 14px;
    top: 10px;
    background: var(--color-content-primary);
}

.ddl.active input.ddl-input {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.order_received_msg {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.each_course_access_row {
    display: flex;
    border: 1px dashed #858585;
    border-radius: 5px;
    padding: 7px 15px;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.each_course_access_row a {
    margin-right: auto
}

@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
    }
}

.w-hwrapper.product_grid_wrapper {
    flex-direction: column;
    height: 100%;
    gap: 20px
}

.product_grid_wrapper .w-vwrapper {
    width: 100%;
    flex-grow: 1
}

.grid_price_box_container {
    font-size: 23px;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.product_grid_regular_price {
    position: relative
}

.product_grid_regular_price:before {
    content: '';
    border-bottom: 1px solid;
    width: 112%;
    position: absolute;
    top: 40%;
    left: -6%;
    transform: rotate(2deg)
}

.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
}

.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
}

.price_row {
    display: flex;
    font-size: inherit;
    line-height: 15px;
    font-weight: 700;
    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: 16px;
    position: relative;
    line-height: 14px;
    font-weight: 400;
    display: none
}

.on_sale .price_row.regular_price {
    display: flex
}

.price_row:not(:last-child) {
    margin-bottom: 5px
}

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

.price_row.regular_price .price_number {
    position: relative
}

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

.product_grid_color_palette {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .w-hwrapper.product_grid_wrapper {
        flex-direction: row
    }

    .w-hwrapper.product_grid_wrapper .w-post-elm.post_image {
        max-width: 115px
    }

    .product_grid_wrapper .w-vwrapper {
        height: 100%
    }
}

.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: -.32s;
    animation-delay: -.32s
}

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

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

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

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

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

.product_add_to_cart_wrapper {
    display: flex;
    align-items: center;
    margin-right: auto;
    padding: 14px 30px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -.02em;
    justify-content: space-between;
    color: #ffffff;
    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;
}

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

.product_variation_select_container {
    display: flex;
    gap: 12px;
    margin-right: auto;
    flex-wrap: wrap
}

.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_variation_select_container {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap
}

.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
}

.open_var_select_modal {
    width: 100%;
    display: flex;
    border: 1px solid #a0a0a0;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 5px;
    padding: 12px 20px;
    cursor: pointer;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.45px
}

.open_var_select_modal i {
    transform: rotate(-90deg)
}

.grid_price_box_container.product_page_price {
    justify-content: center
}

.w-filter-item[data-source='cf|_price'] {
    display: none !important
}

.price_range_block_result {
    display: flex;
    margin-top: 19px;
    gap: 9px;
    flex-direction: column
}

.price_range_block.ui-slider {
    margin: 20px 10px
}

.price_range_block_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px
}

.price_range_block_result > div {
    position: relative;
    border: 1px solid #e4e3e1;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    justify-content: center;
    align-items: center;
    padding: 4px;
    margin-right: 18px;
    flex-grow: 1;
    border-radius: 10px;
    gap: 3px;
    cursor: default
}

span.result_before_text {
    position: absolute;
    right: -18px;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px
}

.price_range_block_result > div .icon_box {
    width: 30px;
    background: #383634
}

.search_filter_box input.search_filter {
    border-radius: 10px;
    border: 1px solid #cbcbcb;
    background: 0 0;
    min-height: 0;
    line-height: 28px;
    font-size: 14px
}

.search_filter_box i {
    position: absolute;
    top: 8px;
    left: 13px;
    font-weight: 300;
    font-size: 13px
}

.search_filter_box {
    position: relative;
    margin-bottom: 15px;
    margin-left: 25px
}

.w-filter.layout_ver.togglable .w-filter-item-title:after {
    font-family: "fontawesome";
    font-weight: 900;
    content: "\f078";
    font-size: 13px;
    border: none;
    transition: all .5s ease
}

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

.mini_cart_product_data_cul {
    flex-grow: 1
}

span.w-cart-quantity {
    position: absolute;
    top: -9px;
    left: -5px;
    font-size: 12px;
    line-height: 17px;
    width: 14px;
    border-radius: 20px;
    height: 14px;
    min-width: 14px;
    text-align: center
}

.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;
    /* height: 100vh; */
}

.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;
    /* transform: translateX(-100%); */
    display: flex;
    width: 100vw;
    max-width: 600px;
}

.active .mini-cart-content {
    /* transform: translateX(0); */
}

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

.mini-cart_content {
    /* display: flex; */
    /* flex-direction: column; */
    /* height: 100%; */
}

.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: 100%;
    max-width: 600px;
}

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

.widget_shopping_cart_content {
    /* height: 100%; */
    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: 100%;
    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 {
    min-height: 100vh;
    padding: 70px 40px 160px;
}

.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
}

.simplebar-track.simplebar-vertical:before {
    border-left: 2px solid #dadada;
    content: '';
    height: 100%;
    position: absolute;
    left: 5px
}

.simplebar-scrollbar:before {
    width: 6px;
    background: #404040
}

.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: 0px 0px 25px 0px #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: -.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: 0
}

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

    .mini_cart_content_body {
        padding: 50px 15px 180px;
    }

    .mini_cart_content_footer {
        padding: 25px 20px;
    }

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

    .each_mini_cart_product_block {
        margin-left: 20px;
    }

    .mini_cart_content_header {
        padding: 10px 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_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 {
        flex-direction: column;
        gap: 10px
    }

    .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
    }
}

@media (max-width: 600px) {
    .product_featured_image img {
        border-radius: 0
    }

    .navigation_arrow.disabled {
        opacity: .5
    }
}

.out_of_stock_add_to_cart {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -.8px;
    border-radius: 3px;
    background: #d7d7d7;
    padding: 14px 0;
    text-align: center
}

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

.w-btn.btn_has_icon {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.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: .3em
}

.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
}

.product_var_select_list {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: #00000000;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all .5s ease;
    z-index: 305
}

.product_var_select_list.active {
    pointer-events: all;
    background: #0000008f
}

.product_var_select_list_content_wrapper {
    width: 100%;
    max-width: 540px;
    background: #fff;
    transition: all .5s ease;
    transform: translateX(-120%);
    box-shadow: 0 0 5px #00000035;
    padding: 40px 50px 70px;
    height: 100vh
}

.active .product_var_select_list_content_wrapper {
    transform: translateX(0)
}

.product_var_select_box {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
    justify-content: flex-end
}

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

.product_var_modal_item > * {
    display: flex;
    align-items: center;
    gap: 8px
}

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

span.product_color_selection_name {
    color: #a6a6a6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -.03em;
    font-family: nooshikaybakhen, sans-serif
}

.product_var_modal_item {
    cursor: pointer;
    position: relative
}

.open_var_modal {
    cursor: pointer;
    margin-right: auto;
    font-size: 14px;
    letter-spacing: -.04em;
    font-weight: 600;
    color: #4a4a4a;
    background: #f1f1f1;
    padding: 3px 10px;
    border-radius: 6px
}

.product_var_modal_item.active:after {
    position: absolute;
    font-family: "fontawesome", serif;
    font-weight: 900;
    content: "\f00c";
    color: #424242;
    font-size: 13px;
    top: 0;
    z-index: 2;
    left: 0
}

.product_var_modal_item.active[data-attribute=pa_color]:after {
    right: 3px;
    top: 2px;
    mix-blend-mode: revert
}

.product_var_modal_header {
    display: flex;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: -.02em;
    justify-content: space-between;
    margin-bottom: 60px;
    align-items: center
}

.product_var_modal_close {
    cursor: pointer;
    font-size: 18px;
    color: #424242
}

.product_var_modal_items_list {
    padding: 0 40px;
    overflow: auto;
    max-height: calc(100vh - 190px)
}

.product_var_modal_items_list::-webkit-scrollbar {
    width: 4px
}

.product_var_modal_items_list::-webkit-scrollbar-track {
    background: #f1f1f1
}

.product_var_modal_items_list::-webkit-scrollbar-thumb {
    background: #888
}

.product_var_modal_items_list::-webkit-scrollbar-thumb:hover {
    background: #555
}

.product_var_modal_items_list > div {
    padding-bottom: 15px;
    border-bottom: solid 1px #ebe8e0;
    margin-top: 15px
}

.product_var_modal_items_list .product_var_modal_item.active[data-attribute=pa_color]:after {
    top: -2px
}

span.product_variation_select_label_color {
    font-size: 18px;
    font-weight: 400
}

.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 (max-width: 600px) {
    .product_var_select_list_content_wrapper {
        padding: 40px 30px 70px
    }

    .product_var_modal_items_list {
        padding: 0 20px
    }

    .product_var_modal_header {
        margin-bottom: 30px
    }
}

@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
    }
}

.w-filter-item[data-source='cf|_price'] {
    display: none !important
}

.price_range_block_result {
    display: flex;
    margin-top: 19px;
    gap: 9px;
    flex-direction: column
}

.price_range_block.ui-slider {
    margin: 20px 10px
}

.price_range_block_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px
}

.price_range_block_result > div {
    position: relative;
    border: 1px solid #e4e3e1;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    justify-content: center;
    align-items: center;
    padding: 4px;
    margin-right: 18px;
    flex-grow: 1;
    border-radius: 10px;
    gap: 3px;
    cursor: default
}

span.result_before_text {
    position: absolute;
    right: -18px;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px
}

.price_range_block_result > div .icon_box {
    width: 30px;
    background: #383634
}

.w-filter-item {
    margin-left: 0 !important;
    display: block !important;
    margin-bottom: 15px;
    border-top: none !important;
    padding-bottom: 15px;
    border-bottom: 1px solid #d2d2d2
}

button.w-filter-item-title {
    display: flex;
    margin-bottom: 0;
    padding: 0 !important;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -.03em;
    text-align: right;
    align-items: center;
    justify-content: space-between;
}

span.w-filter-item-reset {
    font-size: 0 !important;
    position: relative
}

span.w-filter-item-reset:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--color-content-secondary);
    border-radius: 5px;
    top: 5px;
    right: 2px
}

.w-filter.state_mobile .w-filter-item-values, .w-filter-item-values {
    display: block !important;
    /* max-height: 200px !important; */
    /* overflow: auto !important; */
    padding-right: 20px;
    margin-right: -20px;
    transition: all .5s ease;
    margin-top: 15px;
    margin-bottom: 0 !important
}

.w-filter-item.open .w-filter-item-values {
    /* max-height: 200px !important; */
    margin-top: 15px
}

.w-filter-item-values::-webkit-scrollbar {
    width: 3px
}

.w-filter-item-value.depth_2 {
    margin-right: 15px !important
}

.w-filter-item-values::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #c9c6c3;
    border-radius: 10px
}

.w-filter-item-values::-webkit-scrollbar-thumb {
    background: #807e7c;
    border-radius: 10px
}

.w-filter-item-value {
    position: relative
}

.w-filter-item-value input {
    display: none
}

.w-filter-item-value label {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #5c5a58;
    margin-bottom: 10px;
    margin-right: 0;
    background: 0 0;
    padding: 2px;
    padding-right: 24px
}

.w-filter-item-value label:before {
    content: '';
    border-radius: 4px;
    border: 1px solid #c9c6c3;
    background: #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0;
    top: 1px
}

.w-filter-item-value.selected label:after {
    content: '';
    border-radius: 2px;
    background: var(--color-content-primary);
    width: 11px;
    height: 11px;
    position: absolute;
    right: 3px;
    top: 4px
}

.has_value a.w-filter-item-reset {
    display: block !important;
    line-height: 17px
}

.search_filter_box input.search_filter {
    border-radius: 10px;
    border: 1px solid #cbcbcb;
    background: 0 0;
    min-height: 0;
    line-height: 28px;
    font-size: 14px
}

.search_filter_box i {
    position: absolute;
    top: 8px;
    left: 13px;
    font-weight: 300;
    font-size: 13px
}

.search_filter_box {
    position: relative;
    margin-bottom: 15px;
    margin-left: 25px
}

.w-filter.layout_ver.togglable .w-filter-item-title:after {
    font-family: "fontawesome";
    font-weight: 900;
    content: "\f078";
    font-size: 13px;
    border: none;
    transition: all .5s ease;
    top: 0;
    margin: 0 !important;
}

.wpb_column.has_overflow::-webkit-scrollbar {
    height: 0
}

.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)
}

.grid_order_select {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 5px;
}

.grid_order_option {
    font-size: 14px;
    line-height: 30px;
    padding: 0 7px;
    cursor: pointer;
    position: relative;
}

.grid_order_option.selected:before {
    content: '';
    position: absolute;
    width: 100%;
    border-bottom: solid 2px var(--color-content-primary);
    left: 0;
    bottom: -5px;
}

.inputs_container {
    display: grid;
    gap: 12px;
}

@media (max-width: 600px) {
    .mobile_buy_section_toggle {
        display: block;
        position: fixed;
        width: 100%;
        height: 60px;
        left: 0;
        bottom: 0;
        background: #fff;
        padding: 20px 30px 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%
    }

    .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%
    }

    .out_of_stock_add_to_cart {
        padding: 8px
    }

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