body {
    margin: 0px;
    overflow: hidden;
    font-family: "PitchWeb";
    line-height: 1.5em;
    font-size: 12px;
    background: #000;
}

p {
    margin: 0px;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
}

img {
    max-width: 100%;
}

.superscript {
    font-size: 9px;
    top: -3px;
    left: 1px;
    position: relative;
}

.section--invert a {
    color: #fff;
    text-decoration: none;
}

.no-margin {
    margin: 0px !important;
}

.on-tablet,
.on-mobile {
    display: none;
}

[v-cloak] {
    display: none !important;
}

.border--left-black {
    border-left: 1px solid #000 !important;
}

.border--left-light {
    border-left: 1px solid #e6e4d9 !important;
}

.error--text a[href] {
    text-decoration: underline;
}

.bold {
    font-weight: bold;
}

.fs-15 {
    font-size: 15px;
}

/* animation */
.fade {
    opacity: 1;
    transition: opacity 0.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out;
    -webkit-transition: opacity 0.25s ease-in-out;
}

.fade:hover {
    opacity: 0.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 20px 0px;
}

h1 {
}

h2 {
    font-family: "big-caslon-fb", "serif";
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    letter-spacing: 0.4em;
    line-height: 0.15em;
}

h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-family: "big-caslon-fb", "serif";
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    letter-spacing: 0.3em;
    line-height: 1.4em;
}

h4 {
    font-family: "PitchWeb", "serif";
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.3em;
    line-height: 1.5em;
}

/* grid system */
.d-50 {
    width: 50%;
}

.d-33 {
    /* width: 33.333%; */
}

/* container css */
.cont {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
}

.cont--left,
.cont--right {
    position: absolute;
    -webkit-overflow-scrolling: touch;
    top: 0px;
    bottom: 0px;
    overflow-y: scroll;
    box-sizing: content-box;
    background: #000;
}

.cont--left {
    left: 0px;
    right: 50vw;
    margin-right: -17px;
}

.cont--left.mozilla-for-mac {
    margin-right: 0px;
}

.cont--right {
    right: -17px;
    left: 50%;
    z-index: 1;
}

.cont--right .section {
    border-left: 1px solid transparent;
}

/* section css */
.section {
    padding: 4em;
    position: relative;
    background: #fffdf1;
    margin-bottom: -1px;
}

.section .section--header {
    text-transform: uppercase;
}

.separator {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    margin: 0px 0px 3em;
    border-bottom: 1px solid #000;
}

.section.section--invert .separator {
    border-color: #fff;
}

