/* ==========================================================================
   JETI Technische Instrumente GmbH — Consolidated Template Stylesheet
   Mobile-first, BS5 breakpoints (576/768/992/1200/1400)
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables
   ========================================================================== */

:root {
  --schwarz: #000;
  --weiss: #fff;
  --hellgrau: #f7f8f8;
  --grau: #ccc;
  --transparent: rgba(0, 0, 0, 0);
  --box-shadow: rgba(0, 0, 0, 0.3);
  --box-shadow2: rgba(0, 0, 0, 0.2);
  --primaerfarbe: #8b979f;
  --sekundaerfarbe: #006cae;
  --schriftfarbe: #000;
  --hintergrund1: rgba(50, 50, 50, 0.8);
  --hintergrund2: rgba(230, 230, 230, 0.8);
  --hintergrund3: rgba(200, 200, 200, 0.8);
  --hintergrund4: rgba(170, 170, 170, 0.8);
}

/* ==========================================================================
   2. Font Face
   ========================================================================== */

/* roboto-condensed-300 - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-condensed-v24-latin-300.eot');
  src: local(''),
    url('../fonts/roboto-condensed-v24-latin-300.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v24-latin-300.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v24-latin-300.woff') format('woff'),
    url('../fonts/roboto-condensed-v24-latin-300.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v24-latin-300.svg#RobotoCondensed') format('svg');
}

/* roboto-condensed-regular - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v24-latin-regular.eot');
  src: local(''),
    url('../fonts/roboto-condensed-v24-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v24-latin-regular.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v24-latin-regular.woff') format('woff'),
    url('../fonts/roboto-condensed-v24-latin-regular.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v24-latin-regular.svg#RobotoCondensed') format('svg');
}

/* roboto-condensed-300italic - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/roboto-condensed-v24-latin-300italic.eot');
  src: local(''),
    url('../fonts/roboto-condensed-v24-latin-300italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v24-latin-300italic.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v24-latin-300italic.woff') format('woff'),
    url('../fonts/roboto-condensed-v24-latin-300italic.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v24-latin-300italic.svg#RobotoCondensed') format('svg');
}

/* roboto-condensed-italic - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v24-latin-italic.eot');
  src: local(''),
    url('../fonts/roboto-condensed-v24-latin-italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v24-latin-italic.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v24-latin-italic.woff') format('woff'),
    url('../fonts/roboto-condensed-v24-latin-italic.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v24-latin-italic.svg#RobotoCondensed') format('svg');
}

/* roboto-condensed-700 - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v24-latin-700.eot');
  src: local(''),
    url('../fonts/roboto-condensed-v24-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v24-latin-700.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v24-latin-700.woff') format('woff'),
    url('../fonts/roboto-condensed-v24-latin-700.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v24-latin-700.svg#RobotoCondensed') format('svg');
}

/* roboto-condensed-700italic - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v24-latin-700italic.eot');
  src: local(''),
    url('../fonts/roboto-condensed-v24-latin-700italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v24-latin-700italic.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v24-latin-700italic.woff') format('woff'),
    url('../fonts/roboto-condensed-v24-latin-700italic.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v24-latin-700italic.svg#RobotoCondensed') format('svg');
}

/* ==========================================================================
   3. Base
   ========================================================================== */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  color: var(--schriftfarbe);
  font-size: 18px;
  line-height: 28px;
  scroll-behavior: smooth;
}

a {
  color: var(--sekundaerfarbe);
  text-decoration: underline;
  transition: 0.35s color;
  font-weight: 400;
}

a:hover,
a:focus {
  color: var(--primaerfarbe);
  background: none;
  transition: 0.35s color;
}

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

ul {
  margin: 0;
  padding-left: 20px;
}

small,
.small {
  font-size: 100%;
}

.clear {
  clear: both;
}

/* ==========================================================================
   4. Typography
   ========================================================================== */

/* Quick Fix 1.3: Mobile-first heading sizes */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, ol, p, ul {
  margin: 0 0 20px 0;
  padding: 0;
}

h1, .h1 {
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  color: var(--sekundaerfarbe);
  text-transform: uppercase;
  hyphens: auto;
  white-space: initial;
}

h2, .h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  hyphens: auto;
  white-space: initial;
  color: var(--sekundaerfarbe);
}

h3, .h3 {
  color: var(--sekundaerfarbe);
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  border-left: 9px solid var(--primaerfarbe);
  padding-left: 9px;
  padding-top: 15px;
  text-align: left;
  hyphens: auto;
  white-space: initial;
  margin-bottom: 20px !important;
}

h3 em, .h3 em {
  color: var(--primaerfarbe);
  font-style: inherit;
}

h4, .h4 {
  color: var(--primaerfarbe);
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  border-left: 9px solid var(--primaerfarbe);
  padding-left: 9px;
  padding-top: 15px;
  text-align: left;
  hyphens: auto;
  white-space: initial;
  margin-top: -38px;
  float: left;
  width: 100%;
  margin-bottom: 20px !important;
}

h4 em, .h4 em {
  font-size: 18px;
  font-weight: 400;
  line-height: 33px;
  float: left;
  width: 100%;
  font-style: inherit;
}

h5, .h5 {
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  color: var(--sekundaerfarbe);
  hyphens: auto;
  white-space: initial;
}

/* ==========================================================================
   5. Tables
   ========================================================================== */

table {
  border-spacing: 0;
  border: 1px solid var(--primaerfarbe);
  text-align: left;
  position: relative;
  width: 100% !important;
}

table tr {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}

table td {
  width: 100%;
}

table td p {
  margin: 0;
}

table td img {
  width: auto;
  height: auto;
  position: relative;
}

tr:nth-child(even) {
  background-color: var(--hellgrau);
}

tr:nth-child(odd) {
  background-color: var(--weiss);
}

tr:nth-child(even) td,
tr:nth-child(odd) td {
  padding: 10px;
}

table h3 {
  margin-left: -35px;
}

table.headline tr:first-child {
  background: var(--hintergrund1);
  color: var(--hellgrau);
}

table.headline tr:first-child a {
  color: var(--hellgrau);
}

table.headline tr:first-child a:hover {
  color: var(--hintergrund2);
}

