/* HTML5 ✰ Boilerplate
 * ==|== normalize ==========================================================
 */

:root {
  --color-primary: #005AA3;
  --color-dark: #241F1F;
  --color-grey: #666;
  --color-purple: #c40386;
  --color-red: #C50012;
  /*--color-green: #88AA06; */
  --color-green: #5b7105;
  /* --color-blue: #0090DC; */
  --color-blue: #016ea7;
  /* --color-orange: #E19900; */
  --color-orange: #D14100;
  --color-orange-dark: #b33300;

  --page-width: 1460px;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

body,
button,
input,
select,
textarea {
  font-family: 'Open Sans', sans-serif;
  color: var(--color-dark);
}

::selection {
  background: var(--color-primary);
  color: #fff;
  text-shadow: none;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
}
#main a:hover {
  background: #F5F0AE;
  box-shadow: 0 0 0 2px rgb(245 240 174);
}
a:visited {
  color: var(--color-primary);
  transition: all 0.5s ease-in-out;
}



a:hover,
a:active {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

small {
  font-size: 85%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul,
ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}

dd {
  margin: 0 0 0 40px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

label {
  cursor: pointer;
}

legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
  *overflow: visible;
}

table button,
table input {
  *overflow: auto;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
}


/* ==|== primary styles =====================================================
   Author: novo.media, http://www.novo-online.de | Jennifer Kamphausen

   Dark Blue: var(--color-primary);
   Red: #C50012;
   Green:#88AA06;
   Blue: #0090DC;
   Orange: #E19900;
   Purple: #CE008C;
   Gray: #999999;

   ========================================================================== */


/* Structure */
/* body { background: url('../images/bg-body.png') #000; } */

#wrapper,
.custom .mod_sitemap,
#footer .inside {
    max-width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
}

#wrapper {
  /* max-width: var(--page-width); */
  overflow: hidden;
}

#header {
  clear: both;
  position: relative;
  min-height: 250px;
}

#container {
  position: relative;
  top: -50px;
}

#main {
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  margin-left: -15px;
}

#right,
#left {
  padding-top: 78px;
  margin-left: 0;
}

#right {
  padding-left: 15px;
}

#left {
  padding-right: 20px;
}


/* Dev menu */
#dev-menu {
  position: fixed;
  bottom: 0;
  right: 0;
  background: var(--color-red);
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
}

#dev-menu a {
  color: #fff;
}

/* Default classes */
.ce_text.block {
  display: flow-root; /* statt overflow: hidden, damit z.B. Focus-Outlines nicht abgeschnitten werden */
}

a.btn:visited,
p.back a,
p.more a,
.submit_container input,
input.submit {
  background: #1166AC;
  color: #fff;
  text-decoration: none;
  padding: 4px 10px;
  border: 0;
  width: auto;
  font-weight: 700;
  margin-right: 15px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
}

a.btn:hover,
p.back a:hover,
p.more a:hover,
.btn:hover,
.submit_container input:hover {
  text-decoration: none;
  background: #333;
  color: #fff;
}

a.btn {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  padding: 4px 10px;
  border: 0;
  width: auto;
  font-weight: 700;
  margin: 0 0 10px 0;
  display: inline-block;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  width: auto;
}

p.error {
  color: var(--color-red);
  margin: 0;
  font-weight: bold;
}

.float_right {
  float: right;
}

.float_left {
  float: left;
}

.hide_on_desktop {
  display: none;
}

a.btn-xl {
  padding: 8px 15px;
  font-size: 16px;
}

.text-center {
  text-align: center;
}

/* iframe embed */
iframe.fcontent {
  min-width: 100%;
  width: 100px;
  *width: 100%;
}

/* Share */
.syndication .gplus {
  display: none;
}

/* Flexbox */
#supporter {
  padding-bottom: 20px;
}

#supporter h3 {
  color: #939393;
  font-weight: normal;
  font-size: 20px;
  margin-top: 35px;
}

.flex-container {
  display: flex;
  flex-direction: row;
}

.flex-container .flex-item {
  padding: 15px;
}


/* Default classes Red */
.red a.btn:visited,
.red p.back a,
.red p.more a,
.red .submit_container input,
.red input.submit,
.red a.btn,
.red #right .mod_newslist,
.red #right .mod_eventlist {
  background: var(--color-red);
}

.red #main a,
.red h2,
.red h3,
.red #nav_sub ul li a:hover,
.red #nav_sub ul li a.active,
.red #nav_sub ul li strong.active,
.red #nav_sub ul li span.active,
.red #nav_sub ul li a.trail,
.red a {
  color: var(--color-red);
}

.red div.hr {
  background: url(../images/bg_plus.png) repeat-x 0 -11px;
}

/* Default classes Green */
.green a.btn:visited,
.green p.back a,
.green p.more a,
.green .submit_container input,
.green input.submit,
.green a.btn,
.green #right .mod_newslist,
.green #right .mod_eventlist {
  background: var(--color-green);
}

