@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v18/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdr.ttf) format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v18/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf) format('truetype');
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 300;
}

html, body {
  background-color: black;-webkit-print-color-adjust: exact;
}

body{   

  font-family: 'Source Sans Pro', sans-serif;
  color: black;
  font-weight: 300;

    background-color: #CCC no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    width:100%;
    height: 100%     
    min-height: 100vh;

    /* compatible resto de navegadores*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

body ::-webkit-input-placeholder {
  /* WebKit browsers */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  font-weight: 300;
}
body :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  opacity: 1;
  font-weight: 300;
}
body ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  opacity: 1;
  font-weight: 300;
}
body :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  font-weight: 300;
}

.wrapperjp {
  background: #000000;
  background: linear-gradient(to bottom right, #000000 0%, #000000 100%);
  position: absolute;
  /*top: 50%;*/
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: -210px;
  overflow: hidden;
}
.wrapper.form-success .container h1 {
  transform: translateY(85px);
}



 .flex-init-setup {
     display: -webkit-box;
     display: -moz-box;
     display: -webkit-flex;
     display: -ms-flexbox;
     display: flex;
 }
 .flex-ppal-setup {
     -webkit-flex-flow: column wrap;
     -moz-flex-flow: column wrap;
     flex-flow: column wrap;
     -webkit-justify-content: center;
     -moz-justify-content: center;
     justify-content: center;
 }

.containerlogin{
  color:white;
  viewport-units-buggyfill; width: 90%; height: auto; top: calc(50vh - 100px); left: calc(50vw - 100px);
 max-width: 600px;
  margin: 10% auto;
  padding: 80px 0;
  height: 400px;
  text-align: center;
}

#login-button {
    background-color: #007bff; /* Color inicial */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.2s, transform 0.1s;
}

/* Estilo para toques y clics */
#login-button:active,
#login-button:hover {
    background-color: #ced4da; /* Nuevo color */
    transform: scale(0.90); /* Efecto de reducción */
    transition: none; /* Elimina retraso en el cambio */
}

.container{
   background-color: black;
  viewport-units-buggyfill; width: 90%; height: auto; top: calc(50vh - 100px); left: calc(50vw - 100px);
  max-width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  height: 90%;
  text-align: left;
}

.container h10 {
  font-size: 40px;
  transition-duration: 1s;
  transition-timing-function: ease-in-put;
  font-weight: 200;
}


.container > footer p {
  text-align: center; /* center align it with the container 90vmin */

}

form input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  width: 250px;
  border-radius: 3px;
  padding: 10px 15px;
  margin: 0 auto 10px auto;
  display: block;
  text-align: center;
  font-size: 18px;
  color: white;
  transition-duration: 0.25s;
  font-weight: 300;
}
form input:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
form input:focus {
  background-color: white;
  width: 300px;
  color: #3d85c6;
}
form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  background-color: white;
  border: 0;
  padding: 10px 15px;
  color: #000000;
  border-radius: 3px;
  width: 250px;
  cursor: pointer;
  font-size: 18px;
  transition-duration: 0.25s;
}
form button:hover {
  background-color: #f5f7f9;
}
.bg-bubbles {
  position: relative;
  margin: -30px auto 0 auto;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.bg-bubbles li {
  position: absolute;
  list-style: none;
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  top: 0px;
  bottom: 0px;
  -webkit-animation: square 15s infinite;
  animation: square 15s infinite;
  transition-timing-function: linear;
}
.bg-bubbles li:nth-child(1) {
  left: 10%;
}
.bg-bubbles li:nth-child(2) {
  left: 20%;
  width: 80px;
  height: 80px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 17s;
          animation-duration: 17s;
}
.bg-bubbles li:nth-child(3) {
  left: 25%;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.bg-bubbles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  -webkit-animation-duration: 22s;
          animation-duration: 22s;
  background-color: rgba(255, 255, 255, 0.25);
}
.bg-bubbles li:nth-child(5) {
  left: 70%;
}
.bg-bubbles li:nth-child(6) {
  left: 80%;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  background-color: rgba(255, 255, 255, 0.2);
}
.bg-bubbles li:nth-child(7) {
  left: 32%;
  width: 160px;
  height: 160px;
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}
.bg-bubbles li:nth-child(8) {
  left: 55%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
}
.bg-bubbles li:nth-child(9) {
  left: 25%;
  width: 10px;
  height: 10px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
  background-color: rgba(255, 255, 255, 0.3);
}
.bg-bubbles li:nth-child(10) {
  left: 90%;
  width: 160px;
  height: 160px;
  -webkit-animation-delay: 11s;
          animation-delay: 11s;
}
@-webkit-keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-700px) rotate(600deg);
  }
}
@keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-700px) rotate(600deg);
  }
}


