@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* ========== Colors ========== */
/* ========== Font & Typography ========== */
@keyframes slide-rightToLeft {
  0% {
    width: 0;
    transform: translateX(0);
  }
  100% {
    width: 8rem;
    transform: translateX(-100%);
  }
}
@keyframes slide-leftToRight {
  0% {
    width: 0;
    transform: translateX(-100%);
  }
  100% {
    width: 8rem;
    transform: translateX(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  height: 100%;
  font-size: 62.5%;
  font-family: "Encode Sans", sans-serif !important;
}

body {
  height: 100%;
  box-sizing: border-box;
  font-family: "Encode Sans", sans-serif !important;
}

button {
  border: 0;
  cursor: pointer;
  font-family: "Encode Sans", sans-serif !important;
}

.blur {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #c8c8c8;
  opacity: 75%;
  width: 100vw;
  height: 100vh;
}

.spinner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 5rem;
  width: 100%;
  height: 100%;
}
.spinner-box--reduced {
  padding: 0;
}
.spinner-box__info {
  font-size: 1.7rem;
}

.scrolleable-box {
  display: flex;
  flex-direction: column;
  height: 80%;
  overflow: scroll;
}

.flex-row-center {
  display: flex;
  flex-direction: row;
  justify-items: center;
  gap: 2rem;
}

/* width */
::-webkit-scrollbar {
  width: 0.6rem;
  height: 0.6rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #a3a3a3;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #c8c8c8;
  cursor: pointer;
}

.relative {
  position: relative;
}

.dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 100;
}
.dropdown button {
  background-color: transparent;
  z-index: 100;
}
.dropdown__img {
  width: 6rem;
  height: 6rem;
  border-radius: 100rem;
  border: 1px solid #a3a3a3;
}
.dropdown__dropbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 100%;
  right: 0%;
  padding: 1.5rem;
  background-color: #f0f0f0;
  border-radius: 0.5rem;
  box-shadow: 0rem 0.5rem 2rem 0rem #c8c8c8;
  width: 14rem;
  z-index: 100;
}
.dropdown__dropbox__line {
  border: none;
  border-top: 0.1rem solid black;
}
.dropdown__dropbox__btn {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #f0f0f0;
  z-index: 100;
}
.dropdown__dropbox__btn:hover {
  background-color: #c8c8c8;
}
.dropdown__namebox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.dropdown__namebox__name {
  font-size: 1rem;
}
.dropdown__namebox__arrow {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 10rem;
  border: 0.1rem solid black;
  padding: 0.1rem;
}

