/*START Верхняя секция*/
.section-top__inner {
    display: flex;

}

.section-top__l {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    padding-right: 30px;
}

.section-top__r {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 32%;
}

.section-top__icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -30px;
    margin-top: 30px;
}

.section-top__icon-item {
    display: flex;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 44%;
    margin-bottom: 30px;
}

.section-top__icon-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 20px;
}

.sticker {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 25px;
    box-shadow: 0px 8px 16px rgba(142, 141, 208, 0.12);
    border-radius: 10px;
    margin-bottom: 40px;
}

.sticker_green {
    background: #86BC24;
    color: #fff;
}

.sticker_white {
    background: white;
}

.sticker span {
    display: block;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 120%;
}


/* END Верхняя секция*/
/*START CATALOG*/
.section__item {
    background: #F7F7FD;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid #C9C8D3;
}

.section__item:last-child {
    margin-bottom: 0;
}

.section__head {
    display: flex;
    align-items: center;

}

.section__title {
    font-family: "Montserrat-Medium";
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(100% - 60px);
    font-size: 26px;
    line-height: 110%;
    color: #86BC24;
}


.section__color-wrap {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    display: flex;
    align-items: center;
}

.section__color-img-wrap {
    position: relative;
    display: inline-block;
}

.section__color-img-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
}

.section__color-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #212121;
    margin-left: 20px;
}

.section__color-img {
    width: 45px;
    height: 45px;
}

.section__body {
    display: none;
}

.section__body-wrap {
    overflow: auto;
    width: 100%;
}

.table {
    display: flex;
    justify-content: space-between;
    background: #fff;
}

.section__elem {
    display: flex;
    align-items: center;
}

.table_th .section__elem {
    background: #E8E6F8;
}

.table_sklad .section__elem {
    background: #EEFCD0
}

.table_td .section__elem {
    border-bottom: 1px solid #C9C8D3;
}

.table_td:last-child {
    border-bottom: none;
}

.section__elem {
    padding: 5px 15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;

}

.table_th .section__elem {
    font-family: "Montserrat-Medium";
    font-size: 16px;
}

.section__elem_color .section__color-img-text {
    font-size: 14px;
}

.section__elem_color .section__color-img {
    width: 30px;
    height: 30px;
    overflow: hidden;
}

.section__elem_color {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 50px;
    order: 0;
}

.section__elem_name {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    min-width: 410px;
    order: 1;
}


.section__elem_thick {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100px;
    order: 2;
}

.section__elem_size {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 150px;
    order: 3;
}

.section__elem_price {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 120px;
    order: 4;
}

.section__elem_protect {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 120px;
    order: 5;
}

.section__elem_weight {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 80px;
    order: 6;
}

.section__elem_palet {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 130px;
    order: 7;
}

.table_prutok .section__elem_form {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 120px;
    order: 2;
}

.table_prutok .section__elem_size {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 170px;
    order: 3;
}

.table_prutok .section__elem_weight {
    order: 4;
    flex-basis: 150px;
}

.table_prutok .section__elem_price {
    order: 5;
    flex-basis: 170px;
}

.btn-toggle {
    display: block;
    position: relative;
    background: #86BC24;
    border-radius: 10px;
    width: 55px;
    height: 55px;
    cursor: pointer;
    margin-left: 100px;
    font-size: 55px;
}

.btn-toggle.active {
    transform: rotate(180deg);
}

.btn-toggle:after {
    display: block;
    content: url("/local/assets/img/svg/down.svg");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);

}


.section__filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.section__filter-item {
    display: flex;
    align-items: center;
}

.section__filter-item label {
    display: flex;
    align-items: center;
    margin-right: 50px;
    cursor: pointer;
}

.section__filter-item img {
    padding-right: 5px;
    padding-left: 10px;
}

.section__filter-item label:last-child {
    margin-right: 0;
}

.section__filter-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #212121;
    margin-left: 10px;
}


.popup_tooltip {
    padding: 30px !important;
}

.popup-section__title {
    font-weight: 500;
    font-size: 26px;
    line-height: 110%;
    color: #86BC24;
    padding-bottom: 10px;
    border-bottom: 1px solid #C9C8D3;
}

.popup-section__tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
}

.popup-section__tabs-item {
    position: relative;
    padding: 30px 30px 10px;
    color: #8A8894;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    cursor: pointer;
}

.popup-section__tabs-item.active {
    color: #212121;
}

.popup-section__tabs-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: #C9C8D3;
}

.popup-section__tabs-item.active:after {
    height: 5px;
    background: #86BC24;
}

.popup-section__block {
    overflow: auto;
    padding-top: 30px;
}

.popup-section__block-item {
    display: none;
}

.popup-section__block-item.active {
    display: block;
}

