#mobile-detail-form {
    display: none;
}
.js-cart-isset .product-actions > div:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
                "qty_block js-cart-url"
                "product_item_buyoneclick product_item_buyoneclick";
}
.js-cart-isset .product-actions .qty_block {
    grid-area: qty_block;
    width: auto;
}

.js-cart-isset .product-actions .js-cart-url {
    grid-area: js-cart-url;
    width: auto;
}

.js-cart-isset .product-actions .product_item_buyoneclick {
    grid-area: product_item_buyoneclick;
    width: 100%;
}

.js-cart-isset .content_stiky_right .product_cart_payments {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1500px) {

    .product-actions .qty_block.width-50,
    .product-actions .js-cart-url.width-50,
    .product-actions .button.softms.product_item_submit.larger_p.width-50,
    .product-actions .button.product_item_buyoneclick.large_p.width-50 {
        width: 100%;
    }

}

@media (max-width: 1280px) {
    .product-galery-feature-wrapper {
        flex-direction: column;
    }
    .product_feature_item .f-name-wrapper {
        width: 100%;
    }
}
@media only screen and (max-width: 1500px) and (min-width: 1040px)  {
    .product-actions > div:first-child {
        flex-direction: column;
    }

    .js-cart-isset .product-actions .js-cart-url a div {
        justify-content: center !important;
        gap:0.5em;
    }
    .content_stiky_right .product_cart_payments {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1040px) {
    .js-cart-isset .product-actions > div:first-child {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
                "qty_block js-cart-url"
                "product_item_buyoneclick product_item_buyoneclick";
    }
    #mobile-detail-form {
        display: block;
    }

    .gallery_product_wrapper {
        margin: 0 auto;
    }
    .content_stiky_left_wrapper {
        width: 100%;
    }

    .content_stiky_right_wrapper {
        display: block;
        position: fixed;
        bottom: 38px;
        left: 0;
        right: 0;
        z-index: 100;
        background: #fff;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        padding: 0;
        transform: translateY(110%);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        width: 100%;
    }

    .content_stiky_right_wrapper.is-sticky-visible .mono-g2-container {
        padding: 1em;
    }
    .content_stiky_right_wrapper.is-sticky-visible .product_cart_payments,
    .content_stiky_right_wrapper.is-sticky-visible .shipping_email {
        display: none;
    }
    .content_stiky_right_wrapper.is-sticky-visible {
        transform: translateY(0);
        opacity: 1;
    }
    footer {
        margin-top: 3rem;
        margin-bottom: 20.125rem;
    }
}
@media (max-width: 540px) {
    #reviewForm > .flexbox.fields.review-form__field {
        flex-direction: column;
    }
    .review-form__actions {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .gallery_product_wrapper {
        flex-direction: column;
        gap:12px;
    }
    .gallery_slider_wrapper {
        max-height: none;
    }
    .gallery_items.gallery_gorizont {
        order:1;
    }

}
/* =============================================
   Product Tabs
   ============================================= */
.product_tabs_content {
    color: var(--Mono-G3);
}

.product_tabs_content p {
    padding-bottom: 1.25em;
}

.product_tabs_content strong,
.product_tabs_content b {
    color: var(--Mono-G4);
}

.product_tabs_content ul {
    margin-left: 1.25em;
    margin-bottom: 2em;
}

.product_tabs_content li {
    margin-bottom: 0.5em;
}

.product-cart-wrapper .qty_block {
    font-size: 0.88em;
}


/* =============================================
   Buy One Click
   ============================================= */
.product_item_buyoneclick {
    padding: 0.87em 1em;
    background: #fff;
    box-shadow: none;
    color: var(--col-softms);
}

.product_item_buyoneclick:hover {
    background: var(--Mono-G4) !important;
    border-color: var(--Mono-G4) !important;
    color: var(--Mono-W) !important;
}


/* =============================================
   Gallery
   ============================================= */
.gallery_product_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
}

.gallery_product_wrapper .product_item_favorite {
    position: absolute;
    left: 65px;
    top: 0;
    z-index: 10;
    line-height: 28px;
}

/* Thumbnails sidebar */
.gallery_items {
    position: relative;
    width: 64px;
    margin-right: 1em;
}

.gallery_items .image {
    width: 64px;
    height: 64px;
    background: #f4f8f8;
    border-radius: 0.5em;
    margin-bottom: 8px;
    padding: 2px;
    box-sizing: border-box;
    line-height: 0;
    text-align: center;
    cursor: pointer;
}

.gallery_items .image:last-child {
    margin-bottom: 0;
}

.gallery_items .image img {
    max-width: 100%;
    max-height: 100%;
}

.gallery_items .image.selected {
    box-shadow: 0 0 0 2px #01bac6 inset;
}

/* Scroll wrapper */
.gallery_slider_wrapper {
    max-height: 344px;
    height: 100%;
    overflow: hidden auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery_slider {
    list-style: none;
    transition: all 0.3s;
}

/* Controls */
.gallery_items .controll {
    position: absolute;
    left: 50%;
    margin-left: -12px;
    padding: 6px;
    border-radius: 4px;
    background: #fff;
    line-height: 0;
}

.gallery_items .controll:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.gallery_items .controll.disabled {
    opacity: 0.4;
}

.gallery_items .prev_controll {
    top: 0;
    margin-top: -32px;
}

.gallery_items .next_controll {
    bottom: 0;
    margin-bottom: -32px;
}

/* Main image */
.gallery_main {
    width: 340px;
    height: 340px;
    background-color: var(--Mono-G1);
    border-radius: 0.75em;
    padding: 1em;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery_main img {
    max-width: 100%;
    max-height: 100%;
}

/* Horizontal variant */
.gallery_items.gallery_gorizont {
    max-width: 232px;
}

.gallery_items.gallery_gorizont .image {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 8px;
}

.gallery_items.gallery_gorizont .gallery_slider {
    white-space: nowrap;
}

.gallery_items.gallery_gorizont .controll {
    left: initial;
    top: 50%;
    margin-top: -12px;
}

.gallery_items.gallery_gorizont .prev_controll {
    margin-left: -32px;
}

.gallery_items.gallery_gorizont .next_controll {
    right: 0;
    bottom: initial;
    margin-right: -32px;
    margin-bottom: 0;
}

.gallery_gorizont .next_controll .icon_12.arrow-bottom {
    background-position: -36px -24px;
}

.gallery_gorizont .slider_images .prev_controll .icon_12.arrow-top {
    background-position: -24px -24px;
}


/* =============================================
   Reviews
   ============================================= */
.review_item {
    background: var(--Mono-G2);
    padding: 1.5em;
    border-radius: 0.75em;
}

.review_items .review_items {
    margin-top: 1em;
    margin-left: 1em;
}

.review_items .review_items .review_item {
    background: var(--Mono-W);
    padding: 1em;
}

.review_text,
.review_date {
    font-size: 0.875em;
    color: var(--Mono-G3);
}

.review_text {
    line-height: 1.4em;
}