/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

:root {
  --primary: #0b66ac;
  --primary-hover: #0b78cd;
  --bs-primary: #0b66ac;
  --bg-primary: #0b66ac;
  --text-color: #383838;
  --text-light: #d9e3ee;
  --border-color: #ccc;
  --border-radius: 0.25rem;
  --border-radius-sm: 1px;
  --transition-speed: 150ms;
  --transition-speed-slow: 300ms;
  --font-family: "Open Sans", sans-serif;
  --shadow-sm: 0 0.5rem 1rem rgb(0 0 0 / 0.25);
  --shadow-md: 5px 5px 5px rgb(0 0 0 / 0.25);
  --nav-meta-height: 1.75rem;
  --navbar-height: 3.25rem;
}

/* ============================================
   FONT FACES
   ============================================ */

/* Icomoon Icon Font */
@font-face {
  font-family: 'icomoon';
  src: url('fonts/icomoon.eot?f8t1i');
  src: url('fonts/icomoon.eot?f8t1i#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?f8t1i') format('truetype'),
    url('fonts/icomoon.woff?f8t1i') format('woff'),
    url('fonts/icomoon.svg?f8t1i#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Open Sans Regular */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('../Fonts/open-sans-v15-latin-regular.woff2') format('woff2');
}

/* Open Sans SemiBold */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
       url('../Fonts/open-sans-v15-latin-600.woff2') format('woff2');
}

/* Open Sans Bold */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold'), local('OpenSans-Bold'),
       url('../Fonts/open-sans-v15-latin-700.woff2') format('woff2');
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  /* Optional: Ensures the math works exactly as expected if base font size is altered */
  font-size: 100%;
}

h1,
.h1 {
  /* Scales from 1.5rem (at 320px) to 2.5rem (at 1920px) */
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
}

h2,
.h2 {
  /* Scales from 1.33333rem (at 320px) to 2rem (at 1920px) */
  font-size: clamp(1.33333rem, 1.2rem + 0.6667vw, 2rem);
}

h3,
.h3,
.h3 h2 {
  /* Scales from 1.25rem (at 320px) to 1.75rem (at 1920px) */
  font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
}

h4,
.h3 {
  /* Scales from 1.125rem (at 320px) to 1.5rem (at 1920px) */
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
}

/* ============================================
   ICON CLASSES
   ============================================ */

i.fa-solid.fa-cart-shopping {
  color: var(--primary);
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chevron-down:before {
  content: "\e900";
}

.icon-chevron-left:before {
  content: "\e901";
}

.icon-chevron-right:before {
  content: "\e902";
}

.icon-chevron-up:before {
  content: "\e903";
}

.icon-arrow-thin-left:before {
  content: "\e904";
}

.icon-arrow-thin-right:before {
  content: "\e905";
}

.icon-at-symbol:before {
  content: "\e906";
}

.icon-checkmark:before {
  content: "\e907";
}

.icon-close:before {
  content: "\e908";
}

.phone-link::before,
.email-link::before {
  margin-right: 0.5rem;
}

/* ============================================
   BASE STYLES
   ============================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
}

html,
body,
#page-wrapper {
  overflow-x: hidden;
}

body {
  color: var(--text-color);
  font-family: var(--font-family);
}

a {
  color: var(--primary);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: var(--primary-hover);
}

b,
strong {
  font-weight: 600;
}

.bodytext li {
  padding-bottom: 0.5rem;
}


/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

h1,
.h1 {
  padding-bottom: 1rem;
}


.display-6 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
}


.subheader.text-secondary {
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.border-info {
  --bs-border-opacity: 1;
  border-color: var(--primary) !important;
}

.bg-aqua,
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(11, 102, 172, var(--bs-bg-opacity)) !important;
  color: white;
}

.bg-whitesmoke {
  background-color: whitesmoke;
}

.bg-dark {
  background-color: var(--primary) !important;
}

.w-1400 {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.text-primary,
.fsc-default .nav-link,
.nav-tabs .nav-link {
  color: var(--primary) !important;
}

.alert.alert-primary {
  border-radius: 1rem;
  background-color: aliceblue;
  border-color: var(--primary);
  border-bottom-width: 3px;
}

/* ============================================
   NAVIGATION - META NAV
   ============================================ */

.nav-meta-wrapper {
  position: fixed;
  top: 0;
  height: var(--nav-meta-height);
  width: 100vw;
  z-index: 910;
  min-height: 2.5rem;
}

.nav-meta-wrapper.meta-extra {
  z-index: 1300;
}

.nav-meta-wrapper .nav-link {
  color: var(--text-light);
  padding-top: 0.175rem;
  padding-bottom: 0.1rem;
  position: relative;
}

.nav-underline .nav-link {
  font-size: 1rem;
}

.nav-underline .nav-link.active,
.nav-underline .show>.nav-link {
  color: white;
}

.meta-extra {
  color: whitesmoke;
}

.meta-extra * {
  margin-bottom: 0;
}

.meta-extra .small {
  line-height: 1.5;
  padding-top: 0.25rem;
}

.meta-extra a,
.meta-extra a:not([href]):not([tabindex]) {
  color: white;
  text-decoration: none;
}

.meta-extra [class*="fsc-"],
.meta-extra [class*="ce-"] {
  display: flex;
}

.nav-underline .nav-link.meta-text {
  color: white;
  display: flex;
}

.nav-underline .nav-link.meta-text a:hover {
  color: white !important;
}

.meta-extra a.mobile:hover,
.meta-extra a.mobile:focus {
  color: white;
}

.meta-extra .mobile.nav-link:nth-child(2) {
  margin-right: 3rem;
}

.nav-meta,
.nav-scroller {
  height: auto;
}

.nav-meta.container.fixed-top {
  overflow: visible;
}

.nav-link.meta-text span {}


.links-real .nav-link {
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 0.5rem !important;
  margin-right: 0.5rem;
}

.links-real span.pipe {
  position: relative;
  top: -0.175rem;
}

.links-real span.pipe:last-of-type {
  display: none;
}

/*
.links-real .nav-link:not(:last-of-type):after {
    content: " | ";
}
    */

.nav-underline .nav-link {
  color: aliceblue;
}

.nav-underline .nav-link:hover {
  color: white;
}

.nav-underline .nav-link:focus,
.nav-underline .nav-link:hover {
  border-bottom-color: white;
}

.nav-meta .nav-link:focus {
  text-decoration: none;
}

/* ============================================
   NAVIGATION - MAIN NAVBAR
   ============================================ */

#main-navbar {
  transition: all var(--transition-speed) ease-in;
  outline: none;
}

