.perm-tippy-top {
  background-color: #C04747;
  text-align: center;
  color: white;
}

.perm-tippy-top .perm-tippy-top-contents {
  padding: 5px;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: rgba(255, 255, 255, 0.6);
  z-index: 200000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}

.popularLinks {
  line-height: 1.5;
}

.popularLinks h2 {
  border: none;
  line-height: 1.5;
  margin: 0;
}

.popularLinks ul {
  padding: 0;
}

.popularLinks ul li {
  list-style: none;
}

.popularLinks ul li a {
  text-decoration: underline;
}


/*# sourceMappingURL=../16baf8a91a9b-5.js.map*/