label {
  font-weight: bolder;
  text-transform: capitalize;
}
#visibility:hover {
  cursor: pointer;
}

.bg-color {
  background-color: purple;
}
.btn-success:hover,
.btn-primary:hover,
.btn-info:hover,
.btn-danger:hover,
.btn-warning:hover {
  color: black;
  background-color: gray;
  border: white solid 1px;
}
.btn-success,
.btn-primary,
.btn-info,
.btn-danger,
.btn-warning {
  color: whitesmoke;
}

.text-right {
  text-align: right;
}
input[type="number"] {
  text-align: right;
}

body {
  padding: 0px;
  margin: 0px;
  background: black;
}
.totales {
  padding: 10px;
  border-top: solid 2px;
  background: black;
  position: sticky;
  bottom: 0;
}
.animada {
  animation-name: color_change;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.rotar {
  animation-name: a_rotar;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes a_rotar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes color_change {
  from {
    background-color: purple;
  }
  to {
    background-color: blue;
  }
}

.spinner {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("../img/spinner.gif") 50% 50% no-repeat rgb(249, 249, 249);
  opacity: 0.8;
}
.show {
  display: block;
  transition: 0.5s;
}
.hide {
  display: none;
  transition: 0.5s;
}
.readonly {
  background: transparent;
  color: white;
}
.text-transparent {
  visibility: hidden;
}

.desplegar {
  max-height: 2rem;
  display: block;
  color: rgb(12, 12, 12);
  text-decoration: none;
  border-bottom: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  border-radius: 0px 0px 10px 10px;
  transition: 0.5s;
}
.desplegar:hover {
  color: white;
  text-decoration: none;
  background: #dee2e6;
  transition: 0.5s;
}
.modal {
  position: fixed;
  top: 0;
  left: 5%;
  z-index: 1060;
  display: none;
  width: 90%;
  height: 100%;
  /* overflow-x: hidden; */
  /* overflow-y: auto; */
  /* outline: 0; */
}

#backToTop {
  position: fixed;
  top: 30%; /* Ajusta la distancia del borde inferior */
  left: 10px; /* Ajusta la distancia del borde derecho */
  z-index: 9999;
  display: none; /* Empieza oculto */
}

#backToTop:hover {
  background-color: gray;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#goToBottom {
  position: fixed;
  top: 70%; /* Ajusta la distancia del borde inferior */
  right: 10px; /* Ajusta la distancia del borde derecho */
  z-index: 9999;
  display: none; /* Empieza oculto */
}

#goToBottom:hover {
  background-color: gray;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
