
/*<-#-#-#-#-#DRINKS STYLES#-#-#-#-#->*/

/*INFO*/
/*This style sheet includes styles used by the drinks page*/

/*<----------Drinks Gallery---------->*/

/*<--Hide Profiles Header Changes-->*/

div.hideProfiles {
	margin: 0px;
	padding: -3px;
	border: solid #9a0000 3px;
	height: 35px;
	width: 99.5%;
}

a.hideProfiles {
	margin: 0px;
	padding: 0px;
	display: block;
	background-color: white;
	width: 98%;
}

a.hideProfiles:hover {
	background-color: #8d8d8d;
	transition: 0.7s;
}

/*<--Info for Header-->*/

h1.drinkManufacturer {
	margin: 0px;
	padding: 5px 1% 5px 1%;
	font-size: 1.5rem;
	float: left;
}

h1.plus {
	margin: 0px;
	padding: 3px 2% 10px 1%;
	font-size: 1.5rem;
	float: right;
	display: none;
}

h1.minus {
	margin: 0px;
	padding: 3px 3% 15px 1%;
	font-size: 1.5rem;
	float: right;
	display: block;
}

/*<--Makes Profiles Align Dynamically-->*/

div.profileContainer {
	width: 97.5%;
	float: left;
	background-color: rgba(255, 255, 255, 0.5);
	margin: 0px;
	margin-top: -11px;
	padding: 15px -3px 0px -3px;
	border: solid #9a0000 3px;
}		

/*<--Drink Card-->*/

div.drinkCard {
	margin: 10px;
	padding: 0px;
	width: 200px;
	height: 300px;
	overflow: hidden;
	float: left;
	border: solid #9a0000 3px;
	position: relative;
	text-decoration: none;
}

a.viewProfile:link, a.viewProfile:visited {
	text-decoration: none;
	display: block;
	background-color: white;
}

a.viewProfile:hover {
	background-color: #9a0000;
	transition: 0.7s;
}

/*<--Name and Image-->*/

div.drinkName {
	margin: 0px;
	padding: 0px;
	background-color: rgba(67, 67, 67, 0.8);
	z-index: 2;
	position: absolute;
	width: 400px;
}	

h1.drinkName {
	margin: 0px;
	padding: 10px 5px 10px 5px;
	font-size: 1.2rem;
	color: white;
}

img.drinkImage {
	margin: 0px;
	padding: 0px;
	height: 500px;
	width: 400px;
	display: block;
	object-fit: contain;
	position: absolute;
	left: -100px;
	top: -100px;
	z-index: 1;
}

/*<--Divs For Slant Effect-->*/

div.topRazor {
	margin: 0px;
	padding: 0px;
	width: 200px;
	height: 170px;
	z-index: 1;
	opacity: 0;
}

div.bottomRazor {
	width: 300px;
	height: 200px;
	background-color: #434343;
	opacity: 0.8;
	box-shadow: -30px -30px 30px 0px #434343;
	-ms-transform: skewY(160deg);
    -webkit-transform: skewY(160deg);
    transform: skewY(160deg);
	position: relative;
	bottom: 0px;
	z-index: 1;
	content: ' ';
}

/*<--Conent Teaser-->*/

div.cardDetails {
	margin: 0px;
	margin-left: 5px;
	padding: 0px;
	position: relative;
	bottom: 185px;
	z-index: 2;
	color: white;
}

/*<----------Media Queries for MOBILE (phone and tablet) Version---------->*/

/*<--Device Pixel Ratio Query for All High DPI Screens-->*/

@media only screen and (-moz-min-device-pixel-ratio: 2), 
       only screen and (-o-min-device-pixel-ratio: 2/1), 
       only screen and (-webkit-min-device-pixel-ratio: 2), 
       only screen and (min-device-pixel-ratio: 2) {


/*<--Link State Changes to Stop Hover Sticking-->*/

	a.viewProfile:hover {
		background-color: white;
	}
	
	a.hideProfiles:hover {
		background-color: white;
	}
}
	