#main-navbar.navbar-light {
  background-color: white !important;
}

.navbar-brand>img {
  max-width: 220px;
  transition: all ease 150ms;
}

.navbar-shrink .navbar-brand>img {
  max-width: 180px;
  transition: all ease 150ms;
}

.navbar-light .navbar-nav .nav-link {
  text-transform: uppercase;
  font-weight: 700;
  color: white;
}

.navbar-light .navbar-nav .active .nav-link {
  color: var(--primary);
}

.nav-item .nav-link.active {
  font-weight: 600;
}

.mega-dropdown .submenu .nav-link:hover,
.mega-dropdown .nav-link:focus {
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.main-new {
  position: absolute;
  top: 116%;
  z-index: 12;
  left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  right: 0;
  width: 100vw !important;
}

.main-new a.nav-link {
  color: white;
}

/* ============================================
   NAVIGATION - DROPDOWNS
   ============================================ */

.dropdown-menu {
  border-radius: var(--border-radius-sm);
  border-width: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  padding: 1rem 1.5rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--primary);
}

.dropdown-menu .dropdown-submenu .dropdown-menu {
  margin-top: 0.5rem;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--primary);
  text-decoration: none;
  background-color: transparent;
  font-weight: 600;
}

.dropdown-item.active.parent-active {
  color: black;
  text-decoration: none;
  background-color: whitesmoke;
}

.dropdown-submenu a::after {
  top: 48%;
}

.submenu-toggler {
  display: none;
}

.submenu-toggler a {
  width: 3rem;
}

/* ============================================
   NAVIGATION - TOP SEARCH & HEADER
   ============================================ */

.for-top a {
  color: white;
}

.for-top figure.image {
  position: relative;
  left: 1rem;
  transition: all var(--transition-speed-slow) ease;
}

.searchbar-shrink .for-top figure.image {
  position: relative;
  left: 0;
  transition: all var(--transition-speed-slow) ease;
}

.for-top .col-md-auto {
  padding-left: 0;
  padding-right: 0;
}

#expanded-content-top {
  transition: all var(--transition-speed-slow) ease;
}

.searchbar-shrink #expanded-content-top.bg-aqua {
  background-color: white;
}

.top-search .input-group-append {
  display: flex;
  width: 96%;
}

.top-search.form-inline .form-control {
  width: 100%;
  height: calc(2em + 0.5rem + 2px);
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  background-color: white;
  border-radius: var(--border-radius);
  border-bottom: 1px solid var(--text-light);
}

.breadcrumb .container {
  display: flex;
}

.breadcrumb-item:nth-child(2)::before {
  content: "|";
}

a.breadcrumb-item,
.breadcrumb-item.active {
  line-height: 2;
}

/* ==========
page links
=========== */
.kesearch_pagebrowser .active .page-link,
.kesearch_pagebrowser .pagination a {
  padding: 0.5em 0.75rem;
  /* color: var(--primary); */
}

.kesearch_pagebrowser .active .page-link,
.kesearch_pagebrowser .pagination a {
  padding: 0.5em 0.875rem !important;
}

.kesearch_pagebrowser ul li a {
  color: var(--primary) !important;
}

.active>.page-link,
.page-link.active,
.kesearch_pagebrowser ul li .page-link.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white !important;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  border-radius: var(--border-radius-sm);
  border-color: transparent;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none !important;
}

.btn-default {
  background-color: #c5cdd7;
}

