@font-face {
  font-family: lexend;
  src: url('../lexend/lexend.ttf');
}

.loader {
  z-index: 999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--body-bg-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
}

.hidden {
  display: none;
}
.fake-loader-container {
  width: 100%;
  height: 100%;
  display: 'flex';
  justify-content: 'center';
  align-items: 'center';
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.fake-loader-container .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: blink infinite;
  animation-duration: 1.2s;
  animation-delay: 1s;
}
.fake-loader-container .fake-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fake-loader-container .fake-loader-label {
  color: #747474;
  font-family: 'lexend', sans-serif;
}
.fake-loader-container .fake-loader-progress {
  margin-top: 10px;
  width: 250px;
  height: 8px;
  border: 1px solid #ff4457;
  border-radius: 20px;
  box-shadow: #ff4457 4b 0px 4px 12px;
}
.fake-loader-container .fake-loader-progress-indicator {
  height: 100%;
  width: 0%;
  text-align: center;
  color: #4c3f2e;
  position: relative;
  overflow: hidden;
  font-style: italic;
  transition: width 0.1s ease-in-out;
}
@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(46px);
  }
}
@keyframes MOVE-BG {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(46px);
  }
}

.fake-loader-container .fake-loader-progress-indicator-bg {
  position: absolute;
  left: -46px;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: -webkit-repeating-linear-gradient(
    145deg,
    #ff4457 1px,
    #ff8144 2px,
    #ff8144 11px,
    #ff4457 12px,
    #ff4457 20px
  );
  background: repeating-linear-gradient(
    -55deg,
    #ff4457 1px,
    #ff8144 2px,
    #ff8144 11px,
    #ff4457 12px,
    #ff4457 20px
  ) !important;
  -webkit-animation-name: MOVE-BG;
  -webkit-animation-duration: 0.6s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-name: MOVE-BG;
  animation-duration: 0.6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Continue from page */

.continue-from-page {
  cursor: pointer;
  user-select: none;
  position: fixed;
  z-index: 9999999999;
  background-color: white;
  top: 7%;
  left: 38px;
  padding: 1rem 1rem 0.7rem 1rem;
  border-radius: 0 20px 20px 0px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  font-family: lexend;
  display: none;
}

#viewerContainer {
  background-color: #f7f7f7;
}
