
/*
FONTS
-----
Oswald :: Light, Regular, Bold    SRC: Google Fonts
Geared Slab :: Bold               SRC: https://www.onlinewebfonts.com/download/aede14410dcead63b02657c53c2ca8d2
Bitter :: Regular, Italic         SRC: Google Fonts  
*/

@font-face {
  font-family: "GearedSlabBold";
  src: url("../fonts/GearedSlab/GearedSlab-Bold-webfont.eot"); /* IE9*/
  src: url("../fonts/GearedSlab/GearedSlab-Bold-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
       url("../fonts/GearedSlab/GearedSlab-Bold-webfont.woff2") format("woff2"), /* chrome、firefox */
       url("../fonts/GearedSlab/GearedSlab-Bold-webfont.woff") format("woff"), /* chrome、firefox */
       url("../fonts/GearedSlab/GearedSlab-Bold-webfont.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
       url("../fonts/GearedSlab/GearedSlab-Bold-webfont.svg#GearedSlabBold") format("svg"); /* iOS 4.1- */
}

/*-----------------------------------------------------*/
/* Resets (REPLACE WITH RESET.CSS?) */
/*-----------------------------------------------------*/

h1, h2, h3, h4, h5, h6 { margin: 0; }
ul {
    list-style: outside none none;
    padding: 0;
    margin: 0;
}
ol {
    list-style: outside none decimal;
    padding: 0;
    margin: 0;
}

/*-----------------------------------------------------*/
/* Generic */
/*-----------------------------------------------------*/

body {
	font-family: 'Oswald', sans-serif;
	font-size: 16.5pt;
	font-weight: 300;
}

h1, h2, h3, h4, h5 { font-family: 'GearedSlabBold', serif; }

h1 {
    font-size: 2.5em;
    font-weight: 400;
    color: #815542;
    line-height: 1;
    letter-spacing: 0.01em;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 30px;
}
h2 {
    font-size: 1.75em;
    font-weight: 400;
    color: #815542;
    margin-bottom: 15px;
}
h3 {
    font-size: 1.7em;
    color: #815542;
}
h4 {
    font-size: 1.45em;
    color: #815542;
    letter-spacing: 0.01em;
}

b, strong { font-weight: 400; }
img { width: 100%; }

a, a:hover, a:focus { color: #e57338; }
a:focus { outline: 0; }
a {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/*-----------------------------------------------------*/
/* Shared */
/*-----------------------------------------------------*/

a.link-button, 
.quovolve-nav a {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 400;
  color: #fff;
  background-color: #e57338;
  padding: 10px 20px;

  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
a.link-button:hover, 
.quovolve-nav a:hover {
  text-decoration: none;
  background-color: #C65144;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
a.link-button:active, a.link-button:focus, 
.quovolve-nav a:active, .quovolve-nav a:focus {
  text-decoration: none;
}

.toffset10 { margin-top: 10px; }
.toffset15 { margin-top: 15px; }
.toffset20 { margin-top: 20px; }
.toffset25 { margin-top: 25px; }
.toffset30 { margin-top: 30px; }
.toffset35 { margin-top: 35px; }

.boffset10 { margin-bottom: 10px; }
.boffset15 { margin-bottom: 15px; }
.boffset20 { margin-bottom: 20px; }

.header-extended h2 {
    display: inline-block;
    margin-bottom: 10px;
}
.header-extended div {
    float: right; 
    position: relative; 
    bottom: 8px;
}
.target-model { cursor:pointer; }

/*-----------------------------------------------------*/
/* Master Template (i.e. Header, Header Navigation, Pre-Header, Footer, Sub-Footer ...) */
/*-----------------------------------------------------*/

/* for Slider <h1> and Reservations <h1> */
h1.feature {
	font-family: 'Oswald', sans-serif;
	font-size: 2.6em;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
}

/* for homepage <h2>'s */
h2.feature { font-size: 2.15em; }

/*-----------------------------------------------------*/

/* Pre header */
#pre-header-outer {
    background-color: #e57338;
}
#pre-header {
    font-size: 0.85em;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #fff;
    padding: 10px 0;
}
#pre-header > div > span {
    padding-left: 15px;
    white-space: nowrap;
}
#pre-header .glyphicon {
    padding-right: 5px;
}

/*-----------------------------------------------------*/

/* Header */
#header-outer { background-color: rgba(191, 173, 165, 0.05); }

/* Main nav (part of Header) */
.navbar {
    margin-bottom: 0;

    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.navbar-brand { height: auto; /* bootstrap override */ }

.navbar-nav { padding-top: 40px; }
.navbar-nav > li { margin-right: 4px; }
.navbar-nav > li:last-child { margin-right: 0; }
.navbar-nav li a {
    font-family: 'GearedSlabBold', serif;
    font-size: 1.25em;
    letter-spacing: 0.01em;
    color: #e57338;
    text-transform: uppercase;
    padding: 15px 13px;

    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/* Focus must come before the others, otherwise it gets overidden */
.navbar-nav > li > a:focus {
    color: #e57338;
    background-color: transparent;
}
.navbar-nav > li > a:hover, 
.navbar-nav > li > a:active, 
.navbar-nav > li.active > a {
    color: #815542;
    background-color: rgba(191, 173, 165, 0.3);

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* sub menus */
.navbar-nav > li > .dropdown-menu {
    font-size: 0.85em;
    border: 2px solid #bfaca4;
    border-bottom-width: 0;
    padding: 0;
    margin-top: 5px;

    transform: translateZ(0px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.navbar-nav .dropdown-menu > li > a {
    line-height: 50px;
    border-bottom: 2px solid #bfaca4;
    padding: 0 20px;

    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.navbar-nav .dropdown-menu > li > a:focus {
    color: #e57338;
    background-color: transparent;
}
.navbar-nav .dropdown-menu > li > a:hover, 
.navbar-nav .dropdown-menu > li > a:active, 
.navbar-nav .dropdown-menu > li.active > a {
    color: #815542;
    background-color: rgba(191, 173, 165, 0.3);
}
.nav .open > a, .nav .open > a:focus {
    color: #815542;
    background-color: rgba(191, 173, 165, 0.3);

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/*-----------------------------------------------------*/

/* Mobile nav */
#navbar-toggle-box {
  display: none;
}
.navbar-toggle {
  background-color: #e57338;
  padding: 10px;

  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.navbar-toggle .icon-bar {
  background-color: #fff;
  height: 5px;
  width: 30px;
}
.navbar-toggle:hover {
  background-color: #c65144;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/*-----------------------------------------------------*/

/* Footer */
#footer-outer { background-color: #714938; }
#footer {
	font-family: 'GearedSlabBold', serif;
    color: #fff;
    letter-spacing: 0.01em;
    margin-top: 35px;
    margin-bottom: 12px;
}
#footer h3 {
    color: #fff;
    margin: 0 0 18px 0;
}
#footer ul { font-size: 1.1em; }
#footer ul li {
    display: block;
    line-height: 1.18;
    margin-bottom: 20px;
}
#footer .social { margin-top: 50px; }
#footer .social a { display: block; }

#footer .social span {
    display: inline-block;
    margin-left: 12px;
}
#footer .social .social-icon { max-width: 39px; }

/*-----------------------------------------------------*/

/* Sub footer */
#sub-footer-outer { background-color: #4d3328; }
#sub-footer {
    font-family: 'GearedSlabBold', serif;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.01em;
    margin-top: 15px;
    margin-bottom: 12px;
}
#sub-footer a { color: rgba(255, 255, 255, 0.35); }
#sub-footer a:hover {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

/*-----------------------------------------------------*/
/* Homepage sections */
/*-----------------------------------------------------*/

/* Sliders */
.slider-container {    width: 100%;    position: relative;    padding: 0;}#slider-home {    width: 100%;    position: relative;}#slider-home .info {
    text-align: right;
    text-transform: uppercase;
}
#slider-home .info .caption-box {
    background-color: rgba(129, 85, 66, 0.92);
    padding: 0.4em 0.9em;
    margin-bottom: 0.75em;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
#slider-home .info .caption-box h1 {
    text-align: right;
    margin-top: 0;
    margin-bottom: 0.1em;
}
#slider-home .info .caption-box .sub-caption {
    font-size: 1.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}
#slider-home .info .link-button-box a.link-button {
    background-color: rgba(230, 114, 56, 0.92);
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.55em;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
#slider-home .info .link-button-box a.link-button:hover { background-color: #C65144; }

/* Slider plugin overrides */
.tp-caption a:hover { color: #fff; }
.tp-dottedoverlay.threexthree { /* HACK TO OVERRIDE DEFAULT SLICDER OVERLAY SETTING */
  background: url("/_assets/images/backgrounds/overlay.png") repeat fixed left top / 8px 8px;
}

/*-----------------------------------------------------*/

/* Restaurant menus */
#home-section-1-outer {
  background: url('/_assets/images/backgrounds/paws-bg.png') no-repeat center center / cover;
}
#home-section-1 { margin-top: 40px; }
#home-section-1 .feature-box {
  background-color: #fff;
  border: 4px solid #bfaca4;
  border-bottom-width: 20px;
  text-align: center;
  margin-bottom: 40px;
}
#home-section-1 .feature-box > div { padding: 25px 20px 32px; }
#home-section-1 .feature-box h2 { margin-bottom: 15px; }
#home-section-1 .feature-box .info {
  line-height: 1.3em;
  margin-bottom: 30px;
}