table.product td img {
  max-height: 100%;
  width: 100%;
}

table.product tr:nth-child(even) td {
  padding: 0 20px;
}

table.product tr:nth-child(odd) td {
  padding: 20px 35px 15px 35px;
}

.blog table {
  border: none;
}

.blog td:nth-child(1) {
  width: 25%;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: var(--transparent);
}

.table-bordered > tbody > tr > th {
  border: none;
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */

.btn {
  display: inline;
}

.btn-link {
  color: var(--primaerfarbe);
}

.btn-link:hover,
.btn-link:focus {
  text-decoration: none;
  color: var(--sekundaerfarbe);
}

.btn-info {
  background-color: #7297ce;
  border-color: #7297ce;
}

.btn-info a {
  transition: 0.2s;
}

.btn-info a:hover {
  background: #008C4A;
}

p.readmore {
  padding: 0;
}

.readmore a {
  border: 1px solid;
  border-color: var(--primaerfarbe);
  color: var(--primaerfarbe);
  border-radius: 15px;
  margin: 10px 0 30px;
  float: left;
}

.readmore a:hover {
  border: 1px solid var(--sekundaerfarbe);
  color: var(--sekundaerfarbe);
}

a.btn-readmore {
  background-color: var(--sekundaerfarbe);
  color: var(--weiss);
  font-weight: 400;
  display: inline-block;
  padding: 3px 15px;
  text-decoration: none;
  transition: 0.35s background;
  font-size: 18px;
  line-height: 28px;
  justify-content: flex-end;
  border-radius: 0;
  margin: 2px;
}

a.btn-readmore:hover {
  background-color: var(--primaerfarbe);
  transition: 0.35s background;
}

a.btn-center {
  margin: 0 auto;
  display: flex;
  width: min-content;
  float: inherit;
}

a.btn-right {
  float: right;
}

#myBtn {
  display: none;
}

.scrollup {
  position: fixed;
  right: 20px;
  bottom: 73px;
  z-index: 10;
}

.scrollup p {
  margin: 0;
}

.scrollup a {
  font-size: 0;
  color: var(--weiss);
  background-color: rgba(255, 255, 255, 0.5);
}

.scrollup span::before {
  font-size: 32px;
  background: var(--hintergrund3);
  border: 1px solid;
  border-color: var(--weiss);
  border-radius: 3px;
  box-shadow: 0 0 3px var(--box-shadow);
  color: var(--primaerfarbe);
  content: "Up";
}

.scrollup:hover span::before {
  color: var(--sekundaerfarbe);
  background: rgba(255, 255, 255, 0.5);
}

.scrollup .btn-lg {
  padding: 0;
}

.scrollup .btn-info {
  border: none;
  text-transform: none;
}

.ui.blue.button,
.ui.blue.buttons .button {
  color: var(--primaerfarbe);
  background-color: var(--hintergrund3);
  border: none;
  font-size: 24px;
  box-shadow: 0 0 3px var(--box-shadow);
}

.ui.blue.button:hover,
.ui.blue.buttons .button:hover,
.ui.blue.button:focus,
.ui.blue.buttons .button:focus {
  color: var(--sekundaerfarbe);
  border: none;
  background-color: var(--hintergrund2);
}

/* ==========================================================================
   7. Layout — Header
   ========================================================================== */

#header {
  float: left;
  width: 100%;
  position: relative;
}

.hg0,
.hg-breadcrumb,
.hg-content,
.hg_footer,
.hg-copy {
  float: left;
  width: 100%;
}

.hg0 {
  background-color: #ffffff;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.27);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.hg0-content-white {
  float: left;
  display: block;
  width: 100%;
}

/* Quick Fix 1.6: Header height 60px on mobile */
.hg0-content {
  float: left;
  position: relative;
  display: flex;
  width: 100%;
  flex-flow: row;
  height: 60px;
}

.hg0-links {
  max-width: 130px;
  width: 100%;
  height: auto;
}

.hg0-logo {
  position: relative;
  float: left;
  height: auto;
  width: auto;
}

.hg0-logo p {
  margin: 0;
}

.hg0-logo img {
  max-height: 60px;
  height: 100%;
  position: relative;
  width: auto;
  padding: 5px;
}

.hg0-rechts {
  width: 100%;
  display: flex;
  flex-flow: row;
  position: relative;
  align-items: center;
  justify-content: flex-end;
}

.hg0-oben {
  display: none;
}

.hg0-logo-key {
  position: relative;
  float: right;
}

.hg0-logo-key img {
  display: flex;
  position: relative;
  max-height: 60px;
  width: 100%;
  height: 50px;
  padding: 5px;
}

.hg0-logo-key p {
  margin: 0;
}

.hg0-unten {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.suche-box {
  order: 2;
  display: flex;
  align-items: center;
  position: relative;
}

.suche-box__btn {
  border: none;
  background: transparent;
  padding: 7px;
  width: 43px;
  height: 43px;
  cursor: pointer;
  flex-shrink: 0;
}

.suche-box__btn img {
  width: 100%;
  height: auto;
}

.suche-box__field {
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease;
}

.suche-box__field.show {
  width: 250px;
  overflow: visible;
}

.suche-box__field .mod-finder__search {
  display: flex;
}

.suche-box__field input.form-control {
  font-size: 16px;
  border: 2px solid var(--sekundaerfarbe);
  border-radius: 0;
  height: 40px;
  padding: 0 10px;
  min-width: 200px;
}

.suche-box__field label {
  display: none;
}

.suche-box__field .mod-finder__search .btn {
  display: none;
}

.suche-box__field .awesomplete {
  display: block;
  position: relative;
}

.suche-box__field .awesomplete > ul {
  z-index: 100002;
  top: 100%;
  left: 0;
  min-width: 250px;
}

.hg0-login {
  order: 1;
  float: left;
  display: none;
}

.menu_responsiv {
  order: 3;
}

.hg0-mainmenu {
  float: left;
}

#mainmenu {
  display: none;
}

.hg0-mainmenu_aio {
  display: flex;
  float: left;
  margin-top: 104px;
}

.navbar-brand {
  padding: 15px;
}

.logo p {
  margin: 0;
}

