.wait-banner {
    background-color: #009dde;
    width: 710px;
    max-width: 100%;
    min-height: 410px;
    padding: 30px 10px;
    text-align: center;
    position: relative;
}


@media (min-width: 768px) {
    .wait-banner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 60px;
        margin-top: 30px;
    }

    .wait-banner::before {
        content: "";
        background: #fff url(Images/wait_dog.jpg) bottom center no-repeat;
        display: block;
        width:220px;
        height: 204px;
        position: absolute;
        top: -204px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.wait-banner * {
    color:#fff;
}

.wait-banner h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.417;
}

.waint-banner-loader-wrapper {
    display: none;
    text-align: center;
    width: 100%;
    padding-top: 40px; 
}

.wait-banner-loader {
    margin-bottom: 10px;
}

.wait-banner-loader div {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.502);
    border-radius: 50%;
    margin: 0 10px;
    animation: lighten ease-in 2s infinite;
    -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -o-animation-delay:  .5s;
    animation-delay:  .5s;
}


.wait-banner-loader div:first-of-type {
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}


.wait-banner-loader div:last-of-type {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

@keyframes lighten {

    50% {
        background-color: #fff;
        transform: scale(1.6);
    }

}

.btn-white-invert {
    margin-top: 10px;
}
  