html{
  text-size-adjust: none;
}
@font-face {
  font-family: HelveticaNeueLT;
  src: url(./HelveticaNeueLT.ttf);
}
input{
  width: 100%;
  border-radius: 8px;
  border: 1px solid black;
  box-sizing: border-box;
  padding: 8px;
  color: #36465D;
}
textarea{
  height: 100%;
  width: 100%;
  border-radius: 8px;
  border: 1px solid black;
  box-sizing: border-box;
  padding: 8px;
  color: #36465D;
  field-sizing: content;
  resize: none;
}
select,option.selected{
  width: 100%;
  border-radius: 8px;
  border: 1px solid black;
  box-sizing: border-box;
  padding: 8px;
  color: #36465D;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body, html{
  height: 100%;
  width: 100%;
  color: #36465D;
  font-family: HelveticaNeueLT, serif;
  font-size: 18px;
  background-color: white;
  overflow: hidden;
}
.menu{
  position: relative;
  top: 0;
  left: 0;
  height: 48px;
  width: 100%;
  border-bottom: 1px solid black;
}
.menu .back{
  position: absolute;
  left: 16px;
  top: 3px;
  font-size: 30px;
  z-index: 2;
}
.menu .titulo{
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 24px;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.menu .edit{
  position: absolute;
  right: 16px;
  top: 3px;
  font-size: 30px;
  z-index: 2;
}
.menu .add{
  position: absolute;
  right: 16px;
  top: 3px;
  font-size: 30px;
  z-index: 2;
}
.contenido{
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
}
.delete_zone{
  position: absolute; 
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000000ab;
  z-index: 2;
  text-align: center;
  display: none;
}
.delete_zone .fondo_delete{
  position: relative; 
  border: 0;
  border-radius: 8px;
  margin-left: 10%;
  margin-top: 36px;
  width: 80%;
  padding: 8px 0;
  background-color: #f8f8f8;
}
.delete_zone .cancel_delete{
  padding: 8px 16px;
  background-color: #ff0000;
  border-radius: 8px;
  color: white;
  border: 0px;
  cursor: pointer;
  width: 40%;
  margin-top: 8px;
  text-align: center;
}
.delete_zone .aceptar_delete{
  padding: 8px 16px;
  background-color: #3c9fd8;
  border-radius: 8px;
  color: white;
  border: 0px;
  cursor: pointer;
  width: 40%;
  margin-top: 8px;
  text-align: center;
}
/*-------------- alerta --------------*/
.alerta {
  display: none;
  position: absolute;
  z-index: 3;
  top: 150px;
  left: 10%;
  width: 80%;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 8px;
  background-color: white;
  border: 1px solid #e2e2e2;
}
.alerta .msgalert {
  text-align: center;
}
/*-------------- carga --------------*/
.screenload {
  display: none;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.863);
}
.screenload .load {
  position: relative;
  margin-top: 60px;
  margin-left: 10%;
  width: 80%;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 8px;
  background-color: white;
  border: 1px solid #e2e2e2;
}
.screenload .load .loader {
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  color :#0000;
  overflow: hidden;
  animation: l9 5s infinite cubic-bezier(0.3,1,0,1);
}
.screenload .load .loader:before {
  content:"Cargando..."
}

@keyframes l9 {
  0%  {text-shadow: 0    0 #000, 11ch 0 #8A9B0F, 22ch 0 #C02942, 33ch 0 #00A0B0,44ch 0 #000}
  25% {text-shadow:-11ch 0 #000,  0ch 0 #8A9B0F, 11ch 0 #C02942, 22ch 0 #00A0B0,33ch 0 #000}
  50% {text-shadow:-22ch 0 #000,-11ch 0 #8A9B0F,  0ch 0 #C02942, 11ch 0 #00A0B0,22ch 0 #000}
  75% {text-shadow:-33ch 0 #000,-22ch 0 #8A9B0F,-11ch 0 #C02942,  0ch 0 #00A0B0,11ch 0 #000}
  100%{text-shadow:-44ch 0 #000,-33ch 0 #8A9B0F,-22ch 0 #C02942,-11ch 0 #00A0B0, 0ch 0 #000}
}

/*switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 24px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider:before {
  -webkit-transform: translateX(36px);
  -ms-transform: translateX(36px);
  transform: translateX(36px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
/*switch*/

@media (prefers-reduced-motion: reduce) {
  body, html{
    font-size: 14px;
  }
  .menu .back{
      font-size: 24px;
  }
  .menu .titulo{
      font-size: 18px;
  }
  .menu .edit{
      font-size: 24px;
  }
  .menu .add{
      font-size: 24px;
  }
}
@media (min-resolution: 2dppx) {
  body, html{
    font-size: 14px;
  }
  .menu .back{
      font-size: 24px;
  }
  .menu .titulo{
      font-size: 18px;
  }
  .menu .edit{
      font-size: 24px;
  }
  .menu .add{
      font-size: 24px;
  }
}