@charset "UTF-8";
/*
--------------------------------------------------------------------------------------------- 
RESET CSS 
---------------------------------------------------------------------------------------------
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

*:focus {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: middle;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

/*
--------------------------------------------------------------------------------------------- 
GENERAL 
---------------------------------------------------------------------------------------------
*/
html.html {
  margin-top: 0px !important;
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html.html.lock {
  overflow: hidden;
}

body {
  width: 100vw;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  font-style: normal;
  color: #444444;
  transition: all 300ms ease-in-out;
}

#main {
  position: relative;
  margin-top: 0px;
  will-change: transform;
}

.container {
  max-width: 1180px;
}
@media all and (max-width: 1500px) {
  .container {
    max-width: 1200px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media all and (max-width: 500px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.container--small {
  width: 1080px;
}

.button {
  padding: 9px 15px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 200ms ease-in-out;
}
.button--primary {
  color: #fff;
  background-color: #00b5db;
  border: 1px solid #00b5db;
}
.button--primary:hover {
  opacity: 0.8;
  color: #fff;
}
.button--large {
  background-color: #00b5db;
  border: 1px solid #00b5db;
  padding: 9px 30px;
  line-height: 30px;
}
.button--full {
  width: 100%;
}
.button--loading {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #dddddd;
}
.button:hover {
  text-decoration: none;
}
.button--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.icon i {
  font-size: 60px;
  margin-bottom: 30px;
  color: #222222;
  opacity: 0.2;
}

.image {
  display: block;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}
.image__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-position: center;
  background-size: cover;
  transform: scale(1);
  transition: all 300ms ease-in-out;
}
.image__label {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #fff;
  padding: 2px 10px;
  font-size: 90%;
  color: #000000;
  font-weight: 500;
  border-radius: 5px;
}
.image__tags {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
}
.image__tags .tag {
  padding: 2px 8px;
  margin-left: 5px;
  color: #000;
  background-color: #fff;
  letter-spacing: 0.05em;
  font-size: 13px;
  font-weight: 500;
  border-radius: 5px;
}
.image__tags .tag:empty {
  display: none;
}

.img {
  display: block;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.img img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.poster {
  display: block;
  position: relative;
  width: 50vw;
  max-height: 800px;
  float: left;
  margin-left: -15px;
}
@media all and (max-width: 992px) {
  .poster {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    float: none !important;
  }
}
.poster--vertical {
  max-height: 1000px;
}
.poster--left {
  float: right;
  margin-right: -15px;
}
.poster:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.poster__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-position: center;
  background-size: cover;
}

.background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.background__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content {
  padding: 60px 60px;
}
@media all and (max-width: 992px) {
  .content {
    padding: 40px 20px;
  }
}

.subtitle {
  font-size: 22px;
  font-weight: bold;
  color: #00b5db;
}

.label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #00b5db;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}

.wysiwyg {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #444444;
  margin-bottom: 30px;
}
.wysiwyg--large {
  font-size: 25px;
}
.wysiwyg a:not(.button) {
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid;
  color: #000000;
}
.wysiwyg a:not(.button):hover {
  opacity: 0.6;
}
.wysiwyg abbr {
  border-bottom: 1px dotted;
  cursor: help;
}
.wysiwyg cite {
  font-style: italic;
}
.wysiwyg hr {
  background: #e6e6e6;
  border: none;
  display: block;
  height: 1px;
  margin-bottom: 1.4em;
  margin-top: 1.4em;
}
.wysiwyg img {
  vertical-align: text-bottom;
}
.wysiwyg ins {
  background-color: lime;
  text-decoration: none;
}
.wysiwyg mark {
  background-color: #ff0;
}
.wysiwyg small {
  font-size: 0.8em;
}
.wysiwyg strong {
  font-weight: 700;
}
.wysiwyg sub,
.wysiwyg sup {
  font-size: 0.8em;
}
.wysiwyg sub {
  vertical-align: sub;
}
.wysiwyg sup {
  vertical-align: super;
}
.wysiwyg p,
.wysiwyg dl,
.wysiwyg ol,
.wysiwyg ul,
.wysiwyg blockquote,
.wysiwyg pre,
.wysiwyg table {
  margin-bottom: 1.4em;
}
.wysiwyg p:last-child,
.wysiwyg dl:last-child,
.wysiwyg ol:last-child,
.wysiwyg ul:last-child,
.wysiwyg blockquote:last-child,
.wysiwyg pre:last-child,
.wysiwyg table:last-child {
  margin-bottom: 0;
}
.wysiwyg p:empty {
  display: none;
}
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 0.75em;
}
.wysiwyg h1:first-child,
.wysiwyg h2:first-child,
.wysiwyg h3:first-child,
.wysiwyg h4:first-child,
.wysiwyg h5:first-child,
.wysiwyg h6:first-child {
  margin-top: 0;
}
.wysiwyg h1 {
  font-size: 40px;
  margin-left: -20px;
}
.wysiwyg h2 {
  font-size: 30px;
  margin-left: -20px;
}
.wysiwyg h3 {
  font-size: 20px;
}
.wysiwyg h4 {
  font-size: 20px;
  color: #444444;
  font-weight: 400;
}
.wysiwyg h5 {
  font-size: 18px;
  color: #444444;
  font-weight: 400;
}
.wysiwyg h6 {
  font-size: 16px;
  color: #444444;
  font-weight: 400;
}
.wysiwyg dd {
  margin-left: 1.4em;
}
.wysiwyg ol,
.wysiwyg ul {
  list-style-position: outside;
  margin-left: 1.4em;
}
.wysiwyg ol {
  padding-left: 20px;
  list-style-type: decimal;
}
.wysiwyg ol ol {
  list-style-type: lower-alpha;
}
.wysiwyg ol ol ol {
  list-style-type: lower-roman;
}
.wysiwyg ol ol ol ol {
  list-style-type: lower-greek;
}
.wysiwyg ol ol ol ol ol {
  list-style-type: decimal;
}
.wysiwyg ol ol ol ol ol ol {
  list-style-type: lower-alpha;
}
.wysiwyg ul {
  padding-left: 20px;
  list-style-type: disc;
}
.wysiwyg ul ul {
  list-style-type: circle;
}
.wysiwyg ul ul ul {
  list-style-type: square;
}
.wysiwyg ul ul ul ul {
  list-style-type: circle;
}
.wysiwyg ul ul ul ul ul {
  list-style-type: disc;
}
.wysiwyg ul ul ul ul ul ul {
  list-style-type: circle;
}
.wysiwyg blockquote {
  border-left: 4px solid #e6e6e6;
  padding: 0.6em 1.2em;
}
.wysiwyg blockquote p {
  margin-bottom: 0;
}
.wysiwyg code,
.wysiwyg kbd,
.wysiwyg samp,
.wysiwyg pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  background-color: #f2f2f2;
  color: #333;
  font-size: 0.9em;
}
.wysiwyg code,
.wysiwyg kbd,
.wysiwyg samp {
  border-radius: 3px;
  line-height: 1.77778;
  padding: 0.1em 0.4em 0.2em;
  vertical-align: baseline;
}
.wysiwyg pre {
  overflow: auto;
  padding: 1em 1.2em;
}
.wysiwyg pre code {
  background: none;
  font-size: 1em;
  line-height: 1em;
}
.wysiwyg figure {
  margin-bottom: 2.8em;
  text-align: center;
}
.wysiwyg figure:first-child {
  margin-top: 0;
}
.wysiwyg figure:last-child {
  margin-bottom: 0;
}
.wysiwyg figcaption {
  font-size: 0.8em;
  margin-top: 0.875em;
}
.wysiwyg table {
  width: 100%;
}
.wysiwyg table pre {
  white-space: pre-wrap;
}
.wysiwyg th,
.wysiwyg td {
  font-size: 1em;
  padding: 0.7em;
  border: 1px solid #e6e6e6;
  line-height: 1.4;
}
.wysiwyg thead tr,
.wysiwyg tfoot tr {
  background-color: #f5f5f5;
}
.wysiwyg thead th,
.wysiwyg thead td {
  font-size: 0.9em;
  padding: 0.77778em;
}
.wysiwyg tfoot th,
.wysiwyg tfoot td {
  font-size: 0.9em;
  padding: 0.77778em;
}
.wysiwyg thead th code,
.wysiwyg thead td code {
  background-color: #fff;
}
.wysiwyg tfoot th code,
.wysiwyg tfoot td code {
  background-color: #fff;
}
.wysiwyg tbody tr {
  background-color: #fff;
}

