.containerLoading{
    width: 100%;
    height: auto;
    padding-top: 20px;
}
/*a{*/
/*	display: block;*/
/*	text-align: center;*/
/*	font-size: 20px;*/
/*	margin-top: 200px;*/
/*}*/
.loadingPlus{
    width: 80px;
    height: 40px;
    margin: 0 auto;
    margin-top:20px;
}
.loadingPlus span{
    display: inline-block;
    width: 8px;
    height: 100%;
    border-radius: 4px;
    background: lightgreen;
    -webkit-animation: load 1s ease infinite;
    animation: load 1s ease infinite;
}
@-webkit-keyframes load{
    0%,100%{
        height: 40px;
        background: lightgreen;
    }
    50%{
        height: 70px;
        margin: -15px 0;
        background: lightblue;
    }
}
.loadingPlus span:nth-child(2){
    -webkit-animation-delay:0.2s;
    animation-delay:0.2s;
}
.loadingPlus span:nth-child(3){
    -webkit-animation-delay:0.4s;
    animation-delay:0.4s;
}
.loadingPlus span:nth-child(4){
    -webkit-animation-delay:0.6s;
    animation-delay:0.6s;
}
.loadingPlus span:nth-child(5){
    -webkit-animation-delay:0.8s;
    animation-delay:0.8s;
}

/* Demo Buttons Style */
.codrops-demos {
    font-size: 0.8em;
    text-align:center;
    position:absolute;
    z-index:99;
    width:96%;
}

.codrops-demos a {
    display: inline-block;
    margin: 0.35em 0.1em;
    padding: 0.5em 1.2em;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 2px;
    font-size: 110%;
    border: 2px solid transparent;
    color:#3366cc;
}

.codrops-demos a:hover,
.codrops-demos a.current-demo {
    border-color: #3366cc;
}
