@charset "utf-8"; /* CSS Document */
body,td,th,p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
    color: #333;
    line-height: 1.5;
}

body {
    background-color: #fdfdfd;
    margin: 0;
    position: relative;
}

ul, li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
    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 {
    background-color: #f3f3f3;
    min-height: 100%;
    z-index: -1;
}

#footer {
    background-color: #444;
    color: #aaa;
    font-size: 8pt;
    letter-spacing: 1px;
    padding: 16px;
    text-align: center;
    text-transform: uppercase;
    line-height: 2;
    box-sizing: border-box;
}

#footer > * {
    display: inline-block;
}

/* ====================== Navigation ====================== */
header {
    width: 100%;
    height: 80px;
    background-color: #252831;
    text-align: center;
    align-items: center;
    display: flex;
}

header h1 {
    margin: auto;
}

header h1 a {
    color: #fff;
    font-size: 14pt;
    font-weight: 200;
    letter-spacing: 10px;
    text-transform: uppercase;
}

/* Mobile L and below */
@media (max-width: 425px) {
    header {
        height: 54px;
    }

    header h1 a {
        font-size: 12pt;
        letter-spacing: 5px;
        line-height: 0;
    }
}

nav#breadcrumb {
    padding: 80px 0px 0;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* tablet and up */
@media (min-width: 768px) {
    nav#breadcrumb {
        padding: 80px 0px 0;
        width: 50%;
    }
}


@media (max-width: 425px) {
    nav#breadcrumb {
        padding: 54px 0px 0;
    }
}


#breadcrumb ul {
    padding: 10px 40px 16px;
    list-style: none;
    background-color: #eee;
    font-size: 17px;
    margin: 0;
    box-shadow: 0 0 3px #909090;
}

/* 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;
}

#breadcrumb a[aria-current="page"],
#breadcrumb a[aria-current="page"]:hover {
    color: initial;
    text-decoration: initial;
}

/* tablet and up */
@media (min-width: 768px) {
    #breadcrumb {
        width: calc(50% - 80px);
    }
}

/* ====================== Map ====================== */
#map {
    height: 400px;
    width: 100%;
    background-color: #ccc;
}

/* ====================== Restaurant Filtering ====================== */
.filter-options {
    width: 100%;
    background-color: #3397DB;
    padding: 6px;
    text-align: center;
    box-sizing: border-box;
}

.filter-options h3 {
    color: white;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
    margin: 0 6px;
    display: inline-block;
}

.filter-options select {
    background-color: white;
    border: none;
    font-family: Arial,sans-serif;
    font-size: 11pt;
    height: 30px;
    letter-spacing: 0;
    margin: 6px;
    padding: 0 10px;
    max-width: 200px;
    border-radius: 3px;
    width: 180px;
}

/* Mobile L and below */
@media (max-width: 425px) {
    .filter-options h2 {
        display: block;
    }
}

/* Around Mobile M and below */
@media (max-width: 400px) {
    .filter-options {
        padding: 8px 0;
    }

    .filter-options h2, .filter-options select {
        width: 92%;
        max-width: initial;
        margin: 8px;
    }
}

/* ====================== Restaurant Listing ====================== */
#restaurants-list {
    background-color: #f3f3f3;
    list-style: outside none none;
    margin: 0;
    padding: 30px 15px 60px;
    text-align: center;
}

#restaurants-list li {
    background-color: #fff;
    border: 1px solid #ccc;
    font-family: Arial,sans-serif;
    margin: 8px;
    text-align: left;
    width: 310px;
    display: inline-block;
    border-radius: 3px;
}

#restaurants-list .restaurant-img {
    background-color: #ccc;
    display: block;
    margin: 0;
    max-width: 100%;
    min-height: 248px;
    min-width: 100%;
}

#restaurants-list .restaurant-content {
    padding: 16px;
    min-height: 96px;
}

