/* Minification failed. Returning unminified contents.
(5790,31): run-time error CSS1055: Expected media-query expression, found 'only'
(5801,31): run-time error CSS1055: Expected media-query expression, found 'only'
 */
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus,
  .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/css/vendor/photoswipe/default-skin/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/css/vendor/photoswipe/default-skin/default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(/css/vendor/photoswipe/default-skin/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
}
.form-control {
  display: block;
  width: 100%;
  height: 38px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 38px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 33px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 49px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 24px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 40px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.input-sm {
  height: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 33px;
  line-height: 33px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 33px;
  line-height: 33px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 33px;
  min-height: 38px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1.5;
}
.input-lg {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 49px;
  line-height: 49px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 49px;
  line-height: 49px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 49px;
  min-height: 44px;
  padding: 11px 16px;
  font-size: 20px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 47.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 49px;
  height: 49px;
  line-height: 49px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 33px;
  height: 33px;
  line-height: 33px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 29px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 650px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 31px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 650px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 650px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 20px;
  }
}
@media (min-width: 650px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 14px;
  }
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 310px;
  padding: 1px;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 16px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #c8beac;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 16px;
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #c8beac;
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #c8beac;
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #c8beac;
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #c8beac;
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fdfcfa;
  border: 1px solid #c8beac;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #c8beac;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 9px;
  border-bottom: 1px solid #c8beac;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  padding: 9px;
}
.modal-footer {
  padding: 9px;
  text-align: right;
  border-top: 1px solid #c8beac;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 650px) {
  .modal-dialog {
    width: 630px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 310px;
  }
}
@media (min-width: 990px) {
  .modal-lg {
    width: 950px;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.clearfix:before,
.clearfix:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.row:before,
.row:after,
.thumb-text:before,
.thumb-text:after,
.booklets:before,
.booklets:after,
.img-grid:before,
.img-grid:after,
.tour-highlights:before,
.tour-highlights:after,
.faq-section:before,
.faq-section:after,
.level:before,
.level:after,
.tiles:before,
.tiles:after,
.img-grid-testival:before,
.img-grid-testival:after,
.forum-tours:before,
.forum-tours:after,
.forum-nav:before,
.forum-nav:after,
.hotel-header:before,
.hotel-header:after,
.product-listing-item:before,
.product-listing-item:after,
.site-footer-nav:before,
.site-footer-nav:after {
  content: " ";
  display: table;
}
.clearfix:after,
.form-horizontal .form-group:after,
.modal-header:after,
.modal-footer:after,
.dl-horizontal dd:after,
.row:after,
.thumb-text:after,
.booklets:after,
.img-grid:after,
.tour-highlights:after,
.faq-section:after,
.level:after,
.tiles:after,
.img-grid-testival:after,
.forum-tours:after,
.forum-nav:after,
.hotel-header:after,
.product-listing-item:after,
.site-footer-nav:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 649px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 649px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 649px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 649px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 650px) and (max-width: 989px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 650px) and (max-width: 989px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 650px) and (max-width: 989px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 650px) and (max-width: 989px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 990px) and (max-width: 1299px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 990px) and (max-width: 1299px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 990px) and (max-width: 1299px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 990px) and (max-width: 1299px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1300px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1300px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1300px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1300px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 649px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 650px) and (max-width: 989px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 990px) and (max-width: 1299px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1300px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
@font-face {
  font-family: 'icons';
  src: url('/css/vendor/icomoon/fonts/icons.ttf?7n61bz') format('truetype'), url('/css/vendor/icomoon/fonts/icons.woff?7n61bz') format('woff'), url('/css/vendor/icomoon/fonts/icons.svg?7n61bz#icons') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* roboto-300 - latin-ext_latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/roboto-v29-latin-ext_latin-300.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/roboto-v29-latin-ext_latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/roboto-v29-latin-ext_latin-300.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-300.woff') format('woff'), /* Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/roboto-v29-latin-ext_latin-300.svg#Roboto') format('svg');
  /* Legacy iOS */
}
/* roboto-300italic - latin-ext_latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  src: url('/fonts/roboto-v29-latin-ext_latin-300italic.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/roboto-v29-latin-ext_latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/roboto-v29-latin-ext_latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-300italic.woff') format('woff'), /* Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/roboto-v29-latin-ext_latin-300italic.svg#Roboto') format('svg');
  /* Legacy iOS */
}
/* roboto-regular - latin-ext_latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/roboto-v29-latin-ext_latin-regular.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/roboto-v29-latin-ext_latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/roboto-v29-latin-ext_latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/roboto-v29-latin-ext_latin-regular.svg#Roboto') format('svg');
  /* Legacy iOS */
}
/* roboto-italic - latin-ext_latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/roboto-v29-latin-ext_latin-italic.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/roboto-v29-latin-ext_latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/roboto-v29-latin-ext_latin-italic.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-italic.woff') format('woff'), /* Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/roboto-v29-latin-ext_latin-italic.svg#Roboto') format('svg');
  /* Legacy iOS */
}
/* roboto-700 - latin-ext_latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/roboto-v29-latin-ext_latin-700.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/roboto-v29-latin-ext_latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/roboto-v29-latin-ext_latin-700.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-700.woff') format('woff'), /* Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/roboto-v29-latin-ext_latin-700.svg#Roboto') format('svg');
  /* Legacy iOS */
}
/* roboto-500 - latin-ext_latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/roboto-v29-latin-ext_latin-500.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/roboto-v29-latin-ext_latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/roboto-v29-latin-ext_latin-500.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-500.woff') format('woff'), /* Modern Browsers */ url('/fonts/roboto-v29-latin-ext_latin-500.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/roboto-v29-latin-ext_latin-500.svg#Roboto') format('svg');
  /* Legacy iOS */
}
/* roboto-slab-300 - latin-ext_latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/roboto-slab-v22-latin-ext_latin-300.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/roboto-slab-v22-latin-ext_latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/roboto-slab-v22-latin-ext_latin-300.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/roboto-slab-v22-latin-ext_latin-300.woff') format('woff'), /* Modern Browsers */ url('/fonts/roboto-slab-v22-latin-ext_latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/roboto-slab-v22-latin-ext_latin-300.svg#RobotoSlab') format('svg');
  /* Legacy iOS */
}
/* roboto-slab-regular - latin-ext_latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/roboto-slab-v22-latin-ext_latin-regular.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/roboto-slab-v22-latin-ext_latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/roboto-slab-v22-latin-ext_latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/roboto-slab-v22-latin-ext_latin-regular.woff') format('woff'), /* Modern Browsers */ url('/fonts/roboto-slab-v22-latin-ext_latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/roboto-slab-v22-latin-ext_latin-regular.svg#RobotoSlab') format('svg');
  /* Legacy iOS */
}
/* roboto-slab-700 - latin-ext_latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/roboto-slab-v22-latin-ext_latin-700.eot');
  /* IE9 Compat Modes */
  src: local(''), url('/fonts/roboto-slab-v22-latin-ext_latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/fonts/roboto-slab-v22-latin-ext_latin-700.woff2') format('woff2'), /* Super Modern Browsers */ url('/fonts/roboto-slab-v22-latin-ext_latin-700.woff') format('woff'), /* Modern Browsers */ url('/fonts/roboto-slab-v22-latin-ext_latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ url('/fonts/roboto-slab-v22-latin-ext_latin-700.svg#RobotoSlab') format('svg');
  /* Legacy iOS */
}
/**
 * Owl Carousel v2.1.6
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  display: none;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("vendor/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.owl-theme {
  position: relative;
}
.owl-theme .owl-nav {
  margin: 0 0 10px;
  position: absolute;
  right: 0;
  bottom: 100%;
}
.owl-theme .owl-next,
.owl-theme .owl-prev {
  padding: 7px 7px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 5px;
  background-image: none;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-align: left;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  color: #333333;
  background-color: #fdfcfa;
  border-color: #fdfcfa;
  color: #b4a68d;
  font-size: 20px;
  line-height: 1.2;
}
.owl-theme .owl-next:focus,
.owl-theme .owl-prev:focus,
.owl-theme .owl-next:hover,
.owl-theme .owl-prev:hover {
  color: #333333;
}
.owl-theme .owl-next i,
.owl-theme .owl-prev i {
  vertical-align: bottom;
}
.owl-theme .owl-next:focus,
.owl-theme .owl-prev:focus,
.owl-theme .owl-next:hover,
.owl-theme .owl-prev:hover {
  color: #333333;
}
.owl-theme .owl-next i,
.owl-theme .owl-prev i {
  vertical-align: bottom;
}
.owl-theme .owl-next:focus,
.owl-theme .owl-prev:focus,
.owl-theme .owl-next:hover,
.owl-theme .owl-prev:hover {
  color: #9f8e6f;
}
.owl-theme .owl-next:focus,
.owl-theme .owl-prev:focus,
.owl-theme .owl-next:hover,
.owl-theme .owl-prev:hover {
  color: #9f8e6f;
}
@media (min-width: 650px) {
  .owl-theme .owl-next,
  .owl-theme .owl-prev {
    font-size: 24px;
    line-height: 1.25;
  }
}
@media (min-width: 990px) {
  .owl-theme .owl-next,
  .owl-theme .owl-prev {
    font-size: 32px;
  }
}
.owl-theme .owl-next.disabled,
.owl-theme .owl-prev.disabled {
  opacity: 0.25;
  filter: alpha(opacity=25);
}
.owl-theme .owl-next i,
.owl-theme .owl-prev i {
  display: block;
}
.owl-theme .owl-next {
  margin-left: 15px;
}
.owl-theme-boxes .owl-nav {
  right: 10px;
}
@media (min-width: 650px) {
  .owl-theme-boxes .owl-nav {
    right: 20px;
  }
}
.owl-theme-thumbs {
  right: 5px;
}
.owl-theme-wide .owl-stage-outer {
  overflow: visible;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #333333;
  background-color: #f7f3ec;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #090;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #333333;
  text-decoration: none;
}
a:focus {
  outline: 0 !important;
}
img {
  vertical-align: middle;
}
hr {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  border: none;
  border-top: 2px solid #c8beac;
}
.clip {
  overflow: hidden;
}
.text-two-cols {
  margin-top: 12px;
}
.text-two-cols p {
  margin-top: 0;
  margin-bottom: 12px;
}
@media (min-width: 990px) {
  .text-two-cols {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
.page-heading {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300;
  margin-top: 48px;
  margin-bottom: 0;
  position: relative;
}
@media (min-width: 650px) {
  .page-heading {
    font-size: 24px;
    line-height: 1.25;
  }
}
@media (min-width: 990px) {
  .page-heading {
    font-size: 32px;
  }
}
.page-heading-flagline {
  margin-top: 72px;
}
.page-heading-flagline .flagline {
  font-size: 12px;
  line-height: 2;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #333333;
  position: absolute;
  bottom: 100%;
  left: 0;
}
.page-heading-flagline .flagline a {
  white-space: nowrap;
}
.carousel-heading {
  margin-bottom: 18px;
}
@media (min-width: 990px) {
  .carousel-heading {
    margin-bottom: 15px;
  }
}
.carousel-heading.heading-flagline {
  margin-top: 48px;
}
.carousel-heading.heading-flagline .flagline {
  display: none;
}
.heading-flagline {
  position: relative;
}
.heading-flagline .flagline {
  font-size: 16px;
  line-height: 1.5;
  font-weight: lighter;
  position: absolute;
  bottom: 100%;
  left: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Roboto Slab", Georgia, "Times New Roman", Times, serif;
  font-weight: bold;
  line-height: 1.25;
  color: #006600;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
  text-decoration: underline;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.h1 a:hover,
.h2 a:hover,
.h3 a:hover,
.h4 a:hover,
.h5 a:hover,
.h6 a:hover {
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small {
  font-weight: lighter;
  font-weight: 300;
}
h2,
.h2 {
  border-bottom: 2px #c8beac solid;
  padding-bottom: 0.25em;
}
h2,
.h2,
h3,
.h3 {
  font-size: 18px;
  line-height: 1.33333333;
  margin: 48px 0 0;
}
@media (min-width: 650px) {
  h2,
  .h2,
  h3,
  .h3 {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (min-width: 990px) {
  h2,
  .h2,
  h3,
  .h3 {
    font-size: 24px;
    line-height: 1.25;
  }
}
h2.heading-flagline,
.h2.heading-flagline,
h3.heading-flagline,
.h3.heading-flagline {
  margin-top: 72px;
}
h5,
.h5 {
  font-size: 16px;
  line-height: 1.5;
  margin: 48px 0 0;
}
h6,
.h6 {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 48px 0 0;
}
.with-button {
  line-height: 40px;
}
.with-button .btn {
  float: right;
  margin-left: 15px;
}
.spacing-no {
  margin-top: 0;
}
@media (min-width: 650px) {
  .spacing-sm-no {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .spacing-md-no {
    margin-top: 0;
  }
}
.spacing-p {
  margin-top: 12px;
}
@media (min-width: 650px) {
  .spacing-sm-p {
    margin-top: 12px;
  }
}
.spacing-h {
  margin-top: 48px;
}
.spacing-big {
  margin-top: 96px;
}
p {
  margin: 24px 0 0;
  margin: 12px 0 0;
}
.lnk-more {
  color: inherit;
  text-decoration: underline;
  padding-left: 1.25em;
  position: relative;
}
.lnk-more:before {
  content: "\c2bb\00a0";
  position: absolute;
  left: 0;
}
.lnk-ext:before {
  font-family: icons;
  font-size: smaller;
  content: "\f08e\00a0";
}
.lnk-int:before {
  font-family: icons;
  content: "\f090\00a0";
}
small,
.small {
  font-size: 87%;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #979797;
}
.text-primary {
  color: #006600;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #003300;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #006600;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #003300;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
ul,
ol {
  margin: 24px 0 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: 15px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
}
.list-ruled {
  padding-left: 0;
  list-style: none;
}
.list-ruled > li {
  margin-top: 0.75em;
}
.list-ruled > li + li {
  border-top: 1px #ccc dotted;
  padding-top: 0.75em;
}
dl {
  margin: 1.5em 0 0;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 990px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #979797;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.container,
.site-footer {
  margin: 0 auto;
  width: 320px;
  padding: 0 15px;
}
@media (min-width: 650px) {
  .container,
  .site-footer {
    width: 640px;
  }
}
@media (min-width: 990px) {
  .container,
  .site-footer {
    width: 960px;
  }
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 650px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 990px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
.control-label {
  font-weight: normal;
}
.mandatory label,
.mandatory .control-label {
  font-weight: bold;
}
.mandatory label:after,
.mandatory .control-label:after {
  content: "\00a0*";
}
#asdstate {
  display: none;
}
#asdcountry {
  display: none;
}
.icn {
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
}
.icn-sm {
  width: 16px;
  height: 16px;
  background-size: contain;
}
.icn-benefit {
  background-image: url("/img/layout/i/plus-red.svg");
}
.icn-chevron-left {
  background-image: url("/img/layout/i/chevron-left.svg");
}
.icn-chevron-right {
  background-image: url("/img/layout/i/chevron-right.svg");
}
.icn-chevron-up {
  background-image: url("/img/layout/i/chevron-up.svg");
}
.icn-close {
  background-image: url("/img/layout/i/close.svg");
}
.icn-info {
  -webkit-background-size: 16px;
  -moz-background-size: 16px;
  -o-background-size: 16px;
  background-size: 16px;
  background-image: url("/img/layout/i/info.svg");
  background-position: 50% 2px;
}
.icn-list {
  background-image: url("/img/layout/i/list.svg");
}
.icn-map {
  background-image: url("/img/layout/i/map.svg");
}
.icn-more {
  background-image: url("/img/layout/i/plus.svg");
}
.icn-more-white {
  background-image: url("/img/layout/i/plus-white.svg");
}
.icn-benefit {
  width: 11px;
  height: 11px;
  background-image: url("/img/layout/i/plus-red.svg");
  vertical-align: baseline;
}
.icn-profile {
  background-image: url("/img/layout/i/profile.svg");
}
.icn-facebook {
  background-image: url("https://img.go-alps.de/img/layout/i/facebook.png?width=24");
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icn-facebook {
    background-image: url("https://img.go-alps.de/img/layout/i/facebook.png?width=48");
    background-size: 24px 24px;
  }
}
.icn-instagram {
  background-image: url("https://img.go-alps.de/img/layout/i/instagram.png?width=24");
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icn-instagram {
    background-image: url("https://img.go-alps.de/img/layout/i/instagram.png?width=48");
    background-size: 24px 24px;
  }
}
.icn-youtube {
  background-image: url("https://img.go-alps.de/img/layout/i/youtube.png?width=24");
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icn-youtube {
    background-image: url("https://img.go-alps.de/img/layout/i/youtube.png?width=48");
    background-size: 24px 24px;
  }
}
.icn-podcast {
  background-image: url("https://img.go-alps.de/img/layout/i/podcast.png?width=20");
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icn-podcast {
    background-image: url("https://img.go-alps.de/img/layout/i/podcast.png?width=40");
    background-size: 20px 20px;
  }
}
.icn-menu-down {
  background-image: url("/img/layout/i/menu-down.svg");
}
.icn-pdf {
  background-image: url("/img/layout/i/pdf.svg");
}
.icn-play {
  background-image: url("/img/layout/i/play.svg");
}
.icn-pdf-white {
  background-image: url("/img/layout/i/pdf-white.svg");
}
.icn-phone {
  background-image: url("/img/layout/i/phone.svg");
}
.box-warning .icn-phone {
  background-image: url("/img/layout/i/phone-warning.svg");
}
.icn-benefit {
  background-image: url("/img/layout/i/plus-ebike.svg");
}
.btn,
.tour-info-dates__filter {
  padding: 7px 7px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 5px;
  background-image: none;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-align: left;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  color: #333333;
}
.btn:focus,
.btn:hover {
  color: #333333;
}
.btn i {
  vertical-align: bottom;
}
.btn-light {
  background-color: #fdfcfa;
  border-color: #fdfcfa;
  color: #b4a68d;
}
.btn-light:focus,
.btn-light:hover {
  color: #9f8e6f;
}
.btn-dark {
  background-color: #c8beac;
  border-color: #c8beac;
  color: white;
}
.btn-dark:focus,
.btn-dark:hover {
  color: white;
}
.btn-cta,
.btn-submit {
  background-color: #aed85d;
  color: white;
}
.btn-cta:focus,
.btn-submit:focus,
.btn-cta:hover,
.btn-submit:hover {
  color: white;
}
.btn-overlay {
  background-color: rgba(253, 252, 250, 0.5);
  z-index: 10;
}
.btn-booking {
  background-color: #aed85d;
  background-color: #090;
  color: white;
}
.btn-booking:focus,
.btn-booking:hover {
  color: white;
}
.btn-booking:focus,
.btn-booking:hover {
  color: white;
}
.btn-heading {
  float: right;
  font-size: 16px;
  line-height: 1;
  margin-left: 24px;
  text-decoration: none;
}
.btn-checkout-current {
  background-color: #aed85d;
  background-color: #090;
  color: white;
  cursor: default;
}
.btn-checkout-current:focus,
.btn-checkout-current:hover {
  color: white;
}
.btn-checkout-current:focus,
.btn-checkout-current:hover {
  color: white;
}
.btn-checkout-enabled {
  background-color: #c8beac;
  border-color: #c8beac;
  color: white;
}
.btn-checkout-enabled:focus,
.btn-checkout-enabled:hover {
  color: white;
}
.btn-checkout-enabled:focus,
.btn-checkout-enabled:hover {
  color: white;
}
.btn-checkout-disabled {
  background-color: #fdfcfa;
  border-color: #fdfcfa;
  color: #b4a68d;
  cursor: default;
}
.btn-checkout-disabled:focus,
.btn-checkout-disabled:hover {
  color: #9f8e6f;
}
.btn-checkout-disabled:focus,
.btn-checkout-disabled:hover {
  color: #9f8e6f;
}
.btn-checkout-disabled:focus,
.btn-checkout-disabled:hover {
  color: #b4a68d;
}
.btn,
.tour-info-dates__filter {
  padding: 7px 7px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 5px;
  background-image: none;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-align: left;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  color: #333333;
}
.btn:focus,
.btn:hover {
  color: #333333;
}
.btn i {
  vertical-align: bottom;
}
.btn-light {
  background-color: #fdfcfa;
  border-color: #fdfcfa;
  color: #b4a68d;
}
.btn-light:focus,
.btn-light:hover {
  color: #9f8e6f;
}
.btn-dark {
  background-color: #c8beac;
  border-color: #c8beac;
  color: white;
}
.btn-dark:focus,
.btn-dark:hover {
  color: white;
}
.btn-cta,
.btn-submit {
  background-color: #090;
  color: white;
}
.btn-cta:focus,
.btn-submit:focus,
.btn-cta:hover,
.btn-submit:hover {
  color: white;
}
.btn-overlay {
  background-color: rgba(253, 252, 250, 0.5);
  z-index: 10;
}
.btn-booking {
  background-color: #aed85d;
  background-color: #090;
  color: white;
}
.btn-booking:focus,
.btn-booking:hover {
  color: white;
}
.btn-booking:focus,
.btn-booking:hover {
  color: white;
}
.btn-heading {
  float: right;
  font-size: 16px;
  line-height: 1;
  margin-left: 24px;
  text-decoration: none;
}
.btn-checkout-current {
  background-color: #aed85d;
  background-color: #090;
  color: white;
  cursor: default;
}
.btn-checkout-current:focus,
.btn-checkout-current:hover {
  color: white;
}
.btn-checkout-current:focus,
.btn-checkout-current:hover {
  color: white;
}
.btn-checkout-enabled {
  background-color: #c8beac;
  border-color: #c8beac;
  color: white;
}
.btn-checkout-enabled:focus,
.btn-checkout-enabled:hover {
  color: white;
}
.btn-checkout-enabled:focus,
.btn-checkout-enabled:hover {
  color: white;
}
.btn-checkout-disabled {
  background-color: #fdfcfa;
  border-color: #fdfcfa;
  color: #b4a68d;
  cursor: default;
}
.btn-checkout-disabled:focus,
.btn-checkout-disabled:hover {
  color: #9f8e6f;
}
.btn-checkout-disabled:focus,
.btn-checkout-disabled:hover {
  color: #9f8e6f;
}
.btn-checkout-disabled:focus,
.btn-checkout-disabled:hover {
  color: #b4a68d;
}
@media (min-width: 650px) {
  .popover {
    max-width: 630px;
  }
}
.popover-title {
  padding: 12px 9px 6px;
  border-bottom: none;
}
.popover-content {
  padding: 6px 9px 12px;
}
.popover-content > *:first-child {
  margin-top: 0;
}
.popover-content p {
  margin-top: 12px;
}
.popover-content th,
.popover-content td {
  padding-left: 30px;
  text-align: right;
}
.popover-content th:first-child,
.popover-content td:first-child {
  padding-left: 0;
  text-align: left;
}
.popover-content td {
  border-top: 1px solid #eee;
}
.modal-dialog {
  margin: 50px 5px;
}
@media (min-width: 650px) {
  .modal-dialog {
    margin-left: auto;
    margin-right: auto;
  }
}
.modal-content {
  padding: 9px;
}
@media (min-width: 990px) {
  .modal-xl {
    width: 950px;
  }
}
@media (min-width: 1300px) {
  .modal-xl {
    width: 1270px;
  }
}
.modal-dialog > header {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-bottom: 5px;
}
.modal-dialog > footer {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 5px;
}
.modal-media .modal-body {
  padding: 0;
}
.modal-media img,
.modal-media object {
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-dates .modal-content {
  padding-top: 0;
}
.modal-dates .modal-content h3,
.modal-dates .modal-content h5 {
  margin: 24px 0 0;
}
.modal-dates .modal-content h5 {
  color: #333333;
}
.modal-dates .modal-content strong {
  font-weight: normal;
}
.modal-levels .modal-content {
  padding-top: 0;
}
.modal-levels .modal-content h3 {
  margin: 24px 0 0;
}
.paper {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
}
.box {
  border-radius: 5px;
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px;
}
.box:before,
.box:after {
  content: " ";
  display: table;
}
.box:after {
  clear: both;
}
.box:before,
.box:after {
  content: " ";
  display: table;
}
.box:after {
  clear: both;
}
@media (min-width: 650px) {
  .box {
    margin-left: -20px;
    margin-right: -20px;
    padding: 20px;
  }
}
.box-light {
  background-color: #fdfcfa;
}
.box-dark {
  background-color: #c8beac;
}
.box-error {
  background-color: #f2dede;
}
.box-warning {
  background-color: #fcf8e3;
  border: 1px solid #8a6d3b;
  color: #8a6d3b;
}
.thumb-text {
  margin-left: -15px;
  margin-right: -15px;
}
.thumb-text-thumb {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 48px;
  margin-bottom: 6px;
  text-align: center;
}
@media (min-width: 650px) {
  .thumb-text-thumb {
    float: left;
    width: 50%;
  }
}
@media (min-width: 990px) {
  .thumb-text-thumb {
    float: left;
    width: 33.33333333%;
  }
}
.thumb-text-heading {
  margin-top: 24px;
}
@media (min-width: 650px) {
  .thumb-text-heading {
    margin-top: 48px;
  }
}
.thumb-text-body {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 990px) {
  .thumb-text-body {
    float: left;
    width: 66.66666667%;
  }
}
.thumb-text p {
  margin-top: 12px;
}
.booklets {
  margin-left: -5px;
  margin-right: -5px;
  padding: 0 5px;
  overflow: hidden;
}
.booklets .owl-stage-outer {
  overflow: visible;
}
.booklets-carousel-item > a {
  display: block;
}
.booklets-carousel-item-thumb {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
  position: relative;
}
.booklets-carousel-item-thumb .btn {
  position: absolute;
  right: 5px;
  bottom: 5px;
}
@media (min-width: 990px) {
  .booklets-carousel-item-thumb .btn {
    right: 15px;
    bottom: 15px;
  }
}
.booklets-carousel-item h5 {
  margin: 0.75em 0 0;
}
.booklets-carousel-item h5 small {
  font-size: inherit;
}
.info-box {
  margin-top: 96px;
}
@media (min-width: 1300px) {
  .info-box .box {
    margin-left: -80px;
    margin-right: -80px;
    padding: 48px 80px;
  }
}
.info-box p {
  margin-top: 0.75em;
}
.info-box h3 {
  margin-top: 24px;
}
.info-box h3.heading-flagline {
  margin-top: 48px;
}
.info-box h3:first-child {
  margin-top: 0;
}
.info-box h3:first-child.heading-flagline {
  margin-top: 24px;
}
.info-box [class^="col-"] + [class^="col-"] h3:first-child {
  margin-top: 24px;
}
.info-box [class^="col-"] + [class^="col-"] h3:first-child.heading-flagline {
  margin-top: 48px;
}
@media (min-width: 990px) {
  .info-box [class^="col-"] + [class^="col-"] h3:first-child {
    margin-top: 0;
  }
  .info-box [class^="col-"] + [class^="col-"] h3:first-child.heading-flagline {
    margin-top: 24px;
  }
}
.benefits-list {
  padding-left: 1.2em;
}
.benefits-list li {
  list-style-image: url("/img/layout/i/plus-red.svg");
  margin-top: 0.75em;
}
.subnav-thumbs {
  margin-top: 48px;
  margin-bottom: 0;
}
.subnav-thumbs--multirow {
  margin-top: 0;
  margin-bottom: 0;
}
.subnav-thumbs--multirow .thumb-row {
  margin-top: 30px;
  margin-bottom: 0;
}
.tour-recommendations {
  margin: 6rem 0;
}
.guides-carousel {
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 650px) {
  .guides-carousel {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.guides-carousel .owl-item .guides-carousel-item-portrait {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
  display: inline-block;
  width: 130px;
}
@media (min-width: 650px) {
  .guides-carousel .owl-item .guides-carousel-item-portrait {
    float: left;
    margin-right: 20px;
  }
}
.guides-carousel-item {
  width: 310px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 650px) {
  .guides-carousel-item {
    width: 470px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 990px) {
  .guides-carousel-item {
    width: 630px;
  }
}
.guides-carousel-item header {
  position: relative;
}
.guides-carousel-item-heading {
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 143px;
}
@media (min-width: 650px) {
  .guides-carousel-item-heading {
    position: static;
  }
}
.guides-carousel-item-heading strong {
  display: block;
}
@media (min-width: 650px) {
  .guides-carousel-item-heading strong {
    display: inline;
  }
}
@media (min-width: 990px) {
  .guides-carousel-item-body {
    margin-top: 0;
    margin-left: 150px;
  }
}
.insert {
  border: 1px dotted #c8beac;
  border-style: dotted none;
  margin-top: 48px;
  padding: 24px 0;
}
.img-grid {
  margin-left: -15px;
  margin-right: -15px;
}
.img-grid img {
  float: left;
  height: auto;
}
.img-grid-mini {
  margin-top: 4px;
}
.img-grid-mini img {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
  margin: 20px 10px 0;
  width: 60px;
}
.img-grid-default {
  margin-top: -6px;
}
.img-grid-default img {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
  margin: 30px 15px 0;
  width: 130px;
}
.page-teaser {
  font-size: 18px;
  line-height: 1.33333333;
  font-weight: 300;
  margin-top: 48px;
}
@media (min-width: 650px) {
  .page-teaser {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (min-width: 990px) {
  .page-teaser {
    font-size: 24px;
    line-height: 1.25;
  }
}
.page-teaser strong {
  color: #006600;
  font-family: "Roboto Slab", Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: normal;
}
.page-teaser__video {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
@media (min-width: 650px) {
  .page-teaser__video {
    float: left;
    margin-right: 15px;
  }
}
.page-visual {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  border: 5px solid white;
  margin-top: 1.5em;
}
@media (min-width: 375px) and (max-width: 649px) {
  .page-visual {
    margin-left: -25px;
    margin-right: -25px;
  }
}
@media (min-width: 414px) and (max-width: 649px) {
  .page-visual {
    margin-left: -45px;
    margin-right: -45px;
  }
}
@media (min-width: 1300px) {
  .page-visual {
    margin-left: -160px;
    margin-right: -160px;
  }
}
.page-visual img {
  display: block;
  height: auto;
  width: 100%;
}
/*
 * Refactor to .tour-visual?
 * w/ &:extend it could be tour-visual,
 * w/ class stacking it should remain BEM style
 */