.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:active {
  color: #fff;
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

a.btn.btn-primary {
  padding-left: 1.3333rem;
  padding-right: 1.3333rem;
  line-height: 1.5;
  padding-bottom: 0.5rem !important;
  padding-top: 0.5rem !important;
  margin-bottom: 1rem;
}

.ce-t3sbs_button.pb-5.btn.btn-primary {
  padding-bottom: 0.5rem !important;
  margin-bottom: 3rem !important;
}

.ce-t3sbs_button.pt-3 {
  padding-top: 0.5rem !important;
  margin-top: 1.5rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-control,
.btn,
.nav-pills .nav-link,
input,
textarea,
select {
  border-radius: var(--border-radius-sm);
}

/*
select.form-control {
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
  -ms-appearance: menulist !important;
  -o-appearance: menulist !important;
  appearance: menulist !important;
}
  */

.form-control::placeholder {
  color: gray;
}

.form-control {
  border-radius: var(--border-radius-sm);
  border: 1px solid #ced4da;
}

label {
  padding-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 0.25rem;
}

/* ============================================
   BADGES & PILLS
   ============================================ */

.badge {
  line-height: 1.4;
}

.nav-pills .nav-link {
  border-radius: var(--border-radius-sm);
  color: var(--text-color);
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link:focus {
  color: var(--primary);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: var(--primary);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  border: 0 solid rgba(0, 0, 0, 0.125);
  border-radius: 2px;
  margin-bottom: 2px;
}

.card-header {
  border-bottom: 0 solid rgba(0, 0, 0, 0.125);
}

.card-body {
  flex: 1 1 auto;
  padding: 0 1.25rem 1rem;
}

.card-body>div>p:first-child {
  margin-top: 0.5rem;
}

.card.noimage.nointroduction {
  margin-bottom: 0;
}

.card.noimage.nointroduction .text {
  padding: 0;
}

/* ============================================
   ACCORDION
   ============================================ */

.accordion-item {
  border-color: white;
  border-bottom-width: 2px;
}

.accordion-button {
  background-color: whitesmoke;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
}

h2 button.accordion-button {
  font-size: 1.25rem;
}

button.accordion-button[aria-expanded="true"] {
  background-color: ghostwhite !important;
}

.ge_collapsible_accordion a[data-toggle*="collapse"]::after {
  content: "\e903";
  font-family: 'icomoon';
  float: right;
}

.ge_collapsible_accordion a[data-toggle*="collapse"][aria-expanded*="false"]::after {
  content: "\e900";
}

.collapsible-accordion a {
  text-decoration: none;
}

/* ============================================
   CONTENT ELEMENTS
   ============================================ */

.ce-container {
  display: flex;
  flex-direction: column;
}

.ce-row {
  display: flex;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.ce-left .ce-gallery,
.ce-column {
  flex: 1 1 auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.ce-gallery img {
  max-width: 100%;
  height: auto;
}

.ce-background_wrapper>div {
  padding: 1.5rem;
}

.main-content a {
  text-decoration: underline;
}

/*
.main-content .ce-textmedia h2 {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.main-content .ce-textmedia h3 {
  padding-top: 0.3333rem;
  padding-bottom: 0.75rem;
}
  */

.main-content .ce-textmedia .lead {
  font-size: 1.15rem;
}

.ce-textmedia ul {
  padding-left: 1.25rem;
}

.ce-bullets {
  list-style: none;
  padding-left: 0;
}

.ce-bullets li {
  position: relative;
  padding-left: 1.3rem;
}

.ce-bullets li::before {
  font-family: 'Font Awesome 7 Free';
  content: "\f00c";
  position: absolute;
  left: 0.1rem;
  font-size: 85%;
  color: var(--primary);
  top: 16%;
  font-weight: 900;
}

/* File Uploads */
.ce-uploads i[class*="pdf"] {
  float: left;
  position: relative;
  top: 0.2rem;
}

.ce-uploads a {
  text-decoration: none;
}

.ce-uploads span {
  display: inherit;
}

.ce-uploads li.list-group-item {
  display: flex;
}

.file-info-wrap {
  display: flex !important;
  flex-direction: column;
}

.ce-uploads-filesize.badge.badge-secondary {
  font-weight: 500;
  background-color: transparent;
  border: 2px solid darkgray;
  color: gray;
  line-height: 1.2;
}

/* Menu Subpages */
.ce-menu_subpages .nav-link.active,
.ce-menu_subpages .nav-link:hover,
.ce-menu_subpages .nav-link:focus {
  background-color: whitesmoke;
}

/* Links */
.ce-link-content,
.ce-link-content:hover {
  box-shadow: none;
}

/* ============================================
   TEASERS
   ============================================ */

.teaser {
  position: relative;
}

.main-content .teaser {
  min-height: 20rem;
}

.bg-aqua .h2 {
  font-size: clamp(1.33333rem, 1.2rem + 0.6667vw, 2rem);
  font-weight: 700;
}

.bg-aqua .h2,
.bg-aqua.teaser h4 span.lead {
  font-size: clamp(1.33333rem, 1.2rem + 0.6667vw, 2rem);
  font-weight: 700;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5);
}

.teaser .btn.btn-primary {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
  white-space: nowrap;
}

.bg-aqua.teaser>.ce-link {
  position: absolute;
  height: 100%;
  width: 100%;
  border: 0 solid red;
  top: 0;
  left: 0;
  z-index: 1100;
}

.bg-aqua.teaser .ce-link-content {
  padding: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.bg-aqua.teaser .ce-link-content .ce-link {
  bottom: 34%;
  right: 2rem;
  position: absolute;
}

.aside-teaser {
  margin-bottom: 1rem;
  background-color: whitesmoke;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem;
}

/* ============================================
   PAGELISTS
   ============================================ */

.ce-pagelist_sub {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

[class*="pagelist-cards"] {
  margin-top: 1.5em;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr)) !important;
}

h3.pagelist-card-title {
  padding: 0.5rem 0.75rem;
}


[class*="pagelist-cards"] a {
  text-decoration: none;
}

[class*="pagelist-cards"] a h3 {
  font-size: 1.1rem;
}

[class*="pagelist-cards"] h3 {
  font-size: 1.1rem;

}

[class*="pagelist-cards"] .text {
  padding: 0.5rem 1rem;
}

[class*="pagelist-cards"] a {
  text-decoration: none;
}

[class*="pagelist-cards"] a:hover,
[class*="pagelist-cards"] a:focus {
  text-decoration: underline;
  color: var(--primary);
}



/* ============================================
   PARALLAX & BACKGROUNDS
   ============================================ */

.jarallax *,
[class*="background"] .bodytext * {
  color: white;
  text-shadow: 2px 2px rgb(0 0 0 / 50%);
  font-weight: 700;
  /* WCAG ermergency */
  /* text-shadow: 
     -1px -1px 0 #000,  
      1px -1px 0 #000,
     -1px  1px 0 #000,
      1px  1px 0 #000;
      */
}



[style*="background"] a {
  color: whitesmoke;
  text-decoration: none;
}

[style*="background"] a:hover {
  text-decoration: none !important;
  color: white;
}

section.parallax.s-100 {
  background-size: 100%;
}

section.parallax.s-120 {
  background-size: 120%;
}

section.parallax.s-140 {
  background-size: 140%;
}

section.parallax.s-160 {
  background-size: 160%;
}

section.parallax.s-180 {
  background-size: 180%;
}

section.parallax.s-200 {
  background-size: 200%;
}

/* ============================================
   CAROUSELS & SLIDERS
   ============================================ */

.carousel a {
  color: whitesmoke;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  font-weight: 600;
}

.carousel-item>figure>a.carousel-imglink {
  display: flex;
}

.carousel a:hover {
  text-decoration: none !important;
  color: white;
}

.slider-text {
  background-color: rgba(36, 65, 90, 0.4);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  padding: 1rem;
  font-weight: 600;
}

.slick-item.slick-slide {
  padding: 0.5rem !important;
}

.owl-item {
  padding: 0.5rem;
}

.owl-item a {
  display: inline-flex;
}

.carousel-control-prev .visually-hidden,
.carousel-control-next .visually-hidden {
  background-color: black !important;
  color: white !important;
}

@media (max-width:767.98px) {

  .carousel-caption {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    color: #fff;
    text-align: center;
  }
}

.t3s_swiper {
  margin-bottom: 2.5rem;
}

/*
.t3s_swiper .swiper-wrapper {
    width: calc(100% - 5rem);
    margin-left: 2.5rem;
    margin-right: 2.5rem;
}
      */
.swiper {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.swiper-slide-image {
  object-fit: contain;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  fill: var(--primary) !important;
}

.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible {}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary) !important;
  text-shadow: none !important;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  width: 0.66666rem;
  height: 0.66666rem;
}

/* ============================================
   PRODUCT WIDGETS
   ============================================ */

.prod-widget {
  padding: 1rem;
  border: 1px solid var(--border-color);
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.prod-widget-img {
  max-height: 230px;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}

.prod-widget-img img {
  max-height: 230px;
}

.prod-widget-info p {
  margin-bottom: 0.125rem;
}

.prod-widget.carousel a {
  color: inherit;
  text-shadow: none;
  font-weight: 600;
}

.prod-widget.carousel a.btn-primary {
  color: white;
}

.prod-widget-info .prod-widget-sku {
  color: dimgray;
}

.small.prod-widget-sku {
  font-size: 70%;
}

.small.prod-widget-text {
  margin-bottom: 0.5rem;
}

.small.prod-widget-sku a {
  font-weight: 500;
  text-decoration: underline;
}

.prod-widget .carousel-control-prev {
  margin-left: -2rem;
}

.prod-widget .carousel-control-next {
  margin-right: -2rem;
}

.prod-widget .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%230b66ac' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.prod-widget .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%230b66ac' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.main-content .prod-widget-img {
  max-height: 300px;
  overflow: hidden;
}

.main-content .prod-widget-img img {
  max-height: 300px;
}

/* ============================================
   TABLES
   ============================================ */

.table th,
.table td {
  padding: 0.5rem 0.75rem;
}

.table table {
  width: 100%;
}

.list-group-item.d-flex {
  flex-direction: row;
  -webkit-flex-direction: row;
}

.open-hours table th:first-child,
.open-hours table td:first-child {
  width: 33.33333%;
}

.open-hours table th:last-child,
.open-hours table td:last-child {
  width: 66.666663%;
}

/* ============================================
   MODALS
   ============================================ */

.modal.fade.show {
  z-index: 11111;
}

.modal-content {
  box-shadow: 0 0 100rem 100rem rgb(0 0 0 / 0.5);
}

.modal-open #page-wrapper>.container {
  z-index: 10010;
  position: relative;
}

.modal-backdrop.show {
  opacity: 0 !important;
  display: none !important;
}

.modal-open nav#main-navbar {
  z-index: 100;
}

.expressModal+.modal {
  z-index: 999;
}

.expressModal+.modal .modal-header header {
  display: none;
}

.expressModal+.modal .modal-header .close {
  position: absolute;
  right: 1rem;
}

.expressModal+.modal .modal-header {
  border: none;
  z-index: 9;
}

.modal-backdrop {
  z-index: 999;
}

.expressModal+.modal .modal-dialog {
  max-width: 920px;
}

.expressModal+.modal .modal-body .ce-html {
  text-align: center;
  top: -3rem;
  position: relative;
}

/* ============================================
   ASIDE & SIDEBAR
   ============================================ */

aside.pt-4 {
  padding-top: 2.4rem !important;
}

aside h2,
aside .h2 {
  font-size: 1rem;
  padding-bottom: 1rem;
  transform: scale(1.75);
  position: relative;
  transform-origin: left top;
}

aside h3,
aside .h3 {
  font-size: 1rem;
  padding-bottom: 1rem;
  transform: scale(1.5);
  position: relative;
  transform-origin: left top;
}

#submenu.p-2 {
  padding: 0 !important;
}

/* ============================================
   FOOTER
   ============================================ */

#page-footer .text-light,
.footer,
.footer a {
  color: var(--text-light);
}

.footer a:hover,
.footer a:focus {
  color: white;
}

.footer ul {
  padding-left: 1rem;
  list-style: none;
}

.footer ul li {
  position: relative;
}

.footer ul li::before {
  font-family: 'Font Awesome 7 Free';
  content: "\f054";
  position: absolute;
  left: -0.9rem;
  font-size: 0.5rem;
  top: 0.8em;
  font-weight: 900;
  line-height: 1.5;
}

#page-footer button.btn,
#page-footer button.btn.btn-warnings {
  background-color: white !important;
  color: var(--primary) !important;
}

