@font-face {
  font-family: "ProximaNova-Regular";
  src: local("ProximaNova-Regular"), url("./fonts/ProximaNova_Regular.ttf");
}

.wrapper {
  display: flex;
  width: 100%;
  position: relative;
  flex-direction: column;
  overflow: hidden;
}

.wrapper.welcome-page {
  min-height: 100vh;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.wrapper.welcome-page.loader-page {
    position: fixed;
    z-index: 99;
    background-color: rgba(250, 250, 250, 1.0);
    min-height: 100vh;
    height: 100%;
}

.logo {
    margin-bottom: 10px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.dot-flashing {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background-color: #ff6200;
  color: #ff6200;
  animation: dotFlashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}

.dot-flashing::before,
.dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background-color: #ff6200;
  color: #ff6200;
  animation: dotFlashing 1s infinite alternate;
}

.dot-flashing::before {
  left: -30px;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 30px;
  animation-delay: 1s;
}
.loading-dots {
  margin-top: 20px;
}

@keyframes dotFlashing {
  0% {
    background-color: #ff6200;
  }
  50%,
  100% {
    background-color: #ffebdf;
  }
}