/**
 * #.# Common SCSS
 *
 * Can include things like variables and mixins
 * that are used across the project.
*/
/**
 * #.# Styles
 *
 * CSS for both Frontend+Backend.
 */
.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: block;
  padding: 0.5rem 1rem; }
  .nav-link:hover, .nav-link:focus {
    text-decoration: none; }
  .nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default; }

.nav-tabs {
  border-bottom: 1px solid #dee2e6; }
  .nav-tabs .nav-item {
    margin-bottom: -1px; }
  .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
      border-color: #e9ecef #e9ecef #dee2e6; }
    .nav-tabs .nav-link.disabled {
      color: #6c757d;
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #f4f4f4;
    border-color: #dee2e6 #dee2e6 #f4f4f4; }
  .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav-pills .nav-link {
  border-radius: 0.25rem; }

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #f4f4f4;
  background-color: #007bff; }

.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: center; }

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
  text-align: center; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.modal-open {
  overflow: hidden; }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
        -ms-transform: translate(0, -50px);
            transform: translate(0, -50px); }
    @media (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }
  .modal.show .modal-dialog {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }
  .modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02); }

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem); }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden; }
  .modal-dialog-scrollable .modal-header,
  .modal-dialog-scrollable .modal-footer {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .modal-dialog-scrollable .modal-body {
    overflow-y: auto; }

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: calc(100% - 1rem); }
  .modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    content: ""; }
  .modal-dialog-centered.modal-dialog-scrollable {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    height: 100%; }
    .modal-dialog-centered.modal-dialog-scrollable .modal-content {
      max-height: none; }
    .modal-dialog-centered.modal-dialog-scrollable::before {
      content: none; }

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #f4f4f4;
  background-clip: padding-box;
  border: 1px solid rgba(41, 41, 41, 0.2);
  border-radius: 0.3rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #292929; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px); }
  .modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5; }

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 1rem; }

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px); }
  .modal-footer > * {
    margin: 0.25rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem); }
    .modal-dialog-scrollable .modal-content {
      max-height: calc(100vh - 3.5rem); }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem); }
    .modal-dialog-centered::before {
      height: calc(100vh - 3.5rem); }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px; } }

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px; } }

