@charset "UTF-8";
.counter-fox {
  margin-bottom: 24px;
}
.counter-fox span {
  font-size: 1.5rem !important;
}
.counter-fox p {
  font-size: 4rem !important;
  padding: 0;
  margin: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 18px;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

/**
CHECKMARK
*/
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: green;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: green;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #fff;
  }
}
/* Añade estos estilos específicos para el login si no los tienes ya */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.input-container {
  margin-bottom: 1rem;
}

.input-container label {
  text-align: left !important;
  display: block;
  margin-bottom: 0.5rem;
}

.input-container input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.w-100 {
  width: 100%;
}

/* Estilo para el botón de mostrar login */
.show-login-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.show-login-btn:hover {
  background-color: #0056b3;
}

.marquee {
  position: fixed;
  bottom: 0;
  background: #773113 !important;
  color: #FFF;
  left: 0;
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
  height: 2.5rem;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
  display: flex;
  height: inherit;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
.track .content {
  position: relative;
  display: flex;
  align-items: center;
}
.track .content::before {
  content: " ";
  display: inline-block;
  width: 5px;
  position: absolute;
  height: 5px;
  background: #FFF;
  left: -12px;
  border-radius: 50%;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.outlined {
  border: 1px solid #333 !important;
}

.transparent {
  background: transparent !important;
  color: #333 !important;
}/*# sourceMappingURL=landing.css.map */