.wrapper {
    display: flex;
    margin: auto;
    justify-content: space-between;
}

/* Left Navigation */
aside {
    width: 300px;
}

.left-navigation .menu-item.active {
    color: #006EC7;
}

.mask-overlay {
    display: none;
    /* visibility: hidden; */

    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    /* right: -200vw; */
    background: black;
    transition: left 0.5s, visibility 1s;
    opacity: 0.5;

    z-index: 200;
}

#menu-button {
    left: 80%;
    bottom: 20px;

    position: sticky;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-family: Rubik;
    font-style: normal;
    font-weight: normal;

    color: white;
    background: #0079C2;

    visibility: hidden;

    cursor: pointer;
    z-index: 98;

}

#menu-button:hover{
    background: #0568a5 !important;
}

.left-navigation.open {
    /* display: block; */
    visibility: visible;
    left: 0;
}

.mask-overlay.open {
    display: block !important;
    /* visibility: visible; */
    right: 0;
}


/* menu item */
.left-navigation .menu-item {
    padding-bottom: 20px;

    font-family: PT Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 31px;

    color: #BDBDBD;
}

.left-navigation .menu-item:hover {
    color: #006EC7;
    cursor: pointer;
}

/* /Left Navigation */

/* Main Content */
main {
    padding-left: 20px;
    width: 100%;
    border-left: 2px solid #E0E0E0;
}

.main-content {
    width: 100%;
    padding: 10px;
    font-family: PT Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
}

/* /Main Content */


/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .left-navigation {
        width: 250px;

        margin-top: 2%;
        margin-bottom: 2%;
        width: 100%;
        margin: auto;

        visibility: visible;
        transition: left 0.5s, visibility 1s;

        z-index: 97;

    }

}


/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199) {
    aside {
        width: 0;
    }

    #menu-button {
        visibility: visible;
    }

    .left-navigation {
        padding-top: 50px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        visibility: hidden;

        position: fixed;
        min-width: 250px;
        height: 100vh;
        padding-top: 10px;
        margin-top: 0;
        left: -200vw;
        background: white;
        transition: left 0.5s, visibility 1s;
    }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991) {
    aside {
        width: 0;
    }

    #menu-button {
        visibility: visible;
    }

    .left-navigation {
        padding-top: 50px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        visibility: hidden;

        position: fixed;
        min-width: 250px;
        height: 100vh;
        padding-top: 10px;
        margin-top: 0;
        left: -200vw;
        background: white;
        transition: left 0.5s, visibility 1s;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767px) {
    aside {
        width: 0;
    }

    #menu-button {
        visibility: visible;
    }

    .left-navigation {
        padding-top: 50px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        visibility: hidden;

        position: fixed;
        min-width: 250px;
        height: 100vh;
        padding-top: 10px;
        margin-top: 0;
        left: -200vw;
        background: white;
        transition: left 0.5s, visibility 1s;
    }

}
