/*==== formatação texto ====*/

/* maior tamanho de cabeçalho >  44px */
.u-lg-cabecalho {
    font-size: 3.57em;
}

/* 15% a menos > 37px */
.u-md-cabecalho {
    font-size: 3em;
}

/* 25% a menos > 33px */
.u-sm-cabecalho {
    font-size: 2.5em;
}

/* 50% a menos > 22px */
.u-xsm-cabecalho {
    font-size: 1.833em;
}

/*maior tamanho de subcabeçalho  > 30 px */
.u-lg-subcabecalho {
    font-size: 2.500em;
}

/* 15% a menos > 26px */
.u-md-subcabecalho {
    font-size: 2.167em;
}

/* 25% a menos > 23px  */
.u-sm-subcabecalho {
    /*font-size: 1.917em;*/
    font-size: 1.7em;
}

.u-xsm-subcabecalho {
    font-size: 1.366em;
}

.u-xxsm-subcabecalho {
    font-size: 1.2em;
}

/*maior tamanho de texto > 16px*/
.u-lg-texto {
    font-size: 1.333em;
}

/* 15% a menos > 14px*/
.u-md-texto {
    font-size: 1.167em;
}

/* 25% a menos > 12px*/
.u-sm-texto {
    font-size: 1em;
}

.u-xsm-texto {
    font-size: .9em;
}

/*maior tamanho de legenda  > 18 px */
.u-lg-legenda {
    font-size: 1.500em;
}

/* 15% a menos > 15px */
.u-md-legenda {
    font-size: 1.250em;
}

/* 25% a menos > 13px  */
.u-sm-legenda {
    font-size: 1.083em;
}

.u-xsm-legenda {
    font-size: 1em;
}

/*maior tamanho de label  > 16 px */
.u-lg-label, .u-lg-tableHead, .u-lg-link, .u-lg-txtBtn {
    font-size: 1.333em;
}

/* 15% a menos > 14px */
.u-md-label, .u-md-tableHead, .u-md-link, .u-md-txtBtn {
    font-size: 1.167em;
}

/* 25% a menos > 12px  */
.u-sm-label, .u-sm-tableHead, .u-sm-link, .u-sm-txtBtn {
    font-size: 1em;
}

/*== Links ==*/

.u-sm-link,
.u-md-link,
.u-lg-link {
    color: #4261AF;
}

    .u-sm-link:hover, .u-md-link:hover, .u-lg-link:hover {
        text-decoration: underline;
        color: #213361;
    }

.icon-cross.u-corVermelha:hover {
    color: #9E202F;
}

/*== peso de fonte ==*/

.u-bold {
    font-weight: bold;
}

.u-semBold {
    font-weight: normal;
}

.u-fonteFina {
    font-weight: 300;
}

/*== cor de fonte ==*/

.u-corAzul {
    color: #4261AF;
}

.u-corAzulClaro {
    color: #5EA0EB;
}

.u-corVioleta {
    color: #7C92C6;
}

.u-corCinzaClaro {
    color: #83878A;
}

.u-corCinza {
    color: #4A4F53;
}

.u-corCinzaEscuro {
    color: #363636;
}

.u-corVerde {
    color: #5bb66e;
}

.u-corVermelha {
    color: #EB162F;
}

.u-corBranca {
    color: #fff;
}

.u-corAmareloClaro {
    color: #F1E69B;
}

.u-corAmarelo {
    color: #FFBB00;
}

/*== estilo fonte ==*/

.u-semItalico {
    font-style: normal;
}

.u-italico {
    font-style: italic;
}

.ats-dashboard-lnk span.u-corVermelha {
    color: blueviolet !important;
}

/*== estilo páginas internas - usar quando o texto vier do banco com tags de html - Ver padrão na view institucional / A Jucerja ==*/

.ats-container--paginaInterna .ats-cabecalho--paginaInterna {
    font-size: 2.333em;
    color: #637BBA;
    padding: 20px 0 10px 0;
    margin: 0;
}

.ats-container-textosViews {
    font-family: 'rawline', sans-serif;
    font-size: 1.167em;
}

    .ats-container-textosViews * {
        font-family: 'rawline', sans-serif;
        font-size: inherit;
        font-weight: normal;
    }


/*== Transformação do texto ==*/

.u-maiuscula {
    text-transform: uppercase;
}

.u-minuscula {
    text-transform: lowercase;
}

.u-semTextTransform {
    text-transform: none !important;
}

.u-camelCase {
    text-transform: capitalize;
}

/*== Alinhamento do texto ==*/

