@-webkit-keyframes placeHolderShimmer {
0% {
    background-position: -468px 0;
    }
    100% {
    background-position: 468px 0;
    }
}
@keyframes placeHolderShimmer {
    0% {
    background-position: -468px 0;
    }
    100% {
    background-position: 468px 0;
    }
}
.content-placeholder {
    display: inline-block;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: placeHolderShimmer;
    animation-name: placeHolderShimmer;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eeeeee), color-stop(18%, #dddddd), color-stop(33%, #eeeeee));
    background: -webkit-linear-gradient(left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    -webkit-background-size: 800px 104px;
    background-size: 800px 104px;
    height: inherit;
    position: relative;
}
.post_data
{
    padding:24px;
    border:1px solid #f9f9f9;
    border-radius: 5px;
    margin-bottom: 24px;
}

a.btn{
    margin-bottom: 20px;
}

.loader {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.load-placeholder {
    display: inline-block;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: placeHolderShimmer;
    animation-name: placeHolderShimmer;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(238, 238, 238, 0.5)), color-stop(18%, #a7a7a7), color-stop(33%, rgba(238, 238, 238, 0.5)));
    background: -webkit-linear-gradient(left, rgba(238, 238, 238, 0.5) 8%, #a7a7a7 18%, rgba(238, 238, 238, 0.5) 33%);
    background: linear-gradient(to right, rgba(238, 238, 238, 0.5) 8%, #a7a7a7 18%, rgba(238, 238, 238, 0.5) 33%);
    -webkit-background-size: 800px 104px;
    background-size: 800px 104px;
    height: inherit;
    position: relative;
}