.logo img {
  width: 100%;
  height: auto;
}

.logo-response {
  display: block;
}

.logo-response p {
  margin: 0;
}

.logo-response img {
  height: 60px;
  width: auto;
  padding: 5px;
}

.logo-response .navbar-brand {
  padding: 0;
}

/* Mobile/fullscreen visibility toggles */
.fullscreen {
  display: none;
}

.mobile {
  display: block;
}

table.fullscreen {
  display: none;
}

table.mobile {
  display: flex;
  flex-flow: column;
}

/* ==========================================================================
   8. Layout — Slider
   ========================================================================== */

/* Quick Fix 1.6: Slider offset matches mobile header height */
.hg1 {
  float: left;
  width: 100%;
  margin-top: 60px;
}

.swiper-caption {
  width: 55%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.swiper-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  font-size: 20px;
  line-height: normal;
  text-align: center;
  padding: 5px;
}

.swiper-desc {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

a.btn-slider-readmore {
  color: var(--schriftfarbe);
  background-color: #b5bccf;
  display: inline-block;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 5px;
  padding: 9px 20px 7px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 0;
}

a.btn-slider-readmore:hover {
  background-color: #006cae;
  transition: all 0.2s ease;
}

.swiper-layout-vertical .swiper-caption {
  height: auto;
  margin-bottom: 20px;
  padding: 5px;
}

.swiper-layout-vertical .swiper-title {
  font-size: 18px;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 5px;
  left: 0;
  margin: 0;
  padding: 0;
  height: 10px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   9. Layout — Content
   ========================================================================== */

.hg-breadcrumb {
  z-index: 5;
  background: var(--weiss);
  position: relative;
}

#home .hg-breadcrumb {
  display: none;
}

.hg-content {
  padding: 35px 0;
  box-shadow: 0 2px 16px 0 var(--box-shadow);
  z-index: 4;
  position: relative;
}

#startseite .hg_breadcrumb {
  display: none;
}

.breadcrumb {
  border-radius: 0;
  background-color: var(--transparent);
  margin: 10px 0 0;
  padding: 0;
  font-size: 15px;
  line-height: 22px;
}

ol.breadcrumb li:nth-child(2)::before {
  content: "";
}

.main-box {
  float: left;
  width: 100%;
}

.content-box {
  float: left;
  width: 100%;
}

.item-content {
  float: left;
  width: 100%;
  margin: 20px auto;
}

.com-content-article__body {
  float: left;
  width: 100%;
}

.com-content-article {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  float: left;
  width: 100%;
}

.alert h4 {
  color: inherit;
  float: left;
  margin: 0 15px 0 0;
  width: auto;
}

.alert-message {
  line-height: 25px;
}

/* ==========================================================================
   10. Layout — Footer
   ========================================================================== */

/* Quick Fix 1.7: No margin-bottom on mobile */
footer {
  display: block;
  float: left;
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.hg_footer {
  background: var(--hellgrau);
  z-index: 3;
  position: relative;
}

.hg-copy {
  background-color: var(--schriftfarbe);
  margin-bottom: 0;
}

.footer-box {
  display: flex;
  flex-flow: column;
  margin: 20px 0 10px;
}

.footer-adress {
  background-image: url("/images/icons/icon_keyvisual.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 60px auto;
  padding: 0 70px 0 0;
  min-height: 80px;
  width: 100%;
}

.footer-adress p {
  margin: 0;
}

.footer-adress,
.footer-general {
  font-size: 15px;
  line-height: 22px;
}

.footer-general {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-end;
}

.footer-general ul {
  margin-bottom: 5px;
  padding-left: 0;
}

.footer-general ul li {
  list-style: none;
  background: none;
  margin: 0 8px 3px 0;
  float: left;
}

.footer-general ul li a {
  padding: 2px 0;
}

.copyright {
  margin: 0 auto;
  text-align: center;
  font-size: 10px;
  width: 100%;
  float: left;
  margin-bottom: 0;
}

.copyright p {
  margin-top: 4px;
  margin-bottom: 8px;
}

.copyright img {
  height: 25px;
  padding: 0 3px;
}

/* ==========================================================================
   11. Navigation — MobileMenuCK
   ========================================================================== */

#mobilemenuck-171-mobile-bar {
  display: none !important;
}

#mobilemenuck-171-mobile {
  display: flex !important;
  padding-left: 25px;
  flex-flow: row;
  z-index: 500 !important;
}

[data-id="mobilemenuck-171"].mobilemenuck {
  display: flex;
  flex-flow: row;
}

[data-id="mobilemenuck-171"] .mobilemenuck-topbar {
  display: none;
}

[data-id="mobilemenuck-171"] .mobilemenuck-item > .level2 {
  padding: 0 40px 0 25px;
}

[data-id="mobilemenuck-171"] .mobilemenuck-submenu {
  position: absolute !important;
  background: var(--weiss);
  padding: 10px 0;
  box-shadow: 0 0 15px var(--box-shadow);
}

[data-id="mobilemenuck-171"] .mobilemenuck-submenu .mobilemenuck-submenu {
  position: relative !important;
  padding: 0;
  box-shadow: none;
  background: var(--hintergrund2);
}

[data-id="mobilemenuck-171"] .mobilemenuck-item > .level1 {
  padding-left: 0;
  margin-right: 15px;
}

#mobilemenuck-164-mobile-bar,
#mobilemenuck-164-mobile-bar-wrap-topfixed {
  display: flex;
  height: 41px;
}

[data-id="mobilemenuck-164"] .level2 + .mobilemenuck-submenu .mobilemenuck-item > div {
  margin: 2px;
}

[data-id="mobilemenuck-164"] .mobilemenuck-bar-title {
  order: 2;
  cursor: pointer;
  color: var(--primaerfarbe);
  background: var(--transparent);
  text-indent: 0;
  margin-right: 5px;
  display: none;
  line-height: 42px;
}

[data-id="mobilemenuck-164"] .mobilemenuck-bar-button {
  order: 1;
  position: relative;
  color: var(--primaerfarbe);
  background: var(--transparent);
  line-height: 24px;
  font-family: "Roboto Condensed";
  font-weight: 300;
  font-size: 38px;
}

