/* ========================================================================== */
/* FsObb Website Base Styles                                                  */
/* -------------------------------------------------------------------------- */
/* In this file mostly global styles are defined.                             */
/* The sticky&bumpy menu scrolling also is done for all responsive sizes      */
/* with or without header content and for all browsers.                       */
/* This is not trivial. So please do other style adjustments elsewhere!       */
/* ========================================================================== */

/* ========================================================================== */
/* Fonts                                                                      */
/* ========================================================================== */

@font-face {
  font-family: 'Raleway';
  src: url('/static/fonts/Raleway.eot?v=4.2.0');
  src: url('/static/fonts/Raleway.woff2?v=4.2.0') format('woff2'),
       url('/static/fonts/Raleway.woff?v=4.2.0') format('woff'),
       url('/static/fonts/Raleway.ttf?v=4.2.0') format('truetype'),
       url('/static/fonts/Raleway.svg?v=4.2.0#ralewayregular') format('svg');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url('/static/fonts/Raleway-Light.eot?v=4.2.0');
  src: url('/static/fonts/Raleway-Light.woff2?v=4.2.0') format('woff2'),
       url('/static/fonts/Raleway-Light.woff?v=4.2.0') format('woff'),
       url('/static/fonts/Raleway-Light.ttf?v=4.2.0') format('truetype'),
       url('/static/fonts/Raleway-Light.svg?v=4.2.0#ralewaylight') format('svg');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url('/static/fonts/Raleway-ExtraLight.eot?v=4.2.0');
  src: url('/static/fonts/Raleway-ExtraLight.woff2?v=4.2.0') format('woff2'),
       url('/static/fonts/Raleway-ExtraLight.woff?v=4.2.0') format('woff'),
       url('/static/fonts/Raleway-ExtraLight.ttf?v=4.2.0') format('truetype'),
       url('/static/fonts/Raleway-ExtraLight.svg?v=4.2.0#ralewayextralight') format('svg');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url('/static/fonts/Raleway-Bold.eot?v=4.2.0');
  src: url('/static/fonts/Raleway-Bold.woff2?v=4.2.0') format('woff2'),
       url('/static/fonts/Raleway-Bold.woff?v=4.2.0') format('woff'),
       url('/static/fonts/Raleway-Bold.ttf?v=4.2.0') format('truetype'),
       url('/static/fonts/Raleway-Bold.svg?v=4.2.0#ralewaybold') format('svg');
  font-weight: 700;
  font-style: normal;
}

:root {
  --fold-menu-height: auto;
  --sticky-release-scroll-height: 1500px;
  --sticky-upper-offset: 50px;
}

body {
  overflow-x: hidden;
  overflow-y: hidden;
}

body div.wrapper {
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y proximity;
  height: 100vh;
  width: 100vw;
}

html, body {
  font-family: Raleway, sans-serif;
  overflow-x: unset;
}

html.cms-ready {
  margin-top: 0px!important; /* Prevent cms admin bar pushing down header content. */
}

main.container {
  padding-top: 15px;
}

/* BEGIN bottom page margin */
main {
  margin-bottom: 40px;
}

main .fsobb-icon-link-bar {
  bottom: -40px;
}
/* END bottom page margin */

.mainwrap {
  word-wrap: break-word;
  margin-top: calc(-100vh - var(--sticky-release-scroll-height));
}

.no-header-content .mainwrap {
  margin-top: calc(var(--hook-height) - 66px - 100vh - var(--sticky-release-scroll-height));
}

/* the above does break this, so fix it */
.circle-menu {
  padding: 0px 15p 0px 15x;
  margin-bottom: 0px;
}

/* Sticky header */
.header-content #header-container {
  height: 100vh!important; /* unterdrueck animation */
}

#header-container {
  display: flex;
  z-index: 1000;
  align-items: flex-start;
  justify-content: space-around;
  position: sticky!important; /* avoid flickering when animating */
  overflow: visible!important; /* avoid flickering when animating */
}

/* Collapse second brand if content and already there */
.header-content .hook .inline-brand,
.header-content .inline-brand {
  display: none;
}

