﻿
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css');

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

header {
    background-color: #f2f2f2;
    height: 110px;
    padding: 10px 0;
}

nav {
    width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}


.lang-menu {
    width: 100px;
    text-align: right;
    font-weight: bold;
    margin-top: 25px;
    position: absolute;
    right: 50px;
}

    .lang-menu .selected-lang {
        display: flex;
        justify-content: space-between;
        line-height: 2;
        cursor: pointer;
    }

        .lang-menu .selected-lang:before {
            content: '';
            display: inline-block;
            width: 32px;
            height: 32px;
            background-image: url(https://www.countryflags.io/us/flat/32.png);
            background-size: contain;
            background-repeat: no-repeat;
        }

    .lang-menu ul {
        margin: 0;
        padding: 0;
        display: none;
        background-color: #fff;
        border: 1px solid #f8f8f8;
        position: absolute;
        right: 50px;
        top: 45px;
        right: 0px;
        width: 125px;
        border-radius: 5px;
        box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
    }


        .lang-menu ul li {
            list-style: none;
            text-align: left;
            display: flex;
            justify-content: space-between;
        }

            .lang-menu ul li a {
                text-decoration: none;
                width: 125px;
                padding: 5px 10px;
                display: block;
            }

            .lang-menu ul li:hover {
                background-color: #f2f2f2;
            }

            .lang-menu ul li a:before {
                content: '';
                display: inline-block;
                width: 25px;
                height: 25px;
                vertical-align: middle;
                margin-right: 10px;
                background-size: contain;
                background-repeat: no-repeat;
            }

.pt:before {
    background-image: url(https://www.countryflags.io/pt/flat/32.png);
}

.en:before {
    background-image: url(https://www.countryflags.io/us/flat/32.png);
}

.es:before {
    background-image: url(https://www.countryflags.io/es/flat/32.png);
}

.optionsLogin {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-menu:hover ul {
    display: block;
}

#toggle-psw {
    position: relative;
    float: right;
    color: black;
    display: inline;
    margin-top: -25px;
    margin-right: 10px;
    z-index: 2;
    cursor: pointer;
}

.fa-2x {
    font-size: 1.2em;
}

#mobileModal {
    position: fixed;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: 100;
    top: 0;
    text-align: center;
}

.topLeft-NewVersion {
    position: absolute;
    top: 20px;
    left: 20px;
    color: WHITE;
    background-color: rgba(23, 116, 180, 0.47);
    border-radius: 15px;
    padding: 15px;
    font-size: 14px;
    text-align: center;
}
    .topLeft-NewVersion a {
        background-color: #5cc5ff9c;
        color: white;
        padding: 6px 10px;
        border-radius: 6px;
        display: block;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        margin: 0 auto;
        width: 70%;
    }
#tagNew {
    position: absolute;
    background-color: #be1522;
    color: white;
    padding: 2px 7px;
    font-weight: bold;
    border-radius: 6px;
    top: 5px;
    right: 5px;
    font-size: 12px;
}

.topRight-Language {
    position: absolute;
    top: 20px;
    right: 20px;
}

    .topRight-Language button {
        background-color: transparent;
        border: none;
        padding: 0 4px;
    }

    .topRight-Language img {
        height: 20px;
        width: 30px;
        object-fit: scale-down;
        border-radius: 4px;
    }

#languagePicker {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: -6px;
    margin-top: 10px;
}

#languagePicker button{
    padding: 3px;
}


.bottomRight {
    position: absolute;
    bottom: 50px;
    right: 15px;
}

.QrCode {
    border-radius: 5px;
    display: flex;
    flex-direction: row-reverse;
    padding: 5px;
}

    .QrCode ul {
        padding: 5px 10px;
        margin: 0;
        color: white;
    }

    .QrCode li {
        list-style-type: none;
    }

        .QrCode li > button {
            width: 100%;
            background-color: black;
            border: 1px solid gray;
            padding: 5px;
            text-align: left;
            border-radius: 4px;
        }
