* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--black);
  scroll-margin-top: 148px;
  transition: 0.3s color;
  -webkit-tap-highlight-color: transparent;
}

input {
  scroll-margin-top: 200px;
}

@font-face {
  font-family: "dollarbill";
  src: url("../fonts/Dollar\ Bill.ttf");
}

:root,
:root.light {
  --black: #000;
  --white: #fff;
  --transparent-white: #ffffffee;
  --transparent-white: #fffffff8;
  --hover: rgba(245, 245, 245, 0.897);
  --minimenu: #fff;
  --minimenu-mobile: #fff;
  --active: rgb(217 217 217 / 0.897);
  --modalbg: rgba(255, 255, 255, 0.8);
  --arrow-filter: none;
  --drink-shadow: none;
  --drinkbox: white;
  --border-filter: none;
  --newsletter-border-filter: invert(1);
  --newsletter-line-filter: white;
  --marblebg: url("../images/marble-black.png");
  --buttonsBG: white;
  --buttonsTX: black;
  --footerstroke: rgb(0, 0, 0) 3px 0px 0px,
    rgb(0, 0, 0) 2.83487px 0.981584px 0px, rgb(0, 0, 0) 2.35766px 1.85511px 0px,
    rgb(0, 0, 0) 1.62091px 2.52441px 0px, rgb(0, 0, 0) 0.705713px 2.91581px 0px,
    rgb(0, 0, 0) -0.287171px 2.98622px 0px,
    rgb(0, 0, 0) -1.24844px 2.72789px 0px, rgb(0, 0, 0) -2.07227px 2.16926px 0px,
    rgb(0, 0, 0) -2.66798px 1.37182px 0px, rgb(0, 0, 0) -2.96998px 0.42336px 0px,
    rgb(0, 0, 0) -2.94502px -0.571704px 0px,
    rgb(0, 0, 0) -2.59586px -1.50383px 0px,
    rgb(0, 0, 0) -1.96093px -2.27041px 0px,
    rgb(0, 0, 0) -1.11013px -2.78704px 0px,
    rgb(0, 0, 0) -0.137119px -2.99686px 0px,
    rgb(0, 0, 0) 0.850987px -2.87677px 0px,
    rgb(0, 0, 0) 1.74541px -2.43999px 0px, rgb(0, 0, 0) 2.44769px -1.73459px 0px,
    rgb(0, 0, 0) 2.88051px -0.838247px 0px;
}

:root.dark {
  --black: #f5f5f5;
  --white: #000;
  --transparent-white: #222222ee;
  --transparent-white: rgba(34, 34, 34, 0.973);
  --hover: rgba(29, 28, 28, 0.897);
  --minimenu: var(--hover);
  --arrow: brightness(0) saturate(100%) invert(100%) sepia(64%) saturate(0%)
    hue-rotate(250deg) brightness(110%) contrast(101%);
  --minimenu-mobile: #1f1e1e;
  --active: rgba(29, 28, 28, 0.897);
  --modalbg: rgba(29, 29, 29, 0.8);
  --arrow-filter: invert(1);
  --drinkbox: #1f1e1e;
  --border-filter: invert(1);
  --newsletter-border-filter: none;
  --newsletter-line-filter: black;
  --marblebg: url("../images/marble-white.png");
  /* --drink-shadow: 10px 10px 150px 100px rgba(0,0,0,0.8) inset; */
  --buttonsBG: #1f1e1e;
  --buttonsTX: white;
  --footerstroke: rgb(255, 255, 255) 3px 0px 0px,
    rgb(255, 255, 255) 2.83487px 0.981584px 0px,
    rgb(255, 255, 255) 2.35766px 1.85511px 0px,
    rgb(255, 255, 255) 1.62091px 2.52441px 0px,
    rgb(255, 255, 255) 0.705713px 2.91581px 0px,
    rgb(255, 255, 255) -0.287171px 2.98622px 0px,
    rgb(255, 255, 255) -1.24844px 2.72789px 0px,
    rgb(255, 255, 255) -2.07227px 2.16926px 0px,
    rgb(255, 255, 255) -2.66798px 1.37182px 0px,
    rgb(255, 255, 255) -2.96998px 0.42336px 0px,
    rgb(255, 255, 255) -2.94502px -0.571704px 0px,
    rgb(255, 255, 255) -2.59586px -1.50383px 0px,
    rgb(255, 255, 255) -1.96093px -2.27041px 0px,
    rgb(255, 255, 255) -1.11013px -2.78704px 0px,
    rgb(255, 255, 255) -0.137119px -2.99686px 0px,
    rgb(255, 255, 255) 0.850987px -2.87677px 0px,
    rgb(255, 255, 255) 1.74541px -2.43999px 0px,
    rgb(255, 255, 255) 2.44769px -1.73459px 0px,
    rgb(255, 255, 255) 2.88051px -0.838247px 0px;
}

input,
select,
option {
  color: black;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #494949;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #e7c23e;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #fdd236;
}

html {
  background-color: white;
  scroll-behavior: smooth;
}

.no-scroll-behavior {
  scroll-behavior: auto;
}

body {
  font-family: "dollarbill";
  background-image: url("../images/THE_SILVER_GLASS_MOBILE_BAR-02.webp");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: center;
  margin: 0 auto;
  scroll-behavior: smooth;
}

main {
  background-color: var(--transparent-white);
}

p {
  font-family: "Times New Roman", Times, serif;
  font-size: 21px;
  margin-bottom: 30px;
}

label {
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
}

h1,
h2,
h3 {
  font-weight: 100;
  margin-bottom: 10px;
}

h2 {
  font-size: 48px;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.socials a {
  background-color: #e1e1e1 !important;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  padding: 0 !important;
  font-size: 0 !important;
  transition: 0.3s;
}

.socials a:after {
  display: none !important;
}

.socials a:hover {
  filter: brightness(0.6);
}

.socials img {
  width: 45px !important;
  padding: 12px;
  height: 45px !important;
  filter: brightness(0) saturate(100%) invert(0) sepia(85%) saturate(16%)
    hue-rotate(224deg) brightness(104%) contrast(104%);
}

main {
  padding-top: 160px;
}

.no-padding {
  padding: 0;
}

#header {
  color: var(--white);
  background: #0000008e;
  position: fixed;
  top: 0;
  z-index: 10;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.6s linear;
  background-clip: content-box;
}

#header.hide {
  top: -400px !important;
  padding-bottom: 400px;
}