.navbar {
  display: flex;
  flex-direction: row;
  position: sticky;
  width: 100%;
  height: auto;
  background-color: white;
  box-shadow: 0 4px 6px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem 4rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.6rem solid;
  border-image: linear-gradient(90deg, #e91875, #3fbbc9) 1;
}
.navbar__logo {
  height: 8rem;
  cursor: pointer;
}

.navbar-shadow {
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  background-size: contain;
  background-image: linear-gradient(180deg, #c8c8c8 0%, rgba(0, 0, 0, 0) 40%), url("/img/textura_banner.png");
  height: 25rem;
  z-index: -1;
}

.relative {
  position: relative;
}

.spinner {
  border: 0.3rem solid #f3f3f3; /* Color de fondo */
  border-top: 0.3rem solid #009aae;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  animation: spin 1s linear infinite;
}
.spinner--small {
  width: 2rem;
  height: 2rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.grid-setup {
  grid-area: 1/5/1/11;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.card {
  aspect-ratio: 2/1.5;
  font-size: large;
  height: 35rem;
  transform: rotate3d(1, 1, 0, 180deg);
  transition: transform 0.8s;
  transform-style: preserve-3d;
  z-index: 2;
}
.card.flipped {
  transform: rotateY(0);
}

.none-events {
  pointer-events: none;
}

.front,
.back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  backface-visibility: hidden;
  border-radius: 2em;
  border: 1px solid var(--fg-2);
  box-sizing: border-box;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  background-color: #f0f0f0;
}
.front__button-flip,
.back__button-flip {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.7rem;
  cursor: pointer;
}

.error-message {
  position: absolute;
  color: #be1717;
  bottom: 12%;
}

.back {
  transform: rotate3d(1, 1, 0, 180deg);
}

.form {
  position: relative;
  font-size: 1.7rem;
  width: 55%;
  height: 55%;
}
.form__input {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form__input input {
  font-size: 1.7rem;
  padding: 0.2rem 0 0.2rem 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid black;
}
.form__btn-submit {
  background-color: #009aae;
  padding: 1rem;
  width: 100%;
  border-radius: 0.5rem;
  margin-top: 2rem;
  color: white;
  font-size: 1.7rem;
  font-weight: 600;
}
.form__btn-submit:hover {
  background-color: #a3d8e7;
}
.form__forgot-link {
  color: #009aae;
  font-size: 1.3rem;
  margin: 1rem;
}
.form__forgot-link:hover {
  color: #a3d8e7;
}

.form::before,
.form::after {
  content: "";
  position: absolute;
  display: block;
  width: 80%;
  height: 80%;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  padding: 0.3rem;
  background: linear-gradient(90deg, #e91875, #3fbbc9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form::before {
  top: 45%;
  right: 35%;
  padding-right: 0rem;
  padding-top: 0rem;
}

.form::after {
  bottom: 25%;
  left: 35%;
  padding-left: 0rem;
  padding-bottom: 0rem;
}

.grid-logo-setup {
  grid-area: 1/1/1/5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #e72276, #cc3e97, #a854ac, #8063b3, #5b6cae, #4a73ae, #3d7aac, #377fa7, #2c8bb0, #1f96b8, #0ea2be, #00aec3);
  overflow: hidden;
}
.grid-logo-setup::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 40%;
  background-image: url("/img/textura_footer.png");
  background-size: contain;
  opacity: 0.1; /* Ajusta este valor para la opacidad deseada */
  z-index: 1; /* Asegura que el pseudo-elemento esté detrás del contenido */
}

.logo {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  width: 65%;
  color: white;
}
.logo h1 {
  text-align: center;
}
.logo::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 5%;
  width: 90%;
  height: 120%;
  border-radius: 1rem;
  padding: 0.3rem;
  background: linear-gradient(90deg, #c2095c, #297d86);
  -webkit-mask: linear-gradient(transparent 0 0) content-box, linear-gradient(#fff 0 0), radial-gradient(circle at bottom, black 30%, transparent 30%);
  mask: linear-gradient(transparent 0 0) content-box, linear-gradient(#fff 0 0), radial-gradient(circle at bottom, black 30%, transparent 30%);
  -webkit-mask-composite: source-in, xor;
  mask-composite: intersect, exclude;
  mask-position: 0.5rem 0.01rem;
}
.logo__icon-box {
  position: absolute;
  top: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  background-color: transparent;
  margin-left: 1rem;
  width: 6rem;
  height: 6rem;
  z-index: 1;
}
.logo__icon-box::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 10em;
  border: 0.3rem solid white;
}
.logo__icon-box__icon {
  color: white;
  width: 4rem;
}

.description-box {
  position: relative;
  color: white;
  font-size: 1.7rem;
  padding-top: 5rem;
  width: 55%;
}
.description-box::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  padding-bottom: 0.3rem;
  background: linear-gradient(90deg, #c2095c, #297d86);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.description-box__text {
  margin-bottom: 2rem;
  text-align: justify;
}

.login {
  position: relative;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.login::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(0deg, #c8c8c8 0%, rgba(0, 0, 0, 0) 30%), url("/img/textura_footer.png");
  background-size: contain;
  opacity: 1; /* Ajusta este valor para la opacidad deseada */
  z-index: -1; /* Asegura que el pseudo-elemento esté detrás del contenido */
}

.dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 100;
}
.dropdown button {
  background-color: transparent;
  z-index: 100;
}
.dropdown__img {
  width: 6rem;
  height: 6rem;
  border-radius: 100rem;
  border: 1px solid #a3a3a3;
}
.dropdown__dropbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 100%;
  right: 0%;
  padding: 1.5rem;
  background-color: #f0f0f0;
  border-radius: 0.5rem;
  box-shadow: 0rem 0.5rem 2rem 0rem #c8c8c8;
  width: 14rem;
  z-index: 100;
}
.dropdown__dropbox__line {
  border: none;
  border-top: 0.1rem solid black;
}
.dropdown__dropbox__btn {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #f0f0f0;
  z-index: 100;
}
.dropdown__dropbox__btn:hover {
  background-color: #c8c8c8;
}
.dropdown__namebox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.dropdown__namebox__name {
  font-size: 1rem;
}
.dropdown__namebox__arrow {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 10rem;
  border: 0.1rem solid black;
  padding: 0.1rem;
}

.navbar {
  display: flex;
  flex-direction: row;
  position: sticky;
  width: 100%;
  height: auto;
  background-color: white;
  box-shadow: 0 4px 6px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem 4rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.6rem solid;
  border-image: linear-gradient(90deg, #e91875, #3fbbc9) 1;
}
.navbar__logo {
  height: 8rem;
  cursor: pointer;
}

.navbar-shadow {
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  background-size: contain;
  background-image: linear-gradient(180deg, #c8c8c8 0%, rgba(0, 0, 0, 0) 40%), url("/img/textura_banner.png");
  height: 25rem;
  z-index: -1;
}

.relative {
  position: relative;
}

.relative-bottom {
  position: relative;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: auto;
  background-color: #c8c8c8;
  padding: 2rem 4rem;
}
.footer__logo {
  height: 20rem;
}
.footer__link-box {
  display: flex;
  flex-grow: 0.1;
  justify-content: space-around;
  color: black;
}
.footer__link-box__title {
  font-weight: bold;
  font-size: 1.7rem;
}
.footer__link-box__link {
  font-size: 1.7rem;
  color: #464646;
  margin: 0.5rem 0rem;
  cursor: pointer;
}
.footer__link-box__link:hover {
  text-decoration: underline;
  color: #009aae;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.footer-shadow {
  position: absolute;
  bottom: 100%;
  left: 0%;
  width: 100%;
  background-size: contain;
  background-image: linear-gradient(0deg, #c8c8c8 0%, rgba(0, 0, 0, 0) 40%), url("/img/textura_footer.png");
  height: 20rem;
  z-index: -1;
}

.btn-box {
  position: relative;
  grid-row-start: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  width: 80%;
  height: 100%;
  border-radius: 1rem;
  box-shadow: 1rem 1.6rem 2rem 0.3rem rgba(0, 0, 0, 0.3), 0 0.5rem 1rem 0.1rem rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* 	&:hover::before {
  	content: '';
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	pointer-events: none;
  	transform: scale(1.1);
  	z-index: -1;
  } */
}
.btn-box--start-row-3 {
  grid-row-start: 3;
}
.btn-box--start-col-3 {
  grid-column-start: 2;
}
.btn-box--reportes {
  grid-area: 2/3/4/3;
  width: 80%;
}
.btn-box::after {
  content: "";
  position: absolute;
  top: 2.5%;
  left: 2.5%;
  width: 95%;
  height: 95%;
  border-radius: 1rem;
  padding: 0.2rem;
  background: linear-gradient(90deg, #e91875, #3fbbc9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.btn-box:hover {
  box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.3);
  /* 		transform: perspective(100rem) rotateX(10deg) rotateY(-10deg); */
}
.btn-box__icon {
  position: absolute;
  top: -10%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(90deg, #e91875, #3fbbc9);
  border-radius: 10rem;
  padding: 1rem;
  z-index: 1;
  transition: transform 0.3s ease;
}
.btn-box__icon--reportes {
  top: -5%;
}
.btn-box__title {
  padding-bottom: 3rem;
  color: #009aae;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  width: 80%;
  transition: transform 0.3s ease;
}
.btn-box__title--reportes {
  padding-bottom: 0rem;
  width: 100%;
}
.btn-box__text {
  color: #464646;
  width: 80%;
  text-align: center;
  border-bottom: 0.2rem solid;
  padding-bottom: 2rem;
  border-image: linear-gradient(90deg, #e91875, #3fbbc9) 1;
  transition: transform 0.3s ease;
}
.btn-box__img {
  width: 50%;
  transition: transform 0.3s ease;
}
.btn-box__btn {
  position: absolute;
  bottom: 10%;
  text-decoration: none;
  color: white;
  background-color: #009aae;
  padding: 1rem 3rem;
  border-radius: 2rem;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.3s ease;
}
.btn-box__btn:hover {
  background-color: #22bed3;
}

.flex-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15rem;
}
.flex-row--reportes {
  gap: 2rem;
  padding-bottom: 5rem;
}

.styled {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 120vh;
  width: auto;
  gap: 2.5rem;
  padding-top: 10rem;
  margin-bottom: 20rem;
}
.styled__shadow {
  position: absolute;
  left: 0%;
  width: 100%;
  background-size: contain;
  background-image: linear-gradient(180deg, #c8c8c8 0%, rgba(0, 0, 0, 0) 40%), url("/img/textura_banner.png");
  height: 25rem;
  z-index: -1;
}
.styled__shadow--top {
  top: 0%;
}
.styled__shadow--bottom {
  bottom: 0%;
  background-image: linear-gradient(0deg, #c8c8c8 0%, rgba(0, 0, 0, 0) 40%), url("/img/textura_footer.png");
}
.styled__info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.styled__info-box__text {
  font-size: 2.2rem;
}
.styled__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 50rem;
  min-height: 35rem;
  border-radius: 2em;
  box-sizing: border-box;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  background-color: #f0f0f0;
}
.styled__card__error-message {
  display: inline-block;
  position: absolute;
  font-size: 1.7rem;
  width: 80%;
  height: auto;
  text-align: center;
  color: #be1717;
  bottom: 15%;
}
.styled__card__error-message--top {
  bottom: 83%;
  width: 60%;
}
.styled__logo-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  width: 100%;
}
.styled__logo-box__logo {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-weight: 500;
  color: #009aae;
}
.styled__logo-box__logo::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -15%;
  width: 130%;
  height: 150%;
  border-radius: 1rem;
  padding: 0.3rem;
  background: linear-gradient(90deg, #e91875, #3fbbc9);
  -webkit-mask: linear-gradient(transparent 0 0) content-box, linear-gradient(#fff 0 0), radial-gradient(circle at bottom, black 20%, transparent 20%);
  mask: linear-gradient(transparent 0 0) content-box, linear-gradient(#fff 0 0), radial-gradient(circle at bottom, black 20%, transparent 20%);
  -webkit-mask-composite: source-in, xor;
  mask-composite: intersect, exclude;
  mask-position: 0.5rem 0.01rem;
}
.styled__logo-box__logo__icon-box {
  position: absolute;
  top: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  background-color: transparent;
  margin-left: 1rem;
  width: 6rem;
  height: 6rem;
  z-index: 1;
}
.styled__logo-box__logo__icon-box::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 1em;
  padding: 0.3rem;
  background: linear-gradient(90deg, #e91875, #3fbbc9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}
.styled__logo-box__logo__icon-box__icon {
  color: #009aae;
  width: 4rem;
}

.form {
  position: relative;
  font-size: 1.7rem;
  width: 55%;
  height: 55%;
}
.form__input {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form__input input {
  font-size: 1.7rem;
  padding: 0.2rem 0 0.2rem 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid black;
  width: 100%;
}
.form__input__password {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
  height: 100%;
}
.form__input__show-btn {
  position: absolute;
  background-color: transparent;
  right: 3%;
  top: 10%;
}
.form__btn-submit {
  background-color: #009aae;
  padding: 1rem;
  width: 100%;
  border-radius: 0.5rem;
  margin-top: 1rem;
  color: white;
  font-size: 1.7rem;
  font-weight: 600;
}
.form__btn-submit:hover {
  background-color: #a3d8e7;
}

.form::before,
.form::after {
  content: "";
  position: absolute;
  display: block;
  width: 80%;
  height: 80%;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  padding: 0.3rem;
  background: linear-gradient(90deg, #e91875, #3fbbc9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form::before {
  top: 45%;
  right: 35%;
  padding-right: 0rem;
  padding-top: 0rem;
}

.form::after {
  bottom: 25%;
  left: 35%;
  padding-left: 0rem;
  padding-bottom: 0rem;
}

.success-msg-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.success-msg-box__title {
  position: absolute;
  top: 5%;
  color: #009aae;
  font-weight: bold;
  font-size: 3rem;
  padding: 5rem 0rem;
}
.success-msg-box__msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 1.7rem;
  margin: 0rem 3rem;
}
.success-msg-box__spinner {
  position: absolute;
  bottom: 15%;
}

.return-btn {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  top: 5%;
  left: 5%;
  color: #009aae;
  font-size: 1.7rem;
}
.return-btn:hover {
  text-decoration: underline;
  scale: 1.1;
}

.home {
  display: flex;
  justify-content: center;
  padding: 10rem 1rem 1rem 1rem;
  font-size: 1.7rem;
}

.main-grid {
  display: grid;
  grid-template-columns: repeat(4, 30rem);
  grid-template-rows: 15rem repeat(2, 20rem);
  row-gap: 6rem;
  align-items: start;
  justify-items: center;
  padding: 0rem 12rem 10rem 12rem;
}
.main-grid--4-cols {
  grid-template-columns: repeat(3, 30rem);
}
.main-grid__logo {
  position: relative;
  grid-area: 1/1/2/5;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  color: #009aae;
}
.main-grid__logo::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -7%;
  width: 115%;
  height: 160%;
  border-radius: 1rem;
  padding: 0.3rem;
  background: linear-gradient(90deg, #e91875, #3fbbc9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.main-grid__logo__icon-box {
  position: absolute;
  top: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  background-color: #ececec;
  margin-left: 1rem;
  width: 6rem;
  height: 6rem;
  z-index: 1;
}
.main-grid__logo__icon-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20%;
  padding: 1rem 3rem;
  background-color: #ececec;
  z-index: -1;
}
.main-grid__logo__icon-box::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 1em;
  padding: 0.3rem;
  background: linear-gradient(90deg, #e91875, #3fbbc9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}
.main-grid__logo__icon-box__icon {
  color: #009aae;
  width: 4rem;
}

@keyframes slide-rightToLeft {
  0% {
    width: 0;
    transform: translateX(0);
  }
  100% {
    width: 8rem;
    transform: translateX(-100%);
  }
}
@keyframes slide-leftToRight {
  0% {
    width: 0;
    transform: translateX(-100%);
  }
  100% {
    width: 8rem;
    transform: translateX(0);
  }
}
.grid-card-layout {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 20rem);
  grid-auto-rows: auto;
  row-gap: 5rem;
  column-gap: 10rem;
  justify-content: center;
  padding: 4rem 10rem;
  font-size: 1.7rem;
  overflow-y: scroll;
  overflow-x: visible;
}
.grid-card-layout__box {
  width: 100%;
  height: 100%;
}

.title-box {
  position: absolute;
  left: 5%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-weight: bold;
}
.title-box__return-link {
  border: 0.2rem solid #a3a3a3;
  border-radius: 10rem;
  text-decoration: none;
  color: #009aae;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
}
.title-box__return-link:hover {
  color: #22bed3;
}
.title-box__title {
  font-size: 2.8rem;
  color: #009aae;
}

.grid-card-filter-selector {
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem;
  margin: 6rem 10rem 0 10rem;
  background-color: #c8c8c8;
  border-radius: 2rem;
}
.grid-card-filter-selector__filter {
  position: relative;
  border-radius: 10rem;
  border: 0.2rem solid transparent;
  outline: none;
  padding: 0.5rem;
  width: 30rem;
}
.grid-card-filter-selector__filter:focus-visible {
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #e72276, #009aae);
}
.grid-card-filter-selector__selector {
  border-radius: 10rem;
  border: 0.2rem solid transparent;
  outline: none;
  width: 20rem;
  height: 3rem;
  padding-left: 1rem;
  margin-left: 2rem;
}
.grid-card-filter-selector__selector:focus-visible {
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #e72276, #009aae);
}
.grid-card-filter-selector__export {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  background-color: #009aae;
  padding: 1rem;
  border-radius: 1rem;
}
.grid-card-filter-selector__export:hover {
  background-color: #22bed3;
}

.grid-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 15rem;
  border-radius: 1rem;
  background-color: #f0f0f0;
  box-shadow: -0.4rem 0.4rem 1rem -0.1rem rgba(0, 0, 0, 0.75);
}
.grid-card--docs {
  height: 12rem;
  justify-content: space-between;
}
.grid-card__container {
  position: relative;
  display: flex;
  overflow: visible;
}
.grid-card__container--h-full {
  height: 100%;
  align-items: center;
}
.grid-card__container--end {
  justify-content: flex-end;
}
.grid-card__container__data {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  cursor: default;
  text-align: center;
  font-weight: bold;
}
.grid-card__container__data--default {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  color: #464646;
}
.grid-card__container__data--title {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 1.5rem;
  background-color: #009aae;
  height: 6rem;
  text-align: center;
  color: white;
}
.grid-card__container__data--title::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  padding: 0.3rem;
  background: linear-gradient(90deg, #e72276, #009aae);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.grid-card__container__data--type-pers {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 0rem 1rem;
}
.grid-card__container__data--type {
  width: 2rem;
  height: 2rem;
}
.grid-card__container__data--grey {
  color: #464646;
}
.grid-card__container__data--permissions {
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 0.5rem;
}
.grid-card__container__data--small-font {
  font-size: 1.3rem;
}
.grid-card__container__data--smallest-font {
  font-size: 1rem;
}

.tooltip {
  position: absolute;
  top: 10%;
  left: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c8c8c8;
  border-radius: 1rem;
  font-size: 1.3rem;
  color: black;
  width: 8rem;
  height: 4rem;
  z-index: 10;
  animation: slide-leftToRight 0.1s ease-out forwards;
}
.tooltip--left {
  left: 0%;
  top: 10%;
  animation: slide-rightToLeft 0.1s ease-out forwards;
}
.tooltip--export {
  top: 0%;
  left: 100%;
  background-color: #f0f0f0;
}

.report-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0 4rem 0;
  margin-bottom: 10rem;
  overflow: hidden;
  height: 100vh;
  z-index: 0;
}

.father-list {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0.5rem;
  background-color: #c8c8c8;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 3rem;
  color: #464646;
  margin-top: 5rem;
}
.father-list__node {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 1rem 0 1rem;
}
.father-list__node button {
  background-color: #c8c8c8;
}

.scroll-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.scroll-box--small {
  height: 75%;
}
.scroll-box__fakescrollbar {
  display: block;
  height: 100%;
}
.scroll-box__X {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 1rem 0 1rem;
  height: 1.2rem;
  overflow-x: scroll;
  overflow-y: hidden;
  z-index: 50;
}
.scroll-box__Y {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 1rem 0 1rem 0;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
.scroll-box__grab-box {
  position: relative;
  margin: 0 2.5rem 0 2.5rem;
  height: 100%;
}
.scroll-box__grab-box__data-container {
  position: absolute;
  top: 5%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.cursor-grab {
  cursor: grab;
}

.cursor-grabbing {
  cursor: grabbing;
}

.overflow {
  padding-bottom: 10rem;
  max-width: 95vw;
  max-height: 95vh;
  overflow-x: scroll;
  display: flex;
  align-items: center;
}

.overflow::-webkit-scrollbar {
  display: none;
}

.left {
  justify-content: center;
}

.line-top {
  border-top: 2px solid black;
}

.node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  cursor: pointer;
}

.center {
  display: flex;
  flex-direction: row;
  overflow: visible;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 8rem);
  grid-template-rows: 2rem 10rem 2rem;
}
.custom-grid__node {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-rows: repeat(2, 5rem);
  align-items: center;
  grid-column-start: 1;
  grid-column: 1/-1;
  grid-row-start: 2;
  height: 100%;
  margin: 0 0.5rem 0 0.5rem;
  background-color: #009aae;
  box-shadow: -0.4rem 0.4rem 1rem -0.1rem rgba(0, 0, 0, 0.75);
}
.custom-grid__node--lastchild {
  background-color: #a3d8e7;
}
.custom-grid__node__title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  height: 100%;
  grid-row-start: 1;
  font-size: 1.7rem;
  font-weight: 700;
  border: 0.2rem solid #464646;
  color: white;
}
.custom-grid__node__title--small {
  font-size: 1.7rem;
  padding: 1rem;
}
.custom-grid__node__title--smallest {
  font-size: 1.3rem;
  padding: 1rem;
}
.custom-grid__node__title--tiny {
  font-size: 1rem;
  padding: 1.1rem;
}
.custom-grid__node__desc {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row-start: 2;
  height: 100%;
  padding: 0.25rem;
  font-weight: 500;
  background-color: white;
  font-size: 1.3rem;
}
.custom-grid__node__desc--smallest {
  font-size: 1.3rem;
  padding: 0.5rem;
}
.custom-grid__node__desc--tiny {
  font-size: 1rem;
  padding: 0.5rem;
}

.children {
  display: flex;
}

.line {
  border-right: 2px solid black;
}
.line--down {
  border-right: 2px solid black;
  grid-row-start: 3;
}
.line--up {
  border-right: 2px solid black;
  grid-row-start: 1;
}
.line--up--right {
  border-right: 2px solid black;
  grid-row-start: 1;
}
.line--up--left {
  border-left: 2px solid black;
  grid-row-start: 1;
  grid-column-start: 2;
}
.line--top {
  border-top: 2px solid black;
  margin-left: 20px;
  margin-right: 20px;
}

.delete--right::before {
  content: "";
  position: absolute;
  top: -2%;
  left: 0;
  width: 50%;
  height: 4%;
  grid-column-start: 2;
  background-color: #ececec;
}
.delete--left::before {
  content: "";
  position: absolute;
  top: -2%;
  right: 0;
  width: 50%;
  height: 4%;
  grid-column-start: 2;
  background-color: #ececec;
}

.text-xxs {
  font-size: 0.6rem;
  line-height: 0.75rem;
}

.text-xxxs {
  font-size: 0.45rem;
  line-height: 0.6rem;
}

.section-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  height: 90vh;
  gap: 2rem;
  padding: 1.5rem 3rem 10rem 3rem;
}

.dropbox-date {
  position: absolute;
  top: 10%;
  left: 105%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  background-color: #f0f0f0;
  box-shadow: 0.5rem 0.5rem 1rem -0.1rem rgba(0, 0, 0, 0.2);
  padding: 4rem 1rem 2rem 1rem;
  width: 22rem;
  height: auto;
  z-index: 100;
}
.dropbox-date__close-btn {
  position: absolute;
  right: 5%;
  top: 5%;
  font-size: 1.7rem;
}
.dropbox-date__close-btn:hover {
  color: #464646;
}
.dropbox-date__box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.dropbox-date__label {
  display: inline;
  font-size: 1.3rem;
  width: min-content;
}
.dropbox-date__input {
  display: inline;
  width: 70%;
}
.dropbox-date__btn {
  border-radius: 1rem;
  background-color: #e72276;
  color: black;
  cursor: pointer;
  padding: 1rem;
  width: 50%;
}
.dropbox-date__btn:hover {
  text-decoration: none !important;
  color: black !important;
  background-color: #df3c82;
}
.dropbox-date__btn--disabled {
  cursor: not-allowed;
  color: #464646;
}
.dropbox-date__btn--disabled:hover {
  text-decoration: none !important;
  color: #464646 !important;
  background-color: #e72276;
}

.reportes-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 6rem;
  background-color: #f0f0f0;
  transition: width 0.3s ease;
}
.reportes-sidebar--expanded {
  width: 20%;
}
.reportes-sidebar__expand-btn {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
}
.reportes-sidebar__filter {
  padding: 5rem 2rem 2rem 5rem;
  width: 100%;
}
.reportes-sidebar__filter input[type=text] {
  border-radius: 1rem;
  outline: none;
  border: none;
  padding: 0.5rem;
  width: 100%;
  height: 2.5rem;
}
.reportes-sidebar__content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 0 1rem 5rem;
}
.reportes-sidebar__content-box__reparticion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  font-size: 1.3rem;
}
.reportes-sidebar__content-box__reparticion--expanded {
  color: #009aae;
  background: linear-gradient(90deg, #e91875, #3fbbc9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.reportes-sidebar__content-box__permissions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.reportes-sidebar__content-box__permissions button:hover {
  text-decoration: underline;
  color: #009aae;
}

.sidebar-disabled {
  cursor: not-allowed;
  background-color: transparent !important;
  color: #c8c8c8 !important;
  pointer-events: none;
}

.reportes-toolbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  width: 100%;
  height: 8rem;
  background-color: white;
  padding: 0rem 4rem;
}
.reportes-toolbar__toolbar-box {
  display: flex;
  align-items: center;
  gap: 8rem;
  border-radius: 3rem;
  background-color: #f0f0f0;
  padding: 0.1rem 5rem;
}
.reportes-toolbar__export {
  border-radius: 2rem;
  background-color: #009aae;
  color: white;
  font-size: 1.7rem;
  font-weight: 500;
  padding: 1rem 2rem;
}
.reportes-toolbar__export:hover {
  background-color: #22bed3;
}
.reportes-toolbar__message {
  text-align: center;
  color: #464646;
  font-size: 1.3rem;
  font-weight: 600;
  width: 100%;
  padding-left: 1rem;
}

.toolbar-btn-box {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.7rem;
}
.toolbar-btn-box__btn {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 1.7rem;
  border-radius: 2rem;
  padding: 1rem 2rem;
}
.toolbar-btn-box__btn:hover {
  background-color: white;
}
.toolbar-btn-box__absolute-box {
  position: absolute;
  top: 120%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 2rem;
  background-color: #f0f0f0;
  padding: 2rem;
  z-index: 100;
}
.toolbar-btn-box__absolute-box__fields-box {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.toolbar-btn-box__absolute-box__fields-box--column {
  flex-direction: column;
}
.toolbar-btn-box__absolute-box__fields-box--visible {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 1rem;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: white;
  padding: 0.5rem;
  width: 15rem;
  height: 12rem;
}
.toolbar-btn-box__absolute-box__fields-box--hidden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 1rem;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: white;
  padding: 0.5rem;
  width: 15rem;
  height: 12rem;
}
.toolbar-btn-box__absolute-box__fields-box__label {
  font-weight: bold;
  text-align: center;
  padding-bottom: 0.5rem;
}
.toolbar-btn-box__absolute-box__fields-box__field {
  font-size: 1rem;
  color: white;
  font-weight: 500;
  background-color: #009aae;
  padding: 1rem;
  border-radius: 1rem;
}
.toolbar-btn-box__absolute-box__fields-box__text {
  border-radius: 1rem;
  outline: none;
  border: 0.1rem solid #464646;
  padding: 0.5rem;
  width: 100%;
  height: 2rem;
}
.toolbar-btn-box__absolute-box__fields-box__select {
  border-radius: 1rem;
  background-color: white;
  outline: none;
  width: 20rem;
  height: 2.5rem;
}
.toolbar-btn-box__absolute-box__btn-box {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.toolbar-btn-box__absolute-box__btn-box__switch-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.2rem;
  font-size: 1.3rem;
  color: white;
  background-color: #e72276;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem 1rem 1.5rem;
}
.toolbar-btn-box__absolute-box__btn-box__switch-btn:hover {
  background-color: #df3c82;
}
.toolbar-btn-box__absolute-box__btn-box__submit-btn {
  font-size: 1.3rem;
  color: white;
  background-color: #009aae;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem 1rem 1.5rem;
}
.toolbar-btn-box__absolute-box__btn-box__submit-btn:hover {
  background-color: #22bed3;
}

.active-filter-box {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: center;
  border-top: 0.1rem solid black;
  padding: 1rem 0 1rem 0;
  width: 100%;
  height: 15rem;
  overflow-y: scroll;
}
.active-filter-box__filter {
  position: relative;
  top: 0%;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  background-color: #009aae;
  padding: 0.5rem;
  width: 90%;
}
.active-filter-box__filter__delete-btn {
  position: absolute;
  right: 5%;
  top: 35%;
  background-color: transparent;
}

.download-disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #22bed3;
}

.table-section {
  width: 100%;
  height: 100%;
}

.reportes-table {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.3rem;
  padding: 0 1rem 10rem 1em;
}
.reportes-table__header {
  background-color: #f0f0f0;
  color: #464646;
}
.reportes-table__header__text {
  position: relative;
  padding: 2rem 1rem 2rem 1rem;
  text-align: center;
  font-weight: 500;
}
.reportes-table__header__text::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  padding: 0.2rem;
  background: linear-gradient(90deg, #e91875, #3fbbc9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.reportes-table__body {
  border: none;
  color: #464646;
}
.reportes-table__body__row {
  background-color: white;
  height: 4rem;
}
.reportes-table__body__row__text {
  position: relative;
  padding: 0.5rem 1rem 0.5rem 1rem;
  text-align: center;
}
.reportes-table__body__row__text::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  padding: 0.2rem;
  background: linear-gradient(90deg, #e91875, #3fbbc9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.main {
  position: relative;
  display: flex;
  flex-direction: row;
  border-radius: 2rem;
  background-color: white;
  margin-top: 10rem;
  width: 95%;
  height: 100%;
}
.main__disabled {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #c8c8c8;
  opacity: 60%;
  width: 100%;
  height: 100%;
  cursor: not-allowed;
}

.reportes-title-box {
  position: absolute;
  left: 5%;
  top: 16.75%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-weight: bold;
}
.reportes-title-box__return-link {
  border: 0.2rem solid #a3a3a3;
  border-radius: 10rem;
  text-decoration: none;
  color: #009aae;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
}
.reportes-title-box__return-link:hover {
  color: #22bed3;
}
.reportes-title-box__title {
  font-size: 2.8rem;
  color: #009aae;
}

.admin-sidebar {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 2rem;
  height: 100vh;
  width: 20rem;
  background-color: #f0f0f0;
  box-shadow: 1rem 0rem 3rem -2rem rgba(0, 0, 0, 0.75);
  z-index: 50;
}

.admin-sidebar-item,
.admin-sidebar-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5rem;
  font-size: 1.7rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: black;
}
.admin-sidebar-item:hover,
.admin-sidebar-link:hover {
  background-color: #c8c8c8;
}

.admin-searchbox {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: flex-end;
  border-radius: 1rem;
  gap: 0.5rem;
  background-color: #f0f0f0;
  box-shadow: 0rem 0.4rem 0.6rem -0.1rem rgba(0, 0, 0, 0.75);
  width: 100%;
  padding: 2rem;
  margin-bottom: 5rem;
}

.searcher-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.searcher-box__input {
  border: 0.1rem solid #c8c8c8;
  border-radius: 1rem;
  width: 25rem;
  padding: 0.5rem;
}
.searcher-box__select {
  width: 20rem;
  border-radius: 10rem;
}

.admin-table {
  border-collapse: collapse;
  box-shadow: 0rem 2rem 2.5rem -0.5rem rgba(0, 0, 0, 0.75);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.7rem;
}
.admin-table__caption {
  margin-bottom: 2rem;
  font-size: 3rem;
}
.admin-table__header {
  text-transform: uppercase;
  color: #464646;
}
.admin-table__header__text {
  padding: 0.5rem 1rem 0.5rem 1rem;
  text-align: center;
}
.admin-table__body {
  border: none;
  color: #464646;
}

.list-row {
  border-bottom: 0.1rem solid #c8c8c8;
  background-color: white;
  height: 4rem;
}
.list-row:hover {
  background-color: #f0f0f0;
}
.list-row__item {
  padding: 0.5rem 1rem 0.5rem 1rem;
  text-align: center;
}

.action-btn {
  font-weight: 500;
  background-color: transparent;
}
.action-btn:hover {
  text-decoration: underline;
}
.action-btn--delete {
  color: #be1717;
}
.action-btn--edit {
  color: #009aae;
}

.popup-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 60;
  font-size: 1.7rem;
  border-radius: 1rem;
  background-color: #f0f0f0;
  padding: 1rem;
  box-shadow: 0rem 0.5rem 1rem rgba(0, 0, 0, 0.75);
}
.popup-modal__btn-box {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  width: 40%;
}

.btn {
  padding: 1rem;
  border-radius: 1rem;
}
.btn--accept {
  background-color: #22a954;
}
.btn--accept:hover {
  background-color: #35c46a;
}
.btn--decline {
  background-color: #be1717;
}
.btn--decline:hover {
  background-color: #d42c2c;
}

.flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.list-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  border-radius: 1rem;
  background-color: #c8c8c8;
  padding: 3rem;
  box-shadow: 0rem 0.5rem 1rem -0.1rem rgba(0, 0, 0, 0.75);
  width: 100%;
  max-height: 60vh;
  overflow: hidden scroll;
}
.list-container--max-height {
  max-height: 15vh;
}
.list-container__item {
  padding: 10px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  cursor: pointer;
  text-align: center;
}
.list-container__item--selected {
  background-color: #009aae;
}

