
			.images {
				opacity: 0;
				transition: all .3s ease;
			}

			.images.loaded {
				opacity: 1;
			}

			.loading-bar {
				width: 80%;
				height: 4px;
				background: #e0e0e0;
				border-radius: 2px;
				overflow: hidden;
				margin-top: 10px;
				margin-left: auto;
				margin-right: auto;
			}

			.loading-progress {
				height: 100%;
				width: 0%;
				background: #3498db;
				border-radius: 2px;
				transition: width 0.3s ease;
			}

			.placeholder {
				width: 100%;
				height: 100%;
				padding-top:1.5rem;
			}

			.placeholder-text {
				font-size: 14px;
				color: #fff;
				text-align: center;
			}