.manufac-tabs .tab-buttons{max-height: 240px;overflow-y: scroll;overflow-x: hidden;display: flex;flex-wrap: wrap;margin-bottom: 30px;}
.manufac-tabs .scrollwrap{position: relative;}
.manufac-tabs .scrollwrap:before{content: ''; position: absolute;z-index: -1; right: 4px;top: 0;bottom: 0;width: 2px;background: #e2e2e2}
.manufac-tabs .tab-buttons::-webkit-scrollbar {width: 10px;}
.manufac-tabs .tab-buttons::-webkit-scrollbar-track {background: transparent; }
.manufac-tabs .tab-buttons::-webkit-scrollbar-thumb {background: #f03854;border-radius: 10px; }
.manufac-tabs .tab-buttons::-webkit-scrollbar-thumb:hover {background: #d0253f; }
.manufac-tabs .tab-buttons .tab-btn{
    flex-basis: 50%;
    max-width: 50%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:5px 10px;
    cursor: pointer;
    opacity: .5
}
.manufac-tabs .tab-buttons .tab-btn.active-btn{opacity: 1}
.manufac-tabs .tab-buttons .tab-btn img{max-height: 100%}
.manufac-tabs .tabs-content{
    padding: 20px;
    background: #f4f5f6;
    box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.12);
}
.manufac-tabs .tabs-content .item:not(:last-child){
    margin-bottom: 20px;padding-bottom: 20px;border-bottom: 1px solid #e0e0e0;
}
.manufac-tabs .tabs-content .sec-title-one{
    margin-bottom: 15px;
    cursor: pointer;
}
.manufac-tabs .tabs-content .sec-title-one h2{
    font-size: 1.25em;
    letter-spacing: 1px;
    padding-bottom: 5px;
    padding-left: 20px;
}
.manufac-tabs .tabs-content .sec-title-one h2:after{
    content: '\f0d7';font-family: 'fontAwesome';color: #f03854; top: 14px; transition: .5s all ease;background: transparent;transform-origin: center;height: 13px;width: 13px;line-height: 13px;
}
.manufac-tabs .tabs-content .text-content{
    font-size: 14px;
    line-height: 1.5em;
    display: none;
}

.manufac-tabs .tabs-content .item.active .sec-title-one h2:after{
    transform: rotate(180deg);
}
@media (min-width:768px){
    .manufac-tabs .tab-buttons .tab-btn{
        flex-basis: 25%;
        max-width: 25%;
        height: 70px;
    }
}
@media (min-width:1200px){
    .manufac-tabs .tab-buttons .tab-btn{
        flex-basis: 20%;
        max-width: 20%;
        height: 80px;
    }
}