:root{
  --verde-huellax: #0aefa8;
  --verde-chat: #aef8cc;
  --verde-data-1: #9af0d5;
  --verde-data-2: #c7f1e4;
  --negro-fondo: #121212;
  --naranjo-contapapaya: #f19001;
  --naranjo-tarjeta: #e3ba7e;
  --naranjo-fondo: #f3dcbb;
  --naranja-input: #f1d2a5 ; 
  --morado-header: #4c4c9d;
  --morado-letra: #5555ae;
  --morado-data-1: #b7b7fc;
  --morado-data-2: #ceceff;
}


body{
  min-height: 100vh;
  background-color: white;
  font-family: 'Nunito', sans-serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%; 
  padding: 20px;
}

.btn{
  border-radius: 16px;
}

#huellax-app{
  min-height: 100vh;
}

.main-container{
  min-height: 100vh;
}

.custom-input {
    border: 1px solid var(--verde-huellax) !important; 
    border-radius: 30px !important; 
    padding-left: 20px !important;
  }
  
.custom-input:focus {
  border-color: var(--verde-huellax) !important;
  box-shadow: none !important; 
}

.custom-button-login {
  background-color: var(--verde-huellax); 
  border-radius: 30px; 
  color: black; 
  font-size: 20px; 
  height: 50px
}


.fondo {
  justify-content: center;
  align-items: center;
}

.theme-switch {
  --toggle-size: 30px;
  /* the size is adjusted using font-size,
     this is not transform scale,
     so you can choose any size */
  --container-width: 5.625em;
  --container-height: 2.5em;
  --container-radius: 6.25em;
  /* radius 0 - minecraft mode :) */
  --container-light-bg: #3D7EAE;
  --container-night-bg: #1D1F2C;
  --circle-container-diameter: 3.375em;
  --sun-moon-diameter: 2.125em;
  --sun-bg: #ECCA2F;
  --moon-bg: #C4C9D1;
  --spot-color: #959DB1;
  --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
  --stars-color: #fff;
  --clouds-color: #F3FDFF;
  --back-clouds-color: #AACADF;
  --transition: .5s cubic-bezier(0, -0.02, 0.4, 1.25);
  --circle-transition: .3s cubic-bezier(0, -0.02, 0.35, 1.17);
}

.theme-switch, .theme-switch *, .theme-switch *::before, .theme-switch *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: var(--toggle-size);
}

.theme-switch__container {
  width: var(--container-width);
  height: var(--container-height);
  background-color: var(--container-light-bg);
  border-radius: var(--container-radius);
  overflow: hidden;
  cursor: pointer;
  -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__container::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  border-radius: var(--container-radius)
}

.theme-switch__checkbox {
  display: none;
}

.theme-switch__circle-container {
  width: var(--circle-container-diameter);
  height: var(--circle-container-diameter);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: var(--circle-container-offset);
  top: var(--circle-container-offset);
  border-radius: var(--container-radius);
  -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: var(--circle-transition);
  -o-transition: var(--circle-transition);
  transition: var(--circle-transition);
  pointer-events: none;
}

