/**
 * Variables
*/
:root {
    /* Colors */
    --color-primary: #3c7bff;
    --color-secondary: #333;

    --color-green1: #00d496;
    --color-green2: #8cc63f;
    --color-green3: #50b848;
    --color-red1: red;
    --color-blue1: #55aaa7;
    --color-blue2: #00c0ff;
    --color-grey1: #ccc; /* bordes */
    --color-grey2: #ddd; /* shadows/borders */
    --color-grey3: #828282; /* shadows */
    --color-grey4: #777; /* shadows */
    
    /* Styles */
    --box-shadow-default: 0px 2px 7px #828282; /* shadows */
    --border-default: 1px solid #ccc;
}



/**
 * Resets 
*/
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Formulários */
form {
	display: inherit;
}
form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    background: white;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    line-height: 18px;
}
form input[type=file], form input[type=radio], form input[type=checkbox]{
    padding: 0;
    border: none;
    width: auto
}
form textarea{
    max-height: 250px;
    min-height: 60px;
}
form button, form button.btn{
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 15px;
}
form button.btn i{
    margin: 0 0 0 5px;
}
.form-group{
	margin-bottom: 10px;
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  background: #d3d3d3;
  outline: none;
  -webkit-transition: .2s;
  transition: opacity .2s;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #3c7bff;
    cursor: pointer;
    border-radius: 50%;
}


/* Validate */
form label.error{
    color: var(--color-red1);
    font-size: 12px;
    margin: 0;
    display: block;
}
form input.error, form select.error, form textarea.error{
    border-color: var(--color-red1);
    outline-color: var(--color-red1);
}

/* Tabelas */
table{
    width: 100%;
}

/**
 * Utils / Utilidades 
*/
.c-pointer{
    cursor: pointer;
}
.margin-0{
    margin: 0!important;
}
.padding-0{
    margin: 0!important;
}

.overlay{
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    height: 100%;
    border-radius: 7px;
    z-index: 9;
}
.overlay .overlay-p{
    text-align: center;
    font-weight: bold;
    opacity: .8;
    padding-top: 5px;
    font-size: 14px;
}

/**
 *
 * STYLES 
 *
*/

/** 
 * Cabeçalho 
*/
header{
    background: url(../../images/bg-topo2.jpg) no-repeat 50% 100%;
    height: 170px;
    border-bottom: 2px solid #ccc;
}
header h1{
    text-align: center;
    font-size: 30px;
    padding: 7px 0 0;
}

.bg-home{
    padding: 30px 0 150px;
    background: url(../../images/bg-body2.jpg);
    background-size: contain;
}


/* Home -> Notícias */
.bg-post{
    background: #fff;
    box-shadow: 1px 0px 5px #d1d1d1;
    padding: 20px 10px 10px;
    border-radius: 7px;
}
.posts .post{
    margin-bottom: 7px;
    width: 49.5%;
    position: relative;
}
.posts .post-destaque{
    /*width: 53%;*/
    /*display: table;*/
    /*margin: 0 auto 7px;*/
    /*border: 1px solid #f5fc00;*/
    /*box-shadow: 0 0 3px #f9fc00;*/
}
.posts .post h2{
    font-size: 18px;
}
.posts .post .btn{
    display: table;
    margin: auto;
    background: #0094fd;
    color: #fff;
    padding: 6px 7px 5px;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
}
.posts .post .post-date{
    position: absolute;
    right: 7px;
    bottom: 7px;
    font-size: 12px;
    font-style: italic;
    text-align: right;
    line-height: 14px;
}

.posts .post .post-group-qtde-views{
    position: absolute;
    left: 10px;
    bottom: 7px;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-style: italic;
}
.posts .post .post-group-qtde-views .post-qtde-views{
    margin: 0 2px 0 0;
}

.posts2 > div{
    width: 32.8%!important;
}

.posts-destaques.posts .post{
    width: 100%;
    /*min-height: 31%;*/
}

/*.posts-destaques .post:nth-child(1){order: 1;}*/
/*.posts-destaques .post:nth-child(2){order: 3;}*/
/*.posts-destaques .post:nth-child(3){order: 2;}*/

.post-srpps{
    overflow: hidden!important;
    padding: 18px 15px;
}
.post-srpps .post-srpps-thumb{
    width: 100%;
    float: left;
}
.post-srpps .post-srpps-thumb img{
    max-width: 100%;
}
.post-srpps .post-srpps-cont{
    width: 55%;
    float: right;
}
.post-srpps .post-srpps-cont h4{
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}
.post-srpps span.post-srpps-data-publicacao{
    font-size: 12px;
    font-style: italic;
}
.post-srpps .post-srpps-cont .btn{
    /*display: block;*/
    margin: 15px 0 0;
    float: right;
}

