/* language selection popup start */
#languageSelectionDiv
{
    height: 95%;   
}

#languageSelectionPopupContent
{
    width: 100%;
    height: 100%;
    color: #FFFFFF;
}

#languageSelectionPopupText
{
    height: 90%;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#languageSelectionButtonRow
{
    height: 5%;
}

#languageSelectionButtonRow>div
{
    display: table;
    width: 100%;
}

#languageSelectionButtonRow>div>div
{
    display: table-row;
    width: 100%;
}

#languageSelectionButtonRow>div>div>div
{
    display: table-cell;
    width: 30%;
}

.languageSelect
{
    flex-basis: 25%;
    flex-grow: 0;
    flex-shrink: 0;
}

@media only all and (orientation: portrait)
{
    .languageSelect
    {
        flex-basis: 33%;
    }        
}

.languageFlag
{
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
}

.languageLabel
{
    margin: 0;
    margin-bottom: 0.5rem;
}