/*----------INITIALIZE STYLES----------*/
:root {
  --primary: #818181;
  --secondary: #ff84f5;
  --tertiary: #96a7a5;
  --accent: #dd8ed3;
  --font: #191818;
  --fontBox: #aa8ea9;
  --text:#797979;
  --fontOpacity: 0.50;
  --radius: 50px;
}

/*------------------------------------*/
.bg-font {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: url("../img/font.png?upd=1");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
}

.logo {
  width: 470px;
}

.line {
  border-right: 3px solid var(--primary);
}

.letter-xl {
  letter-spacing: 0.4rem;
}

.input {
  background: white;
}
.input::-moz-placeholder {
  color: white;
}
.input::placeholder {
  color: white;
}

.button {
  background: var(--primary);
}
.button:hover {
  background: var(--tertiary);
}

.button-secondary {
  background: var(--secondary);
}
.button-secondary:hover {
  background: var(--tertiary);
}

.cursor-pointer {
  cursor: pointer;
}

.bubble-line {
  width: 100%;
  border-bottom: 5px dotted var(--accent);
}

.loader-page {
  width: 100%;
  height: 100%;
  background: var(--font);
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
}

.loader-content {
  width: 100%;
  height: 100%;
}

.loader {
  --r1: 154%;
  --r2: 68.5%;
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(var(--r1) var(--r2) at top, rgba(0, 0, 0, 0) 79.5%, white 80%), radial-gradient(var(--r1) var(--r2) at bottom, white 79.5%, rgba(0, 0, 0, 0) 80%), radial-gradient(var(--r1) var(--r2) at top, rgba(0, 0, 0, 0) 79.5%, white 80%), var(--font);
  background-size: 50.5% 220%;
  background-position: -100% 0%, 0% 0%, 100% 0%;
  animation: l9 1s infinite linear;
}
@keyframes l9 {
  33% {
    background-position: 0% 33%, 100% 33%, 200% 33%;
  }
  66% {
    background-position: -100% 66%, 0% 66%, 100% 66%;
  }
  100% {
    background-position: 0% 100%, 100% 100%, 200% 100%;
  }
}
.content-animation {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}/*# sourceMappingURL=theme.css.map */