.product-tabs {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin: 0;
    font-size: 24px;
    color: #aaa;
    margin-bottom: 25px;
}
.product-tabs_decorated {
    position: relative;
    margin: 40px 0 16px 0;
}
.product-tabs_decorated:before {
    bottom: 8px;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #C1C1CA;
    position: absolute;
    left: 0;
    z-index: 1;
}

.product-tabs_decorated .product-tabs__item {
    background-color: #F9F9FD;
    z-index: 2;
}
.product-tabs__item {
    padding: 0;
    margin: 0;
    padding-right: 30px;
}
.product-tabs__item:before {
    display: none;
}
.product-tabs__item:last-child {
    margin-right: 0px;
}
.product-tabs__link {
    color: #959394;
    text-decoration: none;
    font-family: "Nunito",Helvetica,Arial,sans-serif;
    padding-bottom: 10px;
    position: relative;
    font-weight: bold;
    font-size: 20px;
}

.product-tabs__link:hover {
    color: #5ea724;
}
.product-tabs__link.active {
    color: #5ea724;
}
.product-tabs__link.active:after {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background-color: #5ea724;
    bottom: 0;
    left: 0;
}
product-tabs-content {
    position: relative;
}

.product-tabs-content > .product-tab {
    display: none;
}

.product-tabs-content > .product-tab.active {
    display: block;
}

.product-tab .slider{
    min-height: 470px;
}

@media (max-width: 767.98px) {
    .product-tabs {
        font-size: 20px;
    }
}
@media (max-width: 575.98px) {
    .product-tab .slider{
        min-height: auto;
    }
}
