/* START: SIDEBAR */
body.sidebar-open {
    padding-left: 300px;
}

body.sidebar-close {
    padding-left: 70px;
}

body.sidebar-open .sidebar {
    width: 300px;
}

body.sidebar-open .sidebar, body.sidebar-close .sidebar {
    display: block;
}

body.sidebar-open .open-sidebar {
    display: none;
}

body.sidebar-close .sidebar {
    width: 70px;
    padding: 60px 14px 22px;
    text-align: center;
}

body.sidebar-close .sidebar h2 {
    display: none;
}

body.sidebar-close .sidebar hr {
    margin-top: 10px;
}

body.sidebar-close .sidebar a span {
    display: none;
}

body.sidebar-close .sidebar a:hover span {
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    padding-left: 0;
    left: 65px;
    border-radius: 3px;
    padding: 0 8px;
    font-size: 13px;
    z-index: 1;
}

body.sidebar-close .sidebar a > div {
    position: relative;
}

.sidebar {
    display: none;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    color: rgb(255, 255, 255);
    background-color: rgb(43, 108, 176);
    border-bottom-color: rgb(226, 232, 240);
    padding: 24px;
    padding-top: 60px;
    width: 320px;
    overflow-wrap: break-word;
    z-index: 1;
}

.sidebar h2 {
    color: #fff;
    position: relative;
    font-size: 24px;
    line-height: 24px;
    margin: 10px 0 20px;
}

.sidebar h2 > span {
    position: absolute;
    padding: 10px 15px;
    border-radius: 6px;
    top: -10px;
    right: -10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar h2 > span:hover {
    background-color: rgb(49, 130, 206);
}

.sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar a {
    display: flex;
    position: relative;
    color: rgb(255, 255, 255);
    margin-top: 0.5rem;
    margin-bottom: 0px;
    cursor: pointer;
    text-decoration: none;
    outline: transparent solid 2px;
    outline-offset: 2px;
    color: #fff;
    padding: 8px;
    font-weight: 500;
    line-height: 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar a:hover {
    background-color: rgb(49, 130, 206);
}

.sidebar a.active {
    background-color: rgb(44, 82, 130);
}

.sidebar a > div {
    position: absolute;
    width: 30px;
    text-align: center;
}

.sidebar a > span {
    white-space: nowrap;
    padding-left: 35px;
}

.sidebar ul {
    display: flex;
    flex-direction: column;
}

.sidebar hr {
    border-color: rgba(255, 255, 255, 0.24);
    border-width: 1px;
    margin-top: 24px;
}
/* END: SIDEBAR */

/* START: NAVBAR */
.navigation-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    width: 100%;
    background: rgb(43, 108, 176);
    height: 50px;
    padding: 0 25px;
    z-index: 999;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.navigation-header ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation-header li {
    color: #fff;
    font-size: 22px;
    line-height: 50px;
    font-weight: bold;
}

.navigation-header li a {
    color: #fff;
}

.navigation-header li a:hover {
    color: #fff;
    text-decoration: underline;
}

.navigation-header li svg {
    color: #fff;
    font-size: 20px;
    margin: 0 20px;
    opacity: 0.7;
}

.logout{
    width: 5%;
    float: right;
    text-align: right;
}

.userName{
    width: 5%;
    float: right;
    text-align: right;
}

.listOfElements{
    width: 70%;
    float: left;
}

.logout a:hover {
    background-color: rgb(49, 130, 206);
    border-radius: 3px;
    padding: 0 5px;
}

.logout a {
    color: rgb(255,255,255);
    font-size: 30px;
}

.dialog {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 150px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.dialog-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 15px;
    width: 60%;
    text-align:center;
}

.dialog-content span{
    color: black;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

.logo{
    width: 15px;
    height: 15px;
}

.red-fa-times{
    color: white !important;
}

ul li{
    !important;
}

.navbar{
    height: 50px;
    width: 30%;
    float: right;
}
.navBarElements{
    float: right;
}

.element{
    font-weight: normal !important;
    margin-right: 2%;
}

.navBarElements a:hover {
    background-color: rgb(49, 130, 206);
}

/* END: NAVBAR */
