@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

/*
 * COMMON
 ________________________________*/

html {
  font-size: 14px;
}

@media (max-width: 992px) {
  html {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 12px;
  }
}

/*
 * COMMON - ROOT
 ________________________________*/

:root {
  --font-primary-dark: #2b2d41;
  --font-primary-p: #4b4c59;
  --font-primary-light: #edf2f4;

  --bg-primary: #c1002a;
  --bg-primary-dark: #b10026;

  --bg-secondary: #2b2d41;
  --bg-secondary-dark: #1e202d;

  --bg-dark-gradient: linear-gradient(90deg, #282834 0%, #3b3b48 100%);

  --bg-gray: #8d99ae;
  --bg-light-gray: #edf2f4;
  --green: #32bf89;

  --hr: #d7dce5;

  --default-shadow: 0px 10px 20px #19191912;
  --width-xl: 1200px;
  --width-xl-mg: 1240px;
  --width-lg: 992px;
  --width-md: 768px;
  --width-sm: 576px;
}

body {
  font-family: "Ubuntu", sans-serif;
  background-color: #f0f0f0;
  margin: 0;
}

/*
 * EDITOR STYLE
 ________________________________*/

.editor-styles-wrapper {
  background-color: rgba(0, 0, 0, 0) !important;
}
.edit-post-layout .interface-interface-skeleton__content {
  background-color: rgba(0, 0, 0, 0) !important;
}

.edit-post-visual-editor.editor-styles-wrapper {
  padding: 0;
}
.editor-styles-wrappe {
  padding: 0;
}

.editor-styles-wrapper h3 {
  margin-top: unset !important;
  margin-bottom: unset !important;
}
@media (max-width: 992px) {
  #wpadminbar {
    display: none !important;
  }
  html {
    margin-top: 0 !important;
  }
}

/*
 * NORMALIZE
 ________________________________*/

input {
  border: none;
}

/*
 * ROOT STYLE
 ________________________________*/

/*
 * COMMON - CONTAINER
 ________________________________*/

.dz-container {
  max-width: 1340px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .dz-container {
    /* padding:15px; */
  }
}

.dz-row {
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 1360px) {
  .edge {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.dz-col {
  display: flex;
  flex-direction: column;
}

.spc-btw {
  justify-content: space-between;
}

.ctr {
  justify-content: center;
}
.end {
  justify-content: flex-end;
}

.alg-ctr {
  align-items: center;
}

@media screen and (max-width: 992px) {
  .show-lg {
    display: none;
  }
}
.hidden {
  display: none;
}
@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
  .show-mobile {
    display: block;
  }
}

@media (max-width: 992px) {
  .hidden-tablet {
    display: none !important;
  }
  .show-tablet {
    display: block;
  }
}

.dark-bg {
  background: linear-gradient(
    90deg,
    rgba(56, 59, 80, 1) 0%,
    rgba(110, 119, 140, 1) 100%
  );
}

.dark-bg > p {
  color: var(--font-primary-light);
}

/*
 * COMMON - FONTS
 ________________________________*/

.dz-ttrans-up {
  text-transform: uppercase;
}

.dz-fs-60 {
  font-size: 60%;
}

/*
 * COMMON - HEADINGS 
 ___________________________________*/

/** Headings & Pseudo-Headings **/

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  margin: 0 0 1.38rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--font-primary-dark);
}
p,
.p {
  line-height: 1.5rem;
}

h1,
.h1 {
  margin-top: 0;
  font-size: 2.2rem;
}

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

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

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

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

small,
.text_small {
  font-size: 0.8rem;
}

p,
.p {
  font-size: 1rem;
  color: var(--font-primary-p);
}

.lh-s {
  line-height: 1.3;
}
.lh-m {
  line-height: 2;
}

/*
 * PRIMARY & SECONDARY BUTTONS
 __________________________________*/

.dz-btn-primary {
  display: inline-flex;
  align-self: flex-start;
  text-decoration: none;
  color: var(--font-primary-light);
  background-color: var(--bg-primary);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 15px;
  box-shadow: 0px 12px 24px #0000003d;
  transition: all 0.2s ease-in-out;
  transition-property: box-shadow, background-color;
  white-space: nowrap;
}

.dz-btn-primary:after,
.dz-btn-secondary:after {
  content: "";
  display: flex;
  align-self: center;
  background-image: url(assets/img/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 10px;
  width: 20px;
  margin-left: 35px;
}

.dz-btn-primary:hover {
  background-color: var(--bg-primary-dark);
  box-shadow: 0px 6px 10px #0000003d;
  transition: all 0.3s ease-in-out;
  transition-property: box-shadow, background-color;
  cursor: pointer;
}

button.dz-arrow-button {
  background-color: unset;
  border: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--font-primary-dark);
}