.post-srpps-list-download{
    position: absolute;
    z-index: 9;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 15px 20px;
    background: #fff;
    border-radius: 15px;
    overflow-y: scroll;
    display: none;
}
.post-srpps-list-download h5{
    font-size: 16px;
    font-weight: bold;
}
.post-srpps-list-download li{
    padding: 0 0 15px;
    font-size: 16px;
}
.post-srpps-list-download li:last-child{
    padding-bottom: 0;
}

.btn-close-post-srpps-list-download{
    color: red;
    opacity: .7;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px;
    font-size: 20px;
    display: none;
    z-index: 9;
}
.btn-close-post-srpps-list-download:hover{
    cursor: pointer;
    opacity: 1;
}



.faixa-atualizacao{
    padding: 10px 0 0;
}
.faixa-atualizacao .faixa-atualizacao-left{
    width: 15%;    
}
.faixa-atualizacao p{
    text-align: center;
    font-style: italic;
    font-size: 14px;
    line-height: 16px;
    display: block;
    clear: both;
    margin: 0 0 15px;
}
.faixa-atualizacao .span-assinatura-monique{
    /*position: absolute;*/
    /*top: 40px;*/
    /*padding-top: 10px;*/
    text-align: left;
    margin: -30px 0 25px;
    font-size: 11px;
}
.faixa-atualizacao .span-assinatura-monique .dra{
    font-size: 14px;
}
.faixa-atualizacao .span-assinatura-monique .assinatura{
    font-family: 'Indie Flower', cursive;
    font-size: 17px;
}
.faixa-atualizacao .span-assinatura-monique .oab{
    font-size: 10px;
}

.faixa-atualizacao form{
    width: 24%;
    float: right;
    margin: -20px 0 0;
    background: #fff;
    padding: 10px 0px 20px 12px;
}
.faixa-atualizacao form label{
    font-size: 16px;
    line-height: 18px;
}
.faixa-atualizacao form input{
    padding: 7px;
    font-size: 14px;
    margin: 0;
    width: 73%;
}
.faixa-atualizacao form button{
    padding: 7px;
    font-size: 13px;
    margin: 0;
    width: 25%;
    float: right;
    border: 2px solid #0094fd;
    background: #0094fd;
    color: #fff;
    border-radius: 4px;
}

.posts-previdencia {
    height: 468px;
    /*overflow-y: scroll;*/
    /*overflow-y: hidden;*/
    padding: 10px;
    margin-bottom: 10px;
}
.posts-previdencia ul li{
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
    line-height: 18px;
}
.posts-previdencia ul li a{
    text-decoration: none;
    font-size: 14px;
    line-height: 12px;
    font-weight: bold;
    color: #000;
}


/* Sidebar -> Eventos */
.form-sidebar-events{
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
.form-sidebar-events form input{
    max-width: 100%;
    font-size: 12px;
    padding: 7px;
}
.form-sidebar-events form input[type=file]{
    padding: 0;
}
.form-sidebar-events form label{
    margin: 0;
    font-size: 14px;
}
.form-sidebar-events form button{
    /*float: right;*/
    font-size: 12px;
    font-weight: bold;
    padding: 5px 12px;
}
.form-sidebar-events form label.error{
    font-size: 12px;
}
.form-sidebar-events-result{
    font-size: 14px;
}


.listar-eventos{
    height: auto;
}
.listar-eventos ul{
    transition: all 0.4s;
}
.listar-eventos ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}
.listar-eventos ul li:last-child{
    border-bottom: none;
}
.listar-eventos ul li img{
    max-width: 90%;
}
.listar-eventos ul li .listar-eventos-detalhes{
    width: 100%;
    padding-top: 10px;
}
.listar-eventos ul li .listar-eventos-detalhes span{
    font-size: 10px;
    float: left;
    padding-top: 3.5px;
}
.listar-eventos ul li .listar-eventos-detalhes a{
    display: table;
    margin: auto;
    background: #0094fd;
    color: #fff;
    padding: 5px 5px 3px;
    text-decoration: none;
    font-size: 10px;
    font-weight: bold;
    float: right;
}

