@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Oswald|Kanit');

body{
	height: 100%; /* allows you to use percentages for other elements */
	margin: 0;
	padding: 0;
}

nav{
	background: rgba(255, 255, 255, .9);
	position: relative;
	top:0;
	left:0;
	z-index: 888;
	width:100%;
	border-bottom: 2px solid #1E90FF;
	
}

#langlbl{
	height:100%;
	font-family: 'Oswald',cursive;
    padding-left: 30px;
	color: #1E90FF;
}

#lang{
	height:100%;
	font-family: 'Oswald',cursive;
	padding-left: 2px;
	text-decoration: bold;
	color: #1E90FF;
}

#logoImg{
	height: 50px;
	padding-left: 20px;
}

#lang:hover{
	font-style: italic;
	text-decoration: underline;
	cursor: pointer;
}

.catalog{
	position: relative;
	width:80%;
	padding-top: 20px;
	margin: 0 auto;
}

.wrapper{
	background-color: #fff;
	float:left;
	width: 250px;
	height:auto;
	padding: 10px;
	margin:10px;
	border: 1px solid #e3e3e3;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(34, 25, 25, 0.4);
}

.divImages{
	text-align: center;
	height: 220px;
}

.divImages:hover{
	cursor: pointer; 
}

.divTitles{
 	font-size: 20px;
	font-family: 'Oswald',cursive;
	height: 55px;
 	padding: 5px;
	text-shadow: 0px 0px 0.5px rgba(0, 0, 1, 1);
}

.divStars{
	font-style: italic;
	padding: 5px;
	max-height:12px;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	background-color: #fff;
}

.divStars:after{
	content: "";
	pointer-events: none;
	position: absolute;
	width: 100px;
	height: 100%;
	top: 0; right: 0;

	background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	background-image: -moz-linear-gradient(right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	background-image: -ms-linear-gradient(right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	background-image: -o-linear-gradient(right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	background-image: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.divPrices{
	font-family: 'Kanit',cursive;
	font-size: 20px;
	padding: 5px;
	color:blue;
}

#trigger {
	font-size: 20px;
	cursor:pointer;
	position:fixed;
	top:20px;
	right:20px;
	z-index: 999;
	color:#333;
	font-weight:bold;
}

.modalDialog {
	position: fixed;
	font-family: 'Oswald',cursive;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog > div {
	width: 80%;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
	background: -moz-linear-gradient(#fff, #999);
	background: -webkit-linear-gradient(#fff, #999);
	background: -o-linear-gradient(#fff, #999);
}

.modalDialog p{
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
	font-family: 'Oswald',cursive;
}

.modalDialog h1{
	padding: 5px;
	font-family: 'Oswald',cursive;
	font-size: 20px;
}

.modalDialog figure img{
	width:90px;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #00d9ff; }


/* ==== TABLET LAYOUT ==== */
/* 481px to 768px. Inherits styles from mobile layout */

@media only screen and (min-width: 540px) {
	#logoImg{
		padding-left: 100px;
	}
	
	.modalDialog > div {
		width: 50%;
	}
	
	#langlbl{
		padding-left: 100px;
	}

}

/* ==== DESKTOP LAYOUT ==== */
/* 769px to max of 1200px. Inherits styles from mobile layout and Tablet Layout */

@media only screen and (min-width: 900px) {
	
	#logoImg{
		padding-left: 200px;
	}
	
	.modalDialog > div {
		width: 25%;
	}
	
	#langlbl{
		padding-left: 300px;
	}

}

 
