.float_total {
    display:block;
    width:120px;
    height:70px;
    color:black;
    position: fixed;
    right:20px;
    /*bottom:20px;*/
    bottom:40px;
    border-radius:50%;
    /*line-height:80px;*/
    line-height:20px;
    text-align:center;
    z-index:999;
}

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0.5;
    background: url("../images/loading.gif") center no-repeat #fff;
}

.card-login {
    background-color: rgba(255, 255, 255, 0.5); /* Color de fondo con transparencia */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
    padding: 20px; /* Espacio interno */
    width: 300px; /* Ancho del card */
  }
  
  .card-content-login {
    backdrop-filter: blur(5px); /* Difuminado del fondo */
    padding: 20px; /* Espacio interno */
  }
  
  
.login-body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-size: cover;
  background-image: url("../images/login.png");
  position: relative;
  height: 100vh;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 2;
}

.login-form {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 400px;
}

.login-box-msg {
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
}

.login-input-group {
  display: flex;
  align-items: center;
  position: relative;
}

.login-input-group input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}

.input-group-text {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 0 5px 5px 0;
  padding: 10px;
  color: #333;
}

button.login-button {
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button.login-button:hover {
  background: #0056b3;
}

.icheck-primary {
  display: flex;
  align-items: center;
}

.icheck-primary input {
  margin-right: 5px;
}

.icheck-primary label {
  color: #fff;
  margin-bottom: 0;
}

.truncate-text {
  max-width: 200px; /* Ajusta el tamaño según tus necesidades */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

  