.link {
  display: inline-block;
  text-align: left;
  font-weight: 600;
  color: #000000;
  border-bottom: 1px solid;
  cursor: pointer;
}
.link .fal {
  font-size: 14px;
  margin-right: 5px;
}
.link--inline {
  display: inline-block;
}
.link:hover {
  opacity: 0.8;
}

.tabs__navigation {
  display: block;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
  border-bottom: 1px solid #00b5db;
}
@media all and (max-width: 500px) {
  .tabs__navigation {
    width: 100vw;
    overflow: scroll;
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.tabs__navigation__item {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  margin-right: 15px;
  font-weight: 600;
  color: #00b5db;
  letter-spacing: 0.1em;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border: 1px solid #00b5db;
  border-radius: 10px 10px 0px 0px;
  margin-bottom: -1px;
  cursor: pointer;
}
.tabs__navigation__item:hover:not(.tabs__navigation__item--active) {
  border: 1px solid #00b5db;
  margin-bottom: -1px;
  background-color: #fff;
}
.tabs__navigation__item--active {
  border: 1px solid #00b5db;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
  background-color: #fff;
  cursor: default;
}
.tabs__filter {
  margin-bottom: 40px;
}
.tabs__search {
  text-align: right;
  margin-bottom: 30px;
}
.tabs__search input {
  display: inline-block;
  border: 0px;
  padding: 0px;
  margin: 0px;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #00b5db;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  font-size: 11px;
  width: calc(100% - 255px);
  max-width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-right: 10px;
}
@media all and (max-width: 500px) {
  .tabs__search input {
    width: 100%;
    max-width: 100%;
  }
}
.tabs__search button {
  display: inline-block;
  width: 140px;
}
@media all and (max-width: 500px) {
  .tabs__search button {
    width: 100%;
  }
}
.tabs__content__item {
  display: none;
}
.tabs__content__item--active {
  display: block;
}
.tabs__content__item li {
  margin-bottom: 15px;
}
.tabs__content__item i {
  margin-right: 10px;
  font-size: 20px;
}

.table {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border: 10px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  font-size: 12px;
}
.table tr {
  padding: 10px;
  border: 10px;
}
.table tr th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 20px 30px;
}
@media all and (max-width: 992px) {
  .table tr th {
    display: none;
  }
}
.table tr td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  vertical-align: middle;
  padding: 20px 30px;
}
@media all and (max-width: 992px) {
  .table tr td {
    display: block;
    width: 100%;
    border-bottom: 0px;
    padding: 5px 20px;
    border-top: 0px;
  }
}
.table tr td.type {
  width: 150px;
  text-align: center;
  font-weight: 600;
}
@media all and (max-width: 992px) {
  .table tr td.type {
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: 0px;
    padding-top: 20px;
  }
}
.table tr td.price {
  color: #00b5db;
  width: 150px;
  text-align: center;
  font-weight: 600;
}
@media all and (max-width: 992px) {
  .table tr td.price {
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 20px;
  }
}
@media all and (max-width: 992px) {
  .table tr:last-child td.price {
    border-bottom: 0px solid rgba(0, 0, 0, 0.5);
  }
}