.dz-btn-primary-send {
  display: inline-flex;
  align-self: flex-start;
  text-decoration: none;
  color: var(--font-primary-light);
  background-color: var(--bg-primary);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 15px;
  box-shadow: 0px 12px 24px #0000003d;
  transition: all 0.2s ease-in-out;
  transition-property: box-shadow, background-color;
  white-space: nowrap;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/** Button Secondary **/

.dz-btn-secondary {
  display: inline-flex;
  align-self: flex-start;
  text-decoration: none;
  color: var(--font-primary-light);
  background-color: var(--bg-secondary);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 15px;
  box-shadow: 0px 12px 24px #0000003d;
  transition: all 0.2s ease-in-out;
  transition-property: box-shadow, background-color;
}

.dz-btn-secondary:hover {
  background-color: var(--bg-secondary-dark);
  box-shadow: 0px 6px 10px #0000003d;
  transition: all 0.3s ease-in-out;
  transition-property: box-shadow, background-color;
  cursor: pointer;
}

.dz-btn-secondary-upload {
  display: inline-flex;
  align-self: flex-start;
  text-decoration: none;
  color: var(--font-primary-light);
  background-color: var(--bg-primary);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 15px;
  box-shadow: 0px 12px 24px #0000003d;
  transition: all 0.2s ease-in-out;
  transition-property: box-shadow, background-color;
  white-space: nowrap;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/** Small Buttons **/

.dz-btn-sm {
  font-size: 12px;
  padding: 8px 15px;
}

.dz-icon-button-light {
  background-color: unset;
  border: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--font-primary-light);
}

/*
 * WP-BLOCK (POST/PAGE CONTENT)
 _________________________________*/

.wp-block-file a {
  color: var(--font-primary-dark);
  font-weight: 500;
}

.wp-block-file a:hover {
  color: var(--bg-primary);
}

.wp-block-file__button {
  background-color: var(--bg-primary) !important;
}

.wp-block-file__button:hover {
  background-color: var(--bg-primary-dark);
}

.entry-content ul {
  line-height: 2rem;
}

.entry-content ul li {
  color: var(--font-primary-p);
}

.blocks-gallery-item img {
  border-radius: 8px;
  box-shadow: var(--default-shadow);
}

/*
 * WPCF7
 _________________________________*/

span.wpcf7-list-item {
  margin: 1rem 0 0 0 !important;
}

/*
 * TOP BAR 
 _________________________________*/

#flp-preline {
  background-color: var(--bg-light-gray);
}

#flp-welcome-line h1,
#flp-welcome-line span {
  line-height: 34px;
  font-size: 0.8rem;
  margin: 0;
  font-weight: normal;
  color: var(--font-primary-p);
}

/*
 * HEADLINE
 ________________________________*/

#flp-headline {
  background-color: #fff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  #flp-headline {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 118;
    box-shadow: var(--default-shadow);
  }
}
@media (max-width: 768px) {
  #flp-headline {
    padding: 10px 0;
  }
}
/*
 * MAIN MENU
 ________________________________*/

#flp-main-menu {
  background: linear-gradient(90deg, var(--bg-primary), var(--bg-primary-dark));
  color: var(--font-primary-light);
  /*border-top: 4px solid var(--bg-light-gray);*/
  position: sticky;
  top: 0;
  z-index: 1000;
}

.dz-nav-dropdown {
  padding: 50px 0 50px 0;
  left: 0;
  right: 0;
  background: rgba(237, 242, 244, 0.95);
  color: var(--font-primary-dark);
  position: absolute;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  box-shadow: var(--default-shadow);
}
.dz-nav-dropdown:not(.show) {
  visibility: hidden;
}
.dz-nav-dropdown.show {
  visibility: visible;
  z-index: 4;

  opacity: 100%;
}

.flp-menu-main-items {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 0;
  align-items: center;
}

@media (max-width: 992px) {
  .flp-menu-main-items {
    justify-content: space-between;
  }
}

.flp-menu-item {
  padding: 15px 20px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 30px;
  transition: background-color 0.5s;
  transition: color 0.3;
}

.flp-menu-item a {
  color: var(--font-primary-light);
}

.flp-submenu-itemheader a {
  margin-top: -10px;
  margin-bottom: 30px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--font-primary-dark);
}

.flp-submenu-itemheader a:hover {
  color: var(--bg-primary);
}

.flp-menu-logo {
  padding-bottom: 5px;
}

.flp-menu-item svg {
  transform: translate(4px, 2px);
}

.flp-menu-item.open {
  background: var(--bg-light-gray);
  color: var(--font-primary-dark);
}
.flp-menu-item.open a {
  color: var(--font-primary-dark);
}
.flp-menu-item:hover {
  background: var(--bg-light-gray);
  color: var(--font-primary-dark);

  cursor: pointer;
}

.flp-menu-item:hover a {
  color: var(--font-primary-dark);
}

.flp-menu-subitem {
  list-style: none;
  margin: 0 10px;
}
/* .flp-menu-subitem:after{
    display:block;
    content:"";
    width: 80%;
    height: 1px;
    background-color:var(--hr);
    margin: 10px 0;
    transition: all 0.3s ease-in-out;

} */
ul.flp-menu-subitems {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* grid-template-columns: auto auto auto auto; */
  grid-template-rows: auto auto auto auto;
  /* grid-auto-flow: column; */
  font-size: 14px;
  padding: 0;
}

.flp-menu-subitems a,
.flp-menu-subitems a:visited,
.flp-menu-subitems a:active,
.flp-menu-subitems a:focus {
  color: var(--font-primary-dark);
}

.subitem-title {
  transform: translateX(-10px);
  transition: transform 0.3s ease-in-out;
  display: inline-block;
  text-decoration: none;
  color: var(--font-primary-dark);
}
.subitem-title:before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"/></svg>');
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.subitem-title svg {
  height: 18px;
  transform: translateY(4px);
}

.flp-menu-subitem:hover > .subitem-title:before {
  opacity: 100%;
  visibility: visible;
}
.flp-menu-subitem:hover:after {
  transform: translateX(-10px);
}
.flp-menu-subitem:hover > .subitem-title {
  transform: translateX(0);
  font-weight: bold;
}
.item-separator {
  margin: 10px 0 10px 0;
  border-color: #e1e6e8;
}
#flp-welcome-line {
}