/*-----------------------------------------------------*/

/* Testimonials */
#home-section-2-outer {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
#home-section-2 {
    font-family: 'Bitter', serif;
    text-align: center;
    letter-spacing: 0.01em;
    padding: 25px;
}
#home-section-2 h2 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 32px;
}
#home-section-2 .quote {
    font-size: 1.068em;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    padding: 0 50px;
    margin-bottom: 27px;
}
#home-section-2 .author {
    font-size: 1.068em;
    color: #e57338;
    letter-spacing: 0.01em;
}

/*-----------------------------------------------------*/

/* Reservations */
#home-section-3 {
    margin-top: 40px;
    margin-bottom: 40px;
}
#home-section-3 .feature-box {
    background-position: left top, center bottom;
    background-repeat: repeat, no-repeat;
    background-size: 8px 8px, cover;
    background-attachment: scroll, scroll; /* NOTE: originally had it as "background-attachment: fixed, scroll;" however that was causing problems in older android browsers */
    min-height: 475px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 40px;
}
#home-section-3 .feature-box h1 {
    display: inline-block;
    background-color: rgba(129, 85, 66, 0.92);
    padding: 10px 20px;
    margin: 85px 0;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

#home-section-3 .feature-box .contents { display: inline-block; }
#home-section-3 .feature-box .contents ul li { margin-bottom: 15px; }
#home-section-3 .feature-box .contents ul li.no-link,
#home-section-3 .feature-box .contents ul li a.link-button {
	font-family: 'GearedSlabBold', serif;
    font-size: 1.8em;
    letter-spacing: 0.01em;
    line-height: 1.1;
}
#home-section-3 .feature-box .contents ul li.no-link {
    color: #fff;
    background-color: #e57338;
    padding: 10px;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
