
/* geral */

.hide,
.hidden{
    display: none !important;
}
.show{
    display: block !important;
}

textarea,
input,
select,
button,
body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
body{
    color: black;
}
img{
    max-width: 100%;
}
.in{
    max-width: 1400px;
    padding: 0px 15px;
}
.in_med{
    max-width: 1100px;
}
/* headings */
h1{
    font-size: 40px;
    font-weight: 900;
}
h2{
    font-size: 35px;
    font-weight: 900;
}
h3{
    font-size: 30px;
    font-weight: 900;
}
h4{
    font-size: 30px;
}
h5{
    font-size: 25px;
    font-weight: 900;
}
h6{
    font-size: 25px;
}

/* texto */

.txt,
.txt p{
    font-size: 18px;
    min-height: 25px;
    line-height: 25px;
    color: #333;
}
.txt a,
.txt p a{
    color: inherit;
    text-decoration: underline;
}

.txt strong,
.txt p strong{
    font-weight: 700;
}
.txt em,
.txt p em{
    font-style: normal;
    color: #EA2628;
}

.txt ul li{
    font-size: 18px;
    min-height: 25px;
    line-height: 25px;
    padding: 5px 0px 5px 25px;
    position: relative;
    color: #333;
}

.txt ul li:before{
    content: "\e912";
    font-family: 'icomoon';
    position: absolute;
    margin-left: -25px;
    width: 25px;
    color: #aaa;
}

/* checkbox e radio */
.radio,
.checkbox{
    position: relative;
}
.radio input,
.checkbox input{
    display: none;
}
.radio label,
.checkbox label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    padding-right: 20px;
}

.radio label:after,
.checkbox label:after{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    content: "\e937";
    font-family: 'icomoon';
    line-height: 20px;
    font-size: 20px;
    color: #aaa;

}
.radio input[type=radio]:checked ~ label:after,
.checkbox input[type=checkbox]:checked ~ label:after{
    content: "\e92c";
    color: #00B754;
}
.radio input[type=radio]:checked ~ label,
.checkbox input[type=checkbox]:checked ~ label{
    color: #00B754;
    font-weight: 700;
}

.radio a,
.checkbox a{
    margin-left: -20px;
    color: #333;
    text-decoration: underline;
}

.checkbox input[type=checkbox]:checked ~ a{
    color: #00B754;
    font-weight: 700;
}

/* select */
.select{
    background: white;
    border: 2px solid rgba(0,0,0,0.15);
    position: relative;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.select select{
    border: none;
    box-shadow: none;
    background-image: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance:  none;
    padding: 10px 40px 10px 10px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.select select:focus{
    outline: none;
}
.select:before{
    content: "";
    width: 10px;
    height: 10px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    position: absolute;
    transform: rotate(45deg);
    box-sizing: border-box;
    border: 3px solid rgba(0,0,0,0.15);
    border-left: none;
    border-top: none;
}
.select:hover{
    border-color: rgba(0,0,0,0.5);
}
.select:hover:before{
    border-color: rgba(0,0,0,0.5);
}

/* lightbox */
.lb.animated {
    animation-duration: .3s;
}
.lb{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0,0,0,0.5);
}
.lb_x{
    position: fixed;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    padding: 10px;
    z-index: 2;
}
.lb_in{
    z-index: 1;
}
.lb_centro .lb_in{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.lb_ct{
    position: relative;
    width: 100%;
}

/* accordion */
ul.acc{
    background: rgba(0,0,0,0.15);
}
ul.acc dt{
    background: rgba(0,0,0,0.15);
    cursor: pointer;
}
ul.acc dd{
    background: rgba(0,0,0,0.3);
    display: none;
}
ul.acc .aberto ~ dd{
    display: block;
    height: auto;
}

/* slider */
.owl-carousel{
    position: relative;
}
.owl-carousel .owl-nav {
    position: absolute;
    background: red;
    height: 0px;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    top: 50%;
    opacity: 0;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next{
    background: transparent;
    width: 60px;
    height: 60px;
    display: block;
    z-index: 10;
    position: absolute;
    transform: translateY(-50%);
    top: 0;
    opacity: 0.2;
}
.owl-carousel .owl-next{
    left: auto;
    right: 1px;
}
.owl-carousel .owl-prev span,
.owl-carousel .owl-next span{
    position: absolute;
    right: 35%;
    top: 25%;
    width: 50%;
    height: 50%;
    box-sizing: border-box;
    transform: rotate(-45deg);
    border: 5px solid #000;
    border-left: none;
    border-top: none;
}
.owl-carousel .owl-prev span{
    transform: rotate(135deg);
    left: 35%;
    right: auto;
}
.owl-carousel:hover > .owl-nav{
    opacity: 1;
}
.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover{
    opacity: 0.6;
}
.owl-carousel .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    width: 100%;
    bottom: 10px;
    height: 25px;
    font-size: 0px;
    background: red;
}
.local_pontos .owl-dot,
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    background: transparent;
    width: auto;
    height: auto;
}
.local_pontos .owl-dot span,
.owl-carousel .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.25);
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    display: block;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
    margin: 5px;
}
.local_pontos .owl-dot.active span,
.local_pontos .owl-dot:hover span,
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: white;
}

