header
{
    position: absolute;
    width: 100%;
    background-color: #2B2E4A;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    color: white;
}

.logo_container
{
    height: 80%;
    display: flex;
    margin-left: 8px;
}

.logo_img
{
    border-radius: 50%;
}

.logo_name
{
    text-transform: uppercase;
    font-size: 24px;
    height: 26px;
    align-self: center;
    font-weight: bold;
    margin-left: 4px;
    font-family: Arial, Helvetica, sans-serif;
}

.nav_container
{
    height: 100%;
}

.navigation
{
    display: flex;
    height: 100%;
    align-items: center;
}

.nav_item
{
    display: flex;
    justify-self: center;
    border-left: 1px solid black;
    height: 100%;
    align-items: center;
    padding: 0 10px;
}

.nav_item:last-child
{
    border-right: 1px solid black;
}

.nav_item a
{
    text-decoration: none;
    color: white;
    font-weight: 100;
    text-transform: uppercase;
}

.item_profile
{
    display: none;
}

.user_container
{
    margin-right: 20px;
}

.user_profile
{
    display: flex;
    flex-direction: row;
    right: 20px;
    top: 5px;
    align-items: center;
    height: 50px;
    cursor: pointer;
}

.profile_img
{
    height: 100%;
    border-radius: 50px;
    margin-right: 10px;
}

.profile_info
{
    display: flex;
    flex-direction: column;
}

.profile_name
{
    font-size: 18px;
}

.bot_status
{
    margin-top: 5px;
    font-size: 14px;
}

.btn_auth
{
    position: relative;
    outline: none;
    border: 1px solid black;
    text-decoration: none;
    color: white;
    border-radius: 13px;
    padding: 8px 12px;
    /* top: 50%;
    transform: translateY(-50%);
    right: 20px; */
    cursor: pointer;
}
.checkbox 
{
    position: absolute;
    display: none;
    height: 34px;
    width: 34px;
    top: 10px;
    right: 16px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.hamburger-lines 
{
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 2;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-lines .line 
{
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: white;
}

.hamburger-lines .line1 
{
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}
  
.hamburger-lines .line2 
{
    transition: transform 0.2s ease-in-out;
}
  
.hamburger-lines .line3 
{
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

input[type="checkbox"]:checked ~ .nav_container
{
    position: absolute;
    height: auto;
    width: 100%;
    top: 60px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.30);
}

input[type="checkbox"]:checked ~ .nav_container .navigation {
    display: flex;
    background-color: #2B2E4A;
    width: 100%;
    margin: 0;
    flex-direction: column;
    border-top: 1px solid black;
}

input[type="checkbox"]:checked ~ .nav_container .navigation .nav_item
{
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-left: 0px;
    width: 100%;
    border-bottom: 1px solid black;
}
 
input[type="checkbox"]:checked ~ .nav_container .navigation .nav_item:last-child
{
    border-right: 0px;
}

input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
}

input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
}

input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
}

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

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

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

    .navigation
    {
        display: none;
    }

    .checkbox 
    {
        display: flex;
    }

    .hamburger-lines
    {
        display: flex;
    }

    .user_container
    {
        display: none;
    }
}

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

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