.no-header-content #header-container {
  top: 0;
  height: 66px; /* !important;*/
}

/* make header images fill screen */
#header-container section .fluid-container .img-fluid {
  min-height: 100vh; 
  object-fit: cover;
  width: 100%;
}

#header-container section {
  height: 100vh;
  max-height: 100%;
  overflow: hidden;
  font-family: sans-serif;
  position: absolute;
  width: 100%;
}

#header-container section {
  left: 0;
}

#header-container #sticky-top-bar {
  display: block;/* important;*/
  overflow: hidden; /* otherwise old iOS scrolls horizontally */
}

#header-container #sticky-top-bar {
/* This makes top bar sticky */
  width: 100%;
  left: 0;
  top: 0;      /* important (IE fallback) */
  top: unset;  /* also important (IE does not know, so falls back) */
  position: fixed; /* IE workaround. There is no sticky in IE. So scrap it. */
  position: -webkit-sticky; /* to make it work in Safari */
  position: sticky;
  bottom: calc(100vh - 66px);
  /* margin-bottom: 67px; */
  /* 66px + 1px (not touching when bumping) */
  align-self: flex-end;
  height: 66px;
  background-color: #ccc;
  /* background-image: url(/static/img/navbar-bg.png); */
}

#header-container #sticky-top-bar {
  margin-bottom: 67px;
}

/* This is just styling of top bar logo image */
.inline-brand img,
#header-container #sticky-top-bar img {
  height: 40px;
  float: left;
  padding-right: 10px;
  padding-top: 10px;
}

/* This is just styling of top bar logo text */
.inline-brand span,
#header-container #sticky-top-bar span {
  text-transform: uppercase;
  color: #494647;
  padding-top: 9px;
  line-height: 1.2em;
  font-size: 1.0em;
  font-weight: 300;
  float: left;
  white-space: normal;
  width: 200px;
  width: min-content;
  width: -moz-min-content;
  width: -webkit-min-content;
}

/* top bar logo img and text should just occupy left side */
.inline-brand,
#header-container #sticky-top-bar .logo {
  padding: 8px 15px;
  width: 350px;
  /*float: left; */
  display: block;
}

#header-container #sticky-top-bar .fluid-container {
  overflow: hidden; /* Prevent old iOS horizontal scrolling */
}

#bumpy-container {
  margin-top: -66px;
  width: 100%;
  bottom: 0;  /* important */
  bottom: calc(100% - 100vh);  /* important for old iOS */
  overflow: visible;
  margin-bottom: calc(100vh + var(--sticky-release-scroll-height));
}

.no-header-content #bumpy-container {
  margin-bottom: calc(100vh + var(--sticky-release-scroll-height));
}

#bumpy-container .hook {
    position: relative;
    z-index: 1000;
    background-color: #ccc;
    min-height: 67px; /* 66 an 1px top spacer */
    margin-bottom: -67px; /* GOOD? */
}

nav.xndavbar-toggleable .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  flex-flow: wrap;
}

nav.xndavbar-toggleable div.fluid-container {
  background-color: #fffd;
  display: flex;
  flex-flow: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

nav.xndavbar-toggleable .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
}

.empty-nav-item {
    height: 1px; /* Workaround, when we are on top level menu */
}