#header:hover {
  top: 0 !important;
  padding-bottom: 0;
}

.menu {
  display: flex;
  flex-direction: row;
  padding: 20px 50px;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  gap: 70px;
}

.logo {
  max-width: 100px;
}

#menu-items {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#menu-items li {
  text-align: center;
  padding: 5px;
  position: relative;
  list-style-type: none;
}

#menu-items a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  text-align: center;
  padding: 5px;
  font-weight: 100;
  width: 100%;
  position: relative;
  display: inline-block;
}

#menu-items a::after,
.legalpages a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.4s ease-in-out;
}

#menu-items .boxed::after {
  content: none;
}

#menu-items a:hover::after,
.legalpages a:hover::after {
  background-color: white;
}

#menu-items {
  display: flex;
  flex-direction: row;
}

.hamburgeritem {
  order: 10;
}

.boxed {
  border: 2px solid white;
  padding: 10px !important;
  transition: 0.3s;
  text-wrap-mode: nowrap;
  cursor: pointer;
}

.boxed:hover {
  background-color: white;
  color: black !important;
}

a:hover {
  text-decoration: underline;
}

.logo {
  position: relative;
  display: inline-block;
  width: 100%;
}

.menu img {
  width: 100%;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  min-height: 900px;
  background-color: black;
  transition: 0.3s;
  position: relative;
  margin: 0 auto;
  padding: 20px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 2;
  color: var(--white);
  max-width: 1400px;
  margin: 0 auto;
}

.banner-content h1 {
  color: white;
  text-align: center;
  margin-bottom: 0;
  font-size: 100px;
  margin-bottom: -10px;
}

.banner-content p {
  color: white;
  text-align: center;
  font-size: 26px;
  max-width: 800px;
  margin: 0 auto;
}

.banner-content h1 span {
  font-size: 0.5em;
  color: inherit;
}

.banner-cols {
  display: grid;
  grid-template-columns: 8fr 4fr;
  justify-content: center;
  gap: 45px;
  max-width: 1000px;
  margin: 0 auto;
}

.banner-col {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: start;
  justify-content: start;
  height: 100%;
}

.buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.buttons .boxed {
  display: block;
  margin-top: auto;
  background-color: transparent;
  text-decoration: none;
  font-size: 20px;
  width: 100%;
  text-align: center;
  color: white !important;
  cursor: pointer;
  border: 2px solid white;
}

.buttons .boxed:hover {
  background-color: var(--buttonsBG);
  color: var(--buttonsTX) !important;
}

.banner-cols p {
  color: white;
  margin: 0;
  text-align: start;
  font-size: 30px;
}

.banner img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  animation-delay: 0.5s;
}

.banner video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0.5);
}

.arrow {
  transition: 0.3s;
  color: var(--white);
}

.flip {
  transform: rotateX(180deg);
}

#play-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 50px;
  background-color: var(--black);
  color: var(--white);
  border: 0;
  display: flex;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  aspect-ratio: 1 / 1;
  line-height: 0;
  cursor: pointer;
  font-family: "Times New Roman", Times, serif;
  font-variant-emoji: text;
  padding: 7px;
}

#play-button img {
  width: 100%;
  transform: none;
  mix-blend-mode: difference;
}

.heading {
  text-align: center;
  padding: 10px;
  border: 3px solid var(--black);
  border-left: 0;
  border-right: 0;
  position: sticky;
  top: 0;
  z-index: 60;
  transition: 0.3s linear;
  overflow: hidden;
}

.header-visible .heading:has(.riseUp) {
  top: -140px;
}

hr {
  border-color: var(--black);
}

.container {
  padding: 50px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

#quote-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: auto;
  padding: 20px;
  display: none;
}

.show-quote {
  display: flex !important;
}

#quote-popup #quote-container {
  max-width: 800px;
  padding: 30px;
  background-color: var(--transparent-white);
}

#quote-popup .drink-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

#quote-popup .drink-menu .drink-box {
  max-width: 19%;
  width: 100%;
}

#quote-popup label {
  font-weight: bold;
}

#quote-container {
  overflow: unset !important;

  max-width: 1920px;
}

.grid-2x {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 0 5%;
  overflow: hidden;
}

.image-left {
  height: auto;
  object-fit: cover;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* .grid-2x img {
  width: 100%;
  height: auto;
  object-fit: cover;
  font-size: 0;
  animation: slideInImage 7s ease-in-out infinite;
}

.image-left img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 100%;
  height: auto;
  object-fit: cover;
  font-size: 0;
  opacity: 0;
  animation: slideInImage 7s ease-in-out infinite;
}

@keyframes slideInImage {
  0% {
    left: 100%;
    opacity: 0;
  }
  5% {
    left: 0;
    opacity: 1;

  }

  100% {
    left: 100%;
    opacity: 0;
  }
} */

.image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-left img:nth-child(1) {
  opacity: 0;
}

.image-left img:nth-child(2),
.image-left img:nth-child(3) {
  position: absolute;
  top: 0;
  left: 100%; /* start off-screen to the right */
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slideInImage 14s ease-in-out infinite;
}

/* First image starts immediately */
.image-left img:nth-child(2) {
  animation-delay: 0s;
}

/* Second image starts after 7s */
.image-left img:nth-child(3) {
  animation-delay: 7s;
}

@keyframes slideInImage {
  0% {
    left: 100%;
    z-index: 2;
  }
  5% {
    left: 0;
    z-index: 2;
  }
  45% {
    left: 0;
  }
  50% {
    z-index: 1;
  }
  100% {
    left: 0;
  }
}

.heading-line {
  display: flex;

  margin-bottom: 30px;
}

.heading-line h3 {
  width: auto;
  text-align: center;
  font-size: 30px;
  margin: 0px 12px;
}

.line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--black);
  margin-top: 15px;

  border: 1px solid;
  border-color: #a9a9a9;
  border-bottom-color: #737373;
}

.steps {
  max-width: 700px;
  margin: 30px auto;
  text-align: center;
}

/* -------------------------------- Packages -------------------------------- */

.packages-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.package-col {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.package-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 25px;
  text-align: center;
  padding: 30px;
  flex: 1;
  position: relative;
}

.packages-new p {
  margin: 0;
}

.package-box-title {
  font-weight: bold;
  text-decoration: underline;
}

.bracket {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: start;
}

.bracket img {
  width: 40px;
  height: 100%;
  filter: var(--border-filter);
}