.page-visual-tour,
.page-visual-gallery {
  cursor: pointer;
  position: relative;
}
.page-visual-tour .btn,
.page-visual-gallery .btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
@media (min-width: 650px) {
  .page-visual-tour .btn,
  .page-visual-gallery .btn {
    right: 30px;
    bottom: 30px;
  }
}
.overview-teaser-map,
.overview-teaser-dates {
  margin-top: 30px;
}
.overview-teaser-map p,
.overview-teaser-dates p {
  font-size: 12px;
  line-height: 2;
  line-height: normal;
  margin-top: 0.75em;
}
.overview-teaser-map .btn,
.overview-teaser-dates .btn {
  display: block;
}
@media (min-width: 990px) {
  .overview-teaser-dates {
    margin-top: 54px;
  }
}
.tours-overview {
  margin-top: 96px;
  margin-bottom: 96px;
}
.tour-highlights {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 0;
  list-style: none;
  margin-top: 3em;
  margin-bottom: 3em;
}
.tour-highlights li {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 990px) {
  .tour-highlights li {
    float: left;
    width: 33.33333333%;
  }
}
.tour-highlights li strong {
  color: #006600;
  display: block;
}
.tour-highlights li + li {
  margin-top: 1.5em;
}
.tour-highlights li + li strong {
  border-top: 1px #979797 solid;
  padding-top: 1.5em;
}
@media (min-width: 990px) {
  .tour-highlights li + li {
    border-left: 1px #979797 solid;
    margin-top: 0;
    padding-left: 14px;
  }
  .tour-highlights li + li strong {
    border-top: none;
    padding-top: 0;
  }
}
.tour-tipp {
  text-align: center;
  margin: 3em auto;
}
@media (min-width: 990px) {
  .tour-tipp {
    max-width: 66.66666667%;
  }
}
.tour-tipp header {
  padding-top: 184px;
  position: relative;
}
.tour-tipp header img {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  width: 160px;
  height: 160px;
  border: 5px solid white;
  border-radius: 50%;
  display: block;
  margin-left: -80px;
  position: absolute;
  top: 0;
  left: 50%;
}
.tour-tipp header hr {
  margin: 0;
  position: absolute;
  top: 79px;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (min-width: 650px) {
  .tour-tipp header hr {
    left: 16.66666667%;
    right: 16.66666667%;
  }
}
.tour-tipp blockquote {
  font-style: italic;
  margin: 1.5em 0 0;
}
.tour-tipp blockquote footer {
  font-size: 12px;
  line-height: 2;
  font-style: normal;
  color: #006600;
}
.tour-tipp-heading {
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 650px) {
  .tour-tipp-heading {
    font-size: 24px;
    line-height: 1.25;
  }
}
@media (min-width: 990px) {
  .tour-tipp-heading {
    font-size: 32px;
  }
}
.tour-tipp-heading small {
  font-size: 16px;
  line-height: 1.5;
  display: block;
}
.tour-info {
  margin-top: 96px;
  margin-bottom: 96px;
}
.tour-info h3 {
  margin-top: 0;
}
.tour-info p {
  margin: 12px 0 0;
}
.tour-info .usp {
  color: #417505;
}
.tour-info .btn-booking {
  width: 100%;
  text-align: center;
}
@media (min-width: 650px) {
  .tour-info .btn-booking {
    padding-left: 106.66666667px;
    padding-right: 106.66666667px;
    width: auto;
  }
}
@media (min-width: 990px) {
  .tour-info .btn-booking {
    padding-left: 160px;
    padding-right: 160px;
  }
}
.tour-info-footer {
  padding-top: 3em;
  text-align: center;
}
.tour-info-facts {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 650px) {
  .tour-info-facts {
    float: left;
    width: 50%;
  }
}
.tour-info-facts-fitness,
.tour-info-facts-technique {
  white-space: nowrap;
}
.tour-info-facts-fitness img,
.tour-info-facts-technique img {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
}
.tour-info-media {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 3em;
}
@media (min-width: 650px) {
  .tour-info-media {
    float: left;
    width: 50%;
  }
}
@media (min-width: 650px) {
  .tour-info-media {
    margin-top: 0;
  }
}
.tour-info-media .issuuembed {
  width: 290px;
  height: 212px;
}
.tour-info-media-heading {
  margin-bottom: 16px;
}
.tour-info-media-primary {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 990px) {
  .tour-info-media-primary {
    float: left;
    width: 66.66666667%;
  }
}
.tour-info-media-secondary {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -30px;
}
@media (min-width: 990px) {
  .tour-info-media-secondary {
    float: left;
    width: 33.33333333%;
  }
}
@media (min-width: 990px) {
  .tour-info-media-secondary {
    margin-top: 0;
  }
}
.tour-info-media-secondary .btn {
  float: left;
  margin: 30px 0 0 30px;
  width: 130px;
}
@media (min-width: 990px) {
  .tour-info-media-secondary .btn:first-child {
    margin-top: 0;
  }
}
.tour-info-dates {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 3em;
}
@media (min-width: 650px) {
  .tour-info-dates {
    float: left;
    width: 50%;
  }
}
.tour-info-dates__date {
  display: block;
  white-space: nowrap;
}
.tour-info-dates__filter {
  background-color: #E3DED5;
  border-color: #E3DED5;
  color: white;
}
.tour-info-dates__filter:focus,
.tour-info-dates__filter:hover {
  background-color: #c8beac;
  color: white;
  outline: none;
}
.tour-info-dates__filter.active {
  background-color: #c8beac;
}
.tour-info-dates__filter > span {
  display: none;
}
@media (min-width: 990px) {
  .tour-info-dates__filter > span {
    display: inline;
  }
}
.tour-info-dates__filters {
  margin-bottom: 16px;
}
.tour-info-dates__group {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 990px) {
  .tour-info-dates__group {
    column-count: 2;
    column-gap: 30px;
    width: 85%;
  }
}
.tour-info-dates__heading {
  margin-bottom: 16px;
}
.tour-info-dates__panel {
  display: none;
}
.tour-info-dates__subhead {
  margin: 16px 0 0;
}
.tour-info-price {
  color: #aed85d;
  line-height: 40px;
}
a.tour-info-price {
  cursor: pointer;
  display: inline-block;
}
a.tour-info-price:hover {
  color: #aed85d;
}
.tour-info-price span {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300;
}
@media (min-width: 650px) {
  .tour-info-price span {
    font-size: 24px;
    line-height: 1.25;
  }
}
@media (min-width: 990px) {
  .tour-info-price span {
    font-size: 32px;
  }
}
.tour-info-price .icn-info {
  background-image: url("/img/layout/i/info-green.svg");
  background-position: 50% 9px;
  height: 40px;
}
.tour-info-extras {
  margin-top: 0;
}
.tour-course {
  overflow: hidden;
}
.tour-course-carousel {
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 650px) {
  .tour-course-carousel {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.tour-course-carousel-item {
  width: 310px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 650px) {
  .tour-course-carousel-item {
    width: 470px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 990px) {
  .tour-course-carousel-item {
    width: 550px;
  }
}
.tour-course-carousel-item h5,
.tour-course-carousel-item p {
  color: #333333;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-top: 0;
}
.tour-course-carousel .owl-stage-outer {
  overflow: visible;
}
.faq-section {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 24px;
}
@media (min-width: 990px) {
  .faq-section {
    border-top: 1px dotted #c8beac;
  }
}
@media (min-width: 990px) {
  .faq-section:first-child {
    border-top: none;
  }
}
.faq-section:first-child h3 {
  border-top: none;
}
.faq-section > header {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 990px) {
  .faq-section > header {
    float: left;
    width: 33.33333333%;
  }
}
.faq-section > header h3 {
  border-top: 1px dotted #c8beac;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 24px;
}
@media (min-width: 990px) {
  .faq-section > header h3 {
    border: none;
  }
}
.faq-section dl {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 24px;
}
@media (min-width: 990px) {
  .faq-section dl {
    float: left;
    width: 66.66666667%;
  }
}
.faq-section dl dt {
  cursor: pointer;
  margin-top: 24px;
}
.faq-section dl dt:first-child {
  margin-top: 0;
}
@media (min-width: 990px) {
  .faq-section dl dt:first-child {
    margin-top: 7px;
  }
}
.faq-section dl dd {
  display: none;
  margin-top: 0;
}
.faq-section dl dd p {
  margin-top: 12px;
}
.level {
  margin-left: -15px;
  margin-right: -15px;
}
.level-thumb {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 48px;
  margin-bottom: 6px;
}
@media (min-width: 650px) {
  .level-thumb {
    float: left;
    width: 50%;
  }
}
@media (min-width: 990px) {
  .level-thumb {
    float: left;
    width: 33.33333333%;
  }
}
.level-thumb img {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
}
.level-heading {
  margin-top: 24px;
}
@media (min-width: 650px) {
  .level-heading {
    margin-top: 48px;
  }
}
.level-body {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 990px) {
  .level-body {
    float: left;
    width: 66.66666667%;
  }
}
.level p {
  margin-top: 12px;
}
.tiles {
  margin-left: -15px;
  margin-right: -15px;
}
.tile {
  padding-left: 15px;
  padding-right: 15px;
  width: 480px;
}
.alpha-bikes {
  border-top: 1px dotted #c8beac;
  border-bottom: 1px dotted #c8beac;
  margin-top: 48px;
  padding: 18px 0 12px;
}
@media (min-width: 650px) {
  .alpha-bikes {
    display: table;
    padding: 0;
    width: 100%;
  }
  .alpha-bikes-logo,
  .alpha-bikes-body {
    display: table-cell;
    margin: 0;
    padding: 12px 0;
    vertical-align: middle;
  }
  .alpha-bikes-logo {
    padding-right: 30px;
    width: 160px;
  }
}
.link-recommendations {
  margin-top: 12px;
}
.link-recommendations a {
  border-top: 1px dotted #c8beac;
  display: block;
  padding: 12px 0;
}
.thumb-text-partners .thumb-text-thumb {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 650px) {
  .thumb-text-partners .thumb-text-thumb {
    float: left;
    width: 25%;
  }
}
@media (min-width: 990px) {
  .thumb-text-partners .thumb-text-thumb {
    float: left;
    width: 33.33333333%;
  }
}
@media (min-width: 650px) and (max-width: 989px) {
  .tipps-alicante .evoc img {
    margin-top: -24px;
  }
}
.guide-preview {
  color: #333333;
  cursor: pointer;
  display: block;
  float: left;
  height: 230px;
  margin: 15px;
  padding-bottom: 48px;
  position: relative;
  width: 130px;
}
.guide-name {
  display: block;
  margin-top: 12px;
  /*
  span {
    .text-overflow();
  } //*/
}
.guide-details header {
  position: relative;
}
.guide-details-heading {
  font-weight: 300;
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 145px;
}
@media (min-width: 650px) {
  .guide-details-heading {
    position: static;
  }
}
.guide-details-heading strong {
  display: block;
}
@media (min-width: 650px) {
  .guide-details-heading strong {
    display: inline;
  }
}
.guide-details-portrait {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
  width: 130px;
}
@media (min-width: 650px) {
  .guide-details-portrait {
    float: left;
    margin-right: 15px;
  }
}
.img-grid-testival {
  margin-left: -2%;
  margin-right: -3%;
  margin-top: 12px;
}
.img-grid-testival img {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2.5%;
  width: 20%;
}
.news-item a {
  color: inherit;
  display: block;
}
.news-item-thumb {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
}
@media (min-width: 650px) {
  .news-item-thumb {
    float: left;
    margin-right: 15px;
  }
}
.news-item-body {
  margin-top: 12px;
}
@media (min-width: 650px) {
  .news-item-body {
    margin-top: 0;
  }
}
.teaser-grid {
  margin-top: 18px;
}
.teaser-grid .h5 {
  margin-top: 6px;
  text-align: center;
}
.teaser-grid .h5 small {
  font-size: inherit;
}
.teaser-grid-item {
  margin-top: 30px;
}
.teaser-grid-thumb {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
  width: 100%;
}
.teaser-grid-thumb--video {
  position: relative;
}
.teaser-grid-thumb--video::after {
  border-color: transparent transparent transparent #ffffff;
  border-style: solid;
  border-width: 20px 0 20px 34.6px;
  content: '';
  height: 0;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}
.teaser-grid-thumb--video > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.page-teaser-video {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
  width: 290px;
  position: relative;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}
.page-teaser-video::after {
  border-color: transparent transparent transparent #ffffff;
  border-style: solid;
  border-width: 20px 0 20px 34.6px;
  content: '';
  height: 0;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}
.page-teaser-video > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.contact-channels {
  font-size: 18px;
  line-height: 1.33333333;
  margin-top: 48px;
}
@media (min-width: 650px) {
  .contact-channels {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (min-width: 990px) {
  .contact-channels {
    font-size: 24px;
    line-height: 1.25;
  }
}
.cart {
  border-radius: 5px;
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px;
  background-color: #fdfcfa;
  margin-top: 48px;
}
.cart:before,
.cart:after {
  content: " ";
  display: table;
}
.cart:after {
  clear: both;
}
.cart:before,
.cart:after {
  content: " ";
  display: table;
}
.cart:after {
  clear: both;
}
@media (min-width: 650px) {
  .cart {
    margin-left: -20px;
    margin-right: -20px;
    padding: 20px;
  }
}
@media (min-width: 990px) {
  .cart {
    margin-top: 28px;
  }
}
.cart-price {
  float: right;
}
.cart-total {
  font-size: 18px;
  line-height: 1.33333333;
  border-top: 1px dotted #ccc;
  padding-top: 8px;
}
@media (min-width: 650px) {
  .cart-total {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (min-width: 990px) {
  .cart-total {
    font-size: 24px;
    line-height: 1.25;
  }
}
.cart-total span:first-child {
  font-size: 16px;
}
.cart-total .cart-price {
  font-weight: 300;
  color: #aed85d;
}
.checkout-alert {
  border-radius: 5px;
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px;
  background-color: #f2dede;
  color: #a94442;
}
.checkout-alert:before,
.checkout-alert:after {
  content: " ";
  display: table;
}
.checkout-alert:after {
  clear: both;
}
.checkout-alert:before,
.checkout-alert:after {
  content: " ";
  display: table;
}
.checkout-alert:after {
  clear: both;
}
@media (min-width: 650px) {
  .checkout-alert {
    margin-left: -20px;
    margin-right: -20px;
    padding: 20px;
  }
}
@media (min-width: 650px) {
  .checkout-two-cols {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
.checkout-month {
  margin-top: 12px;
  margin-bottom: 5px;
}
@media (min-width: 650px) {
  .checkout-month {
    border-bottom: 1px dotted silver;
  }
}
.checkout-heading {
  line-height: 40px;
}
.checkout-steps {
  padding-left: 0;
  list-style: none;
  display: inline-block;
  height: 40px;
  margin: 0;
  white-space: nowrap;
}
.checkout-steps .btn a {
  color: white !important;
  padding: 8px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  text-decoration: none;
}
.checkout-steps-item {
  display: inline-block;
  height: 40px;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: 40px;
}
.checkout-nav {
  margin-top: 48px;
  text-align: right;
}
.checkout-nav .btn-light {
  float: left;
}
.forum-tours {
  padding-left: 0;
  list-style: none;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 0;
}
.forum-tours li {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 12px;
}
@media (min-width: 650px) {
  .forum-tours li {
    float: left;
    width: 50%;
  }
}
@media (min-width: 990px) {
  .forum-tours li {
    float: left;
    width: 33.33333333%;
  }
}
.forum-tours li a {
  padding: 7px 7px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 5px;
  background-image: none;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-align: left;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  color: #333333;
  background-color: #fdfcfa;
  border-color: #fdfcfa;
  color: #b4a68d;
}
.forum-tours li a:focus,
.forum-tours li a:hover {
  color: #333333;
}
.forum-tours li a i {
  vertical-align: bottom;
}
.forum-tours li a:focus,
.forum-tours li a:hover {
  color: #333333;
}
.forum-tours li a i {
  vertical-align: bottom;
}
.forum-tours li a:focus,
.forum-tours li a:hover {
  color: #9f8e6f;
}
.forum-tours li a:focus,
.forum-tours li a:hover {
  color: #9f8e6f;
}
.forum-dates {
  padding-left: 0;
  list-style: none;
  margin-top: 0;
}
.forum-dates li a {
  padding: 7px 7px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 5px;
  background-image: none;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-align: left;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  color: #333333;
  background-color: #c8beac;
  border-color: #c8beac;
  color: white;
  display: block;
  font-weight: normal;
  text-align: center;
}
.forum-dates li a:focus,
.forum-dates li a:hover {
  color: #333333;
}
.forum-dates li a i {
  vertical-align: bottom;
}
.forum-dates li a:focus,
.forum-dates li a:hover {
  color: #333333;
}
.forum-dates li a i {
  vertical-align: bottom;
}
.forum-dates li a:focus,
.forum-dates li a:hover {
  color: white;
}
.forum-dates li a:focus,
.forum-dates li a:hover {
  color: white;
}
.forum-dates li + li {
  margin-top: 10px;
}
.forum-nav {
  padding-left: 0;
  list-style: none;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 0;
}
.forum-nav li {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 12px;
}
@media (min-width: 650px) {
  .forum-nav li {
    float: left;
    width: 33.33333333%;
  }
}
.forum-nav li a {
  padding: 7px 7px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 5px;
  background-image: none;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-align: left;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  color: #333333;
  background-color: #fdfcfa;
  border-color: #fdfcfa;
  color: #b4a68d;
}
.forum-nav li a:focus,
.forum-nav li a:hover {
  color: #333333;
}
.forum-nav li a i {
  vertical-align: bottom;
}
.forum-nav li a:focus,
.forum-nav li a:hover {
  color: #333333;
}
.forum-nav li a i {
  vertical-align: bottom;
}
.forum-nav li a:focus,
.forum-nav li a:hover {
  color: #9f8e6f;
}
.forum-nav li a:focus,
.forum-nav li a:hover {
  color: #9f8e6f;
}
@media (min-width: 650px) {
  .forum-nav li a {
    display: block;
    text-align: center;
  }
}
.forum-entry {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 12px;
}
.benefits-list li {
  list-style-image: url("/img/layout/i/plus-ebike.svg");
}
.tour-info-price {
  color: #090;
}
a.tour-info-price:hover {
  color: #090;
}
.tour-info-price .icn-info {
  background-image: url("/img/layout/i/info-green.ebike.svg");
}
.cart .cart-price {
  color: #090;
}
.hotel-header {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}
.hotel-thumb {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
  position: relative;
  cursor: pointer;
}
.hotel-thumb .btn {
  position: absolute;
  right: 15px;
  bottom: 15px;
}
@media (min-width: 990px) {
  .hotel-data {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media (min-width: 650px) {
  .hotel-data h3 {
    margin-top: 0;
  }
}
.hotel-data span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.hotel-highlights ul,
.bike-highlights ul {
  margin-top: 12px;
  padding-left: 1.2em;
}
.hotel-highlights li {
  list-style-image: url("/img/layout/i/hotel.png");
}
.bike-highlights li {
  list-style-image: url("/img/layout/i/region.png");
}
.hotel-description {
  margin-top: 12px;
  border-top: 1px dotted #ccc;
  margin-top: 24px;
  padding-top: 24px;
}
.hotel-description p {
  margin-top: 0;
  margin-bottom: 12px;
}
@media (min-width: 990px) {
  .hotel-description {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
.hotels-listing {
  padding-left: 0;
  list-style: none;
  margin-top: 48px;
}
.hotels-listing li {
  padding: 7px 7px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 5px;
  background-image: none;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-align: left;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  color: #333333;
  background-color: #fdfcfa;
  border-color: #fdfcfa;
  color: #b4a68d;
  margin-top: 12px;
  display: block;
}
.hotels-listing li:focus,
.hotels-listing li:hover {
  color: #333333;
}
.hotels-listing li i {
  vertical-align: bottom;
}
.hotels-listing li:focus,
.hotels-listing li:hover {
  color: #333333;
}
.hotels-listing li i {
  vertical-align: bottom;
}
.hotels-listing li:focus,
.hotels-listing li:hover {
  color: #9f8e6f;
}
.hotels-listing li:focus,
.hotels-listing li:hover {
  color: #9f8e6f;
}
.hotels-listing li a {
  display: block;
  color: inherit;
}
.hotels-listing li small {
  display: block;
  font-weight: 300;
}
@media (min-width: 650px) {
  .hotels-listing {
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
    background-color: white;
    border: 5px solid white;
    background-image: url("https://img.go-alps.de/img/bike-hotel/map/topo.jpg?width=600&height=505");
    position: relative;
  }
  .hotels-listing::before {
    content: '';
    display: block;
    padding-top: 84.23913043%;
  }
  .hotels-listing .hotel-button {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    position: absolute;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0;
    padding: 0;
  }
  .hotels-listing .hotel-button::before {
    content: '';
    display: block;
  }
  .hotels-listing .hotel-button-2 {
    background-image: url("/img/bike-hotel/map/steinach.png");
    left: 51.63043478%;
    top: 27.48387097%;
    width: 12.86956522%;
  }
  .hotels-listing .hotel-button-2::before {
    padding-top: 33.51351351%;
  }
  .hotels-listing .hotel-button-3 {
    background-image: url("/img/bike-hotel/map/lafairs.png");
    left: 36.41304348%;
    top: 31.35483871%;
    width: 8.83478261%;
  }
  .hotels-listing .hotel-button-3::before {
    padding-top: 29.13385827%;
  }
  .hotels-listing .hotel-button-4 {
    background-image: url("/img/bike-hotel/map/ischgl.png");
    left: 20.32608696%;
    top: 33.41935484%;
    width: 8%;
  }
  .hotels-listing .hotel-button-4::before {
    padding-top: 36.52173913%;
  }
  .hotels-listing .hotel-button-5 {
    background-image: url("/img/bike-hotel/map/nauders.png");
    left: 31.84782609%;
    top: 39.61290323%;
    width: 9.94782609%;
  }
  .hotels-listing .hotel-button-5::before {
    padding-top: 25.87412587%;
  }
  .hotels-listing .hotel-button-6 {
    background-image: url("/img/bike-hotel/map/livigno.png");
    left: 14.56521739%;
    top: 58.70967742%;
    width: 9.11304348%;
  }
  .hotels-listing .hotel-button-6::before {
    padding-top: 32.0610687%;
  }
  .hotels-listing .hotel-button-8 {
    background-image: url("/img/bike-hotel/map/mauls.png");
    left: 63.58695652%;
    top: 41.67741935%;
    width: 7.86086957%;
  }
  .hotels-listing .hotel-button-8::before {
    padding-top: 32.74336283%;
  }
  .hotels-listing .hotel-button-9 {
    background-image: url("/img/bike-hotel/map/brixen.png");
    left: 59.02173913%;
    top: 49.16129032%;
    width: 8.34782609%;
  }
  .hotels-listing .hotel-button-9::before {
    padding-top: 35%;
  }
  .hotels-listing .hotel-button-11 {
    background-image: url("/img/bike-hotel/map/nals.png");
    left: 49.56521739%;
    top: 58.32258065%;
    width: 6.60869565%;
  }
  .hotels-listing .hotel-button-11::before {
    padding-top: 44.21052632%;
  }
  .hotels-listing .hotel-button-12 {
    background-image: url("/img/bike-hotel/map/voels.png");
    left: 63.58695652%;
    top: 62.70967742%;
    width: 6.53913043%;
  }
  .hotels-listing .hotel-button-12::before {
    padding-top: 39.36170213%;
  }
  .hotels-listing .hotel-button-13 {
    background-image: url("/img/bike-hotel/map/coredo.png");
    left: 43.91304348%;
    top: 68.90322581%;
    width: 9.11304348%;
  }
  .hotels-listing .hotel-button-13::before {
    padding-top: 32.0610687%;
  }
  .hotels-listing .hotel-button-15 {
    background-image: url("/img/bike-hotel/map/klausen.png");
    left: 60.10869565%;
    top: 54.4516129%;
    width: 9.80869565%;
  }
  .hotels-listing .hotel-button-15::before {
    padding-top: 29.78723404%;
  }
  .hotels-listing .hotel-button-16 {
    background-image: url("/img/bike-hotel/map/kojsko.png");
    left: 79.13043478%;
    top: 85.67741935%;
    width: 20.86956522%;
  }
  .hotels-listing .hotel-button-16::before {
    padding-top: 12.33333333%;
  }
  .hotels-listing .hotel-button-17 {
    background-image: url("/img/bike-hotel/map/feldthurns.png");
    left: 48.91304348%;
    top: 52.25806452%;
    width: 11.96521739%;
  }
  .hotels-listing .hotel-button-17::before {
    padding-top: 24.41860465%;
  }
  .hotels-listing .hotel-button-23 {
    background-image: url("/img/bike-hotel/map/sexten.png");
    left: 85%;
    top: 48.77419355%;
    width: 8.62608696%;
  }
  .hotels-listing .hotel-button-23::before {
    padding-top: 29.83870968%;
  }
  .hotels-listing .hotel-button-19 {
    background-image: url("/img/bike-hotel/map/stefansdorf.png");
    left: 69.45652174%;
    top: 46.19354839%;
    width: 12.93913043%;
  }
  .hotels-listing .hotel-button-19::before {
    padding-top: 22.58064516%;
  }
  .hotels-listing .hotel-button-20 {
    background-image: url("/img/bike-hotel/map/girlan.png");
    right: 40.76086957%;
    top: 61.16129032%;
    width: 8%;
  }
  .hotels-listing .hotel-button-20::before {
    padding-top: 32.17391304%;
  }
  .hotels-listing .hotel-button-21 {
    background-image: url("/img/bike-hotel/map/st-vigil.png");
    left: 72.2826087%;
    top: 49.37741935%;
    width: 9.46086957%;
  }
  .hotels-listing .hotel-button-21::before {
    padding-top: 30.88235294%;
  }
  .hotels-listing .hotel-button-22 {
    background-image: url("/img/bike-hotel/map/torbole.png");
    left: 42.93478261%;
    top: 93.67741935%;
    width: 9.39130435%;
  }
  .hotels-listing .hotel-button-22::before {
    padding-top: 27.40740740%;
  }
  .hotels-listing .hotel-button-24 {
    background-image: url("/img/bike-hotel/map/wolkenstein.png");
    left: 70.134783%;
    top: 54.27741935%;
    width: 13.21739130%;
  }
  .hotels-listing .hotel-button-24::before {
    padding-top: 19.37172775%;
  }
  .hotels-listing .hotel-button-25 {
    background-image: url("/img/bike-hotel/map/biberwier.png");
    left: 45.434783%;
    top: 14.97741935%;
    width: 11.06086956%;
  }
  .hotels-listing .hotel-button-25::before {
    padding-top: 23.27044025%;
  }
  .hotels-listing .hotel-button-26 {
    background-image: url("/img/bike-hotel/map/belluno.png");
    left: 77.134783%;
    top: 77.57741935%;
    width: 9.39130435%;
  }
  .hotels-listing .hotel-button-26::before {
    padding-top: 27.40740740%;
  }
  .hotels-listing .hotel-button-27 {
    background-image: url("/img/bike-hotel/map/meran.png");
    left: 45.604783%;
    top: 49.5741935%;
    width: 8.13913043%;
  }
  .hotels-listing .hotel-button-27::before {
    padding-top: 31.62393162%;
  }
  .hotels-listing .hotel-button-28 {
    background-image: url("/img/bike-hotel/map/karersee.png");
    left: 60.58695652%;
    top: 66.00967742%;
    width: 10.50434783%;
  }
  .hotels-listing .hotel-button-28::before {
    padding-top: 24.50331126%;
  }
  .hotels-listing .hotel-button-29 {
    background-image: url("/img/bike-hotel/map/imst.png");
    left: 35.58695652%;
    top: 20.60967742%;
    width: 6.53913043%;
  }
  .hotels-listing .hotel-button-29::before {
    padding-top: 39.36170212%;
  }
  .hotels-listing .hotel-button-30 {
    background-image: url("/img/bike-hotel/map/warth.png");
    left: 15.38695652%;
    top: 20.40967742%;
    width: 7.93043478%;
  }
  .hotels-listing .hotel-button-30::before {
    padding-top: 32.45614035%;
  }
  .hotels-listing .hotel-button-31 {
    background-image: url("/img/bike-hotel/map/st-kassian.png");
    left: 73.2826087%;
    top: 51.97741935%;
    width: 12.45217391%;
  }
  .hotels-listing .hotel-button-31::before {
    padding-top: 20.67039106%;
  }
  .hotels-listing .hotel-button-32 {
    background-image: url("/img/bike-hotel/map/sistiana.png");
    left: 79.13043478%;
    top: 85.67741935%;
    width: 18.22608695%;
  }
  .hotels-listing .hotel-button-32::before {
    padding-top: 14.12213740%;
  }
}
@media (min-width: 650px) and only screen and (-webkit-min-device-pixel-ratio: 2), (min-width: 650px) and only screen and (min--moz-device-pixel-ratio: 2), (min-width: 650px) and only screen and (-o-min-device-pixel-ratio: 2), (min-width: 650px) and only screen and (min-device-pixel-ratio: 2), (min-width: 650px) and only screen and (min-resolution: 192dpi), (min-width: 650px) and only screen and (min-resolution: 2dppx) {
  .hotels-listing {
    background-image: url("https://img.go-alps.de/img/bike-hotel/map/topo.jpg?width=1200&height=1010");
    background-size: 600px 505px;
  }
}
@media (min-width: 990px) {
  .hotels-listing {
    background-image: url("https://img.go-alps.de/img/bike-hotel/map/topo.jpg?width=920&height=775");
  }
}
@media (min-width: 990px) and only screen and (-webkit-min-device-pixel-ratio: 2), (min-width: 990px) and only screen and (min--moz-device-pixel-ratio: 2), (min-width: 990px) and only screen and (-o-min-device-pixel-ratio: 2), (min-width: 990px) and only screen and (min-device-pixel-ratio: 2), (min-width: 990px) and only screen and (min-resolution: 192dpi), (min-width: 990px) and only screen and (min-resolution: 2dppx) {
  .hotels-listing {
    background-image: url("https://img.go-alps.de/img/bike-hotel/map/topo.jpg?width=1840&height=1550");
    background-size: 920px 775px;
  }
}
.ornamental {
  position: relative;
  text-align: center;
}
.ornamental hr {
  margin: -1px auto 0;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 990px) {
  .ornamental hr {
    right: 25%;
    left: 25%;
  }
}
.ornamental__content {
  display: inline-block;
  padding: 0 10px;
  background-color: #f7f3ec;
}
.product-listing {
  margin-top: 12px;
}
@media (min-width: 990px) {
  .product-listing--impressions .product-listing-item .product-level {
    float: right;
    padding-right: 5px;
    width: auto;
  }
}
.product-listing-item {
  margin-left: -5px;
  margin-right: -5px;
  border-bottom: 1px dotted #c8beac;
  color: #333333;
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
}
.product-listing-item:first-child {
  border-top: 1px dotted #c8beac;
}
.product-listing-item:hover {
  background-color: #fdfcfa;
}
.product-listing-item .product-level,
.product-listing-item .product-period,
.product-listing-item .product-price,
.product-listing-item .icn {
  margin-top: 8px;
}
@media (min-width: 990px) {
  .product-listing-item .product-level,
  .product-listing-item .product-period,
  .product-listing-item .product-price,
  .product-listing-item .icn {
    margin-top: 0;
  }
}
.product-listing-item .product-title {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 990px) {
  .product-listing-item .product-title {
    float: left;
    width: 58.33333333%;
  }
}
.product-listing-item .product-name:after {
  content: "\00a0\2013";
}
.product-listing-item .product-level,
.product-listing-item .product-price {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
.product-listing-item .product-level {
  width: 160px;
}
@media (min-width: 990px) {
  .product-listing-item .product-level {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.product-listing-item .product-price {
  color: #417505;
  width: auto;
}
@media (min-width: 990px) {
  .product-listing-item .product-price {
    float: right;
  }
}
.product-listing-item .product-period {
  position: relative;
  float: left;
  width: 8.33333333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  width: auto;
}
@media (max-width: 649px) {
  .product-listing-item .product-period {
    display: none !important;
  }
}
.product-listing-item .icn {
  float: right;
  margin-right: 8px;
}
@media (min-width: 990px) {
  .product-listing-item .icn {
    display: none;
  }
}
.responsive-embed {
  display: block;
  overflow: hidden;
  position: relative;
}
.responsive-embed--16by9::before {
  content: '';
  display: block;
  padding-bottom: 56.25%;
}
.responsive-embed__item,
.responsive-embed iframe,
.responsive-embed embed,
.responsive-embed object,
.responsive-embed video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.thumb-row {
  margin-top: 1em;
}
.thumb-row li {
  margin-top: 0;
}
.thumb-row li + li {
  margin-top: 24px;
}
@media (min-width: 650px) {
  .thumb-row li + li {
    margin-top: 0;
  }
}
.thumb-row h5 {
  margin: 0.5em 0 0;
  text-align: center;
}
.thumb-row h5 small {
  font-size: inherit;
}
.thumb-row p {
  color: #333333;
  margin-top: 0;
  text-align: center;
}
.thumb-row__thumb {
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  background-color: white;
  border: 5px solid white;
  width: 100%;
}
@media (min-width: 650px) {
  .thumb-row--align-carousel {
    margin-left: -35px;
    margin-right: -35px;
  }
}
@media (min-width: 1300px) {
  .thumb-row--align-carousel,
  .thumb-row--align-slideshow {
    margin-left: -175px;
    margin-right: -175px;
  }
}
html.freeze {
  height: 100%;
}
html.freeze body {
  height: 100%;
  overflow: hidden;
}
.site-footer {
  margin-top: 6em;
  margin-bottom: 1.5em;
}
.site-footer-contact {
  position: relative;
  text-align: center;
}
.site-footer-contact hr {
  margin: 0 auto;
  position: absolute;
  top: 23px;
  right: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 650px) {
  .site-footer-contact hr {
    top: 39px;
  }
}
@media (min-width: 990px) {
  .site-footer-contact hr {
    right: 25%;
    left: 25%;
  }
}
.site-footer-contact-inner {
  display: inline-block;
  padding: 0 10px;
  background-color: #f7f3ec;
}
.site-footer-contact-inner:before,
.site-footer-contact-inner:after {
  content: " ";
  display: table;
}
.site-footer-contact-inner:after {
  clear: both;
}
.site-footer-contact-inner:before,
.site-footer-contact-inner:after {
  content: " ";
  display: table;
}
.site-footer-contact-inner:after {
  clear: both;
}
.site-footer-contact-inner img {
  -webkit-box-shadow: 1px 1px 3px black;
  box-shadow: 1px 1px 3px black;
  width: 48px;
  height: 48px;
  border: 2px solid white;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}
@media (min-width: 650px) {
  .site-footer-contact-inner img {
    width: 80px;
    height: 80px;
  }
}
.site-footer-contact-inner p {
  font-size: 12px;
  line-height: 2;
  white-space: nowrap;
  margin-top: 0;
  padding-left: 58px;
  text-align: left;
}
.site-footer-contact-inner p span {
  display: none;
}
@media (min-width: 650px) {
  .site-footer-contact-inner p {
    margin-top: 24px;
    padding-left: 90px;
  }
  .site-footer-contact-inner p span {
    display: inline;
  }
}
.site-footer-contact-inner .site-footer-contact-phone {
  font-size: 18px;
  line-height: 24px;
  color: #006600;
  display: block;
}
@media (min-width: 650px) {
  .site-footer-contact-inner .site-footer-contact-phone {
    font-size: 24px;
    line-height: 30px;
  }
}
.site-footer-nav {
  display: none;
  margin-left: -4px;
  margin-right: -4px;
}
@media (min-width: 990px) {
  .site-footer-nav {
    padding-left: 0;
    list-style: none;
    display: block;
    margin-top: 3em;
    text-align: center;
  }
  .site-footer-nav li {
    margin: 0 4px;
    display: inline-block;
    vertical-align: top;
  }
  .site-footer-nav li a {
    padding: 7px 7px;
    font-size: 18px;
    line-height: 24px;
    border-radius: 5px;
    background-image: none;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    text-align: left;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    color: #333333;
    background-color: #fdfcfa;
    border-color: #fdfcfa;
    color: #b4a68d;
    display: block;
    font-weight: normal;
    text-transform: uppercase;
  }
  .site-footer-nav li a:focus,
  .site-footer-nav li a:hover {
    color: #333333;
  }
  .site-footer-nav li a i {
    vertical-align: bottom;
  }
  .site-footer-nav li a:focus,
  .site-footer-nav li a:hover {
    color: #333333;
  }
  .site-footer-nav li a i {
    vertical-align: bottom;
  }
  .site-footer-nav li a:focus,
  .site-footer-nav li a:hover {
    color: #9f8e6f;
  }
  .site-footer-nav li a:focus,
  .site-footer-nav li a:hover {
    color: #9f8e6f;
  }
  .site-footer-nav-logo img {
    height: 40px;
    width: auto;
  }
  .site-footer-nav-logo a {
    padding: 0 !important;
    border: none !important;
  }
}
.site-footer-legal {
  margin-top: 3em;
  text-align: center;
}
.site-footer-legal p {
  font-size: 12px;
  line-height: 2;
  margin-top: 0;
}
@media (min-width: 650px) and (max-width: 989px) {
  .site-footer-legal p {
    display: inline;
  }
}
.site-footer-legal a,
.site-footer-legal span {
  white-space: nowrap;
}
.site-footer-social {
  margin: 1.5em 0;
  text-align: center;
}
.site-footer-social .btn {
  margin: 0 4px;
}
.site-main {
  position: relative;
}
.btn-site-logo .site-logo {
  height: 40px;
  width: 41px;
}
@media (min-width: 990px) {
  .btn-site-logo {
    display: block;
    border-radius: 5px;
    background-color: #fdfcfa;
    padding: 8px;
    width: 99px;
  }
  .btn-site-logo .site-logo {
    height: 80px;
    width: 83px;
  }
}
.site-claim {
  font-size: 12px;
  line-height: 2;
  position: absolute;
  left: 70px;
  top: 8px;
}
@media (min-width: 990px) {
  .site-claim {
    left: 132px;
  }
}
.menu {
  margin: 0 auto;
  width: 320px;
  padding: 0 15px;
  margin-top: 15px;
  position: relative;
}
@media (min-width: 650px) {
  .menu {
    width: 640px;
  }
}
@media (min-width: 990px) {
  .menu {
    width: 960px;
  }
}
.menu ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
@media (min-width: 990px) {
  .menu-mobile {
    display: none;
  }
}
.menu-dropdown {
  display: none;
}
@media (max-width: 989px) {
  li.state-open .menu-dropdown {
    display: block;
  }
}
@media (min-width: 990px) {
  .menu-dropdown {
    padding-top: 10px;
    position: absolute;
    top: 100%;
    /* doesn't work, prevents dropdown to show up
      li.state-open & {
        display: none;
      } //*/
  }
  li:hover .menu-dropdown {
    display: block;
    z-index: 999;
  }
}
.menu-slide {
  background-color: #fdfcfa;
  border-bottom: 1px solid #979797;
  display: none;
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-box-shadow: 0 0 3px black;
  box-shadow: 0 0 3px black;
}
@media (min-width: 990px) {
  .menu-slide {
    border-bottom: none;
    display: block;
    position: static;
  }
}
.menu-main {
  border-bottom: 1px solid #979797;
}
@media (min-width: 990px) {
  .menu-main {
    border-bottom: none;
    position: absolute;
    right: 9px;
    bottom: 0;
    left: auto;
  }
  [lang="en"] .menu-main {
    right: 10px;
  }
}
.menu-main a {
  display: block;
  padding: 8px 15px;
}
@media (min-width: 990px) {
  .menu-main a {
    padding: 8px 10px;
  }
  [lang="en"] .menu-main a {
    padding: 8px 12px;
  }
}
@media (min-width: 990px) {
  .menu-main > li {
    float: left;
    margin: 0 6px 0 5px;
  }
  [lang="en"] .menu-main > li {
    margin: 0 5px 0 5px;
  }
}
.menu-main > li.state-active > a {
  color: #006600;
  font-weight: bold;
}
.menu-main > li > a {
  background: #fdfcfa;
  border-top: 1px #979797 solid;
  color: #333333;
  text-transform: uppercase;
}
@media (min-width: 990px) {
  .menu-main > li > a {
    border: none;
    border-radius: 5px;
  }
}
.menu-main > li > a i {
  background: transparent url(../img/layout/i/menu-down.svg) center no-repeat;
  float: right;
  height: 24px;
  margin-right: 12px;
  vertical-align: bottom;
  width: 16px;
}
@media (min-width: 990px) {
  .menu-main > li > a i {
    display: inline-block;
    float: none;
    margin-right: 0;
  }
}
.menu-main > li.state-active > a i {
  background-image: url(../img/layout/i/menu-down-active.svg);
}
@media (max-width: 989px) {
  .menu-main > li.state-open > a {
    -webkit-transition: background-color 400ms;
    -o-transition: background-color 400ms;
    transition: background-color 400ms;
    background-color: #c8beac;
    color: #fff;
  }
  .menu-main > li.state-open > a i {
    background-image: url(../img/layout/i/menu-up-active.svg);
  }
}
.menu-sub {
  background: #fdfcfa;
  border-radius: 5px;
}
@media (min-width: 990px) {
  .menu-sub {
    box-shadow: 0 0 3px silver;
  }
}
.menu-meta {
  padding-left: 0;
  list-style: none;
  padding-top: 8px;
  padding-bottom: 8px;
  text-transform: uppercase;
}
.menu-meta:before,
.menu-meta:after {
  content: " ";
  display: table;
}
.menu-meta:after {
  clear: both;
}
.menu-meta:before,
.menu-meta:after {
  content: " ";
  display: table;
}
.menu-meta:after {
  clear: both;
}
@media (min-width: 990px) {
  .menu-meta {
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    top: 8px;
    right: 0;
    text-transform: none;
  }
}
.menu-meta a {
  color: #333333;
}
.menu-meta li {
  float: left;
  margin: 0 15px;
}
.menu-meta-phone {
  color: #006600;
}
.menu-meta-phone:before {
  font-family: Icons;
  content: "\f098\00a0";
}
@media (max-width: 649px) {
  .menu-meta-phone:before {
    display: none;
  }
}
.menu-meta-lang {
  float: right !important;
}
.menu-meta-lang a {
  margin-top: -8px;
  margin-bottom: -8px;
}
.menu-meta-lang img {
  width: 24px;
  height: 24px;
  border: 2px solid transparent;
  vertical-align: top;
}
.menu-toggle {
  padding: 7px 7px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 5px;
  background-image: none;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-align: left;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  color: #333333;
  background-color: #fdfcfa;
  border-color: #fdfcfa;
  color: #b4a68d;
  width: 40px;
  height: 40px;
  background-image: url(../img/layout/i/menu-hamburger.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 15px;
}
.menu-toggle:focus,
.menu-toggle:hover {
  color: #333333;
}
.menu-toggle i {
  vertical-align: bottom;
}
.menu-toggle:focus,
.menu-toggle:hover {
  color: #333333;
}
.menu-toggle i {
  vertical-align: bottom;
}
.menu-toggle:focus,
.menu-toggle:hover {
  color: #9f8e6f;
}
.menu-toggle:focus,
.menu-toggle:hover {
  color: #9f8e6f;
}
.state-open .menu-toggle {
  background-image: url(../img/layout/i/menu-close.svg);
}
@media (min-width: 990px) {
  .menu-toggle {
    display: none;
  }
}
.menu-main > li.state-active > a i {
  background-image: url("/img/layout/i/menu-down-active.ebike.svg");
}
.cookie-banner {
  background-color: #fff;
  bottom: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  left: 0;
  padding-top: 1rem;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 9999;
}
.cookie-banner__button {
  padding: 7px 7px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 5px;
  background-image: none;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  text-align: left;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  color: #333333;
  text-align: center;
  width: 100%;
}
.cookie-banner__button:focus,
.cookie-banner__button:hover {
  color: #333333;
}
.cookie-banner__button i {
  vertical-align: bottom;
}
.cookie-banner__button:focus,
.cookie-banner__button:hover {
  color: #333333;
}
.cookie-banner__button i {
  vertical-align: bottom;
}
@media (min-width: 650px) {
  .cookie-banner__button {
    width: auto;
  }
}
.cookie-banner__button--all {
  background-color: #aed85d;
  background-color: #090;
  color: white;
}
.cookie-banner__button--all:focus,
.cookie-banner__button--all:hover {
  color: white;
}
.cookie-banner__button--all:focus,
.cookie-banner__button--all:hover {
  color: white;
}
.cookie-banner__button--essential {
  background-color: #c8beac;
  border-color: #c8beac;
  color: white;
}
.cookie-banner__button--essential:focus,
.cookie-banner__button--essential:hover {
  color: white;
}
.cookie-banner__button--essential:focus,
.cookie-banner__button--essential:hover {
  color: white;
}
.cookie-banner__button + .cookie-banner__button {
  margin: 1rem 0 0;
}
@media (min-width: 650px) {
  .cookie-banner__button + .cookie-banner__button {
    margin: 0 0 0 1rem;
  }
}
.cookie-banner__consent-item + .cookie-banner__consent-item {
  margin: 1rem 0 0;
}
@media (min-width: 650px) {
  .cookie-banner__consent-item + .cookie-banner__consent-item {
    margin: 0 0 0 1rem;
  }
}
.cookie-banner__section {
  padding-bottom: 1rem;
}
.cookie-banner__section--buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