.green #main a,
.green h2,
.green h3,
.green #nav_sub ul li a:hover,
.green #nav_sub ul li a.active,
.green #nav_sub ul li strong.active,
.green #nav_sub ul li span.active,
.green #nav_sub ul li a.trail,
.green a {
  color: var(--color-green);
}

.green div.hr {
  background: url(../images/bg_plus.png) repeat-x 0 -21px;
}


/* Generated travel subnavi by det */
.green #nav_sub ul li.active a,
.green #nav_sub ul li.active li.active a,
.green #nav_sub ul li.active li a:hover,
.green #nav_sub ul li.active li.active li a:hover {
  color: var(--color-green);
}

.green #nav_sub ul li.active li a,
.green #nav_sub ul li.active li.active li a {
  color: #666;
}


/* Default classes Blue */
.blue a.btn:visited,
.blue p.back a,
.blue p.more a,
.blue .submit_container input,
.blue input.submit,
.blue a.btn,
.blue #right .mod_newslist,
.blue #right .mod_eventlist {
  background: var(--color-blue);
}

.blue #main a,
.blue h2,
.blue h3,
.blue #nav_sub ul li a:hover,
.blue #nav_sub ul li a.active,
.blue #nav_sub ul li strong.active,
.blue #nav_sub ul li span.active,
.blue #nav_sub ul li a.trail,
.blue a {
  color: var(--color-blue);
}

.blue div.hr {
  background: url(../images/bg_plus.png) repeat-x 0 -50px;
}


/* Default classes Orange */
.orange a.btn:visited,
.orange p.back a,
.orange p.more a,
.orange .submit_container input,
.orange input.submit,
.orange a.btn,
.orange #right .mod_newslist,
.orange #right .mod_eventlist {
  background: var(--color-orange);
}

.orange #main a,
.orange h2,
.orange h3,
.orange a {
  color: var(--color-orange);
}

.orange #nav_sub ul li a:hover,
.orange #nav_sub ul li a.active,
.orange #nav_sub ul li strong.active,
.orange #nav_sub ul li span.active,
.orange #nav_sub ul li a.trail {
  color: var(--color-orange-dark);
}


.orange div.hr {
  background: url(../images/bg_plus.png) repeat-x 0 -31px;
}


/* Default classes Purple */
.purple a.btn:visited,
.purple p.back a,
.purple p.more a,
.purple .submit_container input,
.purple input.submit,
.purple a.btn,
.purple #right .mod_newslist,
.purple #right .mod_eventlist {
  background: var(--color-purple);
}

.purple #main a,
.purple h2,
.purple h3,
.purple #nav_sub ul li a:hover,
.purple #nav_sub ul li a.active,
.purple #nav_sub ul li strong.active,
.purple #nav_sub ul li span.active,
.purple #nav_sub ul li a.trail,
.purple a {
  color: var(--color-purple);
}

.purple div.hr {
  background: url(../images/bg_plus.png) repeat-x 0 -40px;
}


.red #main a.btn,
.green #main a.btn,
.blue #main a.btn,
.orange #main a.btn,
.purple #main a.btn,
.red #main p.back a,
.green #main p.back a,
.blue #main p.back a,
.orange #main p.back a,
.purple #main p.back a {
  color: #fff;
}

.red #main a.btn:hover,
.green #main a.btn:hover,
.blue #main a.btn:hover,
.orange #main a.btn:hover,
.purple #main a.btn:hover,
.red #right a.btn:hover,
.green #right a.btn:hover,
.blue #right a.btn:hover,
.orange #right a.btn:hover,
.purple #right a.btn:hover,
.red #main p.back a:hover,
.green #main p.back a:hover,
.blue #main p.back a:hover,
.orange #main p.back a:hover,
.purple #main p.back a:hover {
  background: #333;
}


.left {
  float: left;
}

.right {
  float: right;
}

.box {
  padding: 20px;
}

.bg-grey {
  background: rgba(0, 0, 0, 0.05);
}

.border-primary {
  border: 2px solid var(--color-primary);
}

.text-primary {
  color: var(--color-primary);
}

.text-bold {
  font-weight: bold;
}

.separator-top {
  border-top: 3px solid #ccc;
  margin-top: 40px;
  padding-top: 20px;
}

.widget.separator-top .separator-top {
  border-top: 0;
  margin-top: 0;
  margin-bottom: 0;
}


.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mt-6 {
  margin-top: 80px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-6 {
  margin-bottom: 80px;
}


.logo {
  position: absolute;
  top: 15px;
  left: 0;
}
@media (min-width: 1460px){
  .logo {
    left: 50px;
  }
}

.logo_mobil {
  display: none;
}

.logo_mobil img {
  max-height: 95px;
  text-align: center;
  margin: 20px 0 10px 0;
}

p.more a span.invisible {
  display: none;
}

.border-bottom {
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.border-top {
  border-top: 3px solid rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.slide-down {
  background: #eee;
  padding: 10px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
}

/* Cookiebar */
.cookiebar_default .cc-inner {
  box-shadow: 0 0 1800px rgba(0, 0, 0, 0.8);
}

.cookiebar_default .cc-cookie-info,
.cookiebar_default .cc-group {
  overflow: hidden;
}

.contao-cookiebar .highlight .cc-btn.success {
  border: 1px solid #cfcfcf;
  color: #444;
  background: #f5f5f5;
}

.contao-cookiebar .highlight .cc-btn.success:hover {
  background: #ececec;
}

/*  Navigation */
#nav-main {
  position: absolute;
  top: 130px;
  left: 21%;
}

#nav-main ul.level_1 > li.red > a,
#nav-main ul.level_1 > li.red > strong {
  color: var(--color-red);
}
#nav-main ul.level_1 > li.red > a::before,
#nav-main ul li.red ul {
  background: var(--color-red);
}

