/* CSS  DE PROGRESSÃO DE BARRA QUE CORRE DENTRO DA MENSAGEM E VAI DE 0 A 100% */
/* #myProgress {
    width: 100%;
    background-color: #ddd;
  } */

.myBar {
    width: 0%;
    height: 30px;
    background-color: #0c8156;
    text-align: center;
    line-height: 30px;
    color: white;
}
  
#myBarSuccess {background-color: #0c8156;}
#myBarDanger {background-color: #c42d3c;}


/* #########################################################*/
/*														 	*/
/*					        CADASTRO				        */
/*														    */
/* #########################################################*/
/* .item-cadaatro {height: 100vh;} */

/* #########################################################*/
/*														 	*/
/*					        CALENDÁRIO				        */
/*														    */
/* #########################################################*/
.calendar, .calendar_weekdays, .calendar_content {width: 100%; }
  
.calendar {
    margin: auto;
    font-weight: 400;
}
  
.calendar_content {background: #fff;}
.calendar_weekdays {background: #1089ff;}
.calendar_header {padding: 10px 0;}
  
.calendar_content, .calendar_weekdays, .calendar_header {
    position: relative;
    overflow: hidden; 
}
  
.calendar_weekdays div {
    display: inline-block;
    vertical-align: top;
    color: #fff !important; 
}
  
.calendar_weekdays div, .calendar_content div {
    width: 14.28571%;
    overflow: hidden;
    text-align: center;
    background-color: transparent;
    color: #000;
    font-size: 16px;
    padding: 15px 0; 
}
  
.calendar_content div {
    border: 1px solid transparent;
    float: left;
    position: relative;
    z-index: 0; 
}

  .calendar_content div:hover {
    border: 1px solid #dcdcdc;
    cursor: default; }
  
.calendar_content div.blank:hover {
    cursor: default;
    border: 1px solid transparent; 
}
  
.calendar_content div.past-date {color: #d5d5d5;}
  
.calendar_content div.today {
    font-weight: bold;
    font-size: 16px;
    color: #fff !important; }
    .calendar_content div.today:after {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      bottom: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      content: '';
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin: 0 auto;
      background: #1089ff;
      z-index: -1;
      -webkit-box-shadow: 0px 5px 11px -9px rgba(0, 0, 0, 0.48);
      -moz-box-shadow: 0px 5px 11px -9px rgba(0, 0, 0, 0.48);
      box-shadow: 0px 5px 11px -9px rgba(0, 0, 0, 0.48); 
}
  
.calendar_content div.selected {background-color: #f0f0f0;}
  
.calendar_header {
    width: 100%;
    text-align: center; 
}
  
.calendar_header h2 {
    padding: 0 10px;
    font-weight: 500;
    font-size: 20px;
    color: #1089ff;
    float: left;
    width: 70%;
    margin: 0 0 10px; 
}
  
button.switch-month {
    background-color: transparent;
    padding: 0;
    outline: none;
    border: none;
    color: #dcdcdc;
    float: left;
    width: 15%;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s; 
}
  
button.switch-month:hover {
    color: #1089ff; 
}


/* #########################################################*/
/*														 	*/
/*					   TABELA USUARIOS				        */
/*														    */
/* #########################################################*/

#result_user .td-edit span,
#result_user .td-delete span {
    cursor: pointer;
}

.btn-ativo {
    padding: 3px 5px;
    border-radius: 5px;
}

.btn-inativo {
    padding: 3px 5px;
    border-radius: 5px;
}

.tbo {display: none;}

/* #########################################################*/
/*														 	*/
/*					   TABELA PAGAMENTOS				    */
/*														    */
/* #########################################################*/
#result_payment .td-edit span,
#result_payment .td-delete span {
    cursor: pointer;
}


/* #########################################################*/
/*														 	*/
/*					        GRÁFICOS				        */
/*														    */
/* #########################################################*/
#chart-mensal {
    width: 100%;
    height: 100vh;
}

.grafic h2 {
    font-weight: 500;
    font-size: 20px;
    color: var(--grafic-text);
	line-height: 1.2;
	font-family: inherit;
    position: relative;
    top: 9px;
}

.grafic #resultU,
.grafic #resultO,
.grafic #resultH,
.grafic #resultI,
.grafic #resultS,
.grafic #resultM,
.grafic #resultA {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--result-background);
    color: var(--result-text);
    text-transform: uppercase;
}

