/*
    ------------------------------------
    🎨 Global CSS Params (Desktop-only)
    ------------------------------------
*/

:root {
  --header-height: 150px;
  --footer-height: 88px;
  --header-left-width: 400px;
  --logo-width: 140px;
  --logo-height: 52px;
  --top-frame-height: 32px;
  --bottom-frame-height: 35px;
}

html, 
body {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0;
  padding: 0;
}

/* Global fonts/theme + box-sizing live in `base.css` */

/*
    ------------------------------------
    📑 Layout
    ------------------------------------
*/
/* Header, pinned top, 150px high */

.header-container {
  height: var(--header-height);
}

header {
  height: var(--header-height);
}

.header-left {
  width: var(--header-left-width);
  height: var(--header-height);
  background: url('/assets/images/layout/header_center.png') no-repeat center center;
  background-size: cover;
}

.header-right {
  background: url('/assets/images/layout/header_right.png') repeat-x top left;
}

.header-logo {
  position: absolute;
    right: 10px;
    top: 10px;
}

/* .content-container sizing is set via inline style in the layout */
.content-container {
  overflow: hidden;
}

.content-inner {
  height: 100%;
  overflow-x: visible;
}

footer {
  height: var(--footer-height);
  background: url('/assets/images/layout/footer.png') 0 0 repeat-x;
}

.footer-container {
  height: var(--footer-height);
}

.footer-content {
  width: 100%;
  max-width: 1088px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.footer-content nav {
  width: 100%;
  max-width: 1088px;
}

.framed-box {
  display: grid;
  position: absolute;
  top: 0;
  left: 580px;
  /* Adjust horizontal position as needed */
  /* width: 676px;  old small*/
  width: 860px;
  height: 100%;
  /* Fill the parent's available height (set by content-container) */

  /* Fixed top and bottom rows, flexible middle row */
  grid-template-columns: 29px 819px 22px;
  /* fixed widths horizontally */
  grid-template-rows: var(--top-frame-height) 1fr var(--bottom-frame-height);
  overflow: visible;
  overflow-x: visible;
}

/* Top Frame remains fixed at 32px */
.framed-box>.top {
  grid-column: 1 / span 3;
  background-image: url('/assets/images/layout/rahmen-text_top.png');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 870px var(--top-frame-height);
}

/* Left Frame: fills its grid cell; background image won’t scale, overflow hidden clips it */
.framed-box>.left {
  grid-column: 1;
  grid-row: 2;
  background-image: url('/assets/images/layout/rahmen-text_left.png');
  background-repeat: repeat-y;
  background-position: top left;
  background-size: 29px auto;
  overflow: hidden;
}

/* Middle Content: fills available space, scrollable if needed */
.framed-box>.content {
  grid-column: 2;
  grid-row: 2;
  background-color: #dbdada;
  /* Keep internal scrolling inside the framed content */
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-width: auto; /* Firefox */
  /* Removed fixed width/height so it fills its grid cell */
  margin-right: 0px;
  border-right: 1px solid #5e5d5e;
  position: relative;
  overflow-x: hidden;
  /* Prevent horizontal scrolling from long words / wide elements */
  overflow-wrap: normal;
  word-break: normal;
}

/* Visible scrollbar styling for Chromium/WebKit */
.framed-box>.content::-webkit-scrollbar {
  width: 12px;
}
.framed-box>.content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
}
.framed-box>.content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

/* Clamp common wide elements inside the framed content */
.framed-box>.content img,
.framed-box>.content video,
.framed-box>.content iframe,
.framed-box>.content embed,
.framed-box>.content object {
  max-width: 100%;
}

.framed-box>.content table {
  max-width: 100%;
}

.framed-box>.content pre,
.framed-box>.content code {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
}

.module-wrapper {
  overflow-y: hidden;
  overflow-y: hidden;
}
/* Right Frame: fills its grid cell */
.framed-box>.right {
  grid-column: 3;
  grid-row: 2;
  background-image: url('/assets/images/layout/rahmen-text_right.png');
  background-repeat: repeat-y;
  background-position: top left;
  background-size: 22px auto;
  overflow: hidden;

}

/* Bottom Frame fixed at 35px */
.framed-box>.bottom {
  grid-column: 1 / span 3;
  background-image: url('/assets/images/layout/rahmen-text_bottom.png');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 870px var(--bottom-frame-height);
}

