.skeleton {
	opacity: .7;
	animation: skeleton-loading 1s linear infinite alternate;
}

.skeleton-image {
	width: 100%;
	height: 150px;
	margin-bottom: 15px;
	border-radius: 5px;
}

.skeleton-content-wrapper {
	padding: 15px;
}

.skeleton-title {
	width: 90%;
	height: 15px;
	border-radius: 3px;
	margin-bottom: 5px;
}

.skeleton-price {
	width: 20%;
	height: 15px;
	border-radius: 3px;
	margin-bottom: 10px;
}

.skeleton-text-wrapper {
	margin-bottom: 20px;
}

.skeleton-text {
	width: 100%;
	height: 10px;
	margin-bottom: 3px;
	border-radius: 3px;
}

.skeleton-text:last-child {
	margin-bottom: 0;
	width: 80%;
}

.skeleton-btn {
	width: 70%;
	height: 40px;
	margin: 0 auto;
	border-radius: 15px;
}

@keyframes skeleton-loading {
	0% {
		background-color: hsl(200, 20%, 70%);
	}

	100% {
		background-color: hsl(200, 20%, 95%);
	}
}