.hidden-menu{
    display: none;
    justify-content: right;
    align-items: flex-start;
    padding: 22% 0%; 
    position: fixed;
    align-self: self-end;
    z-index: 20;
    width: 100dvw;
    height: 80dvh;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(7px);
    border-radius: 20px 0px 0px 20px;
    overflow: hidden;
}

.hidden-menu--card{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 5% 3%;
    gap: 2%;
    border-radius: inherit;
    z-index: 10;
    width: 70dvw;
    height: 50dvh;
    background-color: #eee9e7;
}

.hidden-menu--option{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    text-decoration: none;
    width: 100%;
    flex:1;
    text-align: center;
    color: #eee9e7;
    border-radius: 10px;
    background-color: #fe6300;
}

.hidden-menu--option-language-container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 13px;
    text-decoration: none;
    width: 100%;
    flex:1;
    text-align: center;
    border-radius: 10px;
    color: #fe6300;
}

.hidden-menu--option-language-container-link > img{
    flex: 1;
    width: 2rem;
    height: auto;
    border-radius: 50%;
    object-fit: contain;
}

#close-window--icon{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fe6300;
    margin-right: 2%;
    background-color: #eee9e7;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

#close-window--icon:hover{
    background-color: #fe6300;
    color: #eee9e7;
}