/*
    ------------------------------------
    🧭 Navigation (Main Site Buttons)
    ------------------------------------
*/
.nav-toggle {
  display: none;
}

header ul.nav-list {
   overflow-x: auto;
   white-space: nowrap;
}

header .nav-button {
  width: 145px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.7);
  background: url('/assets/images/button_top_normal.png') no-repeat center center;
  background-size: contain;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border: none;
  transition: background-image 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s ease-in-out;
  font-size: 12px;
}

header .nav-button:hover {
  background: url('/assets/images/button_top_hover.png') no-repeat center center;
  background-size: contain;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none !important;
  /* transform: translateY(1px); */
  /* Optional "pressed" effect, remove 'top:1px' from active if using this */
}

header .nav-button:active {
  background: url('/assets/images/button_top_hover.png') no-repeat center center;
  /* Or a specific "active/pressed" image */
  background-size: contain;
  transform: translateY(1px);
  /* "Pressed down" effect */
}

header .nav-button.active {
  background: url('/assets/images/button_top_active.png') no-repeat center center;
  background-size: contain;
  color: rgba(0, 0, 0, 0.7);
  transform: none;
  /* Ensure no Y-translation if it's already "active" */
}

header .nav-button.active:hover {
  background: url('/assets/images/button_top_active.png') no-repeat center center;
  /* Keep active style on hover */
  background-size: contain;
  color: rgba(0, 0, 0, 0.7);
  /* Keep active text color */
  transform: none;
  /* No jump or press effect if it's already active and hovered */
}

/* Responsive nav toggle + mobile panel for narrower viewports */
@media (max-width: 1150px) {
  /* Switch to toggle button */
  header .nav-list {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    background: url('/assets/images/button_top_normal.png') no-repeat center center;
    background-size: contain;
    border: none;
    border-radius: 0;
    letter-spacing: 0;
    box-shadow: none;
    margin-top: 22px;
  }

  .nav-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
  }

  .nav-toggle:hover {
    background: url('/assets/images/button_top_hover.png') no-repeat center center;
    background-size: contain;
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-toggle:active {
    background: url('/assets/images/button_top_hover.png') no-repeat center center;
    background-size: contain;
    transform: translateY(1px);
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }

  .mobile-nav-backdrop.is-open {
    opacity: 1;
  }

  .mobile-nav-panel {
    position: fixed;
    inset: auto 0 0 0;
    margin: 0 auto;
    z-index: 1050;
    display: flex;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  }

  .mobile-nav-panel.is-open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-panel__inner {
    width: 92%;
    max-width: 420px;
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    padding: 12px 14px 16px;
    color: #fff;
  }

  .mobile-nav-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  .mobile-nav-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
  }

  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-nav-list .nav-button {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 12px 14px;
    line-height: 1.3;
    font-size: 14px;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
  }

  .mobile-nav-list .nav-button:hover,
  .mobile-nav-list .nav-button:active,
  .mobile-nav-list .nav-button.active {
    background: rgba(255, 255, 255, 0.18);
  }
}

/*
    ------------------------------------
    🖼️ Module Styles & Link Slideshow
    ------------------------------------
*/

.module-wrapper {
  position: absolute;
  /* top: var(--header-height); */
  top: 0px;
  /* main already accounts for footer height; avoid subtracting it twice */
  bottom: 0;
  left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  /* Height available for each of the 2 stacked modules */
  --module-slot-height: min(370px, calc((100% - 5px - 20px) / 2));
  /* keep the classic layout (no scrollbars in the module column) */
  overflow-y: hidden;
  overflow-x: hidden;
  padding-bottom: 20px;
}

/* General styling for module frames (top and bottom) */
.module-top-frame,
.module-bottom-frame {
  /* Default background for modules like .module-video_overlay (if it doesn't get special :has() rule) */
  background-image: url('/assets/images/layout/rahmen-big.png');
  /* DEFAULT FRAME for unspecified modules */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;

  aspect-ratio: 472 / 370;
  width: min(100%, 472px);
  min-width: 472px;
  max-width: 100%;
  /* Always occupy the computed slot height (no double-clamping) */
  /** height: var(--module-slot-height); **/
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  /* Padding for the content INSIDE the frame image (for modules using this direct bg method) */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-family: 'Open Sans', sans-serif;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin-top: -3px;
}

