.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/*VISIBILITY*/
.show-l {
    display: none;
}

@media screen and (min-width: 768px) {
    .hide-m {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .hide-l {
        display: none;
    }
    .show-l {
        display: block;
    }
}


/*GRID*/
.flx {
    display: flex;
}

.flx-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flx-sm-col {
    flex-direction: column;
}

@media screen and (min-width: 64em) {
    .flx-lg-col {
        flex-direction: column;
    }
}

/*TABS*/
.tabs ul {
    display: flex;
    list-style: none;
    margin-bottom: 1rem;
}

.tabs ul li a {
    display: inline-block;
    color: #8325e5;
    padding: .5rem 1rem;
}

.tabs ul li a:hover, .tabs ul li a:focus, .tabs ul li a.is-active {
    background-color: #8325e5;
    color: #FFFFFF;
}

.links.inline {
    display: flex;
}

.links.inline a {
    padding: .5rem 1rem .5rem 0;
    display: inline-block;
}

/*MESSAGES*/
.messages {
    padding: 1rem;
    margin: 1rem 0;
    background: #99dcb0;
}
.password-strength {
    display: none;
    width: 200px;
    max-width: 60%;
}

.text-bold {
    font-weight: 700;
}

.vertical-tabs {
    display: none;
}

/*BREADCRUMB*/
.breadcrumb ol {
    list-style: none;
    display: flex;
}

.breadcrumb ol li a {
    display: inline-block;
    padding: 1rem;
}




/*MENU TOGGLE*/
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 15px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 24px;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 36px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #000;
}

.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: "";
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--arrow.is-active .hamburger-inner::before {
    transform: translate3d(-8px,0,0) rotate(-45deg) scaleX(.7);
}

.hamburger--arrow.is-active .hamburger-inner::after {
    transform: translate3d(-8px,0,0) rotate(45deg) scaleX(.7);
}