/* ==========================================
   Mobile Bottom Navigation Styles
   ========================================== */

.mobile-footer {
    position: sticky;
    width: 100%;
    height: 80px;
    color: #FFF;
    font-size: 1rem;
    padding: 0;
    background: white;
    overflow: hidden;
    box-shadow: 0 6.7px 5.3px rgba(0, 0, 0, 0.12), 0 22.3px 17.9px rgba(0, 0, 0, 0.08), 0 100px 80px rgba(0, 0, 0, 0.04);
    border-radius:0px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.mobile-footer a {
    position: relative;
    overflow: hidden;
    width: 20%;
    height: 100%;
    display: inline-block;
    float: right;
    padding: 0;
    color: rgb(109, 115, 212);
    line-height: 12;
    font-size: 0.725em;
    text-align: center;
    text-decoration: none;
    text-indent: -9999rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    will-change: background, line-height;
    transition: background 0.15s ease-in-out, line-height 0.2s ease 0.2s;
}

.mobile-footer a:hover,
.mobile-footer a:focus {
    background-color: transparent;
}

.mobile-footer a:hover svg,
.mobile-footer a:focus svg {
    transform: scale(1.25);
    opacity: 0.6;
}

.mobile-footer a:focus,
.mobile-footer a:active {
    outline: none;
}

.mobile-footer a:focus svg,
.mobile-footer a:active svg {
    opacity: 0.8;
}

.mobile-footer a:active svg {
    opacity: 1;
}

.mobile-footer a svg {
    position: absolute;
    fill: currentColor;
    top: calc(30% + 2.5px);
    left: 30%;
    width: 40%;
    height: 40%;
    transform: scale(1);
    transform-origin: center;
    will-change: opacity, transform;
    transition: opacity 0.2s ease, transform 0.2s ease, top 0.2s ease;
    opacity: 0.4;
    pointer-events: none;
}

.mobile-footer a.active {
    background-color: transparent;
    text-indent: 0;
    line-height: 10;
    transition-delay: 0s, 0s, 0s;
}

.mobile-footer a.active svg {
    top: calc(17.5% + 2.5px);
    transform-origin: center bottom;
    opacity: 1;
}

.mobile-footer a.active:hover svg,
.mobile-footer a.active:focus svg,
.mobile-footer a.active:active svg {
    transform: scale(1);
}

.mobile-footer a.traversing svg {
    transition-delay: 0s, 0s, 0s;
    animation: 0.15s mobile-nav-traversing ease-out both;
}

.mobile-footer .mobile-footer-line {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 5px;
    text-indent: -9999rem;
    transform: translateX(-50%);
    background: currentColor;
    transition: left 0.5s ease-out;
    z-index: 10;
    background-color: rgb(109, 115, 212);
}

@keyframes mobile-nav-traversing {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.4;
    }
}

/* Variant Classes */
.mobile-footer.mobile-footer-light {
    background-color: transparent;
    color: transparent;
}

.mobile-footer.mobile-footer-light svg {
    fill: rgb(109, 212, 154);
}

.mobile-footer.mobile-footer-primary {
    background: magenta;
    color: #FFF;
}

.mobile-footer.mobile-footer-primary svg {
    fill: #FFF;
}
@media (max-width: 767.98px) {
    .mobile-nav-wrapper {
        display: block !important;
    }
}
.mobile-nav-wrapper {
    display: none;
}