#restaurants-list li h3 {
    color: #f18200;
    font-family: Arial,sans-serif;
    font-size: 14pt;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0 0 10px;
    text-transform: uppercase;
}

#restaurants-list p {
    margin: 0;
    font-size: 11pt;
}

#restaurants-list li a {
    background-color: orange;
    color: #fff;
    display: block;
    font-size: 10pt;
    margin: 15px 0 0;
    padding: 8px 30px 10px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

#restaurants-list li a:hover {
    background-color: darkorange;
}

/* Mobile L and below */
@media (max-width: 605px) {
    #restaurants-list {
        padding: 8px;
        box-sizing: border-box;
    }

    #restaurants-list li {
        width: inherit;
        box-sizing: border-box;
    }
}

/* above Mobile L and below Tablet */
@media (min-width: 425px) and (max-width: 767px) {
}

/* ====================== Restaurant Details ====================== */
.inside header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.inside #map-container {
    background: blue none repeat scroll 0 0;
    height: 400px;
}

/* tablet and up */
@media (min-width: 768px) {
    .inside #map-container {
        height: 89%;
        position: fixed;
        right: 0;
        top: 80px;
        width: 50%;
        z-index: 0;
        height: calc(100% - 80px);
    }
}

.inside #map {
    background-color: #ccc;
    height: 100%;
    width: 100%;
}

/* tablet and up */
@media (min-width: 768px) {
    .inside #footer {
        bottom: 0;
        position: absolute;
        width: 100%;
    }
}

#restaurant-name {
    color: #f18200;
    font-family: Arial,sans-serif;
    font-size: 20pt;
    font-weight: 200;
    letter-spacing: 0;
    margin: 15px 0 30px;
    text-transform: uppercase;
    line-height: 1.1;
}

#restaurant-img {
    width: 100%;
}

#restaurant-address {
    font-size: 12pt;
    margin: 10px 0px;
}

#restaurant-cuisine {
    background-color: #333;
    color: #ddd;
    font-size: 12pt;
    font-weight: 300;
    letter-spacing: 10px;
    margin: 0 0 20px;
    padding: 2px 0;
    text-align: center;
    text-transform: uppercase;
}

#restaurant-hours {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d9d9d9;
}

#restaurant-hours td {
    border-top: 1px solid #d9d9d9;
    padding: 4px 8px;
}

#restaurant-hours tr:first-child td {
    background-color: #d9d9d9;
}

#restaurant-container, #reviews-container {
    border-bottom: 1px solid #d9d9d9;
    border-top: 1px solid #fff;
    padding: 140px 40px 30px;
    box-sizing: border-box;
}

#reviews-container {
    padding: 30px 40px 0;
}

@media (max-width: 425px) {
    #restaurant-name {
        font-size: 18px;
        margin: 4px 0 8px;
    }
}

/* tablet and up */
@media (min-width: 768px) {
    #restaurant-container, #reviews-container {
        width: 50%;
    }

    #reviews-container {
        padding: 30px 40px 80px;
    }
}

#reviews-container h2 {
    color: #f58500;
    font-size: 24pt;
    font-weight: 300;
    letter-spacing: -1px;
    padding-bottom: 1pt;
}

#reviews-list {
    margin: 0;
    padding: 0;
}

#reviews-list li {
    background-color: #fff;
    display: block;
    list-style-type: none;
    margin: 0 0 30px;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
}

#reviews-list .head {
    background-color: #CCC;
    height: 32px;
    line-height: 32px;
}

#reviews-list .name {
    padding: 0 12px;
    line-height: 32px;
}

#reviews-list .rating {
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
    background-color: #ee8412;
    color: white;
    font-weight: bold;
}

#reviews-list .date {
    float: right;
    padding: 0 12px;
    line-height: 32px;
}

#reviews-list .comments {
    padding: 12px 16px;
}

#reviews-list li p {
    margin: 0;
    display: inline-block;
}

#restaurant-hours td {
    color: #666;
}