.searchbox {
  border-radius: 1rem;
  background-color: #c8c8c8;
  padding: 1rem;
  width: 100%;
}

.add-btn {
  border-radius: 2rem;
  font-size: 1.7rem;
  background-color: #e72276;
  padding: 2rem 4rem;
}
.add-btn:hover {
  background-color: #df3c82;
}

.select-custom-box {
  position: relative;
}

.select-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.1rem solid black;
  border-radius: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  width: 20rem;
  padding: 0.1rem 0.5rem;
}
.select-custom__dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: white;
  border: 0.1rem solid black;
  font-size: 1.3rem;
  width: 100%;
  max-height: 22rem;
  overflow-y: scroll;
}
.select-custom__dropdown__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
}
.select-custom__dropdown__option:hover {
  background-color: #22bed3;
}

.admin-main {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  padding-left: 20rem;
}

.admin-new {
  padding: 2rem 0rem 2rem 0rem;
}
.admin-new__btn {
  padding: 1.5rem;
  border-radius: 10rem;
  background-color: #009aae;
}
.admin-new__btn:hover {
  background-color: #22bed3;
}

.title {
  font-size: 3rem;
}

.new-user-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  width: 100%;
}

.preregistrer-form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1.7rem;
  background-color: #c8c8c8;
  border-radius: 0.5rem;
  padding: 1rem;
  width: 40%;
  box-shadow: 0rem 0.5rem 1rem rgba(0, 0, 0, 0.75);
}
.preregistrer-form__role-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  right: 2%;
}
.preregistrer-form__role-box__select {
  font-size: 1.3rem;
  border-radius: 1rem;
  width: 60%;
  padding: 0.5rem;
}
.preregistrer-form__caption {
  font-weight: 500;
}
.preregistrer-form__input {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  margin-right: 1rem;
}
.preregistrer-form__submit {
  background-color: #009aae;
  padding: 0.5rem 1rem 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
.preregistrer-form__submit:hover {
  background-color: #22bed3;
}

.user-box {
  font-size: 1.7rem;
  background-color: #c8c8c8;
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: #c8c8c8;
  width: 33%;
  box-shadow: 0rem 0.5rem 1rem rgba(0, 0, 0, 0.75);
  text-align: center;
}
.user-box__title {
  margin-bottom: 2rem;
}
.user-box__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: start;
}
.user-box__info__section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 0.1rem solid black;
  margin-left: 1rem;
  padding-bottom: 1rem;
}
.user-box__info__section--last {
  border: none;
}
.user-box__info__section__text {
  margin-left: 2rem;
}

