/*
 * @category  MSP
 * @editor    Tommy Köster
 * @copyright 2025 - MSP Medien Systempartner GmbH & Co. KG
 * @license   http://www.medien-systempartner.de/  Commercial
 * @link      www.medien-systempartner.de
 * @updated   18.06.25, 11:17
 */
/** Colors **/
/** Breakpoints **/
/** Layout **/
/* Damit beim Kompilieren keine Fehlermeldung für eine leere LESS-Datei angezeigt wird, muss mindestens 1 Style enthalten sein */
.not-empty-bug-fixer {
  width: 100%;
}
:root {
  --header-height: 90px;
}
*:focus {
  outline: 2px solid #0a47b4 !important;
}
html body .page-wrapper .page-header {
  tab-index: -1;
  padding: 0 32px;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 40px -5px rgba(34, 34, 34, 0.1);
  box-shadow: 0 0 40px -5px rgba(34, 34, 34, 0.1);
  position: fixed;
  width: 100%;
  background: #ffffff;
  z-index: 50;
}
html body .page-wrapper .page-header .header {
  max-width: 944px;
  height: var(--header-height);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* Gemeinsame Styles */
}
html body .page-wrapper .page-header .header nav ul {
  margin: 0;
  padding: 0;
}
html body .page-wrapper .page-header .header nav ul li {
  margin: 0;
}
html body .page-wrapper .page-header .header .mobile-login-wrapper {
  display: none;
}
html body .page-wrapper .page-header .header .action-tools-bar {
  display: flex;
  flex-direction: column;
  width: 100%;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools {
  display: flex;
  align-items: center;
  column-gap: 32px;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .logo {
  margin: 0 auto 0 0;
  max-height: 65px;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .logo a {
  max-height: inherit;
  display: block;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .links a {
  font-family: "Titillium Web Semi Bold";
  color: #0a47b4;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .menu-burger-box {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .menu-burger-box .menu-burger {
  position: relative;
  height: 100%;
  width: 100%;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .menu-burger-box .menu-burger .line {
  position: absolute;
  left: 0;
  height: 2px;
  background: #222222;
  border-radius: 2px;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .menu-burger-box .menu-burger .line:nth-child(1) {
  width: 31px;
  top: 9px;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .menu-burger-box .menu-burger .line:nth-child(2) {
  width: 35px;
  top: 20px;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .menu-burger-box .menu-burger .line:nth-child(3) {
  width: 26px;
  top: 31px;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .menu-burger-box .menu-burger:hover {
  cursor: pointer;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .loggedIn ul {
  display: flex;
  column-gap: 8px;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .loggedIn ul .customer a {
  display: flex;
  align-items: center;
  font-size: 10px;
  column-gap: 8px;
  color: unset;
  text-decoration: none;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .loggedIn ul .customer a:before {
  font-family: "Font Awesome 5 Pro Light";
  content: '\f007';
  font-size: 20px;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .loggedIn ul .logout form {
  height: 100%;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .loggedIn ul .logout form button {
  height: 100%;
  font-weight: unset;
  line-height: 1;
  padding: 0;
  font-size: 0;
  border: 0;
}
html body .page-wrapper .page-header .header .action-tools-bar .action-tools .loggedIn ul .logout form button:before {
  font-family: "Font Awesome 5 Pro Regular";
  content: '\f2f5';
  font-size: 20px;
}
html body .page-wrapper .page-header .header .action-tools-bar #loginDialog {
  margin-top: var(--header-height);
  width: 944px;
  box-sizing: border-box;
  border: 0;
  padding: 0;
  background: transparent;
}
html body .page-wrapper .page-header .header .action-tools-bar #loginDialog .login-box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 20px 40px 0 rgba(34, 34, 34, 0.1);
  border-radius: 7px;
  max-width: 280px;
}
html body .page-wrapper .page-header .header .action-tools-bar #loginDialog .login-box .close-row {
  order: 0;
  padding: 0.5rem 0;
}
html body .page-wrapper .page-header .header .action-tools-bar #loginDialog .login-box .close-row .close:before {
  font-size: 1.5rem;
}
html body .page-wrapper .page-header .header .action-tools-bar #loginDialog .login-box .login-input {
  order: 1;
  box-sizing: border-box;
  padding: 0 12px 16px;
}
html body .page-wrapper .page-header .header .action-tools-bar #loginDialog[open] {
  display: flex;
  justify-content: flex-end;
}
html body .page-wrapper .page-header .header .action-tools-bar #loginDialog:focus {
  outline: none !important;
}
html body .page-wrapper .page-header .header .action-tools-bar #loginDialog:focus .login-box {
  border: 2px solid #0a47b4;
}
html body .page-wrapper .page-header .header .menu-section {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  /* Animation beim Öffnen und Schließen */
  animation: slide-down 0.5s ease-out;
}
html body .page-wrapper .page-header .header .menu-section::backdrop {
  background: rgba(0, 0, 0, 0.5);
  animation: fade-in 0.5s ease-out;
}
html body .page-wrapper .page-header .header .menu-section[closing] {
  animation: slide-up 0.5s ease-out;
}
html body .page-wrapper .page-header .header .menu-section[closing]::backdrop {
  animation: fade-out 0.5s ease-out;
}
html body .page-wrapper .page-header .header .menu-section .menu-box {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  -webkit-box-shadow: 0 0 40px -5px rgba(34, 34, 34, 0.1);
  box-shadow: 0 0 40px -5px rgba(34, 34, 34, 0.1);
  transition: transform 0.5s ease-in-out;
}
html body .page-wrapper .page-header .header .menu-section .menu-box .close-row {
  order: 0;
  max-width: 944px;
  padding: 24px;
}
html body .page-wrapper .page-header .header .menu-section .menu-box .close-row .close {
  padding: 0.25rem 1rem;
}
html body .page-wrapper .page-header .header .menu-section .menu-box .close-row .close:before {
  font-size: 4rem;
  line-height: 4rem;
}
html body .page-wrapper .page-header .header .menu-section .menu-box .menu {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0 24px 88px;
  box-sizing: border-box;
}
html body .page-wrapper .page-header .header .menu-section .menu-box .menu .link {
  padding: 8px 0;
}
html body .page-wrapper .page-header .header .menu-section .menu-box .menu .link a {
  color: inherit;
}
html body .page-wrapper .page-header .header .menu-section .menu-box .menu .link a:hover {
  color: inherit;
  text-decoration: none;
}
html body .page-wrapper .page-header .header .menu-section .menu-box .menu li:has(hr) {
  display: contents;
}
html body .page-wrapper .page-header .header .menu-section .menu-box .menu hr {
  width: 100%;
  margin: 10px 0;
  max-width: 944px;
}
html body .page-wrapper .page-header .header .menu-section[inert] {
  display: none;
}
html body .page-wrapper .page-header .header.content {
  padding: 0;
  position: unset;
}
html body .page-wrapper .page-header .header:before,
html body .page-wrapper .page-header .header:after {
  display: none;
}
html body .page-wrapper .loginForm {
  display: flex;
  flex-wrap: wrap;
}
html body .page-wrapper .loginForm .outlineError {
  margin-bottom: 12px;
}
html body .page-wrapper .forgotPasswordLink {
  font-size: 12px;
  margin-top: 8px;
  width: 100%;
}
html body .page-wrapper .registerBox {
  font-size: 12px;
  margin-top: 8px;
}
html body .page-wrapper .registerBox a {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 0;
}
html body .page-wrapper .stayLoggedIn {
  padding-bottom: 1rem;
  font-size: 1.2rem;
}
html body .page-wrapper .stayLoggedIn input {
  margin-top: 0;
  top: 0;
}
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  /**
     * Headerstyles
     */
  html body .page-wrapper .page-header .header .action-tools-bar .action-tools .links {
    display: none;
  }
  html body .page-wrapper .page-header .header .action-tools-bar .action-tools .login {
    order: 1;
  }
  html body .page-wrapper .page-header .header .action-tools-bar .action-tools .login button {
    font-size: 0;
    padding: 0;
    background: none;
    line-height: 1;
  }
  html body .page-wrapper .page-header .header .action-tools-bar .action-tools .login button:before {
    font-family: 'Font Awesome 5 Pro Light';
    content: '\f007';
    color: #222222;
    font-size: 3rem;
  }
  html body .page-wrapper .page-header .header .action-tools-bar .action-tools .loggedIn ul {
    column-gap: 0;
  }
  html body .page-wrapper .page-header .header .action-tools-bar .action-tools .loggedIn ul .customer a {
    font-size: 0;
    column-gap: 0;
  }
  html body .page-wrapper .page-header .header .action-tools-bar .action-tools .loggedIn ul .customer a:before {
    font-size: 0;
    margin: 0;
  }
  html body .page-wrapper .page-header .header .action-tools-bar .action-tools .loggedIn ul .logout form button:before {
    font-size: 3rem;
  }
  html body .page-wrapper .page-header .header .action-tools-bar .action-tools .menu-burger-box {
    order: 3;
    padding-left: 0;
  }
  html body .page-wrapper .page-header .header .action-tools-bar .action-tools .logo {
    order: 2;
    margin: 0 auto;
    max-height: 35px;
  }
  html body .page-wrapper .page-header .header .action-tools-bar .action-tools .logo img {
    max-height: inherit;
  }
  html body .page-wrapper .page-header .header .action-tools-bar #loginDialog {
    max-width: 100%;
  }
  html body .page-wrapper .page-header .header .action-tools-bar #loginDialog::backdrop {
    z-index: 1;
  }
  html body .page-wrapper .page-header .header .action-tools-bar #loginDialog .login-box {
    border-radius: 0 0 7px 7px;
    width: 100%;
  }
  html body .page-wrapper .page-header .header .action-tools-bar #loginDialog .login-box .login-input {
    padding: 0 32px 32px;
    width: auto;
  }
}
@keyframes slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slide-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*
 * @category  MSP
 * @editor    Tommy Köster
 * @copyright 2025 - MSP Medien Systempartner GmbH & Co. KG
 * @license   http://www.medien-systempartner.de/  Commercial
 * @link      www.medien-systempartner.de
 * @updated   18.06.25, 11:05
 */
html body .page-wrapper .page-footer {
  background: #666666;
  color: #ffffff;
  padding-bottom: 0;
  margin: 0;
}
html body .page-wrapper .page-footer .footer {
  max-width: 944px;
  margin: 0 auto;
  padding: 24px 0;
}
html body .page-wrapper .page-footer .footer .footer-links {
  display: grid;
  grid-template-columns: 4fr 1fr;
  column-gap: 3rem;
}
html body .page-wrapper .page-footer .footer .footer-links nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 3rem;
  order: 0;
}
html body .page-wrapper .page-footer .footer .footer-links .footerColumn {
  display: flex;
  flex-wrap: wrap;
  font-family: "Titillium Web Light";
  font-size: 1.2rem;
}
html body .page-wrapper .page-footer .footer .footer-links .footerColumn ul {
  padding: 0;
}
html body .page-wrapper .page-footer .footer .footer-links .footerColumn ul li {
  list-style: none;
  display: flex;
  flex-direction: column;
}
html body .page-wrapper .page-footer .footer .footer-links .footerColumn ul li a {
  font-family: "Titillium Web Semi Bold";
  color: #ffffff;
}
html body .page-wrapper .page-footer .footer .footer-links .footerColumn.socialLinks {
  order: 1;
}
html body .page-wrapper .page-footer .footer .footer-links .footerColumn .social-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
html body .page-wrapper .page-footer .footer .footer-links .footerColumn .social-list a {
  color: #ffffff;
}
html body .page-wrapper .page-footer .footer .footer-links .footerColumn .social-list a i:before,
html body .page-wrapper .page-footer .footer .footer-links .footerColumn .social-list a em:before {
  font-size: 4rem;
}
html body .page-wrapper .page-footer .copyright-box {
  background: #222222;
  padding-top: 16px;
}
html body .page-wrapper .page-footer .copyright-box .footer-links {
  font-family: "Titillium Web Semi Bold";
  max-width: 944px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  list-style: none;
}
html body .page-wrapper .page-footer .copyright-box .footer-links a {
  color: #ffffff;
}
html body .page-wrapper .page-footer .copyright-box .copyright {
  font-family: "Titillium Web Light";
  background-color: unset;
}
@media only screen and (max-width: 768px) {
  html body .page-wrapper .page-footer .footer {
    padding: 24px 32px;
  }
  html body .page-wrapper .page-footer .footer .footer-links {
    text-align: center;
    grid-template-columns: 1fr;
  }
  html body .page-wrapper .page-footer .footer .footer-links nav {
    max-width: 50%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    order: 1;
  }
  html body .page-wrapper .page-footer .footer .footer-links .footerColumn {
    justify-content: center;
  }
  html body .page-wrapper .page-footer .footer .footer-links .footerColumn.socialLinks {
    order: 0;
  }
  html body .page-wrapper .page-footer .footer .footer-links .footerColumn .social-list {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    column-gap: 1rem;
    margin-bottom: 2.5rem;
  }
  html body .page-wrapper .page-footer .footer .footer-links .footerColumn .social-list li {
    margin: 0;
  }
  html body .page-wrapper .page-footer .footer .footer-links .footerColumn .social-list li:first-child {
    text-align: right;
  }
  html body .page-wrapper .page-footer .footer .footer-links .footerColumn ul {
    margin-bottom: 0;
  }
  html body .page-wrapper .page-footer .copyright-box {
    padding: 16px 32px 0;
  }
  html body .page-wrapper .page-footer .copyright-box .footer-links a {
    margin: 8px;
  }
  html body .page-wrapper .page-footer .copyright-box .copyright {
    padding: 10px 32px;
  }
}
@media (max-width: 567.98px) {
  html body .page-wrapper .page-footer {
    margin: 0;
  }
  html body .page-wrapper .page-footer .copyright-box .footer-links {
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
    text-align: center;
  }
  html body .page-wrapper .page-footer .copyright-box .footer-links a {
    width: 100%;
    margin-bottom: 1rem;
  }
}
/*
 * @category  MSP
 * @editor    Tommy Köster
 * @copyright 2025 - MSP Medien Systempartner GmbH & Co. KG
 * @license   http://www.medien-systempartner.de/  Commercial
 * @link      www.medien-systempartner.de
 * @updated   11.06.25, 10:56
 */