#home-section-3 .feature-box .contents ul li a.link-button { padding: 10px 53px; }


/*-----------------------------------------------------*/

/* Functions, What's On */
#home-section-4 .feature-box {
  background-color: #fff;
  border: 4px solid #bfaca4;
  border-top-width: 19px;
  text-align: center;
  margin-bottom: 40px;
}
#home-section-4 .feature-box h2 {
  padding: 0px 20px;
  margin-top: 33px;
  margin-bottom: 22px;
}
#home-section-4 .feature-box .info {
  line-height: 1.3em;
  padding: 0px 40px;
  margin-bottom: 35px;
}
#home-section-4 .feature-box .image { position: relative; }
#home-section-4 .feature-box .image div {
  position: absolute;
  top: 35%;
  width: 100%;
}

/*-----------------------------------------------------*/

/* Homepage animations */
.animate-fade {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.animation-fade {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-transition-duration: 1.5s;
  -moz-transition-duration: 1.5s;
  -o-transition-duration: 1.5s;
  transition-duration: 1.5s;
}

/*-----------------------------------------------------*/

/* Homepage revolving quotes (Quovolver jquery plugin) */
.quovolve-nav {
    zoom: 1; /*DO I NEED THIS??*/
    margin-top: 35px;
    margin-bottom: 10px;
}
.quovolve-nav a {
    font-size: 1em;
    margin: 0 8px;
    padding: 4px 14px;
}
.quovolve-nav a span.glyphicon { top: 2px; }

/*-----------------------------------------------------*/
/* Other pages sections */
/*-----------------------------------------------------*/

#page-content { margin-top: 30px; }
#page-content > div { margin-bottom: 40px; }

/* Main section */
#main-section {
    min-height: 400px;
    background-color: #fff;
}

