/* Suporte às classes do calendário de tarefas */
.descritivo-inicio {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lista-tarefas-recurso {
  display: block;
}

.card-tarefa-recurso {
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.horario-label {
  user-select: none;
}
/* 
    Created on : 11/01/2019, 13:46:08
    Author     : roberto
*/

.btn-floating svg{
    width: 60px;
    height: 60px;
}
.largura-fixa{
    width: 200px;
}

/* Card KPI genérico compacto: mesma largura e altura (não usar Materialize .small = 300px nem .medium = 400px) */
.card-kpi {
    width: 100px;
    height: 100px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.card-kpi .card-content {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    box-sizing: border-box;
    padding: 4px 4px 2px !important;
}

.card-kpi .card-content > .card-title {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    height: 0 !important;
}

/* SVG_LITTLE = 12px no padrão; dobra para 24px nos cards KPI */
.card-kpi .card-content div.display.little svg {
    width: 24px;
    height: 24px;
}

.card-kpi .card-action {
    flex: 0 0 auto;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: none;
    overflow: hidden;
    min-height: 22px;
    /* Token Materialize .black (CSS::COLOR_BLACK) */
    background-color: #000000;
}

.card-kpi .card-action a,
.card-kpi .card-action a:not(.btn):not(.btn-large):not(.btn-floating),
.card-kpi .card-action a:not(.btn):not(.btn-large):not(.btn-floating):hover {
    display: block;
    width: 100%;
    margin: 0;
    padding: 3px 4px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    text-transform: none;
    font-weight: bold;
    font-size: 10px;
    line-height: 1.2;
    /* Token Materialize .white-text (CSS::TEXT_COLOR_WHITE); cobre o laranja do card-action */
    color: #FFFFFF;
}

.card-kpi .card-action a span {
    display: block;
    max-width: 100%;
    font-size: 10px;
    line-height: 1.2;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Text.php aplica pre-wrap inline; força uma linha no rodapé KPI */
    white-space: nowrap !important;
}

@media only screen and (max-width: 992px) {
    .largura-fixa
    {
        width: 100% !important;
        display: inline-block;
    }
}