/* Scss Document */
/* Brandcolors */
#resto_top {
  width: 100%;
  height: auto;
  padding-top: 15vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #F5F4F4; }
  #resto_top .resto_main_content {
    padding: 0 5vh; }
    #resto_top .resto_main_content h1 {
      color: #112758;
      margin: 2% 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start; }
    #resto_top .resto_main_content p {
      margin: 1% 0; }
  #resto_top .resto_opening_content {
    padding: 0 5vh;
    color: #112758; }
    #resto_top .resto_opening_content h2 {
      font-size: 0.85em;
      text-transform: uppercase;
      margin: 2% 0;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      #resto_top .resto_opening_content h2 span {
        font-size: 0.8em;
        font-weight: 500;
        text-transform: none; }
    #resto_top .resto_opening_content .resto_opening_table {
      display: flex;
      justify-content: space-between; }
      #resto_top .resto_opening_content .resto_opening_table ul {
        font-size: 0.8em;
        list-style: none;
        padding-left: 0;
        margin: 0; }
      #resto_top .resto_opening_content .resto_opening_table ul.hours {
        font-size: 0.8em;
        font-weight: 300; }
  #resto_top .readmore {
    padding: 5%;
    display: block;
    margin: 0 auto; }
  #resto_top .resto_body {
    padding: 5vh;
    color: #112758;
    font-size: 0.8em; }

#resto_info .resto_info {
  background-color: #F5F4F4; }
  #resto_info .resto_info h2 {
    margin: 0;
    padding: 5vh;
    color: #112758;
    font-size: 1em;
    text-transform: uppercase; }
  #resto_info .resto_info ul {
    padding: 0 5vh;
    margin: 0;
    list-style: none; }
    #resto_info .resto_info ul li {
      display: flex;
      align-items: center;
      color: #112758;
      font-weight: 300;
      font-size: 0.8em; }
      #resto_info .resto_info ul li object {
        padding-right: 25px;
        width: 30px;
        height: 30px; }
      #resto_info .resto_info ul li a {
        text-decoration: none;
        color: #112758; }
  #resto_info .resto_info hr {
    border: 1px solid #EDEDEB; }
#resto_info .resto_adress_title {
  display: none; }
#resto_info .resto_opening_content_desktop {
  display: none; }

.resto_nav {
  position: relative;
  padding: 5%;
  height: auto;
  background-color: #EDEDEB;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start; }
  .resto_nav a {
    text-decoration: none;
    margin: 3% 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #F5F4F4;
    padding: 2% 0; }
    .resto_nav a img {
      margin: 5%; }
    .resto_nav a span {
      font-size: 0.8em;
      color: #112758;
      padding-bottom: 2%;
      margin: 5%;
      border-bottom: 1px solid #d15152; }
  .resto_nav .overview_resto {
    text-align: center;
    justify-content: center;
    background: transparent; }

@supports (display: grid) {
  @media screen and (min-width: 720px) {
    #resto_top {
      z-index: -1;
      position: fixed;
      top: 0;
      padding-top: 9vh;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: 12vh 38vh;
      grid-template-areas: "slider heading" "slider body"; }
      #resto_top .royalSlider {
        grid-area: slider;
        max-width: 50vw;
        width: 100%;
        height: 100% !important; }
        #resto_top .royalSlider .rsBullets {
          margin: 2%; }
      #resto_top .resto_main_content {
        grid-area: heading;
        text-align: left;
        padding: 5% 10%;
        background-color: #d15152;
        font-size: 1.2em; }
        #resto_top .resto_main_content .resto_category {
          color: #fff;
          font-size: 0.9em; }
        #resto_top .resto_main_content .resto_adress {
          display: none; }
      #resto_top .resto_body {
        grid-area: body;
        background: #d15152;
        color: #fff;
        padding: 5% 10%; }
      #resto_top .resto_opening_content {
        display: none; }

    #resto_info {
      z-index: 2;
      margin-top: 59vh;
      padding: 0 0 5vh 0;
      background-color: #F5F4F4;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-gap: 0 5vw;
      grid-template-rows: auto;
      grid-template-areas: "title title title title title title" "map map map map map map " ". opening opening opening opening ." ". info info info info ."; }
      #resto_info .resto_adress_title {
        grid-area: title;
        display: block;
        width: 100vw;
        margin: 0 auto;
        text-align: center;
        color: #112758;
        background-color: #fff; }
        #resto_info .resto_adress_title h2 {
          margin: 0 0 1% 0; }
        #resto_info .resto_adress_title svg {
          fill: #d15152;
          margin: 1%; }
      #resto_info .resto_map {
        grid-area: map; }
      #resto_info .resto_info {
        grid-area: info; }
        #resto_info .resto_info h2 {
          padding: 0;
          margin: 2vh 0; }
        #resto_info .resto_info ul {
          padding: 0; }
        #resto_info .resto_info hr {
          display: none; }
      #resto_info .resto_opening_content_desktop {
        grid-area: opening;
        display: block;
        color: #112758; }
        #resto_info .resto_opening_content_desktop h2 {
          font-size: 1em;
          text-transform: uppercase;
          margin: 2vh 0;
          display: flex;
          justify-content: space-between;
          align-items: center; }
          #resto_info .resto_opening_content_desktop h2 span {
            font-size: 0.8em;
            font-weight: 500;
            text-transform: none; }
        #resto_info .resto_opening_content_desktop .resto_opening_table {
          display: flex;
          justify-content: space-between; }
          #resto_info .resto_opening_content_desktop .resto_opening_table ul {
            font-size: 1em;
            list-style: none;
            padding-left: 0;
            margin: 0; }
          #resto_info .resto_opening_content_desktop .resto_opening_table ul.hours {
            font-size: 1em;
            font-weight: 300; }

    .resto_nav {
      padding: 5vh 0;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: 100px;
      grid-gap: 5%;
      grid-template-areas: ". . overview overview . ." ". prev  prev next next ."; }
      .resto_nav .prev_resto {
        grid-area: prev; }
      .resto_nav .next_resto {
        grid-area: next; }
      .resto_nav .overview_resto {
        grid-area: overview; }
      .resto_nav a {
        justify-content: space-around; } }
  @media screen and (min-width: 1024px) {
    #resto_top {
      grid-template-rows: 25vh 50vh; }
      #resto_top .resto_main_content h1 {
        font-size: 4vw; }
      #resto_top .resto_main_content .resto_category {
        font-size: 2vw; }
      #resto_top .resto_body {
        font-size: 1em;
        line-height: 2em; }

    #resto_info {
      margin-top: 84vh;
      grid-template-areas: "title title title title title title" "map map map map map map" ". opening opening info info ."; } }
  @media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
    #resto_top .resto_body {
      line-height: 1.5em; } } }
