@media screen and (max-width: 1023px) {
    .pruma-choice
    {
        border: 1px solid #e1e1e1;
        position: relative;
        border-radius: 6px;
        margin: 15px 0;
        color: #191919;
    }

    .pruma-choice__head
    {
        text-align: center;
        font-weight: 700;
        font-size: 20px;
        color: #191919;
        padding: 15px 0;
    }

    .pruma-choice__products
    {
        background-color: #fff;
        flex: 1;
    }

    .pruma-choice__move
    {

        display: block;
        height: 30px;
        cursor: pointer;
        text-align: center;
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
    }

    .pruma-choice__move_next
    {
        background-image: url(/static/resources/blocks/pruma-choice/img/pruma-choice__move_next.png);
        border-top: 1px solid #e1e1e1;
    }

    .pruma-choice__move_prev
    {
        background-image: url(/static/resources/blocks/pruma-choice/img/pruma-choice__move_prev.png);
        border-bottom: 1px solid #e1e1e1;
    }

    .pruma-choice__move:disabled
    {
        filter: grayscale(100);
    }

    .pruma-choice__item
    {
        position: relative;
        /*opacity: 0;*/
        transition: opacity var(--transition-duration) ease-out;
    }

    .pruma-choice__item_hidden
    {
        display: none;
    }

    .pruma-choice__item_visible
    {
        opacity: 1;
    }

    .pruma-choice__item:hover
    {
        background-color: #eff3f5;
    }

    .pruma-choice__photo-container
    {
        height: 221px;
        display: flex;
        background-color: #f8fafa;
    }

    .pruma-choice__photo
    {
        display: block;
        margin: auto;
        max-height: 100%;
    }

    .pruma-choice__product-data
    {
        padding: 15px;
    }

    .pruma-choice__category,
    .pruma-choice__product-name,
    .pruma-choice__brand
    {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .pruma-choice__category
    {
        color: #6c6d6e;
        white-space: nowrap;
    }

    .pruma-choice__product-name
    {
        line-height: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;

        color: var(--link-color);
        min-height: 32px;
    }

    .pruma-choice__brand
    {
        color: #6c6d6e;
    }

    .pruma-choice__price
    {
        font-weight: 500;
        color: #333333;
        font-size: 16px;
        display: flex;
    }

    .pruma-choice__price span
    {
        display: inline-block;
        margin-top: auto;
        margin-bottom: auto;
    }

    .pruma-choice__price .price-row__digit
    {
        margin-right: 3px;
    }

    .pruma-choice__discount
    {
        color: #fff;
        background-color: #f70;
        border-radius: 2px;
        padding: 2px 7px;
        font-size: 13px;
        margin-left: 5px;
    }

    .pruma-choice__show-all
    {
        display: block;
        text-align: center;
        margin: 15px auto 8px auto;
    }
}