@media (max-width: 575px) {
  #bumpy-container nav.xndavbar-toggleable .navbar-nav {
    flex-flow: wrap;
    justify-content: center;
  }

  .stick #header-container {
    margin-bottom: 0px; /* this is height of folded menu*/ 
    -webkit-transition-property: margin transform -webkit-transform;
    -webkit-transition-duration: 2s;
    -webkit-transition-timing-function: ease-in-out;
    transition-property: margin transform -webkit-transform;
    transition-duration: 0s!important;
    transition-timing-function: ease-in-out;
  }

  .stick #header-container.show {
    margin-bottom: calc(0px - var(--fold-menu-height)); /* this is height of unfolded menu*/
    -webkit-transition-property: margin transform -webkit-transform;
    -webkit-transition-duration: 2s;
    -webkit-transition-timing-function: ease-in-out;
    transition-property: margin transform -webkit-transform;
    transition-duration: 2s;
    transition-timing-function: ease-in-out;
  }

  .stick .menu-collapse {
    height: 0px; /* this is height of folded menu*/ 
    -webkit-transition-property: height transform -webkit-transform;
    -webkit-transition-duration: 0s; /* jo */
    -webkit-transition-timing-function: ease-in-out;
    transition-property: height transform -webkit-transform;
    transition-duration: 2s;
    transition-timing-function: ease-in-out;
  }

  .stick .menu-collapse.show {
    height: var(--fold-menu-height); /* this is height of unfolded menu*/
    -webkit-transition-property: height transform -webkit-transform;
    -webkit-transition-duration: 0s; /* jo */
    -webkit-transition-timing-function: ease-in-out;
    transition-property: height transform -webkit-transform;
    transition-duration: 0s!important;
    transition-timing-function: ease-in-out;
  }

  .no-header-content #header-container.show {
    margin-bottom: 0px; /* overwrite previous. this is height of unfolded menu*/     
  }

  #bumpy-container .hook {
    margin-bottom: -67px; /* 66 minus 1 px top spacer */
    background-repeat: repeat;

  }
  .stick #bumpy-container .hook {
    margin-bottom: -66px; 
 /*   background-image: url(/static/img/navbar-bg.png); */
   min-height: 66px;

  }

  .header-content #bumpy-container .hook.show {
   /* background-image: url(/static/img/navbar-bg.png); */
    margin-top: 1px;

  }

/* SEO */
  .no-header-content #bumpy-container .hook nav div.navbar-collapse {
    width: 0px;
  }
  .no-header-content #bumpy-container .hook nav div.show {
    width: unset; 
  }
}

/* stick-class is set by javascript. This keeps menu on top, until footed is coming up. */
.stick #bumpy-container {
  top: 0px;
  bottom: 100%;
  position: fixed!important; /* IE workaround. There is no sticky in IE. So scrap it. */
  position: -webkit-sticky!important; /* to make it work in Safari */
  position: sticky!important;
  z-index: 1000;
}

.ndavbar-toggleable .fluid-container .navbar-collapse {
  overflow: hidden;
  background: #fffc;
  font-size: 0.6em;
}

.ndavbar-toggleable .fluid-container {
  height: 0;
}

.xndavbar-toggleable {
  pointer-events: all;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.xndavbar-toggleable {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.ndavbar-toggleable .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.stick .ndavbar-toggleable {
  top: 0;
  margin-top: 66px;
  margin-bottom: 66px;
  position: fixed; /* IE workaround. There is no sticky in IE. So scrap it. */
  position: -webkit-sticky; /* to make it work in Safari */
  position: sticky;
  z-index: 1000;
  background-color: #fffc;
}

/* Collapse if no content -- unset is nice too, but IE does not know it */
.no-header-content #bumpy-container {
  bottom: auto; /* important */
  position: relative;
}

/* This is just styling */
#bumpy-container nav.primary .nav-link {
  font-size: 1.7em;
  color: #666;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 200;
}

/* Selected item in footer menu */
footer .selected > .nav-link {                                                    
  font-style: italic;                                                           
}                         
                                                      
footer .descendant .nav-link,
f {                                                    
  font-style: italic;                                                           
}                                                                               

/* Selected item in nav menu */
nav.secondary .selected .nav-link,                                              
#bumpy-container nav .ancestor .nav-link,
#bumpy-container nav .selected .nav-link {
  font-weight: 400;
}

nav.navbar {
  padding: 0;
}

nav.secondary {
  width: 100%;
  display: block;
}

nav.secondary ul {
  margin: auto;
  align-items: center;
}

nav .nav-link {
  font-size: 1em;
  color: #666;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 200;
  float: left;
}

nav .navbar-collapse  {
  height: 0;
  transition: height 1s ease-out;
}

.navbar-collapse {
    transition-duration: 0s !important;
}

#bumpy-container nav.secondary .navbar-collapse  {
  height: auto;
  z-index: 1000;
}

#bumpy-container nav.primary .navbar-collapse ul {
  overflow: hidden;
}

