#scrollToTopBtn {
    position: fixed;
    bottom: 0px;
    right: 16px;
    background-color: #2C4257;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    display: none;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #334556; /* Azul más oscuro al pasar el mouse */
  transform: scale(1.1); /* Efecto de zoom */
}

/*page loading*/
.preloader {
    /*background-color: #f7f7f7;*/
    background-color: rgba(220,220,220, 0.9);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    transition: .6s;
    margin: 0 auto;
  }

  .preloader img.jump {
    max-height: 100px;
  }
	
  .preloader-inner{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	}	

  /*custom amine*/
  .loader,
  .bar {
    width: 100px;
    height: 20px;
  }

  .bar {
    position: absolute;
    display: flex;
    align-items: center;
  }

  .bar::before,
  .bar::after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    background: #ff0000;
    opacity: 0;
    border-radius: 10px;
    animation: slideleft 1s ease-in-out infinite;
  }

  .bar1::before {
    animation-delay: 0.00s;
  }

  .bar1::after {
    animation-delay: 0.20s;
  }

  .bar2::before {
    animation-delay: 0.40s;
  }

  .bar2::after {
    animation-delay: 0.60s;
  }

  .bar3::before {
    animation-delay: 0.80s;
  }

  .bar3::after {
    animation-delay: 1.00s;
  }

  @keyframes slideleft {
    0% {
      transform: translateX(120px);
      opacity: 0;
    }

    100% {
      transform: translateX(-20px);
      opacity: 1;
    }
  }

.fade-out {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}	

.usr_active{
	background-color: lavender !important;
}

.modal-content {
	border-radius: 2px !important;
}

.modal-footer {
	padding: 3px !important;
}

.modal-header {
	padding: 10px !important;
}

.modal-header-primary{
	background: #5b90bf;
    color: #fff;
}

.li-destaca2x{
	background-color: #C7CDE9;
	padding: 2px;	
}
.li-destaca3x{
	background-color: #C7CDE9;
	padding: 3px;	
}
.li-3x{
	padding: 3px;	
}

.nav > li > a {
    padding: 5px 15px 5px;
}

.x_content{
	/*height: 73vh;*/
	min-height: clamp(20svh, 35vh, 73vh);
    overflow-y: auto;
	}

thead th {
  position: sticky;
  top: 0;
  background-color: white; /* O el color que desees */
  z-index: 2;
}