.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: #2772ea;
  margin-left: 0.1rem;
  width: 2px;
  animation: blink 1s infinite;
  /* height: 12px; */
}
.tt-wrapper span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #2772ea; }
  49% { background-color: #2772ea; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #2772ea; }
}
/* ===== 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);
  }
  } 