#page-footer .col-md-3 .fsc-default.text-left .col-sm.text-center {
  text-align: left !important;
}

#page-footer .col-md-3 .fsc-default.text-left .uvion {
  max-width: 180px;
}

/* ============================================
   FORMS - POWERMAIL
   ============================================ */

[class*="powermail"] .layout3:not(fieldset) label,
[class*="powermail"] fieldset.layout3>legend {

  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;

}

[class*="powermail"] .powermail_checkwrap>label,
[class*="powermail"] .powermail_radiowrap>label {
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  clip: inherit;
  border: inherit;
}

.tx-powermail .row+.row {
  margin-block-start: 0;
}

#powermail_field_anrede {
  width: auto;
}

.tx-powermail label {
  padding-bottom: 0.25rem;
}

.control-label {
  margin-top: 0.5rem;
}

.mandatory {
  padding-left: 4px;
}

.powermail_fieldwrap.layout1 div {
  font-weight: 600;
}

.powermail_select {
  width: auto;
}

.powermail_form .form-control {
  border: 1px solid darkgray;
  border-left: 4px solid var(--primary-hover);
}

.form-check-input[type=checkbox] {
  border-radius: .25em;
  border-width: 2px;
  width: 18px;
  height: 18px;
  border-color: darkgray;
}

.form-check-input[type=radio] {
  border-radius: 50%;
  border-width: 2px;
  border-color: darkgray;
}

.form-check-input:checked {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.tx-powermail input[type=checkbox]::before {
  display: none;
}

.tx-powermail>.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.tx-powermail fieldset {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tx-powermail .row {
  margin-bottom: 1rem;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.tx-powermail input[type="submit"] {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Form: Anfrage Beregnungsanlagen */
.anfrage-beregnungsanlagen .powermail_fieldwrap_type_text {
  position: relative;
  top: 0.5rem;
  font-weight: 600;
}

.anfrage-beregnungsanlagen .powermail_fieldwrap_type_check {
  margin-bottom: 0;
}

.anfrage-beregnungsanlagen .powermail_fieldwrap_type_radio .col-sm-12 {
  display: flex;
}

.anfrage-beregnungsanlagen .powermail_fieldwrap_type_radio .col-sm-12>.radio {
  margin-right: 1.5rem;
}

.anfrage-beregnungsanlagen .row:nth-child(2),
.anfrage-beregnungsanlagen .row:nth-child(5) {
  margin-right: 0;
}

.anfrage-beregnungsanlagen .row:nth-child(3),
.anfrage-beregnungsanlagen .row:nth-child(6) {
  margin-left: 0;
}

.anfrage-beregnungsanlagen .row:nth-child(2),
.anfrage-beregnungsanlagen .row:nth-child(3),
.anfrage-beregnungsanlagen .row:nth-child(5),
.anfrage-beregnungsanlagen .row:nth-child(6) {
  width: 50%;
  float: left;
}

/* ============================================
   SEARCH & INDEXEDSEARCH
   ============================================ */

.twitter-typeahead .tt-dataset {
  border: 1px solid #ced4da;
  border-top-width: 0;
}

.twitter-typeahead .tt-dataset .tt-suggestion {
  padding: 0.25rem 0.75rem;
}

.twitter-typeahead .tt-dataset .tt-cursor {
  background-color: #c5cdd7;
}

ul.tx-indexedsearch-browsebox {
  list-style: none;
  margin: 0 0 1.5rem 0;
  display: flex;
  padding-left: 0;
}

ul.tx-indexedsearch-browsebox li {
  padding-right: 0.75rem;
}

.tx-indexedsearch-res .card-body {
  padding-left: 0;
  padding-right: 0;
}

span.tx-indexedsearch-info-sword-word {
  font-style: italic;
  font-weight: 600;
}

.tx-indexedsearch-info {
  display: none;
}

.tx-indexedsearch-redMarkup {
  color: var(--primary);
}

.tx-indexedsearch-percent {
  display: none;
}

button#searchInShop {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 4rem !important;
  margin-bottom: 2rem !important;
}

button#tx-indexedsearch-searchbox-button-submit {
  margin-top: 0 !important;
}

button#ke_search_searchfield_submit {
  width: auto;
  min-width: 3rem;
}

.tx-kesearch-pi1 {
  margin-top: 0;
}

fieldset.kesearch_searchbox {
  display: flex;
}

.d-flex input#ke_search_sword {
  max-height: 2.4rem;
  width: 27vw;
  opacity: 1;
  transition: all 150ms ease;
}