/*-----------------------------------------------------*/

/* Sidebar section */
#sidebar { font-size: 0.9em; }
.sidebar-section {
    background-color: rgba(191, 173, 165, 0.05);
    border: 2px solid #bfaca4;
    border-width: 10px 0 2px;
    padding: 25px 20px 20px;
    margin-bottom: 30px;
}
.sidebar-section h3 {
    text-align: center;
    margin-bottom: 15px;
}
.sidebar-section .glyphicon {
    display: block;
    font-size: 2.5em;
    color: #e57338;
    text-align: center;
    margin: 0 0 15px;
}

.sidebar-section .sub-section ul li {
    line-height: 1.5;
    margin-bottom: 15px;
}
.sidebar-section .sub-section ul li span {
    color: #e57338;
    font-weight: 400;
}
.sidebar-section .sub-section ul li .glyphicon-chevron-right {
    font-size: 1.2em;
    color: #e57338;
    display: inline-block;
    top: 4px;
    margin-right: 12px;
    margin-bottom: 0;
}
.sidebar-section .smaller-image-wrapper {
    display: block;
    margin: 0 auto;
    max-width: 260px;
}

/*-----------------------------------------------------*/

/* Standard content section */

.std-content ul {
    margin-top: 15px;
}

.std-content ul li {
    position: relative;
    line-height: 1.5;
    padding-left: 50px;
    margin-bottom: 20px;
}
.std-content ul li:before {
    content: "\e080";
    font-family: 'Glyphicons Halflings';
    font-size: 1.2em;
    color: #e57338;
    position: absolute;
    left: 10px;
    top: -3px;
}

.std-content ol {
    margin: 15px 0 0 30px;
}

.std-content ol li {
    line-height: 1.5;
    margin-bottom: 15px;
    padding-left: 15px;
}

/* fancy ordered list */
.std-content ol.nice-ol {
    list-style-type: none;
    position: relative;
    padding-left: 50px;
    margin: 20px 0 0;
}
.std-content ol.nice-ol li {
    counter-increment: step-counter;
    line-height: inherit;
    padding: 0;
    margin-bottom: 18px;
}
.std-content ol.nice-ol li:last-child {
    margin-bottom: 0;
}
.std-content ol.nice-ol li::before {
    content: counter(step-counter) ".";
    position: absolute;
    left: 8px;
    min-width: 26px;
    /*font-size: 0.8em;*/
    font-weight: 600;
    color: #e57338;
    text-align: center;
    /*padding: 2px 6px;*/
    /*margin-top: 2px;*/
    /*background-color: #e57338;*/
    border-radius: 3px;
}

/*-----------------------------------------------------*/

