/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--primary);
  font-family: var(--font-family);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.multiple {
  display: flex;
  justify-content: space-evenly;
}
.multiple.multi_2 .inner {
  flex-basis: 50%;
}
.multiple.multi_3 .inner {
  flex-basis: 33%;
}
.multiple.multi_4 .inner {
  flex-basis: 25%;
}
.multiple.multi_5 .inner {
  flex-basis: 20%;
}

.loading_cont {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #302c2c;
  opacity: 0.7;
  height: 100dvh;
  width: 100vw;
  display: none;
  align-items: center;
  justify-content: center;
}

.loading {
  width: 50px;
  height: 50px;
}
.loading::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 30%;
  animation: loaderSpin 2s linear infinite;
}
.loading::before {
  background-color: var(--color-main-1);
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swal2-popup {
  border-radius: 1rem;
}

.swal2-actions {
  width: 80%;
}
.swal2-actions button {
  background: #e12927;
  width: 100%;
  text-align: center;
}
.swal2-actions button:hover {
  background: #c11a1a;
}

.modal-terms {
  display: none;
}
.modal-terms[open] {
  background-color: var(--color-enlace);
  border: none;
  width: 100%;
  display: block;
  position: fixed;
  bottom: 0;
  z-index: 10000;
}
.modal-terms[open] .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 40px;
  padding: 20px;
  row-gap: 20px;
}
.modal-terms[open] .content .text {
  color: var(--color-main-2);
  font-size: 12px;
  max-width: 50vw;
  line-height: 18px;
  letter-spacing: -0.3px;
  min-width: 300px;
}
.modal-terms[open] .content .buttons {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.modal-terms[open] .content .buttons .accept {
  height: fit-content;
  padding: 6px 12px;
  color: var(--primary);
  background-color: var(--color-text-dark);
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}
.modal-terms[open] .content .buttons .accept:hover, .modal-terms[open] .content .buttons .accept:focus {
  opacity: 0.9;
  font-weight: 700;
}
.modal-terms[open] .content .buttons .terms {
  height: fit-content;
  width: max-content;
  padding: 6px 12px;
  background-color: var(--color-text-2);
  color: var(--primary);
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}
.modal-terms[open] .content .buttons .terms:hover, .modal-terms[open] .content .buttons .terms:focus {
  opacity: 0.9;
  font-weight: 700;
}

/*# sourceMappingURL=app.output.css.map */