.listar-eventos-opcoes {
    position: absolute;
    top: -100%;
    right: 0;    
    transition: all 0.4s;
}
.listar-eventos ul li:hover .listar-eventos-opcoes {
    top: 0;
}
.listar-eventos-opcoes i{
    padding: 10px 5px;
}
.listar-eventos-opcoes i:hover{
    cursor: pointer;
    opacity: 1!important;
}
.listar-eventos-opcoes i[class*="fa-trash"]{
    color: red;
    opacity: .7;
}


/* Legislação */
.bg-legislacao .bg-post p{
    font-size: 14px;
    line-height: 20px;
}
.bg-legislacao .bg-post h2{
    cursor: pointer;
}

.bg-legislacao h4.title-result-search{
    width: 100%;
    font-size: 16px;
}
.bg-legislacao h5.title-outros-filtros{
    font-size: 14px;
    padding: 3px 5px;
    border-left: 3px solid #7d7d7d;
}


/** 
 * Rodapé 
*/


/**
 * SECTION TRANSPARÊNCIA
*/
.section-page {
    padding: 15px 0;
    border-bottom: var(--border-default);
}
.section-page > h2{
    font-weight: bold;
}
.section-page > h2:after{
    content: " ";
    width: 120px;
    height: 3px;
    margin: 17px auto 25px;
    background-color: #3c7bff;
    display: table;
}

.section-transparencia{
    background: url(../../images/bg-body-home.jpg) no-repeat center / cover;
}

.st-two-buttons a{
    padding: 5px 10px;
    width: 24%;
    margin: 0 7px 7px;
    font-size: 14px;
}
.st-two-buttons form{
    width: 49.3%;
    box-shadow: 0px 0px 7px #3c7bff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: table;
    background: #fff;
}
.st-two-buttons form .form-group{
    width: 39%;
    margin-right: 9px;
    float: left;
}
.st-two-buttons form label{
    margin-bottom: 0;
    font-size: 14px;
}
.st-two-buttons form h4{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}
.st-two-buttons form button{
    padding: 11px 15px;
    margin: 23px 0 0;
    font-weight: bold;
}
.st-two-buttons form label.error{
    display: none!important;
}

.st-group-buttons ul:last-child{
    margin-bottom: 0;
}
.st-group-buttons ul li{
    width: 24%;
    margin: 7px 1.33% 7px 0;    
    float: left;
    /*display: block;*/
}
.st-group-buttons ul {
    margin-bottom: 30px;
    display: table;
    width: 100%;
}
.st-group-buttons ul li a{
    padding: 5px 10px;
    display: table;
    font-weight: bold;
    width: 100%;
    font-size: 14px;
}
.st-group-buttons ul li a i{
    display: inline;
    margin: 0 0 0 5px;
}
.st-group-buttons ul li a.btn-add-st{
    background-color: var(--color-red1)!important;
    border-color: var(--color-red1)!important;
    color: #fff!important;
}
.st-group-buttons ul li a.btn-add-st:hover{
    cursor: pointer!important;
}
.st-group-buttons ul li:nth-child(4),
.st-group-buttons ul li:nth-child(8),
.st-group-buttons ul li:nth-child(12),
.st-group-buttons ul li:nth-child(16),
.st-group-buttons ul li:nth-child(20),
.st-group-buttons ul li:nth-child(24),
.st-group-buttons ul li:nth-child(28),
.st-group-buttons ul li:nth-child(32){
    margin-right: 0;
}

/* Logged/Logado */
.st-group-buttons ul.st-group-buttons-ul-disabled{
    margin-bottom: 0;
}
.st-group-buttons ul.st-group-buttons-ul-disabled li a{
    background-color: #ddd;
    border-color: #ddd;
    color: #333;
}
.st-group-buttons-sortable ul li a:hover{
    cursor: move!important;
}
.st-group-buttons ul li.sortable-ghost a{
    background-color: transparent;
    border-color: transparent;
    box-shadow: var(--box-shadow-default);
    color: #3c7bff;
}


/* Section Contato/Notícias/Fale Conosco */
.sc-single h3{
    font-weight: bold;
    font-size: 18px;
}
.sc-single h3:after{
    content: " ";
    width: 80px;
    height: 3px;
    margin: 10px auto 20px;
    background-color: #3c7bff;
    display: table;
}

