@media screen and (max-width: 1023px) {
    .product-card-gallery
    {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 8px;
    }

    .product-card-gallery__thumbs-container
    {
        order: 2;
        position: relative;
        width: 100%;
        height: 20px;
        margin-top: 20px;
    }

    .product-card-gallery__thumbs
    {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .product-card-gallery__thumbs::-webkit-scrollbar
    {
        display: none;
    }

    .product-card-gallery__thumb-container
    {
        display: inline-block;
        width: 50px;
        height: 2px;
        background-image: url(/static/resources/blocks/product-card-gallery/img/product-card-gallery__thumb-container.svg);
        background-position: center;
        background-repeat: no-repeat;
        vertical-align: middle;
    }

    .product-card-gallery__thumb-container_video
    {
        height: 20px;
        background-image: url(/static/resources/blocks/product-card-gallery/img/product-card-gallery__thumb-container_video.svg);
    }

    .product-card-gallery__thumb-container:hover
    {
        text-decoration: none;
    }

    .product-card-gallery__thumb-container + .product-card-gallery__thumb-container
    {
        margin-left: 7px;
    }

    .product-card-gallery__thumb-container_active
    {
        background-image: url(/static/resources/blocks/product-card-gallery/img/product-card-gallery__thumb-container_active.svg);
    }

    .product-card-gallery__thumb-container_active.product-card-gallery__thumb-container_video
    {
        background-image: url(/static/resources/blocks/product-card-gallery/img/product-card-gallery__thumb-container_video_active.svg);
    }

    .product-card-gallery__thumb
    {
        display: none;
    }

    .product-card-gallery__slider
    {
        order: 1;
        display: grid;
        grid-template-columns: repeat(var(--length), 100%);
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        box-sizing: border-box;
    }

    .product-card-gallery__slider::-webkit-scrollbar
    {
        display: none;
    }


    .product-card-gallery__frame-container
    {
        position: relative;
        width: 100%;
        box-sizing: border-box;
        scroll-snap-align: start end;
    }

    .product-card-gallery__frame-container_lazy-image:not(.product-card-gallery__frame-container_1)
    {
        background-image: url(/static/resources/img/loader.svg);
        background-position: center;
        background-repeat: no-repeat;
    }

    .product-card-gallery__frame-container:after
    {
        content: "";
        display: block;
        padding-bottom: 100%;
    }

    .product-card-gallery__frame
    {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
    }

    .product-card-gallery__frame-link
    {
        display: block;
        margin: auto;
        max-width: 100%;
        max-height: 100%;
        pointer-events: none;
    }

    .product-card-gallery__frame-image
    {
        max-width: 100%;
        max-height: 100%;
        pointer-events: none;
    }
}
