.loader-0001 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 2px, inset rgba(0, 0, 0, 0.5) 0 0 0 2px;
}
.loader-0001::before {
    content: "";
    position: absolute;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 2px, inset rgba(0, 0, 0, 0.5) 0 0 0 2px;
}

.loader-0001 .first {
    width: 95px;
    position: absolute;
    animation: rotateFirst-0001 5s linear infinite;
}

.loader-0001 .sec {
    width: 50px;
    position: absolute;
    animation: rotateSec-0001 5s linear infinite;
}

.loader-0001 .first::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 0, 112, 1), rgba(115, 236, 139, 1));
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 2px, inset rgba(0, 0, 0, 0.5) 0 0 0 2px;
    animation: color-first-00001 5s linear infinite;
}

.loader-0001 .sec::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(115, 236, 139, 1), rgba(255, 0, 112, 1));
    box-shadow: rgba(255, 255, 255, 0.15) 0 1px 2px, inset rgba(0, 0, 0, 0.5) 0 0 0 2px;
    animation: color-sec-0001 5s linear infinite;
}

.loading-txt-0001{
    color: rgb(240, 164, 23);
    animation: color-text-0001 3s linear infinite;
}

@keyframes rotateFirst-0001 {
    100% {
      transform: rotate(360deg);
    }
}

@keyframes rotateSec-0001 {
    100% {
      transform: rotate(-360deg);
    }
}

@keyframes color-first-00001 {
    0% {
        background: linear-gradient(45deg, rgba(255, 0, 112, 1), rgba(115, 236, 139, 1));
    }
    50% {
        background: linear-gradient(45deg, rgba(255, 0, 112, 1), rgba(115, 236, 139, 1));
        filter: brightness(2.2);
    }
    100% {
        background: linear-gradient(45deg, rgba(255, 0, 112, 1), rgba(115, 236, 139, 1));
    }
}

@keyframes color-sec-0001 {
    0% {
        background: linear-gradient(45deg, rgba(255, 0, 112, 1), rgba(115, 236, 139, 1));
    }
    50% {
        background: linear-gradient(45deg, rgba(255, 0, 112, 1), rgba(115, 236, 139, 1));
        filter: brightness(2.2);
    }
    100% {
        background: linear-gradient(45deg, rgba(255, 0, 112, 1), rgba(115, 236, 139, 1));
    }
}

@keyframes color-text-0001 {
    0% {
        color: rgb(240, 164, 23);
    }
    50% {
        color: rgb(77, 50, 0);
    }
    100% {
        color: rgb(240, 164, 23);
    }
}

/* ***************************************************************** */
.loader-0002 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    box-shadow: inset -10px -10px 15px rgba(0, 0, 0, 0.33),
      inset 10px 10px 10px rgb(135, 135, 135);
}
.loader-0002::before {
    content: "";
    position: absolute;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    box-shadow: inset -10px -10px 15px rgb(135, 135, 135),
      inset 10px 10px 10px rgba(0, 0, 0, 0.1);
}
.loader-0002::after {
    content: "";
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    box-shadow: inset -2px -2px 7px rgb(128, 128, 128),
      inset 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.loader-0002 .first {
    width: 95px;
    position: absolute;
    animation: rotateFirst-0002 5s linear infinite;
}

.loader-0002 .sec {
    width: 50px;
    position: absolute;
    animation: rotateSec-0002 5s linear infinite;
}

.loader-0002 .first::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    box-shadow: inset -2px -2px 5px rgb(93, 93, 93),
      inset 2px 2px 2px rgba(0, 0, 0, 0.1);
    animation: color-first-00002 5s linear infinite;
}

.loader-0002 .sec::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    /* background: linear-gradient(45deg, rgba(115, 236, 139, 1), rgba(255, 0, 112, 1)); */
    box-shadow: inset -2px -2px 5px rgb(93, 93, 93),
      inset 2px 2px 2px rgba(0, 0, 0, 0.1);
    animation: color-sec-0002 5s linear infinite;
}

.loading-txt-0002{
    color: rgb(240, 164, 23);
    animation: color-text-0002 3s linear infinite;
}

@keyframes rotateFirst-0002 {
    100% {
      transform: rotate(360deg);
    }
}

@keyframes rotateSec-0002 {
    100% {
      transform: rotate(-360deg);
    }
}

