#theme-container {
	position: relative;

	#theme-loader {
		position: absolute;
		background: white;
		height: 100%;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#themes {
		display: grid;
		box-sizing: border-box;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
		margin-bottom: 1rem;


		.theme {
			border-radius: $border-radius-lg;
			box-shadow: $box-shadow;
			background-color: $light;

			.image-container {
				position: relative;
				height: 200px;
				cursor: pointer;
				transition: all ease .5s;

				& > i {
					position: absolute;
					display: flex;
					align-items: center;
					justify-content: center;
					width: 100%;
					height: 100%;
					font-size: 3.5rem;
					z-index: 1;
					opacity: 0;
					transition: all ease .5s;
				}

				.featured-image {
					object-position: top;
					object-fit: contain;
					position: absolute;
					width: 100%;
					height: 100%;
					border-top-right-radius: $border-radius-lg;
					border-top-left-radius: $border-radius-lg;
				}

				&:hover {
					filter: brightness(.75);

					& > i {
						opacity: 1;
					}
				}
			}

			.content-container {
				padding: 1rem;
			}
		}
	}

	#pagination-container {
		margin-bottom: 1rem;
	}
}