#nav-main ul.level_1 > li.blue > a,
#nav-main ul.level_1 > li.blue > strong {
  color: var(--color-blue);
}
#nav-main ul.level_1 > li.blue > a::before,
#nav-main ul li.blue ul {
  background: var(--color-blue);
}

#nav-main ul.level_1 > li.purple > a,
#nav-main ul.level_1 > li.purple > strong {
  color: var(--color-purple);
}
#nav-main ul.level_1 > li.purple > a::before,
#nav-main ul li.purple ul {
  background: var(--color-purple);
}

#nav-main ul.level_1 > li.orange > a,
#nav-main ul.level_1 > li.orange > strong {
  color: var(--color-orange-dark);
}
#nav-main ul.level_1 > li.orange > a::before,
#nav-main ul li.orange ul {
  background: var(--color-orange);
}

#nav-main ul.level_1 > li.green > a,
#nav-main ul.level_1 > li.green > strong {
  color: var(--color-green);
}
#nav-main ul.level_1 > li.green > a::before,
#nav-main ul li.green ul {
  background: var(--color-green);
}

#nav-main ul ul a,
#nav-main ul ul strong {
  color: #fff;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
  transistion: all 0.5s ease-in-out;
}

#nav-main ul ul a:hover {
  background-color: rgba(0, 0, 0, 0.15);
}

/*
#nav_mobile:not(.mm-menu) { display: none; }
#nav_main { font-size: 16px; font-size: 1rem; position: absolute; top: 130px; left: 21%; }
#nav_main ul {}
#nav_main ul li { float: left; padding: 5px 10px; -webkit-border-radius: 5px;
  border-radius: 5px; -moz-border-radius: 5px; margin-right: 10px; }
#nav_main ul li { max-width: 170px; }
#nav_main ul li a { text-decoration: none;
  -webkit-transition: opacity 0.2s linear, visibility 0.2s linear;
  -moz-transition: opacity 0.2s linear, visibility 0.2s linear;
  -o-transition: opacity 0.2s linear, visibility 0.2s linear;
  transition: opacity 0.2s linear, visibility 0.2s linear; }
#nav_main ul li.red a { color: #C50012; }
#nav_main ul li.blue a { color: #0090DC; }
#nav_main ul li.purple a { color: #CE008C; }
#nav_main ul li.orange a { color: #E19900; }
#nav_main ul li.green a { color: #88AA06; }

#nav_main ul li a:hover,
#nav_main ul li:hover a,
#nav_main ul li.active span,
#nav_main ul li.trail a { color: #fff; }
#nav_main ul li.red:hover,
#nav_main ul li.active.red,
#nav_main ul li.trail.red { background: #C50012; }
#nav_main ul li.blue:hover,
#nav_main ul li.active.blue,
#nav_main ul li.trail.blue { background: #0090DC; }
#nav_main ul li.purple:hover,
#nav_main ul li.active.purple,
#nav_main ul li.trail.purple { background: #CE008C; }
#nav_main ul li.orange:hover,
#nav_main ul li.active.orange,
#nav_main ul li.trail.orange { background: #E19900; }
#nav_main ul li.green:hover,
#nav_main ul li.active.green,
#nav_main ul li.trail.green { background: #88AA06; }
*/

/* Drop-Down Navigation */
/*
#nav_main li {
  position: relative;
}
#nav_main ul li:hover > ul {
  visibility: visible;
  opacity: 1;
}
#nav_main ul ul,
#nav_main ul ul li ul {
  font-size: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  visibility: hidden;
  position: absolute;
  z-index: 99999;

  background: #ffffff;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear, visibility 0.2s linear;
  -moz-transition: opacity 0.2s linear, visibility 0.2s linear;
  -o-transition: opacity 0.2s linear, visibility 0.2s linear;
  transition: opacity 0.2s linear, visibility 0.2s linear;
}

#nav_main ul li.red ul { background: #C50012; }
#nav_main ul li.blue ul { background: #0090DC; }
#nav_main ul li.purple ul { background: #CE008C; }
#nav_main ul li.orange ul { background: #E19900; }
#nav_main ul li.green ul { background: #88AA06; }

#nav_main ul ul {
  top: 27px;
  left: 0;
  margin: 0;
  border-radius: 0 5px 5px 5px;
}
#nav_main ul li.orange ul,
#nav_main ul li.blue ul,
#nav_main ul li.green ul {
  top: 48px;
}
#nav_main ul ul li ul {
  top: 0 !important;
  left: 265px;
}
#nav_main ul ul li {
  clear: both;
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
#nav_main ul ul li:last-child {
  border: 0;
}
#nav_main ul ul li a,
#nav_main ul ul li strong,
#nav_main ul ul li span.active {
  background: none;
  padding: 5px 10px;
  margin: 0;
  text-decoration: none;
  display: inline-block;
  border: 0 none;
  float: left;
  clear: both;
  width: 245px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
#nav_main ul ul li span.active {
  font-weight: bold;
}
#nav_main ul ul li a:hover {
  color: #000;
}
#nav_main ul li a.first {
  border-left: 0 none;
}
#nav_main ul li a.last {
  border-right: 0 none;
}
*/