@keyframes color-text-0002 {
    0% {
        color: rgb(240, 164, 23);
    }
    50% {
        color: rgb(77, 50, 0);
    }
    100% {
        color: rgb(240, 164, 23);
    }
}

/* ***************************************************************** */
.loader-0003{
    height: 80px;
    display: flex;
    transform: rotate(180deg);
}
.loader-0003 div{
    width: 10px;
    margin: 0 2px;
    border-radius: 0 0 3px 3px;
    animation: loader-0003 10s infinite;
}
@keyframes loader-0003{
    0%, 100%{
        height: 15%;
        background: rgb(0, 129, 201);
    }
    25%{
        height: 100%;
        background: rgb(255, 177, 0);
    }
    50%{
        height: 5%;
        background: rgb(84, 180, 53);
    }
    75%{
        height: 100%;
        background: rgb(255, 100, 100);
    }
}

.loading-txt-0003{
    color: rgb(240, 164, 23);
    animation: color-text-0003 3s linear infinite;
}

@keyframes color-text-0003 {
    0%, 100% {
        color: rgb(0, 129, 201);
    }
    25% {
        color: rgb(255, 177, 0);
    }
    50% {
        color: rgb(84, 180, 53);
    }
    75% {
        color: rgb(255, 100, 100);
    }
}
/* ***************************************************************** */
.loader-0004 {
    display: flex;
    gap: 5px;
}
.loader-0004 .column-0004 {
    height: 10px;
    width: 10px;
    border-radius: 3px;
    
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: loader-0004 1s ease-in-out infinite;
}
.column-0004:nth-child(1) {
    background: rgb(0, 138, 230);
}
.column-0004:nth-child(2) {
    background: rgb(230, 0, 0);
}
.column-0004:nth-child(3) {
    background: rgb(255, 204, 0);
}
.column-0004:nth-child(4) {
    background: rgb(0, 136, 0);
}
.column-0004:nth-child(5) {
    background: rgb(125, 0, 136);
}
.column-0004:nth-child(6) {
    background: rgb(0, 127, 136);
}

.loading-txt-0004{
    color: rgb(240, 164, 23);
    animation: color-text-0004 3s linear infinite;
}

@keyframes loader-0004 {
    0% {
    transform: translateY(-10px);
    }
    100% {
    transform: translateY(5px);
    }
}

