﻿#loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10;
    z-index: 999999999 !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50)
}

.bubbles {
    text-align: center;
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    margin-top: -30px
}

    .bubbles .title {
        color: #a1a1a1;
        font-size: 25px;
        line-height: 25px;
        margin-bottom: 50px;
        font-weight: 500
    }

    .bubbles span {
        display: inline-block;
        vertical-align: middle;
        width: 15px;
        height: 15px;
        background: #e9352c;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        animation: bubbly .9s infinite alternate
    }

#bubble2 {
    animation-delay: .27s
}

#bubble3 {
    animation-delay: .54s
}

@-webkit-keyframes bubbly {
    0% {
        width: 15px;
        height: 15px;
        opacity: 1;
        -webkit-transform: translateY(0)
    }

    100% {
        width: 50px;
        height: 50px;
        opacity: .1;
        -webkit-transform: translateY(-32px)
    }
}

@keyframes bubbly {
    0% {
        width: 15px;
        height: 15px;
        opacity: 1;
        transform: translateY(0)
    }

    100% {
        width: 50px;
        height: 50px;
        opacity: .1;
        transform: translateY(-32px)
    }
}

@-webkit-keyframes pulsate {
    0% {
        transform: scale(.1);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        transform: scale(1.2);
        opacity: 0
    }
}

@-moz-keyframes pulsate {
    0% {
        transform: scale(.1);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        transform: scale(1.2);
        opacity: 0
    }
}

@-ms-keyframes pulsate {
    0%,100% {
        opacity: 0
    }

    0% {
        -ms-transform: scale(.1,.1)
    }

    50% {
        opacity: 1
    }

    100% {
        -ms-transform: scale(1.2,1.2)
    }
}

@-o-keyframes pulsate {
    0% {
        -o-transform: scale(.1,.1);
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        -o-transform: scale(1.2,1.2);
        opacity: 0
    }
}
