button:focus{ outline: none; }
.content {
    display: none;
}
.content--active {
display: block;
    -webkit-animation-name: uk-fade;
    animation-name: uk-fade;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.mdc-tab:before {
    content: "";
    position: absolute;
    height: 6px;
    bottom: 0;
    width: 100%;

}
.mdc-tab-scroller__scroll-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 5px;
    height: 6px;
    background: #E6E8F4;
}
.mdc-tab:hover::before {
    content: "";
    position: absolute;
    height: 6px;
    bottom: 0;
    left: 0px;
    background: #9191F6;
    width: 100%;

}
.mdc-tab-indicator .mdc-tab-indicator__content--underline {
    border-top-width: 6px; border-color: #5447F5;border-radius: 5px;
}
.mdc-tab {
    height: 54px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-transform: none;
    letter-spacing: 0;
}
.mdc-tab--active .mdc-tab__text-label {
    color: #000;text-transform:inherit;

}
.mdc-tab--active.mdc-tab:before{border: solid #5447F5 3px;border-radius: 5px;}
.mdc-tab-indicator--active .mdc-tab-indicator__content {
  opacity: 1;
}

.mdc-tab-indicator .mdc-tab-indicator__content {
  transition: 250ms -webkit-transform cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: 250ms -webkit-transform cubic-bezier(0.4, 0, 0.2, 1);
  transition: 250ms transform cubic-bezier(0.4, 0, 0.2, 1);
  transition: 250ms transform cubic-bezier(0.4, 0, 0.2, 1), 250ms -webkit-transform cubic-bezier(0.4, 0, 0.2, 1);
}

.mdc-tab-indicator--no-transition .mdc-tab-indicator__content {
  -webkit-transition: none;
  transition: none;
}

.mdc-tab-indicator--fade .mdc-tab-indicator__content {
  -webkit-transition: 150ms opacity linear;
  transition: 150ms opacity linear;
}

.mdc-tab-indicator--active.mdc-tab-indicator--fade .mdc-tab-indicator__content {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

@media(max-width: 1200px){

   .mdc-tab-bar {
    width: 100%;
    margin-bottom: 1em;
}
.mdc-tab-scroller__scroll-area--scroll {scrollbar-width: none}
    .mdc-tab::before{display: none;}

    .mdc-tab-indicator .mdc-tab-indicator__content--underline{border-top-width:0px;}
    .mdc-tab{
    color:#4848F0;
    border: 1px solid #000;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 0;
    margin: 0.2em;
    min-height: 32px;
    transition: border .5s, color .5s, background .5s;
    -webkit-transition: border .5s, color .5s, background .5s;
    letter-spacing: 0;
    }

    .mdc-tab:hover .mdc-tab__text-label{}
    .mdc-tab__content{margin: auto; }
    .mdc-tab .mdc-tab__text-label {
        font-size: 16px;
        margin: 2px 10px;
        line-height: 1;
        color: #000;
        font-weight: 600;
    }
    .mdc-tab:active, .mdc-tab--active{
        background: #4848F0;
        color: #000;
        border: 1px solid #4848F0;
    }
    .mdc-tab--active.mdc-tab .mdc-tab__text-label {
    color: #FFF;
}
    .mdc-tab-scroller__scroll-content::after{height: 0;}

}
