/* blocks */
.properyes {
    margin-top: 18px;
    display: grid;
    max-width: 382px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 32px;
}
.properyes__item {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 5px;
    padding-top: 2px;
}
.properyes__name {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 120%;
    color: rgba(45, 45, 45, 0.6);
    display: inline;
}
.properyes__value {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: rgba(45, 45, 45, 0.9);
    vertical-align: middle;
}

.section-item {
    margin-top: 21px;
}
.section-item__group {
    display: flex;
}
.section-item__img-cont {
    width: 606px;
    height: 486px;
    margin-right: 64px;
    flex-grow: 0;
    flex-shrink: 0;
}
.section-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-item__img_main {
}
.section-item__text-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.section-item__title {
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    min-height: 77px;
    color: black;
}
.section-item__group_in-stock {
    align-items: center;
    margin-top: 15px;
}
.section-item__in-stock {
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 120%;
    color: rgba(45, 45, 45, 0.6);
    margin-right: 65px;
}
.section-item__in-stock::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    background-color: #AE2220;
    border-radius: 50px;
}
.section-item__in-stock_green::before {
    background-color: #00BA88;
}
.section-item__art {
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 120%;
    color: rgba(45, 45, 45, 0.6);
}
.section-item__group_price {
    margin-top: 22px;
    align-items: center;
}
.section-item__price {
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    color: black;
    margin-right: 32px;
    display: flex;
    flex-direction: column;
}
.section-item__btn-favorites {
    padding: 16px 25px;
    border: 1px solid #AE2220;
    color: #2D2D2D;
}
.section-item__btn-favorites.disabled {
    padding: 16px 25px;
    border: 1px solid gray;
    color: #ccc;
}
.section-item__btn-favorites.disabled svg {
    display: none;
}
.section-item__btn-favorites.active:not(.disabled) svg path {
    fill: gold;
    stroke: gold;
}
.section-item__btn-favorites:hover {
    filter: none;
}
.section-item__btn-favorites:hover:not(.disabled) svg path {
    stroke: gold;
}
.section-item__btn-favorites-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-right: 10px;
}
.section-item__properyes {
    
}
.section-item__group_handlers {
    margin-top: 26px;
    align-items: center;
}
.section-item__handler-count-group {
    margin-right: 33px;
}
.section-item__handler-count-group .handler-count-group__btn-basket-count {
    background-color: white;
}
.section-item__handler-count-group .handler-count-group__btn-basket-count:hover {
    background-color: gray;
}
.section-item__btn-add {
    transition-property: width, height, background-color;
    transition-duration: 0.5s;
}
.section-item__btn-add.active {
    cursor: default;
}
.section-item__btn-add svg {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}
.section-item__btn-add svg path {
    fill: white;
}
.section-item__description {
    margin-top: 29px;
}