/* Btn loader */
.btn-loader {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #fff;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: relative;
    top: 4px;
}

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

.rotate-fast {
  animation: rotation 4s linear infinite;
}

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


@keyframes floatUpDown {
    0%   { transform: translateY(0px) rotate(0deg); }
    50%  { transform: translateY(-25px) rotate(8deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatDownUp {
    0%   { transform: translateY(0px) rotate(0deg); }
    50%  { transform: translateY(20px) rotate(-6deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatSide {
    0%   { transform: translateX(0px) rotate(0deg); }
    50%  { transform: translateX(20px) rotate(5deg); }
    100% { transform: translateX(0px) rotate(0deg); }
}

@keyframes floatDiagonal {
    0%   { transform: translate(0px, 0px) rotate(0deg); }
    50%  { transform: translate(15px, -20px) rotate(10deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

/* 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;
    }
  }
  
  .checkmark_mini{
    width: 30px;
    height: 30px;
  }


@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(187, 157, 248, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 0, 0, 0);
  }
  100% {
    transform: scale(1);
  }
}