.text-error {
  color: #be1717;
  font-weight: 600;
}

.disabled {
  cursor: not-allowed;
  background-color: #22bed3 !important;
}
.disabled--rose {
  cursor: not-allowed;
  background-color: #df3c82 !important;
}

.add-user-btn {
  font-size: 1.7rem;
  border-radius: 1rem;
  background-color: #009aae;
  text-align: center;
  padding: 1rem;
  width: 20%;
}
.add-user-btn:hover {
  background-color: #22bed3;
}

.admin-listbox {
  width: 90%;
  height: 90%;
}

.line {
  width: 100%;
  border: 0.1rem solid #a3a3a3;
}

.main-box {
  position: relative;
  padding: 0 10%;
  margin: 10rem 0rem;
}
.main-box__title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 3rem;
  margin-top: 0rem;
  margin-bottom: 2.8rem;
}
.main-box__title-box__arrow {
  font-weight: 600;
  color: #e72276;
}
.main-box__title-box__title {
  color: #009aae;
  font-weight: 600;
}
.main-box__policies-box {
  margin-bottom: 2rem;
}
.main-box__policies-box__title {
  font-weight: 700;
  font-size: 1.7rem;
}
.main-box__policies-box__policy {
  font-size: 1.7rem;
  text-align: justify;
  line-height: 2.4rem;
}
.main-box__policies-box__policy--list {
  list-style-type: disc;
  margin-left: 2.4rem;
}
.main-box__policies-box__policy__link {
  color: #009aae;
}
.main-box__policies-box__policy__link:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