/* Contato */
.sc-single .form-group{
    margin-bottom: 7px;
}
.sc-single .form-group label{
    margin-bottom: 0;
    line-height: 14px;
}
.sc-single .form-group textarea{
    max-height: 140px;
    height: 100px;
}
/* Noticias */
.sc-single-noticias ul {
    overflow-y: scroll;
    height: 395px;
}
.sc-single-noticias ul li{
    display: table;
    width: 100%;
    padding: 5px 0;
    /*border-left: 3px solid transparent;*/
}
.sc-single-noticias ul li:hover{
    /*box-shadow: var(--box-shadow-default);*/
}
.sc-single-noticias ul li:first-child{
    padding-top: 0;
}
.sc-single-noticias ul li:last-child{
    border-bottom: none;
}
.sc-single-noticias ul li .thumb{
    width: 32%;
    height: 70px;
    float: left;
    border-radius: 7px;
    overflow: hidden;
}
.sc-single-noticias ul li .thumb img{
    max-width: 100%;
    max-height: 100%;
    transform: scale(1.3);
    margin: 3px auto;
}
.sc-single-noticias ul li a{
    text-decoration: none;
}
.sc-single-noticias ul li a > div{
    width: 65%;
    float: right;
}
.sc-single-noticias ul li a > div *{
    color: #000;
    margin: 0;
}
.sc-single-noticias ul li a > div h5{
    font-size: 14px;
    line-height: 18px;
    font-weight: bold
}
.sc-single-noticias ul li a > div span{
    font-size: 11px;
    margin: 2px 0 0;
    display: table;
    opacity: .8;
}
.sc-single .form-group label.error{
    margin: 5px 0 0;
}

/**
 * PORTAL ADMIN -> ADMINISTRADOR LOGADO 
*/
.portal-admin-body{
    padding-top: 30px;
}
.portal-admin-body .portal-editable-field{
   background: #f6f6f6;
   position: relative;
   /*overflow: hidden;*/
   border-bottom: var(--border-default);
}
.portal-admin-body .btn-show-options{
    right: 5px;
    top: 5px;
}
.portal-admin-body .btn-show-options:hover{
    color: var(--color-blue1);
}
.group-show-options{
    position: absolute;
    right: 5px;
    top: 25px;
    background: rgba(255,255,255, 0.98);
    border-radius: 7px;
    box-shadow: 0px 0px 3px #a9a9a9;
    z-index: 2;
    display: none;
}
/*.group-show-options-small{width: 170px;}*/
/*.group-show-options-medium{width: 250px;}*/
/*.group-show-options-large{width: 300px;}*/
/*.group-show-options-extra-large{width: 400px;}*/
/*.group-show-options-active{
    bottom: 0;
}*/
.group-show-options a{
    display: table;
    width: 100%;
    padding: 7px 20px;
    text-align: center;
    border-bottom: var(--border-default);
    text-decoration: none;
    font-size: 13px;
}
.group-show-options a:last-child{
    border-bottom: none;
}
.group-show-options a > i{
    font-size: 12px;
}
.group-options-change-logo {
    /*background: #f1f1f1;*/
    display: none;
}
.group-options-change-logo input{
    margin-bottom: 15px;
}
.group-options-change-logo > i{
    font-size: 16px;
    margin-right: 5px;
    transition: all 0.3s;
}
.group-options-change-logo i:hover{
    cursor: pointer;
    color: var(--color-blue2);
}
.group-options-change-logo a{
    font-size: 11px;
    padding: 3px 5px 1px;
    float: right;
}
.group-options-change-logo a i{
    margin-right: 3px;
}
.group-options-change-logo .form-group > span{
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 12px;
    font-weight: bold;
    opacity: .7;
}

/* Faixa Lateral MODO ADM */
.faixa-modo-adm{
    position: fixed;
    left: 0;
    top: 0;
    width: 15px;
    height: 100%;
    display: table;
    background: black;
    z-index: 9;
}
.faixa-modo-adm div{
    transform: rotate(-90deg);
    color: #ffffff;
    position: absolute;
    left: -329px;
    font-size: 10px;
    width: 670px;
    bottom: 325px;
    text-align: center;
    letter-spacing: 0.7px;
    word-spacing: 3px;
}




/**
 * PAINEL ADMINISTRATIVO 
*/
/* Upload de Arquivos */
.section-page-adm{
    padding: 40px 0 200px;
    margin-top: -20px;
    background: #fff;
}
.section-page-adm h2{
    padding-top: 15px;
}
.preview-upload-files{
    border: var(--border-default);
    border-radius: 5px;
    margin: 10px 0;
    display: none;
}
.preview-upload-files > div{
    padding: 10px 12px;
    border-bottom: var(--border-default);
    display: table;
    width: 100%;
}
.preview-upload-files > div:last-child{
     border-bottom: none;
}
.preview-upload-files > div embed{
    max-width: 10%;
    max-height: 100%;
    float: left;
    margin-right: 1%;
}
.preview-upload-files > div span{
    font-size: 14px;
}
.form-upload-files label{
    margin-bottom: 0;
}
.form-upload-files label.error{
}
.form-upload-files textarea{
    height: 120px;
}

