@font-face {
  font-family: "Roboto Condensed";
  src: url("/fonts/RobotoCondensed-Regular.woff2") format("woff2"), url("/assets/Fonts/RobotoCondensed-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("/fonts/RobotoCondensed-Bold.woff2") format("woff2"), url("/assets/Fonts/RobotoCondensed-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --sw-help-bg: #004560;
  --sw-help-dark: #002a3b;
  --sw-help-panel: #005374;
  --sw-help-border: rgb(52, 119, 143);
  --sw-help-yellow: #ffed00;
  --sw-help-text: #ffffff;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--sw-help-bg);
  color: var(--sw-help-text);
  font-family: "Roboto Condensed", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.page-hilfe {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--sw-help-bg);
}

body.page-hilfe,
body.page-hilfe button,
body.page-hilfe input,
body.page-hilfe select,
body.page-hilfe textarea {
  font-family: "Roboto Condensed", Arial, sans-serif;
}

body.page-hilfe #static_holder {
  display: block;
  width: 100%;
  min-height: 1px;
  overflow-x: hidden;
  background: var(--sw-help-bg);
  color: var(--sw-help-text);
}

body.page-hilfe #static-page-section,
body.page-hilfe #static-page-help {
  display: block;
  width: 100%;
  background: var(--sw-help-bg);
  color: var(--sw-help-text);
}

body.page-hilfe #static-page-help {
  padding-bottom: 90px;
}

body.page-hilfe #static-page-help *,
body.page-hilfe #static-page-help *::before,
body.page-hilfe #static-page-help *::after {
  box-sizing: border-box;
}

body.page-hilfe #static-page-help a {
  color: var(--sw-help-yellow);
  text-decoration: underline;
  word-break: break-word;
}

body.page-hilfe #static-page-help a:hover,
body.page-hilfe #static-page-help a:focus {
  color: #fff;
  text-decoration: none;
}

body.page-hilfe #static-page-help ol,
body.page-hilfe #static-page-help ul {
  padding-left: 1em;
}

body.page-hilfe #static-page-help .wrapper {
  box-sizing: border-box;
  max-width: 600px;
  width: calc(100% - 20px);
  height: 100%;
  margin: auto;
  text-align: left;
  padding-bottom: 10px;
}

body.page-hilfe #static-page-help .top-info {
  padding-top: 30px;
  padding-bottom: 20px;
  color: #fff;
}

body.page-hilfe #static-page-help .wrapper h1 {
  font-size: 30px;
  line-height: 38px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-hilfe #static-page-help h2 {
  font-weight: 700 !important;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 26px;
}

body.page-hilfe #static-page-help .margin-bottom {
  margin-bottom: 40px;
}

body.page-hilfe #static-page-help .method-wrap {
  background-color: var(--sw-help-panel);
  margin-bottom: 20px;
  border: 1px solid var(--sw-help-border);
  border-radius: 3px;
  overflow: hidden;
}

body.page-hilfe #static-page-help .method-list-3 .method-wrap:last-of-type,
body.page-hilfe #static-page-help .method-list-4 .method-wrap:last-of-type,
body.page-hilfe #static-page-help .method-list .method-wrap:last-of-type,
body.page-hilfe #static-page-help .method-list-2 .method-wrap:last-of-type {
  margin-bottom: 0;
}

body.page-hilfe #static-page-help .method-input,
body.page-hilfe #static-page-help .wrapper input {
  display: none;
}

body.page-hilfe #static-page-help .method-wrap label {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  width: calc(100% - 30px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px;
  color: #fff;
  cursor: pointer;
  min-height: 50px;
}

body.page-hilfe #static-page-help .method-wrap label span:first-child {
  display: block;
}

body.page-hilfe #static-page-help .item {
  overflow: hidden;
  position: relative;
  background-color: #fff;
  color: #004560;
  display: grid;
  transition: grid-template-rows 0.3s ease;
  grid-template-rows: 0fr;
  max-height: initial;
}