/* Forms */
form label {
  font-size: 1.1em;
  font-weight: 400;
  color: #e57338;
  margin-bottom: 0;
}
.form-control {
  font-size: inherit;
  color: inherit;
  height: inherit;
  box-shadow: none;

  border: 2px solid #bfaca4;
  background-color: rgba(191, 173, 165, 0.05);
  padding: 8px 10px;
  margin: 2px 0 8px;

  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.form-control:focus {
  border-color: #815542;
  box-shadow: none;
}
textarea.form-control {
  height: 200px;
  max-width: 100%;
}
form span.radio-wrapper { margin-right: 20px; }
form span.radio-wrapper label { margin-right: 5px; }

/* submit button */
.form-submit-wrapper {
  text-align: center;
  margin-top: 20px;
}
.std-btn { /* MAKE THIS A GENERIC CLASS FOR ALL BUTTONS */
  display: inline-block;
  font-size: 1.1em;
  font-weight: 400;
  color: #fff;
  background-color: #e57338;
  border-width: 0;
  border-radius: 2px;
  padding: 10px 20px;

  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.std-btn:hover {
  background-color: #c65144;
  border-radius: 4px;
  text-decoration: none;
}

/*-----------------------------------------------------*/

/* Google map on Contact page */
#contacts_map {  position: relative;
  background-color: rgba(191, 173, 165, 0.05);
  height: 600px;
  width: 100%;}

.gmap { min-height: 150px; }
.gmap img {
    max-width: none !important;
    width: auto !important;
}
.gm-style img {
    max-width: none;
    width: auto !important;
}

.infoWindowContacts {
    white-space: nowrap;
    width: 140px;
    overflow: visible !important;
    background-color: #fff;
    padding: 10px;

    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

/* the :before & :after css creates the pointy bit at the bottom of the infobox */
.infoWindowContacts:before {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -10px;
    height: 20px;
    width: 20px;
    bottom: -7px;
    z-index: -1;
    background: #fff;

    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);

    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.infoWindowContacts:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -10px;
    height: 0;
    width: 0;
    bottom: -20px;
    z-index: 99;
    border: 10px solid transparent;
    border-top-color: #fff;
}

.infoWindowContacts .description { padding: 10px 0 5px; }

/*-----------------------------------------------------*/

/* Reservations iframe */
.nowbookit {
    height: 820px;
    width: 100%;
}

/* For embedded videos */
.video-container {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
}
.video-container iframe, .video-container object, .video-container embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* Alternative button appearance */
.link-button-alt {
    display: inline-block;
    color: #e57338;
    border: 2px solid #e57338;
    padding: 5px 10px;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.link-button-alt.directions {
    font-weight: 400;
    padding: 10px 15px;
}

.link-button-alt:hover {
    color: #fff;
    border: 2px solid #C65144;
    background-color: #C65144;
    text-decoration: none;
}
.link-button-alt:focus { text-decoration: none; }
.link-button-alt .fa {
    font-size: 1.2em;
    color: inherit;
    margin-right: 5px;
}
.link-button-alt .fa-car { margin-right: 10px; }

/* Bootstrap modal overrides */
.modal-footer {
    border-width: 0;
    padding-top: 0;
}

/*-----------------------------------------------------*/

/* Whats On list */
.list-style .item {
  float: left;
  width: 100%;
}
.list-style .item .image {
  float: left;
  width: 34%;
  margin-bottom: 10px;
}
.list-style .item .info {
  float: left;
  margin-left: 4%;
  width: 62%;
}
.list-style .item .info.full-width {
  float: none;
  margin-left: 0;
  width: auto;
}
.list-style .item .info h2 {
  border-bottom: 2px dotted #bfaca4;
  padding-bottom: 10px;
  margin-bottom: 6px;
}
.list-style .item .info .sub-header {
  font-size: 1.1em;
  font-weight: 400;
  color: #e57338;
  margin-bottom: 10px;
}

/*-----------------------------------------------------*/

/* Restaurant menus */
.menu-intro { margin-bottom: 30px; }
.menu-section, .list-style .item {
  /*background: url("/_assets/images/backgrounds/overlay.png") repeat fixed left top;*/
/*
  background: url('/_assets/images/paws-bg.png') no-repeat center center / cover;
  border-radius: 8px 8px 0 0;
*/
  background-color: rgba(191, 173, 165, 0.05);
  border: 2px solid #bfaca4;
  border-width: 20px 2px 5px;
  padding: 25px 30px 15px;
  margin-bottom: 30px;
}
.list-style .item:last-child { margin-bottom: 0; }
.menu-section h2,
.menu-section h4 {
  text-align: center;
  margin-bottom: 20px;
}
ul.menu { margin-bottom: 30px; }
ul.menu li { margin-bottom: 15px; }
ul.menu .name {
  font-size: 1.1em;
  font-weight: 400;
  color: #e57338;
  padding-bottom: 5px;
  border-bottom: 2px dotted #bfaca4;
  margin-bottom: 2px;
}
ul.menu .price { float: right; }
.menu-section .footnote {
  font-size: 0.9em;
  font-style: italic;
  margin-bottom: 30px;
}

/* for custom steak menu */
.panel-group.menu .panel .panel-body .steak-options { margin: 25px 0; }
.panel-group.menu .panel .panel-body .steak-options h4 { margin-bottom: 10px; }
.panel-group.menu .panel .panel-body .steak-options ul {
  line-height: 1.65;
  margin-bottom: 15px;
}
.panel-group.menu .panel .panel-body .steak-options ul li:before {
    content: "\e127";
    font-family: 'Glyphicons Halflings';
    font-size: 1.2em;
    color: #e57338;
    position: relative;
    top: 3px;
    padding: 0 10px;
    margin-right: 5px;
}

/*-----------------------------------------------------*/

/* Bootstrap panels */

/* ----- PANEL RESETS (maybe i can exclude the panel presets from bootstrap.css/bootstrap-theme.css instead) ----- */
.panel-group,
.panel-group .panel, 
.panel-group .panel + .panel, 
.panel-group .panel-heading,
.panel-title,
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-body {
    font-size: inherit;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
}

/* ----- DEFAULT PANEL STYLES ----- */
.panel-group { background-color: #fff; }
.panel-group .panel .panel-heading .panel-title a {
    display: block;
    position: relative;
}
.panel-group .panel .panel-heading .panel-title a:hover, 
.panel-group .panel .panel-heading .panel-title a:focus {
    text-decoration: none;
}
.panel-group .panel .panel-heading .panel-title a:after {
    content: "\f077";
    font-family: FontAwesome;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14pt;
    text-align: center;

    position: absolute;
    top: 50%;
    margin-top: -16px;
    right: 10px;
    width: 32px;
    height: 32px;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.panel-group .panel .panel-heading .panel-title a.collapsed::after { content: "\f078"; }

/* ----- MENU PANEL STYLES ----- */
.panel-group.menu {
    background-color: rgba(191, 173, 165, 0.05);
    border-bottom: 2px solid #bfaca4;
    border-top: 2px solid #bfaca4;
}
.panel-group.menu .panel {
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
/* panel heading styles */
.panel-group.menu .panel .panel-heading { border-bottom: 2px dotted #bfaca4; }
.panel-group.menu .panel:last-child .panel-heading { border-width: 0; }
.panel-group.menu .panel .panel-heading .panel-title a {
    font-family: GearedSlabBold,serif;
    font-size: 1.75em;
    color: #815542;
    text-align: center;
    padding: 8px 50px 8px 8px;
}
.panel-group.menu .panel .panel-heading .panel-title a.collapsed:hover { color: #e57338; }
.panel-group.menu .panel .panel-heading .panel-title a:after {
    color: #bfaca4;
    line-height: 28px;
    border: 2px solid #bfaca4;
}
.panel-group.menu .panel .panel-heading .panel-title a.collapsed::after {
    color: #bfaca4;
    border-color: #bfaca4
}
.panel-group.menu .panel .panel-heading .panel-title a:hover::after {
    color: #e57338;
    border-color: #e57338;
}
/* panel body styles */
.panel-group.menu .panel .panel-body { padding: 5px 25px; }
.panel-group.menu .panel .panel-body h4 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.panel-group.menu .panel .panel-body h4:first-child { margin-top: 0; }
.panel-group.menu .panel .panel-body ul.menu { margin-bottom: 0; }
/* expanded panel styles */
.panel-group.menu .panel.expanded {
    background-color: #fff9f1;
    background-color: #f8f3ed;
    border-bottom: 5px solid #bfaca4;
    border-top: 20px solid #bfaca4;
    margin-top: -2px;
}
.panel-group.menu .panel.expanded .panel-heading { border-width: 0; }

/* ----- SIDEBAR PANEL STYLES ----- */
.panel-group.sidebar { margin: 30px 0 20px 0; }
.panel-group.sidebar .panel {
    border: 1px solid rgba(191, 173, 165, 0.15);
    margin-bottom: -1px;
}
/* panel heading styles */
.panel-group.sidebar .panel .panel-heading .panel-title a {
    font-weight: 400;
    color: #e57338;
    padding: 10px 55px 10px 10px;
}
.panel-group.sidebar .panel .panel-heading .panel-title a:after {
    color: #e57338;
    line-height: 30px;
    border: 1px solid #e57338;
}
.panel-group.sidebar .panel .panel-heading .panel-title a.collapsed::after {
    color: #bfaca4;
    border-color: #bfaca4
}
.panel-group.sidebar .panel .panel-heading .panel-title a:hover:after {
    color: #e57338;
    border-color: #e57338;
}
/* panel body styles */
.panel-group.sidebar .panel .panel-body { padding: 0 15px 15px; }

/*-----------------------------------------------------*/

/* Bootstrap tabs/pills */
.nav-pills { margin-bottom: 25px; }
.nav-pills > li {
  width: 50%;
  text-align: center;
}
.nav-pills > li + li { margin-left: 0; }
.nav-pills > li > a {
    font-family: "GearedSlabBold",serif;
    font-size: 1.7em;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1;
    background-color: rgba(230, 114, 56, 0.3);
    padding: 15px 10px;
    margin-bottom: 2px;

    -webkit-border-radius: 15px 15px 0 0;
    -moz-border-radius: 15px 15px 0 0;
    border-radius: 15px 15px 0 0;
}
.tab-content .nav-pills > li > a { background-color: #e57338; }
.nav-pills > li > a:hover,
.nav-pills > li > a:focus {
    background-color: #C65144;
}
.nav-pills > li.active > a, 
.nav-pills > li.active > a:focus, 
.nav-pills > li.active > a:hover {
    background-color: #e57338;
    color: #fff;
}

/* custom */
.nav-pills > li > a.left-pill { margin-right: 1px; }
.nav-pills > li > a.right-pill { margin-left: 1px; }

/*-----------------------------------------------------*/

/* 404 Page */
.e404 > div {
    float: left;
    font-size: 4.5em;
    font-weight: 400;
    color: #815542;
    text-align: center;
}
.e404 > div strong {
    display: block;
    font-size: 1.9em;
    margin-bottom: -50px;
}
.e404 i {
    float: right;
    font-size: 10em;
    color: #815542;
    margin-top: 85px;
}
#e404-side { margin-top: 60px; }

/*-----------------------------------------------------*/
/* Media queries */
/*-----------------------------------------------------*/

@media (max-width: 1199px) {

    body { font-size: 15pt; }

    /* Main navigation */
    .navbar-header { width: 196px; }
    .navbar-right { margin-right: -9px; }
    .navbar-nav li a { padding: 12px 8px; }
    #home-section-2 .quote { padding: 0; }
    #home-section-4 .feature-box h2 {
        padding: 0 40px;
        margin-top: 26px;
    }

}

/*-----------------------------------------------------*/

@media (max-width: 991px) {

    body { font-size: 14pt; }
    #pre-header > div { text-align: center; }
    #pre-header > div > span { padding-right: 15px; }

    /* Main navigation */
    .navbar { text-align: center; }

    .navbar-header {
        float: none; /* bootstrap override */
        width: auto;
    }
    .navbar-brand > img { display: inherit; /* bootstrap override */ }

    .navbar-right {
        float: none !important;
        margin: 0;
    }
    .navbar-nav {
        padding: 0;
        margin-bottom: 15px;
    }
    .navbar-nav > li {
        float: none;
        display: inline-block;
    }

    .list-style .item .image {
        margin-bottom: 15px;
        margin-top: 0;
        width: 100%;
    }
    .list-style .item .info {
        margin-left: 0;
        width: 100%;
    }

}

/*-----------------------------------------------------*/

@media (min-width: 768px) and (max-width: 991px) {

    .navbar-brand {
        float: none; /* bootstrap override */
        display: inline-block;
    }

}

/*-----------------------------------------------------*/

@media (min-width: 769px) and (max-width: 991px) {
    #home-section-1 > div {
        padding-left: 2px;
        padding-right: 2px;
    }
    #home-section-1 .feature-box > div { padding: 25px 5px 32px; }
}

/*-----------------------------------------------------*/

@media (max-width: 767px) {

    /* Main navigation */
    #navbar-brand-box { width: 70%; }
    #navbar-toggle-box {
        display: inline;
        width: 30%;
    }
    .navbar-nav > li { display: block; }

    /*#home-sections-3-4-outer > .container { max-width: 420px; }*/
    /*#home-section-3 .feature-box h1 { padding: 10px 2px; }*/

    #home-section-2 .quote, 
    #home-section-2 .author {
        font-size: 1em;
    }

    /* used on standard sidebar pages */
    #main-container { max-width: 480px; }

    /* Restaurant menus */
    ul.menu .name {
        text-align: center;
        margin-bottom: 4px;
    }
    ul.menu .price {
        float: none;
        display: block;
        margin-top: 5px;
    }

    #footer { margin-bottom: 35px; }
    #footer-logo { max-width: 340px; }

}

/*-----------------------------------------------------*/

@media (min-width: 600px) and (max-width: 768px) {

    /* Homepage Menu section */
    #home-section-1 { margin-top: 25px; }
    #home-section-1 > div {
        width: auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    #home-section-1 .feature-box {
        display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;  /* TWEENER - IE 10 */
        display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */

        align-items: center;
        margin-bottom: 25px;
    }
    #home-section-1 .feature-box img {
        display:block; /* hack to make flex work in older android browsers */
        width: 50%;
        max-height: 280px;
        object-fit: cover;
    }
    #home-section-1 .feature-box > div {
        width: 50%;
        padding: 20px;
    }

}

/*-----------------------------------------------------*/

@media (max-width: 599px) {

    #home-section-1-outer > .container { max-width: 420px; }
    #home-section-1 .feature-box img {
        max-height: 280px;
        object-fit: cover;
    }
    #home-section-1 > div:first-child .feature-box,
    #home-section-1 > div:nth-child(2) .feature-box,
    #home-section-3,
    #home-section-4 > div:first-child .feature-box,
    #footer > div:first-child
    {
        margin-bottom: 25px;
    }

    #home-section-3 .feature-box h1 { width: 100%; }
    #home-section-3 .feature-box .contents { display: block; padding-bottom: 60px; }
    #home-section-3 .feature-box .contents ul li a.link-button { display: block; padding: 10px; }

    #footer > div,
    #sub-footer > div {
        width: 100%;
        text-align: center;
    }
    #footer > div:nth-child(2) { margin-bottom: 50px; }
    #footer .social { margin-top: 25px; }
    #footer-logo { max-width: 260px; }

}

