.loader-gash {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    background: linear-gradient(0deg, rgba(39, 52, 234, 0.2) 33%, #6645cf 100%);
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .loader-gash::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #263238;
  }
  @keyframes rotation {
    0% { transform: rotate(0deg) }
    100% { transform: rotate(360deg)}
  } 


/* Blob */
.miner-blob-wrapper{
    height: 200px;
    width: 200px;
    margin: auto;
    background: none;
}

.miner-blob-circle{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 3px solid #6645cf;
    border-right: 3px dashed #6645cf;
    border-bottom: 3px solid #6645cf;
    border-left: 3px dashed #6645cf;
    border-radius: 50%;
    animation: rotation linear infinite 20s;
}

.miner-blob{
    width: 160px;
    height: 160px;
    background: linear-gradient(to right, #6645cf, #08356c);
    margin: auto;
    animation: blob-animation linear infinite 4s; 
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); 
    opacity: .7;
}
.miner-blob-2{
    animation: blob-animation-2 linear infinite 8s;
    opacity: .5;
    width: 170px;
    height: 170px;
}

@keyframes blob-animation{
    0%,100%{
        border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
    }
    25%{
        border-radius: 73% 27% 26% 38% / 73% 36% 64% 27%;
    }
    50%{
        border-radius: 28% 72% 44% 56% / 49% 40% 60% 51%;
    }
    75%{
        border-radius: 40% 60% 70% 30% / 47% 62% 38% 53%;
    }
}
@keyframes blob-animation-2{
    0%,100%{
        border-radius: 40% 60% 70% 30% / 47% 62% 38% 53%;
    }
    25%{
        border-radius: 28% 72% 44% 56% / 49% 40% 60% 51%;
    }
    50%{
        border-radius: 73% 27% 26% 38% / 73% 36% 64% 27%;
    }
    75%{
        border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
    }
}

.miner-blob-caption{
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}


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


  .dynamic-btn{
    position: relative;
}

.dynamic-btn span{
    color: #fff;
}

.dynamic-btn .l-icon{
    position: relative;
    left: -20px;
    color: #fff;
    transition: all .4s ease;
}

.dynamic-btn .btn-txt{
    position: relative;
    left: 0px;
    color: #fff;
    transition: all .4s ease;
}

.dynamic-btn-loading .btn-txt{
    left: 5px;
    transition: all .4s ease;
}
.dynamic-btn-loading .l-icon{
    left: 0;
    transition: all .4s ease;
}



/* btn loader */
.btn-loader {
    width: 15px;
    height: 15px;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin: 0;
    top: 3px;
    }

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

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

/* ==== Line Loader ====== */
.line-loader{
    height: 3px;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    background: #4fb7f3;
    border-radius: 4px;
    animation: oscillate 1s linear infinite;
    display: none;
}

@keyframes oscillate{
    50%{
        left: 50%;
    }
    100%{
        left: 0;
    }
}


/* 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 */


  /* btn check mark ====================== */
  .btn-checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #fff;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  
  .btn-checkmark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    /* margin: 0% auto; */
    box-shadow: inset 0px 0px 0px #fff;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative;
    top: -1px;
  }
  
  .btn-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 btn checkmark */


  /* ticker tape */
.marquee {
  overflow: hidden;
  width: 100%;
}
.lines {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;  
}
.line {
  animation: marquee 30s linear infinite forwards;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  white-space: nowrap;
  animation-delay: 0s;
}
.line-anim-2{
  animation: marquee 38s linear infinite;
}
/* .line:nth-child(2) {
  color: red;
} */
.line div {
  padding: 0px;
}
.line div:after {
  margin-left: 0px;
}

@keyframes marquee {
  0% {
    transform: translate3d(30%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* ==== End Ticker tape */



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


.loader{
  width: 35px;
  height: 35px;
  border: 3px solid #5853f6;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  }

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