#nav_sub {
  font-size: 15px;
}

#nav_sub span.active {
  cursor: pointer;
}

#nav_sub ul li {
  padding: 4px 0;
}

#nav_sub ul li a,
#nav_sub ul li span {
  color: var(--color-dark);
  font-weight: bold;
  text-decoration: none;
}

#nav_sub ul li ul {
  display: none;
}

#nav_sub ul li.active ul,
#nav_sub ul li.trail ul {
  display: block;
}

#nav_sub ul li a:hover,
#nav_sub ul li a.active,
#nav_sub ul li span.active,
#nav_sub ul li a.trail {
  text-decoration: none;
}

#nav_sub ul li a:hover,
#nav_sub ul li a.active,
#nav_sub ul li span.active,
#nav_sub ul li a.trail {
  color: var(--color-primary);
}

#nav_sub ul.level_2 li {
  padding-left: 15px;
  margin-left: 0;
}

#nav_sub ul.level_2 li a,
#nav_sub ul.level_2 li span {
  color: var(--color-dark);
  font-weight: normal;
}


#nav_sub ul.level_3 li a,
#nav_sub ul.level_3 li span {
  color: var(--color-dark);
  font-weight: normal;
}

#nav_sub ul.level_3 li {
  background: url('../images/ul_subnav_hook.png') no-repeat 2px 9px;
}

#nav_sub .travel li.active>a {
  color: #CE008C;
}

/*#nav_sub ul.level_3.travel,
#nav_sub ul.level_3.rental { display: none; }
#nav_sub .level_2 .active ul.level_3.travel,
#nav_sub .level_2 .active ul.level_3.rental { display: block; }*/

#nav_sub ul.level_3.travel,
#nav_sub ul.level_3.rental {
  display: none;
}

#nav_sub .level_2 .active ul.level_3.rental {
  display: block;
}

#nav_sub .level_2.travel .active ul.level_3.travel {
  display: block;
}

/*#nav_sub .level_2 .active ul.level_3.travel { display: block; }*/

/*#nav_sub ul.level_2.travel, #nav_sub ul.level_3.travel { display: none; }
#nav_sub .level_2 .active ul.level_2.travel, #nav_sub .level_2 .trail ul.level_2.travel { display: block; }
#nav_sub .level_2.travel .active ul.level_3.travel, #nav_sub .level_2.travel .trail ul.level_3.travel { display: block; }*/


/* Navigation Mobil */
#nav-main-mobile,
#nav-trigger {
  display: none;
}

#nav-trigger {
  float: right;
  margin-top: 16px;
  width: 24px;
}


/* Navigation Rental */
.purple #nav_sub ul.rental a:hover {
  color: #CE008C !important;
}

.purple #nav_sub ul.rental li.active a {
  color: #CE008C;
}

.purple #nav_sub ul.rental li.active ul a {
  color: #666;
}

.purple #nav_sub ul.rental li.active ul li.active a {
  color: #CE008C;
}

/*  Navigation Service */
.nav_service {
  float: right;
  margin: 14px 15px 0 0;
}

.nav_service a {
  color: var(--color-primary);
  margin-right: 10px;
  font-weight: bold;
  text-decoration: none;
}

.nav_service a:hover {
  color: var(--color-purple);
}

.nav_service p,
.nav_service .social_ico {
  float: left;
}

.nav_service .social_ico {
  margin-left: 10px;
}

.nav_service p {
  margin-top: 8px;
}

/*  Meta Nav @Footer */
.meta_nav a {
  text-decoration: none !important;
}

/*  Headlines */
h1 {
  font-size: 28px;
  color: #737373;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: normal;
}

h2 {
  font-size: 20px;
  color: var(--color-primary);
}

h3 {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: bold;
}

#right h2 {
  padding: 5px 0 0 0;
  margin-top: 0;
}

#right h2.ce_headline {
  font-size: 15px;
}

#startseite h1 {
  margin-top: 0;
}

h1.blue {
  color: var(--color-primary);
}

h1.big {
  font-size: 28px;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Splitter */
div.hr {
  background: url(../images/bg_plus.png) repeat-x;
  height: 10px;
  margin: 25px 0;
}

/* Lists */
#main ul,
#main ol {
  margin: 10px 0;
  display: flow-root; /* statt overflow: hidden, damit z.B. Focus-Outlines nicht abgeschnitten werden */
}

