/*
 * @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%;
}
html body pre {
  text-align: left;
}
html body .no-margin-bottom {
  margin: 0 !important;
}
html body .spinner {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.5);
  height: 44px;
  width: 100%;
}
html body .spinner > img {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000;
  width: 10%;
}
html body .cancelBox {
  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 .cancelBox .compare-box {
  z-index: 2;
  position: relative;
}
html body .cancelBox .compare-box .product-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 60px;
  padding: 0 12px;
}
html body .cancelBox .compare-box .product-box .product {
  text-align: left;
  overflow: hidden;
}
html body .cancelBox .compare-box .product-box .product form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
html body .cancelBox .compare-box .product-box .product form .upperDiv .img-box {
  display: flex;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
html body .cancelBox .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 .cancelBox .compare-box .product-box .product form .upperDiv .img-box img {
  margin-top: 3.5rem;
}
html body .cancelBox .compare-box .product-box .product form .upperDiv .details {
  padding: 16px 16px 32px 16px;
}
html body .cancelBox .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 .cancelBox .compare-box .product-box .product form .upperDiv .details .name.withsub {
  margin-bottom: 4px;
}
html body .cancelBox .compare-box .product-box .product form .upperDiv .details .name-subline {
  font-family: "Titillium Web Bold";
  font-size: 14px;
  margin-bottom: 24px;
}
html body .cancelBox .compare-box .product-box .product form .upperDiv .details .advantages {
  font-size: 13.5px;
}
html body .cancelBox .compare-box .product-box .product form .bottomDiv {
  padding: 0 16px 48px 16px;
}
html body .cancelBox .compare-box .product-box .product form .bottomDiv div .button {
  width: 100%;
  font-size: 14px;
  padding: 8px 24px;
}
html body .cancelBox .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 .cancelBox .compare-box .product-box .product form .bottomDiv .price-box .min {
  font-family: Open Sans;
  font-weight: 600;
  margin-right: 5px;
}
html body .cancelBox .compare-box .product-box .product form .bottomDiv .price-box .price {
  font-family: 'Titillium Web Bold';
  font-size: 36px;
  line-height: 0.8;
}
html body .cancelBox .compare-box .product-box .product form .bottomDiv .price-box .condition {
  font-family: Open Sans;
  font-weight: 600;
  margin-left: 12px;
}
html body .cancelBox .compare-box .product-box .product form .bottomDiv .checkout-btn {
  margin-bottom: 20px;
}
html body .cancelBox .compare-box .product-box .product form .bottomDiv .product-btn .button {
  padding: 8px 24px;
}
html body .cancelBox .compare-box .product-box .product.bestseller {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
html body .cancelBox .compare-box .product-box.twoBox {
  grid-template-columns: 1fr 1fr;
}
html body .cancelBox .compare-box .product-box.twoBox .product {
  width: 62%;
}
html body .cancelBox .compare-box .product-box.twoBox .product:first-child {
  justify-self: flex-end;
}
html body .cancelBox .compare-box .product-box.bestMar {
  margin-top: 3.5rem;
  margin-bottom: 4rem;
}
html body .cancelBox .submitServiceBtn.padTop {
  margin-top: 32px;
}
html body .vrmContent-wrapper {
  margin-bottom: 1rem;
}
html body .vrmContent-wrapper p {
  margin-bottom: 0;
}
html body .italic-paragraph {
  font-style: italic;
}
html body .backRow {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
html body .backRow a {
  color: #999999;
  padding-bottom: .5rem;
  border-bottom: 2px solid #999999;
  width: auto;
  font-weight: 600;
}
html body .backRow a:hover {
  text-decoration: none;
  color: #666666;
}
html body .site-link {
  color: #000;
  padding-bottom: 3px;
  border-bottom: 2.5px solid #000;
}
html body .site-link:hover {
  color: inherit;
  text-decoration: none;
}
html body .intro-section .registerBox .registerBtn {
  margin-bottom: 24px;
}
html body .intro-section .registerBox .loginLink {
  font-weight: 600;
  font-size: 1.6rem;
}
html body .kk-steps-section {
  background: #f2f2f2;
}
html body .kk-steps-section .kk-steps-content-box {
  max-width: 944px;
  margin: 0 auto;
}
html body .kk-steps-section .kk-steps-content-box .content-header {
  padding-bottom: 64px;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps {
  display: flex;
  justify-content: space-between;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps > div {
  width: 33.3%;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps .step {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-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 .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps .kk-content {
  margin: 0 4.5%;
  justify-content: center;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps .kk-content .headline {
  margin-bottom: 16px;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps .first .step:before {
  content: '1';
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps .second .step:before {
  content: '2';
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps .third .step:before {
  content: '3';
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps-lines {
  position: absolute;
  width: 100%;
  top: 37.5px;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps-lines .line-row {
  display: flex;
  justify-content: space-between;
  padding: 0 21%;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps-lines .line-row .line {
  border-bottom: 5px solid #000;
  border-radius: 5px;
  width: 42.5%;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-content .step {
  display: flex;
  flex-direction: column;
  width: 24.333%;
  margin: 0 4.5%;
}
html body .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-content .step .headline {
  margin: 24px 0 16px 0;
}
html body .services-section .service-headline {
  max-width: 944px;
  padding: 88px 0 32px 0;
  margin: 0 auto;
}
html body .services-section .services {
  max-width: 944px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body .services-section .services .service-part {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 24px;
}
html body .services-section .services .service-part .service-box {
  width: 49%;
  display: flex;
  padding: 24px 32px;
  margin-top: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
}
html body .services-section .services .service-part .service-box .service-icon {
  display: flex;
  margin-right: 20px;
  min-width: 110px;
  justify-content: center;
}
html body .services-section .services .service-part .service-box .service-icon:before {
  font-family: "Font Awesome 5 Pro Light";
  font-size: 60px;
  line-height: 60px;
}
html body .services-section .services .service-part .service-box .service-icon.bank:before {
  content: "\f09d";
}
html body .services-section .services .service-part .service-box .service-icon.holiday:before {
  content: "\f811";
}
html body .services-section .services .service-part .service-box .service-icon.complaint:before {
  content: "\f06a";
}
html body .services-section .services .service-part .service-box .service-icon.at:before {
  content: "\f1fa";
}
html body .services-section .services .service-part .service-box .service-icon.check-circle:before {
  content: "\f058";
}
html body .services-section .services .service-part .service-box .service-icon.frown:before {
  content: "\f119";
}
html body .services-section .services .service-part .service-box .service-icon.person-dolly:before {
  content: "\f4d0";
}
html body .services-section .services .service-part .service-box .service-icon.right-from-bracket:before {
  content: "\f2f5";
}
html body .services-section .services .service-part .service-box .service-icon.circle-info:before {
  content: "\f05a";
}
html body .services-section .services .service-part .service-box .service-icon.file-lines:before {
  content: "\f15c";
}
html body .services-section .services .service-part .service-box .service-icon.shield-check:before {
  content: "\f2f7";
}
html body .services-section .services .service-part .service-box .service-icon.message-xmark:before {
  content: "\f4ab";
}
html body .services-section .services .service-part .service-box .service-icon.address-card:before {
  content: "\f2bb";
}
html body .services-section .services .service-part .service-box .service-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}
html body .services-section .services .service-part .service-box .service-details .service-link {
  font-family: "Titillium Web Semi Bold";
  margin-top: 8px;
}
html body .services-section .services .offer-box {
  max-width: 944px;
  margin: 48px auto 48px;
  box-sizing: border-box;
}
html body .services-section .services .offer-box .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 .services-section .services .offer-box .offer div,
html body .services-section .services .offer-box .offer p {
  color: inherit;
}
html body .services-section .services .offer-box .offer .offer-btn {
  margin-top: 16px;
}
html body .services-section .services .offer-box .offer .offer-btn .button a {
  color: inherit;
}
html body .page-wrapper .page-content #services {
  max-width: 944px;
  margin: 64px auto 48px;
}
html body .page-wrapper .page-content #services .vrmCheckbox.checkbox {
  align-items: flex-start;
  flex-direction: column;
}
html body .page-wrapper .page-content #services .column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 24px;
  text-align: left;
}
html body .page-wrapper .page-content #services .column .servicesActionBox {
  width: 55%;
  border-right: 2px solid #f2f2f2;
  box-sizing: border-box;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .deliverynote {
  font-size: 1.1rem;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox {
  padding: 0 24px;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .serviceBox {
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  color: #999999;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .serviceBox .serviceInp {
  padding-right: 12px;
  width: 5%;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .serviceBox .serviceLabel {
  display: flex;
  flex-direction: column;
  padding-right: 12px;
  font-size: 1.2rem;
  width: 85%;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .serviceBox .serviceLabel label {
  font-family: "Titillium Web Semi Bold";
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .serviceBox .serviceLabel .moreInfo {
  margin-top: 12px;
  font-size: 1rem;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .serviceBox .serviceLabel .moreInfo:before {
  font-family: "Font Awesome 5 Pro Light";
  content: '\f05a';
  padding-right: 4px;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .serviceBox .serviceLabel .moreInfoText {
  display: none;
  margin-top: 1rem;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .serviceBox .serviceDataHeading {
  color: #999999;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2rem;
  margin-bottom: 0;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .serviceBox.active {
  color: #222222;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .serviceBox.active .serviceDataHeading {
  color: #222222;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .serviceBox:hover {
  cursor: pointer;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox #reviewForm {
  margin-bottom: 3rem;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox #reviewForm #review {
  display: flex;
  flex-wrap: wrap;
  background: #f2f2f2;
  padding-top: 24px;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox #reviewForm #review > div {
  padding: 0 24px;
  margin-bottom: 16px;
  box-sizing: border-box;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox #reviewForm #review .changeRow {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox #reviewForm #review .changeRow.edit .icon:after {
  content: '\f044';
  font-family: "Font Awesome 5 Pro Regular";
  color: #999999;
  cursor: pointer;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox #extraDelivery {
  flex-direction: column;
  flex-wrap: nowrap;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox #extraDelivery .radioOption {
  height: 100%;
  flex-wrap: nowrap;
  align-items: baseline;
  margin-bottom: 1rem;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox #extraDelivery .radioOption .outlineError ~ label {
  color: #f3381d;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .aloneCheckbox {
  margin: 12px 0 24px;
}
html body .page-wrapper .page-content #services .column .servicesActionBox #message {
  margin-bottom: 2rem;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .note {
  font-size: 1.2rem;
  line-height: 1.5;
}
html body .page-wrapper .page-content #services .column .servicesActionBox #pva-selection .vrmRadio .radioOption {
  height: inherit;
}
html body .page-wrapper .page-content #services .column .servicesActionBox #pva-selection .vrmRadio .radioOption label {
  margin-left: 0.5rem;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .deliverynote-wrapper {
  margin-bottom: 2rem;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .deliverynote-wrapper .deliverynote {
  line-height: 1.3;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .deliverynote-wrapper label {
  font-size: 1.2rem;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .btnRow {
  display: flex;
  flex-wrap: wrap;
}
html body .page-wrapper .page-content #services .column .servicesActionBox .btnRow a.button {
  text-align: center;
}
html body .page-wrapper .page-content #services .column .miniCart {
  width: 45%;
  padding: 0 24px;
  box-sizing: border-box;
}
html body .page-wrapper .page-content #services .column .miniCart #selectedService {
  margin-bottom: 16px;
}
html body .page-wrapper .page-content #services .column .miniCart #selectedService .smallTitle {
  font-style: italic;
  font-family: "Titillium Web Semi Bold";
  font-size: 1.2rem;
  margin-bottom: 12px;
}
html body .page-wrapper .page-content #services .column .miniCart #selectedService .selfServiceBox {
  display: flex;
  margin-bottom: 1rem;
}
html body .page-wrapper .page-content #services .column .miniCart #selectedService .selfServiceBox .selfServiceText {
  width: 90%;
}
html body .page-wrapper .page-content #services .column .miniCart #selectedService .selfServiceBox .selfServiceText .selfServiceName {
  font-family: "Titillium Web Bold";
}
html body .page-wrapper .page-content #services .column .miniCart #selectedService .selfServiceBox .selfServiceText .selfServiceTime {
  font-style: italic;
  font-size: 1.1rem;
}
html body .page-wrapper .page-content #services .column .miniCart #selectedService .selfServiceBox .selfServiceText .selfServiceCancel {
  text-decoration: underline;
  color: #222222;
}
html body .page-wrapper .page-content #services .column .miniCart #selectedService .selfServiceBox .selfServiceText .selfServiceCancel:hover {
  text-decoration: none;
}
html body .page-wrapper .page-content #services .column .miniCart .note .title {
  font-family: "Titillium Web Bold";
  margin-bottom: 12px;
}
html body .page-wrapper .page-content #services .column .miniCart .note ul {
  padding: 0;
  font-size: 1.2rem;
}
html body .page-wrapper .page-content #services .column .miniCart .note ul li {
  list-style: none;
}
html body .page-wrapper .page-content #services .column .miniCart .note ul li:before {
  font-family: 'Font Awesome 5 Pro Regular';
  font-weight: 900;
  content: '\f00c';
  margin-right: 8px;
}
html body .page-wrapper .page-content #services .cancellation-submit-message .outlineError,
html body .page-wrapper .page-content #services .cancellation-submit-message .outlineWarning,
html body .page-wrapper .page-content #services .cancellation-submit-message .outlineSuccess {
  margin-left: 72px;
  margin-right: 72px;
}
html body .page-wrapper .page-content #services .cancellation-submit-message .outlineError.datepicker,
html body .page-wrapper .page-content #services .cancellation-submit-message .outlineWarning.datepicker,
html body .page-wrapper .page-content #services .cancellation-submit-message .outlineSuccess.datepicker {
  margin-bottom: 0;
}
html body .page-wrapper .page-content #services .adressauswahl .outlineError {
  margin-bottom: 0;
}
html body .page-wrapper .page-content #services .adressauswahl {
  margin-top: 1.6rem;
}
html body .page-wrapper .page-content #services.service-form .radio-headline {
  margin-bottom: 0;
}
html body .page-wrapper .page-content #services.service-form #cancellation_reason_headline {
  margin-top: 2rem;
}
html body .page-wrapper .page-content #services.service-form .column {
  flex-direction: column;
}
html body .page-wrapper .page-content #services.service-form #formBox {
  margin-bottom: 4rem;
}
html body .page-wrapper .page-content #services.service-form .servicesActionBox {
  width: 100%;
  border-right: none;
}
html body .page-wrapper .page-content #services.service-form .servicesActionBox .servicesContentBox .serviceBox {
  padding: 0;
  margin-bottom: 0.5rem;
}
html body .page-wrapper .page-content #services.service-form .servicesActionBox .servicesContentBox .serviceBox input[type="radio"] {
  margin-top: 0.5rem;
}
html body .page-wrapper .page-content #services.service-form .servicesActionBox .servicesContentBox .serviceBox label {
  font-size: 1.5rem;
}
html body .page-wrapper .page-content #services.service-form .servicesActionBox .servicesContentBox .serviceBox label:hover {
  cursor: pointer;
}
html body .page-wrapper .page-content #services.service-form .miniCart {
  width: 100%;
  margin-top: 4rem;
}
html body .page-wrapper .page-content #services .input-note {
  color: #222222;
  font-family: "Open Sans";
  font-size: 10px;
  line-height: 27px;
}
html body .page-wrapper .page-content p.overview-element {
  font-size: 1.2rem;
  line-height: inherit;
  margin: 0;
  width: 100%;
}
html body .bankDataAbos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body .bankDataAbos label {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #666666;
  padding: 1rem;
  border-radius: 4.5px;
  box-sizing: border-box;
  margin-bottom: 2rem;
}
html body .bankDataAbos label.wd-50 {
  width: 100%;
}
html body .bankDataAbos label p {
  font-size: 14px;
  line-height: 24px;
}
html body .subPart {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  html body .page-wrapper .page-content .intro-section {
    padding-right: 32px;
    padding-left: 32px;
  }
  html body .page-wrapper .page-content .intro-section .contentBox {
    padding: 0;
  }
  html body .page-wrapper .page-content .intro-section .contentBox .registerBox {
    margin-bottom: 5px;
  }
  html body .page-wrapper .page-content .intro-section .contentBox .registerBox .registerBtn #register {
    width: 100%;
  }
  html body .page-wrapper .page-content .kk-steps-section {
    padding-right: 32px;
    padding-left: 32px;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .content-header {
    padding-bottom: 48px;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .content-header .subhead {
    margin-top: 12px;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .kk-steps-box {
    display: flex;
    justify-content: space-between;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps-lines {
    height: 70%;
    z-index: 0;
    top: 15%;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps-lines .line-row {
    height: 100%;
    flex-direction: column;
    padding: 0 7.5%;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps-lines .line-row .line {
    border-left: 2.5px solid #000;
    border-right: 2.5px solid #000;
    border-bottom: unset;
    height: 100%;
    width: 0;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps-lines .line-row .line:nth-child(2) {
    display: none;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps {
    flex-wrap: wrap;
    z-index: 1;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps > div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 32px;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps > div:last-child {
    padding-bottom: 0;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps .step {
    width: 16%;
    margin: 0;
    justify-content: center;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps .step:before {
    width: 12.5vw;
    height: 12.5vw;
    line-height: 12.5vw;
    font-size: 8vw;
    outline: 3px solid #f2f2f2;
  }
  html body .page-wrapper .page-content .kk-steps-section .kk-steps-content-box .kk-steps-box .kk-steps .kk-content {
    width: 78%;
    text-align: left;
    margin: 0;
    justify-content: unset;
  }
  html body .page-wrapper .page-content .services-section .service-headline {
    padding: 88px 32px 32px;
  }
  html body .page-wrapper .page-content .services-section .services .service-part {
    flex-direction: column;
    padding: 0 32px;
  }
  html body .page-wrapper .page-content .services-section .services .service-part .service-box {
    align-items: center;
    flex-direction: column;
    margin: 0;
    width: auto;
    padding: 32px 0;
    border-bottom: 2px solid #f2f2f2;
  }
  html body .page-wrapper .page-content .services-section .services .service-part .service-box:first-child {
    padding-top: 0;
  }
  html body .page-wrapper .page-content .services-section .services .service-part .service-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  html body .page-wrapper .page-content .services-section .services .service-part .service-box .service-icon {
    margin: 0 0 16px;
  }
  html body .page-wrapper .page-content .services-section .services .service-part .service-box .service-icon:before {
    font-size: 48px;
    line-height: 48px;
  }
  html body .page-wrapper .page-content .services-section .services .service-part .service-box .service-details {
    text-align: center;
  }
  html body .page-wrapper .page-content .services-section .services .service-part .service-box .service-details .service-title {
    margin-bottom: 8px;
  }
  html body .page-wrapper .page-content .services-section .services .service-part .service-box .service-details .service-link {
    margin: 12px 0 8px;
  }
  html body .page-wrapper .page-content .services-section .services .offer-box .offer {
    border-radius: unset;
  }
  html body .page-wrapper .page-content #services {
    margin: 0 0 64px;
  }
  html body .page-wrapper .page-content #services .column {
    padding: 0 32px;
  }
  html body .page-wrapper .page-content #services .column .servicesActionBox {
    width: 100%;
    border-right: none;
    order: 2;
    margin-top: 32px;
  }
  html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox {
    padding: 0;
  }
  html body .page-wrapper .page-content #services .column .servicesActionBox .servicesContentBox .progressBar {
    margin-bottom: 32px;
  }
  html body .page-wrapper .page-content #services .column .miniCart {
    width: 100%;
    border-right: none;
    order: 1;
    padding: 24px 0 32px;
    border-bottom: 2px solid #f2f2f2;
  }
  html body .page-wrapper .page-content #services .column .miniCart #selectedService {
    margin: 0;
  }
  html body .page-wrapper .page-content #services .column .miniCart .note ul {
    margin: 0;
  }
  html body .page-wrapper .page-content #services[data-id="termination"] .column .servicesActionBox {
    order: 1;
  }
  html body .page-wrapper .page-content #services[data-id="termination"] .column .miniCart {
    border-bottom: unset;
    border-top: 2px solid #f2f2f2;
  }
  html body .page-wrapper .cancelBox {
    box-sizing: border-box;
    width: 90%;
    max-height: 85%;
    overflow-y: scroll;
    margin-top: 64px;
    padding: 24px 0;
  }
  html body .page-wrapper .cancelBox .cancelHeadline {
    padding: 0 3rem;
  }
  html body .page-wrapper .cancelBox .compare-box .product-box {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 0 32px 48px;
    grid-column-gap: 24px;
  }
  html body .page-wrapper .cancelBox .compare-box .product-box .product {
    width: auto;
    flex: 0 0 100%;
  }
  html body .page-wrapper .cancelBox .submitServiceBtn {
    text-align: center;
  }
}
