#pre-loader {
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    left: 0px;
    bottom: 0px;
    overflow: hidden !important;
    right: 0px;
    z-index: 999999;
}

#pre-loader .banana {
    text-align: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    z-index: 99;
    margin: 0 auto;
}

.banana {
    padding: 20px;
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50%;
    background: white;
    float: left;
    margin: 50px 100px;
}

.banana::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 50%;
    border: solid 2px #00ba69;
    top: 0;
    left: 0;
    animation: grow 1s infinite ease-in-out;
}

.banana::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    border-radius: 50%;
    border: solid 2px #00ba69;
    top: 0;
    left: 0;
    animation: grow 1s 0.5s infinite ease-in-out;
}

.b::before {
    animation: grow 1s infinite alternate ease-in-out;
}
.b::after {
    animation: grow 1s 0.5s infinite alternate ease-in-out;
}

@keyframes grow {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.c::before {
    background: #00ba69;
    animation: grow 1.5s infinite ease-out;
}

.c::after {
    animation: grow 2s 0.5s infinite ease-out;
}

.d {
    background: transparent;
}
.d::before {
    border: 2px dotted #00ba69;
    border-bottom: 4px solid #00ba69;
    border-top: 4px solid #00ba69;
    animation: spinning 1.5s infinite linear;
}
.d::after {
    animation: grow 2s 0.5s infinite ease-out;
}

.e::before {
    background: #00ba69;
    animation: grow 1s infinite ease-out;
}
.e::after {
    animation: grow 1s 0.5s infinite ease-out;
}

.f::before {
    background: #00ba69;
    animation: grow 1s 1.5s infinite ease-out;
}
.f::after {
    animation: grow 1s 0.8s infinite ease-out;
}

@keyframes spinning {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

.loading-upload {
    background-color: rgba(27, 31, 36, 0.5);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    left: 0px;
    bottom: 0px;
    overflow: hidden !important;
    right: 0px;
    z-index: 99999;
}
