.itemBlock {
    background: #fff;
    padding: 10px 20px 20px;
    margin-bottom: 20px;
    max-width: 460px;
}

.itemBlock__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.itemBlock__header span.tag {
    background: #F74C4C;
    border-radius: 5px;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #FFFFFF;
    padding: 2px 6px;
    margin-right: 5px;
    text-align: center;
}

.itemBlock__header .itemBlock__headerRight {
    display: flex;
}

.itemBlock__header .likeIcons {
    display: flex;
    flex-wrap: wrap;
}

.itemBlock__header .likeIcons .likeIcons__wish {
    margin-right: 10px;
}

.itemBlock__header .likeIcons .likeIcons__compare label,
.itemBlock__header .likeIcons .likeIcons__wish label {
    opacity: 0.5;
}

.itemBlock__header .likeIcons .likeIcons__compare label:hover,
.itemBlock__header .likeIcons .likeIcons__wish label:hover,
.itemBlock__header .likeIcons .likeIcons__compare label.checked,
.itemBlock__header .likeIcons .likeIcons__wish label.checked {
    opacity: 1;
}

.itemBlock__header .likeIcons .likeIcons__compare input,
.itemBlock__header .likeIcons .likeIcons__wish input {
    display: none;
}

.itemBlock__header .itemBlock__vote {
    margin-right: 10px;
}

.itemBlock__body .itemBlock__img {
    text-align: center;
    margin-bottom: 10px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 230px;
}

.itemBlock__body .itemBlock__img img {
    max-height: 100%;
}

.itemBlock__body .itemBlock__name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #232A32;
    margin-bottom: 15px;
    height: 44px;
}

.itemBlock__body .itemBlock__name:hover {
    color: #f74b4b;
}

.itemBlock__body .itemBlock__props {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 400;
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
    height: 75px;
}

.itemBlock__body .itemBlock__props dt {
    font-size: 16px;
    line-height: 19px;
    color: #757575;
    float: left;
    clear: both;
}

.itemBlock__body .itemBlock__props dd {
    font-size: 14px;
    line-height: 17px;
    color: #232A32;
    float: right;
}

.itemBlock__footer .itemFooter__sale {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.itemBlock__footer .itemFooter__sale .itemFooter__salePercent {
    background: #F74C4C;
    padding: 2px 8px;
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #FFFFFF;
    margin-right: 10px;
}

.itemBlock__footer .itemFooter__sale .itemFooter__saleDiscount {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    color: #2E4F9E;
}

.itemBlock__footer .itemBlock__row {
    display: flex;
    justify-content: space-between;
    min-height: 33px;
}

.itemBlock__footer .itemFooter__Available {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #3A65C7;
}

.itemBlock__footer .itemFooter__Available img {
    margin-right: 8px;
}

.itemBlock__footer .itemFooter__price {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.itemBlock__footer .itemFooter__price .itemFooter__priceOld {
    font-size: 18px;
    line-height: 22px;
    color: #757575;
    text-decoration: line-through;
}

.itemBlock__footer .itemFooter__price .itemFooter__priceNew {
    font-size: 20px;
    line-height: 24px;
    color: #30509E;
}

.itemBlock__footer .itemFooter__col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.itemBlock__footer .itemFooter__quantity {
    display: flex;
    align-items: end;
    padding-right: 5px;
}

.itemBlock__footer .productQuantity {
    width: 100px;
    height: 40px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    background-color: #F0F0F0;
}

.itemBlock__footer .productQuantity__data {
    height: 40px;
    text-align: center;
    outline: none;
    border: none;
    max-width: 40px;
    color: #000;
    background-color: #F0F0F0;
}

.itemBlock__footer .productQuantity__data::-webkit-outer-spin-button,
.itemBlock__footer .productQuantity__data::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.itemBlock__footer .productQuantity__data[type=number] {
    -moz-appearance: textfield;
}

.itemBlock__footer .productQuantity__minus,
.itemBlock__footer .productQuantity__plus {
    display: block;
    width: 30px;
    flex: none;
    line-height: 38px;
    font-weight: 700;
    text-align: center;
    font-size: 24px;
    color: #8ba5bf;
}

.itemBlock__footer .productQuantity__minus:hover,
.itemBlock__footer .productQuantity__plus:hover {
    cursor: pointer;
    color: #f74b4b;
}

.itemBlock__footer .button {
    min-width: unset;
}

.slider-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.slider-wrapper .ltoTeam {
    width: 100%;
}

.slider-wrapper .slick-arrow {
    top: 41%;
}

.slider-wrapper .swiper-pagination {
    margin: 0;
}

.thumb-wrap {
    position: relative;
    padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
    height: 0;
    overflow: hidden;
}

.thumb-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    outline-width: 0;
}


.slick-arrow {
    width: 60px;
    height: 60px;
    padding: 0;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 50%;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 0;
    line-height: 0;
}

.slick-arrow::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border-style: solid;
    border-color: #5872b0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.ltoClients .slick-arrow {
    top: 41%;
}

.slick-prev {
    left: -50px;
}

.slick-prev::before {
    border-width: 0 0 10px 10px;
    margin-left: 5px;
}

.slick-next {
    right: -50px;
}

.slick-next::before {
    border-width: 10px 10px 0 0;
    margin-left: -5px;
}

.slick-slider_visible-items .slick-slide {
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.slick-slider_visible-items .slick-list {
    overflow: visible;
}

.slick-slider_visible-items .slick-slide.slick-active {
    opacity: 1;
}

.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin: 30px 0 -10px 0;
    list-style: none;
}

.slick-dots li {
    margin: 10px;
    line-height: 0;
}

.slick-dots button {
    width: 10px;
    height: 10px;
    background-color: #ededed;
    padding: 0;
    border: none;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.slick-dots .slick-active button {
    background-color: #2e4f9c;
}

@media (max-width: 575px) {
    .itemBlock {
        margin: auto;
    }

    .catalog-top .slick-arrow {
        display: none;
    }
}