/* FUENTES */
@font-face {
  font-family: "DomCasualRegular";
  src: url("../fonts/DomCasualRegular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "JandaEverydayCasual";
  src: url("../fonts/JandaEverydayCasual.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* * * * * */

/* TEMA CLARO OSCURO */
/* Tema Claro (por defecto) */
:root {
  --bg-color: #fcfcfc;
  --text-color: #000000;
  --primary-color: #802fa0;
  --nav-hover: #802fa0;
  --line-color: black;
  --dot-color: black;
  --shadow-color: rgba(0, 0, 0, 0.2);
  --black-button-background: black;
  --black-button-color: white;
}

/* Tema Oscuro */
[data-theme="dark"] {
  --bg-color: #121212;
  --text-color: #ffffff;
  --primary-color: #f5d033;
  --nav-hover: #f5d033;
  --line-color: white;
  --dot-color: white;
  --shadow-color: hsla(0, 0%, 100%, 0.2);
  --black-button-background: white;
  --black-button-color: black;
}
/* * * * * * */

html {
  scroll-behavior: smooth;
  height: 100%;
  font-size: clamp(11px, 1vw, 16px);
  overflow-x: hidden;
}

body {
  margin: 0px;
  width: 100%;
  min-height: 100vh;
  background-color: #fcfcfc;
  font-family: Candara !important;
  background-color: var(--bg-color);
  color: var(--text-color);
  background-image: url("../images/background1.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  position: absolute;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

::placeholder {
  color: rgb(160, 160, 160);
}

/* unvisited link */
a:link {
  color: rgb(20, 157, 204);
  text-decoration: none;
}

/* visited link */
a:visited {
  color: rgb(20, 157, 204);
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: rgb(6, 55, 71);
  text-decoration: underline;
}

/* selected link */
a:active {
  color: blue;
  text-decoration: none;
}

/* TEXTO COMO ENLACE */
.link {
  color: rgb(20, 157, 204);
  text-decoration: none;
  cursor: pointer;
}

.link:hover {
  color: rgb(6, 55, 71);
  text-decoration: underline;
}

select {
  color: rgb(80, 80, 80);
  background-color: white;
  padding-left: 0.5em;
  border-radius: 0.3em;
  border-style: solid;
  border-color: rgb(240, 240, 240);
}

select:focus {
  border-color: #7ab846;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(87, 168, 233, 0.2);
  box-shadow: 0 0 0 2px rgba(87, 168, 233, 0.2);
  background-color: white;
}
/* * * * * * * * * * */

/* NAV */
.navbar {
  position: fixed;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  top: 0;
  width: 100%;
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  height: 6rem;
  z-index: 10;
  box-sizing: border-box;
  background-color: transparent;
  backdrop-filter: blur(20px);
}

.navbar img {
  height: 2rem;
  cursor: pointer;
}

.navbar-logo {
  height: 4rem !important;
}

.nav-element {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.nav-element-column {
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.nav-element-column-end {
  align-items: flex-end;
}

.navbar-footer {
  top: 6rem;
  height: 4rem;
  z-index: 8;
  backdrop-filter: none;
}

@media (max-width: 768px) {
  .navbar {
    height: 7rem;
  }

  .navbar-footer {
    top: 7rem;
    height: 8rem;
  }
}
/* * * * * * * */

/* BOTON CERRAR PANEL */
.icon-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  height: 1.3rem;
  cursor: pointer;
  z-index: 100;
}
/* * * * * * * * */

/* CHECKBOX */
/* The container */
.container {
  display: flex;
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark-cross {
  position: absolute;
  top: 0;
  left: 0;
  height: 1rem;
  width: 1rem;
}
.checkmark-tick {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  height: 1rem;
  width: 1rem;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark-tick {
  display: block;
}
.container input:checked ~ .checkmark-cross {
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark-tick:after {
  display: block;
}
.container input:checked ~ .checkmark-cross:after {
  display: none;
}
/* * * * * * * * * * * * * /



/* TRADUCTOR WEB */
.div-translate {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 14;
}

.select-lang {
  border-style: solid;
  border-radius: 0.3rem;
  border-color: rgb(205, 205, 205);
  color: rgb(80, 80, 80);
  background-color: white;
}
/* * * * * * * * * * * * */

/* MENU SUPERIOR */
.div-menu-up {
  position: absolute;
  left: 0;
  top: 0;
  height: 5.5rem;
  width: 100vw;
  border-color: rgb(167, 167, 167);
  border-width: 0.1rem;
  z-index: 9;
}

.img-logo {
  position: absolute;
  height: 75%;
  left: 1rem;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.ul-menu-user {
  position: absolute;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  right: 1rem;
  bottom: 0;
  cursor: pointer;
}

.ul-menu-user li {
  padding-right: 0.5rem;
}

.ul-menu-user p {
  text-align: right;
  color: rgb(80, 80, 80);
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ul-menu-user img {
  height: 2rem;
}

.icon-pro-menu-user {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 200%;
  right: 3em;
}

.icon-pin-menu-user {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 200%;
  right: 1.2em;
}

.div-img-arrow {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 200%;
  right: 0;
}

.div-img-arrow img {
  height: 100%;
}
/* * * * * * * * * * * * * /



/* PANEL OSCURO */
.div-dark-background {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.308);
  z-index: 15;
  transition: opacity 0.3s ease;
}

.div-dark-background.show {
  opacity: 1;
}

.div-dark-background-over {
  z-index: 25;
}
/* * * * * * * * * */

/* TABLA - ESTILOS COMUNES */

/* TABLA CABECERA */
.div-table {
  position: relative;
  left: 1%;
  top: 12%;
  height: 86%;
  width: 98%;
}

.div-table-head {
  position: relative;
  left: 0;
  top: 0;
  height: 8%;
  width: 100%;
}

.div-inner-panels {
  position: absolute;
  right: 12%;
  top: 0;
  height: 55%;
  width: 50%;
}

.p-table-head-1 {
  position: absolute;
  top: 0;
  color: rgb(80, 80, 80);
}

.p-table-head-2 {
  position: absolute;
  top: 25%;
  color: rgb(80, 80, 80);
}

.div-table-search {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 25%;
}

.div-hide-transfer {
  position: absolute;
  color: rgb(80, 80, 80);
  top: 48%;
  left: 0;
  width: 15%;
  height: auto;
}

.div-show-cli-dis {
  position: absolute;
  color: rgb(80, 80, 80);
  top: 48%;
  left: 20%;
  width: 15%;
  height: auto;
}

.input-table-search {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 100%;
  border-radius: 0.5em;
  border-style: solid;
  border-color: rgb(205, 205, 205);
  color: rgb(80, 80, 80);
  padding-left: 0.5em;
}

.button-table-search {
  position: absolute;
  bottom: 10%;
  right: 30%;
  width: auto;
  height: 90%;
  cursor: pointer;
}

.input-table-search-refer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 27.5%;
  height: 100%;
  border-radius: 0.5em;
  border-style: solid;
  border-color: rgb(205, 205, 205);
  color: rgb(80, 80, 80);
  padding-left: 0.5em;
}

.button-table-search-refer {
  position: absolute;
  bottom: 10%;
  right: 0.5%;
  width: auto;
  height: 90%;
  cursor: pointer;
}

.ul-table-head-action {
  position: absolute;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  top: 2%;
  right: 0;
}

.ul-table-head-action img {
  height: 3.5vh;
  cursor: pointer;
  padding-right: 0.5em;
}

.icon-table-head-action {
  position: absolute;
  top: 5%;
  height: 20%;
  cursor: pointer;
}

.icon-table-head-action img {
  height: 100%;
}

.icon-table-head-action-copy-emails {
  right: 66%;
  top: 0%;
}

.icon-table-head-action-export-excel {
  right: 63%;
  top: 0%;
}

.icon-export-excel {
  position: absolute;
  min-height: 1.2em;
  height: 1.5vw;
  right: 6.5%;
  top: 5%;
  cursor: pointer;
}

.icon-copy-emails {
  position: absolute;
  min-height: 1.2em;
  height: 1.4vw;
  right: 3%;
  top: 5%;
  cursor: pointer;
}

.div-arrows {
  position: absolute;
  height: auto;
  width: 25%;
  right: 0;
  top: 40%;
}

.p-table-head-3 {
  position: absolute;
  height: auto;
  width: 100%;
  top: 0;
  left: 0;
}

.p-table-head-3 p {
  text-align: center;
  color: rgb(80, 80, 80);
  text-align: right;
}

.img-next {
  position: absolute;
  min-height: 1.5em;
  height: 1.4vw;
  right: 0%;
  top: 0%;
  cursor: pointer;
}

.img-prev {
  position: absolute;
  min-height: 1.5em;
  height: 1.4vw;
  left: 0%;
  top: 0%;
  cursor: pointer;
}

@media only screen and (max-width: 900px) {
  .div-table {
    left: 0;
    top: 12%;
    width: 100%;
    height: 140%;
  }

  .div-table-head {
    height: 45%;
  }

  .p-table-head-1 {
    top: 3%;

    left: 0;
  }

  .p-table-head-2 {
    top: 10%;
    left: 0;
  }

  .div-table-search {
    bottom: 4%;
    height: 17%;
  }

  .input-table-search,
  .input-table-search-refer {
    left: 3%;
    width: 90%;
    height: 40%;
  }

  .input-table-search {
    bottom: auto;
    top: 0;
  }

  .button-table-search,
  .button-table-search-refer {
    right: 5%;
    height: 35%;
    bottom: 5%;
  }

  .button-table-search {
    top: 5%;
  }

  .div-hide-transfer {
    top: 73%;
    left: 3%;
    width: 100%;
  }

  .div-inner-panels {
    right: 0;
    height: 40%;
    width: 100%;
    top: 28%;
  }

  .icon-table-head-action {
    top: 9%;
    height: 6%;
    right: 2%;
  }

  .icon-table-head-action-export-excel-r {
    right: 17%;
  }

  .div-arrows {
    width: 100%;
    right: 3%;
    top: 97%;
  }

  .icon-table-head-action-export-excel {
    display: none;
  }
}
/* * * * * * * * * * * * * /

/* TABLA - PAGINACION */
.div-table-pages {
  position: relative;
  right: 0;
  top: 1%;
  width: 100%;
  height: 4%;
  color: rgb(80, 80, 80);
}

.table-page-arrow {
  position: absolute;
  height: 100%;
  width: 2%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-page-arrow img {
  height: 100%;
}

.table-page-arrow-left {
  left: 0;
}

.table-page-arrow-right {
  left: 7%;
}

.table-page-counter {
  position: absolute;
  left: 2%;
  width: 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-page-row-counter {
  left: 10%;
  width: 14%;
}

@media only screen and (max-width: 900px) {
  .div-table-pages {
    left: 3%;
    width: 93%;
  }

  .table-page-arrow {
    width: 8%;
  }

  .table-page-arrow-right {
    left: 92%;
  }

  .table-page-counter {
    left: 8%;
    width: 22%;
  }

  .table-page-row-counter {
    left: 30%;
    width: 62%;
  }
}
/* * * * * * * * */

/* TABLA */
.div-table-body {
  position: relative;
  width: 100%;
  height: 75%;
  left: 0;
  top: 1%;
  z-index: 1;
  overflow-y: auto;
  overflow-x: auto;
}

.table {
  position: relative;
  border-collapse: separate;
  width: 100%;
  left: 0;
  top: 2%;

  background-color: #fcfcfc;
}

.table th {
  position: sticky;
  top: 0;
  z-index: 3;
}

.th-variable {
  text-align: left;
  background-color: #7ab846;
  color: white;
  cursor: pointer;
}

.th-date {
  width: 10%;
}

.th-fixed {
  width: 3%;
  text-align: center;
  background-color: #7ab846;
  color: white;
}

.th-fixed-medium {
  width: 10%;
  text-align: center;
  background-color: #7ab846;
  color: white;
}

.th-fixed-large {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  width: 15%;
  text-align: center;
  background-color: #7ab846;
  color: white;
}

.check-user {
  padding-left: 0;
  left: 20%;
  bottom: 1vh;
}

.div-table-box {
  position: relative;
  background-color: white;
  height: 1.5em;
  width: 100%;
  margin-top: 0;
  border-radius: 0.1em;
  box-shadow: 0px 1.5px 2px rgb(138, 138, 138);
  cursor: pointer;
}

.div-table-box p {
  position: absolute;
  margin-top: 0;
  text-align: center;
  width: 100%;
  height: 100%;

  color: white;
  text-shadow: 0px 2px 2px rgb(138, 138, 138);
  z-index: 1;
}

.div-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.div-table-box-left {
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  top: 0;
  border-bottom-left-radius: 0.1em;
  border-top-left-radius: 0.1em;
  cursor: pointer;
  z-index: 3;
}

.div-table-box-left:hover {
  background-color: #ff8a00;
}

.div-table-box-right {
  position: absolute;
  height: 100%;
  width: 50%;
  right: 0;
  top: 0;
  border-bottom-right-radius: 0.1em;
  border-top-right-radius: 0.1em;
  cursor: pointer;
  z-index: 3;
}

.div-table-box-right:hover {
  background-color: #78d2cc;
}

@media only screen and (max-width: 900px) {
  .div-table-body {
    overflow-x: scroll;
    height: 50%;
  }

  .table {
    width: 350%;
  }
}
/* * * * * * * * * * * * * /

/* CUADRO FILTRO */
.div-filter {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 32.5%;
  background-color: white;
  border-style: solid;
  border-color: rgb(205, 205, 205);
  border-width: 0.1em;
  border-radius: 0.3em;
  box-shadow: 3px 3px 2px rgb(138, 138, 138);
}

.div-filter-date {
  width: 45%;
  right: 18vw;
}

.div-filter-country {
  width: 35%;
  right: 40vw;
}

.p-filter-1 {
  position: absolute;

  top: 3%;
  left: 3%;
  color: rgb(80, 80, 80);
}

.select-filter {
  position: absolute;
  bottom: 10%;
  width: 95%;
  left: 3%;
  border-style: solid;
  border-radius: 0.3em;
  border-color: rgb(205, 205, 205);
  color: rgb(80, 80, 80);
  background-color: white;
}

@media only screen and (max-width: 900px) {
  .div-filter {
    left: 3%;
    height: 32%;
    width: 93%;
    top: auto;
    bottom: 0;
  }
}
/* * * * * * * * * * * * * /

/* CUADRO INFORMACION GENERAL */
.div-info {
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  width: 65%;
  background-color: white;
  border-style: solid;
  border-color: rgb(205, 205, 205);
  border-width: 0.1em;
  border-radius: 0.3em;
  box-shadow: 3px 3px 2px rgb(138, 138, 138);
}

.p-info-1 {
  position: absolute;
  top: 3%;
  left: 1%;
  color: rgb(80, 80, 80);
}

.div-total-active {
  position: absolute;
  width: 48%;
  right: 2%;
  top: 0;
  height: 100%;
}

.p-info-3,
.p-info-4,
.p-info-5,
.p-info-6,
.p-info-7 {
  position: absolute;
  top: 10%;
  left: 0;
  color: rgb(80, 80, 80);
}

.p-info-4,
.p-info-5 {
  top: 40%;
}

.p-info-5 {
  left: auto;
  right: 0;
}

.div-month-customers {
  position: absolute;
  width: 48%;
  left: 1%;
  top: 32%;
  height: 65%;
}

.p-info-7 {
  top: 50%;
}

.p-info-8 {
  position: absolute;
  bottom: 0.2vmin;
  left: 13vmin;
  color: rgb(80, 80, 80);
}

.img-icon-grow {
  position: absolute;
  bottom: 2.2vmin;
  left: 10vmin;
  height: 1.5vmin;
}

.div-progress-bar-background {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 100%;
  height: 15%;
  background-color: #d9d9d9;
  border-radius: 0.3em;
}

.div-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #7ab846;
  z-index: 2;
  border-radius: 0.3em;
}

@media only screen and (max-width: 900px) {
  .div-info {
    left: 3%;
    height: 60%;
    width: 93%;
  }
}
/* * * * * * * * * * * * * /

/* BOTON PERSONALIZADO ROJO */
.button-red {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: white;
  background-color: rgb(180, 0, 0);
  border: none;
  border-radius: 2rem;
  box-shadow: 0px 2px 2px rgb(138, 138, 138);
}

.button-red:hover {
  background-color: rgb(150, 0, 0);
}

.button-red:active {
  background-color: rgb(180, 0, 0);
  transform: translateY(4px);
}
/* * * * * * * * * * * * * /

/* BOTON PERSONALIZADO ROJO 1 */
.button-red-1 {
  border: solid;
  border-width: 0.1rem;
  border-color: rgb(180, 0, 0);
  color: rgb(180, 0, 0);
  background-color: white;
  border-radius: 0.4em;
}

.button-red-1:hover {
  background-color: rgb(180, 0, 0);
  color: white;
}

.button-red-1:active {
  background-color: rgb(180, 0, 0);
  color: white;
  transform: translateY(4px);
}
/* * * * * * * * * * * * * /

/* BOTON PERSONALIZADO GRIS */
.button-gray {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #7c7c7c;
  background-color: #eeeeee;
  border: none;
  border-radius: 2rem;
  box-shadow: 0px 2px 2px rgb(138, 138, 138);
}

.button-gray:hover {
  background-color: #cacaca;
}

.button-gray:active {
  background-color: #eeeeee;
  transform: translateY(4px);
}
/* * * * * * * * * * * * * /

/* BOTON PERSONALIZADO VERDE */
.button-green {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: white;
  background-color: #7ab846;
  border: none;
  border-radius: 2rem;
  box-shadow: 0px 2px 2px rgb(138, 138, 138);
}

.button-green:hover {
  background-color: #7ab846;
}

.button-green:active {
  background-color: #7ab846;
  transform: translateY(4px);
}
/* * * * * * * * * * * * * /

/* BOTON PERSONALIZADO VERDE 1 */
.button-green-1 {
  border: solid;
  border-width: 0.1rem;
  border-color: #7ab846;
  color: #7ab846;
  background-color: white;
}

.button-green-1:hover {
  background-color: #7ab846;
  color: white;
}

.button-green-1:active {
  background-color: #7ab846;
  color: white;
  transform: translateY(4px);
}
/* * * * * * * * * * * * * /

/* BOTON PERSONALIZADO VERDE 2 */
.button-green-2 {
  border: solid;
  border-width: 0.1rem;
  border-color: #7ab846;
  color: #7ab846;
  background-color: white;
  border-radius: 0.4em;
}

.button-green-2:hover {
  background-color: #7ab846;
  color: white;
}

.button-green-2:active {
  background-color: #7ab846;
  color: white;
  transform: translateY(4px);
}
/* * * * * * * * * * * * * /

/* BOTON PERSONALIZADO NARANJA */
.button-orange {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: white;
  background-color: #f18715;
  border: none;
  border-radius: 2rem;
  box-shadow: 0px 2px 2px rgb(138, 138, 138);
}

.button-orange:hover {
  background-color: white;
  color: #f18715;
  border: solid;
  border-width: 0.1rem;
  border-color: #f18715;
}

.button-orange:active {
  background-color: white;
  color: #f18715;
  transform: translateY(4px);
}
/* * * * * * * * * * * * * /

/* BOTON PERSONALIZADO NARANJA 1 */
.button-orange-1 {
  border: solid;
  border-width: 0.1rem;
  border-color: #f18715;
  color: #f18715;
  background-color: white;
  border-radius: 0.4em;
}

.button-orange-1:hover {
  background-color: #f18715;
  color: white;
}

.button-orange-1:active {
  background-color: #f18715;
  color: white;
  transform: translateY(4px);
}
/* * * * * * * * * * * * * /

/* BOTON PERSONALIZADO AMARILLO */
.button-yellow {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: rgb(80, 80, 80);
  background-color: #ffff66;
  border: none;
  border-radius: 2rem;
  box-shadow: 0px 2px 2px rgb(138, 138, 138);
}

.button-yellow:hover {
  background-color: #ffff66;
}

.button-yellow:active {
  background-color: #ffff66;
  transform: translateY(4px);
}
/* * * * * * * * * * * * * /

/* BOTON PERSONALIZADO MORADO */
.button-purple {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: rgb(80, 80, 80);
  background-color: #653d8d;
  border: none;
  border-radius: 2rem;
  box-shadow: 0px 2px 2px rgb(138, 138, 138);
}

.button-purple:hover {
  background-color: #653d8d;
}

.button-purple:active {
  background-color: #653d8d;
  transform: translateY(4px);
}
/* * * * * * * * * * * * * /

/* BOTON PERSONALIZADO MORADO 1 */
.button-purple-1 {
  border: solid;
  border-width: 0.1rem;
  border-color: #653d8d;
  color: #653d8d;
  background-color: white;
  border-radius: 0.4em;
}

.button-purple-1:hover {
  background-color: #653d8d;
  color: white;
}

.button-purple-1:active {
  background-color: #653d8d;
  color: white;
  transform: translateY(4px);
}
/* * * * * * * * * * * * * /

/* TOOLTIP */
.tooltip .tooltiptext {
  visibility: hidden;
  position: absolute;
  width: 140px;
  background-color: #7ab846;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #7ab846 transparent transparent;
}

.tooltip-right {
  top: 25%;
  left: 130%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* TOP */
.tooltip-top .tooltiptext-top {
  visibility: hidden;
  width: 120px;
  background-color: #7ab846;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  position: absolute;
  z-index: 100;
  bottom: 95%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-top .tooltiptext-top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #7ab846 transparent transparent transparent;
}

.tooltip-top:hover .tooltiptext-top {
  visibility: visible;
  opacity: 1;
}

/* LEFT */
.tooltip-left .tooltiptext-left {
  visibility: hidden;
  width: 140px;
  background-color: #7ab846;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  right: 128%;
  top: 2vmin;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-left .tooltiptext-left::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #7ab846;
}

.tooltip-left:hover .tooltiptext-left {
  visibility: visible;
  opacity: 1;
}
/* * * * * * * * * * * * * /

/* BOTTOM */
.tooltip-down .tooltiptext-down {
  visibility: hidden;
  width: 160px;
  background-color: #7ab846;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 10em;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-down-small .tooltiptext-down-small {
  background-color: #7ab846;
  right: -30%;
  top: 130%;
}

.tooltip-down .tooltiptext-down::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 15%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #7ab846 transparent;
}

.tooltip-down-small .tooltiptext-down-small::after {
  border-color: transparent transparent #7ab846 transparent;
}

.tooltip-down:hover .tooltiptext-down {
  visibility: visible;
  opacity: 1;
}
/* * * * * * * * * * * * * /

/* BOTTOM TABLE HEAD */
.tooltip-table-head-action .tooltiptext-table-head-action {
  visibility: hidden;
  width: 160px;
  background-color: #7ab846;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 10em;
  opacity: 0;
  transition: opacity 0.3s;
  top: 130%;
}

.tooltip-table-head-action .tooltiptext-table-head-action::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 15%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent transparent;
}

.tooltip-table-head-action:hover .tooltiptext-table-head-action {
  visibility: visible;
  opacity: 1;
}
/* * * * * * * * * * * * * /

/* BOTTOM TEXT */
.tooltip-down-text .tooltiptext-down-text {
  visibility: hidden;
  width: 20vw;
  background-color: #ff8a00;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 5px 0;
  padding-left: 0.5em;
  padding-right: 0.5em;
  position: absolute;
  z-index: 1;
  right: -1vw;
  top: 6vh;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-down-text .tooltiptext-down-text::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 15%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #7ab846 transparent;
}

.tooltip-down-text:hover .tooltiptext-down-text {
  visibility: visible;
  opacity: 1;
}
/* * * * * * * * * * * * * /

/* ANIMACION DE CARGA */
.loader {
  position: fixed;
  display: none;
  z-index: 50;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #7ab846;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

.loader-mini {
  display: none;
  border: 10px solid white;
  border-radius: 50%;
  border-top: 10px solid #7ab846;
  width: 1rem;
  height: 1rem;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 900px) {
  .loader {
    left: 25%;
    top: 30%;
  }
}
/* * * * * * * * * * * * */

/* ICONO ESQUINA SUPERIOR DERECHA */
.icon-top-right {
  position: absolute;
  height: 2.5vmin;
  right: 1vmin;
  top: 1vmin;
  cursor: pointer;
}
/* * * * * * * *  * */

/* ICONO ESQUINA INFERIOR DERECHA ELEVADO */
.icon-bottom-up-right {
  position: absolute;
  height: 2.5vmin;
  right: 1vmin;
  bottom: 7vmin;
  cursor: pointer;
}
/* * * * * * * *  * */

/* ICONO ESQUINA INFERIOR DERECHA */
.icon-bottom-right {
  position: absolute;
  height: 3vmin;
  right: 1%;
  bottom: 1%;
  cursor: pointer;
  z-index: 8;
}

@media only screen and (max-width: 900px) {
  .icon-bottom-right {
    height: 7vmin;
  }
}
/* * * * * * * * * */

/* PANEL INFO */
.div-info-graph {
  position: fixed;
  display: none;
  width: 90%;
  height: 85%;
  left: 5%;
  top: 10%;
  color: rgb(80, 80, 80);
  background-color: white;
  border-style: solid;
  border-color: rgb(205, 205, 205);
  border-width: 0.1em;
  box-shadow: 3px 3px 2px rgb(138, 138, 138);
  z-index: 25;
}

.div-info-graph-small {
  position: fixed;
  display: none;
  width: 50%;
  height: 45%;
  left: 25%;
  top: 15%;
  color: rgb(80, 80, 80);
  background-color: white;
  border-style: solid;
  border-color: rgb(205, 205, 205);
  border-width: 0.1em;
  box-shadow: 3px 3px 2px rgb(138, 138, 138);
  z-index: 25;
}

@media only screen and (max-width: 900px) {
  .div-info-graph {
    width: 93%;
    height: 90%;
    left: 3%;
    top: 6%;
  }

  .div-info-graph-small {
    width: 93%;
    height: 45%;
    left: 3%;
    top: 10%;
  }
}
/* * * * * * * * * * * * * /

/* PANEL VIDEO TUTORIAL */
.div-video-tutorial {
  position: fixed;
  display: none;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
  color: rgb(80, 80, 80);
  background-color: black;
  border-style: solid;
  border-color: rgb(205, 205, 205);
  border-width: 0.1em;
  box-shadow: 3px 3px 2px rgb(138, 138, 138);
  z-index: 18;
}

.video-tutorial {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 900px) {
  .div-video-tutorial {
    width: 94%;
    left: 2%;
  }
}
/* * * * * * * * * * * * */

/* PANEL VIDEO YOUTUBE */
.div-youtube-player {
  position: absolute;
  height: 90%;
  width: 100%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  top: 50%;
  object-fit: cover;
}
/* * * * * * * * * * */

/* ICONOS EN TABLA */
.div-table-informs-icon {
  position: relative;
  height: 2vh;
  width: auto;
  cursor: pointer;
  text-align: center;
}

.div-table-informs-icon p {
  position: absolute;
  left: -0.8em;
}

.div-table-informs-icon img {
  height: 100%;
}
/* * * * * * * * * */

/* BOTON ESQUINA IZQUIERDA ABAJO */
.div-button-left-down {
  position: absolute;
  left: 3%;
  bottom: 3%;
  height: 5%;
}
/* * * * * * * * * * * */

/* BOTON TERCERO DERECHA */
.div-extra-button-rigth-2 {
  position: absolute;
  right: 52vmin;
  bottom: 1.5vmin;
}

.div-extra-button-rigth-2-transfer {
  position: absolute;
  right: 55vmin;
  bottom: 0;
}
/* * * * * * * * * * * */

/* CALENDARIO */
.input-date {
  background-color: rgb(0, 0, 0, 0);
  border-style: none;
  color: rgb(88, 88, 88);
  cursor: pointer;

  margin-right: 1em;
}

.input-date::-webkit-calendar-picker-indicator {
  opacity: 0;
}
/* * * * * * * */

/* FILTRO IMAGEN */
.filter-sepia {
  filter: sepia(40%);
}
/* * * * * * * * */

/* BOTON EXTRA DERECHA */
.div-extra-button-rigth {
  position: absolute;
  right: 22%;
  bottom: 2%;
  height: 5%;
}
/* * * * * * * */

/* CENTRAR ELEMENTO VERTICALMENTE */
.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* * * * * * * * * * */

/* BLANCO Y NEGRO */
.gray-scale {
  filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  opacity: 0.4;
}
/* * * * * * * * * */

/* SELECTOR DE UNIDADES */
.div-units {
  position: relative;
  top: 1%;
  left: 0;
}

.select-units {
  width: 60%;

  color: rgb(80, 80, 80);
  background-color: white;
  padding-left: 0.2em;
  border-radius: 0.3em;
  border-style: solid;
  border-color: rgb(205, 205, 205);
}

@media only screen and (max-width: 900px) {
  .select-units {
  }
}
/* * * * * * * * * * * */

/* BOTON CUADRO REDUCIDO */
.button-save-small-panel {
  height: 10%;
}
/* * * * * * * * * */

/* TEXTO TACHADO */
.crossed-text {
  text-decoration: line-through !important;
}
/* * * * * * * * */

/* TEXTO TIPO ENLACE */
.link-text {
  color: rgb(20, 157, 204);
  text-decoration: none;
  cursor: pointer;
}

.link-text:hover {
  color: rgb(6, 55, 71);
  text-decoration: underline;
}
/* * * * * * * * * */

/* ROTAR IMAGEN 180 */
.rotate-180 {
  -ms-transform: rotate(180deg) !important;
  transform: rotate(180deg) !important;
}

.rotate-translate-y-180 {
  -ms-transform: translateY(-50%) rotate(180deg) !important;
  transform: translateY(-50%) rotate(180deg) !important;
}
/* * * * * * * * * */

/* COLOR TEXTO */
.text-green {
  color: #7ab846 !important;
}

.text-red {
  color: rgb(180, 0, 0) !important;
}
/* * * * * * * * */

/* FORMATO TEXTO */
.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}
/* * * * * * * * * */

/* CURSOR */
.pointer {
  cursor: pointer;
}
/* * * * * */

/* PANEL EN CONSTRUCCION */
.div-construction {
  position: fixed;
  display: none;
  width: 50%;
  height: 40%;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgb(80, 80, 80);
  background-color: white;
  border-style: solid;
  border-color: rgb(205, 205, 205);
  border-width: 0.1em;
  box-shadow: 3px 3px 2px rgb(138, 138, 138);
  z-index: 18;

  border-radius: 1em;
}

.div-construction h2 {
  position: absolute;
  left: 3%;
  top: 6%;
  width: 50%;
  color: white;
}

.div-construction img {
  height: 100%;
  width: 100%;
  border-radius: 1em;
}

@media only screen and (max-width: 900px) {
  .div-construction {
    width: 96%;
  }
}
/* * * * * * * * * */

/* CARRUSEL DE IMAGENES */
.slideshow-container {
  position: absolute;
  width: 90%;
  height: 90%;
  z-index: 50;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
  justify-content: center;
}

.slideshow-controls {
  position: absolute;
  width: auto;
  height: 2vh;
  top: 1em;
  z-index: 5;
}

.slideshow-controls-left {
  position: relative;
  height: 100%;
  left: 0;
  cursor: pointer;
  margin-right: 1em;
}

.slideshow-controls-play {
  position: relative;
  height: 100%;
  cursor: pointer;
  margin-right: 1em;
}

.slideshow-controls-right {
  position: relative;
  height: 100%;
  right: 0;
  cursor: pointer;
}

.mySlides {
  display: none;
  width: 100%;
  height: 100%;
  background-color: black;
  border-radius: 1em;
}

.mySlides-img {
  position: absolute;
  height: 87%;
  width: 100%;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.div-youtube-player-slide {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 900px) {
  .slideshow-container {
    width: 94%;
    height: 45%;
  }
}
/* * * * * * * * * * * * */

/* IMAGEN EN GRANDE */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 5%; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
  z-index: 50;
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  height: 80%;
}

/* Add Animation - Zoom in the Modal */
.modal-content {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 65rem) {
  .modal {
    padding-top: 20%;
  }

  .modal-content {
    max-width: 80%;
  }

  .gallery-frame {
  }
}
/* * * * * * * * */

/* PANEL VIDEO */
.div-video-panel {
  position: absolute;
  display: none;
  height: 80%;
  width: 90%;
  z-index: 50;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: black;
  border-radius: 1rem;
}

.div-video-panel video {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

@media only screen and (max-width: 900px) {
  .div-video-panel {
    width: 100%;
    height: 50%;
    top: 50%;
  }
}
/* * * * * * * * */

/* SELECT CON BUSCADOR */
.select-search-container {
  position: relative;
  /*display: inline-block;*/
  display: none;
  width: 100%;
}

.select-search-text {
  position: relative;
  margin-left: 0.3rem;
  margin-bottom: 0.3rem;
}

.select-search-input {
  width: 95%;
  color: rgb(80, 80, 80);
  background-color: white;
  padding-left: 0.5em;
  border-radius: 0.3em;
  border-style: solid;
  border-color: rgb(240, 240, 240);
}

.select-search-input:focus {
  border-color: #7ab846;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(87, 168, 233, 0.2);
  box-shadow: 0 0 0 2px rgba(87, 168, 233, 0.2);
  background-color: white;
}

.select-container {
  position: relative;
  margin-top: 0.3rem;
}

.select-search-list {
  display: none;
}
/* * * * * * * * * * * */

/* CUSTOM ALERT */
/* Estilos básicos para el modal */
#customAlert {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border: 2px solid rgb(167, 167, 167);
  border-radius: 15px; /* Bordes redondeados */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-align: center; /* Centrar el contenido */
}

/* Estilos del párrafo dentro del modal */
#customAlert p {
  margin: 0 0 10px;
  color: #333;
}

/* Botón del modal */
#customAlert button {
  padding: 10px 20px;
  background-color: #7ab846;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px; /* Bordes redondeados en el botón */
  margin-top: 10px;
}

/* Hover del botón */
#customAlert button:hover {
  background-color: #65a034;
}

/* Fondo para oscurecer el resto de la página */
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
/* * * * * * * * */

/* BARRA DE PROGRESO */
.progress-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  text-align: center;
  z-index: 60;
  background-color: white;
  border-style: solid;
  border-color: rgb(205, 205, 205);
  border-width: 0.1rem;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
}

#progress-container-users {
  top: 18.3rem;
  height: 1.5rem;
  width: 12rem;
  left: 47.5rem;
}

.progress-percentage {
  position: absolute;
  color: white;
}

.progress-bar {
  background-color: #65a034;
  width: 100%;
  height: 2rem;
  border-radius: 0.5rem;
}

#progress-bar-users {
  height: 1.5rem;
}

@media only screen and (max-width: 900px) {
  #progress-container-users {
    top: 20.8rem;
    width: 9rem;
    left: 25.5rem;
  }
}
/* * * * * * * * * * */
