
/* Loader */
body {
    margin: 0;
}

#loader-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    text-align: center;
}

.loader-content {
    position: relative;
    top: 35%;
}

.loader {
    border: 4px solid #03A9F4;
    border-radius: 50%;
    border-top: 4px solid #caf9ff;
    border-bottom: 4px solid #caf9ff;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 1s ease-out infinite;
    animation: spin 1s ease-out infinite;
    display: inline-block;
    background: #4ea2c7;
    box-shadow: 0 0 13px 4px #8adbff;
}

.loader-text {
    position: relative;
    text-align: center;
    margin-top: 0.9em;
    font-size: 1.5em;
    font-family: sans-serif;
    color: #00BCD4;
    text-shadow: 1px 1px #004a54;
    animation: bounce 3s linear infinite;
    letter-spacing: 0.1em;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0% {
        top: 0;
    }
    25% {
        top: 10px;
    }
    50% {
        top: 0;
    }
    75% {
        top: 10px;
    }
    100% {
        top: 0;
    }
}
/* loader end */
