.email-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #16a34a;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.email-loading-screen .custom-body {
    position: absolute;
    top: 50%;
    margin-left: -50px;
    left: 50%;
    animation: custom-speeder .4s linear infinite;
}

.email-loading-screen .custom-base span {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 100px solid #000;
    border-bottom: 6px solid transparent;
}

.email-loading-screen .custom-base span:before {
    content: "";
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    right: -110px;
    top: -16px;
}

.email-loading-screen .custom-base span:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-right: 55px solid #000;
    border-bottom: 16px solid transparent;
    top: -16px;
    right: -98px;
}

.email-loading-screen .custom-face {
    position: absolute;
    height: 12px;
    width: 20px;
    background: #000;
    border-radius: 20px 20px 0 0;
    transform: rotate(-40deg);
    right: -125px;
    top: -15px;
}

.email-loading-screen .custom-face:after {
    content: "";
    height: 12px;
    width: 12px;
    background: #000;
    right: 4px;
    top: 7px;
    position: absolute;
    transform: rotate(40deg);
    transform-origin: 50% 50%;
    border-radius: 0 0 0 2px;
}

.email-loading-screen .custom-body > span > span:nth-child(1),
.email-loading-screen .custom-body > span > span:nth-child(2),
.email-loading-screen .custom-body > span > span:nth-child(3),
.email-loading-screen .custom-body > span > span:nth-child(4) {
    width: 30px;
    height: 1px;
    background: #000;
    position: absolute;
    animation: custom-fazer1 .2s linear infinite;
}

.email-loading-screen .custom-body > span > span:nth-child(2) {
    top: 3px;
    animation: custom-fazer2 .4s linear infinite;
}

.email-loading-screen .custom-body > span > span:nth-child(3) {
    top: 1px;
    animation: custom-fazer3 .4s linear infinite;
    animation-delay: -1s;
}

.email-loading-screen .custom-body > span > span:nth-child(4) {
    top: 4px;
    animation: custom-fazer4 1s linear infinite;
    animation-delay: -1s;
}

@keyframes custom-fazer1 {
    0% {
        left: 0;
    }

    100% {
        left: -80px;
        opacity: 0;
    }
}

@keyframes custom-fazer2 {
    0% {
        left: 0;
    }

    100% {
        left: -100px;
        opacity: 0;
    }
}

@keyframes custom-fazer3 {
    0% {
        left: 0;
    }

    100% {
        left: -50px;
        opacity: 0;
    }
}

@keyframes custom-fazer4 {
    0% {
        left: 0;
    }

    100% {
        left: -150px;
        opacity: 0;
    }
}

@keyframes custom-speeder {
    0% {
        transform: translate(2px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -3px) rotate(-1deg);
    }

    20% {
        transform: translate(-2px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 3px) rotate(-1deg);
    }

    60% {
        transform: translate(-1px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-2px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(2px, 1px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.email-loading-screen .custom-longfazers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.email-loading-screen .custom-longfazers span {
    position: absolute;
    height: 2px;
    width: 20%;
    background: #000;
}

.email-loading-screen .custom-longfazers span:nth-child(1) {
    top: 20%;
    animation: custom-lf .6s linear infinite;
    animation-delay: -5s;
}

.email-loading-screen .custom-longfazers span:nth-child(2) {
    top: 40%;
    animation: custom-lf2 .8s linear infinite;
    animation-delay: -1s;
}

.email-loading-screen .custom-longfazers span:nth-child(3) {
    top: 60%;
    animation: custom-lf3 .6s linear infinite;
}

.email-loading-screen .custom-longfazers span:nth-child(4) {
    top: 80%;
    animation: custom-lf4 .5s linear infinite;
    animation-delay: -3s;
}

@keyframes custom-lf {
    0% {
        left: 200%;
    }

    100% {
        left: -200%;
        opacity: 0;
    }
}

@keyframes custom-lf2 {
    0% {
        left: 200%;
    }

    100% {
        left: -200%;
        opacity: 0;
    }
}

@keyframes custom-lf3 {
    0% {
        left: 200%;
    }

    100% {
        left: -100%;
        opacity: 0;
    }
}

@keyframes custom-lf4 {
    0% {
        left: 200%;
    }

    100% {
        left: -100%;
        opacity: 0;
    }
}