@keyframes color-text-0004 {
    0%, 100% {
        color: rgb(0, 129, 201);
    }
    25% {
        color: rgb(255, 177, 0);
    }
    50% {
        color: rgb(84, 180, 53);
    }
    75% {
        color: rgb(255, 100, 100);
    }
}
/* ***************************************************************** */
.loader-0005{
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner-a-0005{
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid rgb(85, 84, 84);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner-a-0005 3s linear infinite;
}
@keyframes spinner-a-0005{
    0% {
        border-color: rgb(0, 129, 201);
        border-top-color: transparent;
    }
    25% {
         border-color: rgb(255, 177, 0);
         border-top-color: transparent;
    }
    50% {
         border-color: rgb(84, 180, 53);
         border-top-color: transparent;
    }
    75% {
         border-color: rgb(255, 100, 100);
         border-top-color: transparent;
    }
    100% {
        border-color: rgb(0, 129, 201);
        border-top-color: transparent;
        transform: rotate(360deg);
    }
}
.spinner-b-0005{
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgb(85, 84, 84);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner-b-0005 3s linear infinite;
}
@keyframes spinner-b-0005{
    0% {
        border-color: rgb(0, 129, 201);
        border-top-color: transparent;
    }
    25% {
         border-color: rgb(255, 177, 0);
         border-top-color: transparent;
    }
    50% {
         border-color: rgb(84, 180, 53);
         border-top-color: transparent;
    }
    75% {
         border-color: rgb(255, 100, 100);
         border-top-color: transparent;
    }
    100% {
        border-color: rgb(0, 129, 201);
        border-top-color: transparent;
        transform: rotate(-360deg);
    }
}
.spinner-c-0005{
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgb(85, 84, 84);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner-c-0005 3s linear infinite;
}
@keyframes spinner-c-0005{
    
    0% {
        border-color: rgb(0, 129, 201);
        border-top-color: transparent;
    }
    25% {
         border-color: rgb(255, 177, 0);
         border-top-color: transparent;
    }
    50% {
         border-color: rgb(84, 180, 53);
         border-top-color: transparent;
    }
    75% {
         border-color: rgb(255, 100, 100);
         border-top-color: transparent;
    }
    100% {
        border-color: rgb(0, 129, 201);
        border-top-color: transparent;
        transform: rotate(360deg);
    }
}

.loading-txt-0005{
    color: rgb(240, 164, 23);
    animation: color-text-0005 3s linear infinite;
}

@keyframes color-text-0005 {
    0%, 100% {
        color: rgb(0, 129, 201);
    }
    25% {
        color: rgb(255, 177, 0);
    }
    50% {
        color: rgb(84, 180, 53);
    }
    75% {
        color: rgb(255, 100, 100);
    }
}
/* ***************************************************************** */
.loader-0006{
    height: 30px;
}
.loader-0006 .css-dot-0006{
    position: absolute;
    height: 20px;
    width: 5px;
    /* background: rgb(78, 78, 78); */
    border-radius: 2px;
    transform: rotate(calc(var(--dot-0006) * (360deg / 15))) translateY(25px);
    animation: loader-0006 1.5s linear infinite;
    animation-delay: calc(var(--dot-0006) * 0.1s);
    opacity: 0;
}
@keyframes loader-0006 {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.loading-txt-0006{
    color: rgb(240, 164, 23);
    animation: color-text-0006 3s linear infinite;
}

@keyframes color-text-0006 {
    0%, 100% {
        color: rgb(0, 129, 201);
    }
    25% {
        color: rgb(255, 177, 0);
    }
    50% {
        color: rgb(84, 180, 53);
    }
    75% {
        color: rgb(255, 100, 100);
    }
}
/* ***************************************************************** */
.loader-0007{
    height: 30px;
}
.loader-0007 .css-dot-0007{
    position: absolute;
    height: 10px;
    width: 10px;
    background: rgb(78, 78, 78);
    border-radius: 25px;
    transform: rotate(calc(var(--dot-0007) * (360deg / 15))) translateY(30px);
    animation: loader-0007 1.5s linear infinite;
    animation-delay: calc(var(--dot-0007) * 0.1s);
    opacity: 0;
}
@keyframes loader-0007 {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.loading-txt-0007{
    color: rgb(240, 164, 23);
    animation: color-text-0007 3s linear infinite;
}

@keyframes color-text-0007 {
    0%, 100% {
        color: rgb(0, 129, 201);
    }
    25% {
        color: rgb(255, 177, 0);
    }
    50% {
        color: rgb(84, 180, 53);
    }
    75% {
        color: rgb(255, 100, 100);
    }
}
/* ***************************************************************** */

.css-loader-0008{
    position: absolute;
    top: 25px;
    height: 1px;
    width: 5px;
    animation: rotate-0008 3.5s linear infinite;
}
.css-loader-0008 .css-dot-0008{
    position: relative;
    top: 10px;
    height: 30px;
    width: 5px;
    border-radius: 25px;
}
@keyframes rotate-0008 {
    0%{        
        transform: rotate(0deg);
        opacity: 0;
    }
    40%{
        transform: rotate(360deg);
        opacity: 1;
    }
    75%{
        transform: rotate(-360deg);
        opacity: 1;
    }
    76%{
        opacity: 0;
    }
    100%{
        opacity: 0;
        transform: rotate(0deg);
    }
}
.css-loader-0008:nth-child(1){
    animation-delay: 0.15s;
}
.css-loader-0008:nth-child(2){
    animation-delay: 0.3s;
}
.css-loader-0008:nth-child(3){
    animation-delay: 0.45s;
}
.css-loader-0008:nth-child(4){
    animation-delay: 0.6s;
}
.css-loader-0008:nth-child(5){
    animation-delay: 0.75s;
}
.css-loader-0008:nth-child(6){
    animation-delay: 0.9s;
}
.loading-txt-0008{
    color: rgb(240, 164, 23);
    animation: color-text-0008 3s linear infinite;
}

@keyframes color-text-0008 {
    0%, 100% {
        color: rgb(0, 129, 201);
    }
    25% {
        color: rgb(255, 177, 0);
    }
    50% {
        color: rgb(84, 180, 53);
    }
    75% {
        color: rgb(255, 100, 100);
    }
}
/* ***************************************************************** */
.loader-0009{
    position: absolute;
    top: 10px;
    transform: scale(1.5);
}
.css-loader-0009{
    height: 25px;
    width: 1px;
    position: absolute;
    animation: rotate-0009 3.5s linear infinite;
}
.css-loader-0009 .css-dot-0009{
    top: 30px;
    height: 7px;
    width: 7px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    position: relative;
}

@keyframes rotate-0009 {
    30%{
        transform: rotate(220deg);
    }
    40%{
        transform: rotate(450deg);
        opacity: 1;
    }
    75%{
        transform: rotate(720deg);
        opacity: 1;
    }
    76%{
        opacity: 0;
    }
    100%{
        opacity: 0;
        transform: rotate(0deg);
    }
}
.css-loader-0009:nth-child(1){
    animation-delay: 0.15s;
    background: rgb(240, 164, 23);
}
.css-loader-0009:nth-child(2){
    animation-delay: 0.3s;
    background: rgb(240, 164, 23);
}
.css-loader-0009:nth-child(3){
    animation-delay: 0.45s;
    background: rgb(240, 164, 23);
}
.css-loader-0009:nth-child(4){
    animation-delay: 0.6s;
    background: rgb(240, 164, 23);
}
.css-loader-0009:nth-child(5){
    animation-delay: 0.75s;
    background: rgb(240, 164, 23);
}
.css-loader-0009:nth-child(6){
    animation-delay: 0.9s;
    background: rgb(240, 164, 23);
}

.loading-txt-0009{
    color: rgb(240, 164, 23);
    animation: color-text-0009 3s linear infinite;
}

@keyframes color-text-0009 {
    0%, 100% {
        color: rgb(0, 129, 201);
    }
    25% {
        color: rgb(255, 177, 0);
    }
    50% {
        color: rgb(84, 180, 53);
    }
    75% {
        color: rgb(255, 100, 100);
    }
}
/* ***************************************************************** */
.loader-0010{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}
.border-a-0010{
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: border-a-0010 4s linear infinite;
}
@keyframes border-a-0010 {
    0%{
        transform: rotate(0deg);
        border-left: 3px solid rgb(230, 92, 0);
        filter: blur(1px);
    }
    50%{
        transform: rotate(180deg);
        border-left: 3px solid rgb(24, 178, 1);
        filter: blur(1px);
    }
    100%{
        transform: rotate(360deg);
        border-left: 3px solid rgb(4, 86, 200);
        filter: blur(1px);
    }
}
.border-b-0010{
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: border-b-0010 4s linear infinite;
}
@keyframes border-b-0010 {
    0%{
        transform: rotate(0deg);
        border-left: 3px solid rgb(230, 92, 0);
        filter: blur(1px);
    }
    50%{
        transform: rotate(-180deg);
        border-left: 3px solid rgb(24, 178, 1);
        filter: blur(1px);
    }
    100%{
        transform: rotate(-360deg);
        border-left: 3px solid rgb(4, 86, 200);
        filter: blur(1px);
    }
}

.loading-txt-0010{
    color: rgb(220, 220, 220);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: txt-0010 3s ease-in-out infinite;
}
@keyframes txt-0010 {
    50%{
        color: rgb(0, 0, 0);
    }
}
/* ***************************************************************** */
.svg-0011{
    position: relative;
    width: 100px;
    height: 100px;
    animation: border-0011 2s linear infinite;
}
@keyframes border-x-0011 {
    0%{        
        transform: rotate(0deg);
    }
    100%{        
        transform: rotate(360deg);
    }    
}

.svg-0011 .circle-a-0011{
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 5;
    stroke: rgb(125, 0, 136);
    stroke-linecap: round;
    transform: translate(5px, 5px);
    stroke-dasharray: 230;
    stroke-dashoffset: 230;
    animation: border-a-0011 2s linear infinite;
    filter: blur(1px);
}
@keyframes border-a-0011 {
    0%, 100%{        
        stroke-dashoffset: 220;
    }
    50%{        
        stroke-dashoffset: 0;
    }
    50.1%{        
        stroke-dashoffset: 440;
    }    
}

.svg-0011 .circle-b-0011{
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 5;
    stroke: rgb(0, 136, 23);
    stroke-linecap: round;
    transform: translate(15px, 15px);
    stroke-dasharray: 230;
    stroke-dashoffset: 230;
    animation: border-b-0011 2s linear infinite;
    filter: blur(1px);
}
@keyframes border-b-0011 {
    0%, 100%{        
        stroke-dashoffset: -220;
    }
    50%{        
        stroke-dashoffset: 0;
    }
    50.1%{        
        stroke-dashoffset: -440;
    }    
}

.svg-0011 .circle-c-0011{
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 5;
    stroke: rgb(0, 136, 23);
    stroke-linecap: round;
    transform: translate(15px, 15px);
    stroke-dasharray: 230;
    stroke-dashoffset: 230;
    animation: border-c-0011 2s linear infinite;
    filter: blur(1px);
}
@keyframes border-c-0011 {
    0%, 100%{        
        stroke-dashoffset: -220;
    }
    50%{        
        stroke-dashoffset: 0;
    }
    50.1%{        
        stroke-dashoffset: -440;
    }    
}

.svg-0011 .circle-d-0011{
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 5;
    stroke: rgb(0, 136, 23);
    stroke-linecap: round;
    transform: translate(15px, 15px);
    stroke-dasharray: 230;
    stroke-dashoffset: 230;
    animation: border-d-0011 2s linear infinite;
    filter: blur(1px);
}
@keyframes border-d-0011 {
    0%, 100%{        
        stroke-dashoffset: -220;
    }
    50%{        
        stroke-dashoffset: 0;
    }
    50.1%{        
        stroke-dashoffset: -440;
    }    
}
.loading-txt-0011{
    color: rgb(220, 220, 220);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: txt-0011 3s ease-in-out infinite;
}
@keyframes txt-0011 {
    50%{
        color: rgb(0, 0, 0);
    }
}
/* ***************************************************************** */
.svg-0012{
    position: relative;
    width: 100px;
    height: 100px;
    animation: svg-0012 20s linear infinite;
}
@keyframes svg-0012 {
    0%{        
        transform: rotate(0deg);
    }
    100%{        
        transform: rotate(360deg);
    }    
}

.svg-0012 .circle-a-0012{
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 5;
    stroke: rgb(234, 0, 255);
    stroke-linecap: round;
    transform: translate(5px, 5px);
    stroke-dasharray: 230;
    stroke-dashoffset: 230;
    animation: circle-a-0012 5s linear infinite;
    filter: blur(1px);
}
@keyframes circle-a-0012 {
    0%, 100%{        
        stroke-dashoffset: 220;
    }
    50%{        
        stroke-dashoffset: 0;
    }
    50.1%{        
        stroke-dashoffset: 440;
    }    
}

.svg-0012 .circle-b-0012{
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 5;
    stroke: rgb(0, 255, 42);
    stroke-linecap: round;
    transform: translate(15px, 15px);
    stroke-dasharray: 190;
    stroke-dashoffset: 190;
    animation: circle-b-0012 10s linear infinite;
    filter: blur(1px);
}
@keyframes circle-b-0012 {
    0%, 100%{        
        stroke-dashoffset: -220;
    }
    50%{        
        stroke-dashoffset: 0;
    }
    50.1%{        
        stroke-dashoffset: -440;
    }    
}

.svg-0012 .circle-c-0012{
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 5;
    stroke: rgb(0, 217, 255);
    stroke-linecap: round;
    transform: translate(25px, 25px);
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: circle-c-0012 15s linear infinite;
    filter: blur(1px);
}
@keyframes circle-c-0012 {
    0%, 100%{        
        stroke-dashoffset: 180;
    }
    50%{        
        stroke-dashoffset: 0;
    }
    50.1%{        
        stroke-dashoffset: 340;
    }    
}

.svg-0012 .circle-d-0012{
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 5;
    stroke: rgb(242, 255, 0);
    stroke-linecap: round;
    transform: translate(35px, 35px);
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: circle-d-0012 20s linear infinite;
    filter: blur(1px);
}
@keyframes circle-d-0012 {
    0%, 100%{        
        stroke-dashoffset: -900;
    }
    50%{        
        stroke-dashoffset: 0;
    }
    50.1%{        
        stroke-dashoffset: -190;
    }    
}
.loading-txt-0012{
    color: rgb(220, 220, 220);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: txt-0012 3s ease-in-out infinite;
}
@keyframes txt-0012 {
    50%{
        color: rgb(0, 0, 0);
    }
}
/* ***************************************************************** */
.loader-0013{
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.loader-0013 .loader-dot-0013{
    position: absolute;
    border-radius: 50%;
}

.loader-0013 .loader-dot-0013::before{
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.loader-0013 .loader-dot-0013:nth-child(1){
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgb(0, 255, 255);
    animation: loader-0013 3s linear infinite;
}
.loader-0013 .loader-dot-0013:nth-child(1)::before{
    background-color: rgb(0, 255, 255);
    box-shadow: 0 0 20px rgb(0, 255, 255),
        0 0 40px rgb(0, 255, 255), 
        0 0 60px rgb(0, 255, 255),
        0 0 80px rgb(0, 255, 255, 0.1);
}
.loader-0013 .loader-dot-0013:nth-child(2){
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    border: 1px solid rgb(47, 255, 0);
    animation: loader-0013-r 3s linear infinite;
}
.loader-0013 .loader-dot-0013:nth-child(2)::before{
    background-color: rgb(47, 255, 0);
    box-shadow: 0 0 20px rgb(47, 255, 0),
        0 0 40px rgb(47, 255, 0), 
        0 0 60px rgb(47, 255, 0),
        0 0 80px rgb(47, 255, 0, 0.1);
}
.loader-0013 .loader-dot-0013:nth-child(3){
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border: 1px solid rgb(184, 106, 244);
    animation: loader-0013 2s linear infinite;
}
.loader-0013 .loader-dot-0013:nth-child(3)::before{
    background-color: rgb(184, 106, 244);
    box-shadow: 0 0 20px rgb(184, 106, 244),
        0 0 40px rgb(184, 106, 244), 
        0 0 60px rgb(184, 106, 244),
        0 0 80px rgb(184, 106, 244, 0.1);
}
.loader-0013 .loader-dot-0013:nth-child(4){
    top: 55px;
    left: 55px;
    right: 55px;
    bottom: 55px;
    border: 1px solid rgb(255, 128, 0);
    animation: loader-0013-r 2s linear infinite;
}
.loader-0013 .loader-dot-0013:nth-child(4)::before{
    background-color: rgb(255, 128, 0);
    box-shadow: 0 0 20px rgb(255, 128, 0),
        0 0 40px rgb(255, 128, 0), 
        0 0 60px rgb(255, 128, 0),
        0 0 80px rgb(255, 128, 0, 0.1);
}

@keyframes loader-0013 {
    0%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(0deg);
    }    
}
@keyframes loader-0013-r {
    0%{
        transform: rotate(-360deg);
    }
    100%{
        transform: rotate(0deg);
    }    
}
.loading-txt-0013{
    color: rgb(220, 220, 220);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: txt-0013 3s ease-in-out infinite;
}
@keyframes txt-0013 {
    0%, 100%{
        color: rgb(0, 255, 255);
    }
    25%{
        color: rgb(47, 255, 0);
    }
    50%{
        color: rgb(184, 106, 244);
    }
    75%{
        color: rgb(255, 128, 0);
    }
}
/* ***************************************************************** */
.loader-0014{
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.loader-0014 .loader-dot-0014{
    position: absolute;
    border-radius: 50%;
}

.loader-0014 .loader-dot-0014::before{
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.loader-0014 .loader-dot-0014:nth-child(1){
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-top: 1px solid rgb(0, 255, 255);
    filter: blur(1px);
    animation: loader-0014 3s linear infinite;
}
.loader-0014 .loader-dot-0014:nth-child(1)::before{
    background-color: rgb(0, 255, 255);
    box-shadow: 0 0 20px rgb(0, 255, 255),
        0 0 40px rgb(0, 255, 255), 
        0 0 60px rgb(0, 255, 255),
        0 0 80px rgb(0, 255, 255, 0.1);
}
.loader-0014 .loader-dot-0014:nth-child(2){
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    border-bottom: 1px solid rgb(47, 255, 0);
    filter: blur(1px);
    animation: loader-0014-r 3s linear infinite;
}
.loader-0014 .loader-dot-0014:nth-child(2)::before{
    background-color: rgb(47, 255, 0);
    box-shadow: 0 0 20px rgb(47, 255, 0),
        0 0 40px rgb(47, 255, 0), 
        0 0 60px rgb(47, 255, 0),
        0 0 80px rgb(47, 255, 0, 0.1);
}
.loader-0014 .loader-dot-0014:nth-child(3){
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border-top: 1px solid rgb(184, 106, 244);
    filter: blur(1px);
    animation: loader-0014 2s linear infinite;
}
.loader-0014 .loader-dot-0014:nth-child(3)::before{
    background-color: rgb(184, 106, 244);
    box-shadow: 0 0 20px rgb(184, 106, 244),
        0 0 40px rgb(184, 106, 244), 
        0 0 60px rgb(184, 106, 244),
        0 0 80px rgb(184, 106, 244, 0.1);
}
.loader-0014 .loader-dot-0014:nth-child(4){
    top: 55px;
    left: 55px;
    right: 55px;
    bottom: 55px;
    border-bottom: 1px solid rgb(255, 128, 0);
    border-right: 1px solid rgb(255, 128, 0);
    filter: blur(1px);
    animation: loader-0014-r 2s linear infinite;
}
.loader-0014 .loader-dot-0014:nth-child(4)::before{
    background-color: rgb(255, 128, 0);
    box-shadow: 0 0 20px rgb(255, 128, 0),
        0 0 40px rgb(255, 128, 0), 
        0 0 60px rgb(255, 128, 0),
        0 0 80px rgb(255, 128, 0, 0.1);
}

@keyframes loader-0014 {
    0%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(0deg);
    }    
}
@keyframes loader-0014-r {
    0%{
        transform: rotate(-360deg);
    }
    100%{
        transform: rotate(0deg);
    }    
}
.loading-txt-0014{
    color: rgb(220, 220, 220);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: txt-0014 3s ease-in-out infinite;
}
@keyframes txt-0014 {
    0%, 100%{
        color: rgb(0, 255, 255);
    }
    25%{
        color: rgb(47, 255, 0);
    }
    50%{
        color: rgb(184, 106, 244);
    }
    75%{
        color: rgb(255, 128, 0);
    }
}
/* ***************************************************************** */
.loader-0015{
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.loader-0015 .loader-dot-0015{
    position: absolute;
    border-radius: 50%;
}

.loader-0015 .loader-dot-0015::before{
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.loader-0015 .loader-dot-0015:nth-child(1){
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    animation: loader-0015 3s linear infinite;
}
.loader-0015 .loader-dot-0015:nth-child(1)::before{
    border: 3px solid rgb(47, 255, 0);
    width: 15px;
    height: 15px;
    filter: blur(1px);
}

.loader-0015 .loader-dot-0015:nth-child(2){
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    animation: loader-0015-r 3s linear infinite;
}
.loader-0015 .loader-dot-0015:nth-child(2)::before{
    border: 3px solid rgb(0, 255, 119);
    width: 20px;
    height: 20px;
    filter: blur(1px);
}

.loader-0015 .loader-dot-0015:nth-child(3){
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    animation: loader-0015 2s linear infinite;
}
.loader-0015 .loader-dot-0015:nth-child(3)::before{
    border: 3px solid rgb(225, 255, 0);
    width: 30px;
    height: 30px;
    filter: blur(1px);
}

.loader-0015 .loader-dot-0015:nth-child(4){
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    animation: loader-0015-r 2s linear infinite;
}
.loader-0015 .loader-dot-0015:nth-child(4)::before{
    border: 3px solid rgb(255, 98, 0);
    width: 30px;
    height: 30px;
    filter: blur(1px);
}

.loader-0015 .loader-dot-0015:nth-child(5){
    top: 15px;
    left: 55px;
    right: 25px;
    bottom: 55px;
    animation: loader-0015-r 2s linear infinite;
}
.loader-0015 .loader-dot-0015:nth-child(5)::before{
    border: 3px solid rgb(255, 0, 0);
    width: 18px;
    height: 18px;
    filter: blur(1px);
}

.loader-0015 .loader-dot-0015:nth-child(6){
    top: 55px;
    left: 15px;
    right: 35px;
    bottom: 55px;
    animation: loader-0015 3s linear infinite;
}
.loader-0015 .loader-dot-0015:nth-child(6)::before{
    border: 3px solid rgb(255, 0, 144);
    width: 18px;
    height: 18px;
    filter: blur(1px);
}
.loader-0015 .loader-dot-0015:nth-child(7){
    top: 25px;
    left: 55px;
    right: 35px;
    bottom: 35px;
    animation: loader-0015 2s linear infinite;
}
.loader-0015 .loader-dot-0015:nth-child(7)::before{
    border: 3px solid rgb(144, 0, 255);
    width: 8px;
    height: 8px;
    filter: blur(1px);
}
.loader-0015 .loader-dot-0015:nth-child(8){
    top: 65px;
    left: 65px;
    right: 65px;
    bottom: 65px;
    animation: loader-0015-r 2s linear infinite;
}
.loader-0015 .loader-dot-0015:nth-child(8)::before{
    border: 3px solid rgb(0, 115, 255);
    width: 35px;
    height: 35px;
    filter: blur(1px);
}
.loader-0015 .loader-dot-0015:nth-child(9){
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    animation: loader-0015 4s linear infinite;
}
.loader-0015 .loader-dot-0015:nth-child(9)::before{
    border: 3px solid rgb(0, 255, 251);
    width: 15px;
    height: 15px;
    filter: blur(1px);
}

.loader-0015 .loader-dot-0015:nth-child(10){
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    animation: loader-0015 3s linear infinite;
}
.loader-0015 .loader-dot-0015:nth-child(10)::before{
    border: 3px solid rgb(255, 196, 0);
    width: 15px;
    height: 15px;
    filter: blur(1px);
}

@keyframes loader-0015 {
    0%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(0deg);
    }    
}
@keyframes loader-0015-r {
    0%{
        transform: rotate(-360deg);
    }
    100%{
        transform: rotate(0deg);
    }    
}
.loading-txt-0015{
    color: rgb(220, 220, 220);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: txt-0015 3s ease-in-out infinite;
}
@keyframes txt-0015 {
    0%, 100%{
        color: rgb(0, 255, 255);
    }
    25%{
        color: rgb(47, 255, 0);
    }
    50%{
        color: rgb(184, 106, 244);
    }
    75%{
        color: rgb(255, 128, 0);
    }
}

/* ***************************************************************** */

.loader-0016 .loader-dot-0016{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: rotate(calc(18deg * var(--loader-dot-0016)));
    animation: loader-0016 10s linear infinite;
}

@keyframes loader-0016 {
    0%{
        filter: hue-rotate(0deg);
    }    
    100%{
        filter: hue-rotate(360deg);
    }    
}

.loader-0016 .loader-dot-0016::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: greenyellow;
    box-shadow: 0 0 10px greenyellow,
    0 0 10px greenyellow,
    0 0 20px greenyellow,
    0 0 30px greenyellow,
    0 0 40px greenyellow,
    0 0 50px greenyellow;
    animation: loader-rotation-0016 2s linear infinite;
    animation-delay: calc(0.1s * var(--loader-dot-0016));
    filter: blur(1px);
}

@keyframes loader-rotation-0016 {
    0%{
        transform: scale(1);
    }    
    100%{
        transform: scale(0);
    }    
}
.loading-txt-0016{
    color: rgb(220, 220, 220);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: txt-0016 3s ease-in-out infinite;
}
@keyframes txt-0016 {
    0%, 100%{
        color: rgb(0, 255, 255);
    }
    25%{
        color: rgb(47, 255, 0);
    }
    50%{
        color: rgb(184, 106, 244);
    }
    75%{
        color: rgb(255, 128, 0);
    }
}

/* ***************************************************************** */
.loader-0017{
    position: relative;
    display: flex;
}
.loader-0017 .loader-dot-0017{
    position: relative;
    width: 5px;
    height: 5px;
    margin: 5px 2px;
    transform: scale(0.1);
    animation: loader-rotation-0017 2s linear infinite;
    animation-delay: calc(0.1s * var(--loader-dot-0017));
    background-color: greenyellow;
    box-shadow: 0 0 10px greenyellow,
    0 0 10px greenyellow,
    0 0 20px greenyellow,
    0 0 30px greenyellow,
    0 0 40px greenyellow,
    0 0 50px greenyellow;
}
@keyframes loader-rotation-0017 {
    0%{
        transform: scale(0.1);
        filter: hue-rotate(0deg);
    }    
    10%{
        transform: scale(1);
    }   
    50%, 100%{
        transform: scale(0.1);
        filter: hue-rotate(360deg);
    }    
}
.loading-txt-0017{
    color: rgb(220, 220, 220);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: txt-0017 3s ease-in-out infinite;
}
@keyframes txt-0017 {
    0%, 100%{
        color: rgb(0, 255, 255);
    }
    25%{
        color: rgb(47, 255, 0);
    }
    50%{
        color: rgb(184, 106, 244);
    }
    75%{
        color: rgb(255, 128, 0);
    }
}
/* ***************************************************************** */