#app_mainmenu{
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}

#app_mainmenu select{
    border: solid 2px var(--main-color);
    padding: 10px 20px;
    font-size: 18pt;
    -webkit-appearance: none;
    appearance: none;
    min-width: 200px;
    cursor: pointer;
    border-radius: 10px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

#app_mainmenu select:hover{
    background-color: rgba(0, 0, 0, .1);
}

#app_mainmenu select:focus{
    outline: none;
}

#app_mainmenu select option{
    text-align: center;
}

#app_mainmenu select option:hover,
#app_mainmenu select option:selected{
    background-color: var(--main-color);
}

#app_mainmenu .select-lang{
    position: relative;
    margin-top: 20px;
    z-index: 5;
}

#app_mainmenu .select-lang input[name='language']{
    width: 0;
    height: 0;
}

#app_mainmenu .select-lang input[name='language'] + label{
    opacity: .5;
    font-style: italic;
    cursor: pointer;
}

#app_mainmenu .select-lang input[name='language']:checked + label{
    color: var(--main-color);
    opacity: 1;
    font-style: normal;
    font-weight: bold;
}

#app_mainmenu .description{
    margin-bottom: 20px;
    margin: 20px auto 20px 0;
}

#app_mainmenu .description > span{
    line-height: 1;
}

#app_mainmenu #user-name{
    width: 90%;
    text-align: center;
    border: none;
    outline: none;
    font-size: 75pt;
    margin-bottom: 75px;
    margin-top: 75px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

#app_mainmenu .buttons-wrapper{
    margin-top: 50px;
}

#app_mainmenu #user .btn-wrap{
    margin: 0 10px;
}

#app_mainmenu #user .btn-wrap .button{
    font-size: 8pt;
}

#app_mainmenu .pad{
    position: absolute;
    bottom: 0; left: 0; right: 0;
}

#install_app{
    font-size: 8pt;
    padding: 10px;
    width: fit-content;
}

#install_app img{
    height: 15px;
    width: auto;
    margin-right: 7.5px;
    filter: brightness(0) invert(1);
}