li.nav-but-wrap {
  position: relative;
  display: none;
  float: right;
  /* padding-left: 15px; */
  /* padding-top: 15px; */
  /* margin-top: 26px; */
  transition: all 0.3s ease-out;
  margin-right: 20px;
}

@media (max-width: 992px) {
  li.nav-but-wrap {
    display: inline-block;
  }
}

.menu-icon {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: block;
}

.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: var(--bg-secondary);
  margin-bottom: 7px;
  cursor: pointer;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.5s ease;
  transition: transform 0.2s ease, background-color 0.5s ease,
    -webkit-transform 0.2s ease;
}

.menu-icon__line-left {
  width: 30px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  margin-top: 7px;
}
.menu-icon__line-right {
  width: 30px;
  float: right;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 15px;
}

/*
 * NEWS ARTICLE 
 ________________________________*/

.entry-content .posted-on {
  background-color: var(--bg-gray);
  color: var(--font-primary-light);
  border-radius: 8px;
  padding: 5px 10px;
  box-shadow: var(--default-shadow);
  margin-bottom: 25px;
  display: inline-block;
  font-size: 0.9rem;
}

/*
 * SEARCH  BAR
 ________________________________*/

.dz-desktop-search form {
  display: flex;
  width: 100%;
  box-shadow: var(--default-shadow);
}

.dz-desktop-search label span {
  display: none;
}

.dz-desktop-search input[type="search"] {
  height: 44px;
  line-height: 44px;
  background-color: #fff;
  border: 2px solid var(--bg-gray);
  width: 250px;
  border-radius: 4px 0 0 4px;
  padding: 0 10px;
}

.dz-desktop-search input[type="submit"] {
  background-color: var(--bg-gray);
  color: #fff;
  height: 44px;
  width: 44px;
  padding: 0 5px;
  border-radius: 0 4px 4px 0;
}

.dz-desktop-search input[value="Senden"] {
  display: none;
}

.dz-desktop-search-btn {
  width: 44px;
  height: 44px;
  background-color: var(--bg-gray);
  color: var(--font-primary-light);
  border: none;
  outline: none;
  border-radius: 0 4px 4px 0;
}

.dz-desktop-search-btn:hover {
  cursor: pointer;
  background-color: var(--font-primary-p);
}

.dz-desktop-search-btn svg {
  stroke: currentColor;
  margin-top: 3px;
}

::placeholder {
  color: rgb(161, 164, 176);
}

/*
 * SIDENAV
 ________________________________*/

section#dz-sidenav-section {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 90vw;
  overflow: hidden;
  visibility: hidden;
  padding: 80px 20px 30px 20px;
  z-index: 100;
}
section#dz-sidenav-section:before {
  position: absolute;
  top: 0;
  right: 100%;
  left: 0;
  bottom: 0;
  content: "";
  z-index: 10;
  display: block;
  background-color: var(--bg-primary);
}
section#dz-sidenav-section:after {
  position: absolute;
  top: 0;
  right: 100%;
  left: 0;
  bottom: 0;
  content: "";
  z-index: 11;
  display: block;
  background-color: white;
}
.dz-sidenav-wrapper {
  opacity: 0;
  transform: translateX(-120px);
  transition: all 0.5s ease;
  position: relative;
  z-index: 15;
  display: flex;
  flex-direction: column;
}
.dz-sidenav-wrapper.showsidenav {
  opacity: 1;
  transform: translateX(0px);
}

section#dz-sidenav-section.open {
  visibility: visible;
  z-index: 100000;
}
section#dz-sidenav-section.opened {
  background-color: #fff;
}
section#dz-sidenav-section.open:before {
  animation: sidenavBGShowLayer 0.7s cubic-bezier(0.535, 0.005, 0, 1) forwards;
  animation-delay: 0s;
}
section#dz-sidenav-section.open:after {
  animation: sidenavBGShowLayer2 0.7s cubic-bezier(0.535, 0.005, 0, 1) forwards;
  animation-delay: 0.1s;
}
section#dz-sidenav-section.exit:before {
  right: 0;
  animation: sidenavBGHideLayer 0.7s cubic-bezier(0.535, 0.005, 0, 1) forwards;
  animation-delay: 0.4s;
}
section#dz-sidenav-section.exit:after {
  right: 0;
  animation: sidenavBGHideLayer2 0.7s cubic-bezier(0.535, 0.005, 0, 1) forwards;
  animation-delay: 0.3s;
}
@keyframes sidenavBGShowLayer {
  from {
    right: 100%;
  }
  to {
    right: 0;
  }
}
@keyframes sidenavBGHideLayer {
  from {
    right: 0;
  }
  to {
    right: 100%;
  }
}
@keyframes sidenavBGShowLayer2 {
  from {
    right: 100%;
  }
  to {
    right: 4px;
  }
}
@keyframes sidenavBGHideLayer2 {
  from {
    right: 4px;
  }
  to {
    right: 100%;
  }
}

.dz-menu-backdrop {
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  bottom: 0;
  z-index: 80;
  transition: opacity 0.4s;
  background-color: #192732cc;
  /*pointer-events: none;*/
}
@media (max-width: 992px) {
  .dz-submenu-wrapper {
    top: 112px;
  }
  .dz-menu-backdrop {
    top: 112px;
  }
}
@media (max-width: 768px) {
  .dz-submenu-wrapper {
    top: 57px;
  }
  .dz-menu-backdrop {
    top: 57px;
  }
}
.dz-menu-backdrop.open {
  opacity: 1;
}
.dz-menu-backdrop.present {
  position: fixed;
}