#main ol {
  padding: 0 0 0 20px;
}

#main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#main ul li {
  background: url('../images/ul_bullet.gif') 0 5px no-repeat;
  padding-left: 15px;
}

#main li {
  margin-bottom: 8px;
}

/* Tables */
#main thead,
#main th {
  background: #eee;
  border: 1px solid #eee;
}

#main tbody {
  border: 1px solid #eee;
}

#main td,
#main th {
  padding: 5px;
  border: 1px solid #eee;
}

#main .team_tab tbody,
#main .team_tab td {
  border: 0;
  padding: 0;
}

/*  Navigation Breadcrumb */
#main .mod_breadcrumb {
  font-size: 11px;
  font-size: 0.6875rem;
  width: 100%;
  display: inline-block;
}

#main .mod_breadcrumb ul {
  list-style: none;
  padding: 0;
}

#main .mod_breadcrumb li {
  float: left;
  padding: 0 5px 0 0;
  color: var(--color-dark);
  background: none;
}

#main .mod_breadcrumb li.first {
  display: none;
}

#main .mod_breadcrumb li a {
  text-decoration: none;
  color: var(--color-dark) !important;
}

#main .mod_breadcrumb li a:hover {
  color: var(--color-primary) !important;
}

/*  Navigation Sub mobile */
#main #nav_sub_mobile {
  margin: 30px 0;
  border-top: 2px solid #ccc;
  padding: 20px 0 0;
}

#main #nav_sub_mobile ul {
  list-style: none;
  margin-left: 20px;
}

#main #nav_sub_mobile ul.level_1 {
  margin-left: 0;
}

#main #nav_sub_mobile li {
  background: none;
  padding-left: 0;
  margin-bottom: 0;
}

#main #nav_sub_mobile li.active,
#main #nav_sub_mobile li.trail {
  background: #eee;
}

#main #nav_sub_mobile a,
#main #nav_sub_mobile span.active {
  text-decoration: none;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid #ccc;
  display: block;
}

#main #nav_sub_mobile span.active {
  font-weight: bold;
}


#main #nav_current_level {}

/*  Gallery */
#main .ce_gallery ul,
#main .gallery ul {
  display: flow-root; /* statt overflow: hidden, damit z.B. Focus-Outlines nicht abgeschnitten werden */
  list-style: none;
  margin: 0;
  padding: 0;
}

#main .ce_gallery li,
#main .gallery li {
  float: left;
  margin: 0 20px 20px 0;
  padding: 0;
  background: none;
}

/*  Social Icons */
.social_ico a,
.social_ico span {
  background: #424242;
  color: #fff !important;
  padding-top: 4px;
  height: 30px;
  width: 30px;
  margin-right: 8px;
  text-decoration: none !important;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.social_ico a:hover {
  background: var(--color-primary);
}

.social_ico .whatsapp {
  font-size: 21px;
  padding-top: 0;
}

/*  chat-to-click */
.social_ico span {
  background: var(--color-primary);
  color: #fff !important;
  padding: 0px 10px;
  height: 30px;
  font-size: 21px;
  width: 30px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

.chat-options {
  margin-top: 10px;
  background: var(--color-primary);
  color: #fff !important;
  padding: 1px 0;
  max-width: 320px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  top: 50px;
  z-index: 1;
  right: 20px;
}

.chat-options a {
  color: #fff !important;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
}

.chat-options p {
  margin: 0;
}

.chat-options a:hover {
  background: #000000;
}

.chat-options a i {
  font-size: 20px;
  margin-right: 9px;
}

/*  Pagination */
#main .pagination ul {
  list-style: none;
  margin: 0;
  font-weight: bold;
}

#main .pagination li {
  float: left;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #ccc;
  background: none;
  padding-left: 0;
}

#main .pagination li.last {
  margin-right: 0;
  border: 0;
}

/*  Downloads */
#main .ce_downloads ul {
  list-style: none;
}

#main .ce_downloads li {
  padding: 0;
  background: none;
}

/*  Banner */
.mod_banner {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 10px 10px 20px 10px;
  text-align: center;
}

.mod_banner h4 {
  margin-top: 0;
  font-weight: normal;
  font-size: 80%;
  color: #aaa;
  text-align: right;
}

/*  Search Form */
.keywordsearch {
  float: right;
  margin-top: 15px;
  width: 230px;
}

.keywordsearch .formbody {
  display: flex;
}

.keywordsearch .widget {
  margin-bottom: 0;
}

.keywordsearch .gsc-control-cse {
  border: 0;
  padding: 0;
  background: transparent;
}

.keywordsearch form {
  width: 260px;
}

.keywordsearch input.text {
  border-radius: 5px 0 0 5px;
  color: #999;
  vertical-align: top;
  height: 18px;
}

.keywordsearch input.gsc-search-button,
.keywordsearch input.gsc-search-button:hover,
.keywordsearch input.gsc-search-button:focus {
  background-color: var(--color-primary);
  border: 0;
  padding: 6px 8px;
}

.keywordsearch .gsc-search-box-tools .gsc-search-box .gsc-input {
  padding-right: 0;
}