.bracket-texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bracket-text {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.bracket-texts span {
  display: block;
  width: 40px;
}

.exclude {
  text-align: center;
}

/* -------------------------------- Border -------------------------------- */

.border-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.border {
  position: absolute;
  width: 30px;
  height: 30px;
  filter: var(--border-filter);
  user-select: none;
}

.top-left {
  top: 10px;
  left: 10px;
}

.top-right {
  top: 10px;
  right: 10px;
  transform: scale(-1, 1);
}

.bottom-left {
  bottom: 10px;
  left: 10px;
  transform: scale(1, -1);
}

.bottom-right {
  bottom: 10px;
  right: 10px;
  transform: scale(-1, -1);
}

.border-line {
  position: absolute;
  background-color: transparent;
}

.line-top {
  top: 10px;
  left: 40px;
  width: calc(100% - 75px);
  height: 12px;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.line-right {
  top: 40px;
  right: 10px;
  height: calc(100% - 75px);
  border-left: 3px solid var(--black);
  border-right: 3px solid var(--black);
  width: 11px;
}

.line-bottom {
  bottom: 10px;
  left: 40px;
  width: calc(100% - 75px);
  height: 12px;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.line-left {
  bottom: 40px;
  left: 10px;
  height: calc(100% - 75px);
  border-left: 3px solid var(--black);
  border-right: 3px solid var(--black);
  width: 11px;
}

/* -------------------------------- Text -------------------------------- */

.text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-weight: 100;
  text-align: center;
}

/* -------------------------------- Form -------------------------------- */

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  border: 3px solid var(--black);
  border-radius: 5px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  align-items: baseline;
  overflow: hidden;
}

form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

form .col {
  width: auto;
  padding: 0;
}

.input-name {
  display: flex;
  gap: 20px;
  width: 100%;
}

.input-name div {
  width: 50%;
}

.required {
  color: red;
}

textarea {
  color: black;
  resize: vertical;
}

.button {
  font-family: "Times New Roman", Times, serif;
  display: block;
  background-color: var(--black);
  color: var(--white);
  cursor: pointer;
  padding: 10px 25px;
  font-size: 22px;
  text-transform: capitalize;
  margin: 40px auto;
  transition: 0.3s;
  max-width: 120px;

  border: 4px solid var(--black);
}

input.button {
  border-radius: 10px;
  padding: 5px;
}

.cocktail-menu-grid {
  display: grid;
  grid-template-columns: 4.1fr 7.9fr;
  gap: 50px;
  margin: 0 50px;
  position: relative;
  overflow-x: clip;
}

.mini-menu {
  margin-top: 100px;
  width: 100%;
  position: sticky;
  top: 25%;
  height: 100%;
  padding: 0 30px;
  text-align: center;
  height: fit-content;
  z-index: 2;
  background-color: var(--minimenu);
  border: 6px double var(--black);
}

.mini-menu h3 {
  font-size: min(3vw, 35px);
  padding: 15px 0;
}

.mini-menu h4 {
  padding: 20px;
  font-weight: 100;
  font-size: min(2vw, 22px);
}

.mini-menu li {
  list-style-type: none;
  border-top: 2px solid var(--black);
}

.mini-menu hr {
  margin: 6px 0;
}

.mini-menu p {
  margin: 10px 0;
  padding: 5px 0;
}

.drink-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  gap: 20px;
}

.no-min-height {
  min-height: auto;
}

.drink-box {
  aspect-ratio: 1/1;
  width: 100%;
  border: 6px double var(--black);
  position: relative;
  cursor: pointer;
  font-size: 0;
  transition: 0.2s;
  background-color: var(--drinkbox);
}

.pressed {
  width: 90%;
  margin: 5%;
  align-self: center;
}

#quote-popup .pressed {
  width: 100%;
  margin: 0;

  transform: scale(0.9);
}

.drink-box img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  padding: 1px;
}

.drinks .heading-line {
  position: relative;
  margin: 30px 0;
  align-items: center;
}

.drinks .heading-line:before {
  content: "";
  height: 2px;
  background-color: var(--black);
  width: 50vw;
  left: -50vw;
  position: absolute;
  top: 50%;
  opacity: 0.7;
  transform: translateY(-65%);
}

.drinks .heading-line h3 {
  z-index: 1;
  padding: 0 5px;
  font-size: 40px;
  text-wrap-mode: nowrap;
}

#quote-popup .heading-line h3 {
  font-size: 22px;
}

.drinks .heading-line {
  position: relative;
}

.overlay {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: var(--white);
  top: 0;
  letter-spacing: 1.7px;
  line-height: 1;
  word-spacing: 2.1;
  line-height: 1.1;
  height: 100%;
  width: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.74);
}

.overlay h2 {
  font-size: min(1.6vw, 35px);
  max-width: 10ch;
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  grid-gap: 10px;
  max-width: 1050px;
  margin: 50px auto;
}

