@import url('https://fonts.googleapis.com/css2?family=Titan+One&display=swap'); 
  .progress {
    /* width: 100%; */
    /* max-width: 260px; */
    height: 100px;
    /* background: #e1e4e8; */
    border-radius: 3px;
    overflow: hidden;
  }
  .progress .progress-bar {
    display: block;
    height: 100%;
    /* background: linear-gradient(90deg, #ffd33d, #ea4aaa 17%, #b34bff 34%, #01feff 51%, #ffd33d 68%, #ea4aaa 85%, #b34bff); */
    background: linear-gradient(90deg, #06C1FF, #4672FF, #FF00F3  , #FF2359 , #06C1FF , #4672FF , #FF00F3);
    background-size: 300% 100%;
    -webkit-animation: progress-animation 2s linear infinite;
            animation: progress-animation 2s linear infinite;
  }

  
  
  body{
    user-select: none; /* supported by Chrome and Opera */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
  }
  
  @-webkit-keyframes progress-animation {
    0% {
      background-position: 100%;
    }
    100% {
      background-position: 0;
    }
  }
  
  @keyframes progress-animation {
    0% {
      background-position: 100%;
    }
    100% {
      background-position: 0;
    }
  
  }

  @keyframes load {
    0% { width: 0; }
    100% { width: 68%; }
  }

  .animated-border {
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #1a1a1a;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 15px;
}

.animated-border:before {
    content: '';
    background: linear-gradient(45deg,#06C1FF, #4672FF, #FF00F3  , #FF2359 , #06C1FF , #4672FF , #FF00F3);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}


.animated-border:before {
    opacity: 1;
}

.animated-border:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@keyframes crescendo {
  0%   {transform: scale(.9);}
  100% {transform: scale(1.01);}
}

.animated-text{
  animation: crescendo 1s alternate infinite ease-in;
}

.titan-text{
  font-family: 'Titan One';
  font-weight: 400;
}

.text-border-yellow{
    color: #FFFF0D;
    -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 5px;
    -webkit-text-stroke-color: #FFFF0D;
}

.text-border-blue{
  color: #FFF;
  -webkit-text-fill-color: #fff; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #05AEE5;
}
