@charset "UTF-8";
/* Definimos las Custom properties */
:root {
  --black: #171717;
  --white: #FFFFFF;
  --gray: #2E353E;
  --placeholder: #979797;
  --bg: #ecf0f1;
  --text: #000000;
  --primary: #047DFB;
  --secondary: #76B9FF;
  --tertiary: #47698C;
  --green: #449E45;
  --red: #9E4444;
  --red2: #E04540;
}

/* (Opcional) Las adaptamos al modo oscuro */
@media (prefers-color-scheme: dark) {
  /*
  :root {
      --black: #fff;
      --white: #000;
  }
  */
}
/* (Opcional) Configuramos si un usuario ha activado el modo alto contraste. (WD) */
/* (Opcional) Desactivamos los animations en el caso de que el usuario haya configurado el modo sin animation */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/* Reseteamos los margin y paddings de todas las etiquetas */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

*::before, *::after {
  display: block;
}

/* Evitamos problemas con las imagenes */
img, picture, video, iframe, figure {
  max-width: 100%;
  width: 100%;
  display: block;
  /* (Opcional) */
  object-fit: contain;
  /* (Opcional) */
  object-position: center center;
}

/* Reseteamos los enlaces para funcionar como cajas... */
a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

/* ... excepto los que se encuentran en párrafos */
p a {
  display: inline;
}

/* Quitamos los puntos de los <li> */
li {
  list-style-type: none;
}

/* (Opcional) Configuramos anclas suaves */
html {
  scroll-behavior: smooth;
}

