/* ================================
    Footer
================================ */
footer .footer-topbar {background-color: #e6e6e6;}
footer .footer-middlebar {background-color: #bfbfbf;}
footer .footer-bottombar {background-color: #e6e6e6;}

/* ================================
    Mobile sidebar
================================ */
.bm-mobile-menu {
    display: none;
}

/* ================================
    @media's
================================ */
@media screen and (max-width: 1600px) {

}

@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1199px) {
    .bm-mobile-menu {
        display: flex;
        position: fixed;
        z-index: 99;
        top: 0;
        right: -400px;
        width: 400px;
        bottom: 0;
        transition: right .5s ease;
        background-color: gray;
    }

    .admin-bar .bm-mobile-menu {
        top: 32px;
    }

    .bm-mobile-menu.active {
        right: 0;
    }

    .bm-mobile-menu .bm-mobile-menu-close {
        position: absolute;
        right: 20px;
        top: 20px;
        color: white;
        cursor: pointer;
    }

    .bm-mobile-menu .bm-mobile-menu-close svg {
        width: unset;
        height: 20px;
    }
}

@media screen and (max-width: 991px) {

}

@media screen and (max-width: 767px) {

}