@import "/css/color.css";

.overlay-screen {
  color: var(--White);
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 5000;
  top: 0;
  left: 0;
  float: left;
  text-align: center;
  padding-top: 25%;
}

.top-overlay-screen {
  padding-top: 5% !important;
}

.overlay-div-row {
  color: var(--White);
  position: fixed;
  width: inherit;
  z-index: 5000;
  float: left;
  text-align: right;
}

.overlay-div-col {
  color: var(--White);
  position: absolute;
  width: inherit;
  bottom: 0;
  text-align: right;
}

.o-9 {
  background-color: rgba(0, 0, 0, 0.9);
}
.o-95 {
  background-color: rgba(0, 0, 0, 0.95);
}
.o-8 {
  background-color: rgba(0, 0, 0, 0.8);
}
.o-7 {
  background-color: rgba(0, 0, 0, 0.7);
}
.o-6 {
  background-color: rgba(0, 0, 0, 0.6);
}
.o-full {
  background-color: rgba(0, 0, 0, 1);
}
.o-zero {
  background-color: rgba(0, 0, 0, 0);
}

.spinner {
  margin: 0 auto;
  height: 64px;
  width: 64px;
  animation: rotate 0.8s infinite linear;
  border: 5px solid var(--Yellow);
  border-right-color: transparent;
  border-radius: 50%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}