.img-logo {
    max-width: 150px;
}

.img-logo-separador {
    height: 80px;
}

.body-login {
    background: url("../img/login/Fondo_Login.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.txt-rojo-kylab {
    color: #E27171 !important;
}

.linea-kylab {
    border: 1px solid #E27171;
    padding: 0;
    opacity: 1;
    margin: 5px;
}

.linea-proimp {
    border: 1px solid #f9b102;
    padding: 0;
    opacity: 1;
    margin: 5px;
}


.txt-amarillo-proimp {
    color: #f9b102;
}

.bg-kylab {
    background-color: #E27171 !important;
    color: #ffffff !important;
}

.bg-proimp {
    background-color: #f9b102 !important;
    color: #ffffff !important;
}

.bg-oscuro {
    background-color: #4f4f4f !important;
    color: #ffffff !important;
}

.bg-red-haze-light {
    background-color: #E27171;
}

.bg-font-red-haze-light {
    color: #ffffff;
}

.bg-blue-sharp-light {}

.bg-font-blue-sharp-light {}

.bg-yellow-saffron-light {}

.bg-font-yellow-saffron-light {}


.scroll {
    position: relative;
    width: 100vw;
    overflow: hidden;
    z-index: 1;
    margin: 0;
    padding: 0;
  }
  
  .m-scroll {
    overflow: hidden;
    height: 100%;
    /*white-space: nowrap;*/
    animation: scrollText 60s infinite linear;
    /*display: flex;
    justify-content: space-between;
    width: fit-content;*/
  }
  
  @keyframes scrollText {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }

  .table-pendientes, .table-pendientes td {
    font-size: 42px;
  }

  .table-pendientes thead th {
    font-size: 46px;
    text-align: center;
    font-weight: bold;
  }

  .table-pendientes thead th.border-left {
    border-left: #ffffff solid 3px;
  }

  @-webkit-keyframes glowing {
    0%,
    100% {
     box-shadow:0 0 -10px #f55061
    }
    40%,
    60% {
     box-shadow:0 0 20px #f55061
    }
   }
   @keyframes glowing {
    0%,
    100% {
     box-shadow:0 0 -10px #f55061
    }
    40%,
    60% {
     box-shadow:0 0 20px #f55061
    }
   }
   .button-glow {
    -webkit-animation:1s infinite glowing;
    animation:1s infinite glowing
   }