.btn-loader {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  border-top: 1px solid #FFF;
  border-right: 1px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin: 0;
}

.btn-loader-black {
  border-top: 1px solid #000;
}

.slow-rotate {
  animation: rotation 10s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

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


/* page preloader */
.page-preloader-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
/* == End == */


/* text typing */
.tt-wrapper span.typed-text {
  color: #FFF;
}
.tt-wrapper span.cursor {
  display: inline-block;
  background-color: #000;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}
.tt-wrapper span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #000; }
  49% { background-color: #000; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #000; }
}
/* ================ */


/* Marquee */
.marquee {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.lines {
  display: flex;
  flex-direction: row;
  width: 200%; /* Important to accommodate both line instances */
  gap: 15px;
}

.line {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
  white-space: nowrap;
}

.line.forward {
  animation: marquee 30s linear infinite;
}

.line.reverse {
  animation: marquee-reverse 40s linear infinite;
}

/* .line div {
  padding: 8px;
  margin-left: 18px;
  color: white;
  border-radius: 5px;
  font-size: 16px;
} */

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Typing Effect */
.tt-wrapper span.typed-text {
  color: #FFF;
}
.tt-wrapper span.cursor {
  display: inline-block;
  background-color: grey;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}
.tt-wrapper span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #56399e; }
  49% { background-color: #56399e; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #56399e; }
}


  /* animated Success */
  .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #0ac989;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  
  .checkmark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #0ac989;
    stroke-miterlimit: 10;
    margin: 0% auto;
    box-shadow: inset 0px 0px 0px #0ac989;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  }
  
  .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  
  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  @keyframes scale {
    0%, 100% {
      transform: none;
    }
    50% {
      transform: scale3d(1.1, 1.1, 1);
    }
  }
  @keyframes fill {
    100% {
      box-shadow: inset 0px 0px 0px 30px transparent;
    }
  }
  /* End Animated Success */

/* ring text loader */
.ring-loader-container {
  position: relative;
  width: 200px;
  height: 200px;
}
.ring-loader {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}
.ring-loader-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 200px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

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

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