.navbar {
    display: flex;
    width: auto;
    height: 100px;
    padding: 0 32px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;

    background: #101F36;
    box-shadow: 8px 4px 45px 0 rgba(0, 0, 0, 0.05);
}

.navbar .left {
    display: flex;
    align-items: center;
    gap: 80px;
}

.navbar .left .logo img {
    width: 100px;
    height: 38.895px;
    flex-shrink: 0;
}

@media only screen and (max-width: 700px){
    .navbar .left{
        width: 100%;
        justify-content: space-between;
    }

    .navbar .left .logo {
        width: 78px;
        height: 31.872px;
        flex-shrink: 0;
    }

    .navbar .left .logo img {
        width: 78px;
        height: 31.872px;
        flex-shrink: 0;
    }
}

.navbar .left .text-long {
    display: flex;
    align-items: flex-end;
    gap: 4px;

    color: #ABADE8;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    text-transform: capitalize;
}


@media only screen and (max-width: 700px){

    .navbar .left .text-long {
        display: none;
    }
}

.navbar .left .text-short {
    display: none;
    align-items: flex-end;
    gap: 4px;

    color: #ABADE8;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    text-transform: capitalize;
}



@media only screen and (max-width: 700px){

    .navbar .left .text-short {
        display: flex;
        color: #ABADE8;
        font-family: "Plus Jakarta Sans", serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 26px; /* 185.714% */
        text-transform: capitalize;
    }
}

.navbar .right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .right .user {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.navbar .right .user .logo{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .navbar{
        align-self: stretch;
        display: flex;
        padding: 16px 20px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        height: 63px;
    }

    .navbar .right{
        display: none;
    }

}

.right .submenu-nav{
    display: none;
    position: absolute;
    top: 83px;
    right: 0;
    width: 200px;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 100;
}

.right .submenu-nav .link-submenu{
    display: block;
    padding: 10px 20px;
    font-family: "Plus Jakarta Sans", serif;
}

.right .submenu-nav .link-submenu .btn-submenu{
    display: block;
    padding: 10px 20px;
    color: #000;
    font-family: "Plus Jakarta Sans", serif;
    font-size: 14.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    text-decoration: none;
}

.right .submenu-nav .link-submenu .btn-submenu-logout{
    display: block;
    padding: 10px 20px;
    color: #000;
    font-family: "Plus Jakarta Sans", serif;
    font-size: 14.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    text-decoration: none;
}