.mobilemenuck-item .parent {
  padding-right: 40px;
}

.mobilemenuck-item > .level1 a {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.nav > li > a {
  color: var(--primaerfarbe);
  text-decoration: none;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background: none;
  color: var(--sekundaerfarbe);
  text-decoration: none;
}

.mobilemenuck-submenu {
  background: var(--hintergrund2);
  padding: 1px;
}

.mobilemenuck-submenu .mobilemenuck-submenu {
  background: var(--hintergrund3);
}

.mobilemenuck-submenu .mobilemenuck-submenu .mobilemenuck-submenu {
  padding: 1px 0;
  box-shadow: none;
  background: var(--hintergrund4);
}

.mobilemenuck-submenu .level2 {
  margin: 3px !important;
}

.mobilemenuck-togglericon:after {
  font-size: 24px !important;
  font-weight: 400;
  color: var(--weiss);
  background: var(--hintergrund1) !important;
}

.mobilemenuck-item > .level1,
.mobilemenuck {
  background: var(--weiss) !important;
}

#mobilemenuck-164-mobile.mobilemenuck {
  pointer-events: none;
}

#mobilemenuck-164-mobile.mobilemenuck .mobilemenuck-item,
#mobilemenuck-164-mobile.mobilemenuck .mobilemenuck-topbar {
  pointer-events: auto;
}


.mobilemenuck-item > .level1 a {
  color: var(--primaerfarbe) !important;
}

.mobilemenuck-item > .level1 a:hover {
  color: var(--sekundaerfarbe) !important;
}

.menuck.active.level1 a {
  color: var(--sekundaerfarbe) !important;
}

.menuck.active.level1 a,
.menuck.active.level2 a,
.level2 + .mobilemenuck-submenu .mobilemenuck-item > div.menuck.active.level3 a,
.level2 + .mobilemenuck-submenu .mobilemenuck-item > div.menuck.active.level4 a {
  background: var(--transparent) !important;
  color: var(--sekundaerfarbe) !important;
}

.mobilemenuck-item > .level1 {
  background: var(--transparent) !important;
}

.mobilemenuck-item > .level1:hover,
.mobilemenuck-item > .level1.open {
  background: var(--transparent) !important;
}

.mobilemenuck-item > .level2 a {
  color: var(--primaerfarbe) !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  white-space: normal;
}

.mobilemenuck-item > .level2 a:hover {
  background: var(--transparent) !important;
  color: var(--sekundaerfarbe) !important;
}

.mobilemenuck-item > .level2:hover,
.mobilemenuck-item > .level2.open {
  background: var(--transparent) !important;
  color: var(--sekundaerfarbe) !important;
}

.level2 + .mobilemenuck-submenu .mobilemenuck-item > div a {
  font-size: 20px !important;
  font-weight: 400 !important;
  color: var(--primaerfarbe) !important;
}

.level2 + .mobilemenuck-submenu .mobilemenuck-item > div a:hover {
  color: var(--sekundaerfarbe) !important;
}

.level2 + .mobilemenuck-submenu .mobilemenuck-item > div {
  background: var(--hintergrund2) !important;
}

.level2 .mobilemenuck-submenu {
  background: var(--hintergrund2) !important;
}

.menuck.level3 {
  padding: 0 25px 0 !important;
}

.level3 + .mobilemenuck-submenu .mobilemenuck-item > div {
  background: var(--hintergrund3) !important;
}

[data-level="3"] .mobilemenuck-submenu .mobilemenuck-submenu {
  background: var(--hintergrund4) !important;
}

.level2 + .mobilemenuck-submenu .mobilemenuck-submenu .mobilemenuck-item > div a {
  color: var(--weiss) !important;
}

.level2 + .mobilemenuck-submenu .mobilemenuck-submenu .mobilemenuck-item > div a:hover {
  color: var(--sekundaerfarbe) !important;
}

.menuck.level4 {
  padding: 0 !important;
  text-align: center;
}

.menuck.level4 a {
  color: var(--weiss);
}

[data-level="3"].mobilemenuck-item .mobilemenuck-submenu {
  padding-left: 0 !important;
}

#mobilemenuck-172-mobile-bar,
#mobilemenuck-172-mobile-bar-wrap-topfixed {
  display: block;
}

/* ==========================================================================
   12. Search
   ========================================================================== */

/* Quick Fix 1.4: max-width instead of min-width to prevent overflow */
.search {
  padding: 2px 0;
}

.search input {
  border-radius: 5px;
  padding: 1px 5px;
  border-color: transparent;
  background-color: var(--hellgrau);
  max-width: 350px;
  width: 100%;
}

.awesomplete {
  width: 100%;
}

.awesomplete .visually-hidden {
  display: none;
}

/* Search results */
div#search-form {
  display: none;
}

.result__item + .result__item {
  border-top: none;
  margin: 50px 0;
  float: left;
  width: 100%;
}

li.result__item {
  display: flex;
  flex-flow: row-reverse;
}

.Einleitungsbild {
  width: 50%;
}

.Einleitungsbild img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.Einleitungstext {
  width: 100%;
  padding-right: 50px;
}

figure.result__image {
  width: 100%;
}

.suche-text {
  width: 100%;
  padding-right: 30px;
}

.Einleitungstext h3,
.Einleitungstext h4 {
  display: none;
}

p.result__description {
  padding: 30px 0 0 0;
  max-width: 650px;
  width: 100%;
}

.result__title-text {
  line-height: initial;
  font-weight: 600;
}

/* ==========================================================================
   13. Multi-Column Fields
   ========================================================================== */

/* Quick Fix 1.5: All columns 100% on mobile */
.column100 {
  width: 100%;
}

.column75 {
  width: 100%;
}

.column66 {
  width: 100%;
}

.column50 {
  width: 100%;
}

.column33 {
  width: 100%;
}

.column25 {
  width: 100%;
}

.column-style {
  margin-bottom: 35px;
}

.fields-container {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  float: left;
  width: 100%;
}

.fields-container .field-entry {
  text-align: left;
  margin: 0 15px;
}

/* Quick Fix 1.5: Multi-column layouts 100% on mobile */
.zwei_spalten {
  width: 100%;
}

