.NAVBAR
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    width: 60px;
    height: 100%;
    background-color: rgb(15,15,15);
    overflow: hidden;
    transition-duration: 150ms;
    flex-shrink: 0;
}

.NAVBAR:hover
{
    transition-duration: 150ms;
    width: 300px;
}

.NAVBAR_LOGO
{
    display: flex;
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    flex-shrink: 0;
    background-color: rgb(35,35,35);
    padding: 5px;
}

.NAVBAR_SMALL_INFO
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    flex: 1;
    width: 100%;
    padding: 5px;
    gap: 5px;
}

.NAVBAR_CONTROLS
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    width: 100%;
    height: 60px;
    flex-shrink: 0;
    padding: 5px;
}

.NAVBAR_PROFILE_IMG
{
    display: flex;
    box-sizing: border-box;
    object-fit: cover;
    flex-shrink: 0;
    height: 50px;
    width: 50px;
    border-radius: 10px;
}

.FORM
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    width: 350px;
}

.FORM2
{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    gap: 5px;
    width: 100%;
    height: 100%;
}

@media (max-width: 1190px)
{
    .NAVBAR
    {
        display: none;
    }
}