/*@font-face {
	font-family: LatoBold;
	src: url('assets/font/lato-bold.eot?#iefix') format('embedded-opentype'),  url('assets/font/lato-bold.otf')  format('opentype'),
		url('assets/font/lato-bold.woff') format('woff'), url('assets/font/lato-bold.ttf')  format('truetype'), url('assets/font/lato-bold.svg') format('svg');
	font-weight: bold;
	font-style: normal;
}*/
/* Typography */
@font-face {
  font-display: swap;
  font-family: FrutigerBold;
  font-style: normal;
  font-weight: 700;
  src: url("assets/font/frutiger/FrutigerLTStd-Bold.eot");
  src: url("assets/font/frutiger/FrutigerLTStd-Bold.eot?#iefix") format("embedded-opentype"), url("assets/font/frutiger/FrutigerLTStd-Bold.woff2") format("woff2"), url("assets/font/frutiger/FrutigerLTStd-Bold.woff") format("woff"), url("assets/font/frutiger/FrutigerLTStd-Bold.ttf") format("truetype"), url("assets/font/frutiger/FrutigerLTStd-Bold.svg#FrutigerLTStd-Bold") format("svg");
}
@font-face {
  font-display: swap;
  font-family: FrutigerItalic;
  font-style: italic;
  font-weight: 400;
  src: url("assets/font/frutiger/FrutigerLTStd-Italic.eot");
  src: url("assets/font/frutiger/FrutigerLTStd-Italic.eot?#iefix") format("embedded-opentype"), url("assets/font/frutiger/FrutigerLTStd-Italic.woff2") format("woff2"), url("assets/font/frutiger/FrutigerLTStd-Italic.woff") format("woff"), url("assets/font/frutiger/FrutigerLTStd-Italic.ttf") format("truetype"), url("assets/font/frutiger/FrutigerLTStd-Italic.svg#FrutigerLTStd-Italic") format("svg");
}
@font-face {
  font-display: swap;
  font-family: FrutigerRoman;
  font-style: normal;
  font-weight: 400;
  src: url("assets/font/frutiger/FrutigerLTStd-Roman.eot");
  src: url("assets/font/frutiger/FrutigerLTStd-Roman.eot?#iefix") format("embedded-opentype"), url("assets/font/frutiger/FrutigerLTStd-Roman.woff2") format("woff2"), url("assets/font/frutiger/FrutigerLTStd-Roman.woff") format("woff"), url("assets/font/frutiger/FrutigerLTStd-Roman.ttf") format("truetype"), url("assets/font/frutiger/FrutigerLTStd-Roman.svg#FrutigerLTStd-Roman") format("svg");
}
:root {
  --font-primary: frutigerroman, sans-serif;
  --font-primary-italic: frutigeritalic, sans-serif;
  --font-primary-bold: frutigerbold, sans-serif;
  --font-secondary: muli, sans-serif;
  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 300;
  --font-weight-semibold: 500;
  --font-weight-600: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  /* Responsive Headers - Font Sizes */
  --h1-font-size: 35.9px;
  --h2-font-size: 25px;
  --h3-font-size: 20px;
  --h4-font-size: 15px;
  --h5-font-size: 16px;
  /* Responsive Headers - Line Heights */
  --h1-line-height: 39px;
  --h2-line-height: 29px;
  --h3-line-height: 26px;
  --h4-line-height: 26px;
  --h5-line-height: 22px;
  /* Responsive Content - Font Sizes */
  --large-body: 20px;
  --regular-body: 16px;
  --small-body: 16px;
  --slightly-small-body: 14px;
  --super-small-body: 12px;
  /* Responsive Content - Line Heights */
  --large-line-height: 28px;
  --regular-line-height: 24px;
  --small-line-height: 24px;
  --slightly-small-line-height: 22px;
  --super-small-line-height: 22px;
  /* Responsive Headers - Font Sizes - New Pattern Library */
  --pl-h1-font-size: 25px;
  --pl-h2-font-size: 25px;
  --pl-h3-font-size: 20px;
  --pl-h4-font-size: 16px;
  --pl-h5-font-size: 16px;
  /* Responsive Headers - Line Heights - New Pattern Library */
  --pl-h1-line-height: 29px;
  --pl-h2-line-height: 30px;
  --pl-h3-line-height: 26px;
  --pl-h4-line-height: 22px;
  --pl-h5-line-height: 22px;
  --pl-h5-line-height-2: 22px;
  /* Responsive Content - Font Sizes */
  --pl-large-body: 20px;
  /* Responsive Content - Line Heights */
  --pl-large-line-height: 28px;
}