.drei_spalten {
  width: 100%;
}

.vier_spalten {
  width: 100%;
}

/* List style icons */
.column100 ul li,
.column75 ul li,
.column66 ul li,
.column50 ul li,
.column33 ul li,
.column25 ul li,
.three-column-box ul li,
.item-content ul li,
.fields-container ul li,
.item-page ul li,
.tab ul li {
  list-style: none;
  background-image: url(/images/icons/jeti_list_ul.png);
  background-position: 0 10px;
  background-repeat: no-repeat;
  padding-left: 18px;
}

.fields-container ul li li,
.item-page ul li li {
  background-image: url(/images/icons/jeti_list_ul_ul.png);
}

/* ==========================================================================
   14. Blog / Articles
   ========================================================================== */

.blog-items {
  display: flex;
  flex-flow: column;
}

.blog-items .item-content {
  border-top: 1px solid var(--primaerfarbe);
  padding-top: 35px;
}

.masonry-4.blog-items .item-content {
  border: none;
}

.blog-items.items-leading .item-content {
  padding-top: 0;
  margin: 0;
  border-top: none;
}

.blog-item:nth-child(1) .item-content {
  border-top: none;
}

.blog-items .fields-container {
  justify-content: space-between;
}

.blog-item {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  float: left;
  justify-content: space-between;
}

.blog-item .item-content {
  width: 100%;
}

#blog1 .blog-item {
  flex-flow: column;
}

#blog1 .blog-items .fields-container {
  justify-content: space-between;
}

#blog1 .blog-items .item-content {
  border: none;
}

#blog1 table td:nth-child(odd) {
  width: 25%;
}

#blog1 table td:nth-child(even) {
  width: 75%;
}

#weiche figure.left.item-image,
figure.left.item-image {
  display: none;
}

.blog-items.masonry-2 {
  display: flex;
  flex-flow: wrap;
}

.blog-items.masonry-2 .blog-item {
  width: 48%;
  margin: 1%;
}

.blog-items.masonry-2 .blog-item .item-content {
  border: none;
}

.blog-items.masonry-3 {
  display: flex;
  flex-flow: wrap;
}

.blog-items.masonry-3 .blog-item {
  width: 29%;
}

.blog-items.masonry-3 .blog-item:nth-child(3n+1) {
  margin: 1% 2% 1% 0;
}

.blog-items.masonry-3 .blog-item:nth-child(3n+2) {
  margin: 1% 2%;
}

.blog-items.masonry-3 .blog-item:nth-child(3n+3) {
  margin: 1% 0 1% 2%;
}

.blog-items.masonry-3 .blog-item .item-content {
  border: none;
  padding-top: 0;
}

.masonry-4 {
  width: 100%;
  float: left;
  display: flex;
  flex-flow: wrap;
}

.masonry-4 .blog-item {
  width: 100%;
}

.masonry-4 .blog-item:nth-child(4n+1),
.masonry-4 .blog-item:nth-child(4n+2),
.masonry-4 .blog-item:nth-child(4n+3),
.masonry-4 .blog-item:nth-child(4n+0) {
  margin: 15px 0;
}

.category-desc {
  padding-bottom: 25px;
}

/* Startpage */
#home .item-content {
  text-align: center;
}

#home h2, #home .h2 {
  text-align: center;
  color: var(--schriftfarbe);
}

.after-content-three-column {
  display: flex;
  flex-flow: column;
  float: left;
  width: 100%;
}

.three-column-box {
  display: flex;
  margin: 15px 0;
  width: 100%;
  position: relative;
  padding: 0;
  box-sizing: border-box;
  background: var(--weiss);
  background-clip: padding-box;
  border: solid 2px transparent;
}

.three-column-box:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(to top, var(--sekundaerfarbe) 50%, black 70%);
}

.three-column-box .custom {
  background: url(/images/general/homebox.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 140px;
  padding: 0 35px;
}

.three-column-box h2 {
  height: 50px;
  display: flex;
  align-items: center;
  color: var(--weiss);
  margin: 45px 0;
  border-left: 7px solid var(--weiss);
  padding: 15px 10px 5px 10px;
  line-height: 26px;
  position: relative;
  font-size: 38px;
}

#home .three-column-box h2 {
  color: var(--weiss);
}

.three-column-box ul {
  padding: 35px 0;
}

#home .three-column-box a.btn-readmore {
  position: absolute;
  right: 30px;
  bottom: 35px;
  margin-top: 35px;
}

#home .column33 {
  display: flex;
  position: relative;
  padding: 0;
  box-sizing: border-box;
  background: var(--weiss);
  background-clip: padding-box;
  border: solid 2px transparent;
  margin: 15px 0;
}

#home .column33::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(to top, var(--sekundaerfarbe) 50%, black 70%);
}

#home .column33 .column-style {
  background: url(/images/general/homebox.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-size: 101% 140px;
  padding: 0 35px;
}

#home .column33 .column-style h2 {
  height: 50px;
  display: flex;
  align-items: center;
  color: var(--weiss);
  margin: 45px 0;
  border-left: 7px solid var(--weiss);
  padding: 15px 10px 5px 10px;
  line-height: 26px;
  position: relative;
  font-size: 38px;
}

#home .column33 .column-style ul {
  padding: 35px 0;
  width: 100%;
  float: left;
}

#home .column33 .column-style a.btn-readmore {
  position: absolute;
  right: 30px;
  bottom: 35px;
  margin-top: 35px;
}

/* Utilities */
#center .main-box {
  text-align: center;
}

#borderless .blog-items .item-content {
  border-top: none;
}

div.blue-box {
  box-sizing: border-box;
  border: 2px solid #006cae;
  position: relative;
  height: 100%;
  padding: 35px;
}

/* ==========================================================================
   15. Tabs
   ========================================================================== */

/* Quick Fix 1.10: Horizontal scroll on mobile if tabs overflow */
.tab {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  float: left;
  display: block;
}

.tab button.tablinks {
  background-color: var(--primaerfarbe);
  float: left;
  border: 1px solid var(--weiss);
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  border-bottom: none;
  outline: none;
  cursor: pointer;
  padding: 5px 16px;
  transition: 0.3s;
  color: var(--weiss);
  font-size: 18px;
  line-height: 35px;
  font-weight: 400;
  margin-right: 0;
  width: 50%;
}

