﻿/* loader */

#loader {
    background-color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border-radius: 50%;
    border: 5px solid #003153;
    border-top: 5px solid #ec416d;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin
{
    0% { -webkit-transform:rotate(0deg); }
    100% { -webkit-transform:rotate(360deg); }
}

@keyframes spin
{
    0% { transform:rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Add animation to page content (slide body up) */
.animate-bottom
{
    position:relative;
    -webkit-animation-name:animate_bottom;
    -webkit-animation-duration:1s;
    animation-name:animate_bottom;
    animation-duration:1s;
}

@-webkit-keyframes animate_bottom
{
    from { bottom:-100px; opacity:0; }
    to { bottom:0; opacity:1; }
}

@keyframes animate_bottom 
{
    from { bottom: -100px; opacity: 0; }

    to { bottom: 0; opacity: 1; }
}