.keywordsearch .gsib_a {
  padding-right: 0;
}

.keywordsearch .submit {
  border-radius: 0 5px 5px 0;
  height: 30px;
  width: 30px;
  line-height: 30px;
  padding: 0;
  background-color: var(--color-grey);
}

.keywordsearch .submit:hover {
  background-color: var(--color-primary);
}

.keywordsearch.results {
  width: 100%;
}

.search_mobil {
  display: none;
  background: url('../images/sprites.png') no-repeat 6px 7px var(--color-primary);
  height: 30px;
  width: 30px;
  cursor: pointer;
  border-radius: 100%;
  border: 0;
  float: right;
  margin: 14px 20px 0;
}

.search_overlay .close {
  background: url('../images/close-icon.png') no-repeat;
  cursor: pointer;
  float: right;
  height: 30px;
  width: 30px;
  margin: 15px 20px;
  border: 0;
}

.search_overlay {
  display: none;
  width: 100%;
  height: 100vh;
  background: #666;
  color: #fff;
  position: relative;
  z-index: 100;
}

.search_overlay .inner {
  padding: 20%;
  text-align: center;
}

.search_overlay p {
  font-size: 36px;
}

.search_overlay .mod_search {}

.search_overlay .mod_search .submit,
.search_overlay .mod_search .text {
  color: #000;
  border: 1px solid #fff;
  padding: 20px;
  font-size: 20px;
  width: 100%;
  box-sizing: border-box;
  margin: 20px 0 0;
  text-align: center;
}

.search_overlay .mod_search .submit {
  background: var(--color-primary);
  color: #fff;
  border: 0;
}


.mod_search .relevance,
.mod_search .url {
  display: none;
}

.mod_search h3 {
  font-weight: bold;
}

.mod_search h3 span {
  font-weight: normal;
}

.mod_search .even,
.mod_search .odd {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Sidebar Right */
#right a {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: bold;
}

#right a.btn,
#right .more a {
  color: #fff;
}

#right a:hover,
#right a.btn:hover,
#right .more a:hover {
  color: var(--color-purple);
}

#right .mod_newslist,
#right .mod_eventlist {
  background: var(--color-primary);
  -webkit-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  padding: 5px 15px;
  color: #fff;
  margin-left: -15px;
}

#right .mod_newslist .image_container,
#right .mod_eventlist .image_container {
  float: right;
  margin: 0 0 10px 10px;
}

#right .mod_newslist .layout_short,
#right .mod_eventlist .layout_short {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

#right .mod_newslist .layout_short.first {
  padding-top: 10px;
}

#right .mod_newslist .layout_short.last,
#right .mod_eventlist .layout_short.last {
  border-bottom: none;
}

#right .mod_newslist h2,
#right .mod_eventlist h2 {
  font-size: 15px;
  padding: 0;
}

#right .mod_eventlist h1 {
  font-size: 16px;
  padding: 0;
  font-weight: bold;
  color: #fff;
  margin: 10px 0 20px;
}

#right .mod_newslist h2 a,
#right .mod_eventlist h2 a,
#right .mod_eventlist a {
  text-decoration: none;
  color: #fff;
}

#right .mod_newslist h2 a:hover,
#right .mod_eventlist h2 a:hover,
#right .mod_eventlist a:hover {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
}

#right .mod_newslist h3,
#right .mod_eventlist h3 {
  color: #fff;
}

#right .mod_newslist p.more a,
#right .mod_eventlist p.more a {
  background: transparent;
  padding: 0;
}
#right .mod_newslist p.more a:hover,
#right .mod_eventlist p.more a:hover {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
}

#right .mod_eventlist .date,
#right .mod_eventlist .time {
  display: block;
}

#right .seeall {
  margin-top: -45px;
  font-size: 13px;
}

/* News / Events */
.mod_newslist .teaser,
.mod_eventlist .event {
  display: flow-root; /* statt overflow: hidden, damit z.B. Focus-Outlines nicht abgeschnitten werden */
}

#right .mod_newslist p {
  margin-bottom: 0;
}

#right .mod_newslist .teaser a {
  color: #fff;
  text-decoration: underline;
  font-weight: normal;
}

.mod_newslist .image_container,
.mod_eventlist .image_container {
  float: right;
  margin: 0 25px 25px 25px;
}

.layout_short,
.mod_eventlist .event {
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  padding: 0px 0 15px;
  margin-bottom: 20px;
}

.layout_short:last-child,
.mod_eventlist .event:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

#right .mod_eventlist {
  padding-top: 15px;
}

.mod_newslist h2 a,
.mod_eventlist h2 a {
  text-decoration: none;
}

.mod_newslist h3,
.mod_eventlist h3 {
  margin-bottom: 0;
}

.mod_eventlist .layout_list_short {
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  padding: 0px 0 15px;
  margin-bottom: 20px;
}

/* Forms */
.widget {
  margin-bottom: 12px;
}

.widget.w50 {
  float: left;
  width: 50%;
  padding-right: 12px;
  box-sizing: border-box;
}

.clr {
  clear: both;
}