/* Specific background for frames directly containing HTML modules */
.module-top-frame:has(> .module-html),
.module-bottom-frame:has(> .module-html) {
  background-image: url('/assets/images/layout/rahmen-big_background.png');
  /* HTML MODULES GET THIS BACKGROUND */
}
.module-html {
  min-height: 100%;
  min-width: 100%; 
  align-content: center;
  padding-left: 100px;
}

/* Overrides for PARENT FRAMES of modules using the ::after framing technique */
.module-bottom-frame:has(> .module-link_slideshow),
.module-top-frame:has(> .module-link_slideshow),
.module-bottom-frame:has(> .module-single_image),
.module-top-frame:has(> .module-single_image),
.module-bottom-frame:has(> .module-slideshow),
.module-top-frame:has(> .module-slideshow),
.module-bottom-frame:has(> .module-video_overlay),
.module-top-frame:has(> .module-video_overlay) {
  /* ADDED: for slideshow */
  background-image: none !important;
  padding: 0 !important;
  width: 472px !important;
  height: var(--module-slot-height) !important;
  aspect-ratio: unset !important;
  max-height: none !important;
  display: block;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

/* Styles for the CONTENT HOLDER of modules using the ::after framing technique */
.module-top-content.module-link_slideshow,
.module-bottom-content.module-link_slideshow,
.module-top-content.module-single_image,
.module-bottom-content.module-single_image,
.module-top-content.module-slideshow,
.module-bottom-content.module-slideshow,
.module-top-content.module-video_overlay,
.module-bottom-content.module-video_overlay {
  /* ADDED: for slideshow */
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  padding: 14px;
  /* Thickness of rahmen-big.png's border, creating the window */
  box-sizing: border-box;
  overflow: hidden;
  background: transparent;
}

/* The frame image overlay for modules using the ::after framing technique (uses rahmen-big.png) */
.module-top-content.module-link_slideshow::after,
.module-bottom-content.module-link_slideshow::after,
.module-top-content.module-single_image::after,
.module-bottom-content.module-single_image::after,
.module-top-content.module-slideshow::after,
.module-bottom-content.module-slideshow::after,
.module-top-content.module-video_overlay::after,
.module-bottom-content.module-video_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background-image: url('/assets/images/layout/rahmen-big.png');
  /* FRAME FOR THESE MODULES */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

/* Swiper instance styling (common for link_slideshow and slideshow) */
.module-link_slideshow .swiper,
.module-slideshow .swiper {
  /* ADDED: .module-slideshow .swiper */
  width: 100% !important;
  height: 100% !important;
  position: relative;
  z-index: 1;
}

.module-link_slideshow .swiper-slide,
.module-slideshow .swiper-slide {
  /* ADDED: .module-slideshow .swiper-slide */
  width: 100% !important;
  height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

/* Specific margin for link_slideshow if needed, or make it common */
.module-link_slideshow .swiper-slide {
  margin-top: 0px;

  /* User's adjustment for image fitting in link_slideshow */
}

/* For .module-slideshow, images should fill the slide directly without negative margin */
.module-slideshow .swiper-slide img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}


.module-link_slideshow .swiper-slide img {
  /* Image styling specific to link_slideshow */
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

/* Video overlay should use the same framed area and cover inside */
.module-top-content.module-video_overlay,
.module-bottom-content.module-video_overlay {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: transparent;
}
.module-video_overlay .video-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.module-video_overlay .media-frame {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}
.module-video_overlay .media-frame video,
.module-video_overlay .media-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  padding: 13px;
}

/* --- Custom Swiper Navigation Arrows (Sprite) --- */
/* Applied to both .module-link_slideshow and .module-slideshow */
.module-link_slideshow .swiper-button-prev::after,
.module-link_slideshow .swiper-button-next::after,
.module-slideshow .swiper-button-prev::after,
/* ADDED */
.module-slideshow .swiper-button-next::after {
  /* ADDED */
  display: none !important;
}

.module-link_slideshow .swiper-button-prev svg,
.module-link_slideshow .swiper-button-next svg,
.module-link_slideshow .swiper-button-prev .swiper-navigation-icon,
.module-link_slideshow .swiper-button-next .swiper-navigation-icon,
.module-slideshow .swiper-button-prev svg,
.module-slideshow .swiper-button-next svg,
.module-slideshow .swiper-button-prev .swiper-navigation-icon,
.module-slideshow .swiper-button-next .swiper-navigation-icon {
  display: none !important;
}

.module-link_slideshow .swiper-button-prev,
.module-link_slideshow .swiper-button-next,
.module-slideshow .swiper-button-prev,
/* ADDED */
.module-slideshow .swiper-button-next {
  /* ADDED */
  width: 36px;
  height: 36px;
  padding: 0;
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
  box-sizing: border-box;
  box-shadow: none;
  background-image: url('/assets/images/layout/slidernav.png');
  background-repeat: no-repeat;
  background-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  margin-top: 0;
  pointer-events: auto;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
}

.module-link_slideshow .swiper-button-prev,
.module-slideshow .swiper-button-prev {
  /* ADDED */
  background-position: 0 0;
  left: 15px;
}

.module-link_slideshow .swiper-button-next,
.module-slideshow .swiper-button-next {
  /* ADDED */
  background-position: -36px 0;
  right: 15px;
}

.module-link_slideshow .swiper-button-prev:hover,
.module-slideshow .swiper-button-prev:hover {
  /* ADDED */
  background-position: 0 -36px;
}

.module-link_slideshow .swiper-button-next:hover,
.module-slideshow .swiper-button-next:hover {
  /* ADDED */
  background-position: -36px -36px;
}

.module-link_slideshow .swiper-button-disabled,
.module-slideshow .swiper-button-disabled {
  /* ADDED */
  opacity: 0.5;
  cursor: default;
}

/* Styles for other module types (html, single_image, etc.) */
.module-top-content td {
  /* padding: 0.3rem 0.5rem; */
  vertical-align: top;
}

.module-top-content strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Styling for the <img> tag within the framed .module-single_image */
.module-top-content.module-single_image img,
.module-bottom-content.module-single_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.slide-caption {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(75, 74, 74, 0.7);
  color: #FFF;
  height: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}





#impressumnav {
  background: url("/assets/images/layout/background_impressumnav.jpg") no-repeat scroll 0 0 / contain rgba(0, 0, 0, 0);
    height: 101px;
    left: 325px;
    line-height: 10px;
    padding: 5px 6px;
    position: absolute;
    top: 0;
    width: 255px;

}

