/* CSS Document */

.final-container{
	display: none;
	flex-wrap: wrap;
}

.placeholder-item{
	position: relative;
	overflow: hidden;
	background-color: #363636;
	opacity: .1;
	animation: pulse 1.5s infinite;
}
.placeholder-text{
	position: relative;
	overflow: hidden;
	background-color: #363636;
	border-radius: 50px;
	opacity: .1;
	animation: pulse 1.5s infinite;
}
.placeholder-text-100{
	width: 100%;
}
.placeholder-text-90{
	width: 90%;
}
.placeholder-text-80{
	width: 80%;
}
.placeholder-text-70{
	width: 70%;
}
.placeholder-text-60{
	width: 60%;
}
.placeholder-text-50{
	width: 50%;
}
.placeholder-text-40{
	width: 40%;
}
.placeholder-text-30{
	width: 30%;
}
.placeholder-text-20{
	width: 20%;
}

@keyframes pulse {
  0% {
    opacity: .1;
  }
  
  50% {
    opacity: .2;
  }
  
  100% {
    opacity: .1;
  }
}
