﻿
#fullscreenLoader {
    display:none;
}

#overlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999999;
    background: rgba(38, 38, 38, 0.7);
}

.preloader {
    width: 240px;
    height: 117px;
    position: fixed;
    z-index: 99999999999;
    background-color: #0d2c54;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    box-shadow: 0px 0px 10px #000;
}

    .preloader p {
        position: fixed;
        top: 76%;
        left: 76%;
        transform:translate(-57%,-17%);
        margin-left: -45px;
        width: 120px;
        height: 90px;
        text-align: center;
        color: #ffb400;
        font-size: 17px;
        z-index: 99999999999;
    }






.pong-loader {
    position: fixed;
    margin: 0 auto;
    left: 6%;
    right: 0;
    top: 37%;
    height: 40px;
    width: 6px;
    background-color: transparent;
    animation: paddles 0.75s ease-out infinite;
    transform: translate(-50%,-50%);
    z-index: 99999999999;
}

    .pong-loader:before {
        content: "";
        position: absolute;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: 15px;
        width: 10px;
        height: 10px;
        background-color: #ffb400;
        border-radius: 50%;
        animation: ballbounce 0.6s ease-out infinite;
        z-index: 99999999999;
    }

@keyframes paddles {
    0% {
        box-shadow: -25px -10px 0px #ffb400, 25px 10px 0px #ffb400;
    }

    50% {
        box-shadow: -25px 8px 0px #ffb400, 25px -10px 0px #ffb400;
    }

    100% {
        box-shadow: -25px -10px 0px #ffb400, 25px 10px 0px #ffb400;
    }
}

@keyframes ballbounce {
    0% {
        transform: translateX(-20px) scale(1, 1.2);
    }

    25% {
        transform: scale(1.2, 1);
    }

    50% {
        transform: translateX(15px) scale(1, 1.2);
    }

    75% {
        transform: scale(1.2, 1);
    }

    100% {
        transform: translateX(-20px);
    }
}
