@import "../style-scss/import";

.mu-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: $primaryColor;
    color: #FFF;
    text-align: center;
    position: relative;
    z-index: 100;
    width: 100%;
}

.mu-tab-link-highlight {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: $accentColor;
    transition: transform .3s;
    backface-visibility: hidden;
}
// tab
.mu-tab-link{
    min-height: 48px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    background: none;
    appearance: none;
    text-decoration: none;
    border: none;
    outline: none;
    flex: 1;
    color: inherit;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: normal;
    align-items: center;
    color: rgba($alternateTextColor, .7);
    transition: all .45s $easeInOutFunction;
    cursor: pointer;
}
.mu-tab-active{
    color: $alternateTextColor;
}
.mu-tab-text{
    &.has-icon {
        margin-top: 8px;
    }
}