﻿.page {
    width: 100%;
    margin: 0px;
    padding: 0px;
    /*background: #e5e5e5;*/
}

.page-content {
    background: #fff;
    padding: 0px;
}

.placeholder-content {
    height: 125px;
    overflow: hidden;
    background: #000;
    position: relative;
    animation-duration: 1.7s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: placeholderAnimate;
    background: #f6f7f8;
    background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);
    background-size: 1300px;
}

.placeholder-content_item {
    width: 100%;
    height: 20px;
    position: absolute;
    background: #fff;
    z-index: 2;
}

    .placeholder-content_item:after, .placeholder-content_item:before {
        width: inherit;
        height: inherit;
        content: '';
        position: absolute;
    }

    .placeholder-content_item:nth-child(1) {
        top: 0;
        left: 0;
    }

    .placeholder-content_item:nth-child(2) {
        top: 20px;
        left: 0;
        width: 10px;
        height: 20px;
        background-color: pink;
    }

    .placeholder-content_item:nth-child(3) {
        top: 0px;
        left: 0;
        width: 10px;
        height: 100%;
    }

    .placeholder-content_item:nth-child(4) {
        top: 20px;
        width: 20px;
        left: 170px;
        height: 90px;
    }

    .placeholder-content_item:nth-child(5) {
        top: 40px;
        left: 190px;
        height: 12px;
    }

    .placeholder-content_item:nth-child(6) {
        top: 75px;
        left: 190px;
        height: 12px;
    }

    .placeholder-content_item:nth-child(7) {
        top: 20px;
        right: 0;
        width: 23%;
        height: 20px;
    }

    .placeholder-content_item:nth-child(8) {
        top: 0;
        right: 0;
        width: 10%;
        height: 100%;
    }

    .placeholder-content_item:nth-child(9) {
        top: 110px;
        height: 17px;
        left: 0;
    }

    .placeholder-content_item:nth-child(10) {
        top: 149px;
        height: 12px;
        left: 0;
    }

/*.placeholder-content_item:nth-child(11) {
                top: 183px;
                left: 0;
                height: 100%;
            }*/

@keyframes placeholderAnimate {
    0% {
        background-position: -650px 0;
    }

    100% {
        background-position: 650px 0;
    }
}