.grid-item {
  background: var(--white);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.drink-box {
  opacity: 0;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  filter: grayscale(1);
  transition: 0.3s;
}

.grid-item img:hover {
  filter: none;
}

.grid-item.is-visible,
.drink-box.is-visible {
  opacity: 1;
}

/* Add different delays for each image */
.grid-item:nth-child(1).is-visible {
  transition-delay: 0s;
}

.grid-item:nth-child(2).is-visible {
  transition-delay: 0.3s;
}

.grid-item:nth-child(3).is-visible {
  transition-delay: 0.7s;
}

.grid-item:nth-child(4).is-visible {
  transition-delay: 0s;
}

.grid-item:nth-child(5).is-visible {
  transition-delay: 0.3s;
}

.grid-item:nth-child(6).is-visible {
  transition-delay: 0.7s;
}

.grid-item:nth-child(7).is-visible {
  transition-delay: 0s;
}

.grid-item:nth-child(8).is-visible {
  transition-delay: 0.3s;
}

.grid-item:nth-child(9).is-visible {
  transition-delay: 0.7s;
}

.answer {
  text-indent: -30px;
  padding-left: 32px;
  background-color: var(--hover) !important;
}

.show-overlay {
  display: flex;
  pointer-events: none;
  opacity: 1 !important;
}

.thankyou {
  height: calc(100vh - 128px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
  text-align: center;
}

.thankyou h1 {
  font-size: 50px;
}

.thankyou a {
  text-decoration: none;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 20px 100px;
  max-width: 300px;
  font-family: "Times New Roman", Times, serif;
  transition: 0.3s;
}

.thankyou a:hover {
  text-decoration: none;
  color: var(--white);
  background-color: var(--black);
  border: 2px solid var(--black);
  padding: 20px 100px;
  max-width: 300px;
  font-family: "Times New Roman", Times, serif;
}

.thankyou img {
  height: 200px;
  filter: brightness(0) saturate(100%) invert(21%) sepia(33%) saturate(3033%)
    hue-rotate(194deg) brightness(93%) contrast(89%);
}

.quote {
  max-width: 800px;
  min-height: 600px;
  position: relative;
}

.quote p {
  margin: 0 auto;
  margin-bottom: 50px;
  text-align: center;
}

.unselectable {
  pointer-events: none;
  cursor: none;
}

.no-hover {
  pointer-events: none;
}
.no-hover {
  opacity: 0 !important;
}

.drink-box:has(.unselectable) {
  cursor: auto;
}

.drink-box:has(.unselectable) .overlay {
  display: flex;
}

.drink-box:has(.unselectable) .overlay h2 {
  display: none;
}

.review-category .drink-box:has(.unselectable) .overlay h2 {
  display: block !important;
}

.review-category .drink-box:has(.unselectable) .overlay {
  display: none !important;
}

.review-category .drink-menu {
  border: none;
  pointer-events: none;
}

.quote-form-next {
  position: absolute;
  width: 50px;
  right: -80px;
  top: 50%;
}

.quote-form-back {
  position: absolute;
  width: 50px;
  left: -80px;
  top: 50%;
}

.quote-arrow {
  cursor: pointer;
}

.quote-arrow img {
  width: 100%;
  filter: var(--arrow);
}

#reviews-container {
  display: none;
}

.review-input {
  text-align: center;
  display: flex;
  gap: 5px;
  margin: 40px auto;
  flex-direction: column;
  justify-content: center;
}

.review-input h3 {
  border-top: 2px solid var(--black);
  font-size: 27px;
  padding: 5px;
}

.review-input p {
  margin: 0;
}

.inputs-review {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1300px;
  margin: 30px auto;
}

.addons {
  width: 100%;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
  align-items: flex-start;
  justify-content: space-evenly;
}

.review-category .heading-line {
  border: 0 !important;
}

.review-category .heading-line h3 {
  font-size: 27px !important;
}

.review-category .drinks {
  padding: 20px;
}

.review-category .drink-menu {
  gap: 10px;
}

.col {
  padding: 20px;
  flex-basis: 50%;
  gap: 20px;
}

.col-1 {
  flex-basis: 100%;
}

.col-4 {
  flex-basis: 20%;
  gap: 20px;
  justify-content: space-between;
}

#quote-container .text {
  margin: 50px auto;
}

#quote-popup #quote-container .text {
  margin: 25px auto;
}

#quote-popup #quote-container .text p {
  margin-bottom: 10px;
  font-size: 18px;
}

#quote-container .heading {
  margin: 0 -50px;
}

.review-input p {
  font-size: 30px;
}

.review .drinks,
.inputs-review-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  border: 4px double var(--black);
  padding: 70px;
  margin-bottom: 40px;
}

.review .drinks .heading-line .line {
  opacity: 1;
}

.review .drinks .heading-line::before {
  display: none;
}

.drink-review {
  display: none;
  cursor: auto;
}

.footer {
  background: #000000ec;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  padding: 30px;
  padding-top: 50px;
  text-align: center;
  font-size: 20px;
  text-shadow: var(--footerstroke);
}

.footer-content {
  display: flex;
  flex-direction: row;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 25px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 23px;
  text-align: start;
}

.footer-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  text-align: start;
}

.footer-item a {
  font-family: "dollarbill";
  color: var(--white);
  text-decoration: none;
}

.hamburger {
  display: none;
  background-color: transparent;
  aspect-ratio: 1/1;
  max-width: 70px;
  color: white;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.hamburgeritem {
  display: none;
}

.hamburgeritem .hamburger {
  background-color: var(--black);
  color: var(--white);
  width: 40px;

  align-items: center;
  justify-content: center;
}

#othereventtype,
#lb_othereventtype {
  display: none;
}

.switch {
  position: fixed;
  bottom: 10px;
  right: 10px;
}

#menu-items input[type="checkbox"] {
  display: none;
}

#menu-items input[type="checkbox"] + label {
  background: url("../images/moon-fill.svg") no-repeat;
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0 0 0 0px;
  background-size: 60%;
  background-position: center;
  cursor: pointer;
  background-color: rgb(32, 32, 32);
  border-radius: 50%;
}

#menu-items input[type="checkbox"]:checked + label {
  background: url("../images/brightness-high-fill.svg") no-repeat;
  background-size: 60%;
  background-color: rgb(32, 32, 32);
  background-position: center;
  border-radius: 50%;
}

.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  border: 3px solid var(--black);
  border-bottom: 0;
  overflow: hidden;

  text-align: left;
  outline: none;
  background-color: transparent;
  font-family: "dollarbill";
  transition: 0.2s ease-in-out;
  position: relative;
  z-index: 10;
}

.accordion::after {
  content: url("/images/expand_more_FILL0_wght400_GRAD0_opsz48.svg");
  position: absolute;
  right: 10px;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.2s;
  line-height: 0;
}

.panel .accordion {
  border: none;
}

.panel {
  border-left: 3px solid var(--black);
  border-right: 3px solid var(--black);
}

.panel .accordion:first-child {
  border-top: 3px solid var(--black);
}

.panel .panel {
  border: none;
}

.accordion {
  background-color: transparent;
}

.accordion:checked:after {
  transform: rotate(180deg);
}

.accordion.active {
  background-color: var(--active) !important;
}

.faq .heading {
  text-align: center;
  font-size: 48px;
  font-weight: 100;
  padding: 10px;
  border-bottom: 0 !important;
}

.accordion p,
.panel p {
  margin: 10px 0;
  padding: 10px;
  padding-right: 60px;
  text-align: justify;
}

.subheading b {
  margin: 10px 0;
  padding: 10px;
  padding-right: 60px;
  text-align: start;
  display: inherit;
  font-size: 21px;
  font-family: "Times New Roman", Times, serif;
  text-indent: -32px;
  padding-left: 43px;
}

.faq {
  max-width: 1100px;
  margin: 50px auto;
}

/* Style the accordion content */
.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 3s ease-out;
}

.borderbottom {
  border-bottom: 3px solid var(--black) !important;
}

.bordertopnone {
  border-top: none;
}

.accordion.rotate::after {
  transform: rotate(180deg);
}

