.section__tech__char {
    margin-bottom: 100px;
}

.tech__char__select__wrapper {
    display: flex;
    margin-bottom: 30px;
    overflow-x: auto;
}

.tech__char__select__box {
    width: auto;
    /*width: 265px;*/
    border: 1px solid #FFBA00;
    border-radius: 12px;
    padding: 15px 15px 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-right: 20px;
    white-space: nowrap;
}
.tech__char__select__box.active-select.disabled {
    border: 1px solid #FFBA00;
}
.tech__char__select__box.disabled {
    border: 1px solid #e0e0e1;
}

.tech__char__select__box:last-child {
    margin-right: 0;
}

.tech__char__select-disable-icon {
    position: relative;
    width: 25px;
    height: 24px;
    border: 1px solid #FFBA00;
    background-color: transparent;
    border-radius: 50%;
}

.tech__char__select__box.active-select .tech__char__select-disable-icon {
    border: 1px solid #FFBA00;
}

.tech__char__select__box.disabled .tech__char__select-disable-icon {
    border: 1px solid #e0e0e1;
}

.select-active-icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 1px solid #FFBA00;
    background-color: #FFBA00;
    border-radius: 50%;
}

.tech__char__info__wrapper {
    width: 85%;
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.tech__char__info__parameter {
    display: flex;
    align-items: center;
}

.tech__char__info__parameter > img {
    margin-right: 5px;
}

.tech__char__info__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    row-gap: 8px;
}


.tech__char__table {
}

.tech__char__table__header__wrapper {
    background-color: #3E3E3E;
    padding: 35px 15px;

}

.tech__char__header-row {
    display: flex;
    align-items: center;
}

.tech__char__header-left-col {
    width: 100%;
    max-width: 350px;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 700;
    font-size: 23px;
}

.tech__char__header-col-box {
    width: 100%;
    text-align: center;
}

.tech__char-row {
    display: flex;
    padding: 15px 10px;
}

.tech__char-row:nth-child(odd) {
    background: #F3F3F3;
}


.tech__char-left-col {
    width: 100%;
    max-width: 350px;
}

.tech__char-col {
    width: 100%;
    text-align: center;
}

.tech__char__header-col-box {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
}

.header-col-box__wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;
}

.header-col-box__parameter > span, .header-col-box__wrapper span {
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
}

.header-col-box__parameter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 10px;
}

.header-col-box__parameter > img {
    margin-right: 10px;
}

.tech__char__text__info {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 15px;
    color: #000000;
}

@media (max-width: 1200px) {
    .tech__char__select__wrapper {
        overflow-x: scroll;
    }

    .header-col-box__parameter {
        column-gap: 0;
    }
}

@media (max-width: 991px) {
    .header-col-box__parameter {
        column-gap: 5px;
    }

    .tech__char__table__header__wrapper {
        display: none;
    }

    .tech__char__select__wrapper {
        margin-bottom: 15px;
    }

    .section__tech__char {
        margin-bottom: 50px;
    }
}