/*--------------------------------------------------------------Preloader - CSS--------------------------------------------------------------*//*****************/#loading{    background-color: #ffffff;    height: 100%;    width: 100%;    position: fixed;    z-index: 9999999;    margin-top: 0px;    top: 0px;}#loading-center{    width: 100%;    height: 100%;    position: relative;}#loading-center-absolute {    padding: 0;    position: absolute;    text-align: center;    top: 35%;    width: 100%;}.loader {    margin: 0 auto;    margin-top: 50px;    position: relative;    animation: bounce 1.5s infinite linear;    background: #8aa539;    border-radius: 50%;    display: inline-block;    height: 20px;    text-align: center;    width: 20px;}.loader:nth-child(1){    animation-delay: .2s;}.loader:nth-child(2){    animation-delay: .4s;}.loader:nth-child(3){    animation-delay: .6s;}.loader:nth-child(4){    animation-delay: .8s;}.loader:nth-child(5){    animation-delay: 1s;}@keyframes bounce {    0% {        transform: translateY(0);    }    15% {        transform: translateY(-15px);    }    30% {        transform: translateY(0);    }}