.u-txtCentralizado {
    text-align: center;
}

.u-txtEsquerda {
    text-align: left;
}

.u-txtDireita {
    text-align: right;
}

.u-txtJustificado {
    text-align: justify;
}

/*== espaçamento da letra ==*/

.u-nowrapEntreletra {
    white-space: nowrap;
}

/*== Decoração do texto ==*/

.u-sublinhado {
    text-decoration: underline;
}

.u-semSublinhado,
.u-semSublinhado:hover {
    text-decoration: none;
}

/*== line height ==*/

.u-sm-lnHeight {
    line-height: .5em;
}

.u-md-lnHeight {
    line-height: 1.5em;
}

.u-lg-lnHeight {
    line-height: 2em;
}

/*== Vertical Align ==*/

.u-aliVerticalMiddle {
    vertical-align: middle;
}


/*== quebrar linha no mobile ==*/

.u-quebraLinha {
    display: none;
}

@media only screen and (max-width: 40em) {
    .u-quebraLinha {
        display: block;
    }
}

/*== voltar ==*/

.ats-voltar {
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    z-index: 10;
    text-decoration: none;
    color: #4261AF;
    font-size: 1.333em;
    display: block;
}

    .ats-voltar:hover {
        color: #363636;
    }

/*== Botão/ Link Fechar ==*/

