/* Scss Document */
/* Brandcolors */
.resto_list {
  background: #fff; }
  .resto_list .jumplinks {
    width: 100%;
    text-align: center; }
    .resto_list .jumplinks a {
      font-size: 1.4em;
      color: #d15152;
      padding: 2%;
      width: 100%;
      text-align: center; }

@supports (display: grid) {
  @media screen and (min-width: 720px) {
    .resto_list {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: auto;
      grid-template-areas: " . title title title title ." " . jump jump jump jump ." ". list list list list ."; }
      .resto_list .resto_list_title {
        grid-area: title; }
      .resto_list .jumplinks {
        grid-area: jump;
        justify-self: center; }
      .resto_list #resto_sorted_list {
        grid-area: list; } } }
