.bucle_header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 24px;
}

.bucle_header h2 {
  font-size: 1.5rem;
}

.bucle_header p {
  font-size: 0.9rem;
}

.bucle_fecha {
  color: grey;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  margin-left: 3px;
}

.bucle_contenedor_dato p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Estilos barra de progreso --------------------------- */

.bucle_contenedor-barra-progreso {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;

}

.bucle_caja-info-dato-temporizador {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0px 3px 1rem 3px;
  font-size: 1rem;
  gap: 20px;
}

.bucle_caja-info-dato-temporizador-p {
  line-height: 20px;
  margin-bottom: 0px;
}

.bucle_contenedor_caja_info_dato_temporizado {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 10%;
}

#bi-crono {
  line-height: 0px;
}

#bucle_tiempo-total {
  line-height: 1;
}

.progress {
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background-color: white;
}

.progress-bar {
  height: 100%;
  border-radius: 4px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.barra_efecto {
  position: absolute;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  -webkit-animation: shine 2s infinite;
  animation: shine 2s infinite;
}

@-webkit-keyframes shine {
  0% {
    left: -20%;
  }

  100% {
    left: 95%;
  }
}

@keyframes shine {
  0% {
    left: -20%;
  }

  100% {
    left: 95%;
  }
}

.bucle_container {
  background-color: rgb(245, 245, 245);
  padding: 30px;
  border: solid green 1px;
  margin-bottom: 48px;
  border-radius: 12px;
  width: 100%;
}

.bucle_container_logros {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.contenedor_stats_bucle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bucle_contenedor_dato {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

/* Animación del svg de cargando de los datos del bucle */

#load_svg_bucle {
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


@media (min-width: 768px) and (max-width: 1024px) {

  .bucle_container p {
    margin-bottom: 0px;
  }

  .bucle_header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 10px;
  }

  .bucle_header h2 {
    margin-bottom: 0px;
  }

  .contenedor_stats_bucle {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1rem;
    justify-content: space-between;
  }

  .bucle_contenedor_dato {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .contenedor_stats_bucle h2 {
    font-size: 1.2rem;
    margin-bottom: 0px;
  }
}

@media (min-width:450px) and (max-width: 768px) {

  .bucle_container p {
    margin-bottom: 0px;
  }

  .bucle_header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 10px;
  }

  .bucle_header h2 {
    margin-bottom: 0px;
  }

  .contenedor_stats_bucle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 1rem;
    justify-content: start;
  }

  .bucle_contenedor_dato {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 10px;
  }

  .contenedor_stats_bucle h2 {
    font-size: 1rem;
  }


}

@media (max-width: 450px) {

  .bucle_container p {
    margin-bottom: 0px;
  }

  .bucle_header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 10px;
  }

  .bucle_header h2 {
    margin-bottom: 0px;
  }

  .contenedor_stats_bucle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 0.9rem;
    justify-content: start;
  }

  .bucle_contenedor_dato {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 10px;
  }

  .contenedor_stats_bucle h2 {
    font-size: 1rem;
  }

}

/* Bucle de entradas paginacion */

.bucle_entradas_pagination {
  display: flex;
  flex-direction: row;
  gap: 12px;
}/* Custom 3 columns for screens > 1600px */
@media (min-width: 1600px) {
    .col-xxl-custom-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}