.languages {
    position: relative;

    font-size: 0.8em;
}

.languages:hover .dropdown {
    display: flex;
}

.languages .toggle, .languages .dropdown  {
    background: #00000099;
    color: white;
    border-radius: 8px;
    padding: 0 10px;
    cursor: pointer;
    font-weight: bold;
}

.languages .toggle {
    margin-top: 15px;
    padding: 5px 10px;
    height: 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.languages img {
    object-fit: contain;
    max-height: 100%;
}

.languages .dropdown {
    position: absolute;
    overflow: hidden;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    
    z-index: 99;
}

.languages .dropdown .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    padding: 5px 10px;
    padding-right: 25px;
    width: calc(100% - 20px);
    gap: 5px;
    
    color: white;
    text-decoration: none;
}

.languages .dropdown .item:hover {
    color: #ffcc30;
    background: black;
}