.loader {
	width: 100%;
    height: 100%;
    z-index: 10000;
    position: fixed;
    background-color: white;
    top: 0px;
    left: 0px;	
}

.circle-container {
    position: fixed;
    height: 100%;
    width: 100%;
    filter: url('#filter');
}

.loader_h1 {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size: 2em;
    position: absolute;
    bottom: 2%;
    left: 85%;
    transform: translate3d(-50%, -50%, 0);
    color: var(--randomColor);
    overflow: hidden;
}

.loader_h1::before {
    content: ""; 
    position: absolute;
    bottom: 2%;
    left: 85%;
    width: 100%;
    height: 2px;
    background-color: var(--randomColor);
    animation: line cubic-bezier(0.19, 1, 0.22, 1) 0.75s infinite alternate;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--randomColor);
    left: 50%;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

.circle.c1 {
    height: 80px;
    width: 80px;
    margin-left: -40px;
    margin-top: -40px;
    z-index: 1;
}

.circle.c2 {
    animation: loader ease-in-out 3s infinite;
}

.circle.c3 {
    animation: loader ease-in-out 3s infinite reverse;
}

.circle:nth-child(2), .circle:nth-child(3) {
    height: 60px;
    width: 60px;
    margin-left: -30px;
    margin-top: -30px;
}

@keyframes line {
    0% {
        transform: translate3d(-100%, 0px, 0px);
    }
    100% {
        transform: translate3d(100%, 0px, 0px);
    }
}

@keyframes loader {
    0% {
        transform: translate3d(0px, 0px, 0px) rotate(0deg);
        transform-origin: 125px 30px;
    }
    10% {
        transform: translate3d(-95px, 0px, 0px) rotate(0deg);
        transform-origin: 125px 30px;
    }
    40% {
        transform: translate3d(-95px, 0px, 0px) rotate(360deg);
        transform-origin: 125px 30px;   
    }
    50% {
        transform: translate3d(0px, 0px, 0px) rotate(360deg);
        transform-origin: 125px 30px;
    }
    60%{
        transform: translate3d(95px, 0px, 0px) rotate(360deg);
        transform-origin: -65px 30px;
    }
    90% {
        transform: translate3d(95px, 0px, 0px) rotate(0deg);
        transform-origin: -65px 30px;
    }
    100% {
        transform: translate3d(0px, 0px, 0px) rotate(0deg);
        transform-origin: -65px 30px;
    }
}