/* apply a natural box layout model to all elements, but allowing components to change */
@font-face {
  font-family: "AvenirLTStd-Black";
  src: url("AvenirLTStd-Black.woff2") format("woff2"),
    /* Para navegadores modernos */ url("AvenirLTStd-Black.woff") format("woff"); /* Respaldo para navegadores más antiguos */
  font-weight: normal;
  font-style: normal;
}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-size: 62.5%;
  font-family: "AvenirLTStd-Black", sans-serif;
}
h1 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.8rem;
}
h1,
h2,
h3 {
  color: #fff;
  text-align: center;
}
li {
  color: #f17222;
  font-size: 1.5rem;
}
li > span {
  color: #5e1eff;
}
p {
  color: #fff;
  font-size: 1.2rem;
}
.instrucciones {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 2rem;
}

/* Animación de deslizamiento */
@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.fade.show .modal-dialog {
  animation: slideDown 0.3s;
}

.modal-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
}

.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}

.hvr-bob:active,
.hvr-bob:focus,
.hvr-bob:hover {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

.modal {
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #121212;
  padding: 20px;
  border: 1px solid #121212;
  border-radius: 2rem;
}

.close-btn {
  display: block;
  margin-top: 20px;
  /* Espacio entre el contenido y el botón de cerrar */
  margin-left: auto;
  /* Centrado horizontal */
  margin-right: auto;
  /* Centrado horizontal */
  background-color: #5e1eff;
  /* Color azul */
  border: none;
  color: #fff;
  /* Texto blanco */
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s;
  font-size: 1rem;
  /* Efecto de transición */
}

.close-btn:hover {
  background-color: #f17222;
}

li {
  color: #f17222;
  font-size: 1.5rem;
}

li > span {
  color: #5e1eff;
}

p {
  color: #fff;
  font-size: 1.2rem;
}


 .btn_to_dashboard{
			color: #ffffff;
			background-color: #a12a86;
			font-size: 19px;
			border-radius: 15px;
			padding: 15px 50px;
			cursor: pointer
		}