@charset "utf8";

.loading {
    display: flex;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    background: #FFBB00;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.loading .bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  background: #fff;
  animation: loading_bar 10.3s infinite ease;
}
@keyframes loading_bar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.loading.active {
  display: none;
}
.material-icons {
    font-size: 10rem;
}

.lg-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.sm-text {
    font-size: 1.5rem;
}

#dynamic {
    display: inline-block;
    position: relative;
}

#dynamic::after {
    content: "";
    display: block;
    position: absolute;
    right: -10px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #fff;
}

#dynamic.active::after{
    display: none;
}
.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    4.9% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    5% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }