/* Defaults */

#mobileMenuIndicator,
#btnMenuCtrl {
    display: none;
}

@media screen and (max-width: 39.9375em) {
    #mainMenu {
        position: fixed;
        z-index: 1000;
        left: 0;
        bottom: 0;
        width: 100vw;
        height: 43px;
        transition: height 0.15s ease-out;
        border-top: 2px solid var(--color-dk-blue);
        -webkit-box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.33);
        -moz-box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.33);
        box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.33);
    }
    .menu ul {
        justify-content: center;
    }
    .menu li a * {
        display: block;
        padding: 0;
        margin: 0;
    }
    #mobileMenuIndicator {
        width: 100vw;
        display: flex;
        justify-content: space-between;
        height: 43px;
        margin-bottom: 0;
        background-color: var(--color-blue);
        border-bottom: 2px solid var(--color-white);
        font-family: SofiaWebBold, Arial, serif;
        color: var(--color-white);
    }
    #mobileMenuIndicator span {
        text-transform: uppercase;
    }
    #btnMenuCtrl:checked+nav {
        height: 205px;
        transition: height 0.15s ease-in;
    }
    #btnMenuCtrl:checked+nav #mobileMenuIndicator i {
        transform: rotate(180deg);
    }
}