﻿#veil {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: not-allowed;
    filter: alpha(opacity=60);
    opacity: 0.6;
    background: #000000;
}

#feedLoading {
    margin: auto;
    height: 100%;
    width: 100%;
    text-align: center;
    padding: 0px;
    top: 150px;
    left: 0;
    position: absolute;
    -webkit-animation: anim 1s infinite;
    animation: anim 1s infinite;
}

@-webkit-keyframes anim {
    from {
        -webkit-transform: rotateY(0deg);
    }

    to {
        -webkit-transform: rotateY(360deg);
    }
}

@keyframes anim {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}
