#langModal {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2f4f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#langModal .lang-label {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 26px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

#langModal .lang-label li {
    font-weight: normal;
    cursor: pointer;
}

#langModal .lang-label li:hover {
    opacity: 0.7;
}

#langModal .lang-label .divider {
    font-size: 22px;
}

#langModal .modal-logo {
    max-width: 160px;
    height: auto;
    margin-top: 20px;
}

.loading {
    opacity: 0.5;
    pointer-events: none;
}

@media screen and (max-width: 667px) {
    #langModal .lang-label {
        font-size: 20px;
    }
}
