*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: Verdana, sans-serif;
  scrollbar-width: thin;
  scrollbar-color: #888 var(--background-color);
}
html{
  scroll-behavior: smooth;
  background: var(--background-color-three);
}
.block-scroll{
  height: 100vh;
  max-height: 100%;
  min-width: initial;
  overflow: hidden;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  opacity: 0.7;
}
::-webkit-scrollbar-track {
  background: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 20px; 
  }
:root{
  --primary-color: #2ac294;
  --secondary-color: #007751;
  --third-color: rgb(26, 152, 255);
  --third-hover-color: rgb(91, 181, 255);
  --background-color: #1e212a;
  --background-color-two: #111218;
  --background-color-three: #162e44;
  --background-color-transparent: rgba(17, 18, 24, 0.8); 
  --hsl-hover: hsla(0, 0%, 100%, 0.15);
  --hsl-hover-light: hsla(0, 0%, 100%, 0.08);
  --message-read-color: rgb(156, 156, 255);
  --min-width: 320px;
  --max-width: 2100px;
  --font-size-time: 0.75em;
  --font-size-smallest: 0.8em;
  --font-size-small: 0.9em;
  --font-size-normal: 1em;
  --font-size-big: 1.2em;
  --font-size-giant: 1.5em;
  --text-color-white: rgba(255, 255, 255, 0.95);
  --text-color-common: rgba(220, 220, 220, 0.9);
  --no-padding: 0;
  --smallest-padding: 10px;
  --small-padding: 25px;
  --normal-padding: 40px;
  --large-padding: 80px;
  --giant-padding: 120px;
  --showBefore: none;
  --aprove-alert: rgb(19, 158, 19);
  --error-alert: rgb(220, 53, 69);
  --tr-table-color: hsla(0, 0%, 0%, 0.3);
  --light-layout: linear-gradient(135deg, rgba(255,255,255, 0.08) 0%, transparent 60%);
  --check-background: transparent;
  --nav-fullscreen-text: rgb(235, 235, 235);
}
.light-theme{
  --primary-color: #0e4635;
  --secondary-color: #007751;
  --third-color: rgb(26, 152, 255);
  --third-hover-color: rgb(91, 181, 255);
  --background-color: rgb(220, 240, 255);
  --background-color-two: rgb(255, 255, 255);
  --background-color-three: rgb(230, 245, 255);
  --background-color-transparent: rgba(29, 31, 43, 0.7); 
  --hsl-hover: hsla(0, 0%, 0%, 0.08);
  --hsl-hover-light: hsla(0, 0%, 0%, 0.04);
  --text-color-common: rgba(60, 60, 60, 0.9);
  --tr-table-color: hsla(0, 0%, 0%, 0.07);
  --light-layout: linear-gradient(135deg, rgba(255,255,255, 0.4) 0%, transparent 60%);
  --check-background: white;
  --nav-fullscreen-text: #111218;
}

