

.popup-translation {
    position: fixed;
    z-index: 999999999;
    width: 100%;
    height: 100%;
    color: white;
    background-color: #000000e6;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    bottom: 0;
    left: 0;
}


@media only screen and (min-width: 992px) {
    .popup-translation {
        max-width: 750px;
        margin: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        max-height: 500px;
        top: 55%;
    }
}



.popup-translation form {
    text-align: center;
    /*top: 50%;
    max-width: 200px;
    margin: auto;
    position: relative;*/
}
.popup-translation .field {
    margin: 10px auto;
}
.popup-translation input {
    min-width: 200px;
    text-align: center;
    transition: 0.2s all;
}
.popup-translation input:hover {
    background-color: #607d8b;
}

/* select2 */
.popup-translation .select2-container {
    text-align: left;
    color: black;
}
.popup-translation span.select2-selection.select2-selection--single {
    border-radius: 0;
    /*height: 40px;
    line-height: 40px;*/
}
/*.popup-translation .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 40px;
    line-height: 40px;
}
.popup-translation .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}*/
.popup-translation span.select2-selection img {
    position: relative;
    top: -1px;
}
.popup-translation .select2-container--default .select2-results>.select2-results__options {
    max-height: 100%;
    overflow-y: unset;
}
.popup-translation .select2-results__option {
    height: auto;
    min-height: inherit;
    line-height: 1.4;
}