*,
::after,
::before {
  box-sizing: border-box;
}



.widerruf-form input[type="text"],
.widerruf-form input[type="date"],
.widerruf-form select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Restore classic fieldset frame and legend sizing */
.widerruf-form fieldset {
  border: 1px solid #7f7f7f;
  padding: 0.75rem 1rem 1rem;
  margin: 0 0 1rem;
  min-width: 0;
}

.widerruf-form legend {
  float: none;
  width: auto;
  padding: 0 0.4rem;
  margin: 0;
  font-size: 1em;
  line-height: 1.2;
  border: 0;
}

/* Submit buttons inside .widerruf-form */
.widerruf-form input[type="submit"] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.widerruf-form input[type="submit"]:hover {
  background-color: #45a049;
}

/* Labels and legends inside .widerruf-form */
.widerruf-form label,
.widerruf-form legend {
  font-weight: bold;
}

footer nav.footer-nav {
  margin: 0 auto;
  width: 100% !important;
  justify-content: center !important;
}

/* Footer: 5 Spalten, max. 2 Zeilen – wie auf den Content-Seiten */
footer ul.nav-list.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: center;
  justify-items: center;
  align-content: end;
  width: auto;
  max-width: 1088px;
  margin: 0 auto;
  padding: 0 0 2px;
  column-gap: 4px;
  row-gap: 2px;
  overflow: visible;
  white-space: normal;
  list-style: none;
}

footer ul.nav-list.footer-nav-grid > li {
  margin: 0;
  padding: 0;
  height: 30px;
}