.navbar-dark .navbar-toggler,
.navbar-dark .menu-toggler {
   cursor: pointer;
   border: 1px solid #444;
   background: #444;
   color: #ddd;
   margin: 18px 18px 0 0;
   /* float: right; */
   top: 0;
   right: 0;
   position: absolute;
}
.menu-toggler i.icon {
  margin-right: 0;
  font-weight: bolder;
}

@media (min-width: 576px) {
  .hook .menu-toggler, .hook  .navbar-toggler {
    display: none;
  }

  .ndavbar-toggleable {
    top: 66px;
  }

  .header-content #bumpy-container nav.navbar-esssxpand .navbar-collapse ul.navbar-nav  {
     margin-top: 0px;
   } 

  .header-content nav .navbar-nav {
    margin-left: auto;
    margin-right: auto;
    margin-top: 66px 
  }

  /* SEO */
  nav.secondary .navbar-nav {
    margin-top: 0px;
  }
}

@media (min-width: 768px) {  
  .no-header-content #sticky-top-bar {
/*    height: 0!important; */
    display: none;
  }

  .no-header-content:not(.stick) #sticky-top-bar {
    top: 0!important;
  }

  .no-header-content #header-container {
    top: 0; 
    height: 66px !important;
  }

  .no-header-content #bumpy-container .hook {
    display: flex;
  }

  .no-header-content:not(.stick) #bumpy-container {
    pointer-events: none;
  }
  .no-header-content:not(.stick) #bumpy-container .ndavbar-toggleable {
    pointer-events: all;
  }
  .no-header-content:not(.stick) #bumpy-container .hook {
    pointer-events: all;
    width: 500px;
    float: right;
  }

  .no-header-content:not(.stick) #bumpy-container .ndavbar-toggleable {
    top: 66px!important;
  }
  .no-header-content:not(.stick) #bumpy-container {
    top: 0px!important;
  }

  .no-header-content:not(.stick) #bumpy-container .hook {
    background: none;
    width: 500px;
    float: right;
  }

  .no-header-content #bumpy-container .hook .navbar-nav {
    position: absolute;
    right: 10px;
    margin: 0 10px 0 0;
  }
}

nav.primary div div.navbar-collapse {
  display: block;
}

@media (max-width: 575px) {

  .no-header-content .navbar-toggleable-sm li.child:first-of-type {
     margin-top: 66px;
  }

  .navbar-toggleable-sm li.ancestor,
  .navbar-toggleable-sm .show li.child {
     margin-top: 0px !important;
  }

  nav.primary div div.navbar-collapse {
    overflow: hidden; 
  }

  nav .navbar-nav {
    margin: auto;
  }

  nav.primary div div.navbar-collapse {
    min-height: 66px;
    float: left;
  }

  nav.primary ul {
    padding-left: 0.5em;
  }

  nav.primary ul li.selected,
  nav.primary ul li.parent {
    display: block;
    position: absolute;  
  }

  nav.primary ul.navbar-nav {
    margin-top: 0.5em;
  }

  nav.primary ul li.ancestor,
  nav.primary ul li.selected {
    order: -1;
  }

  /* show all items when not collapsed */
  nav.primary .collapsing .child,
  nav.primary .navbar-collapse .child {
    display: flex;
    position: relative;
  }

  .no-header-content #bumpy-container .hook .navbar-nav .child {
     margin-right: 60px;
  }

  /* Break submenu items */
  nav.navbar-expand .navbar-nav {
    flex-flow: wrap;
    justify-content: center;
  }

  /* display vertically */
  .primary .navbar-expand .navbar-nav {
    -webkit-box-orient: vertical;
    -ms-flex-direction: unset;
    flex-direction: column;
    margin-bottom: 10px;
  } 

  nav.primary div.container .navbar-collapse {
   overflow-y: hidden;
  }

  #header-container #sticky-top-bar {
    display: block;
    transition: height 1s ease-out;
  }

  #header-container.show #sticky-top-bar {
    margin-bottom: var(--fold-menu-height);
  }

  .no-header-content #header-container.show #sticky-top-bar {
    margin-bottom: 67px; 
  }
}