/* Desactivamos estilos por defecto de las principales etiquetas de texto */
h1, h2, h3, h4, h5, h6, p, span, a, strong, blockquote, i, b, u, em {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

/* Evitamos problemas con los pseudoelementos de quotes */
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

/* (Opcional) Configuramos el texto que seleccionamos */
::selection {
  background-color: var(--primary);
  color: var(--white);
}

/* Nivelamos problemas de tipografías y colocación de formularios */
form, input, textarea, select, button, label {
  font-family: inherit;
  font-size: inherit;
  hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
  outline: none;
  /* (Opcional) */
  appearance: none;
}

input::placeholder {
  font-family: "Quicksand", sans-serif;
  color: inherit;
}

/* Reseteamos las tablas */
table, tr, td {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Evitamos problemas con los SVG */
svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

body {
  font-size: 100%;
  font-family: "Quicksand", sans-serif;
  /* (Opcional) */
  font-smooth: always;
  /* (Opcional) */
  -webkit-font-smoothing: antialiased;
  /* (Opcional) */
  -moz-osx-font-smoothing: grayscale;
  /*
  &::-webkit-scrollbar {
    width: 10px;
    background: rgba($color: $negro, $alpha: 0.4);
    overflow: hidden;
  }
  &::-webkit-scrollbar-thumb {
      background: $tertiary;
      border-radius: 8px;
  }
      */
}

.body--login {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0;
  padding: 0px 24px 40px;
  color: var(--black);
  background-color: var(--bg);
  min-height: 100vh;
}

.h1--login {
  font-weight: 700;
  font-size: 1.5em;
}

.group {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: start;
  -moz-align-items: start;
  -o-align-items: start;
  -ms-align-items: start;
  align-items: start;
  gap: 1.5rem;
  width: 100%;
}

.body {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: start;
  -moz-align-items: start;
  -o-align-items: start;
  -ms-align-items: start;
  align-items: start;
  gap: 0;
  padding: 0px 24px 40px;
}

html:has(.body--panel) {
  height: 100%;
  position: relative;
}

.body--panel {
  background-color: #14171C;
  color: var(--white);
  -webkit-display: grid;
  -moz-display: grid;
  -o-display: grid;
  -ms-display: grid;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  padding: 5.25rem 1.5rem;
  height: 100%; /* Ocupa todo el alto del viewport */
  position: relative;
  min-height: unset;
}
@media (width < 550px) {
  .body--panel {
    gap: 50px;
    padding: 60px 1.5rem;
  }
}

.header--panel {
  width: 100%;
  display: flex;
  align-items: center;
  max-width: 87.5rem;
  justify-content: space-between;
  font-size: 1.375rem;
  font-weight: 700;
}
@media (width < 550px) {
  .header--panel {
    font-size: 18px;
    width: 100%;
  }
}
.header--panel__button {
  padding: 0.625rem 1.375rem;
  border-radius: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0.625rem;
  background-color: #FACF39;
  color: var(--black);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.header--panel__button.button--disabled {
  cursor: wait;
}
.header--panel__button:hover {
  background-color: #d6b230;
}
@media (width < 550px) {
  .header--panel__button {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    gap: 0.25rem;
  }
}

.table--panel {
  max-width: 87.5rem;
}

.body--formi589 {
  background-color: var(--bg);
  padding: 40px 24px;
  min-height: 100vh;
}

.formi589 {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  -webkit-display: grid;
  -moz-display: grid;
  -o-display: grid;
  -ms-display: grid;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}
@media (width < 550px) {
  .formi589 {
    gap: 16px;
  }
}
.formi589__header {
  width: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 4px;
  text-align: center;
  border-radius: 20px;
  background-color: var(--tertiary);
  color: var(--white);
  padding: 44px 40px;
}
@media (width < 550px) {
  .formi589__header {
    padding: 16px 12px;
  }
}
.formi589__h1 {
  font-size: 32px;
  font-weight: 700;
}
@media (width < 550px) {
  .formi589__h1 {
    font-size: 20px;
  }
}
.formi589__h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media (width < 550px) {
  .formi589__h2 {
    font-size: 18px;
  }
}
.formi589__p {
  font-size: 14px;
  font-weight: 400;
  color: #C8C8C8;
}
.formi589__p--2 {
  font-size: 14px;
  font-weight: 400;
  color: #707070;
}
.formi589__fields {
  -webkit-display: grid;
  -moz-display: grid;
  -o-display: grid;
  -ms-display: grid;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-content: start;
  width: 100%;
  padding: 12px 0;
  padding-right: 10px;
}
@media (width < 550px) {
  .formi589__fields {
    grid-template-columns: 1fr;
    grid-template-rows: max-content;
  }
}
.formi589__fields--group {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: start;
  -moz-justify-content: start;
  -o-justify-content: start;
  -ms-justify-content: start;
  justify-content: start;
  -webkit-align-items: start;
  -moz-align-items: start;
  -o-align-items: start;
  -ms-align-items: start;
  align-items: start;
  gap: 20px;
  width: 100%;
}
.formi589__group {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: start;
  -moz-justify-content: start;
  -o-justify-content: start;
  -ms-justify-content: start;
  justify-content: start;
  -webkit-align-items: start;
  -moz-align-items: start;
  -o-align-items: start;
  -ms-align-items: start;
  align-items: start;
  gap: 20px;
  width: 100%;
  position: relative;
}
.formi589__group__item {
  -webkit-display: grid;
  -moz-display: grid;
  -o-display: grid;
  -ms-display: grid;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-content: start;
  width: 100%;
  box-shadow: inset 0 0 25px rgba(128, 128, 128, 0.25);
  border-radius: 20px;
  padding: 30px 20px;
}
@media (width < 550px) {
  .formi589__group__item {
    grid-template-columns: 1fr;
    grid-template-rows: max-content;
  }
}
.formi589__group__buttons {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: translateX(50%) translateY(50%);
}
.formi589__group__button {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.formi589__group__button--hidden {
  display: none;
}
.formi589__group__button--add {
  background-color: var(--primary);
}
.formi589__group__button--delete {
  background-color: var(--red2);
}
.formi589__encabezado {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 4px;
  text-align: center;
  flex-shrink: 0;
}
.formi589__button {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 4px;
  background-color: var(--red2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  margin-top: 12px;
  cursor: pointer;
  transition: 0.3s;
  align-self: center;
  width: fit-content;
}
.formi589__button--save {
  background-color: var(--primary);
  justify-self: center;
  flex-shrink: 0;
  margin-top: 16px;
}
.formi589__button:hover {
  transform: scale(1.05);
}
@media (width < 550px) {
  .formi589__button {
    font-size: 12px;
  }
}
.formi589__main {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.formi589 .slider__container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
}
.formi589 .slider__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}
.formi589 .slider__slide {
  min-width: 100%;
  height: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -o-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  padding: 50px 70px;
}
@media (width < 550px) {
  .formi589 .slider__slide {
    padding: 20px 16px;
    gap: 12px;
  }
}
.formi589 .slider__button {
  width: 36px;
  height: 36px;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0;
  background-color: var(--secondary);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}
.formi589 .slider__button--oculto {
  display: none;
}
@media (width < 550px) {
  .formi589 .slider__button {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
}
.formi589 .slider__buttonPrev {
  position: absolute;
  left: 20px;
  top: 60px;
  transform: translateY(-50%);
  z-index: 1;
}
.formi589 .slider__buttonPrev:hover {
  transform: translateY(-50%) scale(1.05);
}
@media (width < 550px) {
  .formi589 .slider__buttonPrev {
    top: 20px;
    left: 10px;
    transform: translateY(0);
  }
  .formi589 .slider__buttonPrev:hover {
    transform: translateY(0) scale(1.05);
  }
}
.formi589 .slider__buttonNext {
  position: absolute;
  right: 20px;
  top: 60px;
  transform: translateY(-50%);
  z-index: 1;
}
.formi589 .slider__buttonNext:hover {
  transform: translateY(-50%) scale(1.05);
}
@media (width < 550px) {
  .formi589 .slider__buttonNext {
    top: 20px;
    right: 10px;
    transform: translateY(0);
  }
  .formi589 .slider__buttonNext:hover {
    transform: translateY(0) scale(1.05);
  }
}

#btnScrollTop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none; /* Oculto por defecto */
  transition: opacity 0.3s ease;
  justify-content: center;
  align-items: center;
}

#btnScrollTop:hover {
  background-color: var(--secondary);
}

.container {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 550px;
}

.button {
  border-radius: 0.75rem;
  font-size: 0.875rem;
  background-color: var(--primary);
  padding: 0.75rem;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0px;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}
.button:hover {
  transform: scale(1.05);
}
.button--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.form {
  background-color: var(--white);
  padding: 1.25rem 0.75rem;
  width: 100%;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: start;
  -moz-align-items: start;
  -o-align-items: start;
  -ms-align-items: start;
  align-items: start;
  gap: 1.5rem;
}
.form__footer {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  font-size: 0.875rem;
}
.form__a {
  color: var(--primary);
  transition: 0.3s;
}
.form__a:hover {
  transform: scale(1.05);
}

.icon {
  width: 1.125rem;
}

.field {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: start;
  -moz-align-items: start;
  -o-align-items: start;
  -ms-align-items: start;
  align-items: start;
  gap: 0.75rem;
  font-size: 0.875rem;
  width: 100%;
}
.field__div {
  width: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0;
}
.field__off {
  display: none;
}
.field__button {
  cursor: pointer;
}
.field__button--visible .field__on {
  display: none;
}
.field__button--visible .field__off {
  display: block;
}

.input {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: start;
  -moz-justify-content: start;
  -o-justify-content: start;
  -ms-justify-content: start;
  justify-content: start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: var(--bg);
  border-radius: 0.25rem;
  border: 0.0625rem solid transparent;
  transition: 0.3s;
  width: 100%;
}
.input:focus-within {
  border: 0.0625rem solid var(--primary);
}
.input__input {
  font-size: 0.875rem;
  color: var(--text);
  flex-grow: 1;
}
.input__input::placeholder {
  color: var(--placeholder);
}

.notification {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  background-color: var(--green);
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  top: -0.625rem;
  transition: 0.3s;
  color: var(--white);
}
.notification--isActive {
  top: 2.5rem;
  transform: translateX(-50%) translateY(0%);
}
.notification--false {
  background-color: var(--red);
}
.notification__icon {
  width: 2.5rem;
}
.notification__div {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: start;
  -moz-align-items: start;
  -o-align-items: start;
  -ms-align-items: start;
  align-items: start;
  gap: 0.125rem;
  font-size: 0.875rem;
  font-weight: 300;
  width: 12.5rem;
}
.notification__strong {
  font-weight: 600;
  font-size: 1.125rem;
}

.table {
  width: 100%;
  overflow-x: auto;
  /* Activa el scroll horizontal */
  border-radius: 0.5rem;
  /* 📌 RESPONSIVE: En pantallas pequeñas, activar el scroll horizontal */
  /* Header */
  /* Rows */
  /* Celdas */
  /* Botones de acción */
}
@media (width < 550px) {
  .table {
    overflow-x: auto;
    width: 100%;
  }
  .table__content {
    min-width: 50rem;
    /* Evita que la tabla se comprima demasiado */
  }
}
.table__content {
  display: grid;
  grid-template-columns: minmax(50px, auto) repeat(2, 1fr) auto auto auto auto;
  gap: 0.375rem;
  min-width: 70rem;
  /* Asegura que la tabla no se colapse en pantallas pequeñas */
  background: transparent;
}
.table__header {
  display: contents;
}
.table__header .table__cell {
  font-weight: bold;
  background: #1D2128;
  color: var(--white);
  padding: 0.75rem;
  text-align: left;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: 0.3s ease;
  border-radius: 0.5rem;
  justify-content: space-between;
}
.table__header .table__cell:hover {
  background: #474d58;
}
.table__rows {
  display: contents;
}
.table__row {
  display: contents;
  transition: 0.3s ease;
}
.table__row:hover {
  background-color: #474d58;
}
.table__row:hover .table__buttons {
  opacity: 1;
}
.table__row:nth-child(even) {
  background: #f9f9f9;
}
.table__cell {
  padding: 0.75rem;
  white-space: nowrap;
  /* Evita el quiebre de texto */
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: start;
  -moz-justify-content: start;
  -o-justify-content: start;
  -ms-justify-content: start;
  justify-content: start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0;
}
.table__buttons {
  width: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: end;
  -moz-justify-content: end;
  -o-justify-content: end;
  -ms-justify-content: end;
  justify-content: end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transition: 0.3s;
  padding-left: 1.5rem;
}
@media (width < 550px) {
  .table__buttons {
    gap: 0.75rem;
  }
}
.table__button {
  border-radius: 50%;
  padding: 0.6875rem;
  cursor: pointer;
  transition: 0.3s;
}
.table__button.button--disabled {
  opacity: 0.5;
}
.table__button--white {
  background-color: #fff;
}
.table__button--white:hover {
  background-color: #dadada;
}
.table__button--red {
  background-color: #AA0000;
}
.table__button--red:hover {
  background-color: #7e0000;
}
.table__button--blue {
  background-color: #477BFF;
}
.table__button--blue:hover {
  background-color: #345fcc;
}
.table__button--green {
  background-color: #75A843;
}
.table__button--green:hover {
  background-color: #528232;
}
.table__circleStatus {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin-right: 0.375rem;
}
.table__circleStatus--gray {
  background-color: #8d8d8d;
}
.table__circleStatus--red {
  background-color: #AA0000;
}
.table__circleStatus--yellow {
  background-color: #FACF39;
}
.table__circleStatus--green {
  background-color: #75A843;
}
.table__sort .table__arrow--down, .table__sort .table__arrow--up {
  display: block;
}
.table__sort--active.table__sort--asc .table__arrow--down {
  display: none;
}
.table__sort--active.table__sort--desc .table__arrow--up {
  display: none;
}
.table__arrows {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0;
}
.table__arrow {
  width: 0.75rem;
  max-width: none;
}
.table__arrow--down {
  transform: rotate(180deg);
}
.table__check {
  display: none;
}
.table__check--visible {
  display: block;
}

.pagination {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 1rem;
}
@media (width < 550px) {
  .pagination {
    font-size: 0.875rem;
    flex-direction: column;
    gap: 16px;
  }
}
.pagination__arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0;
  border: 0.0625rem solid var(--white);
  opacity: 0;
  transition: 0.3s;
}
@media (width < 550px) {
  .pagination__arrow {
    width: 1.625rem;
    height: 1.625rem;
  }
}
.pagination__arrow--active {
  opacity: 1;
}
.pagination__arrow--active:hover {
  transform: scale(1.1);
}
.pagination__arrow--right {
  transform: rotate(180deg);
}
.pagination__arrow--right:hover {
  transform: rotate(180deg) scale(1.1);
}
.pagination__pages {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0.5rem;
}
.pagination__page {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0;
  transition: 0.3s;
}
@media (width < 550px) {
  .pagination__page {
    width: 1.625rem;
    height: 1.625rem;
  }
}
.pagination__page:not(.pagination__page--active):hover {
  background-color: #474d58;
}
.pagination__page--active {
  background-color: var(--white);
  color: var(--black);
  font-weight: 600;
  cursor: default;
}
.pagination__img {
  width: 0.875rem;
}
@media (width < 550px) {
  .pagination__img {
    width: 0.625rem;
  }
}

.fieldForm {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0;
  border: 1px solid #EBECEF;
  border-radius: 8px;
  padding: 8px 10px;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
  height: fit-content;
}
.fieldForm:focus-within {
  border-color: var(--secondary);
}
.fieldForm__label {
  position: absolute;
  top: 0;
  left: 16px;
  transform: translateY(-50%);
  background-color: var(--white);
  padding: 2px 6px;
  font-size: 12px;
  max-width: calc(100% - 32px);
  color: #657080;
  overflow-x: auto;
  white-space: nowrap;
  /* Ocultar scrollbar en la mayoría de navegadores */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE y Edge */
}
.fieldForm__label::-webkit-scrollbar {
  display: none; /* Chrome, Safari y Opera */
}
@media (width < 550px) {
  .fieldForm__label {
    max-width: 236px;
    left: 12px;
  }
}
.fieldForm__input {
  width: 100%;
  padding: 8px 10px;
  font-weight: 500;
}
.fieldForm__switch {
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  -ms-display: flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 0;
  padding: 8px 10px;
  width: 100%;
  font-weight: 500;
}
.fieldForm__required {
  position: absolute;
  right: 16px;
  bottom: 0px;
  transform: translateY(50%);
  color: var(--red2);
  font-size: 12px;
  background-color: var(--white);
  padding: 2px 6px;
  font-weight: 500;
}
.fieldForm__required--oculto {
  display: none;
}
@media (width < 550px) {
  .fieldForm__required {
    font-size: 10px;
  }
}

.switch {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 1.5rem;
}
.switch__checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .switch__checkbox:checked + .switch__slider {
  background-color: var(--black);
}
.switch .switch__checkbox:checked + .switch__slider:before {
  transform: translateX(1rem);
}
.switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #D6D9DD;
  transition: 0.3s;
  border-radius: 1.25rem;
}
.switch__slider:before {
  position: absolute;
  content: "";
  height: 1.25rem;
  width: 1.25rem;
  left: 0.125rem;
  bottom: 0.125rem;
  background-color: var(--white);
  transition: 0.3s;
  border-radius: 50%;
}

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