#erroH5 {
    height: 10%;
    width: 100%;
    color: red;
}

#btnContinuar {
    background-color: #0d5c9c;
    cursor: pointer;
    height: 30px;
    border-radius: 5px;
    color: white;
    font-size: small;
    font-family: inherit;
}

#left-flexbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
}

#left-flexbar img {
    margin-right: 10%;
    width: 4.2vw;
}

#right-flexbar {
    display: flex;
    flex-direction: column;
}

#right-flexbar h2 {
    margin: 0;
    color: #2756a4;
    text-transform: uppercase;
    font-size: 1.6vw;
}

#right-flexbar h4 {
    margin: 0;
    font-size: .9vw;
}

#sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 25%;
    height: 80%;
    border-right: 1px solid lightgray;
    animation: sidebar-intro 0.5s 1;
    justify-content: space-between;
}

a h4 {
    font-size: 0.9vw;
    margin: 0;
}

#inner-flexbar {
    display: none;
}

#inner-flexbar img {
    margin-right: 10%;
    width: 8.2vh;
}

#inner-back {
    display: none;
}

@keyframes sidebar-intro {
    0% {
        transform: translateX(-100vh);
        opacity: 0;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media all and (min-width:0px) and (max-width: 520px) {
    #sidebar {
        display: none;
    }

    #right-flexbar {
        display: flex;
        flex-direction: column;
        width: 31vw;
    }

    #right-flexbar h4 {
        margin: 0;
        font-size: 1.9vh;
    }

    #right-flexbar h2 {
        margin: 0;
        color: #2756a4;
        text-transform: uppercase;
        font-size: 2.4vh;
    }

    #inner-flexbar {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: right;
        height: 30%;
    }

    a h4 {
        font-size: 1.1vh;
        margin: 0;
        position: absolute;
        right: 22vw;
        color: white;
        background: #0d5c9c;
        border-radius: 3px;
        height: 3vh;
        align-items: center;
        display: flex;
        width: 26%;
        justify-content: center;
        box-shadow: 0 0 0 0px rgba(0, 0, 0, .2);
    }

    a h4:hover {
        filter: brightness(125%);
    }

    #inner-back {
        display: flex;
    }
}

.card-submit-gerarcodigo {
    display: flex;
    height: 20%;
    margin-top: 5%;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    width: 50%;
}

.app-modal {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.center {
    z-index: 1000;
    margin: 10px auto;
    padding: 10px;
    width: 105px;
    background-color: White;
    border-radius: 10px;
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

.center img {
    height: 100px;
    width: 100px;
}

.loader {
    width: 100%;
    position: absolute;
    text-align: center;
    margin-top: 20%;
}