/*
 * MOBILE NAV
 ________________________________*/
/* ################################ DZ MENU BEGIN ################################ */

.dz-submenu-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  /*max-height: 85vh;
    height:55vh;*/
  overflow-y: auto;
  visibility: hidden;
  /* pointer-events:none; */
  padding: 50px 20px;
  padding-top: 10px;
  z-index: 90;
  overflow-x: hidden;
}

.dz-submenu-headercontainer {
  margin: 80px 0 20px 0;
}

.dz-submenu-headercontainer p {
  font-size: 1rem !important;
}

.dz-submenu-wrapper.open {
  visibility: visible;
}

.dz-submenu-wrapper.opened {
  background-color: var(--bg-light-gray);
}

.dz-submenu-wrapper.open:before {
  animation: menuBGShowLayer 0.7s cubic-bezier(0.535, 0.005, 0, 1) forwards;
  animation-delay: 0s;
}

.dz-submenu-wrapper.open:after {
  animation: menuBGShowLayer 0.7s cubic-bezier(0.535, 0.005, 0, 1) forwards;
  animation-delay: 0.1s;
}

.dz-submenu-wrapper.exit:before {
  bottom: 0;
  animation: menuBGHideLayer 0.7s cubic-bezier(0.535, 0.005, 0, 1) forwards;
  animation-delay: 0.4s;
}

.dz-submenu-wrapper.exit:after {
  bottom: 0;
  animation: menuBGHideLayer 0.7s cubic-bezier(0.535, 0.005, 0, 1) forwards;
  animation-delay: 0.3s;
}

.dz-submenu-wrapper:before {
  position: absolute;
  top: 0;
  bottom: 100%;
  left: 0;
  right: 0;
  content: "";
  z-index: 10;
  display: block;
  background-color: var(--bg-primary-dark);
}

@keyframes menuBGShowLayer {
  from {
    bottom: 100%;
  }
  to {
    bottom: 0;
  }
}
@keyframes menuBGHideLayer {
  from {
    bottom: 0;
  }
  to {
    bottom: 100%;
  }
}
.dz-submenu-wrapper:after {
  position: absolute;
  top: 0;
  bottom: 100%;
  left: 0;
  right: 0;
  content: "";
  z-index: 11;
  display: block;
  background-color: var(--bg-light-gray);
}

.dz-submenu-container {
  position: relative;
  z-index: 15;
  display: flex;
  height: 100%;
}

.dz-menu-item-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  opacity: 0;
  transform: translateY(-120px);
  transition: all 0.5s ease;
}

.dz-menu-contact-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dz-menu-backdrop {
  /* position: fixed; */

  left: 0;
  right: 0;
  opacity: 0;
  bottom: 0;
  z-index: 80;
  transition: opacity 0.4s;
  background-color: #192732cc;
  /*pointer-events: none;*/
}
@media (max-width: 992px) {
  .dz-submenu-wrapper {
    top: 112px;
  }
  .dz-menu-backdrop {
    top: 112px;
  }
}
@media (max-width: 768px) {
  .dz-submenu-wrapper {
    top: 57px;
  }
  .dz-menu-backdrop {
    top: 57px;
  }
}
.dz-menu-backdrop.open {
  opacity: 1;
  position: fixed;
  z-index: 10000;
}

.show {
  opacity: 1;
  transform: translateY(0px);
}

.menu-icon__line.opened,
menu-icon__line-center.opened {
  -webkit-transform: translate(0px, 0px) rotate(-45deg);
  transform: translate(0px, 0px) rotate(-45deg);
}
.menu-icon__line-left.opened {
  width: 15px;
  -webkit-transform: translate(2px, 4px) rotate(45deg);
  transform: translate(2px, 4px) rotate(45deg);
}
.menu-icon__line-right.opened {
  width: 15px;
  float: right;
  -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
  transform: translate(-3px, -3.5px) rotate(45deg);
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 15px;
}

.dz-mobilemenu-item {
  border-bottom: 1px solid #c5cdcf;
  padding-top: 0px;
  padding-bottom: 20px;
}

.dz-mobilemenu-main-items {
  display: flex;
  flex-direction: column;
}

.dz-mobilesubmenu-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.dz-mobilesubmenu-items.open {
  max-height: 100vh;
}

.dz-mobilesubmenu-item {
  margin-left: 1rem;
}

.dz-mobilesubmenu-item a {
  color: var(--font-primary-p);
  font-size: 1rem;
  margin-top: 15px;
}

.dz-mobilemenu-items:last-child hr {
  display: none;
}

.dz-submenu-logo {
  width: 50%;
  /* justify-content: center; */
  align-self: center;
  opacity: 0.2;
  margin-bottom: 50px;
  filter: saturate(0);
  display: none;
}

.dz-submenu-footercontainer .dz-icon-text p {
  font-size: 1.4rem;
}

/*
 * LOGO
 ________________________________*/

div#dz-logo {
  max-width: 200px;
}

@media screen and (max-width: 1200px) {
  div#dz-logo {
    max-width: 150px;
  }
}
@media screen and (max-width: 992px) {
  div#dz-logo {
    max-width: 100px;
  }
}
.custom-logo-link > img {
  width: 100%;
  height: auto;
}

/*
 * ICON BOX
 ________________________________*/