/* The white background content wrapper */
.content {
  background-color: #fff;
  padding: 20px;
  margin: 20px -20px; /* negative indent the amount of the padding to maintain the grid system */
  -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
    box-shadow: 0 1px 2px rgba(0,0,0,.15);
    
}

/* Page header tweaks #f5f5f5 */
.page-header {
  background-color: #3CA7DE00;
  padding: 20px 20px 10px;
  margin: -20px -20px 20px;
   background-repeat: no-repeat, repeat;
    background-size: contain;
    background-position: center;
}

/* Give a quick and non-cross-browser friendly divider */
.content .span4 {
  margin-left: 0;
  padding-left: 19px;
  border-left: 1px solid #eee;
}

.topbar .btn {
  border: 0;
}

/* This is the <td> our inline table is nested in */
.inline-cell {
  background-color: #ccc !important;
}

.inline-table td {
    padding:10px !important;
    color:#fff !important;
    font-size: 18px !important;
    background-color:#222 !important;
    font-weight:normal !important;
    -moz-box-shadow:0px -1px 4px #000 !important;
    -webkit-box-shadow:0px -1px 4px #000 !important;
    box-shadow:0px -1px 4px #000 !important;
    text-shadow:0px 0px 1px #fff !important;
    text-shadow:1px 1px 1px #000 !important;

}

/* Centers images to the middle of the cell for inline tables */
#data-table img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#data-table .table_img, #data-table .table_img-clicked {
  cursor: pointer;
}

/* Wider bootstrap modal */
.modal-wide {
    width: 800px;
    /* must be half of the width, minus scrollbar on the left (30px) */
    margin-left: -400px;
}

/* Centers bootstrap inputs in cell <td> */
.table input, select {
  margin:3px 0; !important;
}

td div.right { text-align:right; }










.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Fondo semitransparente */
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    color: white;
    font-size: 14px;
    font-family: sans-serif;
}


.bottom-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Fondo semitransparente */
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    color: white;
    font-size: 14px;
    font-family: sans-serif;
}

.icon-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}



/* Botón de instalación */
#installButton {
    display: flex; /* Para centrar contenido */
    align-items: center; /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
    width: 240px; /* Ancho ajustado */
    height: 85px; /* Altura ajustada */
    background-color: #000000; /* Fondo blanco */
    color: #007bff; /* Texto azul */
    font-size: 16px; /* Tamaño del texto */
    font-weight: bold; /* Texto en negrita */
    border: 2px solid #fff; /* Borde azul */
    border-radius: 25px; /* Bordes redondeados */
    padding: 5px 15px; /* Espaciado interno */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Sombra */
    cursor: pointer; /* Cambia el cursor al pasar */
    transition: transform 0.2s ease, background-color 0.3s ease; /* Animaciones */
    z-index: 1000; /* Asegúrate de que esté visible */
    position: fixed; /* Fijo en pantalla */
    bottom: 30%; /* A 20px del borde inferior */
    left: 50%; /* A 50% del ancho del viewport */
    transform: translate(-50%, -50%);
}

/* Imagen dentro del botón */
.install-icon {
  
    width: 200px; /* Ancho de la imagen */
    height: 74px; /* Altura de la imagen */
    margin-right: 10px; /* Espaciado entre la imagen y el texto */
}

/* Efecto hover */
#installButton:hover {
    background-color: #000000; /* Fondo azul */
    color: #ffffff; /* Texto blanco */
    #transform: scale(1.05); /* Agrandar un poco */
}