.d-none input#ke_search_sword {
  max-height: 2.4rem;
  width: 0;
  opacity: 0;
  transition: all 150ms ease;
}

input#ke_search_sword:focus-visible {
  outline-style: solid;
  outline-color: var(--primary);
  box-shadow: none;
}

@media (min-width:768px) {
  .navbar-nav.main-navbarnav {
    margin-left: auto;
    margin-right: 3rem;
  }
}

@media (min-width:1024px) {
  div#searchbox {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 0;
  }

  div#searchbox-toggleable.d-none {
    width: 0;
    transition: all 150ms ease-in-out;
    position: absolute !important;
    right: 3rem;
  }

  div#searchbox-toggleable.d-flex {
    transition: all 150ms ease-in-out;
    position: absolute !important;
    right: 3rem;
  }
}

@media (min-width:1400px) {
  div#searchbox {
    /*
    right: 11vw !important;
    */
  }
}

/* ============================================
   GLOSSARY
   ============================================ */

.glossar h1 {
  display: none;
}

.dpnglossary.pagination {
  margin: 1rem 0;
}

.dpnglossary.pagination li {
  padding: 0.2rem 0.3rem;
  margin: 0 !important;
}

.dpnglossary.pagination li.character.empty {
  color: #989898;
}

.dpnglossary.pagination li.character:hover,
.dpnglossary.pagination li.character.current {
  background: var(--primary-hover);
  color: #fff;
  border-radius: 3px;
}

.dpnglossary.pagination li.character:hover a {
  color: #fff;
}

.dpnglossary.details dt,
.dpnglossary.details dd strong:first-child,
.dpnglossary.details dd:last-child {
  display: none;
}

.dpnglossary.details h3 {
  margin-top: 1rem;
}

.dpnglossary.pagination li.character.empty {
  color: #767676;
}

.dpnglossary.pagination li.character.empty:hover {
  background-color: dimgray;
  color: white;
}

/* ============================================
   MISCELLANEOUS
   ============================================ */

.jarallax a.ce-link {
  display: inline-flex;
}

.jumbotron.jumbotron-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.order-md-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-md-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.content-left-align .gallery.mx-auto {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.content-left-align .text-center {
  text-align: left !important;
}

.content-left-align .w-50 {
  width: 33.33333% !important;
}

.back-to-top {
  z-index: 12999;
}

i.fa-solid.fa-cart-shopping {
  position: relative;
  left: -1px;
  top: 1px;
  margin-right: 0.25rem;
}

#minicart {
  position: absolute;
  transition: all 0ms ease;
  right: 0;
  top: 2rem;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top-width: 0;
  width: auto;
  height: auto;
  opacity: 0;
  padding: 0 1rem;
  background-color: whitesmoke;
  min-width: 300px;
  color: var(--text-color);
}

#minicart.collapsing {
  transition: all var(--transition-speed) ease;
}

#minicart.show {
  transition: all var(--transition-speed) ease;
  padding: 0.5rem 1rem;
  opacity: 1;
}

#minicart hr {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

#minicart .p-1 {
  padding: 0.125rem 0.25rem !important;
}

.slide-content {
  position: fixed;
  top: 30vh;
  left: auto;
  z-index: 1230;
  max-width: 25%;
  right: 1rem;
  transition: all var(--transition-speed) ease;
}

.slide-content * {
  transition: all var(--transition-speed) ease;
}

.slide-content a {
  color: white;
}

.slide-content>div {
  background-color: var(--primary);
  padding: 0.75rem;
  margin-bottom: 2px;
}

.slide-content .collapse {
  width: 0;
  transition: all var(--transition-speed) ease;
}

.slide-content .collapsing {
  transition: all var(--transition-speed) ease;
}

.slide-content .collapse.show {
  width: 300px;
  transition: all var(--transition-speed) ease;
}

#jobDataInfo {
  padding: 2rem;
  background-color: whitesmoke;
  border-radius: 3px;
  border: 2px solid white;
  max-width: 800px;
  height: 70%;
  overflow: scroll;
  overflow-x: hidden;
}

#page-wrapper>.container {
  z-index: 900;
  position: relative;
}

div#navbarToggler.show {
  visibility: visible;
}

/* ============================================
   MEDIA QUERIES - DESKTOP LARGE
   ============================================ */

@media (min-width: 1200px) {

  .h4,
  h4 {
    font-size: 1.25rem;
  }

  .for-top {
    position: fixed;
    top: 3rem;
    z-index: 11210;
    left: auto;
    right: 1rem;
    transition: all var(--transition-speed-slow) ease;
    min-width: 15rem;
    height: 6rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    color: rgba(0, 0, 0, 0.75) !important;
    line-height: 1.3333;
    display: flex;
    font-size: 1rem;
  }

  .searchbar-shrink .for-top {
    right: -0.5rem;
    background-color: white;
    padding-right: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed-slow) ease;
    top: 5rem;
  }

  .searchbar-shrink .for-top img.image-embed-item {
    margin-top: 0.5rem;
  }



  .for-top>div>.row>.col .col {
    background-color: white;
    color: rgba(0, 0, 0, 0.75) !important;
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius);
    position: relative;
    z-index: -1;
    top: -0.5rem;
    transition: all var(--transition-speed) ease;
  }

  .searchbar-shrink .for-top>div>.row>.col .col {
    background-color: transparent;
    box-shadow: none;
    transition: all var(--transition-speed) ease;
  }

  .for-top>div>.row>.col .col p {
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .a-top {
    background-color: white;
  }
}