.dz-icon-text {
  display: flex;
  max-height: 44px;
}
@media (max-width: 1200px) {
  .dz-icon-text {
    max-height: 40px;
  }
}

@media (max-width: 768px) {
  .dz-icon-text {
    max-height: 36px;
  }
}

.dz-icon-text-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*font-size: 80%;*/
  /*line-height: 1 !important;*/
}
.dz-icon-box {
  background-color: var(--bg-gray);
  color: var(--font-primary-light);
  padding: 10px;
  border-radius: 5px;
  /*line-height: 0;*/
  margin-right: 10px;
}

@media (max-width: 1200px) {
  .dz-icon-box {
    height: 20px;
    width: 20px;
  }
  .dz-icon-box > svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 768px) {
  .dz-icon-box {
    height: 16px;
    width: 16px;
  }
  .dz-icon-box > svg {
    width: 16px;
    height: 16px;
  }
}
.dz-icon-text-title {
  /*font-size: 16px;*/
  font-weight: bold;
  margin: 0;
}

.dz-icon-text-inner p {
  font-size: 1.1rem;
  color: #6b7382;
}

.dz-icon-text-value {
  /*font-size: 14px;*/
  margin: 0;
  color: var(--bg-gray);
}

.dz-icon-link {
  text-decoration: none;
}

/*
 * BIGICON BOX
 ________________________________*/

.dz-bigicon-text {
  display: flex;
  max-height: 55px;
}

.dz-bigicon-text-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*font-size: 80%;*/
  /*line-height: 1 !important;*/
}
.dz-bigicon-box {
  background-color: var(--bg-gray);
  color: var(--font-primary-light);
  padding: 10px;
  border-radius: 5px;
  /*line-height: 0;*/
  margin-right: 10px;
}

.dz-bigicon-text-title {
  /*font-size: 16px;*/
  font-weight: bold;
  margin: 0;
}

.dz-bigicon-text-inner p {
  /*line-height: 20px !important;*/
}

.dz-bigicon-text-value {
  /*font-size: 14px;*/
  margin: 0;
}

/*
  * SITE FOOTER
  _______________________________*/

.site-footer {
  margin-top: 100px;
}

.dz-footerlinks-list-container ul li a {
  color: var(--font-primary-light);
  text-decoration: none;
}

/*
 * PAGE CONTENT
 ________________________________*/

section#dz-pageimage-section {
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

section#dz-pageimage-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background-color: var(--bg-secondary);
  opacity: 0.6;
  z-index: -1;
}

.dz-page-title,
.dz-page-title h1 {
  justify-content: center;
  align-items: center;
  display: flex;
  color: var(--font-primary-light) !important;
  font-size: clamp(1.8rem, 2.5vw, 3.2rem);
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

#dz-pageimage-section .rank-math-breadcrumb a {
  color: var(--font-primary-light) !important;
  text-decoration: none;
  padding: 5px 10px;
  font-size: 0.8rem;
}

.rank-math-breadcrumb p a,
.rank-math-breadcrumb span.last {
  color: var(--font-primary-light);
  padding: 5px 10px;
  background-color: var(--bg-secondary);
  border-radius: 4px;
  font-size: 0.8rem;
}

.rank-math-breadcrumb p a:hover {
  background-color: var(--bg-secondary-dark);
}

.rank-math-breadcrumb p .separator,
.rank-math-breadcrumb p .label {
  color: var(--font-primary-light);
}

div#dz-subcategories-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(1px, 1fr));
  column-gap: 20px;
  row-gap: 20px;
}

@media (max-width: 768px) {
  div#dz-subcategories-container {
    grid-template-columns: repeat(1, minmax(1px, 1fr));
  }
}

#dz-subcategories-container a {
  text-decoration: none;
}

.dz-span-odd {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .dz-span-odd {
    grid-column: span 1;
  }
}

.dz-catfield-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 125px;
  border-radius: 8px;
  background: transparent linear-gradient(359deg, #ffffff 0%, #f0f0f0 100%) 0%
    0% no-repeat padding-box;
  box-shadow: 0px 10px 20px #0000001a;
  overflow: hidden;
  transition: box-shadow 0.4s ease-in-out;
}
@media (max-width: 992px) {
  .dz-catfield-wrap {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .dz-catfield-wrap {
    height: 85px;
  }
}

.dz-catfield-wrap:hover {
  box-shadow: 1px 0px 5px #0000001a;
  cursor: pointer;
  transition: box-shadow 0.2s ease-in-out;
}

.dz-catfield-wrap:hover svg {
  transform: translateX(20px);
  transition: transform 0.4s ease-in-out;
}

.dz-catfield-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 35px;
}

.dz-catfield-title h2 {
  font-size: 1.3rem;
  margin: 0;
}

.dz-catfield-title svg {
  margin-left: 25px;
  transition: transform 0.4s ease-in-out;
  display: none;
}

.dz-catfield-img {
  position: relative;
  height: 100%;
  width: 35%;
  background: linear-gradient(
    90deg,
    rgba(56, 59, 80, 1) 0%,
    rgba(110, 119, 140, 1) 100%
  );
}

.dz-catfield-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 3;
  display: block;
  background-image: url(https://svgur.com/i/TGt.svg);
  background-repeat: no-repeat;
  background-size: 45px 125px;
  height: 125px;
  width: 45px;
}

.dz-catfield-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.entry-content {
  position: relative;
}

.entry-content:after {
  content: "";
  display: block;
  z-index: -1;
  background-image: url(assets/img/flp-international-bg.png);
  position: absolute;
  top: 300px;
  left: -25%;
  height: 2116px;
  width: 1187px;
  background-size: contain;
}

