html,
body {
    margin: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    font-family: Helvetica, Arial, sans-serif !important;
    min-height: 100%;
    overflow: hidden;
}
/*
    útil, não permite seleção de textos, neste casos os ícones também pois são considerados textos (font)
    esta seção é para fazer reset de alguns itens
*/

/* Barra de Rolagem para o chrome e outros browser que usam o motor webkit */

::-webkit-scrollbar-track {
    background-color: #F4F4F4;
}
::-webkit-scrollbar {
    width: 4px;
    background: #F4F4F4;
}
::-webkit-scrollbar-thumb {
    background: #bcbcbc;
    border-radius: 4px;
}

/* ------------------------------------------------------ */
.no-selection {
    -webkit-touch-callout: none;  /* iPhone OS, Safari */
    -webkit-user-select: none;    /* Chrome, Safari 3 */
    -khtml-user-select: none;     /* Safari 2 */
    -moz-user-select: none;       /* Firefox */
    -ms-user-select: none;        /* IE10+ */
    user-select: none;            /* Possível implementação no futuro */
}

select {
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
  width: 100%;
}
select::-ms-expand {display: none;}

form {
    margin: 0;
    height: calc(100% - 135px);
}

/*CSS MAIN, define apenas tamanho*/
main {
    height: 100%;
    width: calc(100% - 360px);
    float: left;
    background-size: cover;
}

/*CSS ASIDE, container do form de login*/
.dados-login {
    width: 360px;
    min-width: 360px;
    max-width: 360px;
    float: right;
    height: 100%;
    max-height: 100%;
    background-color: #FFFFFF;
    background-position: left bottom;
    overflow-y: auto;
    box-shadow: 0px 3px 30px #848484;
    margin: 0;
}

