.ci {
  display: flex !important;
  justify-content: start !important;
  align-items: center !important;
}

.cc {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.w-32r {
  width: 32rem !important;
}

.cover-container {
  max-width: 65em !important;
}

.f8r {
  font-size: 0.8rem !important;
}

.h-93 {
  height: 93% !important;
}

.h16x {
  height: 16px !important;
}

.invisible {
  display: none !important;
}

.puntero {
  cursor: pointer !important;
}

.loader {
  width: 148px;
  height: 148px;
  display: inline-block;
  position: relative;
}

.loader::after,
.loader::before {
  content: '';
  box-sizing: border-box;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s linear infinite;
}

.loader::after {
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

#modalWait {
  background: #4f4f4f7a !important;
  backdrop-filter: blur(1px);
}

.btn-cancel {
  background-color: lightgray;
  color: black;
}

.btn-cancel:hover {
  background-color: darkgray;
  color: black;
}

.form-control:focus{
  border-color: #198754 !important;
}