.fa-light {
  font-family: "Font Awesome 5 Pro Light";
}
html body {
  /** Paper BG **/
  /** Typography **/
  /** Design **/
  /** Payment-Box **/
  /** Advantages **/
  /** OptInBox **/
  /** Button **/
  /** Input **/
  /** Boxes **/
  /** Streichpreise **/
  /** Weiße Box auf leicht grauem Hintergrund **/
  /** Dunklerer Schatten **/
  /** Outlines **/
  /** Fehlermeldungen */
  /** FAQs */
  /** Kontakt Section **/
  /** Progressbar */
}
html body input[type="currency"] {
  box-sizing: border-box;
}
html body .description table > thead > tr > th,
html body .description table > tbody > tr > th,
html body .description table > tfoot > tr > th,
html body .description table > thead > tr > td,
html body .description table > tbody > tr > td,
html body .description table > tfoot > tr > td {
  border: none;
  padding: 0 4px 2.25rem;
  line-height: 2.25rem;
}
html body .description table > thead > tr > th:first-child,
html body .description table > tbody > tr > th:first-child,
html body .description table > tfoot > tr > th:first-child,
html body .description table > thead > tr > td:first-child,
html body .description table > tbody > tr > td:first-child,
html body .description table > tfoot > tr > td:first-child {
  padding-left: 0;
  font-weight: 900;
  font-size: 18px;
  vertical-align: middle;
}
html body .description table > thead > tr > th:last-child,
html body .description table > tbody > tr > th:last-child,
html body .description table > tfoot > tr > th:last-child,
html body .description table > thead > tr > td:last-child,
html body .description table > tbody > tr > td:last-child,
html body .description table > tfoot > tr > td:last-child {
  padding-right: 0;
}
html body .wd-100 {
  width: 100%;
}
html body .wd-75 {
  width: 74.5%;
}
html body .wd-66 {
  width: 66%;
}
html body .wd-50 {
  width: 49%;
}
html body .wd-37_5 {
  width: 36.25%;
}
html body .wd-33 {
  width: 32%;
}
html body .wd-25 {
  width: 23.5%;
}
html body .wd-16_6 {
  width: 15%;
}
html body .wd-12_5 {
  width: 10.75%;
}
html body .wd-10 {
  width: 8.199999999999999%;
}
html body .space-xxxs {
  width: var(4px);
}
html body .space-xxs {
  width: var(8px);
}
html body .space-xs {
  width: var(12px);
}
html body .space-s {
  width: var(16px);
}
html body .space-m {
  width: var(24px);
}
html body .space-l {
  width: var(32px);
}
html body .space-xl {
  width: var(48px);
}
html body .space-xxl {
  width: var(64px);
}
html body .space-xxxl {
  width: var(88px);
}
html body .space-128 {
  width: var(128px);
}
html body .space-256 {
  width: var(256px);
}
html body .space-512 {
  width: var(512px);
}
html body .section {
  padding: 48px;
}
html body .pt0 {
  padding-top: 0;
}
html body .contentBox {
  max-width: 944px;
  margin: 0 auto;
}
html body .hidden {
  display: none;
}
html body .vrmList {
  padding: 0 1rem 0 2rem;
}
html body .vrmList li {
  padding-left: 1rem;
  margin-bottom: 2rem;
}
html body .vrmList li::marker {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro Light";
}
html body .paperBg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0.5;
  overflow: hidden;
}
html body .bgImg {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
html body .vrmPositionRelative {
  position: relative;
}
html body .defPad {
  padding: 88px 0;
}
html body .trustDefPad {
  padding: calc(70px) 0 88px;
}
html body .defPadTop {
  padding-top: 88px;
}
html body .trustDefPadTop {
  padding-top: calc(70px);
}
html body .smMarTop {
  margin-top: 48px;
}
html body .smPadTop {
  padding-top: 48px;
}
html body .smMarBot {
  margin-bottom: 48px;
}
html body .trustSmMarBot {
  margin-bottom: calc(30px);
}
html body .terms {
  display: flex;
  font-size: 10.8px;
  line-height: 1.2;
  margin-top: 16px;
}
html body .terms em {
  margin-right: 5px;
}
@font-face {
  font-family: "Titillium Web Black";
  src: url('../../fonts/TitilliumWeb-Black.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Bold";
  src: url('../../fonts/TitilliumWeb-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Bold Italic";
  src: url('../../fonts/TitilliumWeb-BoldItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Extra Light";
  src: url('../../fonts/TitilliumWeb-ExtraLight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Extra Light Italic";
  src: url('../../fonts/TitilliumWeb-ExtraLightItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Italic";
  src: url('../../fonts/TitilliumWeb-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Light";
  src: url('../../fonts/TitilliumWeb-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Light Italic";
  src: url('../../fonts/TitilliumWeb-LightItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web";
  src: url('../../fonts/TitilliumWeb-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Semi Bold";
  src: url('../../fonts/TitilliumWeb-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web Semi Bold Italic";
  src: url('../../fonts/TitilliumWeb-SemiBoldItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 5 Pro Light";
  src: url('../../fonts/Font_Awesome_5_Pro-Light-300.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 5 Pro Regular";
  src: url('../../fonts/Font_Awesome_5_Pro-Regular-400.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 5 Pro Solid";
  src: url('../../fonts/Font_Awesome_5_Pro-Solid-900.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  src: url('../../fonts/Font_Awesome_5_Brands-Regular-400.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html body p {
  margin: 0;
}
html body .fa,
html body .fab,
html body .fad,
html body .fal,
html body .far,
html body .fas {
  font-family: "Font Awesome 5 Pro Regular";
}
html body .fab {
  font-family: "Font Awesome 5 Brands";
}
html body .fal {
  font-family: "Font Awesome 5 Pro Light";
}
html body .fas {
  font-family: "Font Awesome 5 Pro Solid";
}
html body .level1--heading,
html body h1 {
  color: #222222;
  font-family: Titillium Web Bold;
  font-size: 40px;
  line-height: 50px;
  margin: 0;
}
html body .level2--heading,
html body h2 {
  color: #222222;
  font-family: Titillium Web Bold;
  font-size: 28px;
  line-height: 35px;
  margin: 0;
}
html body .level3--heading,
html body h3 {
  color: #222222;
  font-family: Titillium Web Bold;
  font-size: 24px;
  line-height: 30px;
  margin: 0;
}
html body .level4--heading,
html body h4 {
  color: #222222;
  font-family: Titillium Web Semi Bold;
  font-size: 20px;
  line-height: 25px;
  margin: 0;
}
html body .subhead {
  color: #222222;
  font-family: Open Sans;
  font-size: 21px;
  line-height: 37px;
}
html body .standard-paragraph,
html body p {
  color: #222222;
  font-family: Open Sans;
  font-size: 18px;
  line-height: 32px;
}
html body .small-paragraph {
  color: #222222;
  font-family: Open Sans;
  font-size: 15px;
  line-height: 27px;
}
html body .small-paragraph p {
  font-size: 15px;
  line-height: 27px;
}
html body .extra-small-paragraph {
  color: #222222;
  font-family: Open Sans;
  font-size: 12px;
  line-height: 18px;
}
html body .meta-large {
  color: #222222;
  font-family: Titillium Web Bold;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  text-transform: uppercase;
}
html body .meta-regular {
  color: #222;
  font-family: Titillium Web Bold;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
}
html body .meta-small {
  color: #222222;
  font-family: Titillium Web Bold;
  font-size: 18px;
  line-height: 23px;
  text-transform: uppercase;
}
html body .cite {
  color: #222222;
  font-family: Open Sans;
  font-size: 28px;
  font-style: italic;
  line-height: 42px;
}
html body .bgGray {
  background: #f2f2f2;
}
html body .bgGray .vrmSelect label,
html body .bgGray .vrmInput label {
  background: linear-gradient(0deg, #ffffff 45%, #f2f2f2 75%);
}
html body .in_stock,
html body .less_stock,
html body .no_stock {
  font-size: 12px;
  line-height: 18px;
}
html body .in_stock:before,
html body .less_stock:before,
html body .no_stock:before {
  display: inline-block;
  content: '';
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  margin-right: 0.5rem;
}
html body .in_stock:before {
  background: #38bb85;
}
html body .less_stock:before {
  background: #f98e1a;
}
html body .no_stock:before {
  background: #f3381d;
}
html body .cta {
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Titillium Web', sans-serif;
  font-size: 14px;
  padding: 8px 24px;
  transition: all 0.5s ease-in-out;
  background-image: linear-gradient(62deg, #21a4e3 0%, #0a47b4 100%);
  border: none;
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
}
html body .cta:hover {
  text-decoration: none;
  transform: translatey(-2px);
  transition: all 0.25s ease-in-out;
  background-image: linear-gradient(62deg, #21a4e3 0%, #0a47b4 100%);
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.15);
}
html body .cta:active {
  transform: translatey(0);
  border: none;
}
html body .cta:focus {
  outline: none;
  overflow: hidden;
}
html body .cta[disabled="disabled"] {
  opacity: 1;
  background: #cccccc;
}
html body .mobileChoose {
  display: none;
  padding: 0 32px;
  justify-content: space-around;
}
html body .mobileChoose .active {
  font-weight: 600;
  border-bottom: 1px solid #222222;
}
html body .page-wrapper {
  justify-content: space-between;
}
html body .page-wrapper .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 49;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body .page-wrapper .page-content {
  padding: 90px 0 0 0;
  text-align: center;
  /** INTRO SECTION - START */
  /** INTRO SECTION - END */
}
html body .page-wrapper .page-content .intro-section {
  position: relative;
  display: flex;
  justify-content: center;
}
html body .page-wrapper .page-content .intro-section .image {
  display: flex;
  width: 100%;
}
html body .page-wrapper .page-content .intro-section .image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
html body .page-wrapper .page-content .intro-section .image.mobile {
  display: none;
}
html body .page-wrapper .page-content .intro-section .contentBox.absolute {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
html body .page-wrapper .page-content .faq-section {
  padding-left: 32px;
  padding-right: 32px;
}
html body .page-wrapper .page-content .faq-section .subhead {
  margin-top: 16px;
}
html body .page-wrapper .page-content .content-section .contentBox {
  text-align: left;
}
html body .page-wrapper .page-content .trusted-section .contentBox .etrusted-carousel-widget .flex-wrapper {
  margin: 0;
}
html body .page-wrapper .page-content .etrusted-carousel-widget .flex-wrapper {
  margin: 0;
}
html body .payment-box {
  position: relative;
  z-index: 1;
}
html body .payment-box .payment-claim {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 12px;
  font-style: italic;
}
html body .payment-box .payments .paymentIcon {
  margin: 0 12px;
  max-height: 28px;
}
html body .vrmzOptInForm {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  text-align: justify;
}
html body .vrmzOptInForm p {
  line-height: 1.42857143;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
html body .vrmzOptInForm .vrmCheckbox {
  margin-bottom: 2rem;
}
html body .vrmzOptInForm .creditWorthiness {
  margin-bottom: 4rem;
}
html body .vrmzOptInForm .optinBox {
  display: grid;
}
html body .vrmzOptInForm .optinBox .vrmz_optin_text_channel {
  margin-bottom: 1rem;
}
html body .vrmzOptInForm .optinBox .vrmz_optin_text_channel input {
  margin: 0 5px 0 0;
  appearance: none;
  border: 2px solid #999999;
  width: 13px;
  height: 13px;
  border-radius: 2px;
}
html body .vrmzOptInForm .optinBox .vrmz_optin_text_channel input:checked {
  border-color: #222222;
  position: relative;
}
html body .vrmzOptInForm .optinBox .vrmz_optin_text_channel input:checked:before {
  content: '✔';
  color: #222222;
  font-size: 11px;
  line-height: 0.75;
  position: absolute;
  left: 1px;
}
html body .vrmzOptInForm .optinBox .vrmz_optin_text_channel input p {
  display: inline;
}
html body button {
  background: none;
  border: 1px solid transparent;
}
html body button:hover {
  border: 1px solid transparent;
}
html body button:hover,
html body button:focus {
  background: none;
}
html body .button i.icon-left {
  margin-right: 6px;
}
html body .button {
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Titillium Web', sans-serif;
  font-size: 14px;
  padding: 8px 24px;
  transition: all 0.5s ease-in-out;
}
html body .button.primary {
  background-image: linear-gradient(62deg, #21a4e3 0%, #0a47b4 100%);
  border: none;
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
}
html body .button.primary a {
  color: inherit;
}
html body .button.primary .fa-angle-left:before {
  margin-right: 5px;
}
html body .button.primary .fa-angle-right:before {
  margin-left: 5px;
}
html body .button.primary * {
  background: unset;
}
html body .button.secondary {
  background-color: unset;
  border: solid #666666 2px;
  color: #666666;
  font-weight: 600;
  line-height: 16px;
}
html body .button.secondary a {
  color: #666666;
}
html body .button.secondary.negative {
  border-color: #ffffff;
  color: #ffffff;
}
html body .button:hover {
  transform: translatey(-2px);
  transition: all 0.25s ease-in-out;
}
html body .button:hover.primary {
  background-image: linear-gradient(62deg, #21a4e3 0%, #0a47b4 100%);
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.15);
}
html body .button:hover.primary * {
  background: unset;
}
html body .button:active {
  transform: translatey(0);
  border: none;
}
html body .button:focus {
  outline: none;
  overflow: hidden;
}
html body .button a {
  color: #222222;
}
html body .button a:hover {
  text-decoration: none;
}
html body .button[disabled="disabled"] {
  opacity: 1;
  background: #cccccc;
}
html body .ripple {
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  animation: rippleEffect 1s 1;
  opacity: 0;
}
@keyframes rippleEffect {
  0% {
    transform: scale(1);
    opacity: 0.25;
  }
  100% {
    transform: scale(100);
    opacity: 0;
  }
}
html body .vrmRow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
html body .vrmRadio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
html body .vrmRadio .radioOption {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  height: 42.3px;
}
html body .vrmRadio .radioOption label.outlineError {
  color: #f3381d;
  border: unset;
}
html body .vrmRadio .radioOption label.disabled {
  color: #cccccc;
}
html body .vrmRadio.form-type {
  flex-direction: column;
}
html body .vrmRadio .errorLabel {
  color: #f3381d;
}
html body .vrmRadio .errorMessage {
  display: flex;
  color: #f3381d;
  margin-bottom: 1.2rem;
  position: relative;
}
html body .vrmRadio .errorMessage .icon {
  left: 0;
  right: inherit;
  top: 2px;
  height: inherit;
}
html body .vrmRadio .errorMessage p {
  font-size: 1.2rem;
  color: #f3381d;
  line-height: 1.5;
  padding-left: 1rem;
  padding-bottom: 0;
}
html body .vrmSelect,
html body .vrmInput {
  position: relative;
  margin-bottom: 12px;
  background: #ffffff;
}
html body .vrmSelect label,
html body .vrmInput label {
  position: absolute;
  z-index: 2;
  top: -6.5px;
  left: 8px;
  background: inherit;
  padding: 0 3px;
  color: #aaaaaa;
  font-weight: 600;
  font-size: 10.8px;
}
html body .vrmSelect select,
html body .vrmInput select,
html body .vrmSelect input,
html body .vrmInput input {
  position: relative;
  z-index: 1;
  border: 2px solid #666666;
  color: #222222;
  border-radius: 4.5px;
  height: 43.2px;
  background: transparent;
}
html body .vrmSelect select[disabled],
html body .vrmInput select[disabled],
html body .vrmSelect input[disabled],
html body .vrmInput input[disabled] {
  opacity: 1;
  border-color: #cccccc;
  color: #cccccc;
}
html body .vrmSelect select::-webkit-input-placeholder,
html body .vrmInput select::-webkit-input-placeholder,
html body .vrmSelect input::-webkit-input-placeholder,
html body .vrmInput input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #999999;
}
html body .vrmSelect select:-moz-placeholder,
html body .vrmInput select:-moz-placeholder,
html body .vrmSelect input:-moz-placeholder,
html body .vrmInput input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999999;
  opacity: 1;
}
html body .vrmSelect select::-moz-placeholder,
html body .vrmInput select::-moz-placeholder,
html body .vrmSelect input::-moz-placeholder,
html body .vrmInput input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999999;
  opacity: 1;
}
html body .vrmSelect select:-ms-input-placeholder,
html body .vrmInput select:-ms-input-placeholder,
html body .vrmSelect input:-ms-input-placeholder,
html body .vrmInput input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999999;
}
html body .vrmSelect select::-ms-input-placeholder,
html body .vrmInput select::-ms-input-placeholder,
html body .vrmSelect input::-ms-input-placeholder,
html body .vrmInput input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #999999;
}
html body .vrmSelect select::placeholder,
html body .vrmInput select::placeholder,
html body .vrmSelect input::placeholder,
html body .vrmInput input::placeholder {
  /* Most modern browsers support this now. */
  color: #999999;
}
html body .vrmSelect select.outlineError,
html body .vrmInput select.outlineError,
html body .vrmSelect input.outlineError,
html body .vrmInput input.outlineError {
  border: solid #f3381d 2px;
}
html body .vrmSelect select.outlineSuccess,
html body .vrmInput select.outlineSuccess,
html body .vrmSelect input.outlineSuccess,
html body .vrmInput input.outlineSuccess {
  border: solid #38bb85 2px;
}
html body .vrmSelect select.outlineWarning,
html body .vrmInput select.outlineWarning,
html body .vrmSelect input.outlineWarning,
html body .vrmInput input.outlineWarning {
  border: solid #f98e1a 2px;
}
html body .vrmSelect select,
html body .vrmInput select {
  font-size: 12px;
}
html body .vrmSelect .select-arrow,
html body .vrmInput .select-arrow,
html body .vrmSelect .icon,
html body .vrmInput .icon {
  z-index: 1;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  margin-right: 12px;
  color: #999999;
}
html body .vrmSelect .select-arrow.disabled,
html body .vrmInput .select-arrow.disabled,
html body .vrmSelect .icon.disabled,
html body .vrmInput .icon.disabled {
  color: #cccccc;
}
html body .vrmSelect .select-arrow,
html body .vrmInput .select-arrow {
  z-index: 0;
  color: #222222;
}
html body .vrmSelect .select-arrow:before,
html body .vrmInput .select-arrow:before {
  font-family: "Font Awesome 5 Pro Light";
  content: '\f0dc';
}
html body .vrmSelect.disabled,
html body .vrmInput.disabled {
  color: #cccccc;
}
html body .vrmSelect.disabled label,
html body .vrmInput.disabled label {
  color: inherit;
}
html body .vrmSelect ~ .errorMessage,
html body .vrmInput ~ .errorMessage,
html body .vrmSelect .errorMessage,
html body .vrmInput .errorMessage {
  display: flex;
  color: #f3381d;
  margin-bottom: 1.2rem;
  position: relative;
}
html body .vrmSelect ~ .errorMessage .icon,
html body .vrmInput ~ .errorMessage .icon,
html body .vrmSelect .errorMessage .icon,
html body .vrmInput .errorMessage .icon {
  left: 0;
  right: inherit;
  top: 2px;
  height: inherit;
}
html body .vrmSelect ~ .errorMessage p,
html body .vrmInput ~ .errorMessage p,
html body .vrmSelect .errorMessage p,
html body .vrmInput .errorMessage p {
  font-size: 1.2rem;
  color: #f3381d;
  line-height: 1.5;
  padding-left: 1rem;
  padding-bottom: 0;
}
html body .vrmSelect textarea,
html body .vrmInput textarea {
  border-radius: 4.5px;
  height: 20rem;
}
html body .vrmSelect textarea,
html body .vrmInput textarea {
  border-radius: 4.5px;
  height: 20rem;
}
html body .errorMessage ~ .vrmInput {
  margin-bottom: 0;
}
html body .legalText {
  display: flex;
  flex-direction: column;
  text-align: justify;
}
html body .legalText p {
  line-height: 1.42857143;
  font-size: 1.4rem;
}
html body .vrmCheckbox {
  display: flex;
  flex-direction: row;
  align-items: center;
}
html body .vrmCheckbox.vrmAgbCheckbox {
  align-items: baseline;
}
html body .vrmCheckbox p {
  display: inline;
}
html body .vrmCheckbox input {
  margin: 0 5px 0 0;
  appearance: none;
  border: 2px solid #999999;
  width: 13px;
  height: 13px;
  border-radius: 2px;
}
html body .vrmCheckbox input.outlineError {
  border-color: #f3381d;
}
html body .vrmCheckbox input:checked {
  border-color: #222222;
  position: relative;
}
html body .vrmCheckbox input:checked:before {
  content: '✔';
  color: #222222;
  font-size: 11px;
  line-height: 0.75;
  position: absolute;
  left: 1px;
}
html body .vrmCheckbox input.invalid {
  border-color: #f3381d;
}
html body .vrmCheckbox .errorLabel {
  color: #f3381d;
}
html body .vrmCheckbox .errorMessage {
  display: flex;
  color: #f3381d;
  margin-bottom: 1.2rem;
  position: relative;
}
html body .vrmCheckbox .errorMessage .icon {
  left: 0;
  right: inherit;
  top: 2px;
  height: inherit;
}
html body .vrmCheckbox .errorMessage p {
  font-size: 1.2rem;
  color: #f3381d;
  line-height: 1.5;
  padding-left: 1rem;
  padding-bottom: 0;
}
html body .rowHeadline {
  margin-bottom: 12px;
}
html body .whiteBox {
  background: #ffffff;
  border-radius: 5px;
}
html body .whiteBox .vrmSelect label,
html body .whiteBox .vrmInput label {
  background: #ffffff;
}
html body .infoBox {
  padding: 16px;
}
html body .slashed .slashedPrice {
  width: 100%;
  text-align: right;
  font-size: 20px;
  font-family: "Titillium Web Semi Bold";
  margin-bottom: 8px;
}
html body .slashed .slashedPrice span {
  text-decoration: line-through;
}
html body .slashed .min,
html body .slashed .price,
html body .slashed .condition {
  color: #bf0545;
}
html body .whiteOnLightgreyBackground {
  box-shadow: 0 20px 40px 0 rgba(34, 34, 34, 0.1);
  transition: all 0.5s ease-in-out;
}
html body .whiteOnLightgreyBackground.effect:hover {
  box-shadow: 0 30px 40px 0 rgba(34, 34, 34, 0.15);
  transition: all 0.25s ease-in-out;
  transform: translatey(-5px);
}
html body .shadow25 {
  box-shadow: 0 20px 40px 0 rgba(34, 34, 34, 0.25);
}
html body .outlineActive {
  border: solid #cccccc 2px;
  border-radius: 5px;
}
html body .outlineInput {
  border: solid #aaaaaa 2px;
  border-radius: 5px;
}
html body .outlineNormal {
  border: solid #999999 2px;
  border-radius: 5px;
}
html body .outlineError {
  border: solid #f3381d 2px;
  border-radius: 5px;
}
html body .outlineSuccess {
  border: solid #38bb85 2px;
  border-radius: 5px;
}
html body .outlineWarning {
  border: solid #f98e1a 2px;
  border-radius: 5px;
}
html body .outlineNotification {
  border: solid #f98e1a 2px;
  border-radius: 5px;
}
html body .outlineSuccess {
  border: solid #38bb85 2px;
  border-radius: 5px;
}
html body .outlineUpload {
  border: dotted #999999 2px;
  border-radius: 5px;
}
html body .errorMes {
  color: #f3381d;
  font-weight: bold;
  margin-bottom: 8px;
}
html body .warningMes {
  color: #f98e1a;
  font-weight: bold;
  margin-bottom: 8px;
}
html body .warningMes p {
  color: unset;
  font-family: unset;
  font-size: unset;
  line-height: unset;
}
html body .faqContentBox {
  padding: 0;
  margin-bottom: 0;
}
html body .faqContentBox .faqCatBox {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #aaaaaa;
  padding: 12px 0;
  margin: 0;
}
html body .faqContentBox .faqCatBox .faqCatTitleBox {
  display: flex;
  justify-content: space-between;
  text-align: left;
}
html body .faqContentBox .faqCatBox .faqCatTitleBox .faqCatTitle {
  color: #222222;
  font-family: Titillium Web Semi Bold;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
html body .faqContentBox .faqCatBox .faqCatTitleBox .action {
  font-size: 1.8rem;
  color: #aaaaaa;
  margin-left: 8px;
  font-weight: normal;
}
html body .faqContentBox .faqCatBox .faqCatTitleBox .action:before {
  font-family: "Font Awesome 5 Pro Light";
  content: '\f13a';
}
html body .faqContentBox .faqCatBox .faqCatTitleBox:hover {
  cursor: pointer;
}
html body .faqContentBox .faqCatBox .faqCatTextBox {
  max-height: 0;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
  padding: 0;
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #aaaaaa;
  padding: 12px 0;
  margin: 0;
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox .faqTitleBox {
  display: flex;
  justify-content: space-between;
  text-align: left;
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox .faqTitleBox .faqTitle {
  color: #aaaaaa;
  font-family: Titillium Web Semi Bold;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox .faqTitleBox .action {
  font-size: 1.8rem;
  font-weight: normal;
  color: #aaaaaa;
  margin-left: 8px;
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox .faqTitleBox .action:before {
  font-family: "Font Awesome 5 Pro Light";
  content: '\f055';
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox .faqTitleBox:hover {
  cursor: pointer;
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox .faqTextBox {
  max-height: 0;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox .faqTextBox .faqText {
  font-size: 1.6rem;
  line-height: 2.8rem;
  text-align: left;
  padding: 4px 0 8px 0;
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox.active .faqTitleBox .faqTitle {
  color: #222222;
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox.active .faqTitleBox .action {
  color: #222222;
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox.active .faqTitleBox .action:before {
  content: '\f056';
}
html body .faqContentBox .faqCatBox .faqCatTextBox .faqBox:last-child {
  border-bottom: none;
}
html body .faqContentBox .faqCatBox.active .faqCatTitleBox .action {
  color: #222222;
}
html body .faqContentBox .faqCatBox.active .faqCatTitleBox .action:before {
  content: '\f139';
}
html body .faqContentBox .faqCatBox:last-child {
  border-bottom: none;
}
html body .contact-section .contentBox {
  display: flex;
  flex-wrap: wrap;
}
html body .contact-section .contentBox .imgPart {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}
html body .contact-section .contentBox .imgPart .images {
  position: relative;
  width: 42rem;
  min-height: 16rem;
  margin-left: auto;
}
html body .contact-section .contentBox .imgPart .images .image {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 100px;
  box-sizing: border-box;
  overflow: hidden;
  border: 0.6rem solid #F2F2F2;
  background: #ffffff;
}
html body .contact-section .contentBox .imgPart .images .image img {
  height: 100%;
  object-fit: cover;
}
html body .contact-section .contentBox .imgPart .images .image:nth-child(1) {
  z-index: 2;
  right: 66%;
}
html body .contact-section .contentBox .imgPart .images .image:nth-child(2) {
  z-index: 1;
  right: 33%;
}
html body .contact-section .contentBox .imgPart .images .image:nth-child(3) {
  right: 0;
}
html body .contact-section .contentBox .textPart {
  width: 50%;
  box-sizing: border-box;
  text-align: left;
  padding-left: 48px;
}
html body .contact-section .contentBox .textPart .level3--heading {
  margin-bottom: 16px;
}
html body .contact-section .contentBox .textPart .icons {
  margin-top: 16px;
  display: flex;
}
html body .contact-section .contentBox .textPart .icons > a {
  width: 48px;
  height: 48px;
  background: #222222;
  color: #ffffff;
  border-radius: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 16px;
}
html body .contact-section .contentBox .textPart .icons > a i {
  font-size: 2.4rem;
}
html body .contact-section .contentBox .textPart .icons > a:first-child {
  margin-left: 0;
}
html body .contact-section .contentBox .textPart .icons > a:last-child {
  margin-right: 0;
}
html body .contact-section .contentBox .textPart .icons > a:hover {
  text-decoration: none;
}
html body .progressBar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}
html body .progressBar .step {
  border: 2px solid #aaaaaa;
  color: #aaaaaa;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
html body .progressBar .step.first:before {
  content: '1';
}
html body .progressBar .step.second:before {
  content: '2';
}
html body .progressBar .step.third:before {
  content: '3';
}
html body .progressBar .step.fourth:before {
  content: '4';
}
html body .progressBar .step.fifth:before {
  content: '5';
}
html body .progressBar .step.active {
  border-color: #38bb85;
  color: #38bb85;
}
html body .progressBar .step.active.warning {
  border-color: #f98e1a;
  color: #f98e1a;
}
html body .progressBar .step.complete {
  border-color: #38bb85;
  background: #38bb85;
  color: #ffffff;
}
html body .progressBar .step.complete:before {
  font-family: "Font Awesome 5 Pro Regular";
  content: '\f00c';
  font-size: 1.6rem;
}
html body .progressBar .step.failed {
  border-color: #f98e1a;
  background: #f98e1a;
  color: #ffffff;
}
html body .progressBar .step.failed:before {
  font-family: "Font Awesome 5 Pro Regular";
  content: '\21';
  font-size: 1.6rem;
}
html body .progressBar .line {
  display: flex;
  border: 1px solid #aaaaaa;
  height: 0;
  width: 40px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  margin: 0 2px;
}
html body .progressBar .line.active {
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #38bb85, #aaaaaa);
}
html body .progressBar .line.active.warning {
  border-image-source: linear-gradient(to right, #f98e1a, #aaaaaa);
}
html body .progressBar .line.complete {
  border-color: #38bb85;
}
html body .progressBar .line.failed {
  border-color: #f98e1a;
}
html body .vrmTable {
  display: flex;
  flex-direction: column;
}
html body .vrmTable .vrmTr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 1rem;
}
html body .displno {
  display: none;
}
.vrmExtraHighlight {
  display: none !important;
}
@-webkit-keyframes active-slide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.11);
    transform: scale(1.11);
  }
}
@keyframes active-slide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.11);
    transform: scale(1.11);
  }
}
@-webkit-keyframes away-to-left {
  0% {
    -webkit-transform: translateX(-100%) scale(0.7);
    transform: translateX(-100%) scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes away-to-left {
  0% {
    -webkit-transform: translateX(-100%) scale(0.7);
    transform: translateX(-100%) scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes left-to-middle {
  0% {
    -webkit-transform: translateX(-100%) scale(1);
    transform: translateX(-100%) scale(1);
  }
  100% {
    -webkit-transform: translateX(0) scale(1.11);
    transform: translateX(0) scale(1.11);
  }
}
@keyframes left-to-middle {
  0% {
    -webkit-transform: translateX(-100%) scale(1);
    transform: translateX(-100%) scale(1);
  }
  100% {
    -webkit-transform: translateX(0) scale(1.11);
    transform: translateX(0) scale(1.11);
  }
}
@-webkit-keyframes middle-to-right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 1;
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes middle-to-right {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 1;
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes right-to-away {
  0% {
    -webkit-transform: translateX(-100%) scale(1);
    transform: translateX(-100%) scale(1);
    opacity: 1;
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes right-to-away {
  0% {
    -webkit-transform: translateX(-100%) scale(1);
    transform: translateX(-100%) scale(1);
    opacity: 1;
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes away-to-right {
  0% {
    -webkit-transform: translateX(100%) scale(0.7);
    transform: translateX(100%) scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes away-to-right {
  0% {
    -webkit-transform: translateX(100%) scale(0.7);
    transform: translateX(100%) scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes right-to-middle {
  0% {
    -webkit-transform: translateX(100%) scale(1);
    transform: translateX(100%) scale(1);
  }
  100% {
    -webkit-transform: translateX(0) scale(1.11);
    transform: translateX(0) scale(1.11);
  }
}
@keyframes right-to-middle {
  0% {
    -webkit-transform: translateX(100%) scale(1);
    transform: translateX(100%) scale(1);
  }
  100% {
    -webkit-transform: translateX(0) scale(1.1);
    transform: translateX(0) scale(1.1);
  }
}
@-webkit-keyframes middle-to-left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes middle-to-left {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes left-to-away {
  0% {
    -webkit-transform: translateX(100%) scale(1);
    transform: translateX(100%) scale(1);
    opacity: 1;
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes left-to-away {
  0% {
    -webkit-transform: translateX(100%) scale(1);
    transform: translateX(100%) scale(1);
    opacity: 1;
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0;
    visibility: hidden;
  }
}
/*
 * ${nameAndExt}
 * PHP version 7
 * @category MSP
 * @package
 * @author Tommy Köster
 * @copyright 2024 MSP Medien Systempartner GmbH & Co. KG
 * @license http://www.medien-systempartner.de/ Commercial
 * @version SVN: $Id$
 * @link www.medien-systempartner.de
 * @date 15.05.24, 09:16
 * @encoding $encoding
 * @lastModified 15.05.24, 09:16
 */
/** explizit für Tablets und Smartphones im Landscape-Modus */
/** für alle geräte bis 1023.98px (bis Tablets und Smartphones im Landscape-Modus)*/
@media only screen and (max-width: 991.98px) {
  html body .page-wrapper .page-content .intro-section .image.desktop {
    display: none;
  }
  html body .page-wrapper .page-content .intro-section .image.mobile {
    display: flex;
  }
}
/** für alle Geräte bis 767.98px (bis zu kleinen Tablets/Phablets)*/
@media only screen and (max-width: 767.98px) {
  html body .vrmSelect,
  html body .vrmInput {
    margin-bottom: 24px;
  }
  html body .page-wrapper .columns {
    padding-top: 70px;
  }
  html body .page-wrapper .columns .column.main {
    flex-direction: row;
    display: flex;
  }
  html body .page-wrapper .overlay .pva-choose-box {
    width: auto;
  }
  html body .page-wrapper .overlay .pva-choose-box .closing {
    top: 16px;
  }
  html body .page-wrapper .overlay .pva-choose-box h4 {
    text-align: center;
  }
  html body .page-wrapper .overlay .pva-choose-box .pva-choose {
    flex-direction: column;
    align-items: center;
  }
  html body .page-wrapper .overlay .pva-choose-box .pva-choose .pva-box {
    width: 90%;
  }
  html body .page-wrapper .page-content .intro-section .contentBox {
    padding-left: 32px;
    padding-right: 32px;
  }
  html body .page-wrapper .page-content .content-section {
    padding-left: 32px;
    padding-right: 32px;
  }
  html body .faqContentBox {
    padding-top: 12px;
  }
  html body .mobileChoose {
    display: flex;
  }
}
/** Smartphones */
@media only screen and (max-width: 575.98px) {
  html body {
    /** Payment-Box **/
  }
  html body .level1--heading,
  html body h1 {
    font-size: 27px;
    line-height: 30px;
  }
  html body .level2--heading,
  html body h2 {
    font-size: 20px;
    line-height: 25px;
  }
  html body .level3--heading,
  html body h3 {
    font-size: 18px;
    line-height: 23px;
  }
  html body .level4--heading,
  html body h4 {
    font-size: 16px;
    line-height: 20px;
  }
  html body .subhead {
    font-size: 18px;
    line-height: 28px;
  }
  html body .standard-paragraph,
  html body p {
    font-size: 16px;
    line-height: 28px;
  }
  html body .small-paragraph {
    font-size: 13px;
    line-height: 20px;
  }
  html body .extra-small-paragraph {
    font-size: 10px;
    line-height: 15px;
  }
  html body .meta-large {
    font-size: 20px;
    line-height: 25px;
  }
  html body .meta-regular {
    font-size: 17px;
    line-height: 22px;
  }
  html body .meta-small {
    font-size: 15px;
    line-height: 19px;
  }
  html body .cite {
    font-size: 22px;
    line-height: 43px;
  }
  html body .description table > thead > tr > th,
  html body .description table > tbody > tr > th,
  html body .description table > tfoot > tr > th,
  html body .description table > thead > tr > td,
  html body .description table > tbody > tr > td,
  html body .description table > tfoot > tr > td {
    padding: 0 4px 1.5rem;
  }
  html body .defPad {
    padding: 48px 0;
  }
  html body .trustDefPad {
    padding: calc(30px) 0 48px;
  }
  html body .defPadTop {
    padding-top: 48px;
  }
  html body .trustDefPadTop {
    padding-top: calc(30px);
  }
  html body .smMarTop {
    margin-top: 24px;
  }
  html body .smPadTop {
    padding-top: 24px;
  }
  html body .smMarBot {
    margin-bottom: 24px;
  }
  html body .vrmSelect,
  html body .vrmInput {
    width: 100%;
  }
  html body .payment-box.smPadTop {
    padding-top: 0;
  }
  html body .vrmTable .vrmTr {
    grid-template-columns: unset;
  }
}
/** kleine Smartphones bzw. schlanke (Iphone 5, Iphone X, Samsung Z Flip...) */
@media only screen and (max-width: 380px) {
  html body {
    /** Typography **/
    /** Paper BG **/
    /** Design **/
  }
  html body .paperBg {
    display: none;
  }
  html body .page-wrapper .page-content {
    padding-top: 70px;
  }
  html body .page-wrapper .overlay .pva-choose-box .pva-choose .pva-box .pva .img-box img {
    max-width: 100%;
  }
}
/** Kontaktbereich Responsive */
@media only screen and (max-width: 919.98px) {
  html body .page-wrapper .contact-section .contentBox {
    flex-direction: column;
  }
  html body .page-wrapper .contact-section .contentBox .imgPart {
    width: 100%;
    height: 20vw;
  }
  html body .page-wrapper .contact-section .contentBox .imgPart .images {
    margin: 0 auto;
    width: 50vw;
    min-height: unset;
  }
  html body .page-wrapper .contact-section .contentBox .imgPart .images .image {
    height: 20vw;
    width: 20vw;
  }
  html body .page-wrapper .contact-section .contentBox .imgPart .images .image:nth-child(1) {
    left: 0;
  }
  html body .page-wrapper .contact-section .contentBox .imgPart .images .image:nth-child(2) {
    left: 15vw;
  }
  html body .page-wrapper .contact-section .contentBox .textPart {
    width: 100%;
    padding: 0 32px;
    text-align: center;
  }
  html body .page-wrapper .contact-section .contentBox .textPart .icons {
    justify-content: center;
  }
}
html body {
  /** EDITOR KLASSEN */
}
html body .titleBox {
  margin-bottom: 30px;
}
html body .flexBoxRow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body .flexBoxCol {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.zalComment {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 5px;
  position: relative;
}
.zalComment .zalCommentIcon {
  position: absolute;
  top: 5px;
  left: 5px;
  background: #8b7fb6;
  border-radius: 100px;
  width: 20px;
  height: 20px;
  font-weight: bold;
  color: #fff;
}
.zalComment .zalCommentText {
  width: 0;
  height: 0;
  overflow: hidden;
}
.zalComment:hover {
  border: 2px solid #8b7fb6;
  background: #fff;
}
.zalComment:hover .zalCommentText {
  width: 100%;
  height: 100%;
}
/*
 * @category  MSP
 * @editor    Tommy Köster
 * @copyright 2025 - MSP Medien Systempartner GmbH & Co. KG
 * @license   http://www.medien-systempartner.de/  Commercial
 * @link      www.medien-systempartner.de
 * @updated   18.06.25, 11:37
 */
html body {
  /** Start-Seite */
  /** Ausgaben-Seite */
  /** Kategorie-Seite */
  /** Produkt-Seite */
}
html body .close-row {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
}
html body .close-row .close:before {
  font-family: "Font Awesome 5 Pro Light";
  content: '\f00d';
  font-size: 1rem;
  line-height: 1;
}
html body .close-row .close:hover {
  cursor: pointer;
}
html body .head-text {
  padding-left: 32px;
  padding-right: 32px;
}
html body .upsellBox {
  margin-top: 90px;
  padding: 48px;
  max-height: 75%;
  max-width: 944px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
html body .upsellBox .upsellHeadline {
  text-align: center;
}
html body .upsellBox .product {
  max-width: 944px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
html body .upsellBox .product .img-box {
  display: flex;
  width: calc(58.33333333%);
}
html body .upsellBox .product .img-box img {
  border-radius: 5px;
  object-fit: contain;
}
html body .upsellBox .product .details {
  width: calc(41.66666667%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
  padding-left: 64px;
}
html body .upsellBox .product .details form {
  width: 100%;
}
html body .upsellBox .product .details form .name {
  margin-bottom: 24px;
}
html body .upsellBox .product .details form .name.withsub {
  margin-bottom: 4px;
}
html body .upsellBox .product .details form .name-subline {
  font-family: "Titillium Web Bold";
  font-size: 22px;
  margin-bottom: 24px;
}
html body .upsellBox .product .details form .description,
html body .upsellBox .product .details form .description p {
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
html body .upsellBox .product .details form .advantages {
  margin-bottom: 32px;
}
html body .upsellBox .product .details form .price-box {
  margin: 24px 0;
  font-size: 16.2px;
}
html body .upsellBox .product .details form .price-box .min {
  font-family: Open Sans;
  font-weight: 600;
  margin-right: 5px;
}
html body .upsellBox .product .details form .price-box .price {
  font-family: 'Titillium Web Bold';
  font-size: 36px;
  line-height: 0.8;
}
html body .upsellBox .product .details form .price-box .condition {
  font-family: Open Sans;
  font-weight: 600;
  margin-left: 12px;
}
html body .upsellBox .product .details form .price-box.slashed .slashedPrice {
  text-align: left;
}
html body .upsellBox .product .details .btn-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
html body .upsellBox .product .details .btn-row .checkout-btn,
html body .upsellBox .product .details .btn-row .product-btn,
html body .upsellBox .product .details .btn-row .upsell-btn {
  width: 48%;
}
html body .upsellBox .product .details .btn-row .checkout-btn button,
html body .upsellBox .product .details .btn-row .product-btn button,
html body .upsellBox .product .details .btn-row .upsell-btn button {
  width: 100%;
}
html body .upsellBox .product.text-right .img-box {
  order: 1;
}
html body .upsellBox .product.text-right .details {
  order: 2;
  padding-right: 0;
}
html body .upsellBox .product.text-left .img-box {
  order: 2;
  justify-content: flex-end;
}
html body .upsellBox .product.text-left .details {
  order: 1;
  padding-left: 0;
}
html body .upsellBox::-webkit-scrollbar {
  display: none;
}
html body .page-content {
  /** Countdown Section **/
  /** Angebot-Sektion */
  /** Produkt-Slider */
  /** Aktionsbox */
}
html body .page-content .product-section {
  position: relative;
}
html body .page-content .product-section .contentBox .product {
  max-width: 944px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
html body .page-content .product-section .contentBox .product .img-box {
  display: flex;
  width: calc(58.33333333%);
}
html body .page-content .product-section .contentBox .product .img-box img {
  border-radius: 5px;
  object-fit: contain;
}
html body .page-content .product-section .contentBox .product .details {
  width: calc(41.66666667%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
  padding-left: 64px;
}
html body .page-content .product-section .contentBox .product .details form {
  width: 100%;
}
html body .page-content .product-section .contentBox .product .details form .name {
  margin-bottom: 24px;
}
html body .page-content .product-section .contentBox .product .details form .name.withsub {
  margin-bottom: 4px;
}
html body .page-content .product-section .contentBox .product .details form .name-subline {
  font-family: "Titillium Web Bold";
  font-size: 22px;
  margin-bottom: 24px;
}
html body .page-content .product-section .contentBox .product .details form .description,
html body .page-content .product-section .contentBox .product .details form .description p {
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
html body .page-content .product-section .contentBox .product .details form .advantages {
  margin-bottom: 32px;
}
html body .page-content .product-section .contentBox .product .details form .price-box {
  margin: 24px 0;
  font-size: 16.2px;
}
html body .page-content .product-section .contentBox .product .details form .price-box .min {
  font-family: Open Sans;
  font-weight: 600;
  margin-right: 5px;
}
html body .page-content .product-section .contentBox .product .details form .price-box .price {
  font-family: 'Titillium Web Bold';
  font-size: 36px;
  line-height: 0.8;
}
html body .page-content .product-section .contentBox .product .details form .price-box .condition {
  font-family: Open Sans;
  font-weight: 600;
  margin-left: 12px;
}
html body .page-content .product-section .contentBox .product .details form .price-box.slashed .slashedPrice {
  text-align: left;
}
html body .page-content .product-section .contentBox .product .details .btn-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
html body .page-content .product-section .contentBox .product .details .btn-row .checkout-btn,
html body .page-content .product-section .contentBox .product .details .btn-row .product-btn,
html body .page-content .product-section .contentBox .product .details .btn-row .upsell-btn {
  width: 48%;
}
html body .page-content .product-section .contentBox .product .details .btn-row .checkout-btn button,
html body .page-content .product-section .contentBox .product .details .btn-row .product-btn button,
html body .page-content .product-section .contentBox .product .details .btn-row .upsell-btn button {
  width: 100%;
}
html body .page-content .product-section .contentBox .product.text-right .img-box {
  order: 1;
}
html body .page-content .product-section .contentBox .product.text-right .details {
  order: 2;
  padding-right: 0;
}
html body .page-content .product-section .contentBox .product.text-left .img-box {
  order: 2;
}
html body .page-content .product-section .contentBox .product.text-left .details {
  order: 1;
  padding-left: 0;
}
html body .page-content .countdown-section .countdown-box {
  padding: 0 32px;
  max-width: 944px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
html body .page-content .countdown-section .countdown-box .countdown {
  display: grid;
  justify-content: center;
}
html body .page-content .countdown-section .countdown-box .countdown #countdowntime {
  background: linear-gradient(62deg, #21a4e3 0%, #0a47b4 100%);
  width: auto;
  color: #ffffff;
  font-family: "Titillium Web Bold";
  font-size: 6rem;
  line-height: 1;
  padding: 12px 32px 16px;
  border-radius: 20px;
}
html body .page-content .countdown-section .countdown-box .countdown .countdownlabel {
  display: flex;
  font-family: "Titillium Web Bold";
  font-size: 13.5px;
  background: linear-gradient(62deg, #21a4e3 0%, #0a47b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 16px 0;
}
html body .page-content .countdown-section .countdown-box .countdown .countdownlabel span {
  text-align: center;
  width: 25%;
}
html body .page-content .countdown-section .countdown-box #abgelaufen {
  font-family: "Titillium Web Bold";
  font-size: 30px;
}
html body .page-content .countdown-section .countdown-box .countdown-text {
  padding-top: 32px;
  font-family: "Titillium Web Bold";
  font-size: 30px;
}
html body .page-content .countdown-section .countdown-box .countdown-text > p {
  font-family: "Titillium Web Bold";
  font-size: 30px;
}
html body .page-content .bestseller-section {
  position: relative;
}
html body .page-content .bestseller-box {
  z-index: 2;
  position: relative;
}
html body .page-content .bestseller-box .product-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 60px;
  padding: 0 12px;
}
html body .page-content .bestseller-box .product-box .product {
  text-align: left;
  overflow: hidden;
}
html body .page-content .bestseller-box .product-box .product form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
html body .page-content .bestseller-box .product-box .product form .upperDiv .img-box {
  display: flex;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
html body .page-content .bestseller-box .product-box .product form .upperDiv .img-box .bestseller-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Titillium Web Semi Bold";
  font-size: 18px;
  line-height: 25px;
  padding: 5px 15px;
  border-radius: 5px 0 5px 0;
  background-color: #1e98dd;
  color: #ffffff;
}
html body .page-content .bestseller-box .product-box .product form .upperDiv .img-box img {
  margin-top: 3.5rem;
}
html body .page-content .bestseller-box .product-box .product form .upperDiv .details {
  padding: 16px 16px 32px 16px;
}
html body .page-content .bestseller-box .product-box .product form .upperDiv .details .name {
  color: #222222;
  font-family: "Titillium Web Bold";
  font-size: 25.2px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 30.6px;
  margin-bottom: 24px;
}
html body .page-content .bestseller-box .product-box .product form .upperDiv .details .name.withsub {
  margin-bottom: 4px;
}
html body .page-content .bestseller-box .product-box .product form .upperDiv .details .name-subline {
  font-family: "Titillium Web Bold";
  font-size: 14px;
  margin-bottom: 24px;
}
html body .page-content .bestseller-box .product-box .product form .upperDiv .details .advantages {
  font-size: 13.5px;
}
html body .page-content .bestseller-box .product-box .product form .bottomDiv {
  padding: 0 16px 48px 16px;
}
html body .page-content .bestseller-box .product-box .product form .bottomDiv div .button {
  width: 100%;
  font-size: 14px;
  padding: 8px 24px;
}
html body .page-content .bestseller-box .product-box .product form .bottomDiv .checkout-btn,
html body .page-content .bestseller-box .product-box .product form .bottomDiv .upsell-btn {
  margin-bottom: 20px;
}
html body .page-content .bestseller-box .product-box .product form .bottomDiv .product-btn .button {
  padding: 8px 24px;
}
html body .page-content .bestseller-box .product-box .product form .price-box {
  margin-bottom: 24px;
  font-size: 16.2px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  line-height: 1;
}
html body .page-content .bestseller-box .product-box .product form .price-box .min {
  font-family: Open Sans;
  font-weight: 600;
  margin-right: 5px;
}
html body .page-content .bestseller-box .product-box .product form .price-box .price {
  font-family: 'Titillium Web Bold';
  font-size: 36px;
  line-height: 0.8;
}
html body .page-content .bestseller-box .product-box .product form .price-box .condition {
  font-family: Open Sans;
  font-weight: 600;
  margin-left: 12px;
}
html body .page-content .bestseller-box .product-box .product.bestseller {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
html body .page-content .bestseller-box .product-box.twoBox {
  grid-template-columns: 1fr 1fr;
}
html body .page-content .bestseller-box .product-box.twoBox .product {
  width: 62%;
}
html body .page-content .bestseller-box .product-box.twoBox .product:first-child {
  justify-self: flex-end;
}
html body .page-content .bestseller-box .product-box.bestMar {
  margin-top: 3.5rem;
  margin-bottom: 4rem;
}
html body .page-content .compare-box {
  z-index: 2;
  position: relative;
}
html body .page-content .compare-box .product-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 60px;
  padding: 0 12px;
}
html body .page-content .compare-box .product-box .product {
  text-align: left;
  overflow: hidden;
}
html body .page-content .compare-box .product-box .product form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
html body .page-content .compare-box .product-box .product form .upperDiv .img-box {
  display: flex;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
html body .page-content .compare-box .product-box .product form .upperDiv .img-box .bestseller-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Titillium Web Semi Bold";
  font-size: 18px;
  line-height: 25px;
  padding: 5px 15px;
  border-radius: 5px 0 5px 0;
  background-color: #1e98dd;
  color: #ffffff;
}
html body .page-content .compare-box .product-box .product form .upperDiv .img-box img {
  margin-top: 3.5rem;
}
html body .page-content .compare-box .product-box .product form .upperDiv .details {
  padding: 16px 16px 32px 16px;
}
html body .page-content .compare-box .product-box .product form .upperDiv .details .name {
  color: #222222;
  font-family: "Titillium Web Bold";
  font-size: 25.2px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 30.6px;
  margin-bottom: 24px;
}
html body .page-content .compare-box .product-box .product form .upperDiv .details .name.withsub {
  margin-bottom: 4px;
}
html body .page-content .compare-box .product-box .product form .upperDiv .details .name-subline {
  font-family: "Titillium Web Bold";
  font-size: 14px;
  margin-bottom: 24px;
}
html body .page-content .compare-box .product-box .product form .upperDiv .details .advantages {
  font-size: 13.5px;
}
html body .page-content .compare-box .product-box .product form .bottomDiv {
  padding: 0 16px 48px 16px;
}
html body .page-content .compare-box .product-box .product form .bottomDiv div .button {
  width: 100%;
  font-size: 14px;
  padding: 8px 24px;
}
html body .page-content .compare-box .product-box .product form .bottomDiv .price-box {
  margin-bottom: 24px;
  font-size: 16.2px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  line-height: 1;
}
html body .page-content .compare-box .product-box .product form .bottomDiv .price-box .min {
  font-family: Open Sans;
  font-weight: 600;
  margin-right: 5px;
}
html body .page-content .compare-box .product-box .product form .bottomDiv .price-box .price {
  font-family: 'Titillium Web Bold';
  font-size: 36px;
  line-height: 0.8;
}
html body .page-content .compare-box .product-box .product form .bottomDiv .price-box .condition {
  font-family: Open Sans;
  font-weight: 600;
  margin-left: 12px;
}
html body .page-content .compare-box .product-box .product form .bottomDiv .checkout-btn,
html body .page-content .compare-box .product-box .product form .bottomDiv .upsell-btn {
  margin-bottom: 20px;
}
html body .page-content .compare-box .product-box .product form .bottomDiv .product-btn .button {
  padding: 8px 24px;
}
html body .page-content .compare-box .product-box .product.bestseller {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
html body .page-content .compare-box .product-box.twoBox {
  grid-template-columns: 1fr 1fr;
}
html body .page-content .compare-box .product-box.twoBox .product {
  width: 62%;
}
html body .page-content .compare-box .product-box.twoBox .product:first-child {
  justify-self: flex-end;
}
html body .page-content .compare-box .product-box.bestMar {
  margin-top: 3.5rem;
  margin-bottom: 4rem;
}
html body .page-content .products-section {
  position: relative;
}
html body .page-content .products-section .grayFont {
  background: #f2f2f2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
}
html body .page-content .offer-section .contentBox {
  box-sizing: border-box;
}
html body .page-content .offer-section .contentBox .offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  background: linear-gradient(62deg, #21a4e3 0%, #0a47b4 100%);
  padding: 32px;
  color: #ffffff;
}
html body .page-content .offer-section .contentBox .offer div,
html body .page-content .offer-section .contentBox .offer p {
  color: inherit;
}
html body .page-content .offer-section .contentBox .offer .offer-btn {
  margin-top: 16px;
}
html body .page-content .offer-section .contentBox .offer .offer-btn .button a {
  color: inherit;
}
html body .page-content .crosssell-section {
  position: relative;
}
html body .page-content .crosssell-section .contentBox .product {
  max-width: 944px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
html body .page-content .crosssell-section .contentBox .product .img-box {
  display: flex;
  flex-wrap: wrap;
  width: calc(58.33333333%);
}
html body .page-content .crosssell-section .contentBox .product .img-box img {
  border-radius: 5px;
  object-fit: contain;
}
html body .page-content .crosssell-section .contentBox .product .details {
  width: calc(41.66666667%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
  padding: 32px 0 48px 64px;
}
html body .page-content .crosssell-section .contentBox .product .details form {
  width: 100%;
}
html body .page-content .crosssell-section .contentBox .product .details form .name {
  margin-bottom: 24px;
}
html body .page-content .crosssell-section .contentBox .product .details form .name.withsub {
  margin-bottom: 4px;
}
html body .page-content .crosssell-section .contentBox .product .details form .name-subline {
  font-family: "Titillium Web Bold";
  font-size: 22px;
  margin-bottom: 24px;
}
html body .page-content .crosssell-section .contentBox .product .details form .description,
html body .page-content .crosssell-section .contentBox .product .details form .description p {
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
html body .page-content .crosssell-section .contentBox .product .details form .advantages {
  margin-bottom: 32px;
}
html body .page-content .crosssell-section .contentBox .product .details .pva {
  width: 100%;
}
html body .page-content .crosssell-section .contentBox .product .details .price-box {
  width: 100%;
  margin-bottom: 24px;
  font-size: 16.2px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  line-height: 1;
}
html body .page-content .crosssell-section .contentBox .product .details .price-box .min {
  font-family: Open Sans;
  font-weight: 600;
  margin-right: 5px;
}
html body .page-content .crosssell-section .contentBox .product .details .price-box .price {
  font-family: 'Titillium Web Bold';
  font-size: 36px;
  line-height: 0.8;
}
html body .page-content .crosssell-section .contentBox .product .details .price-box .condition {
  font-family: Open Sans;
  font-weight: 600;
  margin-left: 12px;
}
html body .page-content .crosssell-section .contentBox .product .details .price-box.slashed .slashedPrice {
  text-align: left;
}
html body .page-content .crosssell-section .contentBox .product .details .btn-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
html body .page-content .crosssell-section .contentBox .product .details .btn-row .checkout-btn,
html body .page-content .crosssell-section .contentBox .product .details .btn-row .product-btn,
html body .page-content .crosssell-section .contentBox .product .details .btn-row .upsell-btn {
  width: 48%;
}
html body .page-content .crosssell-section .contentBox .product .details .btn-row .checkout-btn button,
html body .page-content .crosssell-section .contentBox .product .details .btn-row .product-btn button,
html body .page-content .crosssell-section .contentBox .product .details .btn-row .upsell-btn button {
  width: 100%;
}
html body .page-content .crosssell-section .contentBox .product.oneBox {
  padding-left: 32px;
  padding-right: 32px;
}
html body .page-content .crosssell-section .contentBox .crosssell-box {
  padding-left: 32px;
  padding-right: 32px;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product {
  padding-bottom: 0;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .img-box {
  width: auto;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details {
  width: 100%;
  padding: 24px;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .name-subline {
  font-family: "Titillium Web Bold";
  font-size: 16px;
  margin-top: 4px;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .description {
  margin-top: 24px;
  margin-bottom: 32px;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .description p {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .pva {
  width: 100%;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .price-box {
  width: 100%;
  margin-bottom: 24px;
  font-size: 16.2px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  line-height: 1;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .price-box .min {
  font-family: Open Sans;
  font-weight: 600;
  margin-right: 5px;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .price-box .price {
  font-family: 'Titillium Web Bold';
  font-size: 36px;
  line-height: 0.8;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .price-box .condition {
  font-family: Open Sans;
  font-weight: 600;
  margin-left: 12px;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .price-box.slashed .slashedPrice {
  text-align: left;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .bottomDiv {
  width: 100%;
  text-align: center;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .bottomDiv .checkout-btn,
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .bottomDiv .product-btn,
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .bottomDiv .upsell-btn {
  width: 100%;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .bottomDiv .checkout-btn button,
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .bottomDiv .product-btn button,
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .bottomDiv .upsell-btn button {
  width: 100%;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .bottomDiv .checkout-btn,
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product .details .bottomDiv .upsell-btn {
  margin-bottom: 20px;
}
html body .page-content .crosssell-section .contentBox .crosssell-box .product-box.bestMar {
  margin-top: 3.5rem;
  margin-bottom: 4rem;
}
html body .page-content .crosssell-section .crossSlider {
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column;
  margin-top: 2rem;
}
html body .page-content .crosssell-section .crossSlider .crossLeft,
html body .page-content .crosssell-section .crossSlider .crossRight {
  font-family: "Font Awesome 5 Pro Light";
  position: absolute;
  top: 40%;
  left: -6rem;
  font-size: 3rem;
  opacity: 0.25;
  z-index: 99;
}
html body .page-content .crosssell-section .crossSlider .crossLeft:before,
html body .page-content .crosssell-section .crossSlider .crossRight:before {
  content: "\f137";
}
html body .page-content .crosssell-section .crossSlider .crossLeft:hover,
html body .page-content .crosssell-section .crossSlider .crossRight:hover {
  cursor: pointer;
}
html body .page-content .crosssell-section .crossSlider .crossRight {
  left: unset;
  right: -6rem;
}
html body .page-content .crosssell-section .crossSlider .crossRight:before {
  content: "\f138";
}
html body .page-content .crosssell-section .crossSlider .overflowBox {
  box-sizing: border-box;
  width: 1021px;
  padding: 50px 100px 120px 100px;
  overflow: hidden;
  position: relative;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts {
  width: 166%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50px;
  left: -33%;
  padding: 0 150px;
  box-sizing: border-box;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct {
  width: 17.5%;
  border-radius: 5px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .img-box {
  display: flex;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .details {
  padding: 24px;
  text-align: left;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .details .name-subline {
  font-family: "Titillium Web Bold";
  font-size: 14px;
  margin-top: 4px;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .details .description {
  margin-top: 24px;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .details .description p {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .upperDiv {
  padding-top: 2rem;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .bottomDiv .price-box {
  margin-bottom: 24px;
  font-size: 16.2px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  line-height: 1;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .bottomDiv .price-box .min {
  font-family: Open Sans;
  font-weight: 600;
  margin-right: 5px;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .bottomDiv .price-box .price {
  font-family: 'Titillium Web Bold';
  font-size: 36px;
  line-height: 0.8;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .bottomDiv .price-box .condition {
  font-family: Open Sans;
  font-weight: 600;
  margin-left: 12px;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .bottomDiv .price-box.slashed .slashedPrice {
  text-align: left;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .bottomDiv .checkout-btn,
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .bottomDiv .upsell-btn {
  margin-bottom: 20px;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct .bottomDiv button {
  width: 100%;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct.active {
  transform: scale(1.11);
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct.active.lfMd {
  -webkit-animation: left-to-middle 1s ease-in;
  animation: left-to-middle 1s ease-in;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct.active.rgMd {
  -webkit-animation: right-to-middle 1s ease-in;
  animation: right-to-middle 1s ease-in;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct.awLf {
  -webkit-animation: away-to-left 1s ease-in;
  animation: away-to-left 1s ease-in;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct.mdRg {
  -webkit-animation: middle-to-right 1s ease-in;
  animation: middle-to-right 1s ease-in;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct.rgAw {
  -webkit-animation: right-to-away 1s ease-in;
  animation: right-to-away 1s ease-in;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct.awRg {
  -webkit-animation: away-to-right 1s ease-in;
  animation: away-to-right 1s ease-in;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct.mdLf {
  -webkit-animation: middle-to-left 1s ease-in;
  animation: middle-to-left 1s ease-in;
}
html body .page-content .crosssell-section .crossSlider .overflowBox .crossProducts .crossProduct.lfAw {
  -webkit-animation: left-to-away 1s ease-in;
  animation: left-to-away 1s ease-in;
}
html body .page-content .crosssell-section .crossSlider .crossControls {
  display: flex;
  justify-content: center;
}
html body .page-content .crosssell-section .crossSlider .crossControls .crossControl {
  width: 10px;
  height: 10px;
  opacity: 0.1;
  background: #222;
  border-radius: 10px;
  margin: 0 8px;
}
html body .page-content .crosssell-section .crossSlider .crossControls .crossControl.active {
  opacity: 1;
}
html body .page-content .action-section .contentBox {
  display: flex;
  justify-content: space-between;
}
html body .page-content .action-section .contentBox .actionOne,
html body .page-content .action-section .contentBox .actionTwo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  text-align: left;
}
html body .page-content .action-section .contentBox .btn-row {
  margin-top: 24px;
}
html body .page-content .action-section .contentBox.pic .imageOne,
html body .page-content .action-section .contentBox.pic .imageTwo {
  width: 55%;
  display: flex;
}
html body .page-content .action-section .contentBox.pic .imageOne img,
html body .page-content .action-section .contentBox.pic .imageTwo img {
  width: 100%;
  object-fit: contain;
}
html body .page-content .action-section .contentBox.pic .actionOne,
html body .page-content .action-section .contentBox.pic .actionTwo {
  width: 40%;
  text-align: left;
}
html body .page-content .action-section .contentBox.both .actionOne,
html body .page-content .action-section .contentBox.both .actionTwo {
  width: 47.5%;
}
html body .page-content .action-section .contentBox.both .actionTwo {
  text-align: right;
}
html body .page-content .action-section .contentBox.both.pic .imageOne,
html body .page-content .action-section .contentBox.both.pic .imageTwo {
  width: 40%;
}
html body .page-content .action-section .contentBox.both.pic .actionOne,
html body .page-content .action-section .contentBox.both.pic .actionTwo {
  width: 25%;
}
html body .page-content .action-section .contentBox.both.pics .imageOne,
html body .page-content .action-section .contentBox.both.pics .imageTwo {
  width: 25%;
}
html body .page-content .action-section .contentBox.both.pics .actionOne,
html body .page-content .action-section .contentBox.both.pics .actionTwo {
  width: 20%;
}
html body .page-content .action-section .contentBox.both.pics .actionOne .level1--heading,
html body .page-content .action-section .contentBox.both.pics .actionTwo .level1--heading {
  font-size: 28px;
  line-height: 35px;
}
html body .page-content .action-section .contentBox.both.pics .actionOne .text p,
html body .page-content .action-section .contentBox.both.pics .actionTwo .text p {
  font-size: 15px;
  line-height: 27px;
}
html body.page-layout-start .page-content .plz-section {
  background: #f2f2f2;
  padding: 88px 0;
}
html body.page-layout-start .page-content .plz-section .contentBox .plz-box {
  text-align: left;
  width: 320px;
  margin: 0 auto;
  padding: 48px 32px;
}
html body.page-layout-start .page-content .plz-section .contentBox .plz-box .plz-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 0;
  margin-top: 24px;
}
html body.page-layout-start .page-content .plz-section .contentBox .plz-box .plz-form #plzNotice {
  margin-top: 16px;
}
html body.page-layout-start .page-content .plz-section .pva-choose-box {
  text-align: left;
  padding: 48px;
  width: 760px;
  border: unset;
}
html body.page-layout-start .page-content .plz-section .pva-choose-box .close-row {
  position: absolute;
  width: auto;
  top: 0;
  right: 0;
  margin: 10px 15px 0 0;
}
html body.page-layout-start .page-content .plz-section .pva-choose-box .close-row:hover {
  cursor: pointer;
}
html body.page-layout-start .page-content .plz-section .pva-choose-box .pva-choose {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body.page-layout-start .page-content .plz-section .pva-choose-box .pva-choose .pva-box {
  width: 30%;
}
html body.page-layout-start .page-content .plz-section .pva-choose-box .pva-choose .pva-box .pva {
  width: 100%;
  position: relative;
  padding-bottom: 33%;
  overflow: hidden;
}
html body.page-layout-start .page-content .plz-section .pva-choose-box .pva-choose .pva-box .pva .img-box {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body.page-layout-start .page-content .plz-section .pva-choose-box .pva-choose .pva-box .pva .img-box img {
  filter: grayscale(100%);
  opacity: 0.3;
  max-width: 200px;
}
html body.page-layout-start .page-content .plz-section .pva-choose-box .pva-choose .pva-box:hover {
  cursor: pointer;
}
html body.page-layout-start .page-content .plz-section .pva-choose-box .pva-choose .pva-box:hover .pva .img-box img {
  filter: unset;
  opacity: 1;
}
html body.page-layout-start .page-content .pva-section .contentBox .pva-choose {
  display: grid;
  padding: 0 128px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}
html body.page-layout-start .page-content .pva-section .contentBox .pva-choose li {
  margin: 0;
}
html body.page-layout-start .page-content .pva-section .contentBox .pva-choose .pva-box {
  width: 30%;
}
html body.page-layout-start .page-content .pva-section .contentBox .pva-choose .pva-box .pva {
  width: 100%;
  position: relative;
  padding-bottom: 33%;
  overflow: hidden;
}
html body.page-layout-start .page-content .pva-section .contentBox .pva-choose .pva-box .pva .img-box {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body.page-layout-start .page-content .pva-section .contentBox .pva-choose .pva-box .pva .img-box img {
  filter: grayscale(100%);
  opacity: 0.3;
  max-width: 200px;
}
html body.page-layout-start .page-content .pva-section .contentBox .pva-choose .pva-box:hover {
  cursor: pointer;
}
html body.page-layout-start .page-content .pva-section .contentBox .pva-choose .pva-box:hover .pva .img-box img {
  filter: unset;
  opacity: 1;
}
html body.page-layout-start .page-content .pva-section .contentBox .pva-choose-mobile {
  display: none;
  margin-top: 24px;
}
html body.page-layout-start .page-content .pva-section .contentBox .pva-choose-mobile .vrmSelect {
  margin-bottom: 24px;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox {
  padding: 0;
  box-sizing: border-box;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox .categories {
  display: flex;
  flex-wrap: wrap;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox .categories .category {
  display: flex;
  align-items: center;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox .categories .category .img-box {
  box-sizing: border-box;
  display: flex;
  width: 57.2%;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox .categories .category .img-box img {
  border-radius: 5px;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox .categories .category .text-box {
  box-sizing: border-box;
  width: 42.8%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 48px;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox .categories .category .text-box .category-name {
  padding-bottom: 16px;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox .categories .category .text-box .category-text {
  padding-bottom: 24px;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox .categories .category.text-right .img-box {
  order: 1;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox .categories .category.text-right .text-box {
  order: 2;
  padding-right: 0;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox .categories .category.text-left .img-box {
  order: 2;
}
html body.page-layout-ausgabe .page-content .category-section .contentBox .categories .category.text-left .text-box {
  order: 1;
  padding-left: 0;
}
html body.page-layout-ausgabe .page-content .additional-category-section .contentBox {
  display: flex;
  justify-content: space-between;
  padding: 0;
  box-sizing: border-box;
}
html body.page-layout-ausgabe .page-content .additional-category-section .contentBox .additional-category {
  width: 48.5%;
  background: #444444;
  color: #ffffff;
  box-sizing: border-box;
  padding: 24px 24px 32px 24px;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 40px 0 rgba(34, 34, 34, 0.1);
  transition: all 0.5s ease-in-out;
}
html body.page-layout-ausgabe .page-content .additional-category-section .contentBox .additional-category div,
html body.page-layout-ausgabe .page-content .additional-category-section .contentBox .additional-category p {
  color: inherit;
}
html body.page-layout-ausgabe .page-content .additional-category-section .contentBox .additional-category .level4--heading {
  margin-bottom: 4px;
}
html body.page-layout-ausgabe .page-content .additional-category-section .contentBox .additional-category .offer-btn {
  margin-top: 24px;
}
html body.page-layout-ausgabe .page-content .additional-category-section .contentBox .additional-category .offer-btn .button a {
  color: inherit;
}
html body.page-layout-kategorie .page-content .descrBox {
  margin: 88px auto 0;
  max-width: 944px;
}
html body.page-layout-kategorie .page-content .product-section .contentBox .product .img-box,
html body.page-layout-kategorie .page-content .product-section .contentBox .product .details {
  width: 50%;
}
html body.page-layout-kategorie .page-content .product-section .contentBox .product.text-left .details {
  padding-right: 64px;
  padding-left: 0;
}
html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box {
  display: flex;
  flex-direction: row;
}
html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box .advantages-image {
  display: flex;
  max-width: 430px;
}
html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box .advantages-image img {
  object-fit: contain;
}
html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box .features {
  text-align: left;
  padding-left: 88px;
}
html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box .features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box .features ul li {
  line-height: 1.8;
  margin-bottom: 32px;
}
html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box .features ul li .featureTitle {
  color: #222222;
  font-family: Titillium Web Bold;
  font-size: 20px;
  line-height: 25px;
  display: block;
  margin-bottom: 8px;
}
html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box .features ul li:last-child {
  margin-bottom: 0;
}
html body .banner-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
html body .banner-section .banner-box {
  display: flex;
}
html body .banner-section .banner-box .mobile-banner-image {
  display: none;
}
html body .banner-section .banner-box.absoluteBox {
  position: absolute;
  top: 0;
  left: 0;
}
html body .banner-section .banner-box img {
  width: 100vw;
}
html body .banner-section .headline-box {
  width: 100%;
  z-index: 1;
}
html body .banner-section .headline-box .contentBox {
  margin: 0 auto;
}
html body .banner-section .headline-box .contentBox h1 {
  padding-top: 88px;
}
html body .feature-section .contentBox {
  display: flex;
  flex-direction: column;
}
html body .feature-section .contentBox .advantageBox {
  display: flex;
  width: 100%;
}
html body .feature-section .contentBox .advantageBox .img-box {
  display: flex;
  width: 57.6%;
  align-items: flex-start;
  justify-content: center;
}
html body .feature-section .contentBox .advantageBox .img-box img {
  border-radius: 5px;
  object-fit: contain;
}
html body .feature-section .contentBox .advantageBox .img-box.only {
  width: 100%;
}
html body .feature-section .contentBox .advantageBox .text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 32px 48px 0 48px;
  box-sizing: border-box;
  width: 42.4%;
}
html body .feature-section .contentBox .advantageBox .text-box .adv-name {
  padding-bottom: 16px;
}
html body .feature-section .contentBox .advantageBox .text-box .adv-text {
  width: 100%;
}
html body .feature-section .contentBox .advantageBox .text-box .adv-text p {
  margin-bottom: 0;
}
html body .feature-section .contentBox .advantageBox .text-box .adv-text ul {
  padding-left: 1.5rem;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 0;
  -webkit-padding-start: 1.9rem;
}
html body .feature-section .contentBox .advantageBox .text-box.only {
  width: 100%;
}
html body .feature-section .contentBox .advantageBox:nth-child(odd) .img-box {
  order: 0;
}
html body .feature-section .contentBox .advantageBox:nth-child(odd) .text-box {
  padding-right: 0;
  order: 1;
}
html body .feature-section .contentBox .advantageBox:nth-child(odd) .text-box.only {
  padding: 0;
}
html body .feature-section .contentBox .advantageBox:nth-child(even) .img-box {
  order: 1;
}
html body .feature-section .contentBox .advantageBox:nth-child(even) .text-box {
  padding-left: 0;
  order: 0;
}
html body .feature-section .contentBox .advantageBox:nth-child(even) .text-box.only {
  padding: 0;
}
html body .add-text-section {
  padding-left: 32px;
  padding-right: 32px;
}
html body .add-text-section .level2--heading {
  margin-bottom: 16px;
}
/** für alle geräte bis 1023.98px (bis Tablets und Smartphones im Landscape-Modus)*/
@media only screen and (max-width: 1023.98px) {
  html body .banner-section .banner-box.absoluteBox {
    position: relative;
  }
  html body .banner-section .headline-box {
    padding-left: 32px;
    padding-right: 32px;
  }
  html body .banner-section .headline-box .contentBox h1 {
    padding-top: 88px;
  }
  html body .feature-section {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media only screen and (max-width: 991.98px) {
  html body .banner-section .banner-box .desktop-banner-image {
    display: none;
  }
  html body .banner-section .banner-box .mobile-banner-image {
    display: block;
  }
  html body .add-text-section .standard-paragraph p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
/** für alle Geräte bis 767.98px (bis zu kleinen Tablets/Phablets)*/
@media only screen and (max-width: 767.98px) {
  html body .feature-section .contentBox .advantageBox {
    flex-wrap: wrap;
  }
  html body .feature-section .contentBox .advantageBox .text-box {
    width: 100%;
    order: 1;
    padding: 24px 0 0;
  }
  html body .feature-section .contentBox .advantageBox:nth-child(2n) .img-box,
  html body .feature-section .contentBox .advantageBox:nth-child(2n+1) .img-box {
    width: 100%;
    order: 0;
  }
}
@media only screen and (max-width: 575.98px) {
  html body .banner-section .headline-box .contentBox h1 {
    padding-top: 48px;
  }
}
html body {
  /** LAYOUT KAMPAGNE - Unter Header */
}
html body.page-layout-campaign_2 .page-wrapper .page-content .bestseller-section {
  padding: 88px 0 0 0;
}
html body.page-layout-campaign_2 .page-wrapper .page-content .bestseller-section .product-box .product {
  margin-bottom: 32px;
}
/** explizit für Tablets und Smartphones im Landscape-Modus */
@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  html body.page-layout-campaign_2 .page-wrapper .page-content .products-section .contentBox .head-text {
    padding: 0 32px;
  }
}
/** für alle Geräte bis 767.98px (bis zu kleinen Tablets/Phablets)*/
@media only screen and (max-width: 767.98px) {
  html body.page-layout-campaign_2 .page-wrapper .page-footer {
    margin-top: 0;
  }
}
/** Smartphones */
/** kleine Smartphones bzw. schlanke (Iphone 5, Iphone X, Samsung Z Flip...) */
html body {
  /** LAYOUT KAMPAGNE - CLM */
}
html body.page-layout-campaign_3 .page-wrapper .page-content .head-section {
  padding-left: 32px;
  padding-right: 32px;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section {
  background: #f2f2f2;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content {
  max-width: 944px;
  margin: 0 auto;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .content-header {
  padding-bottom: 55px;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .content-header .level2--heading {
  margin-bottom: 16px;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .steps-box {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .steps-box .steps-lines {
  position: absolute;
  width: 100%;
  top: 37.5px;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .steps-box .steps-lines .line-row {
  display: flex;
  justify-content: space-between;
  padding: 0 21%;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .steps-box .steps-lines .line-row .line {
  border-bottom: 5px solid #000;
  border-radius: 5px;
  width: 42.5%;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .steps-box .steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .steps-box .steps .step {
  display: flex;
  flex-direction: column;
  width: 24.333%;
  margin: 0 4.5%;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .steps-box .steps .step:before {
  background: #000;
  border-radius: 100px;
  width: 75px;
  height: 75px;
  color: #fff;
  font-size: 50px;
  line-height: 75px;
  font-weight: 900;
  margin: 0 auto;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .steps-box .steps .step .headline {
  margin: 24px 0 16px 0;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .steps-box .steps .first:before {
  content: '1';
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .steps-box .steps .second:before {
  content: '2';
}
html body.page-layout-campaign_3 .page-wrapper .page-content .steps-section .steps-content .steps-box .steps .third:before {
  content: '3';
}
html body.page-layout-campaign_3 .page-wrapper .page-content .package-section .contentBox {
  display: flex;
  flex-direction: column;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .package-section .contentBox .level2--heading {
  margin-bottom: 12px;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .package-section .contentBox .packages {
  width: 100%;
  display: grid;
  box-sizing: border-box;
  padding-left: 32px;
  padding-right: 32px;
  grid-gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .package-section .contentBox .packages .packageBox {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 16px;
  border-radius: 5px;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .package-section .contentBox .packages .packageBox:hover,
html body.page-layout-campaign_3 .page-wrapper .page-content .package-section .contentBox .packages .packageBox.active {
  background: #FFFFFF;
  box-shadow: 0 8px 34px 0 rgba(34, 34, 34, 0.12);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .package-section .contentBox .packages .packageBox input {
  margin: 0 24px 0 0;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .package-section .contentBox .packages .packageBox .packageImage {
  max-width: 98px;
  margin: 0 24px 0 0;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .package-section .contentBox .packages .packageBox .packageText {
  text-align: left;
}
html body.page-layout-campaign_3 .page-wrapper .page-content .package-section .contentBox .packages .packageBox .packageText .packageName {
  font-size: 20px;
  line-height: 26px;
}
@media only screen and (max-width: 767.98px) {
  html body.page-layout-campaign_3 .page-wrapper .page-content .package-section .contentBox .packages {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
html body {
  /** LAYOUT E-MAGAZINE */
}
html body.page-layout-e_magazin .page-wrapper .page-content .overlay .login-box {
  padding: 48px;
  text-align: left;
  max-width: 320px;
}
html body.page-layout-e_magazin .page-wrapper .page-content .overlay .login-box #emaLoginForm {
  margin-top: 16px;
}
html body.page-layout-e_magazin .page-wrapper .page-content .description-section {
  text-align: left;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox {
  width: 100%;
  display: grid;
  grid-template-rows: 1fr;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox .magazine {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox .magazine .image {
  display: flex;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox .magazine .detailsBox .details .description,
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox .magazine .detailsBox .details .description p {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox .magazine .detailsBox .details .button {
  margin-top: 2rem;
  text-align: center;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 {
  grid-template-columns: 1fr;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 .magazine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 50%;
  margin: 0 auto;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 .magazine .detailsBox {
  padding: 0 0 0 32px;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 {
  grid-gap: 87px;
  grid-template-columns: 1fr 1fr;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 .magazine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 .magazine .detailsBox {
  padding: 0 0 0 32px;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 {
  grid-gap: 112px;
  grid-template-columns: 1fr 1fr 1fr;
}
html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 .magazine .image {
  margin-bottom: 8px;
}
html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section .contentBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 5px;
  box-shadow: 0 20px 40px 0 rgba(34, 34, 34, 0.3);
  -webkit-box-shadow: 0 20px 40px 0 rgba(34, 34, 34, 0.3);
}
html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section .contentBox .image {
  display: flex;
}
html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section .contentBox .image img {
  border-radius: 5px;
}
html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section .contentBox .detailsBox {
  display: flex;
  padding: 32px 32px 32px 88px;
}
html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section .contentBox .detailsBox .details {
  margin: auto;
  text-align: left;
}
html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section .contentBox .detailsBox .details .button {
  display: inline-flex;
  margin-top: 1rem;
}
/** explizit für Tablets und Smartphones im Landscape-Modus */
@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section {
    padding: 0 24px 64px;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox {
    max-width: unset;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 .magazine,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 .magazine,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 .magazine {
    display: flex;
    justify-content: unset;
    grid-template-columns: 1fr;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 .magazine:first-child,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 .magazine:first-child,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 .magazine:first-child {
    grid-column-start: 2;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 .magazine .detailsBox,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 .magazine .detailsBox,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 .magazine .detailsBox {
    padding: 0;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 .magazine .detailsBox .details .title,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 .magazine .detailsBox .details .title,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 .magazine .detailsBox .details .title {
    padding: 12px 0;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 48px;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 {
    grid-gap: 48px;
    grid-template-columns: 1fr 2fr 2fr 1fr;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section {
    padding: 0 24px 128px;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section .contentBox .detailsBox {
    padding: 32px 32px 32px 48px;
  }
}
/** für alle geräte bis 1023.98px (bis Tablets und Smartphones im Landscape-Modus)*/
/** für alle Geräte bis 767.98px (bis zu kleinen Tablets/Phablets)*/
@media only screen and (max-width: 767.98px) {
  html body.page-layout-e_magazin .page-wrapper .page-content .description-section {
    padding: 24px 32px 64px;
    text-align: center;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section {
    padding: 24px 32px 64px;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 48px;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 .magazine,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 .magazine,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 .magazine {
    display: flex;
    justify-content: unset;
    grid-template-columns: 1fr;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 .magazine .image,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 .magazine .image,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 .magazine .image {
    justify-content: center;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 .magazine .image img,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 .magazine .image img,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 .magazine .image img {
    max-width: 50%;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 .magazine .detailsBox,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 .magazine .detailsBox,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 .magazine .detailsBox {
    padding: 0;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1 .magazine .detailsBox .details .title,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2 .magazine .detailsBox .details .title,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 .magazine .detailsBox .details .title {
    padding: 12px 0;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section {
    padding: 24px 32px 64px;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section .contentBox {
    grid-template-columns: 1fr;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section .contentBox .image {
    justify-self: center;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .advantages-section .contentBox .detailsBox {
    padding: 12px 32px 32px;
  }
}
/** Smartphones */
@media only screen and (max-width: 575.98px) {
  html body.page-layout-e_magazin .page-wrapper .page-content .head-text {
    padding: 24px;
  }
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag1,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag2,
  html body.page-layout-e_magazin .page-wrapper .page-content .magazines-section .contentBox.mag3 {
    grid-template-columns: 1fr;
  }
}
/** kleine Smartphones bzw. schlanke (Iphone 5, Iphone X, Samsung Z Flip...) */
/*
 * @category  MSP
 * @editor    Tommy Köster
 * @copyright 2025 - MSP Medien Systempartner GmbH & Co. KG
 * @license   http://www.medien-systempartner.de/  Commercial
 * @link      www.medien-systempartner.de
 * @updated   02.05.25, 09:01
 */
/**
TODO:______________________________RESPONSIVE DESIGN -- RINGEL____________________________________________
*/
/** explizit für Tablets und Smartphones im Landscape-Modus */
@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  html body {
    /** Startseite*/
  }
  html body .page-wrapper .page-content .product-section .contentBox .product .img-box,
  html body .page-wrapper .page-content .product-section .contentBox .product .details {
    width: 50%;
  }
  html body .page-wrapper .page-content .product-section .contentBox .product .details {
    width: 50%;
    padding-right: 32px;
  }
  html body .page-wrapper .page-content .action-section .contentBox {
    flex-wrap: wrap;
    padding: 0 32px;
  }
  html body .page-wrapper .page-content .action-section .contentBox.both .actionOne,
  html body .page-wrapper .page-content .action-section .contentBox.both .actionTwo {
    width: 100%;
    margin-bottom: 24px;
  }
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .imageOne,
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .imageTwo {
    width: 100%;
    margin-bottom: 24px;
    justify-content: center;
  }
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .imageOne img,
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .imageTwo img {
    width: unset;
  }
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .actionOne,
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .actionTwo {
    width: 55%;
  }
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .imageOne,
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .imageTwo {
    width: 40%;
    margin-bottom: 24px;
  }
}
/** für alle geräte bis 1023.98px (bis Tablets und Smartphones im Landscape-Modus)*/
@media only screen and (max-width: 1023.98px) {
  html body {
    /** Kategorieseite **/
  }
  html body .page-wrapper .page-content {
    padding: 70px 0 0 0;
    /** Einstieg -> PVA-Auswahl */
  }
  html body .page-wrapper .page-content .pva-section .contentBox .pva-choose {
    padding: 0 32px;
  }
  html body .page-wrapper .page-content .pva-section .contentBox .pva-choose .pva-box .pva .img-box img {
    width: 95%;
  }
  html body .page-wrapper .page-content .crosssell-section .contentBox .crossSlider {
    overflow: hidden;
  }
  html body .page-wrapper .page-content .crosssell-section .contentBox .crossSlider .crossLeft {
    left: 1rem;
  }
  html body .page-wrapper .page-content .crosssell-section .contentBox .crossSlider .crossRight {
    right: 1rem;
  }
  html body.page-layout-kategorie .page-wrapper .page-content .products-section .contentBox .product {
    flex-direction: column;
  }
  html body.page-layout-kategorie .page-wrapper .page-content .products-section .contentBox .product.text-left {
    flex-direction: column-reverse;
  }
  html body.page-layout-kategorie .page-wrapper .page-content .products-section .contentBox .product .img-box {
    width: 100%;
  }
  html body.page-layout-kategorie .page-wrapper .page-content .products-section .contentBox .product.text-right .details,
  html body.page-layout-kategorie .page-wrapper .page-content .products-section .contentBox .product.text-left .details {
    width: 100%;
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 0;
  }
  html body.page-layout-kategorie .page-wrapper .page-content .products-section .contentBox .product.text-right .details form,
  html body.page-layout-kategorie .page-wrapper .page-content .products-section .contentBox .product.text-left .details form {
    width: 100%;
  }
  html body.page-layout-kategorie .page-wrapper .page-content .products-section .contentBox .product.text-right .details form .advantages ul,
  html body.page-layout-kategorie .page-wrapper .page-content .products-section .contentBox .product.text-left .details form .advantages ul {
    padding-left: 1.5rem;
  }
}
/** Inhalt Breakpoint */
@media only screen and (max-width: 944.98px) {
  html body .page-content .offer-section .contentBox .offer {
    border-radius: 0;
  }
  html body .page-content .offer-section.defPad,
  html body .page-content .offer-section.defPadTop {
    padding-top: 0;
  }
}
/** für alle Geräte bis 767.98px (bis zu kleinen Tablets/Phablets)*/
@media only screen and (max-width: 767.98px) {
  html body .page-wrapper .upsellBox {
    box-sizing: border-box;
    width: 90%;
    max-height: 85%;
    overflow-y: scroll;
    margin-top: 64px;
  }
  html body .page-wrapper .upsellBox .product {
    padding: 0;
  }
  html body .page-wrapper .upsellBox .product .img-box,
  html body .page-wrapper .upsellBox .product .details {
    width: 50%;
  }
  html body .page-wrapper .upsellBox .product .details {
    padding: 24px 32px 0;
  }
  html body .page-wrapper .upsellBox .product .details form .price-box {
    margin: 32px 0;
  }
  html body .page-wrapper .upsellBox .product .details .checkout-btn,
  html body .page-wrapper .upsellBox .product .details .checkout-btn button,
  html body .page-wrapper .upsellBox .product .details .product-btn,
  html body .page-wrapper .upsellBox .product .details .product-btn button,
  html body .page-wrapper .upsellBox .product .details .upsell-btn,
  html body .page-wrapper .upsellBox .product .details .upsell-btn button {
    width: 100%;
  }
  html body .page-wrapper .upsellBox .product .details .product-btn,
  html body .page-wrapper .upsellBox .product .details .checkout-btn.padTop {
    padding-top: 16px;
  }
  html body .page-wrapper .page-content {
    /** Startseite */
  }
  html body .page-wrapper .page-content .bestseller-box .product-box {
    padding-bottom: 64px;
  }
  html body .page-wrapper .page-content .bestseller-box .product-box.bestMar {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 48px;
  }
  html body .page-wrapper .page-content .bestseller-box .product-box,
  html body .page-wrapper .page-content .categories,
  html body .page-wrapper .page-content .additional-categories .contentBox {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding-left: 32px;
    padding-right: 32px;
    column-gap: 24px;
  }
  html body .page-wrapper .page-content .bestseller-box .product-box .product,
  html body .page-wrapper .page-content .categories .product,
  html body .page-wrapper .page-content .additional-categories .contentBox .product {
    flex: 0 0 90%;
  }
  html body .page-wrapper .page-content .bestseller-box .product-box .category,
  html body .page-wrapper .page-content .categories .category,
  html body .page-wrapper .page-content .additional-categories .contentBox .category,
  html body .page-wrapper .page-content .bestseller-box .product-box .additional-category,
  html body .page-wrapper .page-content .categories .additional-category,
  html body .page-wrapper .page-content .additional-categories .contentBox .additional-category {
    flex: 0 0 100%;
  }
  html body .page-wrapper .page-content .bestseller-box .product-box .product.single_product,
  html body .page-wrapper .page-content .categories .product.single_product,
  html body .page-wrapper .page-content .additional-categories .contentBox .product.single_product {
    /** TODO: 100% wenn nur ein Produkt */
    flex: 0 0 100%;
  }
  html body .page-wrapper .page-content .bestseller-box .product-box .product.bestseller,
  html body .page-wrapper .page-content .categories .product.bestseller,
  html body .page-wrapper .page-content .additional-categories .contentBox .product.bestseller {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
  }
  html body .page-wrapper .page-content .bestseller-box .product-box .category,
  html body .page-wrapper .page-content .categories .category,
  html body .page-wrapper .page-content .additional-categories .contentBox .category {
    flex-direction: column;
    border-radius: 1rem;
    box-shadow: 0 8px 34px 0 darkgray;
  }
  html body .page-wrapper .page-content .bestseller-box .product-box .category.text-left .img-box,
  html body .page-wrapper .page-content .categories .category.text-left .img-box,
  html body .page-wrapper .page-content .additional-categories .contentBox .category.text-left .img-box {
    order: 1;
  }
  html body .page-wrapper .page-content .bestseller-box .product-box .category.text-left .img-box img,
  html body .page-wrapper .page-content .categories .category.text-left .img-box img,
  html body .page-wrapper .page-content .additional-categories .contentBox .category.text-left .img-box img {
    width: 100%;
  }
  html body .page-wrapper .page-content .bestseller-box .product-box .category.text-right .img-box,
  html body .page-wrapper .page-content .categories .category.text-right .img-box,
  html body .page-wrapper .page-content .additional-categories .contentBox .category.text-right .img-box,
  html body .page-wrapper .page-content .bestseller-box .product-box .category.text-left .img-box,
  html body .page-wrapper .page-content .categories .category.text-left .img-box,
  html body .page-wrapper .page-content .additional-categories .contentBox .category.text-left .img-box,
  html body .page-wrapper .page-content .bestseller-box .product-box .category.text-right .text-box,
  html body .page-wrapper .page-content .categories .category.text-right .text-box,
  html body .page-wrapper .page-content .additional-categories .contentBox .category.text-right .text-box,
  html body .page-wrapper .page-content .bestseller-box .product-box .category.text-left .text-box,
  html body .page-wrapper .page-content .categories .category.text-left .text-box,
  html body .page-wrapper .page-content .additional-categories .contentBox .category.text-left .text-box {
    width: 100%;
  }
  html body .page-wrapper .page-content .bestseller-box .product-box .category.text-right .text-box,
  html body .page-wrapper .page-content .categories .category.text-right .text-box,
  html body .page-wrapper .page-content .additional-categories .contentBox .category.text-right .text-box,
  html body .page-wrapper .page-content .bestseller-box .product-box .category.text-left .text-box,
  html body .page-wrapper .page-content .categories .category.text-left .text-box,
  html body .page-wrapper .page-content .additional-categories .contentBox .category.text-left .text-box {
    padding: 32px;
  }
  html body .page-wrapper .page-content .product-section {
    padding: 0;
  }
  html body .page-wrapper .page-content .product-section .contentBox .product {
    padding: 0;
  }
  html body .page-wrapper .page-content .product-section .contentBox .product .img-box,
  html body .page-wrapper .page-content .product-section .contentBox .product .details {
    width: 50%;
  }
  html body .page-wrapper .page-content .product-section .contentBox .product .details {
    padding: 24px 32px 0;
  }
  html body .page-wrapper .page-content .product-section .contentBox .product .details form .price-box {
    margin: 32px 0;
  }
  html body .page-wrapper .page-content .product-section .contentBox .product .details .checkout-btn,
  html body .page-wrapper .page-content .product-section .contentBox .product .details .checkout-btn button,
  html body .page-wrapper .page-content .product-section .contentBox .product .details .product-btn,
  html body .page-wrapper .page-content .product-section .contentBox .product .details .product-btn button,
  html body .page-wrapper .page-content .product-section .contentBox .product .details .upsell-btn,
  html body .page-wrapper .page-content .product-section .contentBox .product .details .upsell-btn button {
    width: 100%;
  }
  html body .page-wrapper .page-content .product-section .contentBox .product .details .product-btn,
  html body .page-wrapper .page-content .product-section .contentBox .product .details .checkout-btn.padTop {
    padding-top: 16px;
  }
  html body .page-wrapper .page-content .category-section .contentBox .categories {
    flex-wrap: unset;
  }
  html body .page-wrapper .page-content .category-section .contentBox .categories .category .img-box {
    width: 100%;
  }
  html body .page-wrapper .page-content .category-section .contentBox .categories .category.text-left .text-box,
  html body .page-wrapper .page-content .category-section .contentBox .categories .category.text-right .text-box {
    width: 100%;
    padding: 48px 32px;
  }
  html body .page-wrapper .page-content .category-section.defPadTop {
    padding-bottom: 0;
  }
  html body .page-wrapper .page-content .category-section.defPadTop .contentBox .categories {
    padding-bottom: 48px;
  }
  html body .page-wrapper .page-content .additional-category-section.defPadTop {
    padding-top: 0;
  }
  html body .page-wrapper .page-content .additional-category-section.defPadTop .additional-categories .contentBox {
    padding-bottom: 48px;
  }
  html body .page-wrapper .page-content .trusted-section.mobilePadTop0 {
    padding-top: 0;
  }
  html body .page-wrapper .page-content .compare-box .product-box {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 0 32px 48px;
    grid-column-gap: 24px;
  }
  html body .page-wrapper .page-content .compare-box .product-box .product {
    width: auto;
    flex: 0 0 100%;
  }
  html body .page-wrapper .page-content .crosssell-section .contentBox .product.oneBox .img-box {
    width: auto;
  }
  html body .page-wrapper .page-content .crosssell-section .contentBox .product.oneBox .details {
    width: auto;
    padding: 0;
  }
  html body .page-wrapper .page-content .action-section .contentBox,
  html body .page-wrapper .page-content .action-section .contentBox.both,
  html body .page-wrapper .page-content .action-section .contentBox.both.pic,
  html body .page-wrapper .page-content .action-section .contentBox.both.pics {
    flex-direction: column;
  }
  html body .page-wrapper .page-content .action-section .contentBox .imageOne,
  html body .page-wrapper .page-content .action-section .contentBox.both .imageOne,
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .imageOne,
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .imageOne,
  html body .page-wrapper .page-content .action-section .contentBox .imageTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both .imageTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .imageTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .imageTwo {
    box-sizing: border-box;
    padding: 0 32px;
    width: 100%;
  }
  html body .page-wrapper .page-content .action-section .contentBox .actionOne,
  html body .page-wrapper .page-content .action-section .contentBox.both .actionOne,
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .actionOne,
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .actionOne,
  html body .page-wrapper .page-content .action-section .contentBox .actionTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both .actionTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .actionTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .actionTwo {
    box-sizing: border-box;
    padding: 32px;
    width: 100%;
  }
  html body .page-wrapper .page-content .action-section .contentBox .imageOne,
  html body .page-wrapper .page-content .action-section .contentBox.both .imageOne,
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .imageOne,
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .imageOne {
    order: 1;
  }
  html body .page-wrapper .page-content .action-section .contentBox .actionOne,
  html body .page-wrapper .page-content .action-section .contentBox.both .actionOne,
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .actionOne,
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .actionOne {
    order: 2;
  }
  html body .page-wrapper .page-content .action-section .contentBox .imageTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both .imageTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .imageTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .imageTwo {
    order: 3;
  }
  html body .page-wrapper .page-content .action-section .contentBox .actionTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both .actionTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both.pic .actionTwo,
  html body .page-wrapper .page-content .action-section .contentBox.both.pics .actionTwo {
    text-align: left;
    order: 4;
  }
  html body .page-wrapper .page-footer .copyright-box .footer-links {
    flex-wrap: wrap;
  }
  html body.page-layout-start .page-content .plz-section {
    padding: 0;
  }
  html body.page-layout-start .page-content .plz-section .contentBox .plz-box {
    width: auto;
  }
  html body.page-layout-start .page-content .plz-section .contentBox .plz-box .plz-form #checkPlz {
    width: 100%;
  }
  html body.page-layout-start .page-content .pva-section .contentBox {
    padding: 0 32px;
    text-align: left;
  }
  html body.page-layout-start .page-content .pva-section .contentBox .pva-choose {
    display: none;
  }
  html body.page-layout-start .page-content .pva-section .contentBox .pva-choose-mobile {
    display: block;
  }
  html body.page-layout-ausgabe .page-content .category-section .contentBox .categories .category.text-left .img-box {
    order: 1;
  }
  html body.page-layout-product .page-content .advantages-section {
    text-align: left;
  }
  html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box {
    flex-direction: column-reverse;
    padding-top: 0;
    align-items: center;
  }
  html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box .advantages-image {
    padding: 24px 32px 0;
  }
  html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box .features {
    padding: 0 32px;
  }
  html body.page-layout-product .page-content .advantages-section .contentBox .advantages-box .features ul li {
    margin-bottom: 24px;
  }
}
/** Smartphones */
@media only screen and (max-width: 575.98px) {
  html body {
    /** Kategorieseite **/
  }
  html body .page-wrapper .upsellBox {
    padding: 24px;
  }
  html body .page-wrapper .upsellBox .product .img-box {
    padding: 24px 0;
    width: 100%;
  }
  html body .page-wrapper .upsellBox .product .details {
    background-color: #ffffff;
    width: 100%;
  }
  html body .page-wrapper .upsellBox .product .details .vrmSelect label,
  html body .page-wrapper .upsellBox .product .details .vrmInput label {
    background: #ffffff;
  }
  html body .page-wrapper .page-content {
    /** Startseite*/
  }
  html body .page-wrapper .page-content .product-section .contentBox .product .img-box {
    padding: 24px 0;
    width: 100%;
  }
  html body .page-wrapper .page-content .product-section .contentBox .product .details {
    background-color: #ffffff;
    width: 100%;
  }
  html body .page-wrapper .page-content .product-section .contentBox .product .details .vrmSelect label,
  html body .page-wrapper .page-content .product-section .contentBox .product .details .vrmInput label {
    background: #ffffff;
  }
  html body .page-wrapper .page-content .category-section-intro {
    padding-left: 32px;
    padding-right: 32px;
  }
  html body .page-wrapper .page-content .crosssell-section .contentBox .crosssell-box .product-box {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
  }
  html body .page-wrapper .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product {
    margin-bottom: 24px;
  }
  html body .page-wrapper .page-content .crosssell-section .contentBox .crosssell-box .product-box.twoBox .product:last-child {
    margin-bottom: 0;
  }
  html body.page-layout-kategorie .page-content .descrBox {
    margin: 48px 32px 0;
  }
  html body.page-layout-kategorie .page-content .product-section {
    padding: 0 0 32px;
  }
  html body.page-layout-kategorie .page-content .product-section .contentBox .product {
    padding: 32px 0 0;
  }
  html body.page-layout-kategorie .page-content .product-section .contentBox .product .img-box {
    order: 0;
  }
  html body.page-layout-kategorie .page-content .product-section .contentBox .product .details {
    order: 1;
    padding: 32px;
  }
  html body.page-layout-kategorie .page-content .product-section .contentBox .product.text-left .details {
    padding: 32px;
  }
  html body .page-content .countdown-section .countdown-box .countdown #countdowntime {
    font-size: 3.5rem;
  }
  html body .page-content .countdown-section .countdown-box #abgelaufen {
    font-size: 1.5rem;
  }
  html body .page-content .countdown-section .countdown-box .countdown-text {
    font-size: 1.5rem;
  }
  html body .page-content .countdown-section .countdown-box .countdown-text > p {
    font-size: 1.5rem;
  }
}
/** kleine Smartphones bzw. schlanke (Iphone 5, Iphone X, Samsung Z Flip...) */
@media only screen and (max-width: 380px) {
  html body .page-wrapper .page-content .crosssell-section {
    padding: 48px 0;
  }
  html body .page-wrapper .page-content .crosssell-section .head-text {
    padding: 0;
  }
  html body .page-wrapper .page-content .crosssell-section .crossSlider .crossLeft,
  html body .page-wrapper .page-content .crosssell-section .crossSlider .crossRight {
    margin: 0 12px;
    left: 0;
  }
  html body .page-wrapper .page-content .crosssell-section .crossSlider .crossRight {
    left: unset;
    right: 0;
  }
  html body .page-wrapper .page-content .crosssell-section .crossSlider .overflowBox {
    width: 100%;
    padding: 0;
  }
  html body .page-wrapper .page-content .crosssell-section .crossSlider .overflowBox .crossProducts {
    width: 500%;
    padding: 0 200px;
    left: -200%;
  }
  html body .page-wrapper .page-content .countdown-section .countdown-box .countdown #countdowntime {
    font-size: 3rem;
  }
}
/** ___________________________________Ende Anpassungen -- RINGEL */
