/*CLASSIC BUTTONS*/
.btn-tabs {
    font-weight: 600;
    font-size: 1.18rem;
    transition: border .5s cubic-bezier(0.65, 0, 0.35, 1);
    line-height: 0.8em;
}

.btn-tabs[data-tab="not-specified"]{
    order: 10;
}

.btn-tabs:hover,
.btn-tabs.active{
    border-color: var(--oea_colors_primary) !important;
}

.btn-tabs span{
    transition: color .5s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-tabs:hover span,
.btn-tabs.active span{
    color: var(--oea_colors_white) !important;
}

.btn-tabs:before{
    content: '';
    width: 100%;
    position: absolute;
    height: calc(100% + 4px);
    left: 0;
    bottom: -4px;
    transform: translateY(100%);
    transition: transform .5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 1;
    background-color: var(--oea_colors_primary);
}

.btn-tabs:hover:before,
.btn-tabs.active:before{
   transform: translateY(0%); 
}

/*IMAGE BUTTONS*/
.btn-img {
    white-space: normal;
    flex: 1 1 auto;
}

.btn-img:before {
    opacity:1;
    z-index:1;
    transition: all .5s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-img:hover:before,
.btn-img.active:before {
    opacity: 1;
    background: var(--oea_colors_primary) !important;
}

.btn-img span {
    transition: all .5s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-img:hover span,
.btn-img.active span {
    color: var(--oea_colors_white) !important;
}

@media only screen and (max-width: 767px) {
.btn-tabs-container {
    gap: 0.5rem;
} 

.btn-tabs {
    font-size: 1rem;
    padding: 0.8rem 1rem;
}

.btn-img {
    min-width: 200px;
}
}