.section .section--description {
    margin: 20px 0px;
    max-width: 85%;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.section .section--image {
    max-width: 100%;
    width: 100%;
}

/* section invert css */
.section.section--invert {
    background-color: #004c4f;
    color: #fffdf1;
}

/* reservation banner */
.banner--reservation {
    position: fixed;
    z-index: 1;
    bottom: 10px;
    left: 50%;
    margin-left: -5.6em;
}

/* reservation button square */
.desktop--reservation-square {
    position: fixed;
    bottom: 0px;
    z-index: 2;
    text-align: center;
    visibility: visible;
    opacity: 1;
    width: 180px;
    margin: 0px auto;
    left: 0px;
    right: 0px;
    display: flex;
    height: 15%;
    align-items: center;
    transition: opacity 0.5s, visibility 0.5s;
    -moz-transition: opacity 0.5s, visibility 0.5s;
    -webkit-transition: opacity 0.5s, visibility 0.5s;
}

.desktop--reservation-square.hidden {
    visibility: hidden;
    opacity: 0;
}

.desktop--reservation-square > .button {
    padding: 10px 15px;
}

/* reservation button circle */
.desktop--reservation-circle {
    position: fixed;
    z-index: 2;
    margin: 0px auto;
    left: 0px;
    right: 0px;
    width: 110px;
    height: 110px;
    font-weight: 100;
    top: 5%;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s, visibility 0.5s;
    -moz-transition: opacity 0.5s, visibility 0.5s;
    -webkit-transition: opacity 0.5s, visibility 0.5s;
}

.desktop--reservation-circle.hidden {
    visibility: hidden;
    opacity: 0;
}

.reservation--button-circle {
    background: #004c4f;
    position: relative;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    border: 0px;
    display: block;
}

.reservation--button-circle > img.button--logo {
    position: absolute;
    width: 46%;
    top: 43px;
    margin: 0px auto;
    left: 2px;
    right: 0px;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.reservation--button-circle > img.circle--text {
    -webkit-animation: rotating 15s linear infinite;
    -moz-animation: rotating 15s linear infinite;
    -ms-animation: rotating 15s linear infinite;
    -o-animation: rotating 15s linear infinite;
    animation: rotating 15s linear infinite;
    width: 105%;
    max-width: 105%;
    margin: -3px;
}

/* desktop banner */
.desktop--banner {
    display: flex;
    position: absolute;
    top: 10%;
    bottom: 15%;
    align-items: center;
    z-index: 1;
}

.desktop--banner .logo {
    height: 100%;
}

.cont--left .desktop--banner {
    right: 0px;
    justify-content: right;
    text-align: right;
}

.cont--right .desktop--banner {
    left: 0px;
}

/* home page css */
.home .home--slideshow {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 0;
}

.home .home--slideshow .home--slideshow-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.taste,
.culture {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*
.taste {
    background-image: url('./assets/images/taste/hero.jpg');
}

.culture {
     background-image: url('./assets/images/culture/hero.jpg'); 
}*/

.taste .taste--header,
.culture .culture--header {
    margin: 0px;
    z-index: 1;
    line-height: 1em;
}

.taste .taste--header a,
.culture .culture--header a {
    padding: 0;
    color: #fff;
    text-decoration: none;
}

/* the space */
.space.section a {
    border-bottom: 1px solid #fff;
}

.space .space--slideshow {
    position: relative;
    margin-top: 7em;
}

.space .space--slideshow .swiper-wrapper {
    height: intrinsic; /* Safari/WebKit uses a non-standard name */
    height: -moz-max-content; /* Firefox/Gecko */
    height: -webkit-max-content; /* Chrome */
}

.space .space--slideshow .space--slideshow-item > img {
    width: 100%;
}

.space--slideshow .space--slideshow-prev,
.space--slideshow .space--slideshow-next {
    background: unset;
}

.space--slideshow .space--slideshow-next .space--slideshow-next-line1 {
    border-left: 1px solid #fff;
    height: 30px;
    width: 1px;
    right: 25px;
    position: absolute;
    transform: rotate(90deg);
}

.space--slideshow .space--slideshow-next .space--slideshow-next-line2 {
    border-left: 1px solid #fff;
    height: 10px;
    width: 1px;
    position: absolute;
    transform: rotate(45deg);
    top: 14px;
    right: 13px;
}

.space--slideshow .space--slideshow-next .space--slideshow-next-line3 {
    border-left: 1px solid #fff;
    height: 10px;
    width: 1px;
    position: absolute;
    transform: rotate(-45deg);
    top: 6px;
    right: 13px;
}

.space--slideshow .space--slideshow-prev .space--slideshow-prev-line1 {
    border-left: 1px solid #fff;
    height: 30px;
    width: 1px;
    left: 25px;
    position: absolute;
    transform: rotate(90deg);
}

.space--slideshow .space--slideshow-prev .space--slideshow-prev-line2 {
    border-left: 1px solid #fff;
    height: 10px;
    width: 1px;
    position: absolute;
    transform: rotate(-45deg);
    top: 13px;
    left: 13px;
}

.space--slideshow .space--slideshow-prev .space--slideshow-prev-line3 {
    border-left: 1px solid #fff;
    height: 10px;
    width: 1px;
    position: absolute;
    transform: rotate(45deg);
    top: 7px;
    left: 13px;
}

.space .space--slideshow .space--slideshow-more {
    position: absolute;
    top: -20px;
    right: 14px;
}

/* whats on css */
.whatson {
    padding-bottom: 20px;
}

.whatson .whatson--grid ul {
    margin: 0px;
    padding: 0px;
}

.whatson .whatson--grid li {
    list-style-type: none;
    position: relative;
    display: inline-block;
}

.whatson .whatson--grid .whatson--grid-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20em;
    background: #000;
}

.whatson .whatson--grid .whatson--grid-container:hover .whatson--grid-bg {
    opacity: 1;
}

.whatson .whatson--grid .whatson--grid-content {
    width: 55%;
    z-index: 1;
    text-align: center;
}

.whatson .whatson--grid .whatson--grid-content span {
    text-decoration: none;
    text-transform: uppercase;
    color: #fffdf1;
    font-family: "big-caslon-fb", "serif";
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.3em;
    line-height: 1.5em;
}

.whatson .whatson--grid.collapsed .on-expanded,
.whatson .whatson--grid.expanded .on-collapsed {
    display: none;
}

.whatson .whatson--grid .whatson--grid-bg {
    opacity: 0.7;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 0.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out;
    -webkit-transition: opacity 0.25s ease-in-out;
}

.whatson .whatson--grid .whatson--more {
    margin-top: 20px;
    text-decoration: underline;
    opacity: 1;
    transition: opacity 0.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out;
    -webkit-transition: opacity 0.25s ease-in-out;
}

.whatson .whatson--grid.show-all .whatson--more {
    opacity: 0;
}

.whatson .whatson--grid:not(.show-all) ul > li:nth-child(n + 9) {
    display: none;
}

/* menu container */
.menu--cont {
    display: flex;
    flex-flow: row wrap;
}

.menu--cont > div {
    flex: 0 1 50%;
}

.menu--cont .menu--cont-left > div {
    padding-right: 1em;
}

.menu--cont .menu--cont-right > div {
    padding-left: 1em;
}

.menu .menu--cont-left > div,
.menu .menu--cont-right > div {
    margin-bottom: 2em;
}

.menu--cont .menu--list {
    padding: 0px;
    margin: 0px;
}

.menu--cont .menu--list > li {
    list-style-type: none;
    padding: 5px 0px;
    position: relative;
}

.menu--cont .menu--list .menu--list-title {
    /* Remove upper case for the vue food object to become case sensitive */
    /* text-transform: uppercase; */
    font-weight: bold;
    padding-right: 6em;
}

.menu--cont .menu--list .menu--list-price {
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 5px;
}

.menu--cont .menu--list .menu--list-description {
    padding: 2px 0px;
    max-width: 75%;
}

.menu--header {
    font-family: "big-caslon-fb";
}

.menu--image.section {
    padding: 4em;
    position: relative;
}

.menu--description,
.menu--list {
    font-size: 13px;
}

.menu--note {
    font-size: 12px;
    padding-left: 1em;
}
.menu--note > div {
    padding-top: 1em;
    border-top: 1px solid #333;
}

.menu h4 {
    padding: 0.3em 0em 0.5em;
}

.menu .menu--description {
    padding-bottom: 1em;
}

.menu .separator,
.drinks .separator {
    margin-bottom: 1em;
}

/* reservations */
.reservations .reservations--cont {
    background: #ffdcdb;
    color: #000;
    padding: 4em 2em;
}

.reservations .reservations--cont .reservations--text a:not(.button) {
    font-weight: bold;
}

.reservations h3 {
    margin-top: 0em;
    padding-top: 0em;
}
.reservations--text {
    font-size: 15px;
    letter-spacing: 0.02em;
}
.giftcard--text {
    font-size: 15px;
    letter-spacing: 0.02em;
    margin-top: 30px;
}
/* button */
.button {
    border: 1px solid #004c4f;
    background: transparent;
    padding: 8px 8px 7px;
    min-width: 90px;
    color: #004c4f;
    font-family: "PitchWeb";
    font-size: 15px;
    letter-spacing: 0.2em;
    transition: background 0.5s, color 0.5s;
    -moz-transition: background 0.5s, color 0.5s;
    -webkit-transition: background 0.5s, color 0.5s;
}

.button.button--black {
    border: 1px solid #000;
    color: #000;
}

.button.button--tertiary {
    border: 1px solid #5b9894;
    color: #5b9894;
}

.button.button--tertiary.button--invert {
    border: 1px solid #fff;
    color: #fff;
}

.button.button--tertiary.button--invert:hover {
    cursor: pointer;
    background: #fff;
    color: #5b9894;
    border-color: #5b9894;
}

.button.button--black:hover {
    color: #fff;
    background: #000;
}

.button.button--primary.button--invert {
    border: 1px solid #fff;
    color: #fff;
}

.button.button--primary.button--invert:hover {
    background: #fff;
    color: #004c4f;
    cursor: pointer;
}

/* placeholder */
::-webkit-input-placeholder {
    font-family: "PitchWeb";
    font-size: 12px;
    letter-spacing: 0.2em;
}

::-moz-placeholder {
    font-family: "PitchWeb";
    font-size: 12px;
    letter-spacing: 0.2em;
}

:-ms-input-placeholder {
    font-family: "PitchWeb";
    font-size: 12px;
    letter-spacing: 0.2em;
}

:-moz-placeholder {
    font-family: "PitchWeb";
    font-size: 12px;
    letter-spacing: 0.2em;
}

/* footer */
.footer {
    padding: 3em;
}

.footer .footer--logo {
    padding: 15px 0px;
}

.footer .footer--content {
    display: flex;
    flex-flow: row wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.footer .footer--newsletter .footer--newsletter-input {
    display: flex;
}

.footer .footer--content > div {
    padding: 0px 10px;
    flex: 1 0 33%;
    flex-basis: 0;
}

.footer .footer--content .footer--content-info {
    margin-top: 20px;
}

.footer .footer--newsletter {
    margin-top: 4em;
}

.footer .footer--newsletter .footer--newsletter-header {
    font-family: "PitchWeb";
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 1em;
    font-size: 12px;
}

.footer .footer--newsletter .footer--newsletter-input > input {
    padding: 4px 8px;
    margin-right: 20px;
    width: 100%;
}

.footer .footer--content h4 {
    padding-bottom: 0.5em;
}

/* social icon */
.social--icon-list {
    padding: 0px;
    margin: 0px;
}

.social--icon-list .social--icon-item {
    list-style-type: none;
    padding-right: 5px;
    display: inline-block;
}

.social--icon-list .social--icon-item img {
    height: 15px;
}

/* instagram feed */
.instagram--feed {
    padding: 0px;
    margin: 0px -0.7em;
}

.instagram--feed .instagram--feed-list {
    list-style-type: none;
    display: inline-block;
    width: 100%;
}

.instagram--feed .box-small.instagram--feed-list {
    width: 50%;
}

.instagram--feed .instagram--feed-list .instagram--feed-container {
    width: 100%;
    background-size: cover;
    background-position: center;
}

.instagram--feed .instagram--feed-list .instagram--feed-container:before {
    content: "";
    display: block;
    padding-top: 100%;
}

/* slick */
.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
}

.slick-arrow:hover {
    cursor: pointer;
}

.slick-arrow.slick-next {
    right: 10px;
}

.slick-arrow.slick-prev {
    left: 10px;
}

/* navigation */
.nav {
    position: fixed;
    color: #fff;
    margin: 4em;
    z-index: 999;
}

.nav .nav--list {
    margin: 0px;
    padding: 0px;
}

.nav .nav--item {
    list-style-type: none;
    display: inline-block;
    border-right: 1px solid #fff;
}

.nav .nav--item:last-child {
    border: 0px;
}

.nav .nav--item > a {
    display: block;
    font-size: 15px;
    padding: 0px 10px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.nav.color--dark .nav--item > a,
.nav.color--dark .nav--item {
    color: #000;
    border-color: #000;
}

.nav .nav--item .nav--icon-container {
    position: absolute;
    top: -2em;
    left: 0px;
    right: 0px;
    text-align: center;
}

.nav .nav--item .nav--item-icon {
    height: 1.5em;
}

.nav .nav--icon-container {
    display: none;
}

.nav[selected-section="ourstory"] [section-name="ourstory"],
.nav[selected-section="thespace"] [section-name="thespace"],
.nav[selected-section="findus"] [section-name="findus"],
.nav[selected-section="whatson"] [section-name="whatson"],
.nav[selected-section="reservation"] [section-name="reservation"],
.nav[selected-section="food"] [section-name="food"],
.nav[selected-section="drinks"] [section-name="drinks"] {
    display: block;
}

.nav .nav--item > a:hover [section-name] {
    display: block;
}

.nav.color--dark .nav--item .nav--item-icon.nav--icon-light {
    display: none;
}

.nav.color--light .nav--item .nav--item-icon.nav--icon-dark {
    display: none;
}

.nav.culture--nav {
    left: 0px;
}

.nav.taste--nav {
    right: 0px;
}

/* mobile nav */
nav.mnav {
    display: none;
    z-index: 999;
}

/* custom sepcific css */
.baja--food-ring {
    position: absolute;
    top: 5em;
    left: 5em;
    width: 15%;
}

.baja-baja-baja {
    position: absolute;
    bottom: -10%;
    right: 65px;
    width: 20%;
    z-index: 1;
}

.baja--drinks-orale {
    position: absolute;
    bottom: 5em;
    right: 5em;
    width: 20%;
}

#map {
    width: 100%;
    height: 30vw;
}

#menuSection2 > p {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    font-size: 13px;
}

.menu--cocktails2 {
    margin-top: 5.2em;
}

#thespace {
    padding-bottom: 7em;
}

