.loading-animation {
    width: 100%;
    height: 100%;
}

.loading-animation:after{
    content: none;
}

.loading-animation div {
    position: absolute;
    width: 95px;
    height: 95px;
    border: 15px solid white;
    border-top-color: transparent;
    border-radius: 50%;
}

.loading-animation div {
    top: 50%;
    left: 50%;
    -webkit-animation: chargement 1s linear infinite;
    animation: chargement 1s linear infinite;
}

.loading-small-animation {
    position: fixed;
    z-index: 10;
    top: 144px;
    left: calc(50% - 85px);
}
@media only screen and (max-width: 980px) {
    .loading-small-animation {
        top: 195px;
        left: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .loading-small-animation {
        top: 163px;
        left: 28px;
    }
}

.loading-small-animation div {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-top-color: transparent;
    border-radius: 50%;
}

.loading-small-animation div {
    top: 50%;
    left: 50%;
    -webkit-animation: chargement 1s linear infinite;
    animation: chargement 1s linear infinite;
}

@-webkit-keyframes chargement {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes chargement {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}