﻿.Requerido {
    color: red;
    font-weight: bold;
}

.toastCustomPosition {
    position: fixed;
    top: 20%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

.controleInvalido {
    border-style: double;
    border-color: #df5c6e;
    background-color: #fde8eb;
}

.pageInicialAreas {
    background-image: url("/assets/img/11.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}









#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.7);
    z-index: 9999;
    display: none;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#cover-spin::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

#divBandeiras {
    width: 100px;
    padding-top: 10px;
    float: right;
    align-content: flex-end;
}

    #divBandeiras input {
        position: relative;
        width: 35px;
        padding-right: 5px;
    }

    #divBandeiras .selected {
        width: 45px;
    }