
.redpack-open {
    overflow: hidden !important;
}

.start-loading-logo {
    margin-bottom: 40px;
}

#start-loading {
    width: 100%;
    height: 100%;
    background-color: #24262b;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

#Loading {
    top: 46%;
    left: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%) translateX(-50%) scale(0.5);
    -moz-transform: translateY(-50%) translateX(-50%) scale(0.5);
    transform: translateY(-50%) translateX(-50%) scale(0.5);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes start-ball-beat {
    20% {
        opacity: 0.2;
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        transform: scale(0.75);
    }

    40% {
        opacity: 0.4;
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        transform: scale(0.75);
    }

    60% {
        opacity: 0.6;
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        transform: scale(0.75);
    }

    80% {
        opacity: 0.8;
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.start-ball-beat > div {
    background-color: rgb(0, 168, 16);
    width: 20px;
    height: 20px;
    border-radius: 100% !important;
    margin: 4px;
    animation-fill-mode: both;
    display: inline-block;
    -webkit-animation: start-ball-beat 1.25s 0s infinite linear;
    -moz-animation: start-ball-beat 1.25s 0s infinite linear;
    animation: start-ball-beat 1.25s 0s infinite linear;
}

.start-ball-beat > div:nth-child(1) {
    -webkit-animation-delay: -1s !important;
    -moz-animation-delay: -1s !important;
    animation-delay: -1s !important;
}

.start-ball-beat > div:nth-child(2) {
    -webkit-animation-delay: -0.75s !important;
    -moz-animation-delay: -0.75s !important;
    animation-delay: -0.75s !important;
}

.start-ball-beat > div:nth-child(3) {
    -webkit-animation-delay: -0.5s !important;
    -moz-animation-delay: -0.5s !important;
    animation-delay: -0.5s !important;
}

.start-ball-beat > div:nth-child(4) {
    -webkit-animation-delay: -0.25s !important;
    -moz-animation-delay: -0.25s !important;
    animation-delay: -0.25s !important;
}

.start-ball-beat > div:nth-child(5) {
    -webkit-animation-delay: 0s !important;
    -moz-animation-delay: 0s !important;
    animation-delay: 0s !important;
}
