/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 0.938em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
    font-family: 'Muli', sans-serif;
    font-size: 1em;
    background: #F2EBDE;
}

html, body {
    height: 100%;
}

#contentpriceOmeter {
    background: #ffffff none repeat scroll 0 0;
    padding: 50px 0;
}
#contentpriceOmeter h3 {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}
#contentpriceOmeter h3::after {
    background: #000000 none repeat scroll 0 0;
    content: "";
    display: block;
    height: 2px;
    margin: 20px auto;
    width: 90px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


#logo img{
	max-height: 50px;
}

#language ul li {
    float: left;
    list-style-type: none;
    margin-left: 5px;
}

#language ul li img {
    width: 16px;
    height: 11px;
}

#homepage {
    height: 100%;
    overflow: hidden;
    position: relative;
}

#homepage .container {
    height: 100%;
    position: relative;
}

#homepage .container #language{
	position: absolute;
	right: 27px;
	top: 100px;
}

#homepage .container .page-title{
	margin-top: 20%;
	background-color: #FFFFFF;
	color: #171717;
	padding: 15px 13px 15px 20px;
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
}



#homepage .down {
  display: block;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -30px;
  background: url('../Images/go_down.png') no-repeat 0 0;
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  -ms-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
  -o-animation-direction: normal;
  -ms-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  -ms-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  margin-bottom: 50px;
      margin-top: 175px;
}
#homepage .down:hover {
  -webkit-animation-name: none;
  -moz-animation-name: none;
  -o-animation-name: none;
  -ms-animation-name: none;
  animation-name: none;
  background-position: 0 -60px;
}

@-moz-keyframes bounce {
  0% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  80% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes bounce {
  0% {
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  80% {
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes bounce {
  0% {
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  80% {
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(0);
  }

  60% {
    transform: translateY(-15px);
  }

  80% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

.container:after {
    clear: both;
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
}

#content{
	background: #fff;
	text-align: center;
	padding: 50px 0;
}

#content ul li{
	list-style-position: inside;
}

.slider{
	display: none;
}

.section hr{
	border-top: 2px solid #000;
	width: 90px;
	margin-left: auto;
	margin-right: auto;
}

h1{
	text-transform: uppercase;
}

#kontakt{
	background: #F9F9F9;
	padding: 50px 0;
}

#kontakt h5{
	text-align: center;
	font-size: 36px;
}

#kontakt h5::after {
    background: #000000 none repeat scroll 0 0;
    content: "";
    display: block;
    height: 2px;
    margin: 20px auto;
    width: 90px;
}

#kontakt li{
	list-style: none;
	line-height: 160%;
}

#kontakt li a{
	text-decoration: none;
	color: #333;
}

#kontakt li a:hover{
	text-decoration: underline;
	color: #333;
}


#smallsearch{
	background: #353526;
	padding: 20px 0;
}

#footernav, #map{
	background: #fff;
}

#footernav{
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 1em;
}


#mapLink {
    position: relative;
}

#mapLink a {
		position: absolute; 
		background: rgba(255,255,255,0.90); 
		padding: 10px 16px; 
		right: 100px; 
		margin-top: 5px; 
		color: #333; 
		z-index: 10; 
    top: 200px;
    padding: 15px 30px;
}

#map_canvas {
    height: 300px;
    z-index: 1;
}

.eb_smallsearch h3 {
    color: #FFFFFF;
    font-size: 1em;
    float: right;
    margin: 12px 0px;
}

.eb_smallsearch form{
	width: 100%;
}

.eb_smallsearch .arrival input, .eb_smallsearch .departure input {
    color: #666666;
    font-size: 0.923em;
    height: 30px;
    line-height: 23px;
    padding-left: 5px;
    width: 100%;
    margin: 5px 0;
}

.eb_smallsearch .datepicker {
    background: url("../Images/datepicker.png") no-repeat scroll right 3px top 3px #FFFFFF;
    border: 0 none;
}

.eb_smallsearch .submitButton  {
    background: none repeat scroll 0 0 #666;
    border: 0 none;
    border-radius: 0;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 1em;
    padding: 5px 15px;
    margin: 5px 2px;
}

.eb_smallsearch .anfrage {
	background: none repeat scroll 0 0 #429DCC;
}

.eb_smallsearch .buchen {
	background: none repeat scroll 0 0 #83B669;
}


#contentpriceOmeter {
    background: none repeat scroll 0% 0% #FFF;
    padding: 50px 0px;
}

.navbar-brand {
    min-height: 100%;
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

.navbar-nav > li > a {
    position: relative;
    display: block;
    color: #777;
    text-transform: uppercase;
    font-size: 18px;
    padding: 26px 10px;
    transition: all 0.5s ease;
    text-decoration: none;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    background-color: #FFFFFF;
}

.navbar-nav .dropdown-menu{
    padding: 1rem;
}



/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}


@media (max-width: 960px){ 
.ch_navigation ul a, .ch_navigation ul a:link, .ch_navigation ul a:visited, .ch_navigation ul span.active {
    padding: 9px 3px;

}

.csc-textpic-image img{
	margin-bottom: 10px;
}

.eb_smallsearch h3 {
float: left;
}

.navbar-nav > li > a {
    font-size: 16px;
    padding: 26px 8px;
}

}


@media (max-width: 760px){  

#homepage .container .page-title{
	margin-top: 50%;
	font-size: 16px;
}

#homepage .down{
	bottom: -30px;
}

#homepage #prevslide, #homepage #nextslide{
	display: none;
}

.navbar-nav > li > a {
    font-size: 16px;
    padding: 10px;
}

.navbar-nav {
    float: none;
}

.navbar-default .navbar-nav > li > a{
    display: block
}

.additional_slider{
	display: none;
}
	    
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

.tx-webx-easybooking-widget .booking { position: relative; }

   /* ==========================================================================
    Map
    ========================================================================== */
    .changecookiepreferences {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #9d9d9d;
    }