/*
 * MASCHINE CONTENT
 ________________________________*/

/*
 * EXCERPTS
 ________________________________*/

.dz-excerpt-wrap {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: var(--default-shadow);
  transition: box-shadow 0.2s ease-in-out;
  height: 100%;
}

.dz-excerpt-wrap:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
  cursor: pointer;
}

.dz-excerpt-img {
  height: 250px;
  background: linear-gradient(
    90deg,
    rgba(56, 59, 80, 1) 0%,
    rgba(110, 119, 140, 1) 100%
  );
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dz-excerpt-img img {
  border-radius: 8px 8px 0 0;
  display: flex;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.dz-excerpt-img > h3 {
  color: var(--font-primary-light);
}

.dz-excerpt-text {
  padding: 10px 35px 15px 35px;
  border-radius: 0 0 8px 8px;
  background-color: #fff;
  color: var(--font-primary-dark);
  flex-grow: 1;
}

.dz-excerpt-text a {
  color: var(--font-primary-dark);
  text-decoration: none;
  font-weight: 500;
  margin-left: 2px;
}

.dz-excerpt-text a:hover {
  color: var(--bg-primary);
}

.dz-tag {
  background-color: var(--bg-primary);
  color: var(--font-primary-light);
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 12px;
}

.dz-tag-green {
  color: var(--green);
  display: flex;
  align-self: center;
}

.dz-tag-red {
  color: var(--bg-primary);
  display: flex;
  align-self: center;
}

.dz-tag-red,
.dz-tag-green {
  margin-top: 10px;
  font-weight: 500;
}

.dz-tag-red svg,
.dz-tag-green svg {
  margin-right: 5px;
  margin-top: 1px;
}

#dz-newsexcerpt-section {
  margin: 120px;
}

.page #dz-newsexcerpt-section {
  margin-top: 0;
}

#dz-subcategories-section {
  margin-bottom: 100px;
}

#dz-newsexcerpt-container a {
  text-decoration: none;
}

div#dz-newsexcerpt-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(1px, 1fr));
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media (max-width: 768px) {
  div#dz-newsexcerpt-container {
    grid-template-columns: repeat(1, minmax(1px, 1fr));
  }

  #dz-newsexcerpt-section {
    margin: 50px 0;
  }
}
/*
 * MASCHINE OVERVIEW 
 ________________________________*/