/* Efecto clic */
#installButton:active {
    #transform: scale(0.95); /* Reducir ligeramente */
}



.chat_window {
  top:0;
  #position: absolute; 
  box-sizing: border-box;
  display: block;
  width: calc(100% - 0px);
  max-width: 100%;
  #height: 80%;
  border-radius: 5px;
  background-color: #fff;
  #background-image: url('../img/wp_132.jpg');
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background-color: #212529;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  position: fixed;
  height: calc(100% - 40px);
  overflow: hidden; /* Evitar scroll en chat_window */
  z-index: 1; /* Prioridad menor */
 
}

.msgstable {
  overflow-y: auto; /* Habilitar scroll vertical */
  max-height: 100%; /* Asegurar que no crezca fuera del contenedor */
  z-index: 8; /* Asegurar que está por encima */
  position: relative; /* Asegurar comportamiento dentro de chat_window */
  background: transparent;
}

.top_menu {
  top:0;
  background-color: #000000;
  width: 100%;
  padding: 20px 0 15px;
  box-shadow: 0 1px 30px #000000;
}

.top_menu .buttons {
  margin: -3px 0 0 3px;
  position: relative;
}

.top_menu .centros {
   width:auto;
  display: inline-block;

  text-align: center;
}

.top_menu .buttons .button {
  width: 32px;
  height: 32px;
  #border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.top_menu .buttons .button.decrease {

  position: absolute;
  right:8%;
  text-align: center;
  color: #f8f9fa;
  font-size: 10;
  font-weight: 700; 
  background-color: #212529; 
  background-image: url('../img/decrease-font-xxl.png');
  background-repeat: no-repeat;
  background-size: 24px;
}

.top_menu .buttons .button.increase {
  position: absolute;
  right:17%;
  text-align: center;
  color: #f8f9fa;
  font-size: 10;
  font-weight: 700; 
  background-color: #212529;
  background-image: url('../img/increase-font-xxl.png');
  background-repeat: no-repeat;
  background-size: 24px;
}

.top_menu .buttons .button.close {
  
  right:0;
  bottom: 5;
  text-align: center;
  color: #f8f9fa;
  font-size: 10;
  font-weight: 700; 
  #background-color: #212529; 
  text-shadow: 0px 0px #212529; 
  background-image: url('../img/trash.png.1');
  background-repeat: no-repeat;
  background-size: 32px;
}

.iconChatIMG {
    left:14%;
    top:-14%;
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ff5c00;
}

.top_menu .buttons .button.minimize {
  width: 60%;
  height:auto;
  left:24%;
  position: absolute;
  text-align: left;
  color: #f8f9fa;
  font-size: 110%;
  font-weight: 700; 
  background-color: #000; 
  text-shadow: 0px 0px #000; 
}

.background .background1 {
    background-image: url('../img/backarrow.png');
}

.background .background2 {
    background-image: url('../img/backarrow.png');
}

.top_menu .buttons .button.maximize {
  width: 20%;
  left: 3%;
  background-image: url('../img/backwhite.png');
  background-repeat: no-repeat;
  background-size: 17px;
  color: #7bbef7; 
  text-shadow: 2px 2px #212529;  
  font-size: 160%;
  font-weight: 300;  
}




.top_menu .title {
  text-align: center;
  color: #bcbdc0;
  font-size: 20px;
}



