

/*MENU*/
#menu_toggle {
    position: absolute;
    right: 20px;
    top: 50px;
    font-size: 24px;
}
.menu_toggle{
    display: none;
    margin-right: 20px;
}
#menu{
    z-index: 1000;
    display: block;
    position: relative;
    left: 0;
    top: 0;
    height: 100vh;
    width: 300px;
    background-color: white;
}
#menu_logo{
    width: 140px;
    margin-left: 50px;
    margin-top: 27px;
    margin-bottom: 16px;
}
.menu_headline{
    text-decoration: none;
    color: var(--font-color);
    display: flex;
    padding: 20px 30px;
    width: 100%;
}

.menu_button{
    text-decoration: none;
    color: var(--main-color);
    display: flex;
    padding: 10px 40px;
    width: 100%;
}
.menu_button:hover{
    background-color: var(--main-color);
}
.menu_button:hover > .t4{
    color: white;
}
.menu_button:hover > .nav_icon{
    color: white;
}
.menu_button.active{
    background-color: var(--main-color);
}
.menu_button.active > .t4{
    color: white;
}
.menu_button.active > .nav_icon{
    color: white;
}

/* TABS */
#tab_container{    
    width: 100%;
    height: 100%;
}
.tab{
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: #F5F6F8;
}
.tab_headline{
    display: flex;
    padding: 20px;
    padding-left: 40px;
    font-size: 24px;
    color: var(--main-color);
    align-items: center;
    background-color: white;
}
.tab_headline_button{
    margin-left: 20px;
}
.tab_text{
    margin-top: 50px;
    text-align: center;
}

.nav_icon {
    color: #757A8E;
}


/* PHONES/TABLETS */
@media only screen and (max-width: 600px) {
    /* For tablets: */
    .menu_toggle{
        display: block;
    }
    #menu{
        display: none;
    }
    #menu.active{
        display: block;
        position: absolute;
        width: 100%;    
    }
  }