.popup-section__block .material__block,
.popup-section__block .material__inner {
    border: none;
    margin: 0;
    padding: 0;
}

.material_prop .material__item {
    width: 100%;
}


/*DETAIL*/


.section__description .material__block {
    border-top: 1px solid #9D99AC;
}

.material__toggle {
    display: none;
}

.material__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat-Medium";
    font-size: 32px;
    line-height: 120%;
    color: #212121;
    width: 470px;
    cursor: pointer;
}

.material__btn {
    display: flex;
    align-items: center;
}

.material__btn.active {
    transform: rotate(180deg);
}

.material__inner {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column;*/

}

.section__description .material__inner,
.section__appl .material__inner {
    margin-bottom: 0;
}

.material__inner_doc,
.material__inner_2,
.material__inner_3 {
    flex-direction: row;
}
.material__inner_doc,
.material__inner_2 {
    justify-content: space-between;
}

.material__inner_2 .material__item {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 48%;
}

.material__item-doc {
    display: flex;
    align-items: flex-start;
    font-family: 'Montserrat-Medium';
    margin-bottom: 40px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 32%;
    font-size: 16px;
    line-height: 130%;
    color: #212121;
}
.material__item-doc:hover{
    color:#86BC24 ;
}
.material__item-doc img {
    margin-right: 15px;
    width: 24px;
}

.material__inner_3 .material__item-title {
    display: block;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    color: #86BC24;
}

.material__inner_3 .material__item {
    margin-bottom: 50px;
}

.material__text {
    overflow: auto;
}

.material__text p b {
    font-family: "Montserrat-Medium", sans-serif;
}

.material__text table {
    border: unset !important;
}

.material__text td,
.material__text th {
    border: unset;
    width: 320px;
}

.popup .material__text td,
.popup .material__text th {
    width: 130px;
}

.popup .material__text tr td:first-child,
.popup .material__text tr th:first-child {
    width: 300px;
}

.material__text th,
.material__text td {
    border-bottom: 1px solid #C9C8D3;
}


.block-link {
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.block-link ul {
    margin: 0 15px;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: calc(25% - 30px);
}

.block-link ul li {
    list-style: none;
    padding-left: 0 !important;
}

.block-link ul li:before {
    display: none !important;
}

.block-link ul li:first-child {
    font-family: 'Montserrat-SemiBold';
    padding-bottom: 20px;
}

.block-link ul li a {
   font-family: 'Montserrat-Regular';
    font-size: 16px;
}


@media screen and (max-width: 1024px) {

    .section-top__inner {
        flex-wrap: wrap;
    }

    .section-top__l,
    .section-top__r {
        flex-basis: 100%;
        padding-right: 0;
    }

    .section-top__r {
        display: flex;
        justify-content: space-between;
    }

    .sticker {
        flex-grow: 0;
        flex-shrink: 1;
        flex-basis: 48%;
        margin-bottom: 0;
    }

    .section__head .btn,
    .sticker .btn {
        padding: 15px 30px;
        font-size: 16px;
    }

    .section-top__text p {
        font-size: 16px;
    }

    .section-top__icon {
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .section__item {
        padding: 25px 20px;
        margin-bottom: 20px;
        background: #fff;
    }

    .material__title {
        font-size: 24px;
        max-width: 350px;
    }

}

@media screen and (max-width: 768px) {
        .block-link ul {
        flex-basis: calc(50% - 30px);
    }

    .material__inner {
        overflow: auto;
    }

    .section__title {
        font-size: 18px;
    }


    .material__text a,
    .material__text li,
    .material__text p {
        font-size: 16px !important;
    }

    .material__item-doc {
        flex-basis: 50%;
    }

    .material__inner {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .material__inner_2 .material__item {
        flex-basis: 100%;
    }
}

@media screen and (max-width: 700px), (max-width: 850px) and (max-height: 500px ) {
          .block-link ul {
        flex-basis: calc(100% - 30px);
    }

    .sticker {
        padding: 25px 20px;
    }

    .material__title {
        font-size: 20px;
        max-width: 100%;

    }

    .material__item-doc {
        flex-basis: 100%;
    }

    .material__item-doc:last-child {
        margin-bottom: 0;
    }

    .material__inner_3 .material__item {
        margin-bottom: 30px;
    }

    .material__inner_3 .material__item:last-child {
        margin-bottom: 0;
    }

    .material__inner_3 .material__item-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .material__inner {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .section__title {
        margin-bottom: 20px;
    }

    .section-top__icon-item {
        flex-basis: 100%;
    }

    .section__item {
        padding: 20px;
    }

    .section-top__icon {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .section-top__r {
        flex-wrap: wrap;
    }

    .sticker {
        flex-basis: 100%;
    }

    .sticker:last-child {
        margin-top: 30px;
    }

}