@media print {
  body {
    overflow: auto;
  }

  :root {
    --version: 2;
  }
}

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

@keyframes dash {

  0%,
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 45, 150;
    stroke-dashoffset: -35px;
  }
}

.template-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  position: relative;
  border-radius: 0;
  background: linear-gradient(344deg, #ddf8f6 0%, #fff 100%);
}

.template-content {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.template-image {
  width: 500px;
}

.template-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 0px;
}

.loader-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.loader {
  width: 100px;
  height: 100px;
}

.loader-circle {
  fill: none;
  stroke: #362a8e;
  stroke-width: 5;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  transform-origin: 50px 50px;
  animation: rotate 1s linear infinite,
    dash 1s ease-in-out infinite;
}

@media screen and (max-width: 600px) {
  .template-main {
    justify-content: unset;
    margin-top: 20vh;
    align-items: center;
  }

  .template-content {
    flex: 1;
    align-items: center;
  }

  .template-image {
    width: 400px;
  }

  .template-title {
    line-height: unset;
    text-align: center;
    margin-bottom: 20vh;
  }
}