.catalogItemList {
    --ButtonsBlockWidth: 100px;
    width: auto;
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    .itemMarkers {
        position: absolute;
        top: 11px;
        left: 11px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        width: calc(100% - var(--ButtonsBlockWidth));
        .itemMarker {
            max-width: fit-content;
            padding: 3px 11px;
            white-space: nowrap;
        }

    }
    .itemHeader {

        .itemActionButtons {
            display: flex;
            justify-content: flex-end;
            gap: 11px;
            .icon {
                color: #EC268F;
                cursor: pointer;
                width: 27px;
                height: 27px;
                display: block;
                transition: all .3s;
            }
            .icon:hover:not(.inCompare) {
                color: #f293ca;
            }
            .icon.inCompare {
                color: #00adef!important;
            }
        }

    }
    .itemPictureBlock {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 180px;
        img {
            max-width: 280px;
            max-height: 180px;
        }
    }
    .titleRow {
        margin-top: 11px;
        display: flex;
        gap: 11px;
        .itemTitle {
            font-size: 16px;
            line-height: 144%;
            flex: 1;
            overflow: hidden;
            max-height: 70px;
            height: 70px;
            transition: all .3s;
            color: #112a46;
        }
        .itemTitle:hover {
            color: #00adef!important;
        }
        .itemDiscountProc {
            background: #f58634;
            padding: 8px 16px;
            color: white;
            font-weight: 700;
            font-size: 16px;
            line-height: 100%;
            text-align: center;
            height: 16px;
        }
    }
    .priceRow {
        margin-top: 11px;
        display: flex;
        gap: 11px;
        font-size: 16px;
        .itemPrice {
            font-weight: bold;
        }
        .itemOldPrice {
            text-decoration: line-through;
            text-align: center;
            color: rgba(17, 42, 70, 0.5);
        }

    }
    .bonusesRow {
        display: flex;
        justify-content: space-between;
        margin-top: 11px;
        .itemOtBlock {
            font-weight: 700;
            font-size: 14px;
            line-height: 150%;
            letter-spacing: -0.04em;
            color: #008ad3;
        }
        .itemBonusesBlock {
            font-weight: 700;
            font-size: 14px;
            line-height: 129%;
            span {
                color: #ee8220;
            }

        }



    }
    .itemBuyButton {
        cursor: pointer;
        background: rgb(255, 255, 255);
        font-size: 16px;
        line-height: 16px;
        border: solid 2px #EC268F;
        color: rgb(51, 51, 51);
        padding: 10px 19px;
        margin-right: 8px;
        width: min-content;
        transition: all .3s;
        margin-top: 11px;
        border-radius: 12px;
        display: block;
    }
    .itemBuyButton.disabled {
        cursor: auto;

        border: solid 2px gray;
        color: rgb(51, 51, 51);
        padding: 9px 19px;
        opacity: 0.5;
    }
    .itemBuyButton.added {
        background-color: #00adef!important;
        color: white;
        border: solid 2px #00adef;
        white-space: nowrap;
    }
    .itemBuyButton.added:hover {
        background-color: #46b7e7 !important;
    }
    .itemBuyButton:hover:not(.added):not(.disabled) {
        color: white;
        border: solid 2px #EC268F;
        background-color: #EC268F;
    }
}
.catalogItemList:hover {
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.50);
    transition: all .3s;
}
.needOnlinePayment {
    margin-top: 11px;
    color: #EC268F;
    text-decoration: underline;
    font-size: 0.9em;
}

.buttonsBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    .addCompare {
        background: rgb(255, 255, 255);
        font-size: 16px;
        line-height: 16px;
        border: solid 2px #00adef;
        color: rgb(51, 51, 51);
        padding: 10px 19px;
        margin-right: 8px;
        transition: all .3s;
        margin-top: 11px;
        border-radius: 12px;
        width: max-content;
        align-items: center;
        gap: 5px;
        display: flex;
    }
    .notVisible {
        display: none;
    }
    .visible {
        display: inline-block;
    }
}

.compareCheckBox {
    display: none;
}
.labelAddCompare {
    cursor: pointer;
}