div#dz-maschines-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(1px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
div#dz-maschines-container > a {
  text-decoration: none;
}
@media (max-width: 992px) {
  div#dz-maschines-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(1px, 1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media (max-width: 768px) {
  div#dz-maschines-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(1px, 1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
/*
 * Top Footer Links 
 ________________________________*/

.dz-footerlinks-list-container ul li {
  transform: translateX(-10px);
  transition: transform 0.3s ease-in-out;
  display: inline-block;
  text-decoration: none;
}
.dz-footerlinks-list-container ul li:before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"/></svg>');
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.dz-footerlinks-list-container ul li:hover::before {
  opacity: 100%;
  visibility: visible;
}
.dz-footerlinks-list-container ul li:hover:after {
  transform: translateX(-10px);
}
.dz-footerlinks-list-container ul li:hover {
  transform: translateX(0);
  font-weight: bold;
  cursor: pointer;
}

/*
 * MASCHINE TABLE 
 ________________________________*/
.dz-table-wrap {
  display: flex;
  box-shadow: var(--default-shadow);
}

.dz-table-left {
  border-right: 1px solid #c7c7c7;
  font-size: 1rem;
  vertical-align: middle;
  font-weight: 500;
}

.dz-table-left td {
  padding: 10px 15px;
}

@media screen and (max-width: 800px) {
  .dz-table-right {
    display: block;
  }

  .dz-table-left td {
    padding: 10px 5px !important;
  }
}

.dz-table-right {
  width: 100%;
  display: block;
}

.dz-datatable tr:nth-of-type(2) td {
  font-weight: 600;
}

tbody.dz-datatable {
  width: 100%;
  display: grid;
  /* flex-direction: column; */
}
tbody.dz-datatable > tr {
  display: grid;
}

.dz-table-right tr:nth-child(odd) > td,
.dz-table-left tr:nth-child(odd) > td {
  background-color: #dfdfdf;
}

.dz-table-right tr:nth-child(even) > td,
.dz-table-left tr:nth-child(even) > td {
  background-color: #fff;
}

.dz-table-topline {
  background-color: var(--bg-secondary);
  padding: 15px;
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  border-radius: 4px 4px 0 0;
}

.dz-table th {
  background-color: #f0f0f0;
}

.dz-table td {
  padding: 10px 20px;
  /* white-space: nowrap; */
  scroll-snap-align: start;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dz-table td p {
  margin: 0;
  color: #fff;
}

.scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

td.dz-datatable-first {
  display: flex;
  position: sticky;
  top: 0;
  bottom: 0;
  left: 0;
  /* width: 250px; */
  box-sizing: border-box;
  justify-content: space-between;
  border-right: 1px solid #989898;
}
tr {
  position: relative;
}
/* td.dz-datatable-first:nth-child(odd){
    background-color: #dfdfdf;
} */

/*
 * WORDPRESS Table
  ________________________________*/

figure.wp-block-table {
  box-shadow: var(--default-shadow);
  margin: 0;
}

.wp-block-table table {
  background-color: #f0f0f0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  border-spacing: unset;
}

.wp-block-table tr:nth-child(odd) {
  background-color: #dfdfdf;
}

.wp-block-table thead tr {
  background-color: var(--bg-secondary) !important;
  border-radius: 8px 8px 0 0;
}
.wp-block-table thead tr th {
  padding: 15px;
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
}

.wp-block-table tr td {
  padding: 15px 5px;
  text-align: center;
}

.wp-block-table tr td:first-of-type {
  text-align: left;
  font-weight: 500;
  padding-left: 15px;
}

/*
 * WMPL Styles
 ________________________________*/

.wpml-ls-legacy-dropdown {
  width: auto;
}
.wpml-ls-legacy-dropdown a {
  display: block;
  text-decoration: none;
  color: var(--font-primary-p);
  border: none;
  text-transform: uppercase;
  background-color: var(--font-primary-light);
  padding: 0 10px;
  line-height: 34px;
  font-size: 0.8rem;
}

.wpml-ls-legacy-dropdown a:hover,
.wpml-ls-legacy-dropdown a:focus,
.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a {
  background-color: var(--bg-gray);
  color: var(--font-primary-light);
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  border: none;
}

/*
 * Hide Recaptcha
 ________________________________*/

.grecaptcha-badge {
  visibility: hidden;
}

/*
 * Margins
 ________________________________*/

.m-20 {
  margin: 20px;
}

.m-30 {
  margin: 30px;
}

.m-40 {
  margin: 40px;
}

.m-50 {
  margin: 50px;
}

.mtd-20 {
  margin: 20px 0 20px 0;
}
.mtd-30 {
  margin: 30px 0 30px 0;
}
.mtd-40 {
  margin: 40px 0 40px 0;
}
.mtd-50 {
  margin: 50px 0 50px 0;
}

.mlr-20 {
  margin: 0 20px 0 20px;
}
.mlr-30 {
  margin: 0 30px 0 30px;
}
.mlr-40 {
  margin: 0 40px 0 40px;
}
.mlr-50 {
  margin: 0 50px 0 50px;
}

.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}

.mr-20 {
  margin-right: 20px;
}
.mr-30 {
  margin-right: 30px;
}
.mr-40 {
  margin-right: 40px;
}
.mr-50 {
  margin-right: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ml-20 {
  margin-left: 20px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-40 {
  margin-left: 40px;
}
.ml-50 {
  margin-left: 50px;
}

/*
 * PADDING
 ________________________________*/

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.ptd-20 {
  padding: 20px 0 20px 0;
}
.ptd-30 {
  padding: 30px 0 30px 0;
}
.ptd-40 {
  padding: 40px 0 40px 0;
}
.ptd-50 {
  padding: 50px 0 50px 0;
}

.plr-20 {
  padding: 0 20px 0 20px;
}
.plr-30 {
  padding: 0 30px 0 30px;
}
.plr-40 {
  padding: 0 40px 0 40px;
}
.plr-50 {
  padding: 0 50px 0 50px;
}

.pt-20 {
  padding-top: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-50 {
  padding-top: 50px;
}

.pr-20 {
  padding-right: 20px;
}
.pr-30 {
  padding-right: 30px;
}
.pr-40 {
  padding-right: 40px;
}
.pr-50 {
  padding-right: 50px;
}

.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-50 {
  padding-bottom: 50px;
}

.pl-20 {
  padding-left: 20px;
}
.pl-30 {
  padding-left: 30px;
}
.pl-40 {
  padding-left: 40px;
}
.pl-50 {
  padding-left: 50px;
}

/** TEMP STYLES **/

/* Bilder waren gestretch, aber nur "save" - "editor" war alles schick. Hier ist ein Fix */
.wp-block-image img {
  height: 100%;
}

.wp-block-image img,
.wp-block-media-text__media img {
  border-radius: 8px;
  box-shadow: var(--default-shadow);
  height: 100%;
}

/* IE FALLBACK 
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
   
    html:after {
        content:'Internet Explorer 11 nicht unterstuetzt. Bitte benutzen Sie einen der folgenden Browser: Google Chrome, Microsoft Edge, Mozilla Firefox oder Opera';
        position:fixed;
        top:0;
        left:0;
        font-size: 20px;
        width:100%;
        height:100%;
        color:white;
        background-color:#000;
        opacity: 0.99;
        z-index: 99999;
        overflow: hidden;
        margin:0 auto;
        padding-top:3%;
    }
 }*/

.entry-content .wp-block-gallery {
  padding: 50px 0;
}

.dz-referencegallery-btncontainer button {
  display: none;
}

@media screen and (max-width: 425px) {
  .dz-referencegallery-btncontainer button {
    display: flex;
  }
}

.d-none {
  display: none;
}


.dz-buy-box {
  display: flex;
  justify-content: space-between;
  gap: 8%;
  box-shadow: 0 0 20px 20px #2b2d410e;
  padding: 70px 80px;
  border-radius: 20px;
}

@media screen and (max-width:786px) {
  .dz-buy-box {
    flex-direction: column;
    margin: 0 15px;
    text-align: center;
  }

  .dz-buy-box-content-right, .dz-buy-box-content-left {
    align-items: center;
  }

  .dz-buy-box-image {
    margin-bottom: 25px;
  }

}

.dz-buy-box-content-right, .dz-buy-box-content-left {
  display: flex;
  justify-content: center;
  flex-direction: column;
}


.dz-buy-box button {
  height:45px;
  width:250px;
  background-color:#32bf89;
  color:#fff;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 20px 20px #1158460e;
  transition: box-shadow .4s;
  font-size: 15px;
  font-weight: bold;
}

.dz-buy-box button:hover {
  cursor: pointer;
  box-shadow: none;
  transition: box-shadow .3s;
  background-color:#2cac7b;
}

.dz-buy-boy-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dz-buy-box-image img {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  
}

.dz-sidenav-wrapper {
  max-width: 360px;
}

.dz-kaufanfrage-h1 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 30px;
}

.dz-kaufanfrage-formular p input {
  border: 1px solid grey;
  padding: 15px 10px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
}

.dz-kaufanfrage-formular p input[type="submit"] {
  cursor: pointer;
  box-shadow: none;
  transition: box-shadow .3s;
  background-color:#2cac7b;
  color:#fff;
  border: none;
}

.dz-kaufanfrage-formular p input[type="submit"]:hover {
  box-shadow: none;
  transition: box-shadow .3s;
  background-color:#2cac7b;
}

section#dz-sidenav-section.opened {
  overflow-y: scroll;
}

section#dz-sidenav-section {
  max-width: 80vw;
}

.dz-is-textblock {
    border-radius: 15px;
    background-color: #fafafa;
    box-shadow: 3px 0px 15px 3px #1e202d14;
    padding: 25px;
}

.dz-title-in-content {
  font-size: 16px;
  white-space: nowrap;
  color: #282834 !important;
}

.dz25a {
  text-decoration: none;
}

#dz-25 {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  color: var(--font-primary-p);
  position: relative;
  font-weight: 300;
  border:2px solid var(--bg-primary);
  box-shadow: var(--default-shadow);
  text-align: left;
}