.call--vibe-ring {
    position: absolute;
    top: 8em;
    right: 5.5em;
    width: 10em;
}

.drinks .drinks--more {
    margin-top: 2em;
    font-size: 13px;
}

.drinks .drinks--more > a {
    border-bottom: 1px solid #000;
}

/* image rotate animation */
@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

img.rotate {
    -webkit-animation: rotating 15s linear infinite;
    -moz-animation: rotating 15s linear infinite;
    -ms-animation: rotating 15s linear infinite;
    -o-animation: rotating 15s linear infinite;
    animation: rotating 15s linear infinite;
}

/* on load animation */
.animate--onload {
    animation-name: hide, fadeInOnLoad;
    animation-duration: 2s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    -moz-animation-name: hide, fadeInOnLoad;
    -moz-animation-duration: 2s;
    -moz-animation-timing-function: ease-in;
    -moz-animation-iteration-count: 1;
    -webkit-animation-name: hide, fadeInOnLoad;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-iteration-count: 1;
    -o-animation-name: hide, fadeInOnLoad;
    -o-animation-duration: 2s;
    -o-animation-timing-function: ease-in;
    -o-animation-iteration-count: 1;
    opacity: 1;
}

.animate--onload.desktop--banner,
.animate--onload.tablet--banner {
    animation-delay: 0s, 0s;
    -moz-animation-delay: 0s, 0s;
    -webkit-animation-delay: 0s, 0s;
    -o-animation-delay: 0s, 0s;
}

