/*---------------------------------------------------------------------------------------
LANGUAGE SELECTION
--------------------------------------------------------------------------------------- */

html #i18n-options-container,
html #placeholder-regions {
   margin: 1.4em 3% 0;
   max-width: 200px;
}

html #i18n-options {
    text-align: left;
}
html #i18n-regions {
    display: none;
    height: auto;
}
html .language {
    background-repeat: no-repeat;
    background-position: left 4px;
    padding-left: 20px;
}

html .language_en {
    background-image: url('../images/flags/gb.png');
}
html .language_it {
    background-image: url('../images/flags/it.png');
}
html .language_fr {
    background-image: url('../images/flags/fr.png');
}
html .language_es {
    background-image: url('../images/flags/es.png');
}
html .language_de {
    background-image: url('../images/flags/de.png');
}
html .language_pl {
    background-image: url('../images/flags/pl.png');
}

.field-validation-valid {
    display: none;
}

/*---------------------------------------------------------------------------------------
MEDIA QUERIES FOR MEDIUM SIZE
--------------------------------------------------------------------------------------- */
@media only screen and (min-width: 35em) {
    html #i18n-options-container,
    html #placeholder-regions {
        margin: 1.4em 3% 0 200px;
    }
    html #i18n-options-container {
        margin-bottom: 1.4em;
    }
}