/* Single List */
body.tpd-restaurants {
  background-color: #f1f0ee !important; }
  body.tpd-restaurants *, body.tpd-restaurants span, body.tpd-restaurants div {
    font-family: Lato,sans-serif; }
  body.tpd-restaurants h1, body.tpd-restaurants h2, body.tpd-restaurants h3, body.tpd-restaurants h4, body.tpd-restaurants h5 {
    font-family: Montserrat,sans-serif;
    line-height: 1.2; }
  body.tpd-restaurants h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 10px; }
  body.tpd-restaurants p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    font-weight: 500; }
  body.tpd-restaurants #content {
    padding-top: 1rem; }
  body.tpd-restaurants .tpd-restaurants-header,
  body.tpd-restaurants .tpd-restaurants-container,
  body.tpd-restaurants .tpd-restaurants-sidebar,
  body.tpd-restaurants .tpd-restaurants-featured_image,
  body.tpd-restaurants .wp-block-tpd-block-tpd-restaurants-intro.list-intro,
  body.tpd-restaurants .tpd-restaurants-content > .wp-block-group,
  body.tpd-restaurants .tpd-restaurants-search_form,
  body.tpd-restaurants .tpd-restaurants-promotions {
    background-color: #fff;
    padding: 15px; }
  body.tpd-restaurants .tpd-restaurants-header img,
  body.tpd-restaurants .tpd-restaurants-container img {
    display: block;
    margin: 0 auto 30px; }
  body.tpd-restaurants .tpd-restaurants-header h1 {
    color: #323232;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding-bottom: .5em;
    letter-spacing: .2em;
    border-bottom: dotted 1px rgba(0, 0, 0, 0.2); }
  body.tpd-restaurants .wp-block-tpd-block-tpd-restaurants-intro.list-intro,
  body.tpd-restaurants .tpd-restaurants-content > .wp-block-group {
    font-family: Verdana, Arial, Helvetica, sans-serif; }
  body.tpd-restaurants .tpd-restaurants-promotions * {
    border: none; }
  body.tpd-restaurants .tpd-restaurants-promotions img {
    display: block;
    margin-bottom: 15px; }
  body.tpd-restaurants .tpd-restaurants-featured_image img {
    display: block;
    margin: auto; }
  body.tpd-restaurants .tpd-restaurants-header h2.intro-heading,
  body.tpd-restaurants .tpd-restaurants-content h2.intro-heading {
    text-align: center;
    font-weight: bold;
    font-size: 22px; }
  body.tpd-restaurants .tpd-restaurants-awards_local {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
        align-items: flex-start; }
  body.tpd-restaurants .tpd-restaurants-ratings_lists {
    padding: 15px;
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    body.tpd-restaurants .tpd-restaurants-ratings_lists .gayot-stars-rating {
      margin-bottom: 10px; }
    body.tpd-restaurants .tpd-restaurants-ratings_lists ul {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      list-style: none;
      margin-bottom: 15px; }
    body.tpd-restaurants .tpd-restaurants-ratings_lists > li {
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
      max-width: 50%;
      list-style: none; }
      body.tpd-restaurants .tpd-restaurants-ratings_lists > li li {
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
        max-width: 100%; }
      body.tpd-restaurants .tpd-restaurants-ratings_lists > li li a {
        color: #505050; }
      body.tpd-restaurants .tpd-restaurants-ratings_lists > li li a:hover {
        color: #76953a; }
      body.tpd-restaurants .tpd-restaurants-ratings_lists > li .view-more {
        padding-left: 10px;
        font-weight: bold;
        font-size: 12px; }
  body.tpd-restaurants .tpd-list-item {
    display: block;
    -webkit-box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 25px -10px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    margin-top: 30px;
    margin-bottom: 30px; }
    body.tpd-restaurants .tpd-list-item h1 {
      display: block;
      margin: 0;
      font-weight: 500;
      letter-spacing: .05em; }
    body.tpd-restaurants .tpd-list-item a, body.tpd-restaurants .tpd-list-item button, body.tpd-restaurants .tpd-list-item input, body.tpd-restaurants .tpd-list-item p, body.tpd-restaurants .tpd-list-item span {
      font-family: Verdana, Geneva, Tahoma, sans-serif; }
    body.tpd-restaurants .tpd-list-item a, body.tpd-restaurants .tpd-list-item a:hover {
      color: #76953a;
      text-decoration: none; }
    body.tpd-restaurants .tpd-list-item p {
      margin: 0 !important; }
  body.tpd-restaurants .tpd-list-item_header,
  body.tpd-restaurants .wp-block-tpd-list-block h3 {
    border-bottom: dotted 1px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-bottom: .5em; }
  body.tpd-restaurants .tpd-list-item_index {
    font-size: 32px; }
  body.tpd-restaurants .wp-block-tpd-list-block p,
  body.tpd-restaurants .wp-block-tpd-list-block img,
  body.tpd-restaurants .tpd-list-item_body {
    padding: 0 15px 15px; }
  body.tpd-restaurants .tpd-list-item_content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px; }
    body.tpd-restaurants .tpd-list-item_content > div {
      -ms-flex: 1 1;
          flex: 1 1; }
  body.tpd-restaurants .tpd-list-item_content.no-img {
    -ms-flex-direction: column;
        flex-direction: column; }
    body.tpd-restaurants .tpd-list-item_content.no-img .tpd-list-item_rating {
      position: relative; }
    body.tpd-restaurants .tpd-list-item_content.no-img .tpd-list-item_blurb {
      margin-top: 15px; }
  body.tpd-restaurants .tpd-list-item_image-container {
    display: block;
    position: relative;
    margin-right: 30px;
    max-width: 340px; }
  body.tpd-restaurants img.tpd-list-item_image {
    width: 100%;
    max-height: 225px;
    -o-object-fit: cover;
       object-fit: cover; }
  body.tpd-restaurants .tpd-list-item_rating {
    display: inline-block;
    position: absolute;
    top: 0;
    right: -20px;
    font-size: 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
    background-color: #759633;
    padding: 10px 10px;
    margin-top: -25px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.25); }
    body.tpd-restaurants .tpd-list-item_rating:hover {
      background-color: #555;
      cursor: pointer; }
    body.tpd-restaurants .tpd-list-item_rating span {
      margin-bottom: -13px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: -.1px;
      line-height: 9px; }
  body.tpd-restaurants p.tpd-list-item_cusinies {
    color: #464646;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 26px; }
  body.tpd-restaurants .tpd-list-item_booktable {
    margin-top: 15px; }
    body.tpd-restaurants .tpd-list-item_booktable * {
      font-family: Lato,sans-serif; }
    body.tpd-restaurants .tpd-list-item_booktable a#reserveButton {
      display: block;
      background-color: #DB3743;
      border: 0px;
      max-width: 200px; }
      body.tpd-restaurants .tpd-list-item_booktable a#reserveButton:hover {
        -webkit-filter: brightness(110%);
                filter: brightness(110%); }
    body.tpd-restaurants .tpd-list-item_booktable img {
      border: 0px;
      margin: 5px 0 0;
      padding: 1rem 4rem !important;
      display: block; }
  body.tpd-restaurants .bestof-description {
    margin: 15px auto 30px; }
  body.tpd-restaurants .tpd-restaurants_cities_list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 30px auto;
    padding: 0;
    -ms-flex-pack: justify;
        justify-content: space-between; }
    body.tpd-restaurants .tpd-restaurants_cities_list li {
      -ms-flex: 1 1 48%;
          flex: 1 1 48%;
      max-width: 48%;
      margin-bottom: 15px;
      list-style: none;
      padding: 7px;
      border-radius: 3px;
      border: 1px solid #d7d7d7;
      background-color: #fff;
      border-bottom: solid 3px #76953a;
      text-align: center; }
      body.tpd-restaurants .tpd-restaurants_cities_list li:hover {
        background-color: #fff;
        -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
                box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1); }
        body.tpd-restaurants .tpd-restaurants_cities_list li:hover a {
          color: #76953a; }
      body.tpd-restaurants .tpd-restaurants_cities_list li:nth-child(even) {
        margin-left: 0; }
      body.tpd-restaurants .tpd-restaurants_cities_list li a {
        color: #000;
        font-size: 20px; }
  body.tpd-restaurants .luxuryAds {
    display: block;
    margin-top: 1.75em;
    margin-bottom: 1.75em;
    border: 1px solid #dee2e6; }
    body.tpd-restaurants .luxuryAds .h5 {
      color: #fff;
      font-weight: 700;
      font-size: 1em;
      padding: .5em 1em;
      background-color: #ededed; }
    body.tpd-restaurants .luxuryAds .feature-text {
      padding: 1em; }
  body.tpd-restaurants #breadcrumbs * {
    font-size: 14px;
    font-family: Lato, sans-serif;
    color: #000; }
  body.tpd-restaurants #breadcrumbs .breadcrumb-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    margin-top: 25px;
    padding: .5rem;
    background-color: #fff;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); }
  body.tpd-restaurants #breadcrumbs img#location-pin {
    width: 100%;
    max-width: 20px;
    margin-bottom: 4px; }
  body.tpd-restaurants #breadcrumbs div#right-float {
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
  body.tpd-restaurants #breadcrumbs ul {
    padding-left: 15px;
    margin-top: 0;
    margin-bottom: 0;
    list-style: none; }
    body.tpd-restaurants #breadcrumbs ul li {
      display: inline-block;
      margin: 0;
      margin-right: 7px; }
  body.tpd-restaurants #breadcrumbs form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
  body.tpd-restaurants #breadcrumbs .sa-button {
    border-radius: 10px;
    background-color: #000;
    color: #fff !important;
    padding: .1em .5em;
    font-size: 11px; }
  body.tpd-restaurants .addthis_sharing_toolbox {
    text-align: center; }
    body.tpd-restaurants .addthis_sharing_toolbox.active {
      display: block;
      position: absolute;
      top: 110%;
      text-align: center; }
  body.tpd-restaurants .pagination-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
        align-items: flex-end; }
    body.tpd-restaurants .pagination-wrapper p {
      font-size: 12px; }
  body.tpd-restaurants .page-numbers {
    padding-left: 0;
    font-family: open sans,arial,sans-serif;
    font-size: 12px;
    display: inline-block;
    width: 100%; }
  body.tpd-restaurants .page-numbers:first-child {
    margin-bottom: 0px; }
  body.tpd-restaurants .page-numbers li {
    display: inline-block;
    margin: 0;
    line-height: 0px; }
  body.tpd-restaurants .page-numbers li a,
  body.tpd-restaurants .page-numbers li span {
    padding: 5px 11px;
    border: 1px solid #e3e3e3;
    display: inline-block;
    margin: 0 8px 8px 0;
    min-width: 33px;
    text-align: center;
    color: #666;
    line-height: 21px;
    background-color: #fff; }
  body.tpd-restaurants .page-numbers li:hover a {
    color: #fff;
    background-color: #444;
    border-color: #444; }
  body.tpd-restaurants .page-numbers li span.current {
    border-color: #759633;
    background-color: #759633;
    color: #fff; }
  body.tpd-restaurants .modal-content {
    background-color: #fff; }

/* Single Restaurant */
body.single-restaurants {
  background-color: #f1f0ee; }
  body.single-restaurants .addthis_sharing_toolbox {
    display: none; }
  body.single-restaurants .wp-post-image {
    width: 100%; }
  body.single-restaurants .tpd-restaurant-container,
  body.single-restaurants .sidebar {
    position: relative;
    padding: 1em;
    border-bottom: 5px solid #76953A;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    background-color: #fff; }
  body.single-restaurants .tpd-restaurant-container {
    padding-top: 0; }
  body.single-restaurants .tpd-list-item_booktable a#reserveButton {
    display: block; }
  body.single-restaurants .tpd-restaurant-header {
    padding-bottom: 25px;
    border-bottom: 1px solid #dee2e6; }
    body.single-restaurants .tpd-restaurant-header .row {
      -ms-flex-align: center;
          align-items: center; }
  body.single-restaurants .tpd-restaurant-header_rating {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    font-size: 14px; }
    body.single-restaurants .tpd-restaurant-header_rating img:last-child {
      margin-right: 5px; }
    body.single-restaurants .tpd-restaurant-header_rating .gayot-stars-rating {
      margin-right: 15px; }
  body.single-restaurants #price {
    position: relative; }
    body.single-restaurants #price #selected {
      position: absolute;
      top: 0;
      left: 0;
      font-weight: 700; }
  body.single-restaurants #capacity {
    color: #aaa; }
  body.single-restaurants .tpd-restaurant-header_intro h4 {
    font-size: 0.75em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 3px; }
    body.single-restaurants .tpd-restaurant-header_intro h4 span {
      font-weight: 500; }
  body.single-restaurants .tpd-restaurant-header_intro ul {
    padding-left: 0;
    margin-bottom: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    body.single-restaurants .tpd-restaurant-header_intro ul li {
      font-size: 0.75em;
      line-height: 1.5;
      margin: 0;
      list-style: none;
      margin-right: 10px; }
  body.single-restaurants .tpd-restaurant-header_intro img#open-clock {
    width: 100%;
    max-width: 10px;
    margin-right: 3px;
    margin-bottom: 2px; }
  body.single-restaurants .tpd-restaurant-header_intro #blurb {
    display: block;
    font-weight: 500;
    font-size: 1em;
    margin-bottom: 10px; }
  body.single-restaurants .tpd-restaurant-header_contact {
    position: relative;
    top: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: flex-end;
    text-transform: uppercase; }
    body.single-restaurants .tpd-restaurant-header_contact a {
      position: relative;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: center;
          align-items: center;
      font-size: 14px;
      font-weight: 400;
      margin-right: 0;
      padding: 7px 5px 5px;
      color: #888;
      background-color: #fff;
      cursor: pointer; }
    body.single-restaurants .tpd-restaurant-header_contact img {
      height: 22px;
      width: 22px;
      margin-bottom: 5px; }
  body.single-restaurants .tpd-restaurant-header_intro {
    font-size: 16px; }
  body.single-restaurants h2.tpd-restaurant-header_intro_title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: normal;
    margin: 0 0 5px 0; }
  body.single-restaurants .tpd-restaurant-header_intro_container {
    margin-top: 10px; }
  body.single-restaurants .tpd-restaurant-header_intro_details {
    margin-right: 20px; }
  body.single-restaurants .tpd-restaurant-body {
    margin-top: 15px; }
  body.single-restaurants .tpd-restautant-links {
    font-size: 14px;
    margin-top: 10px; }
    body.single-restaurants .tpd-restautant-links .website {
      font-size: 12px; }
  body.single-restaurants #info-tabs {
    background-color: #fff;
    border-bottom: none; }
    body.single-restaurants #info-tabs .nav-item {
      margin-left: 0; }
    body.single-restaurants #info-tabs.nav-tabs .nav-link {
      border: 1px solid transparent;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      color: #7d7d7d;
      text-transform: uppercase;
      padding: 0.5em 0;
      margin-right: 1rem; }
    body.single-restaurants #info-tabs.nav-tabs .nav-item.show .nav-link,
    body.single-restaurants #info-tabs.nav-tabs .nav-link.active {
      color: #76953a;
      border-bottom: 2px solid #76953a;
      padding: 0.5em 0;
      background-color: #fff; }
  body.single-restaurants #restaurant-tab-content {
    background-color: #fff;
    margin-top: 15px; }