.pac-container {
  border-radius: 10px;
  border-top: 0px;
  transform: translateY(10px);
  font-family: inherit;
}
.pac-container:after {
  display: none !important;
}

.pac-item {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  font-family: inherit;
  font-size: inherit;
}
.pac-item .pac-icon.pac-icon-marker {
  display: none;
}
.pac-item .pac-item-query {
  font-size: inherit;
}

.pretitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
}

.title {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 0.5em;
}
@media all and (max-width: 800px) {
  .title {
    font-size: 18px;
  }
}
.title--xlarge {
  font-size: 40px;
}
@media all and (max-width: 800px) {
  .title--xlarge {
    font-size: 36px;
  }
}
.title--large {
  font-size: 30px;
}
@media all and (max-width: 800px) {
  .title--large {
    font-size: 26px;
  }
}
.title--medium {
  font-size: 25px;
}
@media all and (max-width: 800px) {
  .title--medium {
    font-size: 21px;
  }
}
.title--small {
  font-size: 18px;
  margin-bottom: 0.25em;
}
@media all and (max-width: 800px) {
  .title--small {
    font-size: 16px;
  }
}

.form input[type=text] {
  width: 400px;
  max-width: 100%;
  height: 50px;
  padding: 0px 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: all 200ms ease-in-out;
  vertical-align: middle;
}
.form input[type=text]:hover {
  border: 1px solid #00b5db;
}
.form input[type=text]:focus {
  box-shadow: 0px 0px 5px 2px #dddddd;
  border: 1px solid #00b5db;
}

.restaurant {
  display: block;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  height: calc(100% - 20px);
  transform: scale(1);
  background-color: #fff;
  border-radius: 11px;
  overflow: hidden;
  transition: all 200ms ease-in-out;
  will-change: transform;
}
@media all and (max-width: 800px) {
  .restaurant {
    height: initial;
  }
}
.restaurant:hover {
  transform: scale(1.005);
  box-shadow: 0px 22px 24px 0px rgba(0, 0, 0, 0.08);
}
.restaurant:hover .restaurant__image .image__bg {
  transform: scale(1.005);
}
.restaurant__image {
  position: relative;
  height: auto;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.restaurant__image .image__bg {
  will-change: transform;
}
.restaurant__image:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 60%;
}
.restaurant__content {
  padding: 10px;
  transform: translateZ(1px);
}
.restaurant__content__top {
  display: flex;
  justify-content: flex-start;
}
.restaurant__content__bottom {
  display: block;
}
.restaurant__content .title {
  font-size: 18px;
  color: #222222;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: bold;
  line-height: 30px;
  max-width: calc(100% - 100px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media all and (max-width: 800px) {
  .restaurant__content .title {
    margin-bottom: 0;
  }
}
.restaurant__content .info {
  display: flex;
  align-items: center;
  color: #444444;
}
.restaurant__content .info .fal {
  color: #444444;
  font-size: 14px;
}
.restaurant__content .info .fa-euro-sign {
  opacity: 0.8;
  font-size: 12px;
}
.restaurant__content .info .price {
  line-height: 30px;
  font-size: 15px;
  color: #444444;
  margin-right: 20px;
  vertical-align: middle;
}
.restaurant__content .info .distance {
  color: #444444;
  margin-right: 20px;
  vertical-align: middle;
}
.restaurant__content .categories {
  font-size: 15px;
  color: #444444;
}
.restaurant__content .categories__item:not(:last-child):after {
  content: "·";
  margin-left: 4px;
}

.single-post {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  display: block;
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  transform: scale(1);
  will-change: transform;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.single-post__image:before {
  padding-bottom: 30%;
}
.single-post__content {
  padding: 20px;
}
.single-post__content__date {
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.single-post__content__info {
  display: block;
  margin-bottom: 20px;
  line-height: 30px;
}
.single-post__content__info > div {
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
}
.single-post__content__info > div i {
  font-size: 18px;
  vertical-align: middle;
  color: #00b5db;
  margin-right: 4px;
}

.patrimonio {
  display: block;
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  transform: scale(1);
  will-change: transform;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.patrimonio:hover {
  cursor: pointer;
  transform: scale(0.99);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}
.patrimonio:hover .link {
  color: #00b5db;
}
.patrimonio:hover .link .fa-long-arrow-right {
  transform: translateX(8px);
}
.patrimonio__image:before {
  padding-bottom: 50%;
}
.patrimonio__content {
  padding: 20px;
  padding-bottom: 50px;
}
.patrimonio__content__title {
  line-height: 1.4;
  font-size: 20px;
  margin-bottom: 60px;
}
.patrimonio__content__link {
  display: block;
  float: right;
  margin-bottom: 20px;
  line-height: 30px;
  margin-right: 8px;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 6px;
  border: 6px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#header {
  box-shadow: 0px 0px 30px -15px rgba(0, 0, 0, 0.2);
  z-index: 10;
  position: relative;
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .top {
  padding: 5px 0px;
  height: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#header .top .logo {
  width: auto;
  height: 50px;
}
#header .top .logo img {
  width: auto;
  height: 100%;
}
#header .top .address {
  max-width: calc(100% - 100px);
}
#header .top .address .button {
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
  white-space: nowrap;
}
#header .bottom {
  padding: 10px 0px;
}
#header .bottom .services {
  display: flex;
  justify-content: space-between;
}
#header .bottom .services__delivery, #header .bottom .services__takeaway {
  margin-right: 10px;
}
#header .bottom .address {
  display: none;
}
@media all and (max-width: 800px) {
  #header .bottom .address {
    display: none !important;
  }
}
#header .bottom .actions {
  display: flex;
  justify-content: space-between;
}
#header .bottom .actions__search, #header .bottom .actions__filter {
  margin-left: 10px;
}