.theme-switch__sun-moon-container {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  width: var(--sun-moon-diameter);
  height: var(--sun-moon-diameter);
  margin: auto;
  border-radius: var(--container-radius);
  background-color: var(--sun-bg);
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
  -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.theme-switch__moon {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-color: var(--moon-bg);
  border-radius: inherit;
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__spot {
  position: absolute;
  top: 0.75em;
  left: 0.312em;
  width: 0.75em;
  height: 0.75em;
  border-radius: var(--container-radius);
  background-color: var(--spot-color);
  -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
  width: 0.375em;
  height: 0.375em;
  top: 0.937em;
  left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
  width: 0.25em;
  height: 0.25em;
  top: 0.312em;
  left: 0.812em;
}

.theme-switch__clouds {
  width: 1.25em;
  height: 1.25em;
  background-color: var(--clouds-color);
  border-radius: var(--container-radius);
  position: absolute;
  bottom: -0.625em;
  left: 0.312em;
  -webkit-box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
  box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
  -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
  position: absolute;
  color: var(--stars-color);
  top: -100%;
  left: 0.312em;
  width: 2.75em;
  height: auto;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

/* actions */

.theme-switch__checkbox:checked + .theme-switch__container {
  background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container:hover {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em)
}

.theme-switch__circle-container:hover {
  left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__moon {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__clouds {
  bottom: -4.062em;
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__stars-container {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}


.carousel-container-edit {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65vh; 
}

.carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 70vh;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
}


.carousel .carousel-item {
  width: 450px !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  opacity: 1 !important;
  border-radius: 14px;
}


.carousel .carousel-item.active {
  opacity: 1 !important;
  z-index: 1;
}

.carousel .carousel-item:not(.active) {
  opacity: 1 !important;
  z-index: 0.3;
}

.carousel .carousel-item .card {
  width: 100%;
  height: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 22px;
  overflow: hidden;
  padding: 20px;
}

.carousel .carousel-item .card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.carousel .carousel-item .card-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 20px;
}

.carousel .carousel-item .card-content h3,
.carousel .carousel-item .card-content p {
  margin: 0;
}

.card-locked {
  opacity: 0.4;
}

.carousel .carousel-item.active .card-locked {
  opacity: 1 !important;
  z-index: 1;
}


.login-img-align{
  text-align: center !important; 
  padding: 40px !important;
}

.login-img-size{
  width: 220px !important; 
  height: 50px !important;
}

.background-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.ch-logo {
  width: 20vh; 
  height: auto; 
  display: inline;
}

.nav-icon {
  animation: pulse 1.5s infinite;
  display: flex;
  align-items: center;
  font-size: 24px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

table.striped {
  font-size: 16px;
  border-collapse: separate;
  border-spacing: 10px 0px;
  width: 100%;
  position: relative;
  padding-bottom: 100px;
}

table.striped thead th,
table.striped tbody td {
  padding: 8px;
}

table.striped thead th {
  background-color: var(--morado-header);
  border-radius: 20px 20px 0 0; 
  color:white
}

table.striped tbody tr:last-child td {
  border-radius: 0 0 20px 20px; 
}


table.striped td:not(:last-child),
table.striped th:not(:last-child) {
  position: relative;
}

table.striped td:not(:last-child)::after,
table.striped th:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 10px; 
  height: 100%;
  background-color: transparent;
  z-index: 1; 
}

table.striped tbody tr {
  border-collapse: collapse; 
}

table.striped tbody td {
  border-radius: 0; 
}

table.striped tbody tr:nth-child(even) {
  background-color: var(--morado-data-1); 
}
table.striped tbody tr:nth-child(odd) {
  background-color: var(--morado-data-2);
}


.edit-card{
  display: flex;
  flex-direction: column; 
  justify-content: flex-start; 
  margin-left: 50px; 
  margin-top: -20px;
  width: 200px;
  height: 90px;
  background-color: #e3ba7e;
  border-radius: 20px;
  color: #121212;
  text-decoration: overline;
  font-weight: bold;
}

.edit-card-modal{
  display: flex;
  background-color: var(--morado-data-1);
  width: 290px;
  border-radius: 20px;
  margin: 20px auto 0;
  position: relative;
  height: 50px;
  font-weight: bold;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: flex-start;
}

.dropdown-content {
  max-height: 370px;
  overflow-y: auto;
}

.switch {
  --circle-dim: 1.4em;
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 3.5em;
  height: 2em;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5aeae;
  transition: .4s;
  border-radius: 30px;
  height: 35px;
}

.slider-card {
  position: absolute;
  content: "";
  height: var(--circle-dim);
  width: var(--circle-dim);
  border-radius: 20px;
  left: 0.3em;
  bottom: 0.3em;
  transition: .4s;
  pointer-events: none;
}

.slider-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  perspective: 1000px;
  border-radius: 50%;
  transition: .4s transform;
}

.slider-card-front {
  background-color: #DC3535;
}

.slider-card-back {
  background-color: #379237;
  transform: rotateY(180deg);
}

input:checked ~ .slider-card .slider-card-back {
  transform: rotateY(0);
}

input:checked ~ .slider-card .slider-card-front {
  transform: rotateY(-180deg);
}

input:checked ~ .slider-card {
  transform: translateX(1.5em);
}

input:checked ~ .slider {
  background-color: #9ed99c;
}

.modal{
  border-radius: 30px;
  max-height: 99%;
  min-width: 200px !important;
  width: 70%;
  overflow: auto;
}

.edit-select{
  background-color: white;
  color: var(--morado-letra) !important;
  z-index: 0.1;
}

.edit-input-buscar{
  border-radius: 25px !important; 
  padding-left: 15px !important; 
  border: 1px solid #ccc !important;
}

.edit-input-modal{
  height: 40px !important;
  border-radius: 25px !important;
  background-color: var(--naranja-input) !important ;
  padding: 10px !important;
  padding-left: 10px !important;
}

.ed-inp-mod{
  border: none !important;
  margin-top: -15px !important;
  border-radius: 25px !important;
  height: 35px !important;
  box-shadow: none !important;
  color: var(--morado-letra);
}

.ed-inp-mod::placeholder {
  color: var(--morado-letra);
}


table {
  width: 100% !important;
  table-layout: auto !important;
}

.editar-input .input-field>label:not(.label-icon).active {
  transform: translateY(-22px) translateX(8px) scale(0.8) !important;
  background-color: var(--morado-data-1) !important;
  border-radius: 14px 14px 0 0 !important;
  width: auto !important;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 8px;
  color: var(--morado-letra);
  box-shadow: none !important;
}

.editar-input .input-field.col label {
  transform: translateY(-3px) translateX(8px) scale(0.8) !important;
  background-color: var(--morado-data-1) !important;
  border-radius: 14px 14px 0 0 !important;
  width: auto !important;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 9px;
  color: var(--morado-letra);
  box-shadow: none !important;
  font-size: 14px !important;
}

.editar-input input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px var(--naranja-input) inset !important; 
  border-radius: 22px !important;
  border: var(--naranja-input) !important;
  height: 35px !important;
  width: 100% !important;
  color: var(--morado-letra) !important;
}

.editar-input input:-webkit-autofill:focus {
  border: none !important;
  background-color: var(--naranja-input) !important; 
  box-shadow: 0 0 0px 1000px var(--naranja-input) inset !important; 
  color: var(--morado-letra) !important;
}

.editar-input input:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: var(--naranja-input) !important;

}

.editar-input input:focus + label{
  color: var(--morado-letra) !important;
}

.editar-input .select-wrapper input.select-dropdown{
  margin-top: -11px;
  border: none;
  border-radius: 22px;
  height: 41px;
  color: var(--morado-letra) !important;
}


.editar-input .select-dropdown li.disabled, .select-dropdown li.disabled>span, .select-dropdown li.optgroup {
  background-color: var(--naranja-input);
  color: var(--morado-letra) !important;
  border-radius: 22px;
  height: 41px;
}

.editar-input ul:not(.browser-default) {
  padding-left: 0;
  list-style-type: none;
  background-color: var(--naranja-input);
  border-radius: 22px;
}

.editar-input .dropdown-content li>a, .dropdown-content li>span {
  font-size: 16px;
  color: var(--morado-letra) !important;
  display: block;
  line-height: 22px;
  padding: 14px 16px;
  border-radius: 22px;
}

.custom-label {
  color: white; 
  font-size: 16px; 
}

.custom-button {
  border-radius: 22px; 
  background-color: var(--morado-header); 
  color: white; 
  margin-right: 23px;
}

.custom-container {
  position: relative; 
}

.custom-label-sii {
  position: absolute; ; 
  left: 10px; 
  background-color: var(--morado-data-1); 
  padding: 5px;
  color: white; 
  font-weight: bold;
  z-index: 1; 
}

.custom-center{
  display: flex; 
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  text-align: center;
}

.custom-card-title{
  position: absolute;
  background-color: var(--morado-data-2);
  padding: inherit;
  color: var(--morado-letra);
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  transform: translateX(18px) !important;
}

.v-none-mef {
  display: none;
}
.showIcon{
  display: block;
  color: var(--naranjo-contapapaya);
  margin: 0px !important;
}
/*SOPORTE*/
.gap-0 {
  gap : 0 !important;
}

.soporte-gn {
  position: relative;
  padding: 10px;
  background-color: var(--naranjo-fondo) !important;
  min-height: 100vh;
  height: auto; 
  display: flex; 
  flex-direction: column; 
  align-items: center;
}


.soporte-gn .titulo{
  text-align: center;
}

.soporte-gn .nombre-usuario {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  margin-top: 14px;
}

.soporte-gn .profile-img{
  border-radius: 50%;
}

.soporte-gn .profile-img img{
  border-radius: 50%;
  height: 100px;
}

.soporte-gn .titulo-negro {
  color: black;
  font-weight: bold;
}

.soporte-gn .titulo-color {
  color: var(--naranjo-contapapaya); 
  font-weight: bold;
}

.soporte-gn .botones {
  margin-top: 30px; 
  text-align: center;
}

.soporte-gn .btn {
  margin: 10px; 
  background-color: black; 
  color: white; 
  border-radius: 27px; 
  cursor: pointer; 
}

.soporte-gn .btn:hover {
  background-color: #0056b3; 
}

.soporte-gn .container {
  background-color: white;
  border-radius: 25px;
  max-width: 100% !important;
  min-width: 100% !important; 
  width: 100% !important; 
  height: auto; 
  margin: 20px 0; 
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.soporte-gn table.striped {
  font-size: 16px;
  border-collapse: separate;
  border-spacing: 10px 0px;
  width: 98% !important;
  max-width: 98% !important;
  min-width: 98% !important;
  position: relative;
  padding-bottom: 100px;
  font-weight: bold;
}

.soporte-gn table.striped thead th,
.soporte-gn  table.striped tbody td {
  padding: 8px;
}

.soporte-gn table.striped thead th {
  background-color: var(--naranjo-contapapaya);
  border-radius: 20px 20px 0 0; 
  color:white
}

.soporte-gn table.striped tbody tr:last-child td {
  border-radius: 0 0 20px 20px; 
}


.soporte-gn table.striped td:not(:last-child),
.soporte-gn table.striped th:not(:last-child) {
  position: relative;
}

.soporte-gn table.striped td:not(:last-child)::after,
.soporte-gn table.striped th:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 10px; 
  height: 100%;
  background-color: transparent;
  z-index: 1; 
}

.soporte-gn table.striped tbody tr {
  border-collapse: collapse; 
}

.soporte-gn table.striped tbody td {
  border-radius: 0; 
}

.soporte-gn table.striped tbody tr:nth-child(even) {
  background-color: var(--verde-data-2); 
}
.soporte-gn table.striped tbody tr:nth-child(odd) {
  background-color: var(--verde-data-1);
}

.soporte-gn .empresa-cell {
  position: relative; 
}

.soporte-gn .tag {
  border-radius: 0 12px 12px 0; 
  width: 45px; 
  height: 30px;
  position: absolute; 
  top: 50%; 
  left: 100%; 
  transform: translateY(-50%); 
}

.soporte-gn .tag-left {
  border-radius: 12px 0 0 12px; 
  min-width: 30px;
  max-width: 100px; 
  height: 20px;
  position: absolute; 
  top: 43%; 
  right: 100%; 
  transform: translateY(-50%); 
}
.soporte-gn .tag-left-color-naranja {
  background-color: var(--naranjo-contapapaya) !important; 
}

.soporte-gn .tag-verde {
  background-color: #4CAF50; 
}

.soporte-gn .tag-amarillo {
  background-color: #FFC107; 
}

.soporte-gn .tag-rojo {
  background-color: #F44336; 
}

.soporte-gn .tag-azul {
  background-color: #2933c2; 
}

.soporte-gn .informacion-tags{
  padding: 30px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.soporte-gn .tag-style{
  display: flex;
  gap: 70px;
  flex-direction: row-reverse;
}

.soporte-gn .list-style{
  font-weight: bold; 
  font-size: 18px; 
  display: flex; 
  align-items: center;
}

.soporte-gn .modal{
  top: 3% !important;
}

.soporte-gn .mensaje-advertencia {
  margin-top: 15px;
  padding: 10px;
  border: 1px solid #f39c12;
  background-color: #fcf8e3;
  border-radius: 5px;
  color: #856404;
  display: flex;
  align-items: center;
  font-size: 18px;
  justify-content: center;
  width: 380px;
}

.soporte-gn .icono-advertencia {
  color: #f39c12;
  font-size: 20px;
  margin-right: 8px;
}



/*************************** TICKET ***************************/

.ticket .edit-input-modal{
  height: 40px !important;
  border-radius: 25px !important;
  background-color: var(--naranja-input) !important ;
  padding: 10px !important;
  width: 100%;
  border: solid var(--naranjo-contapapaya);
  color: black;
}

.ticket .ed-inp-mod{
  border: none !important;
  margin-top: -15px !important;
  border-radius: 25px !important;
  height: 35px !important;
  box-shadow: none !important;
  color: #635c4f;
}

.ticket .ed-inp-mod::placeholder {
  color: #635c4f;
}

.ticket .select-wrapper {
  position: relative;
  margin-top: -15px !important;
  border: none !important;
}

.ticket .editar-input .select-wrapper input.select-dropdown{
  border: none !important;
  border-radius: 22px;
  height: 41px;
  color: gray !important;
}

.ticket 
.select-wrapper input.select-dropdown {
  border: none !important;
  border-radius: 22px !important;
  height: 100% !important;
  margin-top: 10px;
}

.ticket .editar-input .select-dropdown li.disabled, .select-dropdown li.disabled>span, .select-dropdown li.optgroup {
  background-color: var(--naranja-input);
  color: gray !important;
  border-radius: 22px;
  height: 41px;
}

.ticket ul:not(.browser-default) {
  background-color: var(--naranja-input);
  border-radius: 22px;
  top: -5px !important;
}

.ticket .editar-input .dropdown-content li>a, .dropdown-content li>span {
  font-size: 16px;
  color: #635c4f !important;
  display: block;
  line-height: 22px;
  padding: 14px 16px;
  border-radius: 22px;
  border: none !important;
}

.ticket .dropdown-content .select-dropdown{ 
  margin-top: 5px !important;
}

.ticket .edit-input-textarea {
  height: 150px !important;
  border-radius: 25px !important;
  background-color: var(--naranja-input) !important ;
  padding: 10px !important;
  width: 100%;
  border: solid var(--naranjo-contapapaya);
  color: black;
}

.ticket .ed-inp-textarea{
  border: none !important;
  box-shadow: none !important;
  color: #635c4f !important;
  max-height: 110px;
  margin-top: 7px;
}

.ticket .ed-inp-textarea::placeholder {
    color: rgb(80, 80, 80); 
    opacity: 1; 
}


.ticket .ed-inp-textarea::-webkit-scrollbar {
  width: 8px !important; 
  border-radius: 5px !important; 
}

.ticket .ed-inp-textarea::-webkit-scrollbar-thumb {
  background-color: #888 !important; 
  border-radius: 5px !important; 
}

.ticket .ed-inp-textarea::-webkit-scrollbar-track {
  background-color: #f0f0f0 !important; 
  border-radius: 5px !important; 
}

.ticket input:-webkit-autofill:focus {
  border: none !important;
  background-color: var(--naranja-input) !important; 
  box-shadow: 0 0 0px 1000px var(--naranja-input) inset !important; 
  color: var(--morado-letra) !important;
  border-radius: 22px !important;
}

.ticket input:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: var(--naranja-input) !important;

}

.ticket input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px var(--naranja-input) inset !important; 
  border-radius: 22px !important;
  border: var(--naranja-input) !important;
  height: 26px !important;
  width: 100% !important;
  color: var(--morado-letra) !important;
}