.accordion::after {
  filter: var(--arrow);
}

.review-category .drink-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  justify-content: center;
}

.drink-review {
  flex: 0 0 30%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0 !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--arrow) !important;
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(115%);
}

.quote-form-page {
  width: 100%;
  max-height: none;
  height: auto;
}

.quote-form-page p {
  text-align: center;
}

.quote-form-page button {
}

#lg-counter {
  color: white !important;
  font-family: "Times New Roman", Times, serif;
}

#lg-counter span {
  color: white;
  font-family: "Times New Roman", Times, serif;
}

.quote-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex-direction: row;
  justify-content: center;
}

.quote-buttons .button {
  margin: 0;
}

.legal {
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  word-wrap: break-word;
  padding-bottom: 200px;
  line-height: 1.2;
  padding: 20px;
}

.legal * {
  font-family: "Times New Roman", Times, serif;
  line-height: 1.5;
}

.legal ul {
  padding-left: 30px;
}

.legal h1 {
  font-size: 40px;
  font-weight: bold;
}

.legal h2 {
  font-size: 30px;
  font-weight: bold;
}

.legal h3 {
  font-size: 25px;
  font-weight: bold;
}

.legal p {
  margin: 0;
  margin-bottom: 20px;
  padding: 10px 0;
}

.legalpages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 15px;
}

.legalpages a {
  color: var(--white);
  text-decoration: none;
  position: relative;
}

.addons {
  grid-template-columns: 1fr 1fr 1fr !important;
}

.mini-menu ul {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.mini-menu ul li {
  width: 100%;
}

.drinks-scroll {
  display: none;
}

.legal .answer {
  text-indent: 0;
}

.legal .accordion {
  text-align: left;
  font-size: 29px;
  font-weight: bold;
  padding: 5px;
  padding-left: 20px;
}

.legal .heading {
  text-align: start;
}

.legal .subheading b {
  margin: 0;
  padding: 5px 0;
  text-indent: 0;
  text-align: start;
}

.legal .answer {
  padding: 0 20px;
  padding-right: 25px;
}

.legal .faq {
  margin: 0;
  max-width: 100%;
}

.heading {
  background-color: var(--white);
}

.heading h2 {
  margin-bottom: 0;
  animation-delay: 0.1s;
  text-wrap-mode: nowrap;
}

.borderless {
  border: 0 !important;
}

.arrow-top .swiper-button-prev {
  position: static;
  transform: rotateZ(90deg);
  width: 100%;
  height: auto;
  margin: 0;
  cursor: none;
  font-weight: normal;
}

.arrow-bottom .swiper-button-prev {
  position: static;
  transform: rotateZ(-90deg);
  width: 100%;
  height: auto;
  margin: 0;
  cursor: none;
  font-weight: normal;
}

#dropdownmenu {
  position: relative;
}

#dropdownmenu:hover a:nth-child(1):after {
  background-color: white;
}

#dropdownmenu:hover .dropdown {
  opacity: 1;

  pointer-events: all;
}

.dropdown {
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom, transparent 8%, #000000ec 0px);
  left: 0;
  top: 100%;
  padding-top: 27px;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}

.dropdown a {
  padding: 15px 10px !important;
}

.dropdown li a:hover {
  background-color: #424242;
}

.dropdown li a:not(:hover) {
  transition: 0.6s;
  background-color: transparent;
}

.dropdown li {
  padding: 0 !important;
}

.dropdown li a::after {
  display: none;
}

#drink-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--modalbg);
  backdrop-filter: blur(5px);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

#drink-img-zoom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--modalbg);
  backdrop-filter: blur(5px);
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

#drink-img-zoom img {
  max-width: 700px;
  width: 100%;
  height: 80vh;
  object-fit: contain;
  user-select: none;
}

#ModalTitle {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
}

.drink-box img {
  user-select: none;
}

#drink-arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 20px;
  margin-bottom: -20px;
  justify-content: space-between;
  position: relative;
}

#drink-arrows hr {
  width: calc(100% - 70px);
  height: 6px;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: 35px;
  transform: translateY(-50%);
  z-index: -1;
}

.drink-modal-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  width: 100%;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
  user-select: none;
}

#drink-modal {
  width: 100%;
  overflow: hidden;
  padding: 20px;
}

#drink-cover {
  max-width: 320px;
  height: 30vh;
  object-fit: contain;
}

#drink-modal-content {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

#drink-ingredients {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
  padding: 55px 0;
  position: relative;
}

#drink-modal-content img {
  width: 100% !important;
}

#drink-modal-arrow-top,
#drink-modal-arrow-bottom {
  width: 45px;
  transition: 0.3s;
}

#drink-modal-arrow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

#drink-modal-arrow-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
}

#drink-modal-content-overlay {
  position: relative;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: var(--black) !important;
  letter-spacing: 1.7px;
  line-height: 1;
  word-spacing: 2.1;
  line-height: 1.1;
  overflow-y: scroll !important;
  width: 100%;
  display: block;
  padding: 5px 20px;
  scrollbar-width: none;
}

#drink-modal-content-overlay * {
  color: var(--black) !important;
}

#drink-modal-content-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

#drink-modal-content-overlay li {
  list-style-type: none;
  padding: 10px;
  font-size: 32px;
}

.drinks .heading-line .line {
  margin-top: 20px;
}

#drink-modal img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

#drink-arrows img {
  width: 45px !important;
}

#drink-modal-arrow-left {
  filter: var(--arrow-filter);
  cursor: pointer;
  user-select: none;
}

#drink-modal-arrow-bottom {
  filter: var(--arrow-filter);
  cursor: pointer;
  user-select: none;
}

#drink-modal-arrow-top {
  filter: var(--arrow-filter);
  cursor: pointer;
  user-select: none;
}

#drink-modal-arrow-right {
  transform: rotate(180deg);
  filter: var(--arrow-filter);
  cursor: pointer;
  user-select: none;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none !important;
}

#newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity ease-in-out;
  text-shadow: var(--footerstroke);
}

#newsletter-popup.show-newsletter {
  opacity: 1;
  pointer-events: all;
}

.newsletter {
  background: var(--marblebg);
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  gap: 25px;
  text-align: center;
  padding: 60px;
  position: relative;
  max-width: 700px;
  width: 100%;
}

.footer .newsletter {
  background: none;
}

.footer {
  background: var(--marblebg);
  background-size: cover;
}

.footer .socials {
  justify-content: flex-start !important;
  gap: 10px;
}

