/* main */
.main__cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main__cat {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    width: calc(50% - 50px);
    background: #FAFAFF;
    min-height: 200px;
    margin-bottom: 20px;
}

.main__cat__title {
    font-size: 24px;
    font-weight: 700;
    color: #4D4D6D;
    min-height: 50px;
    flex-grow: 1;
    padding-bottom: 10px;
}

.main__cat__wrap {
    display: flex;
    align-items: end;
}

.main__cat__links {
    width: 50%;
    padding-right: 15px;
}

.main__cat__link {
    padding-top: 10px;
}

.main__cat__link a {
    font-size: 18px;
    color: #23234B;
}

.main__cat__img {
    width: 50%;
}

.main__cat__img img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 960px) {
    .main__cat {
        width: calc(100% - 40px);
    }

    .main__cat__wrap {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 540px) {
    .main__cat__links {
        width: 100%;
        order: 1;
    }
    
    .main__cat__img {
        width: 100%;
    }
}

/* goods */
.t-store__prod-popup__btn {
    display: block;
    width: 100%;
}

.t-product__option-selected {
    width: 100%!important;
}

.t-store__prod-popup__text,
.t-store__tabs__content {
    font-size: 14px;
}

.t-typography__characteristics {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #E7E7F1;
}

.t-store__tabs__controls {
    background: #FAFAFF;
    border-radius: 8px;
    padding: 4px;
    max-width: 760px;
}

.t-store__tabs__button,
.t-store__tabs__button:first-child {
    border: 0!important;
    border-radius: 6px;
    padding: 12px!important;
    border: 1px solid #FAFAFF;
}

.t-store__tabs__button_active {
    background: #fff;
    border: 1px solid #E7E7F1!important;
}

.t-store__tabs__button-title {
    color: #4D4D6D!important;
}

.t-store__tabs__button_active .t-store__tabs__button-title {
    color: #23234B!important;
}

.product__benefits {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 10px 40px 10px;
}

.product__benefits__item {
    width: calc(33% - 50px);
    padding: 20px 20px 40px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #FAFAFF;
    display: flex;
    color: #4D4D6D;
}

@media screen and (max-width: 960px) {
    .product__benefits__item {
        width: calc(100% - 40px);
    }
}

.product__benefits__ico {
    min-width: 60px;
    max-width: 60px;
}

.product__benefits__text {
    padding-left: 20px;
    color: #4D4D6D;
}

.product__benefits__text h4 {
    font-size: 18px;
    padding: 10px 0;
    color: #23234B;
}