#main {
  position: relative;
  min-height: 190px;
}
#main #home {
  padding: 40px 0px;
}
@media all and (max-width: 800px) {
  #main #home {
    height: 100%;
    padding: 20px 0px;
  }
}
#main #home .background__bg {
  opacity: 0.8;
}
#main #home .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 800px) {
  #main #home .container {
    text-align: left;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
#main #home .icon {
  max-width: 120px;
}
@media all and (max-width: 800px) {
  #main #home .icon {
    margin: auto;
  }
}
#main #home .icon img {
  width: 100%;
  height: auto;
}
#main #home .slider {
  position: relative;
  margin-bottom: 40px;
}
@media all and (max-width: 800px) {
  #main #home .slider {
    padding: 0px 10px;
    margin-bottom: 20px;
  }
}
#main #home .slider .slick-list {
  overflow: visible;
}
#main #home .slider .slick-track {
  display: flex;
  align-items: flex-end;
}
#main #home .slider__item {
  position: absolute;
  left: 0;
}
#main #home .slider__item .title {
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}
@media all and (max-width: 800px) {
  #main #home .slider__item .title {
    font-size: 26px;
  }
}
#main #home .wysiwyg {
  color: #fff;
  font-weight: 600;
  font-size: 120%;
  text-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
#main #home .form {
  position: relative;
  margin-bottom: 20px;
}
@media all and (max-width: 800px) {
  #main #home .form {
    padding: 0px 10px;
  }
}
#main #home .form .group {
  display: flex;
  margin-bottom: 20px;
}
@media all and (max-width: 800px) {
  #main #home .form .group {
    display: block;
  }
}
#main #home .form .group.action-buttons {
  width: 400px;
  justify-content: space-between;
  gap: 10px;
}
@media all and (max-width: 800px) {
  #main #home .form .group.action-buttons {
    display: flex;
    width: 100%;
  }
}
#main #home .form .location {
  margin-bottom: 0px;
}
#main #home .form .location .link {
  font-size: 110%;
  color: #fff;
  text-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
#main #home .form .input {
  position: relative;
  display: flex;
  align-items: center;
}
@media all and (max-width: 800px) {
  #main #home .form .input {
    margin-bottom: 10px;
  }
}
#main #home .form .input .fal,
#main #home .form .input .fad {
  position: absolute;
  width: 40px;
  text-align: center;
  font-size: 20px;
  vertical-align: middle;
}
#main #home .form .input input[type=text] {
  padding-left: 40px;
  margin-right: 10px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 800px) {
  #main #home .form .input input[type=text] {
    margin-bottom: 0px;
    margin-right: 0px;
  }
}
#main #home .form .input input[type=text] {
  padding-left: 40px;
  margin-right: 10px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 800px) {
  #main #home .form .input input[type=text] {
    margin-bottom: 0px;
    margin-right: 0px;
  }
}
#main #home .form .input input[type=text]#extra-address {
  padding-left: 20px;
}
#main #home .form .button {
  width: 100%;
  text-align: center;
  vertical-align: middle;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
@media all and (max-width: 800px) {
  #main #home .form .button {
    width: 100%;
  }
}
#main #home .form .response {
  display: inline-block;
  font-weight: 400;
  font-size: 90%;
  padding: 5px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