.footer .socials a {
  filter: var(--border-filter);
}

#close-newsletter {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: black;
  z-index: 2;
  width: 35px;
  height: 35px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  padding-left: 5px;
  padding-bottom: 5px;
  cursor: pointer;
  filter: var(--border-filter);
}

.newsletter .border-box {
  z-index: 1;
  pointer-events: none;
}

.newsletter .border {
  filter: var(--newsletter-border-filter) !important;
}

.newsletter .border-line {
  filter: none !important;
  border-color: var(--white);
}

.newsletter h2,
.newsletter p {
  margin: 0;
  color: var(--white);
}

.newsletter h2 {
  font-family: "dollarbill";
}

.newsletter .form-row {
  display: grid;
  grid-template-columns: 10fr 2fr;
  gap: 10px;
}

.newsletter input {
  font-family: "Times New Roman", Times, serif;
  margin: 0;
  border: 2px solid var(--white);
  border-radius: 0;
}

.newsletter .boxed {
  font-family: "dollarbill";
  margin: 0;
  display: block;
  margin-top: auto;
  background-color: var(--black);
  color: var(--white);
  border: 2px solid var(--white);
  text-decoration: none;
  font-size: 20px;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 0 !important;
  padding: 10px !important;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.newsletter .boxed:hover {
  background-color: var(--white);
  color: var(--black) !important;
}

.newsletter .success {
  background-color: #fdd236 !important;
  color: black !important;
  cursor: auto;
}

.newsletter .success:hover {
  background-color: #fdd236 !important;
  color: black !important;
}

#menu-items-wrapper .buttons {
  display: none;
}

.quote-modal {
  display: flex !important;
}

.hidden-mobile {
  display: flex;
}

.hidden-desktop {
  display: none;
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1600px) {
  .grid-5x {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu {
    gap: 50px;
    padding: 20px;
  }

  .dropdown {
    width: 124%;
    left: -12%;
  }
}

@media only screen and (min-width: 1301px) {
  #menu-items {
    display: flex !important;
  }

  .overlay {
    transition: 0.3s;

    opacity: 0;
    display: flex !important;
  }

  .drink-box:hover > .overlay {
    background-color: rgba(0, 0, 0, 0.74);
    pointer-events: none;
    opacity: 1;
  }

  .drink-box:has(.unselectable) .overlay {
    opacity: 1 !important;
  }

  .accordion:hover {
    background-color: var(--hover);
  }
}

@media only screen and (max-width: 1300px) {
  .hamburger {
    display: inline-block;
  }

  #menu-items li:last-child {
    order: -1;
  }

  .boxed {
    border: 2px solid var(--black);
  }

  .logo {
    margin: 0 auto;
  }

  .container {
    overflow: hidden !important;
  }

  .hamburgeritem {
    display: block;
  }

  #menu-items-wrapper {
    position: absolute;
    top: 128px;
    width: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
  }

  #menu-items-wrapper .buttons {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1px;
    z-index: 10;
    background-color: white;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
  }

  #menu-items-wrapper .buttons.visible {
    opacity: 1;
    pointer-events: auto;
  }

  #menu-items-wrapper .buttons .boxed {
    border: none;
    background-color: var(--black);
    color: var(--white) !important;
    font-size: 2.8vw;
    transition: none;
  }

  #menu-items-wrapper.open #menu-items {
    max-height: 400px;
  }

  #menu-items {
    width: 100%;
    flex-direction: column;
    background-color: var(--white);
    transition: 0.3s;
    display: flex;
    overflow: hidden;
    max-height: 0;
    gap: 0;
    align-items: start;
    justify-content: flex-start;
    padding: 0px;
    position: relative;
  }

  #menu-items li {
    position: static;
    width: 50%;
    text-align: start;
    padding: 0;
  }

  li:has(.boxed) {
    display: none;
  }

  #menu-items a {
    color: var(--black);
    font-size: 2.5vw;
    text-align: start;
    padding: 12px 15px !important;
    transition: 0.3s color;
  }

  #menu-items .boxed:hover {
    color: black !important;
  }

  #menu-items a::after {
    display: none;
  }

  .menu {
    justify-content: space-between;
    padding: 20px 10px;
    gap: 0;
    display: grid;
    grid-template-columns: 110px auto 110px;
    height: 128px;
  }

  .logo {
    max-width: 85px;
  }

  .menu a {
    font-size: 20px;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-margin-top: 171px;
  }

  .dropdown {
    width: 50%;
    right: 0;
    opacity: 1;
    left: auto;
    top: 0;
    pointer-events: all;
    padding: 0;
    background: transparent;
    height: 100%;
    overflow: hidden;
    transition: none;
  }

  .dropdown.active {
    background: inherit !important;
  }

  .dropdown.active ul {
    transform: translateX(0);
  }

  .dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background-color: #424242;
    transform: translateX(-100%);
    transition: 0.3s;
    height: 100%;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .mobile-only.active {
    background-color: #424242 !important;
    color: white !important;
  }

  .dropdown a {
    padding: 12px 15px !important;
    color: white !important;
  }

  .banner-content h1 {
    font-size: 6.5vw;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .banner-content p {
    font-size: 21px;
  }

  .banner {
    padding: 0;
  }

  .banner-content {
    padding: 20px;
    padding-top: 128px;
    gap: 20px;
  }

  .buttons {
    gap: 10px;
    flex-wrap: wrap;
  }

  .buttons .boxed {
    font-size: 16px;
    text-wrap-mode: wrap;
  }

  #menu-items a {
    font-size: 2.2vw;
  }

  #menu-items-wrapper .buttons .boxed {
    font-size: 22px;
    text-wrap-mode: wrap;
  }

  .grid-2x {
    padding: 0;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {
  .cocktail-menu-grid {
    margin: 0;
    grid-template-columns: 400px auto;
    gap: 20px;
  }

  .drink-menu {
    grid-template-columns: 1fr 1fr;
  }

  .overlay h2 {
    font-size: min(2.3vw, 35px);
    color: white;
  }

  .banner {
    height: auto;
    min-height: auto;
  }

  .addons {
    padding: 0 1.7%;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .drink-box:nth-child(1).is-visible {
    transition-delay: 0s;
  }

  .drink-box:nth-child(2).is-visible {
    transition-delay: 0.3s;
  }

  .drink-box:nth-child(3).is-visible {
    transition-delay: 0s;
  }

  .drink-box:nth-child(4).is-visible {
    transition-delay: 0.3s;
  }

  .drink-box:nth-child(5).is-visible {
    transition-delay: 0s;
  }

  .drink-box:nth-child(6).is-visible {
    transition-delay: 0s;
  }

  .drink-box:nth-child(7).is-visible {
    transition-delay: 0.3s;
  }

  .drink-box:nth-child(8).is-visible {
    transition-delay: 0s;
  }

  .drink-box:nth-child(9).is-visible {
    transition-delay: 0.3s;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
  .grid-2x {
    display: block;
    gap: 25px;
  }

  .container {
    padding: 25px;
  }

  #quote-container .heading {
    margin: 0 -20px;
  }

  .drinks .heading-line:before {
    display: none;
  }

  .cocktail-menu-grid {
    margin: 0;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: -25px;
    padding: 10px;
  }

  .drink-menu {
    grid-template-columns: 1fr 1fr;
  }

  .mini-menu {
    padding: 0;
    background-color: var(--minimenu-mobile);
  }

  .mini-menu h3 {
    font-size: 30px;
    margin: 0;
  }

  .mini-menu h4 {
    font-size: 20px;
  }

  .mini-menu {
    top: 171px;
  }

  .drinks {
    padding: 10px;
  }

  .drink-menu {
    min-height: auto;
  }

  .grid {
    margin: 30px 0;
    grid-template-columns: 1fr 1fr;
  }

  h2,
  .faq .heading {
    font-size: 35px;
  }

  .drinks .heading-line h3 {
    font-size: 30px;
  }

  .banner {
    overflow: hidden;
  }

  .banner img {
    transform: scale(1.5);
  }

  .drinks .heading-line .line {
    margin-top: 15px;
  }

  .col-4 {
    padding: 20px;
    flex-basis: 100%;
  }

  .overlay h2 {
    font-size: min(1.8vw, 22px);
    color: white;
  }

  .addons {
    padding: 0 7%;
  }

  #header.hide {
    padding-bottom: 70px;
  }

  .about-section {
    display: flex;
    flex-direction: column-reverse;
  }

  footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .footer-item {
    align-items: center;
    justify-content: center;
  }

  #menu-items-wrapper .buttons .boxed {
    font-size: 2.6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px !important;
  }
}

