@-webkit-keyframes materialPlaceHolder{
    0%{
        background-position: -200px 0
    }
    100%{
        background-position: 200px 0
    }
}

@keyframes materialPlaceHolder{
    0%{
        background-position: -200px 0
    }
    100%{
        background-position: 200px 0
    }
}

.materialPlaceHolder {
    -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: materialPlaceHolder;
            animation-name: materialPlaceHolder;
    -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: -o-linear-gradient(left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 104px;
    height: 96px;
    position: relative;
}
.materialPlaceHolder.materialThemeDark{
	background: -webkit-gradient(linear, left top, right top, color-stop(8%, #828282), color-stop(18%, #747474), color-stop(33%, #828282));
	background: -webkit-linear-gradient(left, #828282 8%, #747474 18%, #828282 33%);
	background: -o-linear-gradient(left, #828282 8%, #747474 18%, #828282 33%);
	background: linear-gradient(to right, #828282 8%, #747474 18%, #828282 33%);
}