@media (max-width: 767px) {
  .inline-brand {
    display: none;
  }
}

/* BASE */
.container {
  -moz-transition: width 0.5s ease-in-out, left 0.5s ease-in-out;
  -webkit-transition: width 0.5s ease-in-out, left 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out, left 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out, left 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, left 0.5s ease-in-out;
}

.go-for-height img {
  width: unset;
  height: 100%
}

video {
  overflow: hidden;
  display: flex;
  width: 100vw;
  height: -webkit-fill-available;
  height: fill-available;
  height: -moz-available;
  height: 100vh;
  width: -webkit-fill-available;
  width: fill-available;
  width: -moz-available;
  object-fit: cover;
  margin: auto!important;
}

.header-container  {
  z-index: unset;
} 

/* BEGIN - video in foreground when playing */
#upper-header .playing {
  z-index: 9999999;
} 

main.container .container {
  position: relative;
}

/* BEGIN FooterMenu */
footer .widget {
  padding-top: 10px;
}
	
@media (max-width: 575px) {
  footer .widget {
    padding-top: 10px;
    margin: auto;
    width: min-content;
  }
}

footer .menu {
  text-align: center;
  padding-top: 2em;
}

footer .menu div {
  padding-top: 2em;  
}

footer .menu li {
  padding-bottom: 0;
}

footer .nav-link  { 
  color: #ffffff;	
  padding: 5px 0 5px 0;
  font-size: 1em;
  text-transform: uppercase;
}
footer .menu li li a {
  color: #6d6e70;
  text-transform: unset;
}

footer .textwidget p {
  line-height: 1.3em;
  font-size: 2em;
  text-align: center;
}

footer #copyright .div {
  word-wrap: normal;
}

footer a.static-back-to-top {
  text-decoration: none;
  clear: both;
}
  
footer a.static-back-to-top {
  color: #ffffff; 
}

footer .static-back-to-top i {
  text-align: center;
  display: block; 
  line-height: 1.4em;
  font-size: 3em;
  margin: auto;
}

footer .footer-side p {
  font-size: 1.35em;
  font-weight: 300;
  line-height: 1.4em;
  text-align: center;
}

footer .footer-side a {
  color: #0275d8;
  white-space: nowrap;
  font-weight: 400;
}

footer section .center p {
  width: max-content;
  margin: auto;
}

/* END FooterMenu */
img.img-responsive {
  width: 100%;
}

/* BEGIN PageMenu */
.circle-menu .circle a {
  width: max-content;
  margin: auto;
}

.circle-menu .menu-text {
    max-width: 400px;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    margin: 0 15px 0 15px;
}

.circle-menu .odd .menu-text {
    float: right;
    text-align: right;
}

.menu-image {
  position: relative;
}

@media (min-width: 768px) {
  .circle-menu div.even .menu-image {
    float: right;
  }

  .circle-menu div.even:first-child {
    left: 50%;
  }

  .circle-menu div.even:last-child {
    right: 50%;
  }
  
  .circle-menu div.even img {
   float: right;
  } 
}

.menu-claim {
  pointer-events: none;
  position: absolute;
  width: 300px;
  height: 300px;
  display: table;
  top: 0;
}

@media (max-width: 767px) {
  .circle-menu div.odd .menu-image,
  .circle-menu div.odd img {
    float: right;
  }
	
  .menu-claim {
    width: 300px;
  }
}

.circle-menu {
  overflow: hidden;
}

h1,
.circle-menu a.nav-link {
  font-size: 2.5em;
  font-weight: 200;
  padding: 0;
  color: #26a1d8;
}

h2 {
  font-size: 2.0em;
  font-family: Raleway, sans-serif;
  font-weight: 400;
  color: #26a1d8;
  margin-top: 5px;
}

.circle-menu a.nav-link:hover {
  font-weight: 100;
  color: orange !important;
}

.circle-menu .row {
  margin: 50px -15px;
}

.menu-claim p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 4em;
  padding: 0 50px;
  line-height: 1em;
  color: #fff;
  font-weight: lighter;
  text-shadow: 2px 2px orange;
}

