@keyframes fade-in {
    0% {
        transform: scale(.7);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fade-left {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes fade-right {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

.fade-left {
    animation: 1s ease-out 0s 1 fade-left;
    transition: 1s all ease;
    transform: translateX(-100%);
}

.animate .fade-left {
    transform: translateX(0);
}

.fade-right {
    animation: 1s ease-out 0s 1 fade-right;
    transition: 1s all ease;
    transform: translateX(100%);
}

.animate .fade-right {
    transform: translateX(0);
}

.fade-in {
    animation: 2s ease-out 0s 1 fade-in;
    transition: 2s all ease;
    transform: scale(.7);
}

.animate .fade-in {
    transform: scale(1);
}


#loading {
    position: fixed;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    display: none;
    /* background: rgba(0, 0, 0, 0.6); */
}

.wait {
    position: fixed;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    /* display: none; */
    /* background: rgba(212, 212, 212, 0.418); */
}

.cv-loading {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    /* width: 40px;
        height: 40px;
        border: 4px #ddd solid;
        border-top: 4px var(--primary) solid;
        border-radius: 50%;
        animation: rotate 0.8s infinite linear; */
    /* width: 64px;
    height: 64px;
    position: relative;
    background-image:
        linear-gradient(var(--primary) 16px, transparent 0),
        linear-gradient(#fff000 16px, transparent 0),
        linear-gradient(#fff000 16px, transparent 0),
        linear-gradient(var(--primary) 16px, transparent 0);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: left top, left bottom, right top, right bottom;
    animation: rotate 1s linear infinite; */
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #dadada #dadada transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #018fd3 #018fd3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.loader::before {
  width: 32px;
  height: 32px;
  border-color: #eaeaea #eaeaea transparent transparent;
  animation: rotation 1.5s linear infinite;
}
    
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
    


.pulseLoader {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.25rem;
    width: 2em;
    height: 2em;
    border-radius: 4em;
    ;
    /* background-color: gray; */
    outline: 1px solid transparent;
    animation: pulseanim 1.8s ease-in-out infinite;
}

@keyframes rotate {
    0% {
        width: 64px;
        height: 64px;
        transform: rotate(0deg)
    }

    50% {
        width: 30px;
        height: 30px;
        transform: rotate(180deg)
    }

    100% {
        width: 64px;
        height: 64px;
        transform: rotate(360deg)
    }
}


@keyframes pulseanim {
    0% {
        transform: scale(.7);
        opacity: 0.8;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(.7);
        opacity: 0.8;
    }
}