@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900");

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--font2);
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--font);
  background-image: url(../img/macos-monterey-wwdc-21-stock-dark-mode-5k-6016x6016-5585.jpg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  margin: 0;
}

.loader {
  color: #ffffff;
  font-size: 50px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: 72px auto;
  position: relative;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
  animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
      -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
      -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
      -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
      -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

nav {
  border-bottom: 1px solid rgba(113 119 144 / 55%);
  margin-bottom: 20px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  align-items: center;
  -webkit-animation: top 1s var(--delay) both;
  animation: top 1s var(--delay) both;
}

nav h2 {
  margin: 0;
}

/* CONTAINER */

.container-volver-nav {
  display: flex;
  gap: 10px;
}

.container-textbox-qr {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  margin-bottom: 10px;
}

.conteiner-buscar-por-qr {
  display: flex;
}

.container-btn-opciones {
  margin: 30px;
  display: flex;
  justify-content: center;
  -webkit-animation: top 1s var(--delay) both;
  animation: top 1s var(--delay) both;
}

.container-info-egreso-de-visita,
.container-info-egreso-de-contratistas,
.container-info-egreso-de-personal {
  margin-top: 40px;
  height: 90%;
  width: 100%;
  -webkit-animation: top 1s var(--delay) both;
  animation: top 1s var(--delay) both;
}

.container-info-visita,
.container-info-contratistas,
.container-info-personal {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  height: 35vh;
  gap: 30px;
  color: var(--font2);
}

.container-codigo-qr {
  border-radius: 10px;
  background: transparent;
  padding: 20px;
  border: none;
  box-shadow: 0 8px 24px 0 rgb(0 0 0 / 42%);
  text-align: center;
  height: 50%;
  margin-top: 40px;
  width: 260px;
  -webkit-animation: top 1s var(--delay) both;
  animation: top 1s var(--delay) both;
}

.container-img-art {
  margin-top: 70px;
}

.container-buscar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  -webkit-animation: top 1s var(--delay) both;
  animation: top 1s var(--delay) both;
}

.container-info-card {
  display: flex;
  gap: 15px;
  color: var(--font);
}

.container-card-tabla {
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
}

.container-tabla-historial,
.container-tabla-pesonal,
.container-tabla-contratistas {
  padding: 0 5%;
  padding-bottom: 20px;
  -webkit-animation: top 1s var(--delay) both;
  animation: top 1s var(--delay) both;
}

.container-tabla-contratistas {
  padding: 0;
  width: 100%;
  margin-top: 20px;
  overflow: auto;
}

.tbl-header {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-animation: top 1s var(--delay) both;
  animation: top 1s var(--delay) both;
}

.tbl-content,
.tbl-content-contratistas, .tbl-content-personal-mensual {
  height: calc(100vh - 355px);
  overflow-x: auto;
  margin-top: 0px;
  -webkit-animation: top 1s var(--delay) both;
  animation: top 1s var(--delay) both;
}

.tbl-content-contratistas, .tbl-content-personal-mensual {
  height: calc(100vh - 455px);
}

.container-carga {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  height: 0px;
}

.container-btn-popup {
  width: 100%;
  height: calc(89% - 64px);
  display: flex;
  gap: 3%;
  justify-content: center;
}

.container-popup,
.container-popup-imprimir {
  background: var(--fondo);
  box-shadow: 0px 3px 6px 0px #0e0e0e9e;
  border-radius: 10px;
  padding: 5%;
  width: 50%;
  height: 28vh;
  transition: 0.3s ease all;
  transform: scale(0.7);
  font-size: 15px;
  opacity: 0;
}

.container-popup-imprimir {
  padding: 2% 5%;
  width: 25%;
  display: flex;
  justify-content: center;
  height: 40vh;
  min-height: 350px;
  min-width: 350px;
  align-items: center;
}

.container-cargar-datos-dni {
  text-align: center;
  margin-bottom: 20px;
}

.container-escanear-dni {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

#container-empresas,
#container-nombres {
  display: none;
  border: 1px solid var(--font2);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: var(--fondo);
  position: absolute;
  z-index: 1;
  box-shadow: 0 4px 8px 0 rgb(21 21 21 / 41%);
}

.td-controles {
  width: 40px;
}

.container-abm-secores,
.container-abm-empresa {
  display: flex;
  justify-content: space-between;
  padding: 5%;
  gap: 5%;
  padding-top: 0;
}