.ticket .ed-btn{
    height: 50px;
    width: 150px;
    background-color: var(--naranjo-contapapaya);
    color: white;
    font-size: 30px;
}

.ticket .custom-select {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #f0a345; 
  border-radius: 20px; 
  background-color: #f0c688;
  padding: 5px; 
  align-items: center; 
}

.ticket .custom-select span {
  margin: 2px;
  padding: 5px;
  background-color: white; 
  border-radius: 5px; 
}




/*********************************** CHAT *******************************************/

.chat .chat-container {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
  background-color: white;
}

.chat .chat-header {
  background-color: var(--naranjo-contapapaya);
  padding-top: 13px;
  text-align: center;
  color: white;
  font-weight: bold;
}

.chat .chat-body {
  flex: 1;
  padding: 10px;
  min-height: 370px;
  max-height: 370px;
  overflow-y: auto;
  background-color: var(--verde-chat);
}

.chat .chat-footer {
  background-color: var(--naranjo-contapapaya); 
  padding: 10px;
  display: flex;
  align-items: center;
  border-top: 1px solid #ddd;
}

.chat .chat-input {
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-right: 10px;
}

.chat .enviar-btn {
  background-color: #007bff;
  color: white;
}

.chat .message {
  display: flex;
  align-items: center;
  margin: 10px 0;
  padding: 8px;
  border-radius: 5px;
}

