/* CSS Document */

.tileWrapper {
	display: inline-block;
	width: 20%;
	aspect-ratio: 4 / 3;
	padding: 10px;
}
.tileContainer {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-align: center;
}
.tileModelImage {
	height: 100%;
	width: 100%;
	z-index: 5;
	object-fit: cover;
}
.tileInfoBanner {
	background-color: rgba(0,0,0,0.66);
	backdrop-filter: blur(10px);
	position: absolute;
	height: 55px;
	bottom: -55px;
	left: 0;
	right: 0;
	padding: 10px;
	display: flex;
	align-items: center;
	align-content: center;
	transition: .2s ease-out;
	z-index: 10;
}
.tileContainer:hover .tileInfoBanner {
	bottom: 0;
}

.premiumLabelBox {
	position: absolute;
	left: 10px;
	width: 30px; 
	height: 30px;
	z-index: 20;
}
.premiumLabelHover {
	position: absolute; top: -70px; padding: 10px; 
	text-align: center; backdrop-filter: blur(10px); 
	background-color: rgba(0,0,0,0.75); display: none; 
}
.premiumLabelBox:hover .premiumLabelHover {
	display: block;
}

.tileModelName {
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	color: var(--button_gradient1);
	font-weight: 600;
	z-index: 10;
}

.tileFavoriteLabel {
	position: absolute;
	right: 10px;
	height: 30px;
	width: 30px;
	cursor: pointer;
	text-align: center;
	font-size: 7pt;
	z-index: 20;
}
.tileLabelIcons {
	height: 35px;
	transition: .2s;
	transform: rotate(0deg) scale(1);
}


@media only screen and (max-width: 1500px) {
	.tileWrapper {
		width: 25%;
	}
}

@media only screen and (max-width: 1000px) {
	.tileWrapper {
		width: 50%;
	}
	.tileInfoBanner {
		bottom: 0px;
	}
	.tileModelName {
		font-size: 10pt;
	}
}

@media only screen and (max-width: 635px) {
	.tileWrapper {
		width: 50%;
	}
}