.animate--onload.culture--header,
.animate--onload.taste--header,
nav.animate--onload,
.animate--onload.reservation--button {
    animation-delay: 0s, 1s;
    -moz-animation-delay: 0s, 1s;
    -webkit-animation-delay: 0s, 1s;
    -o-animation-delay: 0s, 1s;
}

.animate--onload.home--slideshow {
    animation-delay: 0s, 2s;
    -moz-animation-delay: 0s, 2s;
    -webkit-animation-delay: 0s, 2s;
    -o-animation-delay: 0s, 2s;
}

@keyframes hide {
    from {
        opacity: 0;
    }
    to {
        opacity: 0;
    }
}
@-moz-keyframes hide {
    from {
        opacity: 0;
    }
    to {
        opacity: 0;
    }
}
@-webkit-keyframes hide {
    from {
        opacity: 0;
    }
    to {
        opacity: 0;
    }
}
@-o-keyframes hide {
    from {
        opacity: 0;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeInOnLoad {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes fadeInOnLoad {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeInOnLoad {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes fadeInOnLoad {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* force show scrollbar on mac */
@media only screen and (min-width: 1080px) {
    .force-scrollbar::-webkit-scrollbar {
        -webkit-appearance: none;
    }

    .force-scrollbar::-webkit-scrollbar:vertical {
        width: 17px;
    }

    .force-scrollbar::-webkit-scrollbar:horizontal {
        height: 17px;
    }

    .force-scrollbar::-webkit-scrollbar-thumb {
        border-radius: 8px;
        border: 2px solid white; /* should match background, can't be transparent */
        background-color: rgba(0, 0, 0, 0.5);
    }

    .force-scrollbar::-webkit-scrollbar-track {
        background-color: #fff;
        border-radius: 8px;
    }
}
