@charset "utf-8";
/* CSS Document */
/* Cotained within this document are all of the base elements for the various Cards used within the iLavVex Gaming website */



/* Base Card Elements */
.vcHolder {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border-radius: 25px;
}
.vcHolder.noCorner {
	border-radius: 0;
}
#vidsTable {
	width: 100%;
	max-width: 1920px;
	display: flex;
	flex-flow: row wrap;
}
.videoCard{
	position: relative;
	width: 40%;
	margin: 10px 2% 10px 2%;
	padding: 0;
	background: rgba(75,0,0,1.0);
	border-style: solid;
	border-width: 3px;
	border-color: rgba(150,150,150,1.0);
	border-radius: 30px;
	box-shadow: 2px 2px 5px 2px rgba(5,5,5,1.00);
	overflow: hidden;
	transition: 0.25s ease-out, background 0.25s ease-out;
}
.cardShine {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background-size: 200% auto;
	background-image: linear-gradient(45deg, rgba(150,150,150,0) 60%, rgba(200,200,200,0.3)61%, rgba(150,150,150,0) 98%);
	transition: 0.25s ease-out, background 0.25s ease-out;
}
.videoCard:hover {
	position: relative;
	box-shadow: 0 16px 16px 3px rgba(15,15,15,1.00);
	transform-origin: top;
	-webkit-transform: perspective(2500px )rotateX(30deg) scaleZ(5);
	transform: perspective(2500px )rotateX(30deg) scaleZ(5);
}
.cardShine:hover {
	background-position: 55%;
}
.noShineCover {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: rgba(200,200,200,0);
}

/* Pertaining to more basic card elements*/
.thumbnail {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
.thumbnail.noBorder {
	margin: 0;
}


/* All of the following determine the appearance of the Video Card */
.vidTitle {
	width: auto;
	height: 44px;
	max-height: 44px;
	margin: 10px 25px 25px 25px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;  
  	overflow: hidden;
	font-size: 18px;
	text-align: left;
	color: rgba(200,200,200,1.0);
}
.vidViews {
	width: 100%;
	margin: 10px 25px 25px 25px;
	font-family: "Good Times";
	font-size: 18px;
	text-align: left;
	color: rgba(200,200,200,1.0);
}



/* All of the following pertain to the base elements of the Merch Card */
	/* Here are the shape components */
.merchCard {
	position: relative;
	width: 25%;
	height: auto;
	margin: 20px 1%;
	padding: 0;
	background: rgba(15,15,15,1.00);
	border: 3px solid rgba(95,55,150,1.00);
	transition: 0.5s;
}
.merchCard:hover {
	border: 3px solid rgba(150,0,0,1.00);
}

	/* Here are the text components */
.merchTitle {
	width: auto;
	height: 44px;
	max-height: 44px;
	margin: 10px 25px 15px 25px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;  
  	overflow: hidden;
	font-size: 18px;
	text-align: center;
	color: rgba(100,100,100,1.00);
}
.availability {
	width: auto;
	margin: 0 25px 0 25px;
	font-family: "Toxigenesis";
	font-size: 18px;
	text-align: left;
	color: rgba(50,50,50,1.0);
}
.availability.limited {
	text-align: center;
	border-radius: 5px;
	background: rgba(150,0,0,1.00);
	color: rgba(200,200,200,1.0);
}
.vendor {
	width: auto;
	margin: 22px 25px 25px 25px;
	font-family: "Toxigenesis";
	font-size: 18px;
	text-align: right;
	color: rgba(100,100,100,1.0);
}



@media screen and (max-width: 1400px) {
	
}
@media screen and (max-width: 930px) {
	.videoCard {
		width: 95%;
		margin: 10px 0 10px 0;
		border-radius: 15px;
	}
	.vcHolder {
		border-radius: 10px;
	}
}
@media screen and (max-width: 700px) {
	.videoCard {
		width: 95%;
		margin: 10px 0 10px 0;
		border-radius: 15px;
	}
	.vcHolder {
		border-radius: 10px;
	}
}