#main #home .form .response:empty {
  display: none;
}
#main #home .form .response.success {
  color: green;
  background-color: #e2ffe2;
}
#main #home .form .response.error {
  color: #d90000;
  background-color: #fff3f3;
}
#main #dine-in .row-banners,
#main #delivery .row-banners,
#main #takeaway .row-banners {
  position: relative;
  padding: 20px 0px;
}
#main #dine-in .row-banners:before,
#main #delivery .row-banners:before,
#main #takeaway .row-banners:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: transparent;
}
@media all and (max-width: 800px) {
  #main #dine-in .row-banners,
  #main #delivery .row-banners,
  #main #takeaway .row-banners {
    height: 100%;
    padding: 10px 0px;
    margin-bottom: 10px;
  }
}
#main #dine-in .row-header,
#main #dine-in .row-filters,
#main #delivery .row-header,
#main #delivery .row-filters,
#main #takeaway .row-header,
#main #takeaway .row-filters {
  position: relative;
  padding: 20px 0px 0px;
}
#main #dine-in .row-header:before,
#main #dine-in .row-filters:before,
#main #delivery .row-header:before,
#main #delivery .row-filters:before,
#main #takeaway .row-header:before,
#main #takeaway .row-filters:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: transparent;
}
@media all and (max-width: 800px) {
  #main #dine-in .row-header,
  #main #dine-in .row-filters,
  #main #delivery .row-header,
  #main #delivery .row-filters,
  #main #takeaway .row-header,
  #main #takeaway .row-filters {
    height: 100%;
    padding: 20px 0px 0px;
  }
}
#main #dine-in .row-reorder,
#main #dine-in .row-notfound,
#main #delivery .row-reorder,
#main #delivery .row-notfound,
#main #takeaway .row-reorder,
#main #takeaway .row-notfound {
  position: relative;
  padding: 40px 0px;
}
#main #dine-in .row-reorder:before,
#main #dine-in .row-notfound:before,
#main #delivery .row-reorder:before,
#main #delivery .row-notfound:before,
#main #takeaway .row-reorder:before,
#main #takeaway .row-notfound:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: transparent;
}
@media all and (max-width: 800px) {
  #main #dine-in .row-reorder,
  #main #dine-in .row-notfound,
  #main #delivery .row-reorder,
  #main #delivery .row-notfound,
  #main #takeaway .row-reorder,
  #main #takeaway .row-notfound {
    height: 100%;
    padding: 20px 0px;
  }
}
#main #dine-in .header,
#main #delivery .header,
#main #takeaway .header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0px;
}
@media all and (max-width: 800px) {
  #main #dine-in .header,
  #main #delivery .header,
  #main #takeaway .header {
    display: block;
  }
}
#main #dine-in .header .icon,
#main #delivery .header .icon,
#main #takeaway .header .icon {
  display: block;
  width: 100px;
  vertical-align: middle;
  margin-right: 20px;
}
@media all and (max-width: 800px) {
  #main #dine-in .header .icon,
  #main #delivery .header .icon,
  #main #takeaway .header .icon {
    display: block;
    width: 70px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
#main #dine-in .header .icon img,
#main #delivery .header .icon img,
#main #takeaway .header .icon img {
  width: 100%;
  height: auto;
}
#main #dine-in .header .address,
#main #delivery .header .address,
#main #takeaway .header .address {
  display: block;
  vertical-align: middle;
}
@media all and (max-width: 800px) {
  #main #dine-in .header .address,
  #main #delivery .header .address,
  #main #takeaway .header .address {
    display: block;
    margin-bottom: 0px;
  }
}
#main #dine-in .slider,
#main #delivery .slider,
#main #takeaway .slider {
  position: relative;
  display: block;
  white-space: nowrap;
  margin-bottom: 0px;
  border-radius: 10px;
}
#main #dine-in .slider .slick-list,
#main #delivery .slider .slick-list,
#main #takeaway .slider .slick-list {
  margin-left: -10px;
  margin-right: -10px;
}
#main #dine-in .slider .slick-track,
#main #delivery .slider .slick-track,
#main #takeaway .slider .slick-track {
  margin-left: initial;
}
#main #dine-in .slider__inner,
#main #delivery .slider__inner,
#main #takeaway .slider__inner {
  overflow: hidden;
}
#main #dine-in .slider__item,
#main #delivery .slider__item,
#main #takeaway .slider__item {
  display: inline-block;
  width: 33.33%;
  padding: 0px 10px;
}
#main #dine-in .slider__item .promo,
#main #delivery .slider__item .promo,
#main #takeaway .slider__item .promo {
  border-radius: 10px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-color: #000;
  opacity: 1;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}