@media (min-width: 1360px) {
  .top-search {
    left: calc((100vw - 1330px) / 2);
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}

/* ============================================
   MEDIA QUERIES - DESKTOP
   ============================================ */

button#search-toggle {
  min-height: 2.4rem;
  background-color: white;
  border-color: white;
  color: var(--primary);
}

button#search-toggle i.fa {
  font-size: 1.33333rem;
  position: relative;
  top: 0.25rem;
}

/* nav */

/*
.nav-extra-wrap {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
*/
.mega-dropdown-menu .menupages li.nav-item:first-child a {
  font-weight: 700;
  margin-bottom: 0.5rem;
}


.navbar-light .navbar-nav .mega-dropdown-menu .nav-link {
  text-transform: none;
  font-weight: 600;
}

.navbar-light .navbar-nav .mega-dropdown-menu .nav-link.active {
  background-color: #ddd !important;
}

.navbar-light .navbar-nav .nav-item.mega-dropdown .nav-link.active {
  color: white;
}

.navbar-light .navbar-nav .mega-dropdown-menu .nav-link:hover {
  background-color: #ddd !important;
}


#main-navbar.navbar-shrink {
  padding: .5rem 0;
}

.mega-dropdown-menu [class*="ce-menu"]>header>* {
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.mega-dropdown-menu [class*="ce-menu"]>header>*>a {
  display: block;
  position: relative;
}

.mega-dropdown-menu [class*="ce-menu"]>header>*>a:hover,
.mega-dropdown-menu [class*="ce-menu"]>header>*>a.active {
  background-color: #ddd;
}

.mega-dropdown-menu [class*="ce-menu"]>header>*>a:hover::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  right: -0.5rem;
  bottom: -0.5rem;
  background-color: #ddd;
  z-index: -1;
}

@media (min-width: 768px) {
  .layout-100 aside:first-child {
    width: 0;
    position: absolute;
    z-index: 1110;
  }

  .layout-100 main.col-md-6 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .modal-lg,
  .modal-xl {
    max-width: 920px !important;
  }
}

@media (min-width: 992px) {
  .main-navbarnav a.nav-link {
    font-weight: 600;
    font-size: 1.25rem;
  }

  .main-new .ash-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /*
  div#navbarToggler {
    position: relative;
  }
    */
  .navbar-expand-lg .main-new .navbar-nav {
    justify-content: center;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-left: 0 !important;

  }

  .searchbar-shrink nav#main-navbar::after {
    height: 0;
    transition: all var(--transition-speed) ease;
  }

  nav#main-navbar::after {
    /*
    content: "";
    position: absolute;
    height: var(--navbar-height);
    width: 100%;
    left: 0;
    background-color: var(--primary);
    top: 100%;
    transition: all var(--transition-speed) ease;
    z-index: 0;
    */
  }


  .ce-textmedia>.ce-gallery[data-ce-columns="1"][data-ce-images="1"] {
    float: right;
    padding-left: 1.5rem;
    padding-bottom: 1rem;
  }

  .navbar-expand-lg .offcanvas .offcanvas-body {
    margin-left: auto !important;
  }

  .nav-meta {
    min-height: var(--nav-meta-height);
  }

  .meta-extra a.mobile[href*="tel"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }

  .slider-text {
    max-width: 60%;
  }

  .slide-content {
    display: block;
  }

  #main-navbar.py-5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  #main-navbar.shrink {
    margin-top: 2.5rem !important;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  #main-navbar.navbar-shrink {
    margin-top: 2.5rem !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    z-index: 1200;
  }

  .navbar-expand-lg .navbar-nav {
    margin-left: 20% !important;
  }

  #main-navbar .nav-item.dropdown {
    position: static;
    z-index: 1100;
  }

  #main-navbar .nav-item>.dropdown-menu {
    left: calc((100vw - 1360px) / 2);
    position: absolute;
    top: 63px;
    right: 0;
    width: 1340px;
    max-width: 100%;
    background-color: whitesmoke;
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex-flow: wrap;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    height: auto;
    overflow: hidden;
    transition: all var(--transition-speed-slow) ease;
    margin-top: 0;
    z-index: 100;
    padding-top: 0;
    padding-bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0);
    border-top-width: 0;
  }

  #main-navbar .nav-item>.dropdown-menu.mega-dropdown-menu {
    left: -1rem;
  }

  #main-navbar .nav-item>.dropdown-menu.mega-dropdown-menu>div {
    width: 100%;
  }

  #main-navbar .nav-item>.dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    overflow: visible;
    display: flex;
    flex-flow: wrap;
    max-height: 800px;
    height: auto;
    transition: all var(--transition-speed-slow) ease;
    margin-top: 0;
    z-index: 100;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top-width: 0;
    top: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .dropdown-submenu.dropdown-menu.show {
    min-width: 100%;
    width: auto;
    box-shadow: 0 0.5rem 0.5rem rgba(0 0 0 / 7%);
    margin-left: -5rem !important;
  }

  .dropdown-menu:not(.mega-dropdown-menu)>* {
    flex: 0 0 25%;
    max-width: 25%;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    justify-content: flex-start;
    flex-flow: column wrap;
  }



  .dropdown-menu>a {
    max-width: 100%;
  }

  .dropdown-item.parent-active {
    font-weight: 600;
  }

  #page-content {
    padding-bottom: 3rem;
    /* scroll-margin-top: 185px; */
  }

  #expanded-content-top {
    /*
    min-height: var(--navbar-height);
    transition: all 0.3s ease;
    display: none;
    */
  }

  .top-search {
    position: relative;
    transition: all var(--transition-speed) ease;
    top: 0;
    z-index: 1120;
    max-width: 1330px;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .searchbar-shrink #expanded-content-top {
    min-height: 0;
  }

  .searchbar-shrink .top-search {
    /*
    position: fixed;
    top: 2.7rem;
    z-index: 1250;
    margin-left: 20rem;
    max-width: 1026px;
    */
  }

  .layout-exp-top>.col-md-9 {
    max-width: 75%;
    flex: 0 0 75%;
  }

  .threecolexptop .main-content {
    max-width: 75%;
    flex: 0 0 75%;
  }

  .layout-100 aside:first-child {
    width: 0;
    position: absolute;
    z-index: 1110;
  }

  .layout-100 main.col-md-6 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .layout-exp-top>aside:first-child {
    position: absolute;
    z-index: 11100;
    margin-top: -0.5rem;
    padding-top: 0 !important;
  }

  .layout-100 #page-content .submenu-toggler {
    display: block;
    position: relative;
    top: -0.25rem;
    left: -2rem;
  }

  .layout-100 #page-content .submenu-toggler a {
    width: 3rem;
    margin-left: -3rem;
  }

  .layout-100 #page-content .submenu-toggler .fas {
    position: relative;
    left: 0;
  }

  .layout-100 #page-content #submenu {
    position: absolute;
    width: 15rem;
    top: 2rem;
    height: auto;
    visibility: visible;
    z-index: 110;
  }

  .layout-100 #page-content #submenu.collapse {
    overflow: hidden;
    transition: all var(--transition-speed-slow) ease;
    transform: translateX(-110%);
    opacity: 0;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0);
  }

  .layout-100 #page-content #submenu.collapsing {
    transition: all var(--transition-speed-slow) ease;
    opacity: 1;
    padding-right: 2rem;
    box-shadow: var(--shadow-md);
  }

  .layout-100 #page-content #submenu.collapse.show {
    transform: translateX(0);
    transition: all var(--transition-speed-slow) ease;
    background-color: white !important;
    opacity: 1;
    box-shadow: var(--shadow-md);
  }

  .layout-100 #page-content a[aria-expanded="false"] .fa-arrow-right {
    transition: all var(--transition-speed-slow) ease;
  }

  .layout-100 #page-content a[aria-expanded="true"] .fa-arrow-right {
    transform: rotate(180deg);
    left: 0;
    transition: all var(--transition-speed-slow) ease;
  }

  .layout-100 #page-content .submenu-toggler a[aria-expanded="false"]::before {
    content: "";
    position: fixed;
    background-color: rgba(0, 0, 0, 0);
    transition: all var(--transition-speed) ease;
    width: 100vw;
    height: 0;
    bottom: 0;
  }

  .layout-100 #page-content .submenu-toggler a[aria-expanded="true"]::before {
    content: "";
    position: fixed;
    width: 100vw;
    height: 82.75vh;
    background-color: rgba(0, 0, 0, 0.25);
    transition: all var(--transition-speed) ease;
    z-index: 0;
    bottom: 0;
    left: 0;
  }

  .searchbar-shrink.layout-100 .submenu-toggler a[aria-expanded="true"]::before {
    height: 100vh;
  }

  .layout-100 #page-content #submenu .collapse,
  .layout-100 #page-content #submenu .collapsing,
  .layout-100 #page-content #submenu .collapse.show {
    display: block !important;
    visibility: visible !important;
  }

  .layout-100 #page-content .collapse#submenu2,
  .layout-100 #page-content .collapsing#submenu2 {
    overflow: hidden;
    width: 0;
    height: auto;
    left: -25rem;
    background-color: transparent;
    position: relative;
    transition: all var(--transition-speed) ease;
    z-index: -1;
  }

  .layout-100 #page-content .collapse.show#submenu2 {
    overflow: visible;
    width: 15rem;
    height: auto;
    left: -5rem;
    background-color: whitesmoke;
    position: relative;
    z-index: 1;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-md);
  }
}

