.modal-spinner {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  justify-content: center;
  align-items: center;
  z-index: 1005;
  color: #f7871a;
}

.modal-spinner.cargando {
  display: flex;
  flex-direction: column;
}

.modal-spinner.bg-dark-opacity {
  background: rgba(0, 0, 0, 0.7);
}

.modal-spinner.bg-dark-no-opacity {
  background: rgba(0, 0, 0, 1);
}

.modal-spinner.bg-transparent-blur {
  background-color: transparent;
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  opacity: 1;
}

.modal-spinner .spinner-border {
  width: 8rem;
  height: 8rem;
}

.modal-spinner .logo-spinner {
  display: block;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 7rem;
  height: 7rem;
}

.progress-custom-bar-container {
  width: 30%;
  position: relative;
  overflow: hidden;
  height: 16px;
  background-color: rgb(250, 213, 171);
  border: 1px solid #F39224;
  border-radius: 21px
}

.progress-custom-bar {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  transition: transform 0.2s linear;
  transform-origin: left;
  background-color: #F39224;
}

.progress-custom-bar-bar1 {
  width: auto;
  animation: indeterminate1 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.progress-custom-bar-bar2 {
  width: auto;
  animation: indeterminate2 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.15s infinite;
}

@media (max-width: 570px) {
  .progress-custom-bar-container {
    width: 60%;
  }
}

/* Legends: */
/* || represents the viewport */
/* -  represents a light background */
/* x  represents a dark background */
@keyframes indeterminate1{
  /* |-----|---x-||-----||-----| */
  0% { left: -35%; right: 100%; }
  /* |-----|-----||-----||xxxx-| */
  60% { left: 100%; right: -90%; }
  100% { left: 100%; right: -90%; }
}

@keyframes indeterminate2 {
  /* |xxxxx|xxxxx||-----||-----| */
  0% { left: -200%; right: 100%; }
  /* |-----|-----||-----||-x----| */
  60% { left: 107%; right: -8%; }
  100% { left: 107%; right: -8%; }
}


