@import url("https://fonts.googleapis.com/css2?family=Kanit&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Kanit", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

#reniciar {
  display: none;
}

#reniciar,
#iniciar {
  height: 30px;
  width: 80px;
  background-color: #555;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
}
#reniciar:hover,
#iniciar:hover {
  background-color: rgb(53, 52, 52);
  cursor: pointer;
}

#toggle {
  display: none;
  float: right;
}

.button {
  display: inline-block;
  font-size: 32px;
  width: 90px;
  height: 35px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
}

.button::after {
  content: "\f185";
  font-family: "FontAwesome";
  width: 40px;
  height: 40px;
  background-color: #e03c3c;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: -3px;
  left: -1px;
  display: grid;
  place-content: center;
  line-height: 0;
  transition: background-color 1s, transform 1s ease-in;
}

#toggle:checked + .button::after {
  content: "\f186";
  font-family: "FontAwesome";
  width: 40px;
  height: 40px;
  background-color: #1f257f;
  transform: translateX(50px) rotate(360deg);
}

.theme-light .button {
  background-color: #151419;
}

.theme-light .button::after {
  border-color: yellow;
  color: yellow;
}

#icon_verificar {
  font-size: 32px;
}

.fa-check {
  color: green;
}

.fa-close {
  color: red;
}

.modal {
  font-family: "Press Start 2P", cursive;
}

.theme-light {
  background-image: linear-gradient(to top left, #80ffdb, #5390d9);
  background-attachment: fixed;
  color: rgb(32, 33, 36);
}

.theme-dark {
  background-color: #151419;
  color: #fff;
}
.theme-dark .modal .modal-content {
  background-color: #151414;
  color: #fff;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
}
.theme-dark .modal .btn-close {
  background-color: #aaaaaa;
}

.contenedor {
  width: 100%;
  margin: 19px;
}
.contenedor .header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 5px;
}
.contenedor .header .tiempo {
  display: none;
  width: 50px;
  color: #0d1420;
  font-size: 20px;
  font-family: Arial;
  letter-spacing: 2px;
  text-align: center;
  background-color: #f7d06a;
  border: 3px solid #555;
  border-radius: 8px;
}
.contenedor .titulo {
  display: flex;
  align-items: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 25%;
  height: 100px;
  background-color: rgba(23, 118, 166, 0.7568627451);
  color: #fff;
  padding: 5px;
  border-radius: 19px;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}
.contenedor .contenedor-lista-general {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  border-radius: 10px;
}
.contenedor .contenedor-lista-general .contenedor-lista-caracteristica {
  background-color: transparent;
  border: 4px solid #1776a6;
  border-radius: 8px;
}
.contenedor .contenedor-lista-general .contenedor-lista-caracteristica h5 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  padding: 10px;
  background-color: #1776a6;
  color: #fff;
  text-align: center;
}
.contenedor .contenedor-lista-general .contenedor-lista-caracteristica .lista-caracteristica {
  padding: 5px;
}
.contenedor .contenedor-lista-general .contenedor-lista-caracteristica .lista-caracteristica .sub-caracteristica {
  background-color: #cdd8dd;
  color: #535353;
  font-size: 16px;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  align-items: center;
  padding: 6px;
  border-radius: 8px;
  margin-bottom: 20px;
  cursor: move;
}
.contenedor .contenedor-lista-general .contenedor-lista-caracteristica .lista-caracteristica .sub-caracteristica.seleccionado {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0px 0px 20px rgba(149, 153, 159, 0.16);
}
.contenedor .contenedor-lista-general .contenedor-lista-caracteristica .lista-caracteristica .lista-caracteristica .sub-caracteristica.drag {
  opacity: 0;
}
.contenedor .contenedor-lista-general .contenedor-lista-caracteristica .lista-caracteristica .label {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
  color: #5173cf;
}
.contenedor .contenedor-lista-general .contenedor-lista-caracteristica .lista-caracteristica .dato {
  font-weight: bold;
  font-size: 20px;
}

.theme-dark .contenedor .titulo {
  background-color: #313553;
}
.theme-dark .contenedor .contenedor-lista-general .contenedor-lista-caracteristica {
  background-color: #302e3a;
  border-color: #1f1e25;
  color: #fff;
}
.theme-dark .contenedor .contenedor-lista-general .contenedor-lista-caracteristica h5 {
  background-color: #1f1e25;
}
.theme-dark .contenedor .contenedor-lista-general .contenedor-lista-caracteristica .sub-caracteristica {
  background-color: #1f1e25;
  color: #fff;
}

.modal-caracteristica {
  font-family: Arial, Helvetica, sans-serif;
}
.modal-caracteristica .modal-body {
  display: flex;
  flex-direction: column;
}
.modal-caracteristica .modal-body a {
  text-decoration: none;
  font-size: 16px;
  color: inherit;
  padding: 5px;
}
.modal-caracteristica .modal-body a:hover {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .contenedor {
    margin: 0;
  }
  .contenedor .header {
    justify-content: center;
    margin: 10px 5px;
  }
  .contenedor .titulo {
    width: 100%;
    border-radius: 0;
    padding: 0;
    margin: 0;
  }
  .contenedor .contenedor-lista-general {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 0;
  }
  .contenedor .contenedor-lista-general .contenedor-lista-caracteristica {
    border: none;
    border-radius: 0;
  }
  .contenedor .contenedor-lista-general .contenedor-lista-caracteristica h5 {
    border-radius: 0;
  }
}

/*# sourceMappingURL=styles.css.map */