.tab button.tablinks:hover {
  background: var(--sekundaerfarbe);
}

.tab button.tablinks.active {
  background: var(--sekundaerfarbe);
}

.tabcontent {
  display: none;
  border-top: 9px solid var(--sekundaerfarbe);
  width: 100%;
  float: left;
  background: var(--hellgrau);
  padding: 15px 5px;
}

.tabcontent h1,
.tabcontent h2,
.tabcontent h3,
.tabcontent h4,
.tabcontent h5,
.tabcontent h6 {
  margin: 20px 0 10px;
}

#tab1.tabcontent {
  display: block;
}

/* Force inline flex layouts inside tabs to stack on mobile */
.tabcontent div[style*="flex"] > div {
  min-width: 280px;
  padding: 10px !important;
}

/* Constrain images inside tabs on mobile */
.tabcontent img {
  max-width: 160px;
  height: auto !important;
  float: none !important;
  display: block;
  margin: 0 auto 10px;
}

.tabcontent .mod-custom table tr {
  display: flex;
  flex-flow: column;
}

.tabcontent .mod-custom table tr td {
  width: 100%;
}

/* ==========================================================================
   16. Accordion
   ========================================================================== */

/* Quick Fix 1.9: Smaller font on mobile */
button.accordion {
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.35s;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--sekundaerfarbe);
  background: none;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

button.accordion::after {
  content: "";
  position: relative;
  background: url("/images/icons/down.png");
  height: 16px;
  width: 16px;
  margin-left: 15px;
  background-repeat: no-repeat;
}

button.accordion.active::after {
  background: url("/images/icons/up.png");
}

.panel {
  padding: 0 20px;
  background: var(--weiss);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

/* ==========================================================================
   17. Your Request (Fixed Panel)
   ========================================================================== */

#your-request {
  position: fixed;
  right: 0;
  z-index: 999;
  bottom: 94px;
}

#your-request button {
  margin: 0;
  padding: 0;
  border: none;
}

/* Quick Fix 1.8: Smaller button on mobile */
#your-request .dropbtn-btn {
  position: fixed;
  right: 0;
  bottom: 5%;
  z-index: 999;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  background: var(--transparent);
  transition: 0.35s all ease-in;
}

#your-request .dropbtn-btn.icons img {
  width: 35px;
  height: 105px;
  opacity: 0.5;
  transition: 0.35s opacity ease-in-out;
}

#your-request .dropbtn-btn.icons:hover img {
  opacity: 1;
  transition: 0.35s opacity ease-in-out;
}

#your-request .dropdownStyle .dropbtn-btn {
  right: 235px;
  transition: 1s all ease-in;
}

#your-request .dropbtn {
  position: fixed;
  right: 0;
  bottom: 10%;
  z-index: 999;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  background: var(--sekundaerfarbe);
  transition: 1s all ease-in;
}

#your-request .dropbtn:hover,
#your-request .dropbtn:focus {
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.dropdown-content {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 35px solid var(--sekundaerfarbe);
  width: 600px;
  position: fixed;
  bottom: 5%;
  top: auto;
  right: -600px;
  transition: 0.35s all ease-in;
  opacity: 1;
}

.dropdown-content.show_new {
  width: 285px;
  right: 0;
  transition: 1s all ease-in;
  background: var(--sekundaerfarbe);
}

#your-request .dropdown-content span {
  font-size: inherit;
  display: contents;
}

#your-request .convertforms .cf-label .cf-required-label {
  color: var(--weiss);
}

#your-request .convertforms .cf-one-half {
  width: 100%;
}

/* ==========================================================================
   18. Login
   ========================================================================== */

.hg0-login .btn_login {
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  color: var(--primaerfarbe);
  text-decoration: none;
  border: none;
  background: var(--transparent);
  height: 41px;
}

.hg0-login .btn_login:hover {
  color: var(--sekundaerfarbe);
}

#LoginDIV {
  width: 250px;
  padding: 35px 25px 20px;
  background-color: var(--weiss);
  margin-top: 45px;
  display: none;
  position: absolute;
  top: 60px;
  box-shadow: 0 0 15px var(--box-shadow2);
  margin-left: -160px;
}

#LoginDIV::after {
  content: "";
  position: absolute;
  top: 0;
  box-sizing: border-box;
  border: 15px solid var(--weiss);
  border-color: transparent transparent var(--weiss) var(--weiss);
  transform-origin: 0 0;
  transform: rotate(135deg);
  box-shadow: -5px 5px 5px 0 var(--box-shadow2);
  left: 200px;
}

ul.mod-login__options li:nth-child(3) a {
  font-size: 0;
  text-decoration: none;
}

ul.mod-login__options li:nth-child(3) a::before {
  content: "Don't have a JETI account? Register now.";
  font-size: 18px;
  text-decoration: underline;
}

.btn-secondary.input-password-toggle {
  background: var(--transparent);
  border: none;
  outline: none;
}

.btn-secondary.input-password-toggle.active,
.btn-secondary.input-password-toggle:active {
  box-shadow: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
}

span.icon-fw.icon-eye {
  background-image: url(/images/icons/visibility_gray.png);
  width: 24px;
  height: 24px;
  position: relative;
  display: block;
}

span.icon-fw.icon-eye-slash {
  background-image: url(/images/icons/visibility.png);
  width: 24px;
  height: 24px;
  position: relative;
  display: block;
}

/* ==========================================================================
   19. Forms
   ========================================================================== */

.form-horizontal .control-label {
  text-align: left;
}

.form-control-feedback {
  position: absolute;
  right: auto;
  width: auto;
  height: 34px;
  line-height: 34px;
  top: auto;
  font-size: small;
  color: var(--sekundaerfarbe);
  margin: 5px 0 0 10px;
  font-weight: 300;
}

.controls .btn-primary,
.controls .btn-danger {
  margin-top: 15px;
}

.well {
  padding: 0;
  background-color: var(--transparent);
  border: none;
  box-shadow: none;
}

.well input,
.control-group {
  max-width: 500px;
}

fieldset .input-group {
  display: flex;
}