.container-agregar-sector,
.container-tabla-sector,
.container-agregar-empresa,
.container-tabla-empresa,
.container-tabla-empresa,
.container-agregar-personal {
  width: 100%;
  -webkit-animation: top 1s var(--delay) both;
  animation: top 1s var(--delay) both;
}

.container-tabla {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 64vh;
  overflow: auto;
  color: var(--font2);
}

.container-img-visita {
  display: flex;
  justify-content: center;
}

.container-form-ingreso-visitas,
.container-form-ingreso-contratistas,
.container-egreso-de-visitas,
.container-egreso-de-contratistas,
.container-egreso-de-personal-mensual,
.container-form-abm-personal-mensual {
  display: flex;
  padding: 0 5%;
  justify-content: space-between;
  gap: 5%;
  height: 70vh;
  overflow: auto;
}

.container-form-abm-personal-mensual {
  padding: 5%;
  padding-top: 0;
  height: auto;
}

.container-form-ingreso-contratistas {
  padding: 0 3%;
}

.container-abm-personal-mensual {
  overflow: auto;
  height: 100%;
}

.form-filtrar-dni {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.container-right-visitas,
.container-right-contratistas,
.container-left-ingreso,
.container-right-personal-mensual {
  width: 100%;
  -webkit-animation: top 1s var(--delay) both;
  animation: top 1s var(--delay) both;
}

.container-controles-nav {
  display: flex;
  align-items: center;
}

.container-btn-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 0 20%;
  padding-top: 18px;
  padding-bottom: 32px;
  height: calc(95% - 91px);
  overflow: auto;
  box-sizing: border-box;
}

.container {
  background-color: var(--theme-bg-color);
  backdrop-filter: blur(20px);
  margin: 20px 10%;
  border-radius: 10px;
  height: calc(100vh - 40px);
}

.container-alerta {
  width: 100%;
  display: flex;
  justify-content: center;
}

.container-card-alerta {
  visibility: hidden;
  opacity: 0;
  display: flex;
  background-color: var(--verde);
  box-sizing: border-box;
  color: white;
  position: absolute;
  width: 40%;
  height: 80px;
  top: 60px;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin: 0 10px;
  border-radius: 5px;
  transition: 0.3s ease all;
}

.section {
  position: relative;
  width: 100%;
  display: block;
}

.container-text-opciones {
  text-align: center;
  margin-top: 25px;
  padding-bottom: 16px;
}

.container-text-opciones span {
  padding: 0 20px;
  text-transform: uppercase;
  color: var(--font2);
  font-weight: 700;
}

.card-3d-wrap {
  position: relative;
  width: 440px;
  max-width: 100%;
  height: 470px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  perspective: 800px;
  margin-top: 35px;
}

.card-3d-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: all 600ms ease-out;
}