/*-----------------------------------------------------*/

@media (max-width: 480px) {

    #pre-header > div > span {
        display: block;
    }

    #home-section-3 .feature-box { font-size: 0.85em; padding: 0 15px; }
    #home-section-3 .feature-box h1 { padding: 10px 15px; }

}

/*-----------------------------------------------------*/

@media (min-width: 380px) {
    .rbreak { display: none; } /* responsive line-break hack */
}


/* ###################################################################################### */
/* ###################################################################################### */
/*                                      TESTING                                           */
/* ###################################################################################### */
/* ###################################################################################### */
#home-sections-3-4-outer {
    /*background: transparent url("/_assets/images/backgrounds/paws-bg.png") no-repeat scroll center center / cover ;
    background: transparent url("/_assets/images/backgrounds/sand-tracks-2-bg.jpg") no-repeat scroll bottom center / cover ;
    background: transparent url("/_assets/images/backgrounds/mud-tracks-bg3.jpg") no-repeat scroll top left / cover ;
    background: transparent url("/_assets/images/backgrounds/mikumi-nat-pk.jpg") no-repeat scroll top left / cover ;
    background: transparent url("/_assets/images/backgrounds/trees-4.jpg") no-repeat scroll bottom left ;
    background: url("/_assets/images/backgrounds/trees-1.jpg") no-repeat scroll bottom left, url("/_assets/images/backgrounds/trees-1b.jpg") no-repeat scroll bottom right ;
    background: url("/_assets/images/backgrounds/hat1.png") no-repeat scroll left -160px top 90px, url("/_assets/images/backgrounds/binoculars1.png") no-repeat scroll right -200px bottom 80px;
    background: transparent url("/_assets/images/backgrounds/animals1.jpg") repeat-x scroll bottom right;*/
}
/* ###################################################################################### */
/* ###################################################################################### */
/* ###################################################################################### */