.messages {
  bottom: 65px;
  position: fixed;
  list-style: none;
  padding: 20px 10px 0 10px;
  margin: 0;
  width: 100%;
  height: calc(100% - 120px);
  overflow-y: scroll;
  background-image: url('../img/ts7vuoswhwf41.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  overflow-y: auto; /* Habilitar scroll vertical */
  max-height: 100%; /* Asegurar que no crezca fuera del contenedor */
  z-index: 10; /* Asegurar que está por encima */
}



.messages .message {
  clear: both;
  overflow: hidden;
  margin-bottom: 15px;
  transition: all 0.5s linear;
  opacity: 1;
}

.messages .message.left .avatar {
  background-color: #f5886e;
  display: none;
  float: left;
}
.messages .message.left .text_wrapper {
  background-color: #2c3e50; /* Color de fondo para el mensaje recibido */
  color: #000;
  float: left;
  
}

.messages .message.left .text {
  color: #ffffff;
  #text-overflow: ellipsis;
  overflow-wrap: break-word;
  #overflow: hidden;
}
.messages .message.right .avatar {
  background-color:  #c7eafc;
  display: none;
  float: right;
}
.messages .message.right .text_wrapper {
  background-color: #154c37; /* Color de fondo para el mensaje enviado */
  color: #ffffff;
  float: right;
  margin-right: 10px;

}

.messages .message.right .text {
  color: #e9e9e9;
  #text-overflow: ellipsis;
  overflow-wrap: break-word;
  #overflow: hidden;
}
.messages .message.appeared {
  opacity: 1;
}
.messages .message .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-block;
  background-image: "";
  background-repeat: no-repeat;
  background-size: 36px;    
}
.messages .message .text_wrapper {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 10px;
  max-width: 70%;
  position: relative;
  font-size: 16px;
  word-wrap: break-word;
}
.messages .message .text_wrapper::after, .messages .message .text_wrapper:before {
  top: 6px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.messages .message .text_wrapper::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.messages .message .text_wrapper::before {
  border-width: 15px;
  margin-top: -2px;
}
.messages .message .text_wrapper .text {
  font-size: 18px;
  font-weight: 600;
}
}

.messages .message .date_wrapper {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  margin-top: 5px;
}
.messages .message .date_wrapper .datetext {
  font-size: 12px;
  font-weight: 300;
  
}
.messages .message .date_wrapper::after, .messages .message .datetext:before {
  top: 6px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.messages .message .date_wrapper::after {
  border-width: 13px;
  margin-top: 0px;
}
.messages .message .date_wrapper::before {
  border-width: 15px;
  margin-top: -2px;
}

.messages .message.right .date_wrapper {
  margin-right: 10px;
  color: #e0f7e9;

}

.messages .message.right .datetext {
  font-style: italic;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
}

.messages .message.left .date_wrapper {
  color: #999;

}

.messages .message.left .datetext {
  font-style: italic;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
}

.messages .avatar .avatar_wrapper {
  display: inline-block;
  top: -6px;
  padding: 12px;
  border-radius: 6px;
  width: calc(100% - 85px);
  min-width: 10px;
  position: relative;
 
}

.messages .message .avatar .avatartext {
  font-size: 18px;
  font-weight: 800;
  color: #f9f9f9;
  text-align: center;
  background-image: "";
  background-repeat: no-repeat;
  background-size: 36px;    
}

.bottom_wrapper {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 65px;
  background-color: #000;
  padding: 0px 20px;
  position: fixed;
  bottom: 0;
}
.bottom_wrapper .message_input_wrapper {
  display: inline-block;
  bottom: -8;
  height: 35px;
  border-radius: 25px;
  border: 1.5px solid #bcbdc0;
  background-color: #fafafa;
  width: calc(100% - 85px);
  position: relative;
  padding: 0 20px;
  left:35
}
.bottom_wrapper .message_input_wrapper .message_input {
  border: none;
  height: 100%;
  box-sizing: border-box;
  width: calc(100% - 40px);
  background-color: #fafafa;
  position: absolute;
  outline-width: 0;
  color: #1000ffbff;
  font-size: 18px;
  -webkit-appearance: none;
  
  outline: none; /* Elimina el borde azul */
  border: none;  /* Opcional: también elimina cualquier borde */
}

.bottom_wrapper .attach_message {
  position: absolute;
  width: 45px;
  height: 45px;
    border: none;
    box-shadow: none;
    background: none;
  bottom: 15;
  display: inline-block;
  background-color: #000;
  background-image: url('../img/pngtree-vector-folder-icon-png-image_855010.jpg');
  background-repeat: no-repeat;
  background-size: 45px;
  left:5;
  color: #000;
  cursor: pointer;
  transition: all 0.2s linear;
  text-align: center;
  float: left;
}

.bottom_wrapper .send_message {
  position: absolute;
  width: 60px;
  height: 35px;
  bottom: 21;
  display: inline-block;
  #border-radius: 15px;
  #background-color: rgba(0,0,0,.1);
  #border: 2px solid #007bff;
  background-image: url('../img/10924424.png');
  background-repeat: no-repeat;
  background-size: 35px;
  right:0;
  color: #f3f3f3;
  cursor: pointer;
  transition: all 0.2s linear;
  text-align: center;
  float: right;
}


.bottom_wrapper .send_message:hover {
  color: #a3d063;
  background-color: #000;
}
.bottom_wrapper .send_message .text {
  font-size: 15px;
  font-weight: 300;
  display: inline-block;
  line-height: 35px;
}

.message_template {
  display: none;
}


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.h12 {
  color: white;
  margin-top: 28px;
  margin-left: -10px;
  font-size: 30px;
}


    #requestPermissionBtn {
        display: none; /* Ocultar por defecto, se muestra en el script si es necesario */
        padding: 15px 30px; /* Aumenta el tamaño del botón */
        font-size: 18px; /* Aumenta el tamaño de la fuente */
        border: none;
        border-radius: 5px; /* Bordes redondeados */
        background-color: #007bff; /* Color de fondo */
        color: white; /* Color del texto */
        cursor: pointer;
        transition: background-color 0.3s; /* Transición para cambio de color */
        position: absolute; /* Para centrar absolutamente */
        top: 50%; /* Centrado vertical */
        left: 50%; /* Centrado horizontal */
        transform: translate(-50%, -50%); /* Ajuste final para centrar */
    }

    #requestPermissionBtn:hover {
        background-color: #0056b3; /* Cambio de color al pasar el mouse */
    }

  .BadgeChat{
    width: auto;
  }
  .photo {
    flex: 0 0 50px;
    width: 15%;

  }
  .photo .ChatIMG {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid #ff5c00;
        display: block;
    }

  .details {
    width: 57%;
  }
  .name {
    display: block;
    font-size: 1.1em;
    color: #fff;
    font-weight: bold;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; 
    
  }


