/* EFEITO PLACEHOLDER SHIMMER */

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }
    100% {
        background-position: 468px 0
    }
}

.animated-background {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 104px;
    height: 180px;
    position: relative;
}

.background-masker {
    background: #fff;
    position: absolute;
}


/* Every thing below this is just positioning */

.background-masker.header-top,
.background-masker.header-bottom,
.background-masker.subheader-bottom {
    top: 0;
    left: 40px;
    right: 0;
    height: 10px;
}

.background-masker.header-left,
.background-masker.subheader-left,
.background-masker.header-right,
.background-masker.subheader-right {
    top: 10px;
    left: 40px;
    height: 8px;
    width: 10px;
}

.background-masker.header-bottom {
    top: 18px;
    height: 6px;
}

.background-masker.subheader-left,
.background-masker.subheader-right {
    top: 24px;
    height: 6px;
}

.background-masker.header-right,
.background-masker.subheader-right {
    width: auto;
    left: 300px;
    right: 0;
}

.background-masker.subheader-right {
    left: 230px;
}

.background-masker.subheader-bottom {
    top: 30px;
    height: 10px;
}

.background-masker.content-top,
.background-masker.content-second-line,
.background-masker.content-third-line,
.background-masker.content-fourth-line {
    top: 80px;
    left: 0;
    right: 0;
    height: 6px;
}

.background-masker.content-top {
    height: 20px;
}


/*LINHAS BRANCAS*/

.background-masker.content-second-line {
    top: 120px;
    height: 10px;
}

.background-masker.content-third-line {
    top: 150px;
    height: 10px;
}

.background-masker.content-fourth-line {
    top: 180px;
    height: 10px;
}


/*PADDINGS ON THE LEFT*/

.background-masker.content-first-start {
    width: 20px;
    left: 0;
    top: 100px;
    height: 20px;
}

.background-masker.content-second-start {
    left: 0;
    top: 130px;
    width: 20px;
    height: 20px;
}

.background-masker.content-third-start {
    left: 0;
    top: 160px;
    width: 20px;
    height: 20px;
}

.background-masker.content-fourth-start {
    left: 0;
    top: 190px;
    width: 20px;
    height: 20px;
}


/*PADDINGS ON THE RIGHT*/

.background-masker.content-first-end {
    width: 20px;
    right: 0px;
    top: 100px;
    height: 20px;
}

.background-masker.content-second-end {
    width: 20px;
    right: 0px;
    top: 130px;
    height: 20px;
}

.background-masker.content-third-end {
    width: 20px;
    right: 0px;
    top: 160px;
    height: 20px;
}