.widget h2 {
  padding-top: 25px;
}

button.xl,
.submit {
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 40px;
  background: var(--color-primary);
  border: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.submit:hover {
  background: #CE008C;
}

.routinglink .submit {
  padding: 4px 10px 7px 18px;
  background-position: 5px -342px;
}

.routinglink .submit:hover {
  color: #FDEC00;
}

.ce_comments {
  margin-top: 35px;
}

.ce_comments .comment {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.columnar .widget {
  display: flow-root; /* statt overflow: hidden, damit z.B. Focus-Outlines nicht abgeschnitten werden */
}

.columnar label {
  text-align: right;
  padding: 3px 20px 0 0;
}

.ce_comments label {
  text-align: left;
  float: none;
}

.ce_form input.text,
.ce_form textarea,
.ce_form select {
  width: 100%;
  padding: 6px;
  box-sizing: border-box;
}

.ce_form select {
  height: auto;
}

.ce_form textarea.tiny {
  height: 65px;
}

.columnar input.text,
.columnar select {
  width: 245px;
}

.columnar textarea {
  width: 250px;
}

.columnar input.text,
.columnar input.captcha,
.columnar textarea,
.ce_comments input.text,
.ce_comments input.captcha,
.ce_comments textarea {
  background: #EEEEEE;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  border: none;
  margin-bottom: 10px;
  width: 270px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.columnar textarea,
.ce_comments textarea {
  height: 100px;
}

.ce_comments textarea {
  margin-top: 20px;
}

.columnar input.submit,
.ce_comments input.submit {
  margin-left: 140px;
  margin-top: 10px;
  background: var(--color-primary);
}

.ce_comments input.submit {
  margin-left: 0;
}

.columnar input.submit:hover,
.ce_comments input.submit:hover {
  color: #fff;
  background: #333;
}

.ce_comments .invisible {
  display: none;
}

.columnar input.captcha,
input.captcha {
  width: 30px;
}

.ce_form textarea.small {
  height: 80px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.datepicker table tr td {
  vertical-align: middle;
}

#main .org-selector ul {
  list-style: none;
  margin: 15px 0 0;
}

#main .org-selector ul li {
  background: none;
  padding: 5px 10px;
  border: 1px solid #ddd;
  margin: 0 5px;
  display: inline-block;
}

#main .org-selector ul li.active {
  background: var(--color-primary);
  color: #fff;
}

#main .org-selector ul li:hover {
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
}

#main .org-content {
  padding: 15px;
  border: 2px solid var(--color-primary);
  position: relative;
  top: -2px;
}

.reg-form input.text,
.reg-form textarea {
  border: 1px solid #bbb;
  background: #fff;
}

.reg-form .submit {
  margin-bottom: 0;
}


/* Travel suggestion */
.travel_suggestion label {
  width: 150px;
}

.travel_suggestion br {
  clear: both;
}

.travel_suggestion .columnar .checkbox_container {
  margin-top: 10px;
  margin-left: 170px;
}

.travel_suggestion .columnar input.submit {
  margin-left: 170px;
}

/* Sitemap */
.custom {
  background: #fff;
  display: inline-block;
  padding: 0;
  width: 100%;
}

.custom .mod_sitemap {
  max-width: 1460px;
}

.custom .mod_sitemap a {
  text-decoration: none;
}

.custom #sitemap p {
  margin: 0;
}

.custom .mod_sitemap a:hover,
.custom .mod_sitemap ul.level_2 a:hover {
  color: var(--color-primary);
}

.custom .mod_sitemap ul {
  list-style: none;
  margin-bottom: 20px;
  padding: 0 20px;
}

.custom .mod_sitemap ul.level_1 {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  font-size: 16px;
}

.custom .mod_sitemap ul.level_1 li a {
  display: inline-block;
}

.custom .mod_sitemap ul.level_1 li a {
  min-height: 50px;
}

.custom .mod_sitemap ul.level_1 li li a {
  min-height: 0;
}

.custom .mod_sitemap ul.level_1 > li {
  font-weight: bold;
  margin: 0;
  width: 25%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.custom .mod_sitemap ul li ul {
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.custom .mod_sitemap ul.level_2 li {
  float: none;
  font-weight: normal;
  padding: 0;
}

.custom .mod_sitemap ul.level_2 li.last {
  margin-bottom: 20px;
}

.custom .mod_sitemap ul.level_2 li a {
  color: #241F1F;
  margin: 0;
  font-size: 13px;
}

.custom .mod_sitemap ul li ul li ul {
  display: none;
}

.custom .mod_sitemap li.float-none {
  float: left;
  margin-bottom: 40px;
}

.custom .mod_sitemap li.float-none a {
  color: #241F1F;
}

.custom .trigger {
  display: block;
  border: 0;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px 10px 20px;
  background: var(--color-primary);
}

.custom .trigger:hover {
  cursor: pointer;
  background: #164E81;
}

#footer {
  clear: both;
  padding-top: 20px;
}

#footer .inside {
  max-width: 1460px;
  padding: 0 20px 20px;
}