#main #dine-in .slider__item .promo:hover,
#main #delivery .slider__item .promo:hover,
#main #takeaway .slider__item .promo:hover {
  opacity: 0.9;
}
#main #dine-in .slider__item .promo:before,
#main #delivery .slider__item .promo:before,
#main #takeaway .slider__item .promo:before {
  content: "";
  display: block;
  padding-bottom: 66.66%;
}
#main #dine-in .slider__prev,
#main #delivery .slider__prev,
#main #takeaway .slider__prev {
  cursor: pointer;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-20px);
  height: 40px;
  background-color: #fff;
  border: 1px solid #eeeeee;
  width: 60px;
  z-index: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  opacity: 1;
  transition: all 200ms ease-in-out;
}
@media all and (max-width: 800px) {
  #main #dine-in .slider__prev,
  #main #delivery .slider__prev,
  #main #takeaway .slider__prev {
    position: absolute;
    bottom: -20px;
    right: 59px;
    top: initial;
    transform: none;
    width: 50px;
    left: initial;
    border-radius: 10px 0 0 10px;
  }
}
#main #dine-in .slider__prev.slick-hidden,
#main #delivery .slider__prev.slick-hidden,
#main #takeaway .slider__prev.slick-hidden {
  display: none;
}
#main #dine-in .slider__prev.slick-disabled,
#main #delivery .slider__prev.slick-disabled,
#main #takeaway .slider__prev.slick-disabled {
  opacity: 0.0001;
}
@media all and (max-width: 800px) {
  #main #dine-in .slider__prev.slick-disabled,
  #main #delivery .slider__prev.slick-disabled,
  #main #takeaway .slider__prev.slick-disabled {
    opacity: 1;
    color: #dddddd;
  }
}
#main #dine-in .slider__next,
#main #delivery .slider__next,
#main #takeaway .slider__next {
  cursor: pointer;
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-20px);
  height: 40px;
  background-color: #fff;
  border: 1px solid #eeeeee;
  width: 60px;
  z-index: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  opacity: 1;
  transition: all 200ms ease-in-out;
}
@media all and (max-width: 800px) {
  #main #dine-in .slider__next,
  #main #delivery .slider__next,
  #main #takeaway .slider__next {
    position: absolute;
    bottom: -20px;
    right: 10px;
    top: initial;
    transform: none;
    width: 50px;
    left: initial;
    border-radius: 0 10px 10px 0;
  }
}
#main #dine-in .slider__next.slick-hidden,
#main #delivery .slider__next.slick-hidden,
#main #takeaway .slider__next.slick-hidden {
  display: none;
}
#main #dine-in .slider__next.slick-disabled,
#main #delivery .slider__next.slick-disabled,
#main #takeaway .slider__next.slick-disabled {
  opacity: 0.0001;
}
@media all and (max-width: 800px) {
  #main #dine-in .slider__next.slick-disabled,
  #main #delivery .slider__next.slick-disabled,
  #main #takeaway .slider__next.slick-disabled {
    opacity: 1;
    color: #dddddd;
  }
}
#main #dine-in .slider__dots,
#main #delivery .slider__dots,
#main #takeaway .slider__dots {
  position: absolute;
}
#main #dine-in .filters,
#main #delivery .filters,
#main #takeaway .filters {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
}
#main #dine-in .filters:empty,
#main #delivery .filters:empty,
#main #takeaway .filters:empty {
  display: none;
}
#main #dine-in .filters__item,
#main #delivery .filters__item,
#main #takeaway .filters__item {
  margin-right: 10px;
  padding: 2px 10px;
  font-weight: bold;
  color: #00b5db;
  border-radius: 10px;
  border: 2px solid #00b5db;
  white-space: nowrap;
  display: inline-block;
}
@media all and (max-width: 800px) {
  #main #dine-in .filters__item,
  #main #delivery .filters__item,
  #main #takeaway .filters__item {
    margin-bottom: 10px;
  }
}
#main #dine-in .filters__item a,
#main #delivery .filters__item a,
#main #takeaway .filters__item a {
  margin-left: 10px;
  vertical-align: middle;
  display: inline-block;
}
#main #dine-in .notfound,
#main #delivery .notfound,
#main #takeaway .notfound {
  text-align: center;
  width: 100%;
  padding: 40px 40px;
}
#main #dine-in .notfound .icon,
#main #delivery .notfound .icon,
#main #takeaway .notfound .icon {
  margin: auto;
}

#page .title {
  text-align: center;
  margin-bottom: 40px;
}

#footer {
  background-color: #222;
  color: #fff;
  padding: 15px 0px;
  font-weight: 400;
  font-size: 90%;
}
#footer .copyright {
  margin-bottom: 20px;
}
#footer .copyright:empty {
  display: none;
}
@media all and (max-width: 800px) {
  #footer .copyright {
    font-size: 12px;
    text-align: center;
    order: 2;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 800px) {
  #footer ul.social {
    text-align: center;
    margin-bottom: 10px;
  }
}
#footer ul.social li {
  display: inline-block;
  font-size: 24px;
  margin-right: 10px;
}
@media all and (max-width: 800px) {
  #footer ul.legal {
    text-align: center;
    margin-bottom: 0px;
  }
}
#footer ul.legal li {
  display: inline-block;
}
#footer ul.legal li:not(:last-child):after {
  content: "|";
  margin-left: 5px;
}

div[id^=popup] {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  text-align: center;
  z-index: 75;
}
div[id^=popup] .accept-button {
  margin-top: 30px;
  cursor: pointer;
}
@media all and (max-width: 800px) {
  div[id^=popup] .accept-button {
    width: 100%;
    max-width: 600px;
  }
}
div[id^=popup] .mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #000;
  opacity: 0.5;
}
div[id^=popup] .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 800px;
  max-width: calc(100% - 20px);
  height: auto;
  padding: 80px;
  border-radius: 10px;
  background-color: #fff;
}
@media all and (max-width: 800px) {
  div[id^=popup] .inner {
    max-height: calc(100% - 40px);
    padding: 40px 20px;
  }
}
div[id^=popup] .inner .closer {
  position: absolute;
  cursor: pointer;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 24px;
  top: 20px;
  right: 20px;
  opacity: 1;
  color: #222222;
  background-color: #eeeeee;
  border-radius: 10px;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}
