.section_list {

}

.section-list__header {
    position: relative;
}

.section-list__header > a {
    color: #797A79;
}

@media (min-width: 390px) {
    .section-list__header > a {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

.section_list__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.section_list__item {
    display: flex;
    align-items: stretch;
    max-width: calc((100% - 64px) / 3);
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #DBDEE0;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 32px;
    min-height: 130px;
}

.section_list__item:hover .section__name{
    color: #EC1C23;
}

.section_list__item img {
    max-width: 156px;
    max-height: 112px;
    object-fit: contain;
    object-position: center;
    flex-basis: 156px;
    flex-grow: 0;
}

.section__description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    padding-top: 19px;
    padding-bottom: 18px;
    flex-basis: calc(100% - 156px);
}

.section__name {
    font-size: 18px;
    line-height: 1.3;
    color: #222222;
}

.section_list__item.sale {
    position: relative;
}

.section_list__item.sale:after {
    content: "";
    position: absolute;
    width: 64px;
    height: 64px;
    display: block;
    background-image: url("image/sale-icon.svg");
    background-size: 64px;
    background-repeat: no-repeat;
    right: -24px;
    top: -18px;
}

.section_list__item .svg-icon {
    display: none;
}

@media (max-width: 900px) {
    .section_list__item {
        max-width: calc((100% - 32px) / 2);
    }
}

@media (max-width: 600px) {
    .section_list__item .svg-icon {
        display: block;

    }

    .section_list__item .svg-icon svg {
        width: 24px;
        height: 24px;
    }

    .section_list__item img,
    .section_list__item.sale:after {
        display: none;
    }

    .section-list__header h1 {
        font-size: 18px;
        line-height: 21px;
    }

    .section_list__item {
        max-width: calc(100% / 3);
        border-right: 1px solid #DBDEE0;
        border-bottom: 1px solid #DBDEE0;
        border-left: none;
        border-top: none;
        border-radius: 0;
        margin: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 90px;
        padding: 7px;
    }

    .section__name {
        font-size: 12px;
        line-height: 14px;
    }

    .section__quantity {
        display: none;
    }

    .section_list__items {
        border-left: 1px solid #DBDEE0;
        border-top: 1px solid #DBDEE0;
    }

    .section__description {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .section_list__item.sale .svg-icon{
        position: relative;
    }

    .section_list__item.sale .svg-icon:after{
        content: "";
        position: absolute;
        background-image: url("image/sale-icon.svg");
        background-position: center;
        background-repeat: no-repeat;
        width: 16px;
        height: 16px;
        left: 23px;
        bottom: 16px;
        pointer-events: none;
    }

}

@media (max-width: 320px) {
    .section-list__header{
        margin-bottom: 10px;
    }


}

@media (max-width: 767px) {
    .section-list__header h1 {
        text-align: left;
    }
}

