.modal-language-wrapper {
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
}

.modal-language-dialog {
    background: #fff;
    height: auto;
    z-index: 10000;
    border-radius: 3px;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.14);
    position: relative;
}

.modal-language-selection {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 30px 15px 15px;
    width: 320px;
}

.modal-language-selection-list {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
}

.button-modal-language-selection {
    width: 100%;
    height: 2.5rem;
    font-size: 0.9375rem;
    font-weight: 400;

    outline: none;
    cursor: pointer;
    border: 0;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.1s cubic-bezier(0.4, 0, 0.6, 1);
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 2px;
    background: transparent;
    color: rgba(0, 0, 0, 0.8);
}

.modal-language-selection-title { text-align: center; }
.modal-language-selection-list-item { padding-bottom: 10px; }

/* Responsive */
@media screen and (max-width: 321px) {
    .modal-language-selection {
        width: 300px;
        padding: 0;
    }
}