.dados-login-content-align {
    width: 90%;
    margin-left: 5%;
    padding-top: 10px;
    height: calc(100% - 105px); /*(95 do footer e 10 do padding-top) */
}
/*styles da logo do cliente*/
.logo-container-cliente {
    width: 60%;
    margin-left: 20%;
    float: left;
    height: 100px;
    float: left;
}
.logo-container-cliente div {
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

/*inputs do form estilizados*/
.item-selecionado {
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.input-container {
    height: 36px;
    width: 94%;
    margin-left: 3%;
    margin-top: 15px;
    background-color: white;
    float: left;
}

.sub-container {
    height: 100%;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #6fbab3;
    outline: none;
}

.sub-container > * {
    float: left;
    display: inline;
}

.icon-input-container {
    height: 100%;
    width: 36px;
    background-color: white;
    /*border-right: 1px solid #828282;*/
    border-radius: 4px;
}

.icon-input-container i {
    margin: 20%;
    color: #828282;
}

.input-input-container {
    width: 100%;
    height: 1px;
    outline: none;
    border: none;
    padding: 0;
    padding-left: 3px;
    font-size: 13px;
    color: #1a1a1a;
    vertical-align: baseline;
    margin-left: 2px;
}

.box-input-label {
    width: calc(96% - 30px);
    height: 100%;
}

.input-open {
    height: 16px;
    margin-top: 1px;
    transition: all 0.3s ease-out;
}

.box-input-label label {
    margin-left: 5px; 
    margin-top: 10px;
    float: left;
    font-size: 13px;
    transition: all 0.3s ease-out;
}

.box-input-label .label-focado {
    margin-top: 2px;
    font-size: 11px;
    color: #039be5;
    transition: all 0.3s ease-out;
}

/*style do select*/
.input-select * {
    cursor: pointer;
}

.input-combo-seta  {
    float: left;
}

.input-combo-seta:before {
    display: inline-flex;
    content: " ";
    width: 0;
    height: 0;
    vertical-align: top;
    margin-top: 4px;
    border-top: 4px dashed;
    border-top: 4px solid blue;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    position: relative;
}

.input-select-container {
    width: 95%;
    outline: none;
    border: none;
    padding: 0;
    padding-left: 3px;
    font-size: 13px;
    color: #1a1a1a;
    vertical-align: baseline;
    margin-left: 2px;
    float: left;
    margin-top: 3px;
    background-color: white;
}

.label-select {
    margin-top: 2px !important;
    font-size: 11px !important;
    color: #039be5;
}

@-moz-document url-prefix(){
    .select-antigo { padding-left: 0 }
}

.container-select-itens {
    display: none;
    background-color: white;
    position: absolute;
    min-height: 10px;
    border-radius: 3px;
    margin-top: -1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1;
    outline: none;
}

.container-select-itens-visible {
    display: block;
}

#combo-dominio:focus {
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.item-container-lista-dominio {
    border-radius: 3px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
}
.item-container-lista-dominio:hover {
    background-color: #F4F4F4;
}
.item-container-lista-dominio-hovered-keydown {
    background-color: #F4F4F4;
}
.dados-item-container-lista-dominio {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 41px;
}
/*style do button*/
.button-container {
    width: 94%;
    height: 36px;
    margin-right: 3%;
    margin-top: 10px;
    float: right;
}

.reset-button button {
    background: none;
    border: none;
    font-size: 1em;
    outline: none;
    font-family: Arial;
}

.button-container button {
    width: 40%;
    float: right;
    height: 36px;
    background-color: #6fbab3;
    font-size: 1em;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.button-container button:focus {
    box-shadow: 0 0 3px rgba(0,0,0,0.8);
}

/*style do captcha container*/
.captcha-container {
    float: left;
    width: 94%;
    margin-left: 3%;
    margin-top: 15px;
    -webkit-transform: scale(1.007);
     -moz-transform: scale(1.007);
      -ms-transform: scale(1.007);
       -o-transform: scale(1.007);
          transform: scale(1.007);
   -webkit-transform-origin: 0 0;
      -moz-transform-origin: 0 0;
       -ms-transform-origin: 0 0;
        -o-transform-origin: 0 0;
           transform-origin: 0 0;
}

/* Style dos links "esqueci minha senha e primeiro acesso" */


.inline-item {
    display: inline-flex;  
    align-items: center;
    white-space: nowrap;   
}
.senhas-container:empty{
    visibility: hidden;
}
.item-link-container.single-item {
    margin-right: 0;      
}
.links-container {
    float: right;
    margin-right: 3.3%;
    padding-top: 15px;
    margin-bottom: 2px;
    display: flex;
    flex-direction: column; 
    align-items: flex-end;  
}

.senhas-container {
    display: flex;          
    justify-content: flex-end;
    width: 100%;             
    gap: 45px;              
}

.cadastro-solicitante-container {
    margin-top: 15px;
    width: 100%;
    text-align: right;
}

.links-container .item-link-container {
    text-align: right;
    text-decoration: none;
    cursor: pointer;
    color: #039be5;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7em;
    padding-bottom: 8px;
    display: inline-flex;     
    align-items: center;      
}

a.item-link-container {
    text-decoration: none;
    color: #039be5;
    font-family: Arial, Helvetica, sans-serif;
}

label.item-link-container {
    display: inline-flex;   
    white-space: nowrap;     
}


/* style do erro*/
.erro-container {
    float: left;
    margin-top: 10px;
    border: 1px solid rgba(255, 0, 0, 0.4);
    border-radius: 4px;
    background-color: white;
    text-align: center;
    width: calc(94% - 2px);
    font-size: 0.75em;
    font-family: Helvetica, Arial, sans-serif;
    color: rgba(255, 0, 0, 0.8);
    margin-left: 3%;
}

.erro-container-content {
    width: 100%;
    background-color: rgba(255, 0, 0, 0.015);
    border-radius: 4px;
}

.erro-container-content div {
    padding: 10px;
}

/* style do icone do idioma */
.idioma-container {
    text-align: right;
    width: calc(94% - 4px);
    margin-left: 3%;
    font-size: 0.7em;
    font-family: Arial, Helvetica, sans-serif;
    color: #bfbfbf;
    float: left;
}
.idioma-container i {
    cursor: pointer;
}
.idioma-container i:focus {
    color: red;
}
/* lista idiomas */
.lista-idioma {
    position: absolute;
    background-color: white;
    color: #2196F3;
    font-size: 1.3em;
    font-family: helvetica;
    text-align: left;
    right: 65px;
    top: 7px;
    padding: 10px 0 10px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    outline: none;
}

.lista-idioma-conteudo {
    overflow-y: auto;
    max-height: 200px;
    margin-right: 5px;
    padding-right: 5px;
}

.lista-idioma:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid white;
    right: -7;
    top: 8%;
}
.lista-idioma:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid rgba(0,0,0,0.2);
    right: -8;
    top: 8%;
}
.item-lista-idioma {
    cursor: pointer;
    margin-top: 10px;
}
.item-lista-idioma:first-child {
    margin-top: 0;
    padding-top: 0;
}

.lista-inativa {
    display: none;
}

/* style do footer do login */
.dados-login-footer-align {
    width: 90%;
    margin-left: 5%;
    height: 95px;
}

.footer-login-content {
    width: 94%;
    margin-left: 3%;
    font-size: 0.7em;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    white-space: nowrap;
}

/*Style dos elementos do footer*/
.footer-login-content a img {
    margin-top: 5px;
    height: 75px;
    float: right;
    padding-right: 3px;
}
.footer-login-content div {
    float: left;
    vertical-align: bottom;
    clear: right;
    flex-wrap: nowrap;
}

.footer-login-subcontent {
    display: block;
}

.footer-login-subcontent-logo {
    margin-top: 42px;
}

.footer-login-content a {
    outline: none;
}

.footer-login-subcontent a:last-child {
    white-space: nowrap;
    text-decoration: none;
    color: black;
}

.footer-login-subcontent a:last-child:visited {
    white-space: nowrap;
    text-decoration: none;
}

.footer-texto-versao {
    float: right !important;
    margin-top: -10px;
}

#img-qrCode {
    width: 100px;
    height: 100px;
    cursor: pointer;
}

#footer-qrCode {
    width: 100%;
}

#footer-contato-fone {
    width: 100%;
}

#footer-contato-email {
    width: 100%;
    word-wrap: break-word;
    white-space: nowrap;
    max-width: 230px;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Inicio CSS modal QRCode */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 30%;
    max-width: 700px;
}

#caption {
    margin: auto;
    display: block;
    width: 40%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    margin-bottom: 10px;
}

.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}
/* Fim CSS modal QRCode */