@font-face {
  font-family: Brands;
  src: url('../fonts/Brands.eot') format("embedded-opentype"), url('../fonts/Brands.woff') format("woff"), url('../fonts/Brands.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Light;
  src: url('../fonts/Light.eot') format("embedded-opentype"), url('../fonts/Light.woff') format("woff"), url('../fonts/Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Solid;
  src: url('../fonts/Solid.eot') format("embedded-opentype"), url('../fonts/Solid.woff') format("woff"), url('../fonts/Solid.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Regular;
  src: url('../fonts/Regular.eot') format("embedded-opentype"), url('../fonts/Regular.woff') format("woff"), url('../fonts/Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Hff thai dye;
  src: url('../fonts/HFF-Thai-Dye.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

:root {
  --primary: #d2623e;
  --light-text: #eee;
  --secondary: #a14a2e;
  --shadow: #0000008c;
  --dark-text: #333;
  --light-background: #dbe2ec;
  --light-border: #ffffff40;
  --dark-overlay: #4e322980;
  --dark-border: #63341599;
  --black: black;
  --white: white;
  --success: #588f61;
  --erorr: #8f5858;
  --message: #58658f;
  --light-overlay: #ffffff54;
}

body {
  background-color: var(--primary);
  color: var(--light-text);
  font-family: Source Sans Pro, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Source Serif Pro, sans-serif;
  font-size: 2em;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Source Serif Pro, sans-serif;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Source Serif Pro, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Source Serif Pro, sans-serif;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Source Serif Pro, sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Source Serif Pro, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

p {
  margin-bottom: 15px;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 30px;
}

img {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
}

label {
  margin-bottom: 0;
  font-weight: 400;
  display: block;
}

blockquote {
  border-left: 5px solid var(--primary);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.password-form-wrap {
  flex-direction: column;
}

.password-form-content {
  flex-direction: column;
  align-items: stretch;
}

.utility-wrap {
  background-image: url('../images/thai-background_1.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-start;
  align-items: stretch;
  height: 100vh;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.utility-content {
  background-color: var(--secondary);
  box-shadow: inset 0 0 4px 0 var(--shadow);
  color: #fff;
  width: 100%;
  max-width: 400px;
  padding: 150px 60px 60px;
  font-size: 1.4em;
  overflow: auto;
}

.form-parent {
  flex-wrap: wrap;
  margin: -10px;
  display: flex;
}

.form-child {
  flex: 1;
  display: flex;
}

.form-item {
  flex: 1;
  margin: 10px;
}

.button-wrap {
  margin: -5px;
  display: flex;
}

.button-wrap.utility {
  justify-content: center;
}

.button-wrap.hero {
  justify-content: flex-end;
}

.button-wrap.more {
  justify-content: center;
  margin-top: 60px;
}

.button-item {
  box-shadow: inset 0 0 2px 0 var(--shadow);
  color: var(--shadow);
  background-color: #d2623e80;
  border-radius: 50px;
  margin: 5px;
  padding: 10px 30px;
  transition: background-color .3s, color .3s;
}

.button-item:hover, .button-item.w--current {
  background-color: var(--primary);
  color: #fff;
}

.button-item.utility {
  flex: 1;
}

.button-item.hero2 {
  margin: 0;
}

.button-item.hero {
  box-shadow: 0 0 2px 0 var(--shadow);
  color: var(--dark-text);
  background-color: #fff;
  margin-top: 38px;
}

.button-item.hero:hover {
  background-color: var(--light-background);
}

.button-item.more {
  box-shadow: none;
  color: var(--secondary);
  background-color: #0000;
}

.icon {
  font-family: Light, sans-serif;
}

.icon.utility {
  font-size: 3em;
}

.icon.arrow {
  border: 1px none var(--light-border);
  background-color: var(--secondary);
  box-shadow: inset 0 0 4px 0 var(--shadow);
  color: var(--light-text);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  transition: background-color .3s, color .3s;
  display: flex;
}

.icon.arrow:hover {
  background-color: var(--shadow);
}

.icon.hours {
  opacity: .04;
  font-size: 390px;
  line-height: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(25%, 25%);
}

.icon.review {
  margin-left: 2px;
  margin-right: 2px;
  font-family: Solid, sans-serif;
  font-size: 14px;
}

.icon.quote {
  opacity: .15;
  font-size: 3em;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-46%, -42%);
}

.icon.footer {
  margin-right: 10px;
}

.icon.footer.facebook {
  font-family: Brands, sans-serif;
}

.icon.popup {
  color: #fff;
  cursor: pointer;
  font-size: 2em;
  line-height: 1;
  position: absolute;
  inset: 10px 10px auto auto;
}

.icon.instagram {
  margin-right: .5em;
  font-family: Brands, sans-serif;
}

.icon.after {
  margin-left: .5em;
}

.form-input {
  height: auto;
  margin-bottom: 0;
  padding: .5em .5em .5em 1em;
}

.utility-title {
  margin-bottom: 30px;
}

.section {
  padding: 90px 20px;
}

.section.menu {
  box-shadow: inset 0 0 3px 0 var(--shadow);
  background-image: url('../images/sushi-background.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-left: 90px;
  padding-right: 90px;
}

.section.short {
  min-height: 50vh;
}

.section.bg {
  background-image: linear-gradient(#0000005c, #0000005c), url('../images/bg.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.section.light {
  background-color: var(--light-background);
  color: var(--dark-text);
}

.container {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.container.menu {
  background-color: var(--light-background);
  box-shadow: 0 0 3px 0 var(--shadow);
  color: var(--dark-text);
  border-radius: 2px;
  padding: 60px;
}

.hero2-wrap {
  height: 100vh;
  display: flex;
}

.hero2-side-wrap {
  z-index: 2;
  background-image: linear-gradient(to bottom, var(--dark-overlay), var(--dark-overlay)), url('../images/thai-background.jpg');
  text-align: right;
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: wrap;
  flex: 3;
  place-content: stretch flex-end;
  align-items: stretch;
  padding: 45px 45px 120px;
  display: flex;
  position: relative;
}

.hero2-side-wrap.right {
  z-index: 1;
  background-image: linear-gradient(to bottom, var(--dark-overlay), var(--dark-overlay)), url('../images/sushi-background.jpg');
  text-align: left;
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  border-left: 10px solid #000;
  flex-grow: 2;
  justify-content: flex-start;
}

.hero2-side-content {
  align-self: flex-end;
  max-width: 300px;
}

.hero2-menu-wrap {
  width: 100%;
  font-family: Fontawesome;
  font-size: 3em;
  line-height: 1;
  display: flex;
}

.hero2-content-wrap {
  text-align: center;
  width: 100%;
  transform: translate(50%);
}

.hero2-logo-image {
  width: 500px;
  margin-bottom: 20px;
}

.hero2-subtitle {
  font-family: Source Serif Pro, sans-serif;
  font-size: 2em;
}

.hero-row {
  color: var(--light-text);
  height: 100vh;
  display: flex;
}

.hero-col {
  text-align: right;
  border-bottom-right-radius: 2px;
  flex: 3;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 90px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
  inset: 0;
  overflow: hidden;
}

.header-wrap {
  background-color: var(--primary);
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  display: flex;
}

.footer-wrap {
  display: flex;
}

.footer-right-wrap {
  background-image: linear-gradient(to right, var(--dark-overlay) -2%, #0000), url('../images/IMG_0194.JPG');
  box-shadow: inset 0 0 4px 0 var(--shadow);
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-top-left-radius: 2px;
  flex: 3;
  padding: 90px 30px;
  position: relative;
}

.footer-center-wrap {
  background-color: var(--primary);
  text-align: center;
  flex-direction: column;
  justify-content: space-around;
  padding: 30px 30px 60px;
}

.hero-background {
  background-image: linear-gradient(135deg, #0000, var(--dark-overlay)), url('../images/thai-background_1.jpg');
  box-shadow: inset 0 0 4px 0 var(--shadow);
  background-position: 0 0, 72%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  inset: 0;
}

.hero-background.right {
  background-image: linear-gradient(225deg, #0000, var(--dark-overlay) 100%, white), url('../images/sushi-background_1.jpg');
  background-position: 0 0, 19%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.hero-side-content {
  max-width: 270px;
  position: relative;
}

.header-contact-wrap {
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
  display: block;
}

.header-contact-item {
  color: var(--light-text);
  text-transform: none;
  margin-bottom: .25rem;
  display: block;
}

.header-contact-item.instagram {
  text-transform: none;
  justify-content: center;
  align-items: stretch;
  margin-top: 3rem;
  font-size: 1.1rem;
  display: flex;
}

.header-contact-separator {
  background-color: var(--light-border);
  width: 1px;
  margin-left: 15px;
  margin-right: 15px;
}

.logo-wrap {
  color: #fff;
  width: 270px;
  margin-top: 45px;
  margin-bottom: 45px;
  font-size: 3em;
}

.nav-wrap {
  justify-content: center;
  display: flex;
}

.nav-item {
  opacity: .75;
  color: #fff;
  text-transform: uppercase;
  font-size: 1em;
  transition: none;
  display: block;
}

.nav-item:hover, .nav-item.w--current {
  opacity: 1;
}

.arrow-wrap {
  justify-content: center;
  display: flex;
}

.arrow-wrap.footer {
  margin-top: 60px;
}

.footer-right-content {
  color: #fff;
  max-width: 270px;
}

.footer-contact-wrap {
  padding-left: 15px;
}

.footer-contact-item {
  align-items: flex-start;
  margin-bottom: 15px;
  display: flex;
}

.footer-contact-link {
  color: #fff;
  font-size: 1.1em;
}

.hero-right-wrap {
  border-bottom-left-radius: 2px;
  flex: 2;
  align-items: flex-end;
  padding-bottom: 90px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
  inset: 0;
  overflow: hidden;
}

.title-decoration {
  background-color: var(--light-border);
  flex: 1;
  height: 1px;
  margin-bottom: 10px;
  margin-left: -30px;
  transform: none;
}

.title-decoration.left {
  transform: translate(30px);
}

.title-decoration.dark {
  background-color: var(--dark-border);
}

.welcome-child {
  align-items: stretch;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.welcome-child.reverse {
  text-align: right;
  flex-direction: row-reverse;
}

.welcome-image {
  box-shadow: inset 0 0 3px 0 var(--shadow);
  background-image: url('../images/117413225_1731664673664161_7574833373433743138_n.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2px;
  width: 55%;
  height: 320px;
  display: none;
}

.welcome-image._2 {
  background-image: url('../images/Lokalene_mot_sjøfronten.jpg');
}

.welcome-content {
  flex: 1;
  padding: 30px;
}

.nav-decoration {
  background-color: var(--light-border);
  width: 1px;
  height: auto;
  margin-left: 10px;
  margin-right: 10px;
  display: block;
}

.menu-tab-wrap {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.menu-tab-menu {
  background-color: var(--secondary);
  box-shadow: inset 0 0 4px 0 var(--shadow);
  border-radius: 100px;
  justify-content: center;
  margin-bottom: 60px;
  padding: 8px;
  display: flex;
  overflow: hidden;
}

.menu-tab-item {
  color: #fff;
  background-color: #0000;
  border-radius: 100px;
  padding: 8px 20px;
}

.menu-tab-item.w--current {
  background-color: var(--primary);
  box-shadow: 0 0 4px 0 var(--shadow);
  opacity: 1;
}

.menu-tab-content {
  width: 100%;
}

.hero-side-text {
  margin-bottom: 30px;
  display: block;
}

.footer-left-wrap {
  border-top-right-radius: 2px;
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-map {
  box-shadow: inset 0 0 4px 0 var(--shadow);
  flex: 1;
  height: auto;
  overflow: hidden;
}

.welcome-parent {
  margin-top: -30px;
  margin-bottom: -30px;
}

.section-title {
  text-align: center;
  font-family: Sacramento, sans-serif;
  font-size: 3em;
  font-style: normal;
  font-weight: 400;
}

.subtitle-wrap {
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  font-family: Source Serif Pro, sans-serif;
  display: flex;
}

.subtitle-decoration {
  background-color: var(--light-border);
  width: 40px;
  height: 1px;
  margin-left: 10px;
  margin-right: 10px;
}

.subtitle-decoration.left {
  width: 30px;
}

.subtitle-decoration.right {
  width: 90px;
}

.subtitle-decoration.dark {
  background-color: var(--dark-border);
}

.title-wrap {
  color: #fff;
  margin-bottom: 45px;
}

.title-wrap.dark {
  color: var(--dark-text);
}

.thai-parent {
  flex-wrap: wrap;
}

.review-parent {
  flex-wrap: wrap;
  flex: 1;
  margin: -20px;
  display: flex;
}

.review-child {
  flex-wrap: nowrap;
  flex: 0 auto;
  align-items: stretch;
  width: 50%;
  display: flex;
}

.review-item {
  flex-wrap: wrap;
  flex: 1;
  align-items: stretch;
  margin: 20px;
}

.review-quote {
  box-shadow: none;
  margin-top: 9px;
  margin-bottom: 9px;
  font-style: italic;
  position: relative;
}

.review-wrap {
  flex: 0 auto;
  display: flex;
}

.review-name {
  text-transform: uppercase;
  align-items: flex-start;
  font-size: 15px;
  display: flex;
}

.main-sidebar {
  background-color: var(--secondary);
  box-shadow: inset 0 0 3px 0 var(--shadow);
  text-align: center;
  border-radius: 2px;
  flex-wrap: nowrap;
  flex: 0 auto;
  margin: 20px 20px 40px;
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}

.hours-item {
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
}

.hours-day {
  text-transform: uppercase;
  text-decoration: underline;
}

.hours-hour {
  font-size: 1.2em;
}

.hours-wrap {
  margin-top: 30px;
  position: relative;
}

.titlebar-wrap {
  background-image: url('../images/sushi-background.jpg');
  background-position: 0 0;
  background-size: cover;
  display: flex;
}

.titlebar-left-wrap {
  box-shadow: inset 0 0 4px 0 var(--shadow);
  border-bottom-right-radius: 2px;
  flex: 1;
}

.titlebar-right-wrap {
  box-shadow: inset 0 0 4px 0 var(--shadow);
  border-bottom-left-radius: 2px;
  flex: 3;
  align-items: flex-end;
  padding: 30px 30px 15px 45px;
  display: flex;
}

.order-wrap {
  background-color: var(--secondary);
  box-shadow: inset 0 0 4px 0 var(--shadow);
  border-radius: 2px;
  margin-bottom: 60px;
  padding: 60px;
  display: none;
}

.thai-child {
  margin-bottom: 30px;
}

.thai-item {
  margin-bottom: 45px;
  display: flex;
}

.thai-image {
  box-shadow: none;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 2px;
  flex: 0 auto;
  align-items: flex-start;
  width: 330px;
  height: 220px;
  padding: 15px;
  display: flex;
}

.thai-image.lunch {
  background-position: 50%;
  background-size: cover;
}

.thai-content {
  flex: 1;
  padding-left: 30px;
}

.thai-number {
  box-shadow: 0 0 4px 0 var(--shadow);
  color: var(--dark-text);
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 2px;
  padding: 5px 15px;
  display: flex;
}

.thai-title {
  flex: 1;
  font-size: 1.8em;
}

.thai-title-wrap {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.thai-price {
  margin-left: 15px;
  font-size: 1.8em;
  display: flex;
}

.thai-description {
  margin-bottom: 5px;
}

.thai-description ul {
  margin-bottom: 0;
}

.thai-english {
  margin-bottom: 0;
  font-style: italic;
}

.thai-english ul {
  margin-bottom: 0;
}

.thai-english.lunch {
  display: none;
}

.thai-extra {
  margin-top: 15px;
}

.thai-allergy-wrap {
  text-transform: uppercase;
  align-items: center;
  font-size: 15px;
  display: flex;
}

.thai-allergy-wrap.hide {
  display: none;
}

.thai-icon {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 100%;
  flex: none;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  display: block;
}

.thai-icon.remove {
  display: none;
}

.thai-icon-wrap {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  display: flex;
}

.thai-strength-wrap {
  align-items: center;
  display: flex;
}

.category-parent {
  flex-wrap: wrap;
  margin: -10px -10px 60px;
  display: flex;
}

.category-child {
  flex: 1;
  display: flex;
}

.category-child.hidden {
  display: none;
}

.category-item {
  box-shadow: inset 0 0 4px 0 var(--shadow);
  opacity: .6;
  color: #fff;
  background-image: url('../images/thai-background_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2px;
  flex: 1;
  height: 200px;
  margin: 5px;
  padding: 30px;
  transition: opacity .2s;
}

.category-item:hover, .category-item.w--current {
  opacity: 1;
}

.category-item._2 {
  background-image: url('../images/sushi-background_1.jpg');
}

.category-item._3 {
  background-image: url('../images/lunsjmeny.jpg');
}

.review-score {
  display: flex;
}

.thai-pieces {
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 600;
  display: flex;
}

.extra-item {
  border-bottom: 1px solid var(--light-border);
  justify-content: flex-start;
  margin-bottom: 5px;
  padding-bottom: 5px;
  font-size: 1.4em;
  display: flex;
}

.extra-title {
  flex: 1;
  margin-bottom: 0;
  display: flex;
}

.extra-price {
  display: flex;
}

.extra-english {
  font-style: italic;
}

.catering-item {
  margin-bottom: 30px;
}

.catering-image {
  box-shadow: inset 0 0 4px 0 var(--shadow);
  background-image: url('../images/thai-background_1.jpg');
  background-position: 0 0;
  background-size: 1250px;
  border-radius: 2px;
  align-items: flex-end;
  margin-bottom: 15px;
  padding: 60px 30px 15px;
}

.catering-content {
  margin-left: 30px;
}

.allergy-wrap {
  margin-top: 15px;
  margin-bottom: 30px;
  display: flex;
}

.allergy-item {
  flex: 1;
  align-items: center;
  margin: 5px;
  display: flex;
}

.allergy-parent {
  flex-wrap: wrap;
  display: flex;
}

.allergy-child {
  flex: 0 auto;
  width: 25%;
  display: flex;
}

.allergy-icon {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.allergy-text {
  font-style: italic;
}

.drink2-wrap {
  margin-bottom: 30px;
  font-size: 1.2em;
}

.drink2-item {
  border-bottom: 1px solid var(--light-border);
  margin-left: 30px;
  padding-top: 3px;
  padding-bottom: 3px;
  display: flex;
}

.drink2-item.inv {
  margin-left: 60px;
}

.drink2-heading {
  border-bottom: 3px solid var(--light-border);
  margin-bottom: 3px;
  padding-bottom: 3px;
  font-size: 1.2em;
  display: flex;
}

.drink2-title {
  flex: 1;
}

.drink2-price {
  display: flex;
}

.drink2-text {
  padding-left: 30px;
}

.drink2-text.gap {
  margin-top: 30px;
}

.allergy-wrapper {
  background-color: var(--secondary);
  box-shadow: inset 0 0 4px 0 var(--shadow);
  border-radius: 2px;
  margin-top: 45px;
  padding: 30px;
}

.catering-text {
  margin-top: 60px;
}

.catering-text a {
  color: #fff;
}

.menu-intro {
  margin-bottom: 30px;
  font-size: 1.2em;
}

.menu-intro.extra {
  margin-bottom: 50px;
  font-size: 1.1em;
}

.menu-intro.home {
  text-align: center;
}

.main-richtext a {
  color: #fff;
  text-decoration: underline;
}

.home-hidden a {
  color: #fff;
}

.main-parent {
  flex-wrap: wrap;
  margin: -20px;
  display: flex;
}

.main-child {
  flex: 1;
}

.main-child.sidebar {
  flex: 0 auto;
  width: 320px;
}

.main-content {
  margin: 20px;
}

.guru-wrap {
  justify-content: center;
  display: flex;
}

.test-body {
  padding-top: 86px;
}

.drink-table {
  display: flex;
}

.drink-row {
  flex-wrap: wrap;
  flex: 1;
  margin: -15px;
  display: flex;
}

.drink-column {
  flex: 0 100%;
}

.drink-cell {
  margin: 15px;
}

.drink-heading {
  border-bottom: 3px solid var(--light-border);
  margin-bottom: 15px;
  padding-bottom: 3px;
  font-family: Source Sans Pro, sans-serif;
}

.drink-item {
  border-bottom: 1px solid var(--light-border);
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3px;
  margin-left: 20px;
  padding-bottom: 3px;
  display: flex;
}

.drink-item.gap {
  margin-bottom: 15px;
}

.bg {
  background-image: url('../images/bg.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
}

.popup-wrap {
  z-index: 100;
  background-color: var(--shadow);
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
  position: fixed;
  inset: 0%;
}

.popup-content {
  background-color: var(--black);
  color: #e90505;
  text-align: center;
  border-radius: 5px;
  width: 100%;
  max-width: 960px;
  padding: 40px;
  position: relative;
  overflow: scroll;
  box-shadow: 0 0 10px #00000096;
}

.popup-image {
  margin-top: 60px;
}

.info-body {
  background-color: var(--black);
  height: 100%;
  padding: 20px;
  display: flex;
}

.info-body.tight {
  padding: 0;
}

.info-page {
  flex: 1;
  align-items: center;
  display: flex;
}

.background-video {
  flex: 1;
}

.card-table {
  flex-wrap: wrap;
  display: flex;
}

.card-table.menu {
  margin-top: 60px;
}

.card-row {
  flex-wrap: wrap;
  flex: 1;
  margin: -15px;
  display: flex;
}

.card-row.menu {
  justify-content: center;
}

.card-col {
  flex: 0 33.33%;
  display: flex;
}

.card-cell {
  color: var(--dark-text);
  flex: 1;
  margin: 15px;
  display: block;
  position: relative;
}

.background-wrap {
  position: absolute;
  inset: 0%;
}

.menu-card-image {
  box-shadow: 0 0 3px 0 var(--dark-border);
  background-color: #fff;
  border-radius: 2px;
  height: 12rem;
  position: relative;
}

.menu-card-background {
  object-fit: contain;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  padding: 10px;
  position: absolute;
  inset: 0%;
}

.card-heading {
  margin-bottom: 5px;
  font-family: Source Serif Pro, sans-serif;
  font-size: 1.4em;
}

.intro-text {
  margin-bottom: 2rem;
}

.arrow-content {
  border: 1px solid var(--dark-overlay);
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 3px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 10px 20px;
  display: flex;
}

.drink-subheading {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.2em;
}

.header-contact-line {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.opening-hours {
  text-transform: uppercase;
  margin-top: 30px;
}

html.w-mod-js [data-ix="hero-left-side"] {
  opacity: 0;
  transform: translate(-60px);
}

html.w-mod-js [data-ix="hero-right-side"] {
  opacity: 0;
  transform: translate(60px);
}

@media screen and (max-width: 991px) {
  .hero-row {
    flex-flow: column;
    height: auto;
  }

  .hero-col {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .header-wrap {
    order: -1;
  }

  .footer-wrap {
    display: block;
  }

  .footer-right-wrap {
    clear: none;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .header-content-wrap {
    margin-bottom: 61px;
  }

  .arrow-wrap {
    margin-top: 50px;
  }

  .hero-right-wrap {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-left-wrap {
    height: 300px;
  }

  .thai-item {
    display: block;
  }

  .thai-image {
    width: auto;
  }

  .thai-content {
    padding-left: 0;
  }

  .main-child.sidebar {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .utility-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .utility-content {
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .section.menu {
    padding-left: 45px;
    padding-right: 45px;
  }

  .container.menu {
    padding: 30px;
  }

  .welcome-child {
    display: block;
  }

  .welcome-image, .welcome-image._2 {
    width: auto;
  }

  .welcome-content {
    padding-top: 30px;
  }

  .menu-tab-menu {
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 2.5em;
  }

  .titlebar-wrap {
    flex-wrap: wrap;
  }

  .catering-image {
    padding: 15px;
  }

  .allergy-child {
    width: 50%;
  }

  .drink2-item.inv {
    margin-left: 30px;
  }

  .popup-content {
    padding: 20px;
  }

  .popup-image {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .section.menu {
    padding: 60px 30px;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .nav-item {
    flex: 0 100%;
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .nav-decoration {
    display: none;
  }

  .review-child, .allergy-child {
    width: 100%;
  }
}


@font-face {
  font-family: 'Brands';
  src: url('../fonts/Brands.eot') format('embedded-opentype'), url('../fonts/Brands.woff') format('woff'), url('../fonts/Brands.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Light';
  src: url('../fonts/Light.eot') format('embedded-opentype'), url('../fonts/Light.woff') format('woff'), url('../fonts/Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Solid';
  src: url('../fonts/Solid.eot') format('embedded-opentype'), url('../fonts/Solid.woff') format('woff'), url('../fonts/Solid.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Regular';
  src: url('../fonts/Regular.eot') format('embedded-opentype'), url('../fonts/Regular.woff') format('woff'), url('../fonts/Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Hff thai dye';
  src: url('../fonts/HFF-Thai-Dye.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}