@media screen and (min-width: 1024px) {
    .pruma-choice
    {
        border: 5px solid #eff3f5;
        display: flex;
        flex-flow: column;
    }

    .pruma-choice__head
    {
        padding: 8px 0 8px 15px;
        font-size: 24px;
        font-weight: 700;
        position: relative;
        background-color: #eff3f5;
    }

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

    .pruma-choice__move
    {
        display: block;
        height: 9px;
        max-height: 9px;
        min-height: 9px;
        margin: 11px 0;
        cursor: pointer;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url(/static/resources/blocks/pruma-choice/img/pruma-choice__move.png);
    }

    .pruma-choice__move_next
    {
        background-position: 50% -9px;
    }

    .pruma-choice__move_next:hover
    {
        background-position: 50% -27px;
    }

    .pruma-choice__move_prev
    {
        background-position: 50% 0px;
    }

    .pruma-choice__move_prev:hover
    {
        background-position: 50% -18px;
    }

    .pruma-choice__move:disabled
    {
        opacity: 0;
    }

    .pruma-choice__item
    {
        position: relative;
        height: 117px;
        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
    {
        position: absolute;
        left: 8px;
        top: 6px;
        bottom: 6px;
        width: 84px;
        display: flex;
        background-color: #fff;
    }

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

    .pruma-choice__product-data
    {
        margin: 0px 8px 0px 100px;
        padding: 12px 0;
    }

    .pruma-choice__category,
    .pruma-choice__product-name,
    .pruma-choice__brand
    {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pruma-choice__category
    {
        font-size: 11px;
        color: #6c6d6e;
        margin-bottom: 3px;
        white-space: nowrap;
    }

    .pruma-choice__product-name
    {
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 2px;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;

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

    .pruma-choice__brand
    {
        font-size: 11px;
        color: #6c6d6e;
        margin-bottom: 4px;
    }

    .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
    {
        text-align: center;
        margin-bottom: 8px;
    }
}