.card-front,
.card-back {
  width: 100%;
  height: 100%;
  background-color: var(--theme-bg-color);
  backdrop-filter: blur(20px);
  background-position: bottom center;
  background-repeat: no-repeat;
  position: absolute;
  border-radius: 15px;
  left: 0;
  top: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.card-back {
  transform: rotateY(180deg);
}

.center-wrap {
  padding: 0 30px;
  padding-top: 35px;
}

.container-login {
  text-align: center;
}

/* TEXTBOX */
.selectlist-permisos {
  border: 2px solid var(--fondo);
  border-radius: 5px;
  background-color: transparent;
  color: var(--fondo);
  height: 40px;
  width: 120px;
  font-size: 15px;
}

.textbox-verificacion-usuario {
  color: var(--font);
  border: none;
  font-size: 15px;
  background-color: transparent;
  font-family: "Poppins", sans-serif;
  width: 280px;
}

.textbox-dni,
.textbox-buscar-qr {
  font-family: "Poppins", sans-serif;
  display: none;
  background-color: var(--fondo);
  border: none;
  outline: none;
  border-radius: 4px;
  color: var(--font2);
  width: 100%;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}

.textbox-buscar-qr {
  width: 35%;
  margin: 0;
}

.form-style-date {
  padding-left: 20px;
  width: calc(100% - 40px);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
  z-index: 1;
}

input[type="date"]:before {
  color: transparent;
  background: none;
  display: block;
  font-family: "unicons";
  content: "\e9bd";
  width: 20px;
  font-size: 20px;
  height: 20px;
  position: absolute;
  /* top: 35px; */
  right: 30px;
  color: white;
}

input[type="datetime-local"]:before {
  right: 2px;
}

.form-group {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  margin-top: 0.5rem;
  width: 100%;
}

.form-style,
.form-style-selectlist,
.form-style-date,
.form-style-textarea,
.form-style-search,
.form-color,
.form-qr {
  padding: 13px 20px;
  padding-left: 55px;
  width: calc(100% - 75px);
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.5px;
  outline: none;
  color: var(--font);
  background-color: var(--fondo);
  border: none;
  -webkit-transition: all 200ms linear;
  font-family: "Poppins", sans-serif;
  transition: all 200ms linear;
  box-shadow: 0 4px 8px 0 rgba(21, 21, 21, 0.2);
}

.form-qr {
  padding-left: 20px;
  width: calc(100% - 55px);
}

.form-color {
  width: 30%;
  height: 45px;
}

.form-style-textarea {
  padding-left: 20px;
  width: calc(100% - 40px);
  resize: none;
  height: 100px;
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
}

.form-style-search {
  width: 100%;
}

.form-style-selectlist {
  width: 100%;
}

.form-style-date {
  padding-left: 20px;
  width: calc(100% - 40px);
}

.input-icon {
  position: absolute;
  top: 0;
  left: 18px;
  height: 48px;
  font-size: 24px;
  line-height: 48px;
  text-align: left;
  color: var(--font2);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.form-style:focus,
.form-style:active {
  border: none;
  outline: none;
  box-shadow: 0 4px 8px 0 rgba(21, 21, 21, 0.2);
}

.form-group input:-ms-input-placeholder {
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.form-group input::-moz-placeholder {
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.form-group input:-moz-placeholder {
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.form-group input::-webkit-input-placeholder {
  color: #c4c3ca;
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.form-group input:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.form-group input:focus::-moz-placeholder {
  opacity: 0;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.form-group input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #0c0c2d inset;
  -webkit-text-fill-color: white;
}

/* BOTONES */

.btn-volver {
  border-radius: 5px;
  background-color: var(--azul);
  border: none;
  color: var(--font2);
  font-size: 30px;
  padding: 0;
  cursor: pointer;
}

.btn-imprimir-historial,
.btn-filtrar-contratista,
.btn-filtrar-personal-mensual {
  border-radius: 5px;
  border: none;
  background-color: var(--azul);
  font-size: 30px;
  padding: 5px;
  color: var(--font2);
  cursor: pointer;
}

.btn-imprimir-historial:hover,
.btn-filtrar-contratista:hover,
.btn-filtrar-personal-mensual:hover {
  background-color: #4a2ef3;
}

.btn-imprimir-historial,
.btn-filtrar-contratista {
  border-radius: 5px;
  border: none;
  background-color: var(--azul);
  font-size: 30px;
  padding: 5px;
  color: var(--font2);
  cursor: pointer;
}

.btn-imprimir-historial:hover,
.btn-filtrar-contratista:hover {
  background-color: #4a2ef3;
}

.btn-filtrar-contratista {
  font-size: 25px;
  width: 55px;
  height: 48px;
}

.btn-prevision-left {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.btn-prevision-right {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.btn-general-opciones {
  cursor: pointer;
  width: 40%;
  color: var(--azul);
  height: 30px;
  border: 1px solid var(--azul);
  background-color: transparent;
}

.btn-ticket {
  background-color: var(--azul);
}

.btn-ticket:hover {
  background-color: #6651e4;
  transition: 0.3s ease;
}

.btn-tarjeta {
  background-color: var(--secundario);
}

.btn-imprimir-estado {
  background-color: #4a2ef3;
}

.btn-imprimir-estado:hover {
  background-color: #8370f1;
}

.btn-tarjeta:hover {
  background-color: #9658a2;
  transition: 0.3s ease;
}

.btn-cancelar {
  background-color: var(--rojo);
}

.btn-cancelar:hover {
  background-color: #e24c6d;
  transition: 0.3s ease;
}

.btn-imprimir-general {
  font-family: "Poppins", sans-serif;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  color: white;
}

.btn-cargar {
  background-color: var(--verde);
  color: var(--font2);
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.btn-dni {
  width: 40%;
  color: var(--font2);
  background-color: var(--secundario);
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.btn-dni:hover,
.btn-secundario:hover {
  background-color: #9552a2;
  transition: 0.3s ease;
}

.btn-nombre-empresa,
.btn-nombre-trabajador {
  width: 100%;
  background-color: transparent;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--font2);
  cursor: pointer;
}

.btn-nombre-empresa:hover,
.btn-acceder:hover,
.btn-nombre-trabajador:hover,
.btn-acceder-imprimir:hover,
.btn-buscar-qr:hover {
  background-color: #3a0dc4;
  transition: 0.3s ease;
}

.btn-editar {
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  margin-top: 5px;
  height: 40px;
  width: 45px;
  outline: 0;
  font-size: 20px;
  border: 2px solid var(--verde);
  color: var(--verde);
}

.btn-editar:hover {
  background-color: var(--verde);
  color: white;
  transition: 0.3s ease;
}

.btn-editar:active {
  transform: scale(1.05);
}

.btn-eliminar,
.btn-general {
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  margin-top: 5px;
  height: 40px;
  width: 45px;
  outline: 0;
  font-size: 20px;
  border: 2px solid var(--rojo);
  color: var(--rojo);
}

.btn-general {
  border: 2px solid var(--azul);
  color: var(--azul);
}

.btn-eliminar:hover {
  background-color: var(--rojo);
  color: white;
  transition: 0.3s ease;
}

.btn-eliminar:active,
.btn-general:active {
  transform: scale(1.05);
}

.btn-desplegable:hover {
  background-color: var(--azul);
  color: white;
  transition: 0.3s ease;
}

.btn-nav {
  border: none;
  background: transparent;
  color: var(--font2);
  font-size: 35px;
  cursor: pointer;
}

.btn-nav:hover {
  color: var(--font);
  transition: 0.3s ease;
}

.btn-general-menu {
  width: 100%;
  border-radius: 10px;
  background: transparent;
  color: var(--font2);
  font-size: 19px;
  font-family: "Poppins", sans-serif;
  height: 100%;
  padding: 20px;
  /* border: 1px solid white; */
  border: none;
  box-shadow: 0 8px 24px 0 rgb(0 0 0 / 42%);
  cursor: pointer;
  -webkit-animation: top 1s var(--delay) both;
  animation: top 1s var(--delay) both;
}

.btn-link-menu:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}

.btn-acceder,
.btn-enviar-comentario,
.btn-cancelar-comentario,
.btn-cerrar-comentario,
.btn-acceder-imprimir,
.btn-buscar-qr {
  width: 100%;
  height: 40px;
  margin-top: 30px;
  font-family: "Poppins", sans-serif;
  background-color: var(--azul);
  border-radius: 20px;
  border: none;
  cursor: pointer;
  color: white;
  box-shadow: 0 8px 24px 0 rgba(66, 85, 212, 0.3);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.btn-buscar-qr {
  width: 30%;
  margin: 0;
  margin-bottom: 10px;
}

.btn-acceder-imprimir {
  margin: 0;
  margin-top: 10px;
}

.btn-secundario {
  background-color: var(--secundario);
  margin-bottom: 20px;
}

.btn-secundario-imprimir {
  background-color: var(--secundario);
}

/* TEXTO */

h2 {
  font-weight: 600;
  color: var(--font2);
  margin-bottom: 40px;
}

.text-card {
  margin-bottom: 10px;
  margin-top: 0;
}

.titulo-regis {
  margin-bottom: 15px;
}

/* CHECKBOX */

.checkbox-desplegar {
  width: 50px;
  height: 40px;
  opacity: 0;
  position: relative;
  top: -43px;
  left: -6px;
}

.checkbox:checked,
.checkbox:not(:checked) {
  position: absolute;
  left: -9999px;
}

.checkbox:checked + label,
.checkbox:not(:checked) + label {
  position: relative;
  display: block;
  text-align: center;
  width: 60px;
  height: 16px;
  border-radius: 8px;
  padding: 0;
  margin: 10px auto;
  cursor: pointer;
  background-color: var(--font);
}

.checkbox:checked + label:before,
.checkbox:not(:checked) + label:before {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  background-color: var(--bg-color);
  font-family: "unicons";
  content: "\eb4f";
  top: -10px;
  left: -10px;
  line-height: 36px;
  text-align: center;
  font-size: 24px;
  transition: all 0.5s ease;
}

.checkbox:checked + label:before {
  transform: translateX(44px) rotate(-270deg);
}

.checkbox:checked ~ .card-3d-wrap .card-3d-wrapper {
  transform: rotateY(180deg);
}

/* TABLA */

table {
  width: 100%;
  border-collapse: collapse;
}

table tr {
  text-align: left;
  border-bottom: 1px solid #eee;
}

.td-card-datos {
  display: flex;
}

th.right,
td.right {
  text-align: right;
  padding-right: 1em;
}

.td-primer-fila {
  padding: 15px;
}

.td-primer-fila-controles {
  display: flex;
  gap: 5px;
}

.columna-header {
  background-color: #331155;
}

table caption,
table th,
table td {
  padding: 20px 10px;
  vertical-align: inherit;
}

th {
  font-weight: normal;
}

table tr {
  background: var(--fondo);
  border-bottom: none;
}

.tr-historial {
  display: none;
  background-color: var(--subfondo);
}

.data-tabla {
  position: absolute;
}

/* .colborder 
{
    cursor: col-resize;
    height: 100%;
    background-color: var(--secundario);
    margin-left: -6px;
    position: absolute;
    width: 5px;
} */

/* SUBIR IMAGEN */

.file-upload {
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
}

.file-upload-btn,
.file-upload-btn-art {
  font-family: "Poppins", sans-serif;
  width: 100%;
  margin: 0;
  font-size: 15px;
  color: var(--font2);
  background: var(--azul);
  border: none;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
  outline: none;
}

.file-upload-btn:hover {
  background: #6349ff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.file-upload-btn:active,
.file-upload-btn-art:active {
  border: 0;
  transition: all 0.2s ease;
}

.file-upload-btn-art {
  background: var(--secundario);
}

.file-upload-btn-art:hover {
  background-color: #9552a2;
  transition: all 0.2s ease;
  cursor: pointer;
}

.file-upload-content,
.file-upload-content-art {
  display: none;
  text-align: center;
}

.file-upload-input,
.file-upload-input-art {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.img-card-tabla {
  height: 130px;
  border-radius: 5px;
}

.img-tabla {
  height: 80px;
  border-radius: 5px;
  object-fit: cover;
}

.image-upload-wrap,
.imagen-upload-art {
  margin-top: 20px;
  border: 4px dashed var(--azul);
  position: relative;
}

.imagen-upload-art {
  border: 4px dashed var(--secundario);
}

.image-dropping,
.image-upload-wrap:hover,
.imagen-upload-art:hover {
  transition: all 0.2s ease;
  border: 4px dashed var(--font2);
}

.image-title-wrap,
.image-title-art {
  padding: 0 15px 15px 15px;
  color: #222;
}

.drag-text {
  text-align: center;
}

.drag-text h3 {
  font-weight: 100;
  color: var(--font2);
  padding: 60px 0;
}

.file-upload-image,
.file-upload-image-art {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
}

.remove-image {
  font-family: "Poppins", sans-serif;
  width: 200px;
  font-size: 15px;
  margin: 0;
  color: var(--font2);
  background: var(--rojo);
  border: none;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
  outline: none;
}

.remove-image:hover {
  background: #ea3c62;
  transition: all 0.2s ease;
  cursor: pointer;
}

.remove-image:active {
  border: 0;
  transition: all 0.2s ease;
}

/* OTROS */

#opcion-ingresar {
  display: none;
}

.prevision-select {
  background-color: var(--azul);
  color: white;
}

.mensaje {
  color: var(--font2);
  text-align: center;
  padding: 40px;
  padding-top: 0;
}

.barra-progreso {
  width: 100%;
  height: 23px;
  margin-top: 10px;
}

.validar-art {
  position: absolute;
  top: 0;
  left: 18px;
  width: 19px;
  height: 19px;
  border-radius: 12px;
  margin: 13px 0;
  border: 3px solid var(--font2);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.icono-qr {
  font-size: 80px;
  color: var(--font2);
}

.icono-popup {
  font-size: 40px;
}

.header-popup {
  padding: 30px;
  padding-top: 0px;
}

.header-popup h2,
.header-popup-imprimir h2 {
  margin: 0;
}

.header-popup-imprimir {
  padding-top: 0px;
}

.container-popup.active,
.container-popup-imprimir.active {
  opacity: 1;
  transform: scale(1.5);
}

.overlay.active {
  visibility: visible;
}

.overlay {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  visibility: hidden;
}

.icono-barcode {
  font-size: 50px;
}

h3 {
  color: var(--font2);
}

.img-visita {
  width: 220px;
  height: 200px;
  background-color: var(--fondo);
}

.img-nav {
  width: 125px;
}

.ico-btn-menu {
  font-size: 50px;
}

.container-card-alerta.active {
  opacity: 1;
  visibility: visible;
}

.ml-auto,
.mx-auto {
  margin-left: auto;
}

.mr-auto,
.mx-auto {
  margin-right: auto;
}

@keyframes top {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