.tpd-restaurants-hotten {
  padding: 16px;
  margin-top: 16px;
  border: 1px solid #ddd; }
  .tpd-restaurants-hotten ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .tpd-restaurants-hotten ul li {
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
      max-width: 50%; }

/* Search Form */
.tpd-restaurants-search_form {
  margin: 25px auto; }
  .tpd-restaurants-search_form button[type=submit] {
    background-color: #76953A;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase; }
    .tpd-restaurants-search_form button[type=submit]:hover {
      background-color: #93b84a; }
  .tpd-restaurants-search_form h3 {
    text-align: center;
    font-size: 22px; }
  .tpd-restaurants-search_form p.description {
    color: #888;
    font-style: italic;
    text-align: center; }

.form-group, .addsearch-filters-selectlist {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 10px; }
  .form-group label, .addsearch-filters-selectlist label {
    font-size: 14px;
    font-weight: bold; }
  .form-group input, .form-group select, .form-group textarea, .addsearch-filters-selectlist input, .addsearch-filters-selectlist select, .addsearch-filters-selectlist textarea {
    display: block;
    margin-top: 7px; }

body.tpd-restaurants.ratings h2.intro-heading {
  margin-top: 15px; }

.tpd-restaurants-search_form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #76953A !important;
  border-radius: 3px;
  background: #fff;
  background-image: none;
  padding: 10px 16px; }