@media (min-width:1200px) {
  main {
    padding-right: 2rem !important;
  }
}

@media (min-width: 1600px) {
  #main-navbar>.container-fluid {
    /*
    position: static;
    */
    padding-left: 11.5%;
    padding-right: 11.5%;
  }
}



/* ============================================
   MEDIA QUERIES - TABLET
   ============================================ */

@media (max-width: 1366px) {
  aside .row.beside>.w-50 {
    width: 100% !important;
  }

  #main-navbar .nav-item>.dropdown-menu,
  #main-navbar .nav-item>.dropdown-menu.show {
    width: 100vw !important;
    margin-left: 0;
    margin-right: 0;
    padding-left: 10vw;
    padding-right: 10vw;
    left: 0 !important;
  }

  .top-search {
    left: 1.5rem;
  }
}

@media (max-width: 1359px) {
  #main-navbar .nav-item>.dropdown-menu.show {
    left: 0;
  }

  .top-search {
    left: 1.5rem;
  }
}

@media (max-width: 1024px) {
  div#page-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .slide-content {
    position: relative;
    max-width: 100%;
    top: 0;
    margin-left: 1.2rem;
  }

  aside h2,
  aside .h2 {
    font-size: 1rem;
    padding-bottom: 1rem;
    transform: scale(1.5);
    position: relative;
    transform-origin: left center;
  }

  aside h3,
  aside .h3 {
    font-size: 1rem;
    padding-bottom: 1rem;
    transform: scale(1.25);
    position: relative;
    transform-origin: left center;
  }
}

@media screen and (min-width: 768px) and (max-width: 1366px) {

  /*
  h1,
  .h1 {
    font-size: 1.5rem;
  }

  h2,
  .h2 {
    font-size: 1.35rem;
  }

  h3,
  .h3 {
    font-size: 1.2rem;
  }

  h4,
  .h4 {
    font-size: 1.1rem;
  }
*/
  .subheader.text-secondary {
    padding-bottom: 1rem;
    position: relative;
    top: -0.25rem;
  }
}

/* ============================================
   MEDIA QUERIES - MOBILE & TABLET
   ============================================ */

