/**
 * @Date:   2018-04-01T16:24:43+02:00
 * @Last modified time: 2018-04-02T00:52:46+02:00
 */



@charset "utf-8";
/* CSS Document */

body,td,th,p{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16pt;
	color: #333;
	line-height: 1.5;
}
body {
	background-color: #fdfdfd;
	margin: 0;
	display: flex;
	flex-wrap:wrap;
	width: 100%;
	overflow-x: hidden;
/*	position:relative;*/
}
ul, li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #333;
}
a {
	color: orange;
	text-decoration: none;
}
a:hover, a:focus {
	color: #3397db;
	text-decoration: none;
}
a img{
	border: none 0px #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 0 20px;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	/*display: block;*/
}
#maincontent {
	display: flex;
	flex-wrap:wrap;
	width: 100%;
	margin-top: 4em;
  background-color: #f3f3f3;
  min-height: 100%;
}
.inside #maincontent{
	margin-top: 5.5em;
}

footer {
  background-color: #444;
  color: #aaa;
  font-size: 0.8em;
  letter-spacing: 1px;
  padding: 25px;
  text-align: center;
  text-transform: uppercase;
	width: 100%;
}
header{
	width: 100%;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}
/* ====================== Navigation ====================== */
nav {
  width: 100%;

	padding: 1em;
  background-color: #252831;
  text-align:center;
}
nav h1 {
  margin: auto;

}
nav h1 a {
  color: #fff;
  font-size: 0.6em;
  font-weight: 200;
  text-transform: uppercase;
}
#breadcrumb {
    list-style: none;
    background-color: #eee;
    font-size: 1.1em;
    margin: 0;
		height: 1.5em;
		padding-left: 2em;
    width: 100%;
}

/* Display list items side by side */
#breadcrumb li {
    display: inline;
}

/* Add a slash symbol (/) before/behind each list item */
#breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
#breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}

/* Add a color on mouse-over */
#breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}
/* ====================== Map ====================== */
#map {
  height: 50vh;
  width: 100%;
  background-color: #ccc;
}
/* ====================== Restaurant Filtering ====================== */
.filter-options {
  width: 100vw;

  background-color: orange;
  align-items: center;
}
.filter-options h2 {
  color: white;
  font-size: 1rem;
	  padding-top:  1em;
  font-weight: normal;
  line-height: 1;
  margin: 0 20px;
}
.filter-options select {
  background-color: white;
  border: 1px solid #fff;
  font-family: Arial,sans-serif;
  font-size: 11pt;
  height: 35px;
  letter-spacing: 0;
  margin: 10px;
  padding: 0 10px;
  width: 200px;
	border-radius: 5px;
}

/* ====================== Restaurant Listing ====================== */
#restaurants-list {
  background-color: #f3f3f3;
  list-style: outside none none;
  margin: 0;
  padding: 30px 15px 60px;
  text-align: center;
	margin: 0;
  padding: 0;
	width: 100%;
	display: flex;
	flex-wrap:wrap;

}
#restaurants-list li {
	border-radius: 30px 0 30px 0;
	overflow: hidden;
  background-color: #fff;
  font-family: Arial,sans-serif;
  margin: 1em;
  min-height: 380px;
  /*padding: 0 30px 25px;*/
  text-align: left;
	flex-grow: 1;
  width: 270px;
	display: flex;
	flex-direction: column;
}
#restaurants-list .restaurant-img {
  background-color: #ccc;
  display: block;
  margin: 0;

  max-width: 100%;
  min-height: 248px;
  min-width: 100%;
}
#restaurants-list li h1 {
  color: #f18200;
  font-family: Arial,sans-serif;
  font-size: 14pt;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 1rem;
  text-transform: uppercase;
}
#restaurants-list p {
  margin: 0 1rem;
  font-size: 11pt;
}
#restaurants-list p:last-of-type{
	flex-grow: 1;
}
#restaurants-list li a {
  background-color: orange;
/*  border-bottom: 3px solid #eee;*/
	box-shadow: 0 0 5px #888888;
	border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 10pt;
  margin: 1em 0 ;
  padding: 8px 30px 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  align-self: center;
}

#map-container {
	width: 100%;
}

/* ====================== Restaurant Details ====================== */
.inside header {

}
.inside #map-container {
  background: blue none repeat scroll 0 0;
  width: 100%;
	order: -1;
	height: 50vh;
}
.inside #map {
  background-color: #ccc;
	height: 100%;
  width: 100%;
}
#restaurant-container{
	padding: 0 2em;
	width: 100%
}
#restaurant-name {
  color: #f18200;
  font-family: Arial,sans-serif;
  font-size: 20pt;
  font-weight: 200;
  letter-spacing: 0;
  margin-top: 1em; /*account for breadcrumb*/
  text-transform: uppercase;
  line-height: 1.1;
}

#restaurant-img {
	width: 100% ;
}

#restaurant-cuisine {
  background-color: #333;
  color: #ddd;
  font-size: 1em;
  font-weight: 300;
  letter-spacing: 10px;
  margin: 0 0 20px;
  text-align: center;
  text-transform: uppercase;
	width: 100%;
}
#restaurant-details {
	display: flex;
	flex-flow: wrap;
}
#restaurant-address, #restaurant-hours {
 width: 100%;
 margin-bottom: 1em;
}

#reviews-container {
	width: 100%;
  background-color: #d9d9d9;
	padding: 2em;
}
#reviews-container h2 {
  color: #f58500;
  font-size: 2em;
  font-weight: 300;
  letter-spacing: -1px;
}
#reviews-list {
  margin: 0;
  padding: 0;
	width: 100%;
	display: flex;
	flex-wrap:wrap;
}
#reviews-list li {
	border-radius: 30px 0 30px 0;
	background-color: #fff;
  display: block;
  list-style-type: none;
  margin-right: 10px;
  overflow: hidden;
  width: 100%;
	margin-bottom: 1em;

}


#reviews-list li div {
	padding: 2em;
}
#reviews-list li p:first-child span {
	float:right;
	color: #c2c2c2;
}

.ratingbox {
	background-color:  #f58500;
	color: #fff;
	text-align: center;
	padding: 0 1em ;
	line-height: 1.8em;
	border-radius: 5px;
  text-transform: uppercase;
	display: inline-block;
	width: auto;

}
.ratingbox::after{
	content:' ★';
}

#reviews-list li p:first-child {
	padding: 0 2em;
  margin: 0;
	background-color: #333333;
	color: #fafafa;
	line-height: 4em;
}
#restaurant-hours td {

  color: #666;
}