#footer a {
  color: #241F1F;
  text-decoration: underline;
}

#footer a:hover {
  color: var(--color-primary);
}


/* Content Elements */
.textimage.pos_left .img {
  width: 220px;
  float: left;
}

.textimage.pos_left .text {
  margin-left: 220px;
}

.textimage.pos_left .text:after {
  content: ' ';
  display: block;
  clear: left;
}

.textimage.pos_right .img {
  width: 220px;
  float: right;
  margin-left: 20px;
}

.textimage.pos_right .text:after {
  content: ' ';
  display: block;
  clear: right;
}

/* Youtube */
.newstv,
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.newstv iframe,
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Accordion */
.ce_accordion {
  margin: 12px 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.ce_accordion .toggler {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
}

.ce_accordion .toggler:hover {
  cursor: pointer;
  color: var(--color-primary);
}

.ce_accordion .toggler:after {
  position: absolute;
  left: 0;
  content: "+";
}

.ce_accordion .toggler.active:after {
  content: "–";
}

.ce_accordion .accordion {
  padding-left: 20px;
}



.like_toolbar {
  clear: left;
  padding-top: 30px;
}

.like_toolbar .button {
  display: inline-block;
  vertical-align: top;
}

.like_toolbar .button.facebook {
  margin-right: 40px;
}

.like_toolbar ul {
  list-style: none;
}

.like_toolbar li {
  padding: 0 !important;
  background: none !important;
}

.like_toolbar a {
  color: #fff !important;
}

.like_toolbar .info a {
  color: #666 !important;
}


.bookingpilot-form {
  margin: 30px 0;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.05);
  border: 2px solid var(--color-primary);
}



/* ==|== non-semantic helper classes ======================================== */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}

.ir br {
  display: none;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  display: none !important;
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.hide {
  display: none;
}


/* ==|== media queries ====================================================== */


@media only screen and (max-width: 1024px) {
  #left {
    display: none;
  }

  #main {
    width: 75%;
  }
}



@media only screen and (max-width: 960px) {
  #nav-main {
    left: -15px;
    top: 140px;
  }

  #right .seeall {
    float: none;
    margin: 0;
  }

  .logo {
    left: -40px;
  }

  .logo img {
    height: 110px;
  }

  #supporter .container {
    width: 100%;
  }

  .custom .mod_sitemap ul.level_1 > li {
    width: 50%;
  }
}


@media only screen and (max-width: 768px) {

  body {
    padding: 0 !important;
  }

  #main {
    width: 100%;
    margin-left: 0;
  }

  .inside {
    min-height: auto !important;
  }

  #right .seeall {
    float: right;
    margin-top: -45px;
  }

  .custom .mod_sitemap li.float-none.last {
    margin-left: 0;
  }

  #header {
    min-height: 190px;
  }

  .logo {
    display: none;
  }

  .logo_mobil {
    display: block;
  }

  .keywordsearch {
    display: none;
  }

  .search_mobil {
    display: inline-block;
  }

  /*.nav_service { float: left; }*/
  .nav_service {
    margin-top: 15px;
    margin-right: 30px;
  }

  #wrapper {
    padding: 0 15px;
  }

  .hide_on_desktop {
    display: block;
  }

  .safari .logo_mobil {}

  .safari .logo_mobil img {
    float: left;
    margin: 10px 5px;
    width: 120px;
    max-height: 95px;
  }

  #nav-main {
    display: none;
  }

  #nav-main-mobile,
  #nav-trigger {
    display: block;
  }

}

@media only screen and (max-width: 767px) {

  body {
    font-size: 14px;
  }

  .hide_on_mobile,
  .hide-on-mobile {
    display: none;
  }

  .widget.w50 {
    float: none;
  }

  /*.safari .logo_mobil { position: relative; z-index: -1; top: 50px; left: 25%;}*/
  .nav_service .social_ico {
    margin-left: 0;
  }

  .nav_service .social_ico a {
    margin-right: 5px;
  }
}

@media only screen and (max-width: 640px) {
  
  .custom .mod_sitemap ul.level_1 > li {
    width: 100%;
  }

  .custom .mod_sitemap ul.level_2 li {
    margin-bottom: 8px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
  }

  .custom .mod_sitemap ul.level_1 li a {
    margin-bottom: 0;
    margin-top: 15px;
  }

  .custom .mod_sitemap ul.level_2 li a {
    margin-top: 0;
  }

  .flex-container {
    flex-direction: column;
  }
}

@media only screen and (max-width: 420px) {
  #container {
    top: 0px;
  }

  #header {
    min-height: 160px;
  }

  .nav_service {
    float: left;
  }

  .logo_mobil {
    top: 0px;
    left: 29%;
    position: relative;
    clear: both;
  }
  .logo_mobil img {
    margin-top: 0;
  }

  .safari .logo_mobil {
    top: 0px;
    left: 33%;
  }

  .safari #container {
    top: -20px;
  }

  .chat-options {
    right: auto;
  }

  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 350px) {
  .logo_mobil img {
    max-height: 100px;
  }
}

/* ==|== print styles ======================================================= */

@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}