@media (max-width: 991.98px) {
  body {
    padding-top: 123px !important;
  }

  .nav-meta,
  .nav-meta nav.nav.nav-underline {
    height: 2.5rem !important;
  }

  .links-real {
    overflow-x: scroll;
  }

  .meta-extra a.mobile>span {
    display: none;
  }

  .navbar-brand img.img-fluid {
    max-width: 43vw;
  }

  .navbar-expand-lg {
    padding-bottom: 1rem !important;
  }

  .main-navbarnav ul.nav.menupages {
    margin-left: -1rem;
  }

  .breadcrumb {
    overflow-x: scroll;
  }

  .breadcrumb .container {
    display: flex;
    flex-direction: row;
    font-size: 90%;
    flex-wrap: nowrap;
  }

  .breadcrumb .container>* {
    flex: 0 0 auto;
  }

  .top-search {
    right: 0;
    top: auto;
    position: relative;
  }

  button#search-toggle {
    right: 0;
  }

  .dropdown-item {
    padding: 0.75rem 1rem;
  }

  .searchbox-toggleable.d-flex {
    position: absolute;
    left: -82vw;
    height: 3rem;
    z-index: 120;
    width: 81vw;
    right: auto;
  }

  .d-flex input#ke_search_sword {
    max-height: 3rem;
    width: 100%;
    opacity: 1;
    transition: all 150ms ease;
  }

  #main-navbar .nav-item>.dropdown-menu,
  #main-navbar .nav-item>.dropdown-menu.show {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0.5rem;
  }

  #main-navbar.navbar-light {
    padding-top: 1rem !important;
    max-width: 100%;
  }

  #navbarToggler .main-new:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    bottom: 0;
    background-color: rgb(0 0 0 / 0);
    height: 0;
    transition: all 150ms ease;
  }

  #navbarToggler.show .main-new:after {
    height: 100vh;
    background-color: rgb(0 0 0 / 0.5);
    transition: all 150ms ease;
  }

  #submenu {
    width: 100%;
    height: 0;
    visibility: visible;
    z-index: 110;
  }

  #submenu.collapse {
    overflow: hidden;
    transition: all var(--transition-speed-slow) ease;
    opacity: 0;
    height: 0;
  }

  #submenu.collapsing {
    transition: all var(--transition-speed-slow) ease;
    opacity: 1;
  }

  #submenu.collapse.show {
    transition: all var(--transition-speed-slow) ease;
    height: auto;
    background-color: whitesmoke !important;
    opacity: 1;
  }

  .dropdown-submenu.dropdown-menu.show {
    padding-left: 1rem;
  }

  .dropdown-submenu.dropdown-menu.show>a {
    padding: 0.5rem 1.5rem;
  }

  #main-navbar {
    top: 2.5rem;
  }

  #main-navbar.navbar-shrink {
    z-index: 1200;
    top: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .main-navbarnav {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
  }

  #main-navbar .menupages a.nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .main-new .nav-item {
    padding-left: 1.5rem;
  }

  /*
  h1,
  .h1 {
    font-size: 1.5rem;
  }

  h2,
  .h2 {
    font-size: 1.3333rem;
  }

  h3,
  .h3 {
    font-size: 1.15rem;
  }
*/

  #minicart {
    color: var(--text-color);
    width: 100%;
  }

  aside:first-child,
  aside.pt-4:first-child {
    padding-top: 0 !important;
  }

  main.col-md-9.main-content.pt-4 {
    padding-top: 0.5rem !important;
  }

  .carousel-caption {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding-top: 0.5rem;
    padding-bottom: 1rem !important;

    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: var(--primary);
    color: white;
  }

  .slider-text {
    background-color: transparent;
    padding: 0.5rem 1rem;
    display: flex !important;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .main-content .teaser {
    margin-bottom: 1rem;
  }

  .navbar-light .navbar-brand {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .navbar-light .navbar-toggler {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    border-color: var(--primary);
  }

  button.navbar-toggler:focus {
    outline: 1px dotted;
    outline: 5px auto var(--primary);
  }

  .navbar-collapse {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  aside .row.beside {
    flex-direction: column;
  }

  aside .row.beside>.w-50 {
    width: 100% !important;
  }

  .pagelist.cards {
    grid-gap: 1rem !important;
  }

  .fixed-top.slide-content {
    display: flex;
  }
}

@media (max-width: 767px) {
  .pagelist .card {
    width: auto;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 1.66666%;
    margin-bottom: 1rem;
  }

  .footer ul li::before {
    line-height: 1.65;
  }
}

/* ============================================
   MEDIA QUERIES - IPAD SPECIFIC
   ============================================ */

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

  aside h2,
  aside .h2 {
    font-size: 1.25rem;
  }

  aside h3,
  aside .h3 {
    font-size: 1.15rem;
    padding-bottom: 1rem;
  }

  main.pr-md-5 {
    padding-right: 1.5rem !important;
  }

  /*
  h1,
  .h1 {
    font-size: 1.75rem;
  }

  h2,
  .h2 {
    font-size: 1.5rem;
  }

  h3,
  .h3 {
    font-size: 1.25rem;
  }
*/


  .container {
    max-width: 100%;
  }
}

/* iPad Landscape */
@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) and (hover: none) {
  .nav-meta .container>* {
    transform: scale(0.85);
  }

  .mega-dropdown-menu>*>.row.fsc-default {
    width: 100vw;
  }

  .searchbar-shrink .for-top {
    top: 9rem;
  }

  .searchbar-shrink span.twitter-typeahead {
    width: 63%;
  }

  #main-navbar.navbar-shrink {
    padding: .66666rem 0;
  }

  #main-navbar .nav-item>.dropdown-menu,
  #main-navbar .nav-item>.dropdown-menu.show {
    width: 100vw !important;
    margin-left: 0;
    margin-right: 0;
    padding-left: 10vw;
    padding-right: 10vw;
    left: 0 !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  div#searchbox {
    width: auto;
    margin-left: auto;
    margin-right: 0;
    left: auto;
    z-index: 120;

  }

  .d-flex input#ke_search_sword {
    width: 43vw;
  }

  .dropdown-menu.show {
    padding-top: 1.5rem !important;
  }

  .navbar-shrink div#searchbox {
    right: 1.5rem;
    z-index: 1100 !important;

  }

  .slide-content {
    z-index: 112;
  }
}


/* ============================================
   LANGUAGE SPECIFIC - ENGLISH
   ============================================ */

html[lang*="en-"] #main-navbar.navbar-shrink {
  margin-top: 0 !important;
}

html[lang*="en-"] div#page-content {
  margin-top: 3rem;
}

html[lang*="en-"] #page-wrapper>.container:first-child {
  z-index: 1115;
}

/* ============================================
   MODAL SPECIFIC - EXPRESS MODAL
   ============================================ */


/* accept close bottom */

.accept-close+.btn-close {
  position: absolute;
  bottom: 2rem;
  z-index: 11;
  width: auto;
  left: 30%;
  display: flex;
  text-align: end;
  align-items: center;
  background: whitesmoke;
  border: 1px solid var(--primary);
  color: black;
  opacity: 1;
}

.accept-close+.btn-close:before {
  content: "Ich habe die Informationen zur Kenntnis genommen";
  width: 100%;
  text-align: start;
}

@media all and (max-width: 900px) {
  .expressModal+.modal iframe {
    width: 100% !important;
  }
}

.nav-tabs .nav-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border-color: #ccc;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}