/* Табы карточки товара: Характеристики / Описание */
.product-card-tabs {
    margin-top: 55px;
    width: 100%;
}

.product-card-tabs__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-card-tabs__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #e8e9ed;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-weight: 600;
}

.product-card-tabs__btn:hover {
    border-color: rgba(67, 170, 139, .6);
}

.product-card-tabs__btn--active {
    border-color: #43aa8b;
}

.product-card-tabs__btn--active .product-card-tabs__btn-text {
    color: #43aa8b;
}

.product-card-tabs__btn:first-child {
    border-radius: 8px 0 0 8px;
}

.product-card-tabs__btn:last-child {
    border-radius: 0 8px 8px 0;
}

.product-card-tabs__pane {
    display: none;
    margin-top: 40px;
}

.product-card-tabs__pane--active {
    display: block;
}

/* растягиваем содержимое табов на всю ширину */
.product-card-tabs .product-card-section-product-card__wrapper-other-information {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 100%;
    padding-right: 0;
    margin-top: 0;
}

.product-card-tabs .product-card-section-product-card__block-description-product {
    margin-top: 0;
    padding: 0;
}

/* адаптив */
@media screen and (max-width: 730px) {
    .product-card-tabs {
        margin-top: 24px;
    }

    .product-card-tabs__pane {
        margin-top: 24px;
    }

    .product-card-tabs .product-card-section-product-card__wrapper-other-information {
        margin-top: 0;
    }

    .product-card-tabs .product-card-section-product-card__wrapper-other-information .section-tabs {
        margin-top: 24px;
    }

    .product-card-tabs .product-card-section-product-card__block-description-product {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        margin-top: 0 !important;
        padding: 0;
    }
}