@media all and (max-width: 500px) {
  div[id^=popup] .inner .closer {
    top: 10px;
    right: 10px;
  }
}
div[id^=popup] .inner .closer:hover {
  opacity: 0.5;
}
div[id^=popup] .inner .pretitle {
  margin-bottom: 5px;
}
div[id^=popup] .inner .title--medium {
  margin-bottom: 40px;
}
div[id^=popup] .inner .wysiwyg {
  margin-bottom: 40px;
}
@media all and (max-width: 500px) {
  div[id^=popup] .inner .wysiwyg {
    margin-bottom: 20px;
  }
}
div[id^=popup] .inner .form {
  margin-bottom: 20px;
}
@media all and (max-width: 500px) {
  div[id^=popup] .inner .form {
    margin-bottom: 20px;
  }
}
div[id^=popup] .inner .form .group {
  display: flex;
  margin-bottom: 20px;
}
@media all and (max-width: 800px) {
  div[id^=popup] .inner .form .group {
    display: block;
  }
}
div[id^=popup] .inner .form .location {
  margin-bottom: 0px;
}
div[id^=popup] .inner .form .location .link {
  font-size: 110%;
  color: #fff;
  text-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
div[id^=popup] .inner .form .input {
  position: relative;
  display: flex;
  align-items: center;
}
@media all and (max-width: 800px) {
  div[id^=popup] .inner .form .input {
    margin-bottom: 10px;
  }
}
div[id^=popup] .inner .form .input .fal,
div[id^=popup] .inner .form .input .fad {
  position: absolute;
  width: 40px;
  text-align: center;
  font-size: 20px;
  vertical-align: middle;
}
div[id^=popup] .inner .form .input input[type=text] {
  width: 600px;
  max-width: 100%;
  padding-left: 40px;
  margin-right: 0px;
}
div[id^=popup] .inner .form .input input[type=text]#popup-extra-address {
  padding-left: 20px;
}
div[id^=popup] .inner .extra-address-error {
  display: inline-block;
  color: #d90000;
  background-color: #fff3f3;
  font-weight: 400;
  font-size: 90%;
  margin-top: -10px;
  margin-bottom: 10px;
  padding: 5px 20px;
  border-radius: 5px;
}
div[id^=popup] .inner .response {
  display: inline-block;
}
div[id^=popup] .inner .response.success {
  color: green;
  background-color: #e2ffe2;
  font-weight: 400;
  font-size: 90%;
  margin-top: 20px;
  padding: 5px 20px;
  border-radius: 5px;
}
div[id^=popup] .inner .response.error {
  color: #d90000;
  background-color: #fff3f3;
  font-weight: 400;
  font-size: 90%;
  margin-top: 20px;
  padding: 5px 20px;
  border-radius: 5px;
}
div[id^=popup] .inner .response .list {
  border-top: 1px solid #dddddd;
  height: auto;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 0px;
}
div[id^=popup] .inner .response .list .list__item {
  display: flex;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media all and (max-width: 500px) {
  div[id^=popup] .inner .response .list .list__item {
    display: block;
  }
}
div[id^=popup] .inner .response .list .list__item .info {
  padding-right: 15px;
}
@media all and (max-width: 800px) {
  div[id^=popup] .inner .response .list .list__item .info {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 800px) {
  div[id^=popup] .inner .response .list .list__item .button {
    width: 100%;
    text-align: center;
  }
}
div[id^=popup] .inner .response .list .list__item .name {
  color: #222222;
  font-size: 20px;
}

#popup-customer-register .inner {
  max-width: 600px;
  padding: 40px;
  padding-top: 60px;
}
@media all and (max-width: 800px) {
  #popup-customer-register .inner {
    max-width: calc(100% - 25px);
  }
}
#popup-customer-register .inner * {
  max-width: 520px;
}
#popup-customer-register .inner .image {
  width: 85px;
  height: 85px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
  margin-bottom: 15px;
}
#popup-customer-register .inner .title {
  margin-bottom: 15px;
}
#popup-customer-register .inner .wysiwyg {
  margin-bottom: 30px;
  color: #000;
}
#popup-customer-register .inner .button {
  padding-top: 6px;
  padding-bottom: 6px;
}

#sidebar {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  text-align: center;
  z-index: 50;
}
#sidebar .mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #000;
  opacity: 0.5;
}
#sidebar .inner {
  width: 385px;
  height: 100%;
  max-width: 100vw;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
#sidebar .inner .top {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}
#sidebar .inner .top .title {
  display: block;
  line-height: 45px;
  font-size: 18px;
  font-weight: bold;
  color: #222222;
  margin-bottom: 0px;
}
#sidebar .inner .top .title .fal {
  width: 45px;
  margin-right: 10px;
  font-size: 22px;
}
#sidebar .inner .top .closer {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 24px;
  color: #000000;
  background-color: #eeeeee;
  border-radius: 10px;
  cursor: pointer;
}
#sidebar .inner .top .closer:hover {
  opacity: 0.5;
}
#sidebar .inner .content {
  padding: 15px 30px;
  text-align: left;
  max-height: calc(100vh - 164px);
  overflow: auto;
}
#sidebar .inner .content .group {
  margin-bottom: 30px;
}
#sidebar .inner .content .group__title {
  font-size: 14px;
  color: #444444;
  margin-bottom: 1em;
  text-transform: uppercase;
}
#sidebar .inner .content .group__title span {
  font-size: 14px;
  color: #444444;
  margin-left: 10px;
}
#sidebar .inner .content .group__content--inline {
  display: flex;
  flex-wrap: wrap;
}
#sidebar .inner .content .group__content--inline .option {
  width: 50%;
}
#sidebar .inner .content .group__content .option {
  display: block;
  position: relative;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}
