.main_header_navbar{
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: 'Times New Roman', Times, serif;
}
.header-img, .main_header_navbar img{
    width: 70px;
    /* width: 100px; */
}
.header-darkened{
    visibility: hidden;
    position: absolute;
    left: -104px;
}
.header-darkened:hover{
    visibility: hidden;
}


.navbar-page_title h1{
    font-family: auto;
    color: #737373;
    font-size: 1.5rem;
}

#user_profile_default_icon{
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.main_header_navbar .login-link{
    color: #d3d3d3;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0.75;
    transition-duration: 0.33s;
    display: flex;
    align-items: center;
    
}
.main_header_navbar .login-link p{
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.main_header_navbar .login-link:hover{
    color: #ffffff;
    opacity: 1;
}



/*
 B A S E   A N I M A T E D   H E A D E R    I C O N - - - - - - - - - - 
 - - - - - - - - - - - H E A D E R   I C O N
*/
.main_header_navbar{
        height: 85px;
        display: grid;

        /*
         100px - fill space - 100px
         100px - fill space - 100px
        */
        grid-template-columns: 100px auto 100px;
        grid-template-rows: 85px auto 100px;
        padding-top: 0px;
        transition-duration: 0.2s;
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

        position: sticky;
        top: 0px;
    }
    .main_header_navbar .main-navbar-link-section{
        opacity: 0;
        /* transform: translateY(-100px); */
        grid-column: 1/4;
        grid-row: 2/3;
        transition-duration: 0.3s;
        height: 100%;
        width: 100%;
        user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        pointer-events: none;
        /* display: none; */

        grid-column: 1/4;
        grid-row: 2/3;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 10px;
        align-items: center;
        align-content: center;
        

        

    }

    .main_header_navbar .main-navbar-link-section a{
        font-family: 'Times New Roman', Times, serif;
        margin: 0px;
        margin-left: 30px;
        margin-right: 30px;
        font-size: 22px;

        text-decoration: none;
        color: #737373;
        transition-duration: 0.2s;
        padding: 5px;
    }

    .main_header_navbar .main-navbar-link-section a:hover{
        color: white;
        background-color: #232323;
        border-radius: 5px;
    }


.main_header_navbar .navbar-center{
        grid-column: 2/3;
        grid-row: 1/2;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    .main_header_navbar .navbar-right{
        grid-column: 3/4;
        grid-row: 1/2;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .opened .main-navbar-link-section{
        opacity: 1;
        transform: translateY(0px);

        user-select: none;
        -moz-user-select: none;
        -webkit-user-select: None;
        pointer-events: all;
    }

    .main_header_navbar.opened{
        height: 100vh;
        width: 100%;
        position: sticky;
        background-color: #090909;
        z-index: 11;
    }



    .navbar-header-separator-border{
        grid-column: 1 / 4;
    grid-row: 1 / 2;
    /* background-color: #090909; */
    border-bottom: 1px solid #ffffff09;
    height: 100%;
    pointer-events: none;

    }
@media only screen and (max-width: 800px) {
    


    
}


@media screen and (max-width: 600px) {
    .navbar-page_title h1{
        font-size: 1.3rem;
    }
    .header-img, .main_header_navbar img{
        width: 70px;
    }
    
    .main_header_navbar .login-link p{
        font-size: 1rem;
    }
    #user_profile_default_icon{
        width: 40px;
        height: 40px;
    }




    .main_header_navbar{
        height: 85px;
        display: grid;

        /*
         100px - fill space - 100px
         100px - fill space - 100px
        */
        grid-template-columns: 50px auto 50px;
        grid-template-rows: 85px auto 100px; 
        padding-top: 0px;
    }

    .navbar-left{
        opacity: 0;
        transform: translateY(-100%);
        height: 0px;
        width: 0px;
    }

    

    
    /* .main_header_navbar{
        height: 500px;
    } */
}

