
.content_tabs {
    width: 100%;
    overflow: scroll;
    height: 100%;
    max-height: 80vh;
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    align-items: start;
  }
  
  .content_tabs .tab {
    width: 270px;
    min-width: 270px;
    height: auto;
    background-color: #F0F0F0;
    border-radius: 5px;
    margin-right: 10px;
  }
  
  .content_tabs .tab .head {
    width: 100%;
    box-sizing: border-box;
    padding: .5rem;
  }
  
  .content_tabs .tab .head p {
    font-size: .85rem;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    color: #4C4C4C;
    text-align: center;
  }
  
  .content_tabs .tab .body {
    width: 100%;
    padding: 5px;
  }
  
  .content_tabs .tab .body .tarea {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: var(--ds-shadow-raised, 0 1px 1px rgba(23, 43, 77, 0.2), 0 0 1px rgba(23, 43, 77, 0.2));
    box-sizing: border-box;
    padding: 3px 7px;
    cursor: pointer;
    margin-bottom: .5rem;
    padding-bottom: 10px;
  }
  .content_tabs .tab .body
  .tarea_terminada{
    background-color: #E9EBF7;
  }
  
  .content_tabs .tab .body
  .tarea-incumplida {
    background-color: #F7E9E9;
  }
  
  .content_tabs .tab .body .tarea:hover {
    transition: all .5;
    background-color: #F5F5F5;
  }
  
  .content_tabs .tab .body .tarea .prioridad {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: blue;
    margin: 0;
  }
  
  .content_tabs .tab .body .tarea .prioridad_baja {
    background-color: #DFE21C;
  }
  
  .content_tabs .tab .body .tarea .prioridad_media {
    background-color: #E2911C;
  }
  
  .content_tabs .tab .body .tarea .prioridad_alta {
    background-color: #E2311C;
  }
  
  .content_tabs .tab .body .tarea .asignado {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #5C5C5C;
    font-weight: normal;
    font-size: 13px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    margin: 0;
    margin-left: 10px;
  }
  
  .content_tabs .tab .body .no_tareas {
    font-size: 1rem;
    padding: 0 1rem;
    margin: 0;
    text-align: center;
  }
  
  .content_tabs .tab .footer {
    padding: 1rem 0;
  }
  
  .content_tabs .tab .footer button {
    border: 0;
    background-color: transparent;
    cursor: pointer;
  }
  
  #btn-transp {
    background-color: transparent !important;
    background: transparent !important;
    border: 0;
    padding: 0 !important;
    color: #858484 !important;
  }
  
  #btn-transp::after {
    content: none !important;
    display: none;
  }
  
  .estado_tarea {
    margin: 0;
    font-size: .85rem;
    margin-left: 5px;
    text-transform: uppercase;
    color: #1d4999;
  }
  
  .estado_tarea_i {
    color: #1d4999;
  }
  
  .text_prioridad_baja {
    color: #000;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #DFE21C;
  }
  
  .text_prioridad_media {
    color: #fff;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 10px;
    background-color: #E2911C;
  }
  
  .text_prioridad_alta {
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #E2311C;
  }
  
  .estado_tarea_select{
    height: auto;
    padding: .25rem .5rem;
  }
  
  .imgs_modal_tarea{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .imgs_modal_tarea img{
    width: 45%;
    border: 2px solid #fff;
    height: auto;
    margin-right: 10px;
    object-fit: cover;
    cursor: pointer;
  }
  
  .modal_content_img_tarea{
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 999999999;
  }
  
  .modal_content_img_tarea button{
    margin-bottom: .5rem;
    color: #fff;
    border: 0;
    background-color: transparent;
    padding: .5rem;
    font-size: 2rem;
  }
  
  .modal_content_img_tarea img{
    width: 100%;
    height: auto;
    max-width: 650px;
  }
  
  .body_terminadas{
    border-top: 2px solid #CECECE;
  }
  
  .body_terminadas .title{
    padding-top: 6px;
    font-size: .85rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
  }
  
  .content_charts_tareas{
    width: 100%;
    display: flex;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-bottom: 4rem;
  }
  
  .content_charts_tareas .chart{
    width: 47%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    padding: .5rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
  }
  
  
  .content_charts_tareas .chart canvas{
    width: 100%;
    height: auto;
  }
  
  
  .content_charts_tareas .chart .titulo{
    font-size: 1rem;
    color: #000;
    margin-left: 1rem;
    margin-top: .5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
  
  }
  
  .pointer{
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }

  
.qr_ {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

#qr_img,
#qr_text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

#qr_text p {
  font-size: 16px;
  text-align: center;
  color: #000;
}

#logoImpr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

#logoImpr img {
  width: 200px;
  object-fit: cover;
  height: auto;
}

.header-green {
  background-color: #d9e8ff;
  color: #000;
  font-weight: bold;
}

.section-title {
  background-color: #005db0;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
}

.table td,
.table th {
  vertical-align: middle;
  border: 1px solid #c6c6c6;
}

.input-field {
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 30px;
}
.logoQR{
  width: 100%;
  max-width: 120px;
  margin: .1rem auto;
}
.imprimirQR{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}