.tipo-documento-add-new{
    position: relative;
    display: none;
}
.tipo-documento-add-new i{
    position: absolute;
    right: 0;
    top: 0;
    padding: 11px 7px;
    color: var(--color-red1);
    opacity: .6;
    font-size: 18px;
    transition: all 0.3s;
}
.tipo-documento-add-new i:hover{
    opacity: 1;
    cursor: pointer;
}

.upload-arquivos-group-iframe {
    float: left;
    width: 19%;
    margin-top: 23px;
    margin-right: 1.2%;
}
.upload-arquivos-group-iframe iframe, .upload-arquivos-group-iframe embed{
    max-width: 100%;
    height: auto;
    border: var(--border-default);
}
.upload-arquivos-group-iframe embed[src*=".pdf"]{
    width: 100%;
    height: 330px;
}
.upload-arquivos-group-iframe img{
    max-width: 100%;
}
.upload-arquivos-group-iframe .group-buttons-iframe{
    right: 0;
    top: -23px;
}
.upload-arquivos-group-iframe .group-buttons-iframe i{
    padding: 0 0 0 5px;
    font-size: 14px;
    color: #000;
}
.upload-arquivos-group-iframe .group-buttons-iframe i:hover{
    cursor: pointer;
}
.upload-arquivos-group-iframe .group-buttons-iframe i.fa-trash{
    color: var(--color-red1);
}

.upload-arquivos-group-iframe:nth-child(5), .upload-arquivos-group-iframe:nth-child(10), 
.upload-arquivos-group-iframe:nth-child(15), .upload-arquivos-group-iframe:nth-child(20){
    margin-right: 0;
}

/**
 * PÁGINAS
*/
.section-single-page{
    padding-bottom: 150px;
}
.section-single-page .ss-title{
    padding: 60px 15px;
    background: var(--color-primary);
    margin-bottom: 20px;
}
.section-single-page .ss-title h2{
    text-align: center;
    color: white;
}
.section-single-page .ss-title .btn{
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin: 10px 3px 0;
}
.section-single-page .ss-title .btn-active-title{
    background: #fff;
    color: var(--color-primary);
}


.table .td-opcoes a{
    color: #000;
    padding: 0 3px;
    font-size: 14px;
    text-decoration: none;
}
.table .td-opcoes a i{
    transition: all 0.3s;    
}
.table .td-opcoes a i.fa-trash{
    color: var(--color-red1);
    opacity: .6;
}
.table .td-opcoes a:hover i{
    opacity: 1;
}

.pages-froala .form-group label{
    font-weight: bold;
    margin: 0;
}

/* Contracheques */
.group-buttons-year{
    /*border-left: var(--border-default);*/
    padding: 0 0 3px 0px;
    margin: 5px 0 10px;
}
.group-buttons-year:last-child{
    padding-bottom: 0;
}
.group-buttons-year h6{
    margin: 0;
    font-weight: bold;
    border-left: 2px solid var(--color-green1);
    padding: 5px 0px 5px 7px;
    font-size: 14px;
    background: #f6f6f6;
}
.group-buttons-year .group-buttons-month{
    border-bottom: 1px dashed var(--color-grey1);
    padding-left: 7px;    
}
.group-buttons-year .group-buttons-month:last-child{
    border-bottom: none;
}
.group-buttons-year .group-buttons-month strong{
    font-size: 13px;
    color: #000;  
    font-weight: 400; 
}
.group-buttons-year .group-buttons-month a{
    font-size: 12px;
}
.form-contracheque label{
    font-weight: bold;
    margin-bottom: 0;
}


.section-adm-srrps-edit .upload-arquivos-group-iframe,
.section-adm-legislacao-edit .upload-arquivos-group-iframe{
    width: 100%;
}
.section-adm-srrps-edit .upload-arquivos-group-iframe .group-buttons-iframe,
.section-adm-legislacao-edit .upload-arquivos-group-iframe .group-buttons-iframe{
    top: 0;
}


/* Servidor Logado */
.portal-admin-body-servidor {
    padding-top: 30px;
}


/* Resets Plugins/Frameworks */
header .highcharts-background{
    fill: transparent;
}


.modal-backdrop.show{
    opacity: 0.9!important;
}

/* Froala */
.fr-box ul{
    list-style: initial;
    padding: 0 0 0 40px;
    margin: 0 0 16px;
}
.fr-box a{
    text-decoration: underline;
}