@media only screen and (min-width: 769px) {
  #quote-popup .cocktail-menu-grid {
    grid-template-columns: 1fr;
    margin: 0;
  }

  #quote-popup #minimenu {
    display: none;
  }

  #quote-popup .drink-menu {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    padding: 2px;
    border: none;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  #quote-popup .drink-menu .drink-box {
    padding: 0;
    border: none;
  }

  #quote-popup .drink-menu .drink-box .overlay h2 {
    font-size: 12px;
  }
}

.group {
  max-width: 520px;
}
.legend {
  font-weight: 600;
  margin-bottom: 8px;
}
.options {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  margin: 10px 0;
}
.option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: unset !important;
}

.option input {
  width: auto;
}

.hint {
  color: #555;
  font-size: 0.9rem;
  margin-top: 10px;
}

.quote-form-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
}

#quote-container label,
#quote-container input,
#quote-container textarea,
#quote-container select {
  font-size: 16px !important;
}

label {
  user-select: none;
}

#close-quote,
#close-drink-modal {
  filter: var(--newsletter-border-filter);
  cursor: pointer;
  width: 35px;
  height: 35px;
}

#close-drink-modal {
  position: absolute;
  top: 20px;
  right: 20px;
}

#quote-container hr {
  width: 100%;
  margin: 20px 0;
}

.required {
  display: none;
}

#dbtapnotice {
  display: block !important;
  color: goldenrod;
  letter-spacing: 2;
}

/* .agreement span {
  font-size: 18px;
} */

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
  #border-top {
    border-top: 3px solid var(--black);
  }

  .col {
    flex-basis: 100%;
  }

  .addons {
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  .banner video {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .drink-menu {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .container {
    padding: 20px;
  }

  .row {
    margin: 0 10px;
    margin-bottom: 10px;
  }

  h2,
  .faq .heading {
    font-size: 25px;
    padding: 0;
    margin: 0;
  }

  .accordion,
  .heading {
    padding: 10px !important;
    padding-top: 15px !important;
  }

  .subheading {
    padding: 0 10px !important;
  }

  .subheading b {
    margin: 0;
  }

  .answer p {
    margin: 0 !important;
  }

  .text p {
    margin: 10px 0;
  }

  .heading-line h3,
  h3 {
    font-size: 20px;
  }

  .drinks .heading-line h3,
  .mini-menu h3 {
    font-size: min(6vw, 25px);
    padding: 10px;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .drinks .heading-line {
    margin: 15px auto;
    margin: 0;
    justify-content: center;
    border-left: 3px solid var(--black);
    border-right: 3px solid var(--black);
  }

  .drinks .heading-line .line {
    display: none;
  }

  .mini-menu h4 {
    font-size: min(3vw, 15px);
  }

  .heading h2 {
    font-size: 20px;
  }

  p {
    font-size: 18px;
  }

  .heading {
    margin: 0;
  }

  #cocktailmenu {
    margin: 0;
  }

  .accordion p,
  .panel p {
    margin: 10px 0;
    padding: 10px;
    padding-right: 50px;
    text-align: left;
  }

  .accordion::after {
    right: 0;
  }

  .quote-form-page {
    min-width: 100%;
    min-height: auto;
  }

  .quote {
    padding: 0;
  }

  .review-input {
    margin: auto;
  }

  .inputs-review-container,
  .drinks {
    padding: 10px !important;
  }

  .review-category .drink-menu {
    display: grid;
    gap: 4px;
    grid-template-columns: 1fr 1fr;
  }

  .line {
    margin-top: 9px;
  }

  .hamburger {
    max-width: 50px;
  }

  * {
    scroll-margin-top: 153px;
  }

  /*   main {
    padding-top: 154px;
  } */

  .mini-menu {
    height: 100%;
    margin: 0;
    border: 0;
    display: none;
  }

  .mini-menu ul {
    margin: 0 20px;
  }

  .mini-menu h3 {
    border-bottom: 3px solid var(--black);
  }

  .mini-menu ul li {
    border: 0;
    border-bottom: 3px solid var(--black);
  }

  .cocktail-menu-grid {
    margin: 0;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 30px;
    padding: 0;
  }

  .drinks::-webkit-scrollbar {
    display: none;
  }

  .drinks {
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0 !important;
    position: relative;
  }

  .no-padding {
    padding: 0;
  }

  input.button {
    max-width: 100%;
    margin: 10px 0;
  }

  .drinks-scroll {
    position: sticky;
    bottom: 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    font-size: 30px;
    font-weight: bold;
    pointer-events: none;
  }

  .hidden {
    display: none;
  }

  .arrow-top {
    background: linear-gradient(#000, #00000093, #ffffff00);
    top: 0;
    z-index: 10;
    display: none;
  }

  .arrow-bottom {
    background: linear-gradient(#ffffff00, #00000093, #000);
  }

  .arrow {
    padding: 10px 20px;
    z-index: 10;
    color: white;
    display: none !important;
  }

  .drink-menu {
    gap: 2px;
    padding: 2px;
    border: 3px solid var(--black);
    grid-template-columns: 1fr 1fr 1fr;
  }

  .addons {
    border: 0;

    padding: 0;
  }

  .drink-box {
    border: none;
  }

  .col-1 {
    padding: 20px;
  }

  .drinks .heading-line {
    background-color: var(--white);
    z-index: 20;
    border-bottom: 3px solid var(--black);
  }

  .drink-menu {
    border-top: 0;
  }

  .packages-new {
    display: flex;
    flex-direction: column;
  }

  .hidden-mobile {
    display: none;
  }

  .hidden-desktop {
    display: flex;
  }

  .exclude {
    order: -1;
  }

  .footer {
    padding: 10px;
  }

  .newsletter {
    padding: 40px;
  }

  .newsletter form {
    width: 100%;
  }

  .newsletter h2 {
    font-size: 6vw;
  }

  .newsletter .form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  #menu-items a {
    font-size: 3.2vw;
    padding: 10px 15px !important;
  }

  #quote-popup {
    top: 0;
    padding: 0;
  }

  #quote-popup #quote-container {
    max-width: 100%;
  }

  #quote-popup .quote-form-top h3 {
    margin-bottom: 0 !important;
  }

  .grid-2x {
    padding: 0 20px;
  }

  .grid-2x .image-left {
    padding: 0;
    margin: 0 -20px;
    width: 100vw;
  }

  #about-container {
    padding: 0;
  }

  .header .socials {
    gap: 10px;
  }

  .header .socials a {
    width: 35px;
    height: 35px;
  }

  .header .socials a img {
    padding: 12px;
  }

  .overlay h2 {
    font-size: 1.7vw;
    color: white;
  }
}