.main-logo {
  max-width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 999;
}

/*
h1,h2,h3,h4{
  font-family:'LatoBold',Verdana,Helvetica,sans-serif;
}
.button{
  font-family:'LatoBold',Verdana,Helvetica,sans-serif;
}*/
body {
  font-family: var(--font-primary);
}

h1 {
  font-family: var(--font-primary);
}

h2, h3, h4, h5 {
  font-family: var(--font-secondary);
}

h1, h2, h3, h4 {
  text-transform: none;
  color: #102948;
}

.booking-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 2rem;
}
.booking-buttons .button {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 540px) {
  .booking-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.button {
  background: transparent;
  border: 1px solid #102948;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  line-height: 18px;
  padding: 25px 25px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #102948;
  border-radius: 0;
  margin-bottom: 0;
}

#details h2 {
  display: block;
  position: relative;
  text-transform: none;
  font-family: var(--font-secondary);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2em;
}
#details h2 span {
  display: block;
  position: relative;
  height: 70px;
  position: relative;
  font-weight: 600;
  font-size: 20px;
}
#details h2 span::after {
  background: #863188;
  bottom: 24px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 55px;
}
#details ul.haven__contact a:hover {
  background-color: #102948;
  color: #FFFFFF;
  text-decoration: none;
}
#details .meta-info {
  font-size: 0.9em;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#details .meta-info h4 {
  font-size: 1.1em;
}
#details .meta-info.highlight h4 {
  display: inline-block;
  margin: 0 5px 0 0;
}
#details .meta-info .family-friendly,
#details .meta-info .fully-licensed,
#details .meta-info .wheelchair-accessible {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
#details .meta-info .wheelchair-accessible__icon,
#details .meta-info .family-friendly__icon,
#details .meta-info .fully-licensed__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
}
#details .meta-info .wheelchair-accessible__icon {
  color: #FFFFFF;
  background-color: #1e74d6;
}
#details .meta-info.no-cuisine.no-meal-type {
  display: none;
}

#tour .slider .slick-slide .stop-item h4 {
  display: block;
  position: relative;
  text-transform: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2em;
  font-size: 14px;
  color: #102948;
}
#tour .slider .slick-slide .stop-item h4 span {
  display: block;
  position: relative;
  height: 60px;
  position: relative;
  font-weight: 600;
  line-height: 1.2em;
  font-size: 18px;
}
#tour .slider .slick-slide .stop-item h4 span::after {
  background: #863188;
  bottom: 24px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 55px;
}
#tour .slider .slick-slide .stop-item .meta-info {
  position: absolute;
  bottom: 5px;
}

.haven__email {
  display: none !important;
}

.stop-item .meta-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 0;
  padding-right: 10px;
  padding-left: 5px;
}
.stop-item .meta-info .wheelchair-accessible__label {
  display: none;
}
.stop-item .meta-info .meta-item {
  font-size: 0.8em;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.menu-overlay-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.menu-overlay-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 10001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.menu-overlay-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(200, 200, 200, 0.6);
  border: none;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10002;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  padding: 0;
}
.menu-overlay-close span {
  display: block;
  margin-top: -3px;
}
.menu-overlay-close:hover {
  background: #07172a;
  color: #fff;
}
.menu-overlay-close:focus {
  outline: 2px solid #863188;
  outline-offset: 2px;
}

#menu-iframe {
  width: 100%;
  height: 90vh;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .menu-overlay-close {
    top: 45px;
  }
  .menu-overlay-content {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  #menu-iframe {
    height: 100vh;
  }
}