.interstitial-page {
  padding: 10px 0 50px 0;
}

.interstitial-page .loader {
  position: relative;
  margin: 0 auto 20px auto;
  width: 160px;
  height: 160px;
}

.interstitial-page .loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.interstitial-page .loader .circular-loader {
  animation: rotate 3s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.interstitial-page .loader .loader-gray {
  stroke: #e1e1e1;
  stroke-width: 2.5px;
}

.interstitial-page .loader .loader-path {
  stroke-width: 2.5px;
  stroke: #FF9D00;
  stroke-dasharray: 150, 200;
  stroke-dashoffset: -10;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

.interstitial-page .loader .interstitial-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100px;
  max-height: 100px;
}

.interstitial-page .interstitial-text {
  text-align: center;
  margin: 0 auto 30px auto;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: #101f30;
  max-width: 750px;
}

.interstitial-page .paid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.interstitial-page .paid img {
  height: 60px;
  object-fit: contain;
}

.interstitial-page .paid span {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.7px;
  margin-top: 3px;
  text-transform: uppercase;
}

.interstitial-page .btn {
  width: 100%;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}

@keyframes color {
  0% {
    stroke: #FF9D00;
  }

  40% {
    stroke: #FF9D00;
  }

  66% {
    stroke: #FF9D00;
  }

  80%, 90% {
    stroke: #FF9D00;
  }
}

@media (min-width: 768px) {
  .interstitial-page .loader {
    width: 250px;
    height: 250px;
  }

  .interstitial-page .loader .interstitial-logo {
    max-width: 160px;
    max-height: 160px;
  }

  .interstitial-page .interstitial-text {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .interstitial-page .paid img {
    height: 80px;
  }

  .interstitial-page .paid span {
    font-size: 17px;
    letter-spacing: 1px;
  }

  .interstitial-page .btn {
    width: auto;
    min-width: 250px;
  }
}

@media (min-width: 1200px) {
  .interstitial-page .loader {
    margin-bottom: 30px;
  }
}