.chat .message.received {
  justify-content: flex-start;
}

.chat .message.sent {
  justify-content: flex-end;
}

.chat .modal {
  width: 100%;
  max-height: 80% !important;
  box-sizing: border-box; 
}

.chat .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--naranjo-contapapaya);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 10px;
}

.chat .left-avatar {
  margin-right: 10px;
  order: 0;
}

.chat .right-avatar {
  margin-left: 10px;
  order: 1;
}

.chat .message-content {
  max-width: 60%;
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
  position: relative;
}

.chat .message.sent .message-content {
  background-color: white;
  color: var(--negro-fondo);
}


.chat .alerta-cierre-ticket
{
  background-color: #f8d7da; 
  border: 1px solid #f5c6cb; 
  color: #721c24;
  border-radius: 4px;
}

.chat .alerta-espera-soporte
{
  background-color: var(--naranjo-contapapaya); 
  border: 1px solid #f17801; 
  color: whitesmoke;
  border-radius: 4px;
}


.color-principal-papaya {
  color: var(--naranjo-contapapaya) !important;
} 

.w-100 {
  width: 100% !important;
}

.w-50 {
  width: 50% !important;
}

.w-10 {
  width: 10% !important;
}

.txt-black {
  color: black !important;
}


.bg-transparante-none {
  background-color: transparent;
  box-shadow: none;
  border: none ;
}

