@-webkit-viewport { width: device-width; }
	@-moz-viewport { width: device-width; }
	@-ms-viewport { width: device-width; }
	@-o-viewport { width: device-width; }
	@viewport { width: device-width; }
	
	@import url('../fonts/OpenSans/OpenSans-Regular.ttf');
	body {
		margin: 0px;
		font-family: 'Open Sans', 'Sans-Serif';
		font-size: 16px;
		letter-spacing: 0.5px;
		<?php
			if(!empty($site['site_background_image'])){
				echo 'background-image: url(\'images/background/'.$site['site_background_image'].'\')';
			}
		?>
	}

	div.cookie_notify {
		display: inline-block;
		font-size: 16px;
		border: 1px solid #606060;
		
	}

	nav {
		display: block;
		width: 100%;
		height: 30px;
		overflow: hidden;
		position: relative;
		z-index: 1;
		text-align: center;
	}

	nav:hover {
		height: auto;
	}

	a {
		color: #<?php echo $site['site_text_color']; ?>;
		text-decoration: none;
	}
	a:visited {
		color: #<?php echo $site['site_text_color']; ?>;
	}

	a.main_links {
		display: inline-block;
		position: relative;
		width: 100%;
		margin: 10px;
		font-size: 18px;
		color: #<?php echo $site['site_text_color']; ?>;
		border-bottom: 1px solid #<?php echo $site['site_background_color']; ?>;
		transition: border-bottom 0.5s ease;
	}

	a.main_links:hover {
		/*text-decoration: underline;*/
		border-bottom: 1px solid;
		animation-duration: 1s;
	}

	div.header {
		display: block;
		/*float: left;*/
		margin: auto;
		width: 100%;
		min-height: 100px;
		background-color: #<?php echo $site['site_top_background_color']; ?>;
		color: #<?php echo $site['site_top_text_color']; ?>;
	}

	.classic_input {
		display: block;
		width: 80%;
		height: 20px;
		margin: auto;
		margin-top: 10px;
		color: #000000;
	}

	img.site_logo {
		display: block;
		float: left;
		width: 250px;
		height: 100px;
	}

	span.site_name {
		display: flex;
		align-items: center;
		float: left;
		min-width: 100px;
		min-height: 50px;
		font-size: 12px;
	}

	div.content {
		display: block;
		float: left;
		width: 100%;
	}

	span.minititle {
		display: block;
		font-size: 24px;
		width: 100%;
		min-height: 30px;
		text-align: center;
		margin-top: 30px;
		margin-bottom: 30px;
		border-bottom: 2px solid; 
	}

	h1.title {
		display:block;
		width: 100%;
		text-align: center;
		margin: 15px;
		margin-left:auto;
		margin-right:auto;
	}

	a.reservation_button {
		position: relative;
		display: block;
		border-radius: 5px;
		background-color: #000000aa;
		color: #cccccc;
		text-align: center;
		font-size: 16px;
		margin:auto;
		margin-top: 20px;
		width: 100%;
		padding: 25px 100px 25px 100px;
	}

	@keyframes example {
	  0%  {background-size: 100% auto;}
	  50% {background-size: 150% auto;}
	  100% {background-size: 100% auto;}
	}

	div.apartman_home {
	  display: block;
	  float: left; 
	  margin: auto;
	  width:100%;
	  height:200px;
	  background-image:url('../images/content/800p/silver-dream-apartman-1.jpg');
	  background-size: cover; 
	  background-position: center;
	  animation-name: example;
	  animation-duration: 16s;
	  animation-iteration-count: infinite;
	}

	span.product_price_tag {
		display:block;
		width: 100%;
		height: 40px;
		text-align: center;
		margin: 0px;
		margin-left:auto;
		margin-right:auto;
		background-color: #ffffff;
		color: #303030;
		font-size: 24px;
	}

	span.product_buy_it {
		display:block;
		width: 350px;
		height: 40px;
		text-align: center;
		margin: 0px;
		margin-left:auto;
		margin-right:auto;
		background-color: #e03030;
		color: #ffffff;
		font-size: 24px;
		overflow: hidden;
	}

	img.product_main_image {
		display: block;	
		margin: auto;
		margin-top: 10px;
		height: 200px;
		border-radius: 15px;
	}

	div.product_thumb_image_frame {
		width: 170px;
		height: 170px;
		display: inline-block;
		margin: auto;
		/*float: left;*/
	}

	img.product_thumb_image {
		display: inline-block;	
		margin: 5px;
		width: 160px;
		height: 120px;
		border-radius: 15px;
	}

	div.product_list_frame {
		display: block;
		float: left;
		margin: 5px;
		width: 97%;
		height: 400px;
		background-color: #ffffff;
	}

	div.product_list_frame_inner {
		margin: auto;
		height: 320px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	img.product_list {
		display: block;
		margin: auto;
		max-width: 100%;
		max-height: 320px;
	}

	h2.product_list_text {
		display: block;
		width: 100%;
		min-height: 30px;
		color: #<?php echo $site['site_product_text_color']; ?>;
		text-align: center;
		font-size: 18px;
	}

	.page_content {
		display: block;
		margin-top: 15px;
		margin-left: auto;
		margin-right: auto;
		text-align: justify;
		width: 90%;
		font-size: 16px;
		line-height: 30px;
	}

	img.content_image {
		display: block;
		margin: auto;
		margin-top: 15px;
		min-width: 200px;
		max-width: 90%;
	}

	input.standard_input {
		display: block;
		margin: auto;
		margin-top: 5px;
		width: 240px;
		height: 30px;
	}

	textarea.standard_textarea {
		display: block;
		margin: auto;
		margin-top: 5px;
		width: 240px;
		height: 30px;
	}

	div.cookie {
		display: block;
		position: fixed;
		bottom: 0px;
		left: 0px;
		width: 100%;
		min-height: 30px;
		text-align: center;
		background-color: #ffffff;
		font-weight:bold;
		color: #303030; 
	}
	
	a.menutext {
		display: inline-block;
	}
	
	@media screen and (min-width:300px){ 
		a.reservation_button {
			border-radius: 5px;
			font-size: 40px;
			margin-top: 50px;
			width: 300px;
			padding: 25px 100px 25px 100px;
		}

		div.apartman_home {
			height:400px;
		}
	}

	@media screen and (min-width:600px){ 
		div.header {
			width: 90%;
			min-height: 100px;
		}

		span.site_name {
			font-size: 14px;
		}

		nav {
			height: auto;
			overflow: hidden;
		}

		a.menutext {
			display: none !important;
		}

		a.main_links {
			display: inline-block;
			font-size: 24px;
			width: auto;
		}

		div.product_list_frame {
			width: 48%;
		}

		img.product_main_image {
			height: 350px;
		}
	}

	@media screen and (min-width:1100px){ 
		div.header {
			width: 70%;
			min-height: 100px;
		}

		span.site_name {
			font-size: 18px;
			min-height: 100px;
		}

		div.product_list_frame {
			width: 32%;
		}

		img.product_main_image {
			height: 400px;
		}

		div.apartman_handle_frame {
			top: 10px;
			left: 50%;
			width: 500px;
			min-height: 500px;
		}

		.page_content {
			width: 75%;
		}
	}

	@media screen and (min-width:1600px){ 
		div.product_list_frame {
			width: 24%;
		}

		img.product_main_image {
			height: 500px;
		}

		.page_content {
			width: 60%;
		}
	}

	div.apartman_handle_frame {
		position:fixed;
		top: 10px;
		background-color: #000000;
		color: #ffffff;
		width: 95%;
		/*max-height: 500px;*/
		max-height: 95%;
		z-index: 100;
		border: 2px solid #ffffff;
		overflow: scroll;
	}
	
	input.homeshortcutbutton {
		display: block;
		float: left;
		width: 50px;
		height: 50px;
		margin: auto;
		background-color: #00000000;
		border:0px;
		color: #ffffff;
		font-size:20px;
		border: 0.1px solid #ffffff;
		border-radius: 5px;
		margin:2px;
	}