#dz-25 span {
  font-weight: 700;
  color:var(--bg-primary);
}

@media screen and (max-width:960px) {
  #dz-25 {
    display: none;
  }
}

.wp-block-file__button {
	color:white !important;
}

.dz-container .wp-block-file {
	background-color: #9d9d9d14;
    padding: 30px 15px;
    font-size: 16px;
	border-radius:8px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	transition:all .4s ease-in-out;
}

.dz-container .wp-block-file:hover, #dzm-buchhalter:hover {
	background-color: #9d9d9d40;
	transition:all .4s ease-in-out;
}

.dz-container .wp-block-file .wp-block-file__button {
	font-size:.8rem;
}

#dzm-buchhalter {
	background-color: #9d9d9d14;
    padding: 30px 15px;
    font-size: 18px;
	border: 2px solid #b20026;
}

#dzm-buchhalter .wp-block-file__button {
	font-size: .8rem;
}

.dzm-d-none {
	display:none;
}


/*
Online Katalog
 */

.sticky-top-sales {
  position:sticky;
  top:64px;
  left:0;
}

.sticky-top-sales .dz-authorblock-content.dz-row {
  flex-direction:column;
}

.sticky-top-sales .dz-authorblock-imagecontainer {
  width:unset;
  height:unset;
}

.sticky-top-sales .dz-authorblock-textcontainer.dz-col {
  padding:1rem;
}



/*
Prpduct Table
 */

.flp-product-table {
  display: grid;
  grid-template-columns: 200px 80px auto 120px;
}

.flp-product-table > div {
  border: 1px solid #fff;
  padding: 6px 8px;
}

/* Header */
.flp-product-table .header {
  background: #c00;
  color: #fff;
  font-weight: bold;
}

/* Erste Spalte grau */
.flp-product-table .bezeichnung {
  background: #f0f0f0;
  font-weight: bold;
}

/* Spanning über 4 Reihen */
.flp-product-table .span4 {
  grid-row: span 4;
  display: flex;
  align-items: center; /* vertikal mittig */
}

/* Artikelnummer rechtsbündig */
/*.flp-product-table > div:nth-child(4n) {
  text-align: right;
}*/


.flp-product-table.grid-fepa {
  display: grid;
  grid-template-columns: 140px 120px 80px 100px 100px 100px 100px 100px;
}

/* Bezeichnung + Korngröße sollen je 2 Zeilen spannen */
.flp-product-table .span2 {
  grid-row: span 2;
  display: flex;
  align-items: center;
  font-weight: bold;
}

/* Erste Spalte grau hinterlegen */
.flp-product-table .bezeichnung {
  background: #f0f0f0;
}

/* Kopfzeile rot */
.flp-product-table .header {
  background: #c00;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

/* Product Table 2 */

.flp-table-wrapper{overflow-x:auto;}

/* Tabelle nicht auf 100% strecken – Breite nach Inhalt */
.flp-table{border-collapse:collapse; table-layout:auto; width:auto;background-color:white;}
.flp-table th,.flp-table td{border:1px solid #ddd; padding:8px; text-align:left; vertical-align:top;}
.flp-table thead th{background:#c1002a;color:white;}





  /* 1) Erste Spalte: nie umbrechen + minimal breit halten */
.flp-table th:first-child,
.flp-table td:first-child{
  white-space:nowrap;
  width:1%;
}

/* 2) Alle anderen Spalten dürfen umbrechen (schmaler) */
.flp-table th:not(:first-child),
.flp-table td:not(:first-child){
  white-space:normal;
}

/* 3) Mobil: nur die erste Spalte bleibt nowrap */
@media (max-width: 768px){
  .flp-table th:first-child,
  .flp-table td:first-child{ white-space:nowrap; }
  .flp-table th:not(:first-child),
  .flp-table td:not(:first-child){ white-space:normal; }
}

.flp-table td[rowspan] { vertical-align: middle; }