.ats-fechar {
    font-size: 2.5rem;
    line-height: 1;
    color: #AAA;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

    .ats-fechar:hover {
        color: #828282;
    }

/*== Header Home Seções ==*/

.ats-cabecalhoSecoes--home {
    font-size: 2.5em;
    color: #4A4F53;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0;
}

.ats-cabecalhoSecoes--SemMargemHome {
    margin-top: 0 !important;
}

.ats-cabecalhoSecoes--MargemMenorHome {
    margin-top: 1.2em !important;
}

@media only screen and (min-width: 40.063em) {
    .ats-cabecalhoSecoes--home {
        margin-top: 1.82em;
    }
}


/*Formatação Texto do Modal de Comunicados - HOME */

.ats-modal-home {
    padding: 1.875rem 1.875rem 0px !important;
}

.ats-modal-alerts {
    display: table;
    background-color: #f1f1f1 !important;
    border: 1px solid #DADADA !important;
    box-shadow: 0px 2px 20.16px 0.84px rgba(87, 87, 87, 0.23);
    padding: 10px;
    color: #4f4f4f;
}


    /* Hover para card padrão */
    .ats-modal-alerts:hover, .ats-modal-alerts:active, .ats-modal-alerts:focus, .ats-modal-alerts:visited {
        cursor: pointer;
        background-color: #e8e8e8 !important;
    }

div.ats-modal-alerts a, div.ats-modal-alerts a:hover, div.ats-modal-alerts a:visited, div.ats-modal-alerts a:focus, div.ats-modal-alerts a:active {
    display: block;
    color: #4f4f4f;
}




.ats-modal-alertIcon {
    display: table-cell;
    /* border: 1px solid red;
    vertical-align: middle; */
    padding-top: 15px;
}

.ats-modal-groupTxt {
    display: table-cell;
    vertical-align: middle;
    /* border: 1px solid blue; */
    text-align: left;
    padding: 10px;
}


.ats-modal-titleAlert {
    font-size: 16px;
    color: #4261af;
    font-weight: 700;
    margin-bottom: 5px;
}



.ats-modal-txtAlert {
    margin-bottom: 0px;
}

.ats-modal-alertButton {
    display: table-cell;
    vertical-align: middle;
    width: 120px;
    padding-right: 12px;
}


    .ats-modal-alertButton button {
        /*border: 1px solid green;*/
        padding: 5px 10px;
        background-color: #4261af;
        color: #fff;
        font-style: italic margin-top: 20px;
    }

.ats-modal-button-verMais {
    margin-bottom: 0px;
    background-color: #4261af;
    border-radius: 40px;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    text-transform: capitalize;
    font-size: 13px;
    padding-top: 6px;
    padding-bottom: 6px;
    -webkit-transition: ease;
    -moz-transition: ease;
    -ms-transition: ease;
    -o-transition: ease;
    transition: ease;
    -webkit-transition-duration: 0.3;
    -moz-transition-duration: 0.3;
    -ms-transition-duration: 0.3;
    :
}

    .ats-modal-button-verMais:hover, .ats-modal-button-verMais:active, .ats-modal-button-verMais:focus {
        background-color: #2e3e88;
        -webkit-transition: ease;
        -moz-transition: ease;
        -ms-transition: ease;
        -o-transition: ease;
        transition: ease;
        -webkit-transition-duration: 0.3;
        -moz-transition-duration: 0.3;
        -ms-transition-duration: 0.3;
    }

.ats-modal-closeAlert {
    top: 0 !important;
    margin-top: 10px !important;
    color: #6c7a90 !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    -webkit-transition: ease;
    -moz-transition: ease;
    -ms-transition: ease;
    -o-transition: ease;
    transition: ease;
    -webkit-transition-duration: 0.3;
    -moz-transition-duration: 0.3;
    -ms-transition-duration: 0.3;
}

    .ats-modal-closeAlert:hover {
        color: #4261af !important;
        -webkit-transition: ease;
        -moz-transition: ease;
        -ms-transition: ease;
        -o-transition: ease;
        transition: ease;
        -webkit-transition-duration: 0.3;
        -moz-transition-duration: 0.3;
        -ms-transition-duration: 0.3;
    }


.ats-modal-icon-alert {
    font-size: 24px;
    padding: 0 10px;
    color: #6c7a90;
}

.ats-modal-hr-top {
    margin: 25px -45px;
}

.ats-modal-hr-bottom {
    margin: 25px -45px 0px;
}

.ats-modalTitle {
    font-size: 24px !important;
    text-transform: uppercase;
}

.ats-modal-button-bottom {
    display: block !important;
    padding-bottom: 25px -45px !important;
    color: #929cac !important;
    font-size: 18px !important;
    font-style: italic !important;
    text-decoration: underline !important;
    position: relative !important;
    margin-right: -42px !important;
    margin-bottom: 35px !important;
    margin-top: 10px !important;
    font-weight: normal !important;
}

    .ats-modal-button-bottom:hover {
        color: #4261af !important;
    }

.ats-modal-home-close {
    top: 1.72rem !important;
}

.u-alerta-vermelho {
    color: #c50c33;
}

.u-fundoAlerta-vermelho {
    background-color: #fcedef !important;
    border-color: #ffd9dd !important;
}

.u-botaoAlerta-vermelho {
    background-color: #c50c33 !important;
}


.u-alerta-amarelo {
    color: #db9600;
}

.u-fundoAlerta-amarelo {
    background-color: #fbf4e8 !important;
    border-color: #f6e1bd !important;
}

.u-botaoAlerta-amarelo {
    background-color: #db9600 !important;
}

/* hover para carda Médio */
.ats-modal-alerts.u-fundoAlerta-vermelho:hover, .ats-modal-alerts.u-fundoAlerta-vermelho:active, .ats-modal-alerts.u-fundoAlerta-vermelho:focus, .ats-modal-alerts.u-fundoAlerta-vermelho:visited {
    cursor: pointer;
    background-color: #fbdde1 !important;
}

/*btn-close*/
.ats-modal-alerts.u-fundoAlerta-vermelho a.ats-modal-closeAlert {
    color: #c50c33 !important
}

    .ats-modal-alerts.u-fundoAlerta-vermelho a.ats-modal-closeAlert:hover, .ats-modal-alerts.u-fundoAlerta-vermelho a.ats-modal-closeAlert:visited, .ats-modal-alerts.u-fundoAlerta-vermelho a.ats-modal-closeAlert:focus, .ats-modal-alerts.u-fundoAlerta-vermelho a.ats-modal-closeAlert:active {
        color: #900c28 !important;
    }

/* hover para carda Alta Prioridade */
.ats-modal-alerts.u-fundoAlerta-amarelo:hover, .ats-modal-alerts.u-fundoAlerta-amarelo:active, .ats-modal-alerts.u-fundoAlerta-amarelo:focus, .ats-modal-alerts.u-fundoAlerta-amarelo:visited {
    cursor: pointer;
    background-color: #fff0d4 !important;
}

/*btn-close*/
.ats-modal-alerts.u-fundoAlerta-amarelo a.ats-modal-closeAlert {
    color: #db9600 !important;
}

    .ats-modal-alerts.u-fundoAlerta-amarelo a.ats-modal-closeAlert:hover, .ats-modal-alerts.u-fundoAlerta-amarelo a.ats-modal-closeAlert:visited, .ats-modal-alerts.u-fundoAlerta-amarelo a.ats-modal-closeAlert:focus, .ats-modal-alerts.u-fundoAlerta-amarelo a.ats-modal-closeAlert:active {
        color: #da8e0c !important;
    }

#modalPopupMetodoAssinatura .ats-containerFormulario-txt.u-md-texto {
    color: black;
}