div#jform\[password1\]-rules {
  text-align: right;
}

.form-control:focus {
  border-color: var(--hintergrund1) !important;
}

.controls.has-success {
  color: red;
}

.convertforms .cf-one-third,
.convertforms .cf-two-sixths {
  width: 100%;
}

#cf_2 {
  max-width: 100%;
}

/* ==========================================================================
   20. Pagination
   ========================================================================== */

.pagination {
  float: left;
  width: 100%;
}

.pagination ul {
  display: flex;
  flex-flow: row;
}

.pagination ul li {
  list-style: none;
}

.pagination ul li a {
  padding: 5px;
}

.pagination ul li span {
  padding: 5px;
}

span.icon-angle-double-left {
  background: url("/images/icons/pag_double_left_gray.png");
  height: 26px;
  width: 16px;
  position: relative;
  display: block;
}

a[aria-label="Go to start page"] span.icon-angle-double-left {
  background: url("/images/icons/pag_double_left_blue.png");
}

span.icon-angle-left {
  background: url("/images/icons/pag_left_gray.png");
  height: 26px;
  width: 16px;
  position: relative;
  display: block;
}

a[aria-label="Go to previous page"] span.icon-angle-left {
  background: url("/images/icons/pag_left_blue.png");
}

span.icon-angle-double-right {
  background: url("/images/icons/pag_double_right_gray.png");
  height: 26px;
  width: 16px;
  position: relative;
  display: block;
}

a[aria-label="Go to end page"] span.icon-angle-double-right {
  background: url("/images/icons/pag_double_right_blue.png");
}

span.icon-angle-right {
  background: url("/images/icons/pag_right_gray.png");
  height: 26px;
  width: 16px;
  position: relative;
  display: block;
}

a[aria-label="Go to next page"] span.icon-angle-right {
  background: url("/images/icons/pag_right_blue.png");
}

/* ==========================================================================
   21. Download Module
   ========================================================================== */

.showDownloadFiles {
  background: white;
  border: 1px solid black;
  padding: 30px;
}

/* ==========================================================================
   22. Cookie Consent
   ========================================================================== */

#redim-cookiehint {
  background: var(--sekundaerfarbe);
}

#redim-cookiehint .cookiehead .headline {
  color: var(--weiss);
}

#redim-cookiehint .cookiecontent {
  color: var(--weiss);
  padding: 0;
}

#redim-cookiehint .cookiecontent h5 {
  color: var(--weiss);
  line-height: normal;
  margin-bottom: 10px;
}

#redim-cookiehint .cookiecontent ul {
  padding-left: 15px;
}

.cookiebuttons {
  display: flex;
  flex-flow: wrap;
}

#redim-cookiehint .cookiebuttons a.btn {
  width: 48%;
  margin: 0 1%;
}

#cookiehintinfo {
  width: 100%;
  color: var(--weiss);
  display: flex;
  flex-flow: row;
}

#cookiehintinfo a {
  color: var(--weiss);
  text-decoration: none;
  padding: 5px 0;
}

#cookiehintinfo a:hover {
  color: var(--primaerfarbe);
}

/* ==========================================================================
   23. JCE Editor (Backend)
   ========================================================================== */

.ui-jce .styleformat-list .styleformat .collapse {
  display: flex;
}

/* ==========================================================================
   24. Bootstrap Utilities (replacing BS3 bootstrap.css)
   ========================================================================== */

.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

tr.collapse.show {
  display: table-row;
}

tbody.collapse.show {
  display: table-row-group;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group .form-control {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.input-group .awesomplete {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
}

.input-group-btn,
.input-group > .btn {
  position: relative;
  z-index: 2;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

.btn-default:hover,
.btn-default:focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.form-horizontal .control-label {
  text-align: left;
}

.form-horizontal .form-group {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* ==========================================================================
   25. Media Queries
   ========================================================================== */

/* --- min-width: 576px (BS5 sm) --- */
@media (min-width: 576px) {

  .fullscreen {
    display: block;
  }

  .mobile {
    display: none !important;
  }

  table.fullscreen {
    display: flex;
    flex-flow: column;
  }

  table.mobile {
    display: none;
  }

  table tr {
    flex-flow: row;
  }

  #mobilemenuck-172-mobile-bar,
  #mobilemenuck-172-mobile-bar-wrap-topfixed {
    display: none;
  }

  .scrollup {
    right: 50px;
  }

  /* Tabcontent table row direction */
  .tabcontent .mod-custom table tr {
    display: flex;
    flex-flow: row;
  }

  /* Masonry-4 two columns */
  .masonry-4 .blog-item {
    width: 45%;
  }

  .masonry-4 .blog-item:nth-child(4n+1) {
    margin: 0;
  }

  .masonry-4 .blog-item:nth-child(4n+2),
  .masonry-4 .blog-item:nth-child(4n+3),
  .masonry-4 .blog-item:nth-child(4n+0) {
    margin: 0 0 0 15px;
  }

  /* Your Request: larger button */
  #your-request .dropbtn-btn.icons img {
    width: 71px;
    height: 214px;
  }

  #your-request .dropbtn-btn {
    bottom: 10%;
  }

  .dropdown-content {
    bottom: 10%;
    border-left: 60px solid var(--sekundaerfarbe);
  }

  .dropdown-content.show_new {
    width: 400px;
  }

  #your-request .dropdownStyle .dropbtn-btn {
    right: 325px;
  }

  #your-request .convertforms .cf-one-half {
    width: 50%;
  }
}