body{
  min-width: var(--min-width);
  overflow: hidden;
  color: var(--text-color-common);
}
.button{
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.button *{
  pointer-events: none;
}
.light-layout{
  position: fixed;
  content: '';
  height: 100vh;
  width: 100%;
  background-image: var(--light-layout);
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}
.main-section{
  background: var(--background-color);
}
.container{
  display: flex;
  position: relative;
}
.container .light-layout{
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.hover-item{
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.hover-item:hover,
.item-open,
.menu-nav__item-anchor:hover,
.menu-nav__sublist .menu-nav__item:hover{
  background: var(--hsl-hover);
}
.hover-item:active,
.item-open:active,
.menu-nav__sublist .menu-nav__item:active{
  background: var(--hsl-hover-light);
}
.closeBtn{
  height: 25px;
  width: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.closeBtn__line{
  content: '';
  display: block;
  height: 2px;
  width: 70%;
  background: var(--third-color);
  position: absolute;
}
.left-line{
  rotate: 45deg;
}
.right-line{
  rotate: -45deg;
}
/*----------------MOBILE MENU--------------------*/
.hamburguer-menu{
  position: fixed;
  z-index: 100000000;
  left: 10px;
  top: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.hamburguer-menu:hover{
  background: var(--hsl-hover);
}
.hamburguer-menu:active{
  background: var(--hsl-hover-light);
}
.hamburguer-menu__line{
  content: '';
  height: 3px;
  background: var(--third-color);
  width: 100%;
  border-radius: 5px;
  transition: 0.5s ease;
}
.line-two{
  width: 66%;
}
.line-three{
  width: 33%;
}
.line-one-closed{
  rotate: 45deg;
  width: 100%;
  translate: 0 10px;
  max-width: 20px;
}
.line-two-closed{
  translate: -20px;
  opacity: 0;
}
.line-three-closed{
  rotate: -45deg;
  width: 100%;
  translate: 0 -12px;
  max-width: 20px;
}
.hamburguer-open{
  align-items: center;
}
a{
  text-decoration: none;
}
ul{
  list-style: none;
}
/*-------------------MAIN MENU-----------------*/
.menu{
  background: var(--background-color);
  position: fixed;
  z-index: 10000000;
  width: 60%;
  min-width: 250px;
  max-width: 500px;
  height: 100vh;
  left: 0;
  top: 0;
  padding-top: 50px;
  transition: all 0.7s ease;
  translate: -200% 0;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.menu-backdrop{
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  content: '';
  height: 100vh;
  z-index: -1000;
  width: 100vw;
  translate: 100%;
}
.menu-nav__list{
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 0 20px;
  padding-bottom: 30px;
}
.menu-nav__logo{
  height: 5em;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.menu-nav__logo-img{
  height: 100%;
  object-fit: cover;
}
.menu-nav__item{
  color: var(--text-color-common);
  padding: 0;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s ease;
}
.menu-nav__item-content{
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.pagination__numbers-current{
  display: flex;
  gap: 0.3em;
  padding: 0 0.3em;
}
.select-nav__pagination__number{
  font-size: var(--font-size-normal);
}
.menu-nav__item-anchor{
  display: flex;
  align-items: center;
  color: var(--primary-color);
  padding: 8px 5px;
  border-radius: 5px;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 75, 51, 0.3);
  transition: all 0.2s ease;
}
.menu-nav__item-anchor .arrow-down{
  color: var(--primary-color);
}
.arrow-down-open{
  rotate: -90deg;
}
.menu-nav__sublist{ /*nueva*/
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.menu-nav__item{
  font-size: var(--font-size-small);
}
.menu-nav__sublist .menu-nav__item{
  padding: 5px;
  border-radius: 3px;
}
.showItemnav{
  max-height: 250px;
  opacity: 1;
  padding: 5px 10px;
}
.showMenu{
  translate: 0;
  opacity: 1;
  pointer-events: all;
}
/*-------------------MENU USER-----------------*/
.menu-user{
  position: fixed;
  right: 10px;
  top: 20px;
  z-index: 10000; /*nueva*/
}
.menu-user__items{
  display: flex;
  align-items: center;
  height: 30px;
  gap: 8px;
}
.menu-user__item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--primary-color);
  overflow: hidden;
  position: relative;
  padding: 4px 8px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.menu-user__item:hover{
  background: var(--hsl-hover);
}
.svg-notify-icon,
.svg-chat-icon{
  fill: var(--third-color);
  width: 22px;
  height: 22px;
}
.menu-user__name{
  display: none;
  font-size: var(--font-size-small);
  color: var(--primary-color);
}
.arrow-down{
  color: var(--third-color);
  transition: 0.3s ease;
}
.arrow-down-svg-icon{
  height: 14px;
  width: 14px;
}
.svg-icon{
  height: 20px;
  width: 20px;
}
.menu-user__img{
  height: 30px;
  width: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--third-color);
}
.notify-pointer{
  content: '';
  height: 8px;
  width: 8px;
  border-radius: 50%;
  display: block;
  background: var(--primary-color);
  position: absolute;
  right: 6px;
  top: 6px;
  border: 2px solid var(--background-color-two);
}
/*-----------------MAIN CONTENT-------------------*/
.main-content{
  flex-grow: 1;
  min-height: 100vh;
  padding: var(--smallest-padding);
  padding-top: 60px;
  color: var(--text-color-common);
  overflow: hidden;
  position: relative;
  background: var(--background-color);
}
.title-section__text{
  font-size: var(--font-size-big);
  color: var(--primary-color);
  letter-spacing: 0.03em;
  font-weight: 600;
}
.title-section__user-name{
  color: var(--text-color-common);
  font-weight: normal;
}

/*-------------------DASHBOARD----------------------*/
.dashboard__container{
  height: calc(100vh - 70px);
  width: calc(100% + 10px);
  padding-right: 5px;
  padding-bottom: 2em;
  overflow: auto;
}
.grid-dashboard{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px, 1fr));
  gap: 1em;
  margin-top: 2em;
}
.grid-dashboard__block{
  background: var(--background-color-two);
  min-height: 250px;
  display: grid;
  grid-template-rows: 50px auto 1fr;
  justify-items: center;
  border-radius: 8px;
  padding: 1.5em 0.75em;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.grid-dashboard__block:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.grid-dashboard__icon{
  height: 50px;
  object-fit: cover;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.grid-dashboard__title{
  font-size: var(--font-size-small);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.75em 0;
  font-weight: 600;
}
.grid-dashboard__text{
  font-size: var(--font-size-smallest);
  text-align: center;
  line-height: 1.4;
  color: var(--text-color-common);
}
.grid-dashboard-btn{
  max-width: 80px;
  margin-top: 1em;
  padding: 6px 12px;
  background: var(--third-color);
  color: var(--text-color-white);
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.grid-dashboard-btn:hover{
  background: var(--third-hover-color);
}
/*----------------------CHAT-----------------------*/
.chat{
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
  background: var(--background-color-two);
  height: 100%;
  padding: var(--small-padding);
  width: 100%;
  max-width: 320px;
  translate: 100% 0;
  transition: 0.7s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.chat .title-section{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.chat .title-section__text{
  font-size: var(--font-size-normal);
  color: var(--primary-color);
}
.chat-list{
  height: 100%;
  padding: 25px 0;
  padding-right: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  width: calc(100% + 20px);
  gap: 1em;
}
.chat-list__item{
  display: grid;
  grid-template-columns: 3em 1fr;
  padding: 8px;
  gap: 1em;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.chat-list__item:hover{
  background: var(--hsl-hover);
}
.chat-list__item__new-messages .chat-list__last-message{
  opacity: 1;
  font-weight: 500;
}
.chat-list__img{
  border-radius: 50%;
  width: 3.5em;
  height: 3.5em;
  object-fit: cover;
  border: 2px solid var(--third-color);
}
.chat-list__text-content{
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.chat-list__text-content__header{
  display: grid;
  grid-template-columns: 1fr 3em;
  align-items: center;
}
.chat-list__name{
  font-weight: 600;
  font-size: var(--font-size-smallest);
  color: var(--primary-color);
}
.chat-list__last-message{
  font-size: var(--font-size-time);
  color: var(--text-color-common);
  max-height: 4ch;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.8;
  line-height: 1.3;
}
.chat-list__text-info{
  display: grid;
  grid-template-columns: 1fr 2em;
  align-items: center;
}
.chat-list__text-info-time{
  font-size: 10px;
  color: var(--primary-color);
  opacity: 0.8;
}
.chat-list__text-info-counter{
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 20px;
  aspect-ratio: 1;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: white;
  font-weight: 600;
}
/*--------------CHAT WINDOWS-----------------*/
.chat-window{
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--background-color);
  translate: 0;
  transition: 0.7s ease;
  padding: var(--small-padding);
  padding-right: 5px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr 60px;
  translate: 100%;
}
.chat-window__header{
  color: var(--text-color-common);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  padding-right: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.chat-window__title{
  color: var(--primary-color);
  font-weight: 600;
}
.backBtn{
  height: 100%;
}
.backBtn__item{
  height: 100%;
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.backBtn__item:hover{
  background: var(--hsl-hover);
}
.backBtn__icon{
  color: var(--third-color);
  height: 22px;
}
.chat-window__body{
  overflow-y: auto;
  flex: 3;
  padding: 0 5px;
  padding-right: var(--small-padding);
}
.chat-window__messages{
  width: 100%;
  padding: 1em 0;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.chat-window__message-received{
  display: grid;
  grid-template-columns: 3em 1fr;
  width: 100%;
  gap: 0.5em;
}
.chat-window__message-img{
  height: 3em;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--third-color);
}
.chat-window__message-sent{
  align-self: flex-end;
  max-width: 80%;
  background: var(--third-color);
  border-radius: 12px 12px 4px 12px;
}
.chat-window__message-sent .chat-window-message-text{
  background: transparent;
  color: white;
}
.chat-window-message-text{
  font-size: var(--font-size-smallest);
  letter-spacing: 0.01em;
  background: var(--hsl-hover);
  display: flex;
  flex-direction: column;
  border-radius: 12px 12px 12px 4px;
  color: var(--text-color-common);
  padding: 0.8em;
  padding-bottom: 0.3em;
  line-height: 1.4;
}
.chat-window-message-info{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.3em;
  padding-top: 0.4em;
}
.chat-window-message-time{
  font-size: var(--font-size-time);
  opacity: 0.7;
}
.chat-window-message-check{
  display: flex;
  align-items: center;
}
.svg-check-icon{
  height: 14px;
  width: 14px;
  fill: var(--message-read-color);
}
.chat-window__message{
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 40px;
  height: 100%;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.chat-window__message-content{
  width: 100%;
}
.chat-window__input-message{
  height: 100%;
  width: 100%;
  resize: none;
  border-radius: 20px;
  padding: 12px 16px;
  font-size: var(--font-size-smallest);
  background: var(--hsl-hover);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color-common);
  outline: none;
  transition: border-color 0.2s ease;
}
.chat-window__input-message:focus{
  border-color: var(--third-color);
}
.chat-window-sendBtn{
  display: flex;
  height: 100%;
  align-items: center;
}
.chat-window-sendBtn__item{
  padding: 8px;
  border-radius: 50%;
  background: var(--background-color-transparent);
  transition: background-color 0.2s ease;
}
.chat-window-sendBtn__item:hover{
  background: var(--third-hover-color);
}
.backBtn__svg{
  padding: 0;
  height: 24px;
  width: 24px;
  transform: rotate(90deg) translateX(0px);
  fill: var(--third-color);
  cursor: pointer;
  display: block;
}
.backBtn__svg path{
  transform: translate(0px, 1px);
}
.wave-container svg {
  transform: scale(2) translateY(-20px);
}

/*-------------------TRANSITIONS ANIMATIONS INTERACTIVES-----------------*/
.showElement{
  display: flex !important;
}
.translateElement{
  translate: 0;
}

/*--------------------TABLE--------------------------------*/

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/*           TABLES             */
.table-container {
  height: calc(100vh - 160px);
  overflow: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
/*---------TABLE CONTROLS--------*/
.table-controls{
  width: 100.3%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  background: var(--background-color-two);
  border-radius: 8px 8px 0 0;
  transform: translateY(-1px);
  padding: 0 6px;
  color: var(--text-color-common);
  min-width: var(--min-width);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.table-nav-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  padding: 0.8em;
  list-style: none;
  height: 100%; 
  width: 100%;
}
.block-view{
  border-radius: 5px;
  width: 80px;
  display: flex;
  min-height: 30px;
  min-width: 30px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--hsl-hover);
  transition: background-color 0.2s ease;
}
.block-view:hover{
  background: hsla(0, 0%, 100%, 0.2);
}
.block-view-icon{
  pointer-events: none;
}
.block-view-item{
  pointer-events: none;
  display:  grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.block-view-block{
  height: 6px;
  width: 6px;
  content: '';
  display: block;
  border: 1px solid var(--third-color);
  border-radius: 1px;
}
.table-nav__arrows{
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0.5rem;
}
.table-nav__arrow{
  font-size: 1.2em;
  font-weight: bold;
  min-width: 30px;
  min-height: 30px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--third-color);
  background: var(--hsl-hover);
  transition: background-color 0.2s ease;
}
.table-nav__arrow:hover{
  background: hsla(0, 0%, 100%, 0.2);
}
.table-nav__left-arrow,
.table-nav__right-arrow{
  transform: translateY(-1px);
  pointer-events: none;
}
.table-nav__input-number{
  width: 40px;
  max-width: 40px;
  height: 30px;
  font-size: var(--font-size-small);
  padding: 0 5px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--hsl-hover);
  color: var(--text-color-common);
  text-align: center;
}

.select-nav__main{
  position: relative;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}
.select-nav__main:hover{
  background: var(--hsl-hover);
}
.select-nav-container{
  position: relative;
}
.select-nav{
  position: absolute;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--background-color-two);
  display: none;
  overflow-y: auto;
  max-height: 150px;
  border-radius: 8px;
  margin-top: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}
.select-nav__option{
  width: 100%; 
  padding: 8px 12px;
  min-width: 25px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  font-size: var(--font-size-small);
  transition: background-color 0.2s ease;
}
.select-nav__option:hover{
  background: var(--hsl-hover);
}
.select_current-selection{
  border: 1px solid var(--third-color);
  border-radius: 5px;
  font-size: var(--font-size-small);
  align-items: center;
  padding: 4px 8px;
}
.table-nav__item,
.table-nav__item span{
  font-size: var(--font-size-small);
}
.table-nav__item.search{
  width: auto;
  min-width: 200px;
  border-radius: 5px;
  height: 30px;
}
.table-nav__search{
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: var(--font-size-small);
  outline-color: var(--third-color);
  background: var(--hsl-hover);
  color: var(--text-color-common);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease;
}
.table-nav__search:focus{
  border-color: var(--third-color);
}

/*---------------------MODAL-----------------------*/

.modal {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 1000000000;
  top: 0;
  left:0 ;
  background: var(--background-color-two);
  display: none;
}
.temp_4 {
  z-index: 9999999999 !important; /* important es xq al momento de agregarla en el code, esta quedara primero que showmodal */
}
.modal__main-content{
  padding: var(--no-padding);
  padding-top: 70px;
}
.modal__title{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.modal__title-text{
  color: var(--primary-color);
  font-size: var(--font-size-big);
  font-weight: 600;
}
.showModal{
  display: block;
}

.modal__close-btn{
  position: fixed;
  right: 20px;
  top: 20px;
  background: var(--hsl-hover);
  color: var(--third-color);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  z-index: 100000000;
  transition: background-color 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal__close-btn:hover{
  background: hsla(0, 0%, 100%, 0.2);
}

.dark__close-btn{
  background: var(--background-color-two);
}

.dark__close-btn,
.modal__close-btn{
  height: 30px;
  width: 30px;
}
.dark__close-btn svg,
.modal__close-btn svg{
  height: 20px;
  width: 20px;
} /* nuevo */
/* ----------------------- TABLE STYLES----------------- */
.table-header{
  position: sticky;
  background: var(--background-color);
  top: 0;
  left: 0;
  z-index: 100000; /* antes 100, cambie para poder colocar encima del div que tiene el estatus de credito */
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: var(--background-color-three);
  border-radius: 0 0 8px 8px;
}
table tr:nth-child(4n - 1),
table tr:nth-child(4n){
  background-color: var(--tr-table-color);
}
.table__row{
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.table-header__item {
  background: var(--background-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.table-header__item {
  padding: 12px 8px;
  text-align: center;
}
.table-data{
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-color-common);
}

.table-data-twocols{
  display: grid !important;
  grid-template-columns: 1fr 40px;
  width: 100%;
  margin: auto;
}
.table__hidden-row .table-data{
  border-bottom: none;
}
.table-data-scroll__content{
  max-height: 200px;
  overflow: auto;
  padding: 0.5em 0;
  width: 100%;
}
.table-data::before{
  content: attr(data-col) ": ";
  font-weight: 600;
  text-transform: capitalize;
  display: var(--showBefore);
  color: var(--primary-color);
}
.table-body{
  color: var(--text-color-common);
}
tbody td:first-child::before,
.table-nodatacell::before{
  content: none;
}
.thead-block{
  display: none;
}
.td-block{
  max-width: 100%;
  width: 100%;
  display: flex;
  gap: 0.5em;
  padding: 0.7em 0.5em;
  padding-left: 1.3em;
}
.td-padding-top{
  padding-top: 1em;
}
.tbody-block{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.td-padding-bottom{
  padding-bottom: 1em;
}
.table-data__container{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.5em;
  gap: 0.5em;
  width: 100%;
}
.table__icon-container{
  height: 100%;
  display: flex;
  justify-content: center;
  gap: 0.8em;
  padding-left: 10px; /*fix*/
}
.table__icon{
  height: 24px;
  width: 24px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.table__hidden-row{
  display: none;
}
.showHidden-row{
  display: table-row;
}
.notifications{
  cursor: pointer;
}


/*-----------------GALLERY-------------------------*/

.modal-gallery__main{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "pictureBtn pictureBtn"
                       "mainPicture mainPicture"
                       "picturesList picturesList";
  height: calc(100vh - 120px);
  max-height: calc(100vh - 120px);
  gap: 1.5em;
  overflow: hidden;
  min-width: 320px;
  }
.gallery__picture-Btn{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1em 0;
  grid-area: pictureBtn;
}
.progress__container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 0.5em;
  display: none;
}
.progress__filename,
.progress__textupload{
  color: var(--text-color-white);
  font-size: var(--font-size-smallest);
}
.progress__textupload{
  text-align: center;
}
.progress__filename{
  max-width: 250px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.progress__barupload-container{
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
  bottom: -23px;
  height: 20px;
}
.progress__barupload{
  height: 22px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.gallery__picture__label{
  display: flex;
  align-items: center;
  gap: 0.8em;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: var(--hsl-hover);
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.gallery__picture__label:hover{
  background-color: hsla(0, 0%, 100%, 0.2);
}
.gallery__picture__label-img{
  height: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.gallery__picture__label-text{
  color: var(--third-color);
  font-weight: 500;
}
.gallery__picture__input{
  display: none;
}
.modal-gallery-pictures{
  grid-area: picturesList;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
}
.modal-gallery-pictures__list{
  list-style: none;
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--background-color-three);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  padding-right: 10px;
  padding-bottom: 80px;
  overflow: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.modal-gallery-pictures__item{
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.modal-gallery-pictures__item:hover{
  opacity: 0.9;
  transform: translateY(-2px);
}
.modal-gallery-item-active{
  opacity: 1;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(42, 194, 148, 0.3);
}
.modal-gallery-pictures__item-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.modal-gallery-pictures__item:hover .modal-gallery-pictures__item-img{
  transform: scale(1.05);
}
.modal-gallery-main-picture{
  position: relative;
  grid-area: mainPicture;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  background: var(--background-color-two);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.modal-gallery-main-picture-text{
  color: var(--primary-color);
  font-size: var(--font-size-small);
}
.modal-gallery-main-picture-content{
  height: 100%;
  overflow: hidden;
  width: 100%;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-gallery-main-picture-img{
  height: 100%;
  object-fit: contain;
  max-width: 100%;
}
progress{
   margin-top: 1rem;
}

.modal__btn{
  color: var(--third-color);
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.modal__btn-content{
  padding: 10px 20px;
  font-size: var(--font-size-small);
  background: var(--hsl-hover);
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}
.modal__btn-content:hover{
  background: hsla(0, 0%, 100%, 0.2);
}


/*---------------------FORMS E INPUTS----------------------*/
.form-grid__container{
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 2em 0;
}
.form-grid{
  background: var(--background-color-three);
  width: 100%;
  max-width: 700px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.form-grid__items{
  display: grid;
  grid-template-columns: 1fr;
}
.form-grid__item{
  min-width: 320px;
  display: grid;
  grid-template-columns: minmax(100px, 150px) 1fr;
  padding: 1em 1.5em;
  align-items: center;
}
.form-grid__item-singlerow{
  grid-template-columns: 1fr !important;
}
.form-grid__item:nth-child(2n){
  background-color: var(--tr-table-color);
}
.form-grid__item-col{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.form-grid__item-header{
  color: var(--primary-color);
  font-weight: 600;
  font-size: var(--font-size-small);
  width: 100%;
  text-align: left;
}
.form-grid__item-header-singlerow{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1em 0;
  font-weight: 600;
}
.form-grid__item-twocol{
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 30px;
  gap: 12px;
}
.form-grid-item__text{
  color: var(--text-color-common);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-small);
  padding: 0 0.5em;
  line-height: 1.4;
}
.form-grid__item-input{
  font-size: var(--font-size-small);
  width: 100%;
  border-radius: 6px;  
  background: var(--hsl-hover);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  color: var(--text-color-common);
  text-align: center;
  transition: border-color 0.2s ease;
}
.form-grid__item-input:focus{
  border-color: var(--third-color);
  outline: none;
}
.form-grid__item-checkbox{
  display: none;
}
.checkbox-label{
  display: flex;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  pointer-events: visible;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.checkbox-label:hover{
  background: var(--hsl-hover);
}
.checkLabel__text{
  font-size: var(--font-size-small);
  color: var(--text-color-common);
}
.square-checkbox{
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  height: 20px;
  width: 20px;
  display: flex;
  overflow: hidden;
  transition: all 0.2s ease;
}
.square-checkbox__checked{
  background: var(--check-background);
  border-color: var(--third-color);
}
.form-grid__item-checkbox-radius{
  border-radius: 50%;
}
.square-checkbox__ico{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  display: none;
}
.form-grid__item-ico{
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: var(--hsl-hover);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.form-grid__item-ico:hover{
  background: hsla(0, 0%, 100%, 0.2);
}
.form-grid__item-checkbox:checked ~ label .square-checkbox__ico{
  display: block;
}
.select-nav__main-item{
  color: var(--primary-color);
  font-weight: 500;
}
.select-nav-list{
  width: 100%;
  z-index: 1000;
  height: 600%;
  padding: 8px 0;
  background: var(--background-color-two);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.select-nav__option-item{
  padding: 8px 12px;
  transition: background-color 0.2s ease;
}
.select-nav__option-item:hover{
  background: var(--hsl-hover);
}
 .form-grid-nav-container{
  width: 100%;
  max-width: 400px;
 }
 .navfull-screen{
  background: var(--background-color-transparent);
  backdrop-filter: blur(10px);
  color: var(--nav-fullscreen-text);
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  padding: 2em;
  margin-top: 0;
  z-index: 100000000;
  cursor: default;
  font-weight: 600;
 }
.fullscreen-check .checkLabel__text{
  color: var(--nav-fullscreen-text);
}
 .generic-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 1em 0;
 }
 .generic-btn__text{
  background: var(--third-color);
  color: var(--text-color-white);
  font-size: var(--font-size-small);
  border-radius: 8px;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  border: none;
 }
 .generic-btn__text:hover{
  background: var(--third-hover-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 152, 255, 0.3);
 }
 input[type="datetime-local"]{
  position: relative;
}
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  background: url('../assets/calendar.svg') no-repeat;
  cursor: pointer;
  background-size: contain;
  opacity: 0.7;
}
textarea{
  resize: none;
}
.from-grid__textarea{
  text-align: start;
  height: 8ch;
  font-size: var(--font-size-small);
  line-height: 1.4;
  padding: 10px;
  border-radius: 6px;
  background: var(--hsl-hover);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color-common);
  transition: border-color 0.2s ease;
}
.from-grid__textarea:focus{
  border-color: var(--third-color);
  outline: none;
}


.modal-gallery-pictures__item {
  position: relative;
}
.delete-item-Btn{
  position: absolute;
  right: 0;
  color: white;
  background: var(--background-color-two);
  color: var(--third-color);
  font-weight: bold;
  z-index: 100;
  top: 0;
  padding: 8px;
  border-radius: 0 8px 0 8px;
  pointer-events: visible;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.delete-item-Btn:hover{
  background: var(--background-color);
  color: var(--error-alert);
}
.crossBtn{
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
  font-size: 1.2em;
}

.modal-gallery-selected-picture{
  position: absolute;
  left: 0;
  top: 0;
}
.modal-gallery-checkBtn{
  background: var(--primary-color);
  padding: 8px;
  border-radius: 8px 0 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.modal-gallery-checkBtn:hover{
  background: #24a87e;
}
.modal-gallery-checkBtn-ico path{
  fill: white;
}


/*-----------LOGIN----------------*/
.logeo{
  background: var(--background-color-two);
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.logeo__form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  padding: 2.5em;
  border-radius: 12px;
  position: relative;
  z-index: 1000000;
  background: var(--background-color-transparent);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
}
.logeo__logo{
  height: 80px;
  margin-bottom: 1em;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.logeo__input{
  border-radius: 8px;
  margin-top: 10px;
  width: 100%;
  padding: 12px 16px;
  font-size: var(--font-size-small);
  background: var(--hsl-hover);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color-common);
  transition: all 0.2s ease;
}
.logeo__input:focus{
  border-color: var(--third-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 152, 255, 0.1);
}
/*nueva*/
.form-grid-item__text{
  color: var(--primary-color);
  font-weight: 500;
}
.logeo__background{
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.wave-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 0;
}
 .waves {
  animation: waveAnimation 8s linear infinite;
  opacity: 1;
}
  .waves_two{
  animation: waveAnimationTwo 5s 2s linear infinite;
  opacity: 0.5;
  }
  .waves_three{
      animation: waveAnimationThree 4s 0s linear infinite;
       opacity: 0.6;   
  } 
.wave {
  fill: var(--background-color-three);
  transform-origin: center;
}
.wave_two{
  transform-origin: center;
  fill: var(--primary-color);  
}
.waves_three{
  transform-origin: center;
  fill: var(--third-color);
}
@keyframes waveAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes waveAnimationTwo {
  0% {
    transform: translateX(0) translateY(2px);
  }
  100% {
    transform: translateX(-100%) translateY(2px);
  }
}

@keyframes  waveAnimationThree {
  0% {
    transform: translateX(0) translateY(5px);
  }
  100% {
    transform: translateX(-100%) translateY(5px);
  }
}


/*----------NOTIFICACIONES--------*/

.toolbar-notifications{
  width: 100%;
  position: fixed;
  height: 40px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  margin-top: 10px;
  z-index: 9999999999;
}
.toolbar-notifications__text-container{
  top: 0;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  max-width: 350px;
  width: 100%;
  min-width: 300px; 
  margin: 5px 0;
  height: 40px;
  min-height: 40px;
  padding: 10px;
  position: fixed;
  transform: translateY(-10%);
  transition: 0.3s ease;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.display-notification{
  opacity: 1;
  transform: translateY(0);
}
#message-approve{
    background-color: rgba(19, 158, 19, 0.9);
}
#message-error{
  background-color: rgba(220, 53, 69, 0.9);
}
.notify__text-content{
  text-align: center;
  width: 100%;
  font-size: var(--font-size-smallest);
}
@keyframes aparecer{
    0%{
        transform: translateY(-10%);
    }80%{
        opacity: 1;
        transform: translateY(0);
    }100%{
        opacity: 0;
        transform: translateY(-10%);
    }
}
.palomita{
    display: none;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: black;
}


/*--------MODAL CON OPACITY----------*/

.modal-transparent{
  background: var(--background-color-transparent);
  z-index: 1000000000;
  padding: var(--smallest-padding);
  backdrop-filter: blur(10px);
}
.modal-form-content{
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-form{
  background-color: var(--background-color-two);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  gap: 1em;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-form__title{
  color: var(--primary-color);
  margin-bottom: 1em;
  font-size: var(--font-size-big);
  font-weight: 600;
  text-align: center;
}
.modal-form__inputs{
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.modal-form__input{
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--hsl-hover);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color-common);
  font-size: var(--font-size-small);
  transition: all 0.2s ease;
}
.modal-form__input:focus{
  border-color: var(--third-color);
  outline: none;
}
.modal-form__button{
  margin-top: 1.5em;
  width: 100%;
}
/*--------------FULL WINDOWS ALERT----------------*/
.modal-notifywindows__text{
  color: var(--text-color-common);
  font-size: var(--font-size-small);
  text-align: center;
  line-height: 1.5;
}
.alertcolor-approve{
  border-top: 4px solid var(--aprove-alert);
  background: linear-gradient(to bottom, rgba(19, 158, 19, 0.1), transparent);
}
.alertcolor-error{
  border-top: 4px solid var(--error-alert);
  background: linear-gradient(to bottom, rgba(220, 53, 69, 0.1), transparent);
}
/*------------------MENU USER-------------------*/
.menu-user__settings-nav{
  position: fixed;
  top: 60px;
  right: 20px;
  background: var(--background-color-two);
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 8px 0;
  transition: 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 150px;
}
.showUsermenu{
  transform: translate(0);
  opacity: 1;
  pointer-events: visible;
}

.menu-user__settings-item{
  font-size: var(--font-size-small);
  width: 100%;
  text-align: start;
  pointer-events:inherit;
  color: var(--text-color-common);
  padding: 8px 16px;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.menu-user__settings-item:hover{
  background: var(--hsl-hover);
}
/*nueva*/
.menu-user-clock__content{
  font-size: var(--font-size-small);
  color: var(--primary-color);
  font-weight: 500;
}

/*----------------HOVERS-------------------*/
.table__icon{
  transition: all 0.2s ease;
}
.table__icon:hover{
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/*SWTICH THEME*/
.switch-theme{
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.theme__btn{
  max-width: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--background-color-three);
  border-radius: 12px;
  position: relative;
  padding: 6px;
  gap: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
}
.theme__btn:hover{
  transform: translateY(-1px);
}
.theme__btn > *{
  pointer-events: none;
}
.theme__picker{
  content: '';
  display: block;
  height: 100%;
  width: 50%;
  background: var(--background-color);
  position: absolute;
  transition: 0.3s ease;
  border-radius: 8px;
}
.theme__picker-slide{
  translate: 100%;
}
.theme__picker::after{
  content: '';
  height: 100%;
  width: 100%;
  display: block;
  background-image: var(--light-layout);
  border-radius: 8px;
}
.theme__icon{
  width: 100%;
  padding: 4px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

/*TABLE DATA STATUS*/
.table__row{
  position: relative;
  overflow: hidden;
}

.table__data-status{
  content: '';
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 6px;
  z-index: 10000;
  overflow: hidden;
  border-radius: 3px;
  pointer-events: none;
}

.table__data-statusSpecial {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.8), transparent);
  z-index: 100000;
  display: block;
  height: 100%;
  width: 6px;
  animation: specialStatus 1.5s ease infinite;
  translate: 0 -100%;
}

@keyframes specialStatus{
  0%{
    translate: 0 -100%;
  }
  100%{
    translate: 0 100%;
  }
}
.status-pagoaldia{
  background-color: #2ecc71;
}
.status-cuota__atrasada{
  background-color: #f39c12;
}
.status-cuotas__atrasadas{
  background-color: #e74c3c;
}
.status-cliente__moroso{
  background-color: #2c3e50;
}
.status-cliente__sin-credito{
  background-color: #95a5a6;
}

@media only screen and (max-width: 320px){
  .menu{
    width: 100%;
  }
}


@media only screen and (min-width: 366px){
  .modal__main-content{
    padding: var(--smallest-padding);
    padding-top: 70px;
  }
}



@media only screen and (min-width: 600px){

  .modal-gallery__main{
    grid-template-columns: 300px 1fr;
    grid-template-areas: "pictureBtn pictureBtn"
                         "picturesList mainPicture";
    }
    .modal-gallery-pictures__list{
      grid-template-columns: 1fr;
      padding-bottom: 0;
    }
     .form-grid__item{
      grid-template-columns: minmax(150px, 200px) 1fr;
    } 
    .select-nav__option{
      font-size: var(--font-size-small);
     }
     .grid-dashboard{
      grid-template-columns: repeat(auto-fit,minmax(220px, 1fr));
    }
    .navfull-screen{
      background: var(--background-color-transparent);
      backdrop-filter: blur(10px);
      position: fixed;
      top: 0;
      left: 0;
      padding: 2em;
      min-height: 100vh;
      height: 100vh;
      width: 100%;
      margin-top: 0;
      z-index: 100000000;
      color: var(--nav-fullscreen-text) !important;
     }
     .checkbox-label {
      width: 100%;
    }
    .modal-gallery-main-picture,
    .modal-gallery-main-picture-content,
    .modal-gallery-pictures{
      min-height: 300px;
    }
    .table__data-status{
      width: 8px;
    }
}

@media only screen and (min-width: 768px){
  .main-content{
    padding: var(--small-padding);
    padding-top: 70px;
  }
  .dashboard__container{
    width: calc(100% + 20px);
    padding-right: 15px;
  }
}


@media only screen and (min-width: 998px){
  .wave-container {
    transform: translateY(60px);
  }
  .menu-user__name{
    display: block;
  }
  .menu-user__item{
    padding: 6px 12px;
  }
}
@media only screen and (min-width: 1200px){
  .wave-container {
    transform: translateY(80px);
  }
  .hamburguer-menu{
    display: none;
  }
  .menu{
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: all;
    opacity: 1;
    translate: 0;
    width: 280px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
  .menu-backdrop{
    display: none;
  }
  .menu .light-layout{
    z-index: -1;
  }
  .main-content{
    padding-left: calc(280px + 30px);
  }
  .menu-user{
    right: 30px;
  }
}

@media only screen and (min-width: 1400px){
  *{
    font-size: 18px;
  }
  .menu{
    width: 300px;
  }
  .main-content{
    padding-left: calc(300px + 40px);
  }
  .menu-user{
    right: 40px;
  }
}