/* Preloader */

.handle-preloader {
    background-image: linear-gradient(45deg, #cee4ff, #fbf4d5);
}

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

 .loader-inner {
    text-transform: uppercase;
    width: fit-content;
    text-align: center;
    line-height: 50px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: grid
;
    align-items: center;
}
.loader-inner span:first-child {
    background: radial-gradient(circle closest-side, #0072FF 94%, #0000) right / calc(180% - 1em) 100%;
    animation: loader-animation 1s infinite alternate linear;
}
.loader-inner .loader-text {
    color: #0072ff;
    font-size: 78px;
    line-height: 74px;
    font-weight: bold;
    position: relative;
    z-index: 0;
    grid-area: 1 / -1;
}
.loader-inner span:last-child {
    color: #0000;
    background: inherit;
    background-image: inherit;
    background-clip: inherit;
    background: radial-gradient(circle closest-side, #0072FF 94%, #FFB400) right / calc(180% - 1em) 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: loader-animation 1s infinite alternate linear;
}
.loader-inner span:last-child {
    color: #0000;
    background: inherit;
    background-image: inherit;
    background-clip: inherit;
    background: radial-gradient(circle closest-side, #000000 94%, #0072FF) right / calc(180% - 1em) 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: loader-animation 1s infinite alternate linear;
}
@keyframes loader-animation{
  100%{background-position: left}
}




