/* --- min-width: 768px (BS5 md) --- */
@media (min-width: 768px) {

  /* Headings: desktop sizes */
  h1, .h1 {
    font-size: 38px;
    line-height: 48px;
  }

  h2, .h2 {
    font-size: 30px;
    line-height: 38px;
  }

  h3, .h3 {
    font-size: 38px;
    line-height: 48px;
  }

  h4, .h4 {
    font-size: 38px;
    line-height: 48px;
  }

  h5, .h5 {
    font-size: 25px;
    line-height: 35px;
  }

  /* Header: desktop height */
  .hg0-content {
    height: 100px;
  }

  .hg0-logo img {
    max-height: 100px;
  }

  .hg0-logo-key img {
    max-height: 100px;
    height: 100%;
  }

  .hg1 {
    margin-top: 100px;
  }

  /* Header layout: desktop — matches original jeti.css @767px */
  .hg0-rechts {
    flex-flow: row;
    align-items: stretch;
    justify-content: flex-start;
  }

  .hg0-oben {
    display: block;
    order: 2;
    right: 0;
    position: absolute;
    height: 50px;
  }

  .hg0-unten {
    order: 1;
    align-items: flex-end;
    padding-bottom: 7px;
    justify-content: flex-end;
    height: auto;
  }

  .suche-box {
    order: 3;
  }

  .hg0-login {
    order: 2;
  }

  .menu_responsiv {
    order: 1;
  }

  [data-id="mobilemenuck-164"] .mobilemenuck-bar-title {
    display: block;
  }

  .breadcrumb {
    font-size: 18px;
    line-height: 28px;
    margin: 10px 0 0;
  }

  /* Footer: desktop layout */
  .footer-adress,
  .footer-general {
    font-size: 18px;
    line-height: 28px;
  }

  .footer-adress {
    background-position: 0 0;
    background-size: auto;
    padding: 0 0 0 80px;
    min-height: 132px;
  }

  .footer-box {
    margin: 35px 0 10px;
  }

  /* Table padding on desktop */
  tr:nth-child(even) td,
  tr:nth-child(odd) td {
    padding: 20px 35px 15px 35px;
  }

  /* Multi-column fields: desktop widths */
  .column75 {
    width: calc(75% - 20px);
  }

  .column66 {
    width: calc(66% - 20px);
  }

  .column50 {
    width: calc(50% - 20px);
  }

  .column33 {
    width: calc(33% - 20px);
  }

  .column25 {
    width: calc(25% - 20px);
  }

  .zwei_spalten {
    width: calc((100% - 30px) / 2);
  }

  div.fields-container div.zwei_spalten:nth-child(odd) {
    margin-left: 0;
  }

  div.fields-container div.zwei_spalten:nth-child(even) {
    margin-right: 0;
  }

  .drei_spalten {
    width: calc((100% - 30px) / 3);
  }

  div.fields-container div.drei_spalten:nth-child(3n+1) {
    margin: 0;
  }

  div.fields-container div.drei_spalten:nth-child(3n+0) {
    margin: 0;
  }

  .vier_spalten {
    width: calc((100% - 45px) / 4);
  }

  div.fields-container div.vier_spalten:nth-child(3n+1) {
    margin: 0;
  }

  div.fields-container div.vier_spalten:nth-child(3n+2) {
    margin: 0 0 15px 0;
  }

  div.fields-container div.vier_spalten:nth-child(3n+3) {
    margin: 0 0 15px 0;
  }

  div.fields-container div.vier_spalten:nth-child(3n+0) {
    margin: 0 0 15px 0;
  }

  /* Tabs: desktop sizing */
  .tabcontent {
    padding: 25px;
  }

  .tabcontent div[style*="flex"] > div {
    padding: revert !important;
  }

  .tabcontent img {
    max-width: 100%;
    float: left !important;
    display: inline;
    margin: 0;
  }

  .tab button.tablinks {
    padding: 14px 16px;
    font-size: 25px;
    margin: 5px 10px 0 0;
    width: auto;
  }

  /* Accordion: desktop font-size */
  button.accordion {
    font-size: 25px;
    line-height: 35px;
  }

  /* Login position */
  #LoginDIV {
    margin-left: -70px;
  }

  #LoginDIV::after {
    left: 120px;
  }

  /* Your Request: full opacity on desktop */
  #your-request .dropbtn-btn.icons img {
    opacity: 1;
  }

  .dropdown-content.show_new {
    width: 600px;
    background: var(--sekundaerfarbe);
  }

  #your-request .dropdownStyle .dropbtn-btn {
    right: 529px;
  }

  /* ConvertForm columns */
  .convertforms .cf-one-third,
  .convertforms .cf-two-sixths {
    width: 33.3333%;
  }

  /* Masonry-4 four columns */
  .masonry-4 .blog-item {
    width: calc((100% - 45px) / 4);
  }
}

/* --- min-width: 992px (BS5 lg) --- */
@media (min-width: 992px) {

  #responsiv {
    display: none;
  }

  .mobilemenuck-item > .level2 a {
    color: var(--primaerfarbe) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
  }

  /* Contact page */
  #kontaktseite #jform_contact_name {
    width: 30%;
  }

  #kontaktseite #jform_contact_email {
    width: 30%;
  }

  #kontaktseite #jform_contact_emailmsg {
    width: 50%;
  }

  #kontaktseite #jform_contact_message {
    width: 50%;
  }

  .kontakt_info {
    width: 65%;
  }

  /* Slider text */
  .swiper-title {
    margin-bottom: 7px;
    font-size: 28px;
    line-height: 28px;
    padding: 10px 0;
  }

  .swiper-desc {
    font-size: 20px;
  }

  a.btn-slider-readmore {
    margin-top: 27px;
  }

  /* Startpage three columns */
  .three-column-box {
    margin: 15px;
  }

  .after-content-three-column {
    flex-flow: row;
  }
}

/* --- min-width: 1200px (BS5 xl) --- */
@media (min-width: 1200px) {

  .mobilemenuck-item > .level1 a {
    font-size: 23px !important;
    font-weight: 700 !important;
  }

  .mainmenu ul li a {
    font-size: 18px;
    padding: 10px 8px;
  }

  .mainmenu ul ul li a {
    padding: 3px 30px 3px 20px;
    font-size: 20px;
  }

  .hg0-login .btn_login {
    font-size: 20px;
    margin-left: 5px;
    height: 41px;
  }

  /* Slider text large */
  .swiper-title {
    font-size: 38px;
    line-height: 48px;
  }

  .swiper-desc {
    font-size: 30px;
    line-height: 38px;
  }
}

/* --- min-width: 1400px (BS5 xxl) --- */
@media (min-width: 1400px) {

  .container {
    width: 1400px;
  }

  .footer-box {
    flex-flow: row;
  }

  .footer-general {
    width: 50%;
    justify-content: flex-end;
  }
}