.breadcrumb.modificado-negro {
  font-size: 18px;
  color: rgba(0,0,0,1);
}
.modificado-negro:before{
  color : black !important
}

.Flx-box-mef {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.documento-blanco {
  background-color: white;
  width: 99% !important;
  border-radius: 9px;
  height: 87vh;
}

.tb-mef {
    max-height: 200px !important; 
    overflow-y: auto !important;
    width: 100% !important;
    display: block !important;
}
/*********************************** Tarjeta informacion robot *******************************************/

.carta-giratoria {
  padding: 1rem 2rem;
  border-radius: 1.25rem;
}
.carta-giratoria .loader-giratorio {
  color: rgb(124, 124, 124);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 25px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 40px;
  padding: 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
}

.carta-giratoria .words {
  overflow: hidden;
  position: relative;
}
.carta-giratoria .words::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    var(--bg-color) 10%,
    transparent 30%,
    transparent 70%,
    var(--bg-color) 90%
  );
  z-index: 20;
}

.carta-giratoria .word {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: #956afa;
  animation: spin_giratorio 6s infinite;
}

@keyframes spin_giratorio {
  10% {
    -webkit-transform: translateY(-102%);
    transform: translateY(-102%);
  }

  25% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  35% {
    -webkit-transform: translateY(-202%);
    transform: translateY(-202%);
  }

  50% {
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
  }

  60% {
    -webkit-transform: translateY(-302%);
    transform: translateY(-302%);
  }

  75% {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
  }

  85% {
    -webkit-transform: translateY(-402%);
    transform: translateY(-402%);
  }

  100% {
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
  }
}




/************************************************  Selector Empresa Soporte ************************************************/

.fixed-action-btn ul {
  left: -230px !important;
  right: -15px !important;
  text-align: center;
  position: absolute;
  bottom: 64px;
  margin: 0;
  visibility: hidden;
}
