.catalog-row {
    margin-left: -32px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.catalog-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding-left: 32px;
}

.catalog-item-wrapper {
    display: block;
    color: inherit;
}

.catalog-item-wrapper:hover {
    color: inherit;
}

.catalog-item {
    padding: 16px;
}

.catalog-item:hover {
    background-color: #FFFFFF;
    position: relative;
    box-shadow: 0 0 15px rgba( 0, 0, 0, .15 );
    transition: box-shadow .3s;
    z-index: 1;
}

.catalog-item-picture {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 223px;
    margin-bottom: 16px;
    position: relative;
}

.catalog-item-picture img {
    max-height: 100%;
}

.catalog-item-discount {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    background-color: #FD5A4A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
    white-space: nowrap;
}

.catalog-item-status {
    font-size: 14px;
    color: #FD5A4A;
    line-height: 20px;
    margin-bottom: 16px;
}

.catalog-item-status.is-green {
    color: #3CB98B;
}

.catalog-item-status.is-gray {
    color: #b0b7c9;
}

.catalog-item-name {
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: 48px;
    overflow: hidden;
    margin-bottom: 8px;
}

.catalog-item-prices {
    display: flex;
    align-items: baseline;
}

.catalog-item-price-old {
    font-size: 14px;
    line-height: 18px;
    color: #FD5A4A;
    text-decoration: line-through;
    margin-left: 8px;
}

.catalog-item-price {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}

a.catalog-item-button,
button.catalog-item-button {
    margin-top: 8px;
    text-align: center;
    white-space: nowrap;
}

.catalog-description {
    margin-bottom: 64px;
}

@media ( max-width: 1240px ) {

    .catalog-col {
        flex: 0 0 25%;
        max-width: 25%;
    }

}

@media ( max-width: 980px ) {

    .catalog-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

}

@media ( max-width: 767px ) {

    .catalog-row {
        margin-left: -8px;
    }

    .catalog-col {
        padding-left: 8px;
    }

    .catalog-item-prices {
        flex-direction: column-reverse;
    }

    .catalog-item-prices {
        margin-top: 26px;
    }

    .catalog-item-prices.is-discount {
        margin-top: 0;
    }

    .catalog-item-price-old {
        margin-left: 0;
    }

}

@media ( max-width: 575px ) {

    .catalog-row {
        margin-bottom: 16px;
    }

    .catalog-col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .catalog-item {
        padding: 8px;
    }

    .catalog-item-picture {
        height: 123px;
        margin-bottom: 8px;
    }

    .catalog-item-discount {
        width: 35px;
        height: 35px;
        font-size: 12px;
        line-height: 15px;
    }

    .catalog-item-status {
        margin-bottom: 8px;
    }

    a.catalog-item-button,
    button.catalog-item-button {
        background-image: none;
        text-indent: unset;
    }

    .catalog-description {
        margin-bottom: 32px;
    }

}