/* DARKS */
/* GREENS */
/* pallete one */
/* pallete two */
/* gradiants */
/* screen */
/* text */
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #181818;
  color: white;
}

main {
  padding: 0 50px;
}
@media only screen and (max-width: 768px) {
  main {
    padding: 0 16px;
  }
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

li a {
  font-size: 14px;
  font-weight: 400;
}

a {
  text-decoration: none;
}
a.icon svg {
  width: 25px;
}

address {
  font-size: 14px;
}

.custom-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.custom-flex.align-items-start {
  align-items: flex-start;
}

p {
  font-size: 16px;
}

section {
  width: 100%;
}

h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 34px;
  margin-bottom: 20px;
}
h2 strong {
  font-weight: 600;
  color: #cbfc01;
  margin-bottom: 14px;
}

button {
  font-size: 14px;
  background: #cbfc01;
  border: none;
  color: #1e1e1e;
  padding: 3px 12px;
  border: solid 1px #cbfc01;
  cursor: pointer;
}

select {
  height: 29px;
  border: none;
  background: #cbfc01;
  cursor: pointer;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

[data-status=float-down] [data-float] {
  display: none;
}

body::-webkit-scrollbar,
.scroll::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-track,
.scroll::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb,
.scroll::-webkit-scrollbar-thumb {
  background-color: black;
  outline: 1px solid black;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-start {
  justify-content: flex-start;
  align-content: flex-start;
}
.flex-end {
  justify-content: flex-end;
  align-content: flex-end;
}

.wrap {
  flex-wrap: wrap;
}

.w-100 {
  width: 100%;
}
.w-50 {
  width: 50%;
}
.w-auto {
  width: auto;
}

.ql-editor {
  color: black;
}

.click {
  cursor: pointer;
}

.lava {
  background: linear-gradient(90deg, #fe6c3b 0%, rgb(255, 21, 168) 100%);
}

.hamburger {
  cursor: pointer;
}
.hamburger input {
  display: none;
}
.hamburger input:checked + svg {
  transform: rotate(-45deg);
}
.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}
.hamburger svg {
  height: 3em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger .line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger .line-top-bottom {
  stroke-dasharray: 12 63;
}

.menu {
  width: 100%;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  z-index: 998;
  position: relative;
  left: 0;
  top: 0;
}
.menu .normal {
  width: calc(100% - 130px);
}
.menu .normal ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.menu .normal a {
  margin: 0 10px;
  padding: 12px 12px;
}
.menu .login {
  width: 130px;
  margin-left: 8px;
}
.menu .login a {
  margin: 0;
  padding: 12px 12px;
}
.menu .login ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.menu .content {
  max-width: 1400px;
  padding: 0 50px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .menu .content {
    padding: 0;
  }
}
.menu .back {
  display: none;
  cursor: pointer;
}
.menu .relleno {
  display: none;
}
@media only screen and (max-width: 768px) {
  .menu .relleno {
    display: flex;
  }
}
.menu .title {
  font-size: 24px;
  font-weight: 600;
  color: white;
}
@media only screen and (max-width: 768px) {
  .menu .title {
    font-size: 16px;
  }
}
.menu .content-logo {
  width: 50%;
  display: flex;
  align-items: center;
  height: 50px;
}
.menu .content-logo .icon-menu {
  display: none;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  .menu .content-logo {
    width: 100%;
    justify-content: space-between;
  }
  .menu .content-logo .icon-menu {
    display: flex;
  }
}
.menu .content-logo a {
  display: flex;
  align-items: center;
}
.menu .content-logo a img {
  margin-left: 10px;
  width: 40px;
}
@media only screen and (max-width: 768px) {
  .menu .content-logo a img {
    width: 30px;
    height: 30px;
  }
}
.menu .content-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 50px;
  position: relative;
  transition: left 0.6s;
}
.menu .content-menu li.link {
  height: 100%;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .menu .content-menu {
    padding-top: 60px;
    position: absolute;
    width: 80%;
    left: -100vw;
    top: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    background: black;
    min-height: 100vh;
    height: auto;
    align-items: flex-start;
    align-content: flex-start;
  }
}
.menu .content-menu a {
  color: white;
}
.menu .content-menu a svg {
  width: 25px;
  height: 25px;
}
.menu > ul {
  justify-content: center;
}
.menu > ul img {
  width: 30px;
  cursor: pointer;
}

.menu-opened .content-menu {
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .menu-opened .content-menu {
    left: 0;
  }
}
.menu-opened .menu .back {
  display: none !important;
  background-color: transparent;
  cursor: pointer;
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .menu-opened .menu .back {
    display: flex !important;
  }
}
.menu-opened main {
  transition: opacity 1.6s;
}
@media only screen and (max-width: 768px) {
  .menu-opened main {
    opacity: 0.1;
  }
}

@media only screen and (max-width: 768px) {
  .menu .normal,
  .menu .login {
    width: 100%;
    margin: 0;
  }
  .menu .normal ul,
  .menu .login ul {
    justify-content: flex-start;
  }
  .menu .normal li {
    width: 100%;
  }
  .menu .login {
    position: absolute;
    bottom: 30px;
    left: 0;
  }
}
@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.form-material {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  height: 40px;
  margin-bottom: 45px;
}
.form-material label {
  width: 100%;
  font-size: 16px;
  position: absolute;
  z-index: 1;
  bottom: 0px;
  transition: bottom 0.3s, color 0.6s;
  color: #515551;
}
.form-material textarea {
  resize: none;
}
.form-material input, .form-material textarea {
  width: 100%;
  font-size: 14px;
  height: 20px;
  border: none;
  border-bottom: solid 1px #515551;
  position: absolute;
  z-index: 2;
  bottom: 0;
  cursor: pointer;
  background: transparent;
}
.form-material input[placeholder], .form-material input:focus, .form-material input.actived, .form-material textarea[placeholder], .form-material textarea:focus, .form-material textarea.actived {
  border-bottom: solid 1px black;
}
.form-material input[placeholder] + label, .form-material input:focus + label, .form-material input.actived + label, .form-material textarea[placeholder] + label, .form-material textarea:focus + label, .form-material textarea.actived + label {
  bottom: 20px;
  color: black;
}
.form-material input.error, .form-material textarea.error {
  border-bottom: solid 1px red;
  animation-name: horizontal-shaking;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}
.form-material input.error + label, .form-material textarea.error + label {
  bottom: 20px;
  color: red;
  animation-name: horizontal-shaking;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}

.content-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.message-error {
  margin-top: -26px;
  color: red;
}

.shadow-1 {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.shadow-2 {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.shadow-3 {
  box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.shadow-4 {
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}
.shadow-5 {
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
}

body {
  min-height: 100vh;
  height: 800px;
}
body main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: calc(100vh - 70px);
}

h1 {
  width: 100%;
  text-align: center;
  font-weight: bold;
  margin: 30px 0;
}
h1 strong {
  color: #cbfc01;
}

.card-login {
  position: relative;
  width: 80%;
  min-height: 400px;
  max-height: calc(100vh - 100px);
  overflow: hidden;
  max-width: 800px;
  padding: 40px 16px;
  background-color: #2b2738;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .card-login {
    max-height: calc(100vh - 200px);
  }
}
.card-login form {
  width: 50%;
  z-index: 2;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .card-login form {
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    z-index: 2;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    align-content: flex-start;
  }
}
.card-login .container-acr {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(-45deg, #00eff8, #f800b4, #ebf503, #02f6c1, #00eff8, #9400f8);
  background-size: 400% 400%;
  animation: gradient 30s ease infinite;
}
@media only screen and (max-width: 768px) {
  .card-login .container-acr {
    width: 100%;
    z-index: 1;
    width: 100%;
    height: 50%;
    z-index: 1;
    top: unset;
    bottom: 0;
  }
  .card-login .container-acr .vader {
    top: calc(100% - 120px);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  width: 100%;
}
.actions button,
.actions a {
  width: calc(100% - 16px);
  max-width: 200px;
  overflow: hidden;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  background-color: white;
}

.password {
  font-size: 16px;
  color: white;
}

.form-material label {
  color: #515551;
}
.form-material input, .form-material textarea {
  border-bottom: solid 1px #515551;
}
.form-material input[placeholder], .form-material input:focus, .form-material input.actived, .form-material textarea[placeholder], .form-material textarea:focus, .form-material textarea.actived {
  border-bottom: solid 1px white;
  color: white;
}
.form-material input[placeholder] + label, .form-material input:focus + label, .form-material input.actived + label, .form-material textarea[placeholder] + label, .form-material textarea:focus + label, .form-material textarea.actived + label {
  color: white;
}
