.navbar-mobo
{
    height: 10vh;
    display: flex;
    align-items: center;
    display: none;
    /* justify-content: space-between; */
}

.logo
{
    padding: 0 2%;
}

.logo img
{
    height: 7vh;
}

ul
{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

li
{
    list-style: none;
}

.left-side li
{
    height: 10vh;
    display: flex;
    align-items: center;
}

.right-side
{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 0.1;
    position: fixed;
    left: 90%;
}

.account
{
    display: flex;
    align-items: center;
    margin-right: 30%;
}

.account:hover
{
    cursor: pointer;
}

.right-side img
{
    height: 35px;
    border-radius: 50px;
    margin-right: 20%;
}

.dropdown-caret {
    border-top-style: solid;
    border-top-width: 4px;
    border-right: 4px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 4px solid transparent;
}

.dropdown
{
    position: absolute;
    top: 8vh;
    right: 1vh;
    border: 0.5px solid;
    border-radius: 5px;
    border-color: #212121;
    padding: 0.5%;
    box-shadow: 0 0 10px #212121;
    background-color: black;
    z-index: 2;
}

.user-name
{
    margin-bottom: 5%;
    padding: 2%;
    width: 180px;
    border-bottom: 1px solid #212121;
    color: #757575;
}

.user-name:hover
{
    cursor: default;
}

.dropdown ul
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 180px;
}

.dropdown li
{
    padding: 2%;
    width: 180px;
}

.dropdown li:hover
{
    background-color: #424242;
    border-radius: 3px;
}


/* Media query */

@media screen and (max-width: 1200px)
{
    .logo
    {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .burger-menu
    {
        flex: 0.1;
        padding-left: 2%;
    }

    .burger-menu:hover
    {
        cursor: pointer;
    }
    
    .line-1, .line-2, .line-3
    {
        width: 25px;
        height: 3px;
        background-color: #f5f5f5;
        margin: 5px;
    }

    .burger-menu-dropdown
	{
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 10vh;
		left: 0;
		width: 100%;
		margin: auto;
		z-index: 1;
		background-color: rgba(0, 0, 0, 0.9); /* RGB of black */
	}

	.burger-menu-dropdown li
	{
		width: 90vw;
		display: flex;
		justify-content: center;
	}

	.burger-menu-dropdown li:hover
	{
		color: #69f0ae;
		background-color: rgba(66, 66, 66, 0.3);
		border-radius: 8px;
	}

	.hide-burger-menu
	{
		display: none;
	}
}