@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* #2E4259 */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* border: 1px dashed red; */
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #000;
}

main {
    display: flex;
    min-height: 100vh;
}

.header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 330px;
    background: #141C25;
    color: #fff;
    transition: .5s;
}

.header .back {
    background: #0928dd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 27px;
    left: calc(100% - 12px);
    cursor: pointer;
}

.header .logo {
    width: 100%;
}

.header .logo img {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    transition: .5s;
}

.header ul {
    list-style: none;
    width: 100%;
    padding-left: 0;
}

.header ul li {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

.header ul li:hover {
    background-color: #2E4259;
    transition: 0.2s;
}

.header ul li i {
    padding: 0 10px;
    font-size: 20px;
}

.header ul li a {
    width: 100%;
    height: 100%;
    padding: 15px;
    font-style: none;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header .logout {
    display: flex;
    /* margin-top: auto; */
    padding: 20px;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.2s;
    align-items: center;
    gap: 5px;
    list-style: none;
    text-decoration: none;
    color: #fff;
}

.header .logout:hover {
    background-color: #2E4259;
    transition: 0.2s;
}

.menu_disabled a,
.menu_disabled a:hover {
    pointer-events: none;
    cursor: not-allowed;
    background: #8080808f;
    color: #a0a0a0 !important;
}

.user_navbar {
    position: relative;
    display: flex;
    /* background: #021F5A; */
    background: #2E4259;
    padding: 24px 16px;
    gap: 16px;
    border-radius: 8px;
    /* margin: 0 auto; */
    width: 90%;
    transition: 1s;
    margin-top: auto;
    margin-bottom: 10px;
}

/* .user_navbar_closed {
    position: relative;
    display: flex;
    background: none;
    transition: 1s;
    padding: 0;
    transition: 1s;
} */

/* .user_navbar_closed .content {
    position: absolute;
    left: -90px;
    opacity: 0;
    transition: .5s;
} */

.avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background: #7b7b7b; */
    /* background: #132847; */
    background: transparent;
    border: 2px solid #ABABAB;
}

.content {
    position: absolute;
    left: 70px;
    opacity: 1;
    transition: 1s;
}

.content .name {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    word-break: break-word;
}

.content .email {
    color: #808080;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
    word-break: break-word;
}