body.page-hilfe #static-page-help input:checked ~ div.item {
  grid-template-rows: 1fr;
  max-height: initial;
}

body.page-hilfe #static-page-help .item .item-wrapper {
  padding: 0 15px;
  min-height: 0;
  overflow: hidden;
}

body.page-hilfe #static-page-help .item .item-wrapper p,
body.page-hilfe #static-page-help .item .item-wrapper ul,
body.page-hilfe #static-page-help .item .item-wrapper ol {
  margin: 0 0 20px;
  line-height: 1.45em;
}

body.page-hilfe #static-page-help .item .item-wrapper > :last-child,
body.page-hilfe #static-page-help .item .item-wrapper .detailed-info > :last-child {
  margin-bottom: 0;
}

body.page-hilfe #static-page-help .item .item-wrapper ul li,
body.page-hilfe #static-page-help .item .item-wrapper ol li {
  margin-bottom: 20px;
  line-height: 1.45em;
}

body.page-hilfe #static-page-help .item .item-wrapper ul li:last-of-type,
body.page-hilfe #static-page-help .item .item-wrapper ol li:last-of-type {
  margin-bottom: 0;
}

body.page-hilfe #static-page-help .detailed-info {
  padding: 20px 0;
}

body.page-hilfe #static-page-help .general-info {
  display: grid;
  grid-template-columns: 100px 100px;
  margin: 15px;
}

body.page-hilfe #static-page-help .general-info div {
  padding-bottom: 10px;
}

body.page-hilfe #static-page-help .line {
  display: block;
  height: 1px;
  background: rgba(0, 69, 96, 0.3);
  margin-bottom: 20px;
}

body.page-hilfe #static-page-help .footer-img {
  display: none;
}

body.page-hilfe #static-page-help .payment-img {
  max-width: 100px;
  height: 40px;
  margin: 5px 0;
}

body.page-hilfe #static-page-help .arrow {
  height: 0;
  width: 0;
  display: block;
  position: relative;
  border-radius: 4px;
  right: 10px;
  top: -2px;
}

body.page-hilfe #static-page-help .left-bar,
body.page-hilfe #static-page-help .right-bar {
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  width: 8px;
  height: 2px;
  display: block;
  transform: rotate(0deg);
  float: right;
  border-radius: 2px;
}

body.page-hilfe #static-page-help .left-bar::after,
body.page-hilfe #static-page-help .right-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

body.page-hilfe #static-page-help .left-bar::after {
  transform: rotate(0deg);
}

body.page-hilfe #static-page-help .right-bar::after {
  transform: rotate(-90deg);
}

body.page-hilfe #static-page-help input:checked ~ label .left-bar::after,
body.page-hilfe #static-page-help input:checked ~ label .right-bar::after {
  transform-origin: center center;
  transform: rotate(-180deg);
}

body.page-hilfe #static-page-help div.information {
  background: #fff;
  color: #004560;
  padding: 15px;
}

body.page-hilfe #static-page-help div.information p,
body.page-hilfe #static-page-help div.information ul {
  margin: 0 0 15px;
  line-height: 1.45em;
}

body.page-hilfe #static-page-help div.information > :last-child {
  margin-bottom: 0;
}

body.page-hilfe #static-page-help div.information ul li {
  margin-bottom: 15px;
}

body.page-hilfe #static-page-help div.information ul li:last-of-type {
  margin-bottom: 0;
}

body.page-hilfe #static-page-help #lugas-faq {
  scroll-margin-top: 80px;
}

body.page-hilfe #footer-section {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  body.page-hilfe #static-page-help .wrapper {
    padding-bottom: 60px;
  }

  body.page-hilfe #static-page-help .top-info {
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  body.page-hilfe #static-page-help {
    padding-bottom: 60px;
  }

  body.page-hilfe #static-page-help .wrapper {
    width: calc(100% - 20px);
  }

  body.page-hilfe #static-page-help .method-wrap label {
    font-size: 16px;
    line-height: 20px;
    padding: 15px;
  }
}