/*
   ██████████   ███   ███   ███   ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
   ████░░░░░░░░ ███░░ ███░░ ███░░ ████░░░░░░░░
   ██████████   ███░░ ███░░ ███░░ ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
     ░░░░████░░ ███░░ ███░░ ███░░   ░░░░████░░
   ██████████░░ ███████████████░░ ██████████░░
   ██████████░░ ███████████████░░ ██████████░░
     ░░░░░░░░░░  ░░░░░░░░░░░░░░░░   ░░░░░░░░░░
*/

body{
    background: #f5f5f5;
    color: #555;
    font-family: 'quicksand', sans-serif;
    overflow: hidden;
}

nav{
    position: relative;
    z-index: 10;
}

main{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.menu{
    padding: 10px;
    font-size: 0px;
}

.drop{
    position: absolute;
    font-size: 16px;
    display: none;
}

.drop:before{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    top: 0;
    left: 0;
    margin-top: -5px;
    margin-left: 14px;
    transform: rotate(45deg);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.15);
}

.drop ul{
    padding: 5px 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 3px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
}

.drop ul li a{
    display: block;
    height: 40px;
    line-height: 40px;
    color: #EA2628;
}


.drop ul li a:hover{
    color: #222;
}

.drop ul li a strong{
    font-weight: 700;
}

.menu_bt,
.user{
    display: inline-block;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    vertical-align: middle;
}

.menu_cx{
    display: inline-block;
    vertical-align: middle;
}

.menu_cx:hover > .drop{
    display: block;
}

.menu_bt{
    color: #EA2628;
    width: 50px;
    text-align: center;
    line-height: 54px;
    border-radius: 100%;
    font-size: 22px;
}

.user{
    padding-left: 10px;
}

.user strong{
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
    color: #777;
}

.user strong span{
    font-weight: 700;
    color: #333;
}

.cont{
    position: relative;
    max-width: 1200px;
    margin: 0px auto;
    padding: 20px;
}


main.aberto .cont{
    margin-left: 0;
}

main.aberto > .main_in{
    pointer-events: none;
}

.cont_tit{
    font-weight: 200;
    font-size: 30px;
}

.separador{
    padding: 30px 0px;
    font-weight: 700;
    color: #EA2628;
}

.separador span,
.separador a{
    display: inline-block;
    vertical-align: middle;
}
.separador a{
    color: #999;
    width: 30px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    border-radius: 100%;
    margin-left: 10px;
    background: transparent;
    box-shadow: 0px 0px 0px rgba(0,0,0,0);

}
.separador a:hover{
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    color: #EA2628;
}

.oferta.header{
    pointer-events: none;
}

.oferta.header > div{
    font-size: 11px;
    font-weight: 700;
    color: #999;
}

.tabela .oferta div span{
    display: block;
    padding: 15px 5px;
    min-height: 18px;
    line-height: 18px;
}

.oferta{
    display: flex;
    align-items: flex-start;
    align-items: center;
    box-sizing: border-box;
    height: 100%;
    flex-wrap: wrap;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #777;
}


.oferta > div{
    position: relative;
    box-sizing: border-box;
}

ul.tabela li:nth-child(2n+1) {  
    background: rgba(0,0,0,0.04);
}

ul.tabela li.oferta:hover{
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    cursor: pointer;
}

.it_estado{
    width: 5%;
    text-align: center;
}

.it_estado span:before{
    font-family: 'icomoon';
    content: "\e9d4";
    font-size: 18px;
    line-height: 18px;
    color: #ccc;
}

.oferta[data-estado="insc"] .it_estado span:before{
    content: "\e958";
    color: #555;
}

.oferta[data-estado="exec"] .it_estado span:before{
    content: "\e92d";
    color: #00B754;
}

.it_id{
    width: 10%;
    font-size: 12px;
    font-weight: 700;
    color: #999;
}
.it_oferta{
    width: 30%;
    color: #333;
}

.it_oferta strong{
    color: #777;
    font-weight: 700;
}

.it_zona{
    width: 15%;
}
.it_data_l{
    width: 15%;
    font-size: 14px;
}
.it_data_e{
    width: 15%;
    font-size: 14px;
}
.it_consultas{
    width: 5%;
}
.it_abrir{
    width: 5%;
    text-align: center;
}
.oferta.header .it_consultas{
    width: 10%;
}

.it_abrir span:before{
    font-family: 'icomoon';
    content: "\e912";
    font-size: 18px;
    line-height: 18px;
    color: #999;
}

.bt{
    background: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    color: #333;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    display: inline-block;
    position: relative;
    vertical-align: top;
    cursor: pointer;
}

.bt > i{
    margin-right: 10px;
}

.bt.vermelho{
    background: #EA2628;
    color: white;
}

.bt.cinza{
    background: #F5F5F5;
}

.bt.verde{
    color: white;
    background: #00B754;
}