#badge-sents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto; /* Asegúrate de que el ancho sea dinámico */
}

#badge-sents span {
    display: block;
    text-align: center;
    margin: 0; /* Ajusta los márgenes si es necesario */
}


#DataContact{

  font-size: 12;
  color: #fff;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;  
}

#badge-sent {

    position: relative; 
    font-size: 1.0em; /* Tamaño del texto moderado */
    padding: 4px 10px; /* Espaciado interno más reducido */
    line-height: 1.2; /* Centrado vertical del texto */
    border-radius: 20px; /* Mantiene la forma de "pill" */
    min-width: 25px; /* Tamaño mínimo más pequeño */
    min-height: 25px; /* Tamaño mínimo más pequeño */
}

  .title {
    font-size: 14;
    line-height: 1.1;
    display: block;
    padding-top: 0.6em;
  }
  .employeeID,
  .country {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 50px;
    font-weight: bold;
    color: #898989;
  }
  td.photo, .employeeID {
    text-align: center;
  }
  td.Badge, .employeeID {
    text-align: center;
  }

  .k-grid-header .k-header {


    font-size: 160%;
    font-weight: bold;
    text-align: center;
    color: #f8f9fa;
    text-align: center;
    border-color: #17202a;
    border-width: 0;
    height:60px;
    padding: 10px 20px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#111), color-stop(100%,#111));
  }


  .grid{
    top:0;
  }

  .K-grid  {
    top:10;
    border-width: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#111), color-stop(100%,#111));

  }
  .k-grid td {
    border-width: 0;
    border-bottom: 0.5px solid; /* Define el borde */
    border-image: linear-gradient(to bottom, #17202a, #212529) 0.5; /* Aplica un borde en forma de gradiente rojo */
    

    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#111), color-stop(100%,#111));
    font-weight: bold ;
    color: #f8f9faeb !important;         
    padding: 10px;
  }

  .k-grid-content {
    background-color: #111;
    width: 100%;
  }

  .k-grid .k-grid-search {
    margin-left: auto;
    margin-right: 0;
  }

  .k-grid .k-header{
      background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#111 ), color-stop(100%,#111));
  }

.k-grid-content tr:last-child {
    visibility: hidden; /* Hace la fila invisible pero mantiene el espacio */
}

.k-grid tr:hover,
.k-grid td:hover {
    background-color: transparent !important;
    color: inherit !important;
}

.modal-header .close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1050;
    font-size: 30px;
    color: #fff;
    background: transparent;
    border: none;
    padding: 5px;
}
  .modal .modal-dialog .modal-content .modal-header {
    padding: 9px 15px;
    border-bottom: 1px solid #000;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#111), color-stop(100%,#111));
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;

  }



        .icon-group {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .icon {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }

        .icon-group span {
            font-size: 16px;
        }

/* Estilos del modal */
        .modalSetting {
            display: none; /* Oculto por defecto */
            position: fixed;
            top: 50%; /* Centrado vertical */
            left: 50%; /* Centrado horizontal */
            transform: translate(-50%, -50%); /* Ajusta el centro exacto */
            width: 60%; /* Ancho del modal */
            max-width: 400px; /* Ancho máximo */
            height: auto; /* Ajusta la altura automáticamente */
            background-color: #000; /* Fondo del modal */
            color: #fff; /* Color del texto */
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .modalSetting-content {
            background: #000;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .modalSetting button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            background-color: #007BFF;
            color: white;
            cursor: pointer;
            font-size: 16px;
        }

        .modalSetting button:hover {
            background-color: #0056b3;
        }






.central-link {
  
    display: inline-block; /* Para que se respeten los márgenes y bordes */
    text-decoration: none; /* Sin subrayado */
    color: #007BFF; /* Color azul */
    font-size: 1.1rem; /* Tamaño grande */
    font-weight: bold; /* Negrita */
    padding: 10px 20px; /* Espaciado interno */
   
    border-radius: 8px; /* Bordes redondeados */
    background-color: #000000; /* Fondo blanco */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra */
    transition: all 0.3s ease; /* Transición suave */
    text-align: center; /* Centrar texto */
    position: absolute; /* Posición absoluta para centrar */
    bottom: 1%; /* A mitad de la altura */
    left: 50%; /* A mitad del ancho */
    transform: translate(-50%, -50%); /* Ajustar al centro */
}
/* Estilo al pasar el mouse */
.central-link:hover {
    color: #fff; /* Texto blanco */
    background-color: #007BFF; /* Fondo azul */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Sombra más intensa */
}
/* Estilo al pasar el mouse */
.central-link:hover {
    color: #fff; /* Texto blanco */
    background-color: #007BFF; /* Fondo azul */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Sombra más intensa */
}



.navjp {
  height: 50px;
  width: 100%;
  background-color: #272727;
  position: relative;
  z-index: 1;
}

.navjp > .navjp-header {
  display: inline;
}

.navjp > .navjp-header > .navjp-title {
  display: inline-block;
  font-size: 25px;
  color: #fff;
  padding: 8px 10px 10px 10px;
}

.navjp > .navjp-btn {
  display: none;
}

.navjp > .navjp-links {
  display: inline;
  float: right;
  font-size: 20px;
}

.navjp > .navjp-links > a {
  display: inline-block;
  padding: 13px 8px 13px 20px;
  text-decoration: none;
  color: #efefef;
}

.navjp > .navjp-links > a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.navjp > #navjp-check {
  display: none;
}

@media (max-width:600px) {
  .navjp > .navjp-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .navjp > .navjp-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .navjp > .navjp-btn > label:hover,.navjp  #navjp-check:checked ~ .navjp-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .navjp > .navjp-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  .navjp > .navjp-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #333;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }
  .navjp > .navjp-links > a {
    display: block;
    width: 100%;
  }
  .navjp > #navjp-check:not(:checked) ~ .navjp-links {
    height: 0px;
  }
  .navjp > #navjp-check:checked ~ .navjp-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
}

.install-app-btn-container {
  display: none;
}

@media screen and (max-width:800px ) {