#sidebar .inner .content .group__content .option input[type=radio] {
  cursor: pointer;
  margin-right: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 200ms ease-in-out;
}
#sidebar .inner .content .group__content .option input[type=radio]:hover {
  border: 1px solid #00b5db;
}
#sidebar .inner .content .group__content .option input[type=radio]:checked {
  border: 1px solid #00b5db;
}
#sidebar .inner .content .group__content .option input[type=radio]:checked + label:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  position: absolute;
  background-color: #01b5db;
  top: 7px;
  left: 4px;
}
#sidebar .inner .content .group__content .option input[type=checkbox] {
  cursor: pointer;
  margin-right: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 200ms ease-in-out;
}
#sidebar .inner .content .group__content .option input[type=checkbox]:hover {
  border: 1px solid #00b5db;
}
#sidebar .inner .content .group__content .option input[type=checkbox]:checked {
  border: 1px solid #00b5db;
}
#sidebar .inner .content .group__content .option input[type=checkbox]:checked + label:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  width: 18px;
  height: 18px;
  position: absolute;
  color: #01b5db;
  top: 3px;
  left: 3px;
  font-weight: bold;
  font-size: 12px;
}
#sidebar .inner .content .group__content .option label {
  cursor: pointer;
  display: inline-block;
}
#sidebar .inner .content .group__content .option--price {
  width: auto;
  margin-right: 5px;
}
#sidebar .inner .content .group__content .option--price input[type=checkbox] {
  position: absolute;
  width: 100%;
  height: 100%;
}
#sidebar .inner .content .group__content .option--price input[type=checkbox]:hover {
  border: 1px solid #00b5db;
}
#sidebar .inner .content .group__content .option--price input[type=checkbox]:checked {
  background-color: #00b5db;
  border: 1px solid #00b5db;
}
#sidebar .inner .content .group__content .option--price input[type=checkbox]:checked + label {
  color: #fff;
}
#sidebar .inner .content .group__content .option--price input[type=checkbox]:checked + label:before {
  display: none;
}
#sidebar .inner .content .group__content .option--price label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 4px 12px;
  line-height: 28px;
}
@media all and (max-width: 800px) {
  #sidebar .inner .content .group--collapsable {
    margin-bottom: 20px;
    padding-bottom: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
}
#sidebar .inner .content .group--collapsable .group__title {
  cursor: pointer;
}
#sidebar .inner .content .group--collapsable .group__title i {
  transform: rotate(-180deg);
}
#sidebar .inner .content .group--collapsable.active .group__title i {
  transform: rotate(0deg);
}
#sidebar .inner .bottom {
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding: 15px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
#sidebar .inner .bottom .button {
  color: #fff;
}
#sidebar .inner .bottom .button:focus, #sidebar .inner .bottom .button:active {
  outline: none;
  box-shadow: none;
}
#sidebar .inner .bottom .button:hover {
  opacity: 0.8;
}

#loader {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  text-align: center;
  background-color: #fff;
  z-index: 100;
}
#loader img {
  width: 250px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#loader .lds-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#loader .lds-ring div {
  border: 6px solid #000;
  border-color: #000 transparent transparent transparent;
}
#loader .loading_io_spinner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  overflow: hidden;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#loader .loading_io_spinner .loading_io {
  width: 200px;
  height: 200px;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
  display: flex;
  justify-content: center;
}
#loader .loading_io_spinner .loading_io div {
  position: absolute;
  border-width: 4px;
  border-style: solid;
  opacity: 1;
  border-radius: 50%;
  animation: loading_io 5.2631578947s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  box-sizing: content-box;
  border-color: #666;
}
#loader .loading_io_spinner .loading_io div:nth-child(2) {
  animation-delay: -2.6315789474s;
}
#loader .ldio-container {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#loader .ldio-container .ldio {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}
#loader .ldio-container .ldio div {
  box-sizing: content-box;
  position: absolute;
  border-width: 2px;
  border-style: solid;
  opacity: 1;
  border-radius: 50%;
  animation: ondas 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#loader .ldio-container .ldio div:nth-child(1) {
  border-color: #000000;
}
#loader .ldio-container .ldio div:nth-child(2) {
  border-color: #000000;
  animation-delay: -0.5s;
}

.page-dine-in #header .bottom {
  display: none;
}
.page-dine-in #header .top .address {
  display: none;
}
.page-dine-in .row-reorder {
  padding-top: 25px;
}
.page-dine-in .order-group {
  display: none;
}

@keyframes loading_io {
  0% {
    top: 96px;
    left: 96px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 18px;
    left: 18px;
    width: 156px;
    height: 156px;
    opacity: 0;
  }
}/*# sourceMappingURL=styles.css.map */