/* Bottomnav */
/* Base rules for both sizes */
footer .nav-button {
  display: block;
  background-repeat: no-repeat;
  background-position-x: 0;
  background-position-y: 0;
  line-height: 30px;
  height: 30px;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  transition: background-image 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

/* Short buttons (145px wide) */
footer .nav-button.short {
  width: 145px;
  background-image: url('/assets/images/button_bottom_145.png');
}

/* Long buttons (195px wide) */
footer .nav-button.long {
  width: 195px;
  background-image: url('/assets/images/button_bottom_195.png');
}

/* Hover shifts the sprite up by 30px */
footer .nav-button:hover {
  background-position-y: -30px;
}

/* Active shifts the sprite up by 60px */
footer .nav-button.active {
  background-position-y: -60px;
  color: #000;
}




.gallerie-thumbs {
  display: flex;
  flex-wrap: wrap;           /* sorgt dafür, dass die Thumbs umgebrochen werden */
  gap: 0.5rem;               /* Abstand zwischen den Thumbnails */

  /* 2) Horizontalen Scroll deaktivieren, nur vertikales Scrollen erlauben */
  overflow-x: hidden;        /* keine horizontale Scrollleiste */
  overflow-y: auto;          /* bei vielen Thumbnail-Reihen kann vertikal gescrollt werden */

  /* (Optional) Max-Höhe, damit bei vielen Reihen nur innerhalb dieses Containers gescrollt wird */

}

/* Einzelnes Thumbnail: fixe Breite, damit mehrere nebeneinander passen */
.gallerie-thumbs .thumb-item {
  flex: 0 0 auto;         /* keine automatische Skalierung, nur eigene Breite */
  width: 120px;           /* Breite eines einzelnen Thumbnails – nach Bedarf anpassen */
  height: auto;
  border: 3px solid #ccc; /* optionaler Rahmen um jedes Vorschaubild */
  border-radius: 4px;     /* leicht abgerundete Ecken */
  overflow: hidden;
  background-color: white; /* oder passend zu deinem Layout */
}

/* Bild im Thumbnail: Vollbreite des Containers */
.gallerie-thumbs .thumb-item img {
  display: block;
  width: 100%;
  height: auto;
}
.gallerie-thumbs .thumb-item.selected {
  border: 2px solid #f00;  /* z.B. roter Rand, um das aktive Thumbnail zu markieren */
}


.content h1 { font-size: 1.5em; text-indent: -9999px; line-height: 8px; margin: 0; padding: 0;}
.content h2 { font-size: 1.0em; }
.content h3 { font-size: 1.0em; }
.content a , .content a:visited ,.content  a.agb, .content   a:visited.agb { color: #0000EE !important; }
.content, .module-html {
  font: 600 14px/20px "Open Sans", Helvetica, "Helvetica Neue", Arial, sans-serif;
}

#language {
	font-size: 12px;
    left: 445px;
    position: relative;
    text-transform: uppercase;
    top: 20px;
}
.english a{
	background: url(/img/English.png) no-repeat left center;
	padding-left: 30px;
	line-height: 16px;
	z-index: 999;
 }
.german  a{
	background: url(/img/German.png) no-repeat left center;
	padding-left: 30px;
	line-height: 16px;
	z-index: 999;
}

#language {   
	font-size: 12px;
    left: 445px;
    position: relative;
    text-transform: uppercase;
    top: 20px;
}
.english a{
	background: url(/assets/images/English.png) no-repeat left center;
	padding-left: 30px;
	line-height: 16px;
	z-index: 999;
 } 
.german  a{ 
	background: url(/assets/images/German.png) no-repeat left center;
	padding-left: 30px;
	line-height: 16px;
	z-index: 999;
} 
#info {
	text-align: center; margin-top: 20px;
}

@media (max-width: 1300px) {
      /* Layout Fixes */
      .framed-box {
        left: 455px;
      }
 
      .module-wrapper {
        left: -5px;
      }

      .module-top-content.module-link_slideshow,
      .module-bottom-content.module-link_slideshow,
      .module-top-content.module-single_image,
      .module-bottom-content.module-single_image,
      .module-top-content.module-slideshow,
      .module-bottom-content.module-slideshow,
      .module-top-content.module-video_overlay,
      .module-bottom-content.module-video_overlay {
        width: 100%;

      }
      .module-top-frame, .module-top-content{
        min-width: 472px !important;
        max-width: 472px !important;
        align-content: center;
        padding-left: 30px;
        padding-right: 20px;
        margin-top: -2px;
      }
      .module-top-content {
        padding-left: 44px;
      }
}