/* END PageMenu */

.carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.carousel img {
    width: 100%;
    height: 100%;
}

/* center stoerer */
.row center hr {
  width: 150px;
  border: 0;
  height: 1px;
  color: #26a1d8;
  background-color: #26a1d8;
  margin: 14px auto;
}

.row center {
  font-weight: 100;
  font-size: 1.7em;
}


/* BEGIN - Error right of form label */
main ul {
  padding-left: 3em;
  
}
main ul li {
  list-style: unset;
}

form .control-label {
  width: 100%;
}

form .control-label .errorlist {
  float: right;
  display: flex;
  font-weight: 700;
  color: #f00;
  list-style: none;
}

.btn-primary,
.event-date-button {
  background-color: #007bff;
}

.form-control {
  border: 1px solid #ced4da;
  border-radius: 4px;
  color: unset;
}

.form-control:focus {
  color: unset;
}

.event-dates-list .btn:not(:disabled):not(.disabled) {
  background: none;
}

form .btn:not(:disabled):not(.disabled) {
  color: #fff;
}
/* END - Error right of form label */

.app-bookingsystem form .help span {
  font-family: monospace;
  font-size: smaller;
  font-weight: 700;
}

.language-chooser {
    float: right;
  margin-top: 2em;
}

.language-chooser li {
  list-style-type: none;
  border: solid 1px #0bf;
  float: left;
  border-radius: 5px;
  padding: 0px 5px;
  margin-left: 5px;
}

.language-chooser a {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  width: 2ch;
  font-family: monospace;
  text-transform: uppercase;
}

.language-chooser a:hover {
  font-weight: bold;
}
.language-chooser li:hover {
  background: #0bf;
}

.language-chooser li.active {
  background: #0bf;
  font-weight: bold;
}

.language-chooser li.active a {
  color: white;
}
    
.static-back-to-top {
  display: none;
}

.brands .col {
  text-align: center;
}

.no-header-content #bumpy-container .hook {
  display: block;
  width: 100%;
  float: left;
}

.no-header-content #bumpy-container .hook .logo {
  width: auto; 
  display: block;
  float: left;
}

.no-header-content #bumpy-container .hook nav.navbar-expand-sm {
  width: auto;
  float: right;
  min-height: 66px; 
  top: 1px;
}

.no-header-content #bumpy-container .hook .navbar-nav {
  position: unset;
}

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

main.container div.container {
  display: inline-block;
}

/* ========================================================================== */
/* FsObb Website more Styles                                                  */
/* -------------------------------------------------------------------------- */
/* Feel free adding stuff.                                                    */
/* ========================================================================== */

main .container p a {
  font-style: italic; /* Links, when in content, are italic. (#6) */
}

.fluid-container {
   width: 100% /* stuff can be easily centered */
}

.btn-link {
  color: #26a1d8 !important; /* Override bootstrap's blue. (#6) */
}

.nav-item a:hover,
a:hover {
  /*  font-weight: bold; */ /* Override bootstrap's blue. (#6) */
  color: #fa0 !important;

} 


/* ========================================================================== */
/* BEGIN HINT                                                                 */
/* ========================================================================== */
.edit-hint {
    position: relative;
    padding: 20px;
    background-color: orange;
    margin: 0;
    color: yellow;
}

.no-header-content .edit-hint {
    margin-top: 46px;
}

@media (min-width: 768px) {
    .no-header-content .edit-hint {
        margin-bottom: 66px;
    }
}
/* ========================================================================== */
/* END HINT                                                                 */
/* ========================================================================== */

/* Airflow footer */
.afv-footer { display: none!important; }

#afv-simulator {
  text-align: center;
}

#simulator svg {
  max-height: 100vh;
  display: inline-block;
}

/* ========================================================================== */
/* BEGIN OVERLAY                                                              */
/* ========================================================================== */
.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 12345;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: 0.5s;
}
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}
.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
/* ========================================================================== */
/* END OVERLAY                                                                */
/* ========================================================================== */

/* workaround for some layout issues: */
.vspace {
    height: 3em;
}

