.js-tabs__toggle.active {
    color: #2B2D33;
}

.js-tabs__toggle.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    bottom: -1px;
    background-color: #FF0000;
    left: 0;
    right: 0;
}

.js-tabs__toggle {
    margin-right: 45px;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: rgba(43, 45, 51, 0.5);
    padding-bottom: 18px;
    position: relative;
    cursor: pointer;
}

.js-tabs__toggle:last-child {
    margin-right: 0;
}

.js-tabs__tab-panel {
    display: none;
}

.js-tabs__tab-panel.active {
    display: block;
}
.js-tabs__header {
    align-items: center;
    justify-content: space-between;
    display: none;
}
.js-tabs__header::after {
    display: none;
    content: '';
    width: 25px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../img/shevron.svg');
    transition: transform .3s ease-in-out;
}
.js-tabs__header-title {
    display: inline-block;
    padding: 0 0 4px;
    border-bottom: 2px solid transparent;
    font-size: 22px;
}
.js-tabs__header-title {
    border-color: red;
}
/*
.js-tabs__tab-panel.active-mob .js-tabs__header-title {
    border-color: red;
}
 .js-tabs__tab-panel.active-mob .js-tabs__header::after{
    transform: rotate(180deg);
} */

@media (max-width: 767.98px) {
    .js-tabs__tab-panel {
        display: block;
        margin-bottom: 40px;
    }
    .js-tabs__header {
        display: flex;
    }
    .js-tabs__content {
        display: block;
        margin-top: 15px;
        margin-bottom: 20px;
        
    }
    /* .js-tabs__content {
        display: none;
        margin-top: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    .js-tabs__tab-panel.active-mob .js-tabs__content {
        display: block;
    } */
    .car-detail-description__wrap {
        margin-bottom: 0 !important;
    }
}