.bt.flat{
    background: transparent;
    box-shadow: 0px 0px 0px rgba(0,0,0,0);
}

.bt.flat.vermelho{
    color: #333;
}
.bt.flat.cinza{
    color: #333;
}
.bt.flat.verde{
    color: #333;
}

.bt.flat:hover{
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}
.bt.flat.vermelho:hover{
    background: #EA2628;
    color: #fff;
    box-shadow: 0px 0px 0px rgba(0,0,0,0);
}
.bt.flat.cinza:hover{
    background: #333;
    color: #fff;
    box-shadow: 0px 0px 0px rgba(0,0,0,0);
}
.bt.flat.verde:hover{
    background: #00B754;
    color: #fff;
    box-shadow: 0px 0px 0px rgba(0,0,0,0);
}

.bt:hover{
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

.cortina{
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: none;
}

.box{
    position: absolute;
    top: 0;
    right: -60%;
    bottom: 0;
    background: white;
    width: 60%;
    box-shadow: 0px 0px 0px 100vw rgba(0,0,0,0);
    z-index: 100;
    overflow-x: hidden;
    overflow-y: auto;
}

.box.aberto{
    right: 0;
    box-shadow: 0px 0px 0px 100vw rgba(0,0,0,0.6);
}

.box_in{
    padding: 10px 40px 0px 40px;
}

.b_nav{
    padding-bottom: 20px;
    margin-left: -20px;
}

.b_tit{
    color: #EA2628;
    font-size: 35px;
    line-height: 40px;
    font-weight: 300;
}

.b_tit strong{
    font-weight: 700;
}

.b_main{
    font-size: 0px;
    padding: 40px 0px 0px 0px;
}

.b_conteudo,
.b_infos{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    box-sizing: border-box;
}

.b_infos{
    width: 30%;
}

.b_conteudo{
    width: 70%;
    padding-bottom: 40px;
}

.b_info{
    padding-right: 20px;
    padding-bottom: 20px;
}

.b_info span{
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #999;
}

.b_info strong{
    display: block;
    font-weight: 700;
    padding-top: 5px;
}

.b_info_mini{
    padding-top: 40px;
    opacity: 0.7;
}


.b_estado{
    font-size: 20px;
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    padding-bottom: 10px;
}

.b_estado.verde{
    color: #00B754;
}

.b_local{
    font-size: 25px;
    padding-bottom: 40px;
}

.b_local i{
    color: #aaa;
    font-size: 14px;
    padding: 10px 0px;
    display: inline-block;
}

.b_local strong{
    display: block;
    font-weight: 700;
}

.b_local em{
    font-size: 20px;
}

.b_candidatura{
    margin-left: -40px;
    margin-right: -40px;
    background: rgba(0,0,0,0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
    font-size: 18px;
}

.b_candidatura:before{
    content: "";
    position: absolute;
    width: 200%;
    left: -50%;
    top: 0;
    height: 20px;
    box-shadow: inset 0px 3px 5px rgba(0,0,0,0.1);
}

.b_cand_tit{
    font-size: 30px;
    padding-bottom: 20px;
}

.b_questao{
    padding-bottom: 20px;
}

.questao{
    padding-bottom: 10px;
    font-weight: 700;
}

.b_obs{
    padding-bottom: 40px;
}

.b_obs textarea{
    background: #fff;
    display: block;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.15);
    color: #333;
    line-height: 25px;
    min-height: 300px;
}


.formulario{
    margin: 0px auto;
    position: relative;
    max-width: 700px;
    padding: 10px 15px 50px 15px;
}

.form_tit{
    font-size: 40px;
    font-weight: 300;
    color: #EA2628;
}

.form_subtit{
    padding: 20px 0px;
    font-size: 25px;
    font-weight: 700;
}

.f_linha{
    padding-bottom: 20px;
    position: relative;
}

.f_linha label{
    padding-bottom: 10px;
    display: block;
    padding-left: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
}

.f_linha textarea,
.f_linha input{
    background: #fff;
    display: block;
    box-sizing: border-box;
    padding: 15px;
    line-height: 20px;
    font-size: 18px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.15);
}

.f_linha textarea{
    min-height: 200px;
}

.f_linha textarea:hover,
.f_linha input:hover{
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
}

.f_linha textarea:focus,
.f_linha input:focus{
    box-shadow: 0px 5px 50px rgba(0,0,0,0);
}

.f_linha textarea:read-only,
.f_linha input:read-only{
    background: rgba(0,0,0,0.05);
    box-shadow: none;
    color: #000;
}

.f_fim{
    padding-top: 20px;
}

.op_distritos .checkbox{
    display: block;
}

.op_distritos label{
    width: 100%;
}

.b_candidatura.desativo{
    pointer-events: none;
}

.b_candidatura.desativo textarea{
    background: transparent;
    box-shadow: none;
    padding-bottom: 0;
}

.termos_tit{
    font-size: 25px;
    color: #EA2628;
    font-weight: 700;
    padding-bottom: 20px;
}

.cont_termos{
    background: white;
    max-width: 900px;
    margin: 40px auto;
    padding: 70px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.15);
}
















