<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Center the loader */
#loader {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    animation: spin 1s infinite linear;
    border-left: 4px solid #1abb9c;
    border-radius: 50%;
    height: 200px;
    width: 200px;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

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

/* Add animation to "page content" */
.animate-bottom {
    height: 94.5%;
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from { bottom:0px; opacity:0 }
    to { bottom:0px; opacity:1 }
}

@keyframes animatebottom {
    from{ bottom:0px; opacity:0 }
    to{ bottom:0; opacity:1 }
}

#animate {
    &lt;!-- display: none; --&gt;
    &lt;!-- text-align: center; --&gt;
}

.loader-text {
    position: absolute;
    font-size: 30px;
    text-align: center;
    box-sizing: border-box;
    max-width: 350px;
    margin: auto;
    top: 50.5%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    cursor: pointer;
    color: #1abb9c;
    font-family: arial, sans-serif;
}

.loader-text:after {
  content: 'Loading';
  animation: load 2s linear infinite;
}

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

@keyframes load {
  0% {
    content: '';
  }
  16% {
    content: '.';
  }
  32% {
    content: '..';
  }
  48% {
    content: '...';
  }
  72% {
    content: '..';
  }
  88% {
    content: '.';
  }
  100% {
    content: '';
  }
}</pre></body></html>