@media screen and (max-width: 700px) {
  .grid-5x {
    grid-template-columns: 1fr;
  }

  .grid {
    margin: 10px -20px;
    gap: 0;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .heading-line h3,
  h3 {
    font-size: 17px;
  }

  .legal {
    padding: 0;
  }

  .legal h1 {
    font-size: 35px;
  }

  .legal h2 {
    font-size: 25px;
  }

  #quote-popup .drink-menu .drink-box {
    max-width: 30%;
  }

  .overlay h2 {
    font-size: 2.5vw;
    color: white;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px) {
  .overlay h2 {
    font-size: 2vw;
    color: white;
  }

  #quote-popup .heading-line h3 {
    font-size: 18px;
    min-height: 50px;
  }

  .heading {
    border: 3px solid var(--black);
  }

  .faq .heading {
    transition: 0.3s;
  }

  .input-name {
    display: block;
  }

  .input-name div {
    width: 100%;
  }

  input,
  textarea,
  select,
  label {
    font-size: 17px;
  }

  .legalpages {
    flex-direction: column;
  }

  form .row {
    display: block;
  }

  #menu-items a {
    font-size: 2.7vw;
  }

  .footer {
    font-size: 15px;
    padding-bottom: 75px;
  }
}

@media only screen and (max-width: 500px) {
  .overlay h2 {
    font-size: 3.5vw;
    color: white;
  }

  .legal h1 {
    font-size: 25px;
  }

  .legal h2 {
    font-size: 22px;
  }

  .legal h3 {
    font-size: 20px;
  }

  .legal p {
    font-size: 18px;
  }

  .faq .heading {
    font-size: 20px;
  }

  #ModalTitle {
    font-size: 22px;
  }

  #drink-modal-content-overlay li {
    font-size: 20px;
  }

  #quote-popup .drink-menu .drink-box {
    max-width: 49%;
  }
}

@media only screen and (max-width: 400px) {
  #drink-modal-content-overlay li {
    font-size: 16px;
  }

  .bracket {
    gap: 5px;
  }

  .bracket p {
    font-size: 16px;
  }

  .menu {
    padding: 10px;
    height: 108px;
  }

  #menu-items-wrapper {
    top: 108px;
  }

  .heading h2 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 300px) {
  .header .socials a {
    width: 30px;
    height: 30px;
  }

  .header .socials a img {
    padding: 15px;
  }

  .menu {
    grid-template-columns: 95px auto 95px;
  }
}

@media screen and (max-width: 1300px) and (max-height: 420px) and (orientation: landscape) {
  .menu {
    height: 108px;
    padding: 10px;
  }

  #menu-items-wrapper {
    top: 108px;
  }

  #menu-items a {
    font-size: 14px;
    padding: 8px 10px !important;
  }

  #menu-items-wrapper .buttons .boxed {
    font-size: 12px;
  }

  #newsletter-popup .newsletter {
    /*  gap: 10px; */
    transform: scale(0.85);
  }
}

/*  #menu-items {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
  } */

/*  #menu-items > * {
    flex-basis: 50% !important;
  } */

/*   #menu-items > :first-child,
  #menu-items > :last-child {
    flex-basis: 100% !important;
  } */

/* #hamburgeritem .hamburger {
    display: block;
    margin: 0 auto;
  } */

/*   #menu-items a {
    width: auto;
    font-size: 19px;
  } */

/*  .hamburger {
    max-width: 50px;
  } */

/*   #menu-items > :nth-child(2) {
    order: 2;
  }

  #menu-items > :nth-child(3) {
    order: 4;
  }

  #menu-items > :nth-child(4) {
    order: 5;
  }

  #menu-items > :nth-child(5) {
    order: 8;
  }

  #menu-items > :nth-child(6) {
    order: 3;
  }

  #menu-items > :nth-child(7) {
    order: 4;
  }

  #menu-items > :nth-child(8) {
    order: 7;
  }

  #menu-items > :nth-child(9) {
    order: 9;
  }

  .menu {
    height: 40px;
  } */

/*  * {
    scroll-margin-top: 114px;
  } */
