* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

/* MENUS */
header {
    background: linear-gradient(0deg, #173b8a, #0b1d45);
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}


.wrapper {
    display: flex;
}


#sidebar {
    background-color: #0b1d45;
    background: linear-gradient(0deg, #0b1d45, #022266);
    color: white;
    width: 300px;
    height: calc(100vh - 60px);
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 0px;
    overflow: hidden;


}

#sidebar.active {
    width: 300px;
    transition: all .3s ease-in-out;
}

#content {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

#contentData {
    width: 100%;
    height: calc(100vh - 60px);
    max-width: 680px;
}


@media (max-width: 768px) {
    
    #sidebar.active {
        box-shadow: 50px 0px 100px rgb(0 0 0 /0.5);
        flex-shrink: 0;
    }

}

@media (min-width: 768px) {

    #sidebar.active {
        box-shadow: 0 0 0;
    }

}



#sidebar ul {
    list-style: none;
    padding: 0;
}
#sidebar ul li {
    padding: 20px;
    border-bottom: 1px solid #7e7e7e;
    border-radius: 10px;
    margin: 10px;
}
#sidebar ul li:hover {
    background-color: #173b8a8f;
    color: white;
    cursor: pointer;
}

#bottomMenuItems {
    bottom: 0;
    padding: 20px 10px;
}

#logout {
    background: #00000000;
    border: 1px solid tomato;
    color: tomato;
    font-weight: 600;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}
#logout:hover {
    background: tomato;
    color: white;
    transition: all .3s;
}


/* RESET BUTTONS AND MENUS */
button, input[type="button"], input[type="submit"], input[type="reset"], select {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    outline: inherit;
}


iframe {
    border: none;
}


/* BUTTONS */
.optButton {
    color: white;
    padding: 10px;
    display: block;
    border-radius: 6px;
}
.optPrimary {
    background-color: rgb(10, 107, 172);
}

















/* #main-container {
    display: flex;
}

#menuItems > div {
    display: '';
}

.sidebar {
    min-width: 250px;
    max-width: 250px;
    height: 100vh;
    position: fixed;
    overflow-y: auto;
}


.sidebar ul li {
    margin: 10px;
    padding: 10px;
    background-color: rgb(0, 0, 110);
    border-radius: 10px;
    color: white;
    transition: 0.5s;
}

.sidebar ul li:hover {
    background-color: rgb(0, 0, 90);
    cursor: pointer;
    box-shadow: 0px 5px 7px rgb(0, 87, 128);
}

.sidebar ul li.active {
    background-color: white;
    color: black;
}

.divider {
    font-size: 0.7em;
    color: gray;
    display: block;
    margin: 30px auto 0px;
    text-align: center;
    justify-content: center;
    border-bottom: 1px solid grey;
    width: 90%;
}


.card {
    width: 100%;
    max-width: 900px;
}

#content-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 250px;
    overflow-y: auto;
} */