﻿@font-face {
    font-family: WorkSans-Regular;
    src: url('Fonts/Work Sans/WorkSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: WorkSans-Bold;
    src: url('Fonts/Work Sans/WorkSans-Bold.ttf') format('truetype');
}
@font-face {
    font-family: WorkSans-SemiBold;
    src: url('Fonts/Work Sans/WorkSans-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: WorkSans-Regular;
    src: url('Fonts/Work Sans/WorkSans-Regular.ttf') format('truetype');
}
/*@font-face {
    font-family: MYRIADPRO-BOLD;
    src: url('Fonts/Myriad Pro/MYRIADPRO-BOLD.OTF') format('opentype');
}
@font-face {
    font-family: MyriadPro-Light;
    src: url('Fonts/Myriad Pro/MyriadPro-Light.otf');
}
@font-face {
    font-family: MYRIADPRO-REGULAR;
    src: url('Fonts/Myriad Pro/MYRIADPRO-REGULAR.OTF') format('opentype');
}*/
/*#region FONTS*/
.regular{
    font-family:WorkSans-Regular!important;
}
.bold{
    font-family:WorkSans-Bold!important;
}
.lightgray{
    color:#666d80!important;
}
.darkgray{
    color:#4d4d4d!important;
}
/*#endregion FONTS*/

/*#region MASTER*/
html {
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: relative;
    min-height: 100%;
    font-family: WorkSans-Regular, 'Roboto', sans-serif !important;
}
body {
    margin: 0 0 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: white;
}
.blue-link {
    font-family: WorkSans-Regular;
    min-width: 65px;
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    background-image: linear-gradient(120deg, #1b56a6, #0093e9);
    display: inline-block;
    height: 1.3em;
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 3px;
    padding-top: 5px;
    text-align: center;
}
    .blue-link:hover {
        background: linear-gradient(120deg, #1b56a6, #1b56a6);
    }
.blue-button {
    font-family: WorkSans-Regular;
    text-decoration: none;
    border-radius: 10px;
    background-image: linear-gradient(120deg, #1b56a6, #0093e9);
    display: inline-block;
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 6px;
    padding-top: 6px;
    border: none;
    cursor: pointer;
    color:white;
}

    .blue-button:hover {
        background: linear-gradient(120deg, #1b56a6, #1b56a6);
    }
.gray-link{
	min-width: 45px;
	color: #747474;
	text-decoration: none;
	border-radius: 10px;
	display: inline-block;
	height: 1.2em;
	font-size: 14px;
	border: 1px solid #747474;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 4px;
	padding-top: 5px;
}
    .gray-link:hover {
        font-weight: bold;
    }
.master-header-horizontal{
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width:100%;
    z-index:100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-div {
    display: flex;
    align-items: center;
    width: 114px;
    height: 70px;
    justify-content: center;
}
.logo {
    outline: none;
    max-height: 55px;
    max-width: 100px;
}
.master_header {
	background-color: #FFFFFF;
	position: fixed;
	height: 100%;
	left: 0;
	top: 60px;
	width: 165px;
	z-index: 110;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	padding-left: 10px;
	overflow: hidden;
	-ms-text-overflow: clip;
	-o-text-overflow: clip;
	text-overflow: clip;
}
.master_header_minimizado {
    width: 34px;
    padding-left: 10px;
    overflow: hidden;
    -ms-text-overflow: clip;
    -o-text-overflow: clip;
    text-overflow: clip;

}
.master_container {
    /* Este 100vh representa toda a altura do viewport(tamanho da janela do browser) e depois subtrai 60px do header, 50px do footer e 20px dos paddings(10px padding em cima e 10px do padding de baixo)*/
    min-height: calc(100vh - 60px - 50px - 20px);
    margin-top: 60px;
    margin-left: 175px;
    margin-right: 20px;
    padding: 10px;
    background-color: #f4f7fc;
    border-radius: 15px;
    margin-bottom: 50px;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.master_container_expandido{
    margin-left:44px!important;
}
.marginBottom10{
    margin-bottom:10px;
}
.master_footer {
    position: fixed;
    left: 0px;
    bottom: 0;
    height: 50px;
    background: #ffffff;
    font-size: 10px;
    color: #999999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
    padding: 0 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 120;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.btn-avatar{
    position:relative;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    background-size: cover;
    border: 3px solid;
    border-color: white;
    box-shadow: 0px 0px 13px 3px rgb(236, 236, 236);
    outline:none;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.btn-avatar:hover{
    box-shadow: 0px 0px 12px 3px rgb(210, 210, 210);
}
.avatar-div{
    padding-top: 3px;
}
.avatar-options-list{
    position: absolute;
    right: 45px;
    top: 30px;
    padding: 0;
    list-style: none;
    text-align: center;
    background-color: #FFFFFF;
    border: 1px solid #bbb;
    border-radius: 3px;
    box-shadow: #ccc 0 1px 5px;
    display: none;
    z-index: 210;
}
.avatar-options-list.active{
    display: flex;
    flex-flow: column;
    border-radius:10px;
    border: none;
}
.avatar-icon-list-item .avatar-option-button {
    background-color: #ffffff00;
    font-family: WorkSans-Regular;
    border: none;
    text-decoration: none;
    color: #333333;
    display: block;
    padding: .5em 1em;
    outline: none;
    cursor: pointer;
    font-size: 15px;
}
/*Estes dois estilos colocam o primeiro e último item no menu do AVATAR redondos na esquina do menu enquanto os restantes tem hover reto*/
.avatar-options-list .avatar-icon-list-item:first-child{
    border-top-left-radius:10px!important;
    border-top-right-radius:10px!important;
}
.avatar-options-list .avatar-icon-list-item:last-child{
    border-bottom-left-radius:10px!important;
    border-bottom-right-radius:10px!important;
}
.avatar-options-list .avatar-icon-list-item:hover{
    background-color: #f4f7fc;
}
.nome-observatorio {
    position: fixed;
    top: 12px;
    left: 180px;
    color: black;
    z-index: 101;
    font-size: 18px;
    font-family: WorkSans-SemiBold;
    margin-right: 65px;
}
.nome-projecto {
    position: fixed;
    top: 35px;
    left: 180px;
    color: #545454;
    background-color: white;
    z-index: 101;
    font-size: 16px;
    font-family: WorkSans-SemiBold;
    margin-right: 65px;
    line-height: 20px;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: -webkit-calc(100% - 380px);
}
.menu {
    /*margin-top:10px;*/
}
#Menu {
    float: none !important;
}
#Menu a{
    display:flex;
}
.menu > div a {
    font-family: WorkSans-Regular;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.3px;
    line-height: 1.87;
    color: #666666;
    padding: 10px 0px !important;
    outline: 0;
    max-height: 30px !important;
    min-height: 30px !important;
    transition: font-size 0.2s ease;
}
.icon{
    width: 22px;
    height: 25px;
    margin-right:15px;
}
/*Hover dos ícones*/
.highlighted path{
    fill: #126bbd!important;
}
.highlighted path, .selected polygon,.selected path,{
    fill: #126bbd!important;
}
.green-color{
    color:green!important;
}
.menu a:hover {
    color: #126bbd !important;
    font-weight: 600;
}
.menu a.active, .menu a.selected {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    padding: 10px 0px !important;
    background: #fff;
    color: #126bbd;
}
.logout {
    display: flex;
    margin-right: 25px;
}
.icon-menu {
    color: #424242 !important;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    width: 34px;
    padding-left: 16px;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.fa-bars, .fa-times{
    font-size:14px;
}
.fa-bars-visible{
    display:inline!important;
}
.fa-times-hidden{
    display:none!important;
}
.personal-info-btn {
    font-family: WorkSans-Regular,'Roboto', sans-serif !important;
    color: #424242 !important;
    background-color: #ffffff;
    border: 0;
    cursor: pointer;
}
.personal-info-btn:hover{
    background: #fff;
    color: #000!important;
}
.white-card{
    background: #ffffff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
    border-radius: 10px;
    margin-left: 30px;
    margin-right: 23px;
    z-index: 10;
    padding-bottom: 20px;
}
.wrapper-cartoes{
    display:flex;
    padding-right: 20px;
    padding-left: 20px;
}
.white-card-aprovisionamento{
    background: #ffffff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
    border-radius: 10px;
    margin-left: 30px;
    margin-right: 23px;
    z-index: 10;
    padding-bottom: 20px;
}
.white-card-manage-associations {
    background: #ffffff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
    border-radius: 10px;
    z-index: 10;
    padding-bottom: 20px;
}
.white-card-aprovisionamento-filtros{
    background: #ffffff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 23px;
    z-index: 10;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-top: 0px;
    display: flex;
}
.white-card-aprovisionamento-2filtros {
    background: #ffffff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 23px;
    z-index: 10;
    padding-bottom: 20px;
    padding-top: 0px;
    display: flex;
    -ms-flex-flow: column;
    -webkit-flex-flow: column;
    flex-flow: column;
}
.cartao-filtro{
    width: 40%;
    border-radius: 10px;
    background-color: #f4f7fc;
    padding: 20px;
    margin-right: 20px;
    margin-top: 20px;
}
.titulo-cartao-filtro{
    margin-bottom: 10px;
}
.titulo-cartao-2filtros{
    font-size: 20px;
    margin-top: 20px;
    padding-left: 20px;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 15px;
}

.filtros-titulo-2 {
    width: 38px;
    height: 11px;
    font-family: WorkSans-Regular;
    font-size: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #7c7f86;
}
.div-valores-filtro{

}
.valores-filtro{
    background-color: #e9edf5;
    border-radius: 10px;
}
.div-valores {
    padding-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10px;
    color: #4c4c4c;
    font-size: 15px;
    font-family: WorkSans-Regular;
    display: flex;
    justify-content: space-evenly;
    height: 50px;
    align-items: center;
}
.div-valores-unico {
    padding-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10px;
    color: #4c4c4c;
    font-size: 15px;
    font-family: WorkSans-Regular;
    display: flex;
    height: 50px;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.div-valores-2filtros {
    border-radius: 10px;
    background-color: #e9edf5;
    padding-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10px;
    color: #4c4c4c;
    font-size: 15px;
    font-family: WorkSans-Regular;
    display: flex;
    justify-content: space-evenly;
    height: 50px;
    align-items: center;
}
.div-valores-2filtros-unico {
    padding-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #4c4c4c;
    font-size: 15px;
    font-family: WorkSans-Regular;
    display: flex;
    height: 50px;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: #e9edf5;
    border-radius: 10px;
}
.label-valores-filtro {
    padding-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #7c7f86;
    font-size: 15px;
    font-weight: bold;
    font-family: WorkSans-Regular;
    width: 75px;
}
.white-card-paddings{
    padding:20px;
}
.white-card-title {
    font-family: WorkSans-Bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 40px;
    border-bottom: 1px solid #e6e6e6;
    height: 40px;
    font-weight: bold;
    font-size: 14px;
    color: #4d4d4d;
}
.flex-center{
    display:flex;
    align-items:center;
    justify-content:center;
    margin: auto;
}
.warning-icon{
    font-size: 30px;
    margin-right: 20px;
    color: #c30000;
}
.help-icon {
    font-size: 30px;
    margin-right: 20px;
    color: #195cac;
}
.svg-warning-icon {
    padding: 6px 6px;
    border-radius: 9px;
    width: 35px;
    margin-right: 15px;
}
.btn-anular{
    margin-bottom: 15px;
    margin-top: 15px;
}
.myProBar{
    width: 86px;
    margin: auto;
    border-radius: 10px;
}
#wrapper-progressBar{
    border-radius: 10px;
    width: 100%;
    background-color: #e2e2e2;
    overflow: hidden;
    height: 2px;
    margin-top: 0px;
}
.progressBar {
    width:0%;
    border-radius: 10px;
    -moz-transition: width 1s ease 0s;
    -o-transition: width 1s ease 0s;
    -webkit-transition: width 1s ease 0s;
    transition: width 1s ease 0s;
    height: 5px;
    background-image: linear-gradient(120deg, #1b56a6, #0093e9);
}
.cartao-margin{
    padding:20px;
}
/*#endregion MASTER*/
/*#region Questionarios*/
.new-start-date-error-label, .new-end-date-error-label {
    display: none;
}
.header.questionarios{
    margin-left: 30px;
    margin-right: 30px;
}
.page_header{
    background-color: #f4f7fc;
    z-index: 100;
    margin-bottom:10px;
    margin-top:10px;
}
.page_header_visualizar_questionario{
    background-color: #f4f7fc;
    z-index: 100;
}
.page-header-listagem-grupos {
    background-color: #f4f7fc;
    z-index: 100;
    margin-bottom: 20px;
}
.page_header::after{
    content: "";
    display: block;
    clear: both;
}
.barra_auxilio{
	position: fixed;
	height: 18px;
	width: -webkit-calc(100% - 195px);
	left: 175px;
	z-index: 22;
	background-color: #f4f7fc;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
    top:70px;
}
.barra_auxilio_tras {
    position: fixed;
    height: 18px;
    width: -webkit-calc(100% - 195px);
    top: 70px;
    left: 175px;
    z-index: 21;
    background-color: white;
}
.barra_auxilio_expandido{
    left:44px!important;
    width: -webkit-calc(100% - 64px);
}
.barra_auxilio_tras_expandido{
    left:44px!important;
    width: -webkit-calc(100% - 64px);
}
.barra-sticky{
        display: flex;
        position: sticky;
        top: 68px;
        background-color: #f4f7fc;
        z-index: 20;
        padding-top: 20px;
        padding-bottom: 20px;
        align-items: center;
}
.button-retroceder{
    text-decoration: none;
    width: 23px;
    display: flex;
    margin-right: 10px;
}
.svg-icon{
    padding: 6px 6px;
    border-radius: 9px;
}
.svg-icon-disabled{
    padding: 6px 6px;
    border-radius: 9px;
}
.svg-icon-retroceder {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    padding: 6px 6px;
    border-radius: 7px;
    width: 17px;
}
.svg-icon:hover{
    background-color: #e1e9f5;
}
.grupo-items{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e6e6e6;
    padding-top: 25px;
    padding-left: 35px;
    padding-right: 35px;
    max-height: 80px;
    padding-bottom: 15px;
}
.grupo-items-aprovisionamento{
	display: flex;
	padding-top: 25px;
	padding-left: 35px;
	padding-right: 35px;
	max-height: 80px;
	padding-bottom: 15px;
}
.grupo-items-medidas {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #f4f7fc;
    padding-top: 25px;
    padding-left: 35px;
    padding-right: 35px;
    max-height: 80px;
    padding-bottom: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 51px 0 rgba(0, 0, 0, 0.07);
    margin: 0px 30px;
}
.wrapper_grupos_questionarios {
    /*display: flex;*/
    margin-top: 25px;
    /*justify-content: space-around;*/
    margin-left: 10px;
}
.container-empty-data {
    background-color: #ffdada;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
}
.checkboxlist-grupos-questionarios {

    margin-bottom:10px;
    background-color: #f4f7fc;
    padding: 20px;
    overflow-x:auto;
    border-radius:10px;
}
.upload-template-div {
    width: 27px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e1e9f5;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    -moz-transition: width 1s ease 0s;
    -o-transition: width 1s ease 0s;
    -webkit-transition: width 1s ease 0s;
    transition: width 1s ease 0s;
}
.upload-template-div-extended {
    width: 230px;
}
.upload-template-label {
    color: #666d80 !important;
    font-weight: normal !important;
    font-size: 14px;
    margin-right: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space:nowrap;
}
.grupo-items-indicadores {
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
    padding-top: 25px;
    padding-bottom: 15px;
    background-color: white;
    border-radius: 10px;
}
.grupo-items-indicadores-filtros{
    margin-top: 30px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
    padding-top: 10px;
    padding-bottom: 15px;
    background-color: white;
    border-radius: 10px;
}
.grupo-filtro-div{
    padding-left: 35px;
    margin-top: 15px;
}
.div-periodicidade-tipo-indicador{
    margin-left: 35px;
    margin-right: 35px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: flex;
}
.panel-periodicity{
    border-right: 1px solid #e6e6e6;
}
.grupo-filtro{
    margin-bottom: 15px;
}
.grupo-filtro-items-div{
    margin-top: 10px;
}
.grupo-filtro-item {
    background-color: #f3f6fb;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
    padding: 5px 15px;
    margin-right: 20px;
    margin-bottom: 10px;
}
.indicador-periodicidade{
    display:flex;
}
.indicador-periodicidade:first-child{
    line-height: 3em;
}
.divider-periodicidade{
    margin-left: 5px;
    border-left:1px solid #e6e6e6;
    margin-right: 5px;
}
.aprovisionamento-tab{
    box-shadow:none!important;
    background-color: #f4f7fc!important;
}
.grupo-items-estatisticas{
    display: flex;
    border-bottom: 1px solid #e6e6e6;
    padding-top: 25px;
    padding-left: 40px;
    padding-right: 40px;
    max-height: 80px;
    padding-bottom: 15px;
}
.divider{
    border-left:1px solid #e6e6e6;
}
.page_buttons_questionario {
    margin-right: 25px;
    position: absolute;
    right: 0;
}
.grupo-items-texto{
    background-color:white;
    border-radius: 10px;
}
.tab-item-questionario {
    display: flex;
    -ms-flex-flow: column;
    -webkit-flex-flow: column;
    flex-flow: column;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 20px;
    margin-left: 20px;
}
.tab-item-questionario:first-of-type {
    display: flex;
    -ms-flex-flow: column;
    -webkit-flex-flow: column;
    flex-flow: column;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 20px;
    margin-left: 0px!important;
}
.tab-questionario-texto {
    display: flex;
    -ms-flex-flow: column;
    -webkit-flex-flow: column;
    flex-flow: column;
    margin-left: 35px;
    margin-right: 35px;
    padding-bottom: 20px;
    padding-top: 20px;
}
.tab-questionario-texto:not(:last-of-type){
    border-bottom: 1px solid #e6e6e6;
}
.item-alvos{
    position:relative;
}
.label-open-alvos{
    cursor: pointer;
    color: #126bbd;
    font-weight: 600;
    margin-left: 5px;
}
.label-numero-alvos{
    cursor: pointer;
    color: #126bbd;
    font-weight: 600;
}
.blue-text{
    cursor: pointer;
    color: #126bbd;
    font-weight: 600;
}
.alvos-item-list {
    position: fixed;
    margin:45px 0px 0px 60px;
    padding: 14px;
    list-style: none;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.19);
    display: none;
    z-index: 10;
}
.passwordStrenghtHelp {
    position: absolute;
    margin: 52px 0px 0px 212px;
    padding: 14px;
    list-style: none;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.19);
    display: flex;
    z-index: 10;
    -ms-flex-flow: column;
    -webkit-flex-flow: column;
    flex-flow: column;
    width: 255px;
    opacity:0;
}
.passwordStrenghtHelp.active {
    opacity: 1;
    -moz-transition: opacity .5s;
    -o-transition: opacity .5s;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}
.passwordTipTitle {
    font-family: WorkSans-Regular;
    font-size: 15px;
    color: #ef3232;
}
.pass-tip-text {
    font-family: WorkSans-Regular;
    font-size: 13px;
    margin-top: 10px;
    color: #4c4c4c;
}
.passwordValid{
    border-color: #03d603!important;
}
.alvos-item-list div{
    margin-bottom:8px;
}
.alvos-item-list.active {
    display: flex;
    -ms-flex-flow: column;
    -webkit-flex-flow: column;
    flex-flow: column;
}
.read-more.blue-text{
    position: relative;
    display: inline-block;
}
.read-more .more-text {
    min-width: 300px;
    top: 100%;
    left: 100%;
    padding: 20px 20px;
    color: #666d80;
    background-color: #FFFFFF;
    font-weight: normal;
    font-size: 13px;
    border-radius: 10px;
    position: absolute;
    z-index: 99999999;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: 0 1px 8px 0 0 51px 0 rgba(0, 0, 0, 0.07);
    visibility: hidden;
    opacity: 0;
    -moz-transition: opacity 0.8s;
    -o-transition: opacity 0.8s;
    -webkit-transition: opacity 0.8s;
    transition: opacity 0.8s;
    margin-left: calc(-40vw + 50%);
}
.read-more:hover .more-text{
    visibility:visible;
    opacity:1;
}
.grid_questionarios tr:not(:first-of-type),
.grid_indicadores tr:not(:first-of-type),
.grid_medidas tr:not(:first-of-type){
    cursor: pointer;
}
.empty-data-row{
    height: 50px!important;
}

.blue-link-btn {
    font-family: WorkSans-Regular !important;
    min-width: 45px;
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    background-image: linear-gradient(120deg, #1b56a6, #0093e9);
    display: inline-block;
    height: 20px;
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 3px;
    padding-top: 5px;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border: 0px;
    cursor: pointer;
    outline: none;
}
    .blue-link-btn:hover {
        background: linear-gradient(120deg, #1b56a6, #1b56a6);
    }
    .blue-link-btn.disabled {
        font-family: WorkSans-Regular !important;
        min-width: 45px;
        color: #585858 !important;
        text-decoration: none;
        border-radius: 10px;
        background-image: none;
        display: inline-block;
        height: 20px;
        font-size: 14px;
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 3px;
        padding-top: 5px;
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        border: 0px;
        cursor: pointer;
        outline: none;
        border: 1px solid gray;
        background-color: #eeeff0;
    }
    .blue-link-btn:disabled {
        font-family: WorkSans-Regular !important;
        min-width: 45px;
        color: #585858 !important;
        text-decoration: none;
        border-radius: 10px;
        background-image: none;
        display: inline-block;
        height: 20px;
        font-size: 14px;
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 3px;
        padding-top: 5px;
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        border: 0px;
        cursor: pointer;
        outline: none;
        border: 1px solid gray;
        background-color: #eeeff0;
    }
.btn-new-filter-option {
    font-family: WorkSans-Regular;
    padding: 10px;
    border-radius: 3px;
    border: 1px dashed #b9c0cd;
    font-size: 13px;
    background-color: #f4f7fc;
    height: 30px;
    color: #1070c2;
    line-height: 2px;
    margin: 5px 30px;
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    outline: none;
}
.btn-new-filter-option:hover {
    background-color: #ebeff7;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.fa-circle{
    font-size:8px;
}
/*#endregion Questionarios*/
.content:after, .page_header:after, .grid_div:after {
    content: "";
    display: block;
    clear: both;
}
.page_title {
    font-family: WorkSans-SemiBold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.35;
    letter-spacing: 0.41px;
    color: #666d80;
    display: flex;
    align-items: center;
    font-size: 20px;
    /*font-weight: 500;*/
}
.page_title_com_margem {
	font-family: WorkSans-SemiBold;
	margin-left: 30px;
	font-size: 20px;
	/*font-weight: 500;*/
	font-style: normal;
	font-stretch: normal;
	line-height: 1.35;
	letter-spacing: 0.41px;
	color: #666d80;
	display: flex;
	align-items: center;
}
.page_title_visualizar_quest {
    font-family: WorkSans-SemiBold;
    font-size: 20px;
    width: -webkit-calc(100% - 244px);
    font-style: normal;
    font-stretch: normal;
    line-height: 1.35;
    letter-spacing: 0.41px;
    color: #666d80;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text-overflow {
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.inside_page_title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: WorkSans-Bold;
    margin-left: 30px;
    font-size: 20.7px;
    /*font-weight: bold;*/
    font-style: normal;
    font-stretch: normal;
    line-height: 1.35;
    letter-spacing: 0.41px;
    color: #666d80;
}
.page_description {
    margin-top: 5px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 20px;
    color: #666d80;
    letter-spacing: 0.3px;
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
}
.page_search {
    width: 50%;
    float: left;
    margin-left:30px;
}
.page_search_indicadores {
}
.page_buttons {
    margin-right: 25px;
    position: absolute;
    top: 0;
    right: 0;
}
.page_buttons_centered{
    margin-right: 25px;
    position: absolute;
    right: 0;
}
.page_buttons.width-100 {
    width: 100%;
}
.page_content {
    width: 50%;
    float: left;
    margin: 20px 0;
}
.page_content.width-85 {
    width: 85%;
}
.data-div{
    display:flex;
    flex-flow:column;
    justify-content:center;
    align-items:center;
    margin-right: 25px;
}
.span-time {
    font-family: WorkSans-Regular;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.23;
    letter-spacing: 0.78px;
    color: #555555;
}
.span-horas{
    font-size: 14px;
}
.span-data{
    font-size: 12px;
}
.grid_div {
    background: #ffffff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
    margin-bottom: 10px;
    border-radius: 10px;
    margin-left: 30px;
    margin-right: 23px;
    z-index: 10;
    overflow-x: auto;
}
.grid-div {
    overflow-x: auto;
}
.grid_div_indicadores {
    background: #ffffff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
    margin-bottom: 10px;
    border-radius: 10px;
    z-index:10;
}
.grid_div_provTemBase {
    background: #ffffff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
    margin-bottom: 10px;
    border-radius: 10px;
    z-index: 10;
}

    .grid_div_provTemBase tr {
        cursor: default !important;
    }
.grid {
    width: 100%;
    border-spacing: 10px;
    border-collapse: separate;
}
.grid_header {
    text-align: left;
    font-weight: bold;
    width: 100%;
    vertical-align: middle;
    border-bottom: 1px #e6e6e6 solid !important;
}
.grid_header th{
    height: 23px;
    border: 0px none transparent;
    padding-left: 10px!important;
    padding-right: 10px;
    padding: 20px 0;
    min-width: 130px;
    text-align: left;
}
.grid_header th:last-of-type{
    text-align:right;
}

.grid_header th:first-of-type{
    padding-left: 45px!important;
    text-align:left!important;
}
	.grid_header th a {
		font-family: WorkSans-Bold;
		text-decoration: none;
		color: #333333;
		font-size: 14px;
		font-weight: bold;
		font-style: normal;
		font-stretch: normal;
		line-height: normal;
		letter-spacing: normal;
		text-align: left;
		color: #4d4d4d;
	}
.grid_header_title {
    font-family: WorkSans-Bold;
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    /*font-weight: bold;*/
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #4d4d4d;
}
.grid_header th a.open-modal-publicacao {
    font-family: WorkSans-Regular;
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #4d4d4d;
    padding: 6px 20px;
}
.grid_data {
    background-color: #FFF;
    font-weight: normal;
    text-align: left !important;
    vertical-align: middle;
}
.grid_data:hover {
    background-color: #f4f7fc;
}
.grid_data td {
    font-family: WorkSans-Regular;
    font-size: 14px;
    font-style: normal;
    letter-spacing: normal;
    color: #4d4d4d;
    padding: 20px 0;
}
.grid_data_group {
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    white-space: nowrap;
    width: 100px;
}
.grid_data:hover{
    cursor:pointer;
}
.grid_data .grid_data_text{
    width:300px;
}
.listButtons-1{
    padding:0!important;
}
.listButtons-1 a{
    margin:0!important;
}
.grid_pager {
    line-height: 50px;
    padding-left: 0!important;
}
.grid_pager span, .grid .grid_pager a:hover {
    color: #126bbd !important;
    font-weight:600;
}
.grid_pager span, .grid .grid_pager a {
    color: #808080;
    background-color: #ffffff;
    text-decoration: none;
    padding-left: 9px;
    padding-right: 9px;
    padding-top: 4px;
    padding-bottom: 4px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}

    .grid_pager table {
        font-family: WorkSans-Regular;
        font-size: 14px;
        width: 100%;
    }
.grid_pager table tr{
    display:flex;
    justify-content:center;
    height:60px;
    padding-left: 0px!important;
}
.grid_pager table tr td{
    padding-left: 0px!important;
}
.grid, .grid tr, .grid td {
    height: 23px;
    border: 0px none transparent;
    padding-left: 45px;
    padding-right: 10px;
}
.grid, .grid tr, .grid td:not(:first-of-type) {
    height: 20px;
    border: 0px none transparent;
    padding-left: 10px!important;
    padding-right: 10px;
    text-align:left;
}
.grid_data td:last-of-type{
    text-align:right;
    padding-right:30px!important;
}
/*Estes dois são necessários para pôr os cantos de baixo redondos*/
.grid_data:last-of-type td:first-of-type{
    border-bottom-left-radius:10px;
}
.grid_data:last-of-type td:last-of-type{
    border-bottom-right-radius:10px;
}
.grid_div+div{
    border-radius:10px;
}
.div_tabs_indicadores .ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 0em 0em!important;
    background: none;
    border-radius: 10px;
    box-shadow: none;
}

.div_tabs .ui-tabs-panel.div_details_tab.tab-indicadores{
    background-color: #f4f7fc;
    box-shadow: none;
}
.ui-tabs .ui-tabs-nav
{
    background: none !important;
    background: #f4f7fc!important;
    margin-bottom:20px;
}
.ui-tabs.ui-widget-content {
    border: none!important;
    background: #f4f7fc;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: .5em 1.5em;
    text-decoration: none;
}
.div_tabs {
    background-color: rgba(180, 180, 180, 0.00);
    font-size: 13px;
    background: #ffffff;
    margin-bottom: 10px;
    border-radius: 10px;
    margin-left: 30px;
    margin-right: 23px;
    z-index:10;
}
.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 0em 0em!important;
    background: none;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
}
.div_tabs .ui-tabs {
    padding: 0 !important;
    border: none!important;
    background-color: rgb(243, 246, 251);
}
.div_tabs .ui-tabs .ui-tabs-nav {
    padding: 0 !important;
}
.div_tabs .ui-widget-header .ui-state-default {
    background-color: rgba(180, 180, 180, 0.00);
    outline: none !important;
    border: none;
}
    .div_tabs .ui-widget-header .ui-state-default a {
        background-color: rgba(180, 180, 180, 0.00);
        outline: none !important;
        cursor: pointer !important;
        font-family: WorkSans-Regular;
        font-size: 14px;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
    }
.div_tabs .ui-widget-header .ui-state-default a:hover{
    color: #126bbd;
}
.div_tabs .ui-widget-header .ui-state-active a {
    font-family: WorkSans-Bold;
    color: #126bbd;
    background-color: #e1e9f5;
    border-radius: 10px;
    /*font-weight:bold;*/
}
.ui-widget {
    font-family: WorkSans-Regular !important;
    font-size: 1.1em;
}
.ui-corner-all{
    border-radius:10px;
}
.ui-widget-header {
     border: none!important;
     background:none!important;
     color: #222;
     font-weight: bold;
}
.hidden {
    display: none;
}
.upload_file input[type="file"] {
    display: inline-block;
    background: #FFF;
    border: 1px dashed #999;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 1em 2em;
    width: 300px;
}
.icon-button-add {
    font-family: WorkSans-Regular;
    top: 7px;
    border-radius: 10px;
    background-image: linear-gradient(120deg, #1b56a6, #0093e9);
    color: #FFFFFF !important;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    letter-spacing: normal;
    font-stretch: normal;
    font-style: normal;
    height: 18px;
    padding-top: 7px;
    padding-bottom: 5px;
}
    .icon-button-add:hover {
        background: linear-gradient(120deg, #1b56a6, #1b56a6);
    }

.button-manage-groups {
    font-family: WorkSans-Regular;
    top: 7px;
    border-radius: 10px;
    background-image: linear-gradient(120deg, #1b56a6, #0093e9);
    color: #FFFFFF !important;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    letter-spacing: normal;
    font-stretch: normal;
    font-style: normal;
    height: 18px;
    padding-top: 7px;
    padding-bottom: 5px;
    top: inherit;
    display: block;
}
    .button-manage-groups:hover {
        background: linear-gradient(120deg, #1b56a6, #1b56a6);
    }
.icon-button {
    position: relative;
    top: 7px;
    padding: 6px;
    border-radius: 3px;
    background-color: #0082C8;
    border: 1px solid #5FA7C0;
    color: #FFFFFF !important;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
}

    .icon-button:hover {
        background: linear-gradient(120deg, #1b56a6, #1b56a6);
    }
.icon-button-tabela{
    text-decoration:none;
    margin-left: 20px;
}
.icon-button-tabela svg{
    width:17px;
    height:17px;
}
.icon-social-fill, .icon-eye-fill{
    cursor:pointer;
}
.icon-button:hover {
    background-color: #0082C8;
}
.icon-button:before {
    vertical-align: middle;
}
.icon-button.icon-blue {
    top: 0;
}
.icon-button.icon-blue:hover {
    background-color: #198ECE;
}
.icon-button.icon-green {
    background-color: #97cd51;
    border: 1px solid #68b32c;
    top: 0;
}
.icon-button.icon-green:hover {
    background-color: #B6DC85;
}
.icon-button.icon-red {
    background-color: #B80000;
    border: 1px solid #6E0000;
    top: 0;
}
.icon-button.icon-red:hover {
    background-color: #E62E2E;
}
.icon-button.icon-gray {
    background-color: #CCCCCC;
    border: 1px solid #E0E0E0;
    top: 0;
    cursor:default;
}

.icon-button.icon-dialog-green {
    background-color: #97cd51;
    border: 1px solid #97cd51;
    top: 0;
    padding: 4px 7px 6px 7px;
}
.icon-button.icon-dialog-green:hover {
    background-color: #B6DC85;
}
.icon-button.icon-dialog-gray {
    background-color: #A9A9A9;
    border: 1px solid #A9A9A9;
    top: 0;
    padding: 4px 7px 6px 7px;
}
.icon-button.icon-dialog-gray:hover {
    background-color: #BABABA;
}
.icon-button.icon-white {
    color: #fff;
    top: 0;
    border: none;
}
.icon-button.icon-white:hover {
    color: #000 !important;
    background: #fff;
}
.text-box {
    font-family: WorkSans-Regular;
    color: black;
    width: 250px;
    height: 28px;
    border: 1px solid #adafb3;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #ffffff;
    outline: none;
}
.text-box-error{
    border: 1px solid #e98c8c!important;
}
.text-box-short {
    width: 103px;
    height: 30px;
    border-radius: 10px;
    border: solid 1px #adafb3;
    background-color: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 10px;
    outline: none;
}
.div-celula-tabela{
    display:flex;
}
.text-box-celula {
    width: 100px;
    height: 30px;
    border-radius: 10px;
    border: solid 1px #adafb3;
    background-color: #ffffff;
    margin-left: 2px;
    margin-right: 2px;
    padding-left: 10px;
    outline: none;
    font-size: 13px;
}
.tabela-2-filtros {
    background-color: #f4f7fc;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    display: grid;
    overflow-y: auto;
    height: 330px;
    grid-auto-rows: min-content;
}
.tabela-2-filtros-linha-cabecalhos {
    display: flex;
    margin-bottom: 5px;
    position: sticky;
    top: -20px;
    background-color: #f3f6fb;
    z-index: 2;
}
.tabela-2-filtros-linha-rodape {
    display: flex;
    align-items: center;
}
.tabela-2-filtros .linha{
    display:flex;
    text-align:center;
}
.celula {
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    margin: 5px;
    /*width: 115px;*/
}
.celula.label {
    width: 35%;
}
.celula.value {
    width: 25%;
}
.celula-header {
    margin: 5px;
    width: 115px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
}
.celula-header-nome-filtro {
    margin: 5px;
    width: 350px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
}
.header-tabela {
    text-align: end;
    margin: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 350px;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    padding-right: 10px;
    cursor: default;
}
.nome-filtro-linha {
    font-size: 13px;
    height: 45px;
    width: 350px;
    margin-right: 5px;
    line-height: 45px;
    cursor: default;
    text-align:center;
}
.div-nome-filtro-coluna {
    width: 101px;
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 12px;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    margin: 5px;
    width: 107px;
    height: 45px;
    line-height: 45px;
    padding-left: 8px;
}
.div-nome-filtro-linha {
    flex-flow: column;
    justify-content: center;
    text-align: end;
    margin: 5px;
    width: 350px;
    margin-bottom: 5px;
    border: 1px solid #f4f7fc;
    z-index: 1;
    background-color: #f4f7fc;
    padding-right: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.cabecalho-total-das-colunas {
    display: flex;
    flex-flow: column;
    /*justify-content: center;*/
    text-align: end;
    margin: 5px;
    width: 350px;
    margin-bottom: 5px;
    border: 1px solid #f4f7fc;
    z-index: 1;
    background-color: #f4f7fc;
    padding-right: 10px;
}
.nome-filtro-coluna {
    font-size: 13px;
    height: 45px;
    line-height:45px;
    width: 101px;
    align-items: center;
}
.tabela-filtros-medida-standard:first-of-type:first-of-type {
    position: sticky;
    left: -20px;
}
.linha .tabela-filtros-medida-standard:first-of-type {
    position: sticky;
    left: -20px;
}
.div-total-colunas {
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    margin: 5px;
    width: 115px;
}
.label-total-coluna {
    font-size: 13px;
    height: 45px;
    width: 101px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.label-total-linha {
    font-size: 13px;
    height: 35px;
    display: flex;
    width: 350px;
    margin-right: 5px;
    justify-content: center;
    align-items:center;

}
.textbox-total-coluna {
    margin-right: 5px;
}
.text-box.datepicker,
.text-box.date-picker {
    width: 160px;
    border-radius: 10px;
    background: url("../Image/Icons/calendar.svg");
    background-position: right;
    background-repeat: no-repeat;
    background-size: 13px;
    background-color: white;
    -webkit-appearance: none;
    outline: none;
    background-origin: content-box;
    font-size: 12px;
}
/*Retira o ícone do calendário original*/
.ui-datepicker-trigger{
    display:none;
}
.hasDatepicker:focus{
    border-color: #198ECE;
}
/*Estilo para as drops do mês e ano*/
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    font-family: WorkSans-Regular;
    color: #4c4c4c;
    border-radius: 10px;
    padding: 5px 10px;
    width: 45%;
    background: url(../Image/Icons/drop-arrow.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 10px;
    background-color: white;
    -webkit-appearance: none;
    outline: none;
    background-origin: content-box;
    height: 27px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 14px;
}
.ui-widget-header .ui-icon {
    background: url("../Image/Icons/drop-arrow.svg");
    background-size: 15px;
    background-repeat: no-repeat;
}
/*Serve para alinhar as setas dos cantos*/
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 4px;
    width: 1.8em;
    height: 1.8em;
}
.ui-datepicker-prev span{
    transform:rotate(90deg);
}
.ui-datepicker-next span{
    transform:rotate(-90deg);
}
.ui-state-default, .ui-widget-content .ui-state-default{
     border: none;
     background: #ffffff;
     font-weight: normal;
     color: #4d4d4d;
}
.ui-widget-content .ui-state-default:hover {
    color:#198ECE;
}
.ui-datepicker-calendar thead span {
    font-family: WorkSans-Regular;
}
.new-start-date-error-label, .new-end-date-error-label {
    display: none;
}

.ui-datepicker-today {
    background: #757575 !important;
    border-radius: 11px;
}

.ui-datepicker-current-day .ui-state-default.ui-state-active {
    color: #1B56A6 !important;
    font-weight: 600;
}

.ui-state-default, .ui-widget-content .ui-state-default {
    border: none;
    background: #ffffff;
    font-weight: normal;
    color: #4d4d4d;
    border-radius: 10px;
}
.textarea {
    width: 70%;
    height: 130px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding-left: 10px;
    padding-right: 10px;
}
.field-wrapper {
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    -ms-flex-flow: column;
    -webkit-flex-flow: column;
    flex-flow: column;
}
.field-wrapper-horizontal {
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    -ms-flex-flow: row;
    -webkit-flex-flow: row;
    flex-flow: row;
}
.descritores {
    font-family: WorkSans-Bold;
    margin-bottom: 15px;
    color: #4d4d4d;
    font-size: 14px;
    /*font-weight:bold;*/
}
.searchFieldButton {
    position: relative;
    width: 15px;
    cursor: pointer;
    border-radius: 10px;
    background-image: linear-gradient(120deg, #1b56a6, #0093e9);
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-left: 15px;
}
    .searchFieldButton:hover {
        background: linear-gradient(120deg, #1b56a6, #1b56a6);
    }
.GridFilter {
    background-image: url(../Image/Icons/drop-arrow.svg);
    background-repeat: no-repeat;
    background-position: right center;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #adafb3;
    width: 350px;
    height: 34px;
    background-size: 15px;
    -moz-background-origin: content-box;
    -webkit-background-origin: content-box;
    background-origin: content-box;
    height: 32px;
    width: 250px;
    border-radius: 10px;
    padding: 5px 10px;
    outline: none;
    margin-right: 5px;
}
.bold {
    font-weight: bold;
}
.nobold {
    font-weight: normal !important;
}
.DIV-statistics-table{
    padding: 30px;
    border-radius: 10px;
}
.statistics-table {
    padding: 30px;
    border-collapse: collapse;
    width: 100%;
   /* page-break-inside: auto;*/
}
.statistics-table-matriz{
    width: 100%;
    border-radius: 10px;
    display: table;
    border-collapse: collapse;
    background-color: #f4f7fc;
}
    .statistics-table-matriz .td-nome-matriz {
        border-radius: 10px;
        padding-left: 20px;
        padding-top: 20px;
        font-weight: bold;
        color: #666d80;
        font-size:15px;
    }
.statistics-table .questions-header {
    padding-bottom: 20px !important;
    padding-top: 30px !important;
    padding-left: 0px !important;
    padding-right: 20px !important;
    text-align: left !important;
    font-family: WorkSans-Regular;
}
.statistics-row {
    border-radius: 10px;
    background-color: #f4f7fc;
 
}
.statistics-table .statistics-td-answers{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 37%;
    max-width: 50%;
    padding-left: 30px;
}
.statistics-table .statistics-td-charts{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.statistics-table .charts-div {
    display: flex;
    padding: 20px 0;
}

.statistics-table-matriz .tr-dados-matriz {
    border-bottom: 1px solid #d3dbe8;
}
.charts-div #pieChart_td, #barChart_td{
    width:50%;
}

#pieChart_td{
    text-align:center;
}
.statistics-answer-circle{
    font-size: 11px;
    margin-right: 10px;
}
.table-data-labels {
    font-family: WorkSans-Regular;
    font-size: 14px;
    font-style: normal;
    letter-spacing: normal;
    color: #4d4d4d;
}
.table_content {
    width: 100%;
    border-collapse: collapse;
}
.table_content > tbody > tr > td {
    padding: 20px 20px;
}
.table_content tr:last-child td {
    border-bottom: 0;
}
.table_content .table_data .ui-datepicker-trigger {
    position: relative;
    left: -25px;
    top: 4px;
}
.div_form {
    background: #ffffff;
    padding: 10px;
    border: 1px solid #CED5DE;
    margin-bottom: 10px;
}
.left {
    float: left;
}
.width-20 {
    width: 20% !important;
}
.width-25 {
    width: 25% !important;
}
.width-33 {
    width: 33% !important;
}
.width-34 {
    width: 34% !important;
}
.width-40 {
    width: 40% !important;
}
.width-50 {
    width: 50% !important;
}
.width-80 {
    width: 80% !important;
}
.width-100 {
    width: 100% !important;
}
.width-550p {
    width: 550px !important;
}
.width-510p {
    width: 510px !important;
}
.width-717p {
    width: 717px !important;
}
.width-667p {
    width: 677px !important;
}
.margin-auto {
    margin: auto;
}
.spanCampoObrigatorio {
    color: red;
}
.top-0 {
    top: 0 !important;
}
.margin-top-0 {
    margin-top: 0 !important;
}
.ShowErrorsLine {
    border: 0 !important;
    padding: 0 !important;
}
.div_details_tab_repeater_level1 {
    background: #05a9c2;
    color: #fff;
    cursor: default;
    margin: 0 0 1px;
    padding: 15px 20px;
}
.div_details_tab_repeater_level2 {
    background: #50C3D4;
    color: #fff;
    cursor: default;
    margin: 0 0 1px;
    padding: 10px 40px;
}

.filtros-list{
    list-style-type: none;
}
.filtros-header  {
    background: #05a9c2;
    color: #fff;
    cursor: default;
    margin: 0 0 1px;
    padding: 15px 20px;
}
.filtros-header .input-filter-removebutton{
    float:right;
}
.filtros-body {
    background: #50C3D4;
    color: #fff;
    cursor: default;
    margin: 0 0 1px;
    padding: 10px 40px;
}
.filtros-body ul{
    list-style-type: none;
}
.filtros-body .options-header{
    margin: 0 0 1px;
    padding: 5px 0;
}
.filePreviewtable {
    width: 100%;
    border-spacing: 10px;
    border: 0px none transparent;
    border-collapse: collapse;
}
.filePreviewtable_header {
    text-align: left;
    font-weight: bold;
    width: 100%;
    vertical-align: middle;
    border-bottom: 2px #CED5DE solid !important;
}
.filePreviewtable_header_th {
    padding: 10px 0;
}
.filePreviewtable_data {
    font-weight: normal;
    text-align: left;
    text-align: left !important;
    vertical-align: middle;
    border-bottom: 1px #CED5DE solid !important;
    border: 0pc none transparent;
}
.filePreviewtable_data:hover {
    background-color: #eef2f5;
}
.filePreviewtable_data_row {
    padding: 20px 0;
}
.valoresEscala,
.valoresEscala > li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.valoresEscala {
    border: 2px solid #CED5DE;
    border-width: 2px 2px 1px 2px;
    background: #f9f9f9;
    width: 520px;
}
.valoresEscala > li {
    border: 1px #CED5DE solid;
    border-width: 1px 0;
    padding: 1em 1em;
    margin-top: -1px;
    background: #fff;
}
.valoresEscala > li.ui-sortable-helper {
    box-shadow: #ccc 0 1px 3px;
    border: 1px #CED5DE solid;
}
.valoresEscala > li .input-range-title {
    margin-right: 2em;
}
.imgBtAdd {
    cursor: pointer;
    margin-top: .5em;
}
.new-survey-button-wrapper{
    position: relative;
    float: right;
    text-align: center;
    width: 70px;
    margin-top:20px;
}
.new-medida-button-wrapper{
    display: grid;
    text-align: center;
    width: 70px;
    margin-right: 30px;
}
.new-group-button-wrapper {
    display: grid;
    text-align: center;
    width: 70px;
    margin-right: 30px;
}
.new-indicator-button-wrapper{
    display: flex;
    text-align: center;
    width: 70px;

    align-items: flex-end;
}
.new-publicacao-button-wrapper{
    float:right;
    margin-right: 30px;
}
.new-survey-button{
    top: inherit;
    display: block;
}
.new-indicator-button{
    top: inherit;
    display: block;
}
.new-survey-options-list{
    position: absolute;
    right: 0;
    margin: .3em 0 0 0;
    padding: 0;
    list-style: none;
    min-width:200px;
    text-align: center;
    background-color: #FFFFFF;
    border: 1px solid #bbb;
    border-radius: 3px;
    box-shadow: #ccc 0 1px 5px;
    display: none;
}

.new-survey-options-list.active{
    display: inherit;
}
.new-survey-option-item{
    border-bottom: 1px solid #CED5DE;
}
.new-survey-option-item:last-child{
    border-bottom: 0;
}
.new-survey-option-item:hover{
    background-color: #eef2f5;
}
.new-survey-option-button{
    text-decoration: none;
    color: #333333;
    display: block;
    padding: .5em 1em;
}
.accordeon .div_details_tab_repeater_level1{
    cursor: pointer;
}
.filtro_data {
    height: 40px;
}
/*#region INÍCIO*/
.welcome_text{
    padding: 20px;
    margin-top:20px;
    margin-left: 30px;
    margin-right:30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.07);
}
/*#endregion INÍCIO*/
/*#region INDICADORES*/

.label-total-1filtro {
    font-size: 13px;
    /*height: 35px;
    display: flex;
    align-items: center;*/
    width: 125px;
    justify-content: flex-end;
    margin-right: 5px;
}
.textbox-total-1filtro {
    width: 85px;
    height: 30px;
    border-radius: 10px;
    border: solid 1px #adafb3;
    background-color: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 10px;
    outline: none;
}

.tabela-filtros .text-box {
    font-family: WorkSans-SemiBold !important;
    margin-bottom: 10px;
    color: #4c4c4c;
    border: 0px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #ffffff;
    outline: none;
    width:85%;
}
.tabela-filtros .name-GrupoFiltro {
    resize: none;
    height: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .tabela-filtros .text-box.name-filtro {
        border-radius: 10px;
        background-color: #f3f6fb;
        color: #666d80 !important;
        width: 100%;
        text-align: center;
    }
.tabela-filtros .icon-button {
    position: relative;
    top: 7px;
    padding: 0px;
    border-radius: 3px;
    background-color: white;
    border: 0px;
    color: #FFFFFF !important;
    cursor: default;
    text-decoration: none;
    font-size: 18px;
}

    .tabela-filtros .icon-button:hover {
        background-color: white;
    }
.dropdown-pesquisa {
    font-family: WorkSans-Regular;
    color: #4c4c4c;
    border-radius: 10px;
    padding: 5px 10px;
    width: 170px;
    margin-left: 20px;
    background: url(../Image/Icons/drop-arrow.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 10px;
    background-color: white;
    -webkit-appearance: none;
    outline: none;
    background-origin: content-box;
    height: 34px;
    border: 1px solid #adafb3;
}
.dropdown-schedule-provision {
    font-family: WorkSans-Regular;
    color: #4c4c4c;
    border-radius: 10px;
    padding: 5px 10px;
    width: 100%;
    background: url(../Image/Icons/drop-arrow.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 10px;
    background-color: white;
    -webkit-appearance: none;
    outline: none;
    background-origin: content-box;
    height: 32px;
    border: 1px solid #adafb3;
}
/*#endregion INÍCIO*/
/*#region DADOS PESSOAIS*/
.formfield{
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 20px;
}
.pref-buttons-div{
    margin-left: 30px;
    margin-top: 20px;
}
.lbl-field-error {
    color: #ea5959;
    font-size: 13px;
    margin-top: 5px;
    font-family: WorkSans-Regular!important;
}
.lbl-passwords-diferentes{
    display:none;
}
/*#endregion DADOS PESSOAIS*/
.summary-error{
    margin-top: 20px;
    margin-left: 10px;
}
.div-summary-error-indicadores, .div-summary-error-medidas{
    margin-bottom: 20px;
    border-radius: 10px;
    margin-left: 30px;
    margin-right: 23px;
    background-color: #ffd5d5;
    /*padding: 20px;*/
}

.summary-error-aprovisionamento {
    display:none;
    color: #ea5959;
    font-size: 13px;
    margin-top: 5px;
    font-family: WorkSans-Regular !important;
}
.summary-error-alteracao-datas {
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #ffd5d5;
    margin-top: 15px;
    padding: 10px;
    display: none;
    font-size: 13px;
}
/*#region CircleProgressBar*/
.round {
    position: absolute;
    right: 0;
    display: flex;
    margin-right:8px;
}
section button:hover {
  background-color: #ff5c5c;
}
/*#endregion CircleProgressBar */
/*#region Medidas*/
.text-box-descricao-medidas {
    resize: none;
    width: 724px;
    height: 60px;
    padding-top:5px;
}
.descritores-aprovisionamento {
    font-family: WorkSans-Bold;
    margin-bottom: 0px;
    color: #4d4d4d;
    font-size: 14px;
    margin-right: 5px;
    /*font-weight:bold;*/
}
.div-tipos-medida {
    display: flex;
    -ms-flex-flow: column;
    -webkit-flex-flow: column;
    flex-flow: column;
}
.switch {
    position: relative;
    display: inline-block;
    width: 29px;
    height: 13px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    border-radius: 50%;
    border-radius: 34px;
}
.slider-before {
    cursor: pointer;
    position: absolute;
    content: "";
    height: 9px;
    width: 9px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}
.label-medidas{
    margin-right: 10px;
    color:#666666;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    width: 70px;
}
.contentor-medidas{
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
}
.municipios_CheckboxList{
    margin-left: 100px;
    padding: 10px;
    background-color: #f4f7fc;
    border-radius: 10px;
}
/*#endregion Medidas*/
.div-valores-novo-provisionamento {
    padding-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 20px;
    color: #4c4c4c;
    font-size: 15px;
    font-family: WorkSans-Regular;
    display: flex;
    height: 65px;
    align-items: center;
}
.label-valores-filtro-novo-aprovisionamento {
    color: #4d4d4d;
    font-family: WorkSans-Regular;
    padding-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 17px;
}
.div-dominio {
    font-family: WorkSans-Bold;
    /*font-weight:bold;*/
    color: #4d4d4d;
    font-size: 14px;
    width: 60%;
    margin-bottom: 15px;
    margin-top: 15px;
    margin-left: 10px;
    margin-right: 10px;
}
.dropdown-dominio {
    background-image: url(../Image/Icons/drop-arrow.svg);
    background-repeat: no-repeat;
    background-position: right center;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #adafb3;
    width: 372px;
    background-size: 15px;
    -moz-background-origin: content-box;
    -webkit-background-origin: content-box;
    background-origin: content-box;
    height: 32px;
    border-radius: 10px;
    padding: 5px 10px;
    outline: none;
    margin-right: 5px;
}
.text-box-dominio {
    font-family: WorkSans-Regular color: #4c4c4c;
    border: 1px solid #adafb3;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #ffffff;
    outline: none;
    resize: none;
    width: 50%;
    height: 28px;
}
.text-box-indicador-grande {
    font-family: WorkSans-Regular;
    color: #4c4c4c;
    width: auto;
    border: 1px solid #adafb3;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #ffffff;
    outline: none;
    resize: none;
}
.label-tipo-indicadores{
    margin-right: 10px;
    color: #666666;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    width: 130px;
}
.wrapper-dominios {
    display: flex;
    margin-top: 15px;
    align-items: center;
    margin-bottom: 5px;
}
.blue-link-novo-dominio {
    font-family: 'Work Sans';
    min-width: 100px;
    width: max-content;
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    background-image: linear-gradient(120deg, #1b56a6, #0093e9);
    display: inline-block;
    height: 1.3em;
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 3px;
    padding-top: 5px;
    text-align: center;
}

    .blue-link-novo-dominio:hover {
        background: linear-gradient(120deg, #1b56a6, #1b56a6);
    }

.blue-link-novo-dominio.aspNetDisabled {
    font-family: WorkSans-Regular;
    min-width: 45px;
    color: #737373 !important;
    text-decoration: none;
    border-radius: 10px;
    background-image: linear-gradient(120deg, #ffffff, #ffffff);
    display: inline-block;
    height: 1.3em;
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 3px;
    padding-top: 5px;
    border: 1px solid #737373;
    cursor: default;
}

.text-box.aspNetDisabled {
    background-color: #e9edf5;
    color: gray;
}
.input-textbox-password-nova2 {
    font-size: 25px;
    color: #4c4c4c;
}
.text-box-password {
    font-family: WorkSans-Regular;
    color: #4c4c4c;
    width: 170px;
    height: 30px;
    border: 1px solid #adafb3;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #ffffff;
    outline: none;
    padding-right: 40px;
    font-size: 25px;
}
.textbox-total-linha, .textbox-total-coluna, .textbox-total-absoluto {
    width: 102px;
    background-color: #e9edf5;
    border-color: #e9edf5;
    color: gray;
}

.width100Important{
    width: 100% !important;
}