@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-static-bg: #004560;
  --sw-static-dark: #002a3b;
  --sw-static-card: #005374;
  --sw-static-border: #34778f;
  --sw-static-text: #ffffff;
  --sw-static-yellow: #ffed00;
}

* {
  box-sizing: border-box;
}

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

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

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

body.page-spielerschutz #static-page-section {
  width: 100%;
  min-height: calc(100vh - 72px);
  background: var(--sw-static-bg);
  color: #fff;
}

body.page-spielerschutz #static-page-section > section.wrapper {
  box-sizing: border-box;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 10px 10px;
  position: relative;
  background-color: var(--sw-static-bg);
  text-align: left;
}

body.page-spielerschutz #static-page-section .top-info {
  padding-bottom: 20px;
}

body.page-spielerschutz #static-page-section h1,
body.page-spielerschutz #static-page-section h2,
body.page-spielerschutz #static-page-section h3,
body.page-spielerschutz #static-page-section p {
  margin-top: 0;
}

body.page-spielerschutz #static-page-section h1 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  text-transform: uppercase;
}

body.page-spielerschutz #static-page-section h2 {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700 !important;
  margin: 0 0 20px;
}

body.page-spielerschutz #static-page-section h3 {
  color: #004560;
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
  margin: 0 0 12px;
}

body.page-spielerschutz #static-page-section p {
  color: inherit;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0 0 20px;
}

body.page-spielerschutz #static-page-section ul,
body.page-spielerschutz #static-page-section ol {
  margin: 0 0 20px;
  padding-inline-start: 15px;
}

body.page-spielerschutz #static-page-section ul > li,
body.page-spielerschutz #static-page-section ol > li {
  color: inherit;
  font-size: 14px;
  line-height: 1.4;
  padding-bottom: 10px;
}

body.page-spielerschutz #static-page-section ul li:last-of-type,
body.page-spielerschutz #static-page-section ol li:last-of-type {
  padding-bottom: 0;
}

body.page-spielerschutz #static-page-section .margin-bottom {
  margin-bottom: 40px;
}

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

body.page-spielerschutz #static-page-section .method-list-3 .method-wrap:last-of-type {
  margin-bottom: 0;
}

body.page-spielerschutz #static-page-section .method-input {
  display: none;
}

body.page-spielerschutz #static-page-section .method-wrap label {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding: 15px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  user-select: none;
}

body.page-spielerschutz #static-page-section .method-wrap label > span:first-child {
  padding-right: 18px;
}

body.page-spielerschutz #static-page-section .method-wrap input:checked ~ label {
  border-bottom: none;
}

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

body.page-spielerschutz #static-page-section .method-input:checked ~ .item {
  grid-template-rows: 1fr;
}

body.page-spielerschutz #static-page-section .item-wrapper {
  min-height: 0;
  padding: 0 15px;
}

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

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

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

body.page-spielerschutz #static-page-section .box {
  padding: 20px;
  background-color: rgba(0, 69, 97, 0.1);
  margin-bottom: 30px;
  border-radius: 5px;
}

body.page-spielerschutz #static-page-section .box :last-child,
body.page-spielerschutz #static-page-section .box p {
  margin-bottom: 0 !important;
}

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

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

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

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

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

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

body.page-spielerschutz #static-page-section a {
  display: inline-block;
  color: var(--sw-static-yellow);
  text-decoration: underline;
  cursor: pointer;
  word-break: normal;
}

body.page-spielerschutz #static-page-section a:hover {
  color: #fff;
  text-decoration: none;
}

body.page-spielerschutz #static-page-section .item-wrapper a {
  color: unset;
  text-decoration: underline;
}

body.page-spielerschutz #static-page-section .item-wrapper a:hover {
  color: unset;
  text-decoration: none;
}

body.page-spielerschutz #static-page-section a.telephone {
  display: inline-block;
}

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

body.page-spielerschutz #static-page-section .left-bar,
body.page-spielerschutz #static-page-section .right-bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 8px;
  height: 2px;
  background-color: transparent;
  border-radius: 2px;
}

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

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

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

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

body.page-spielerschutz #footer-section {
  background: var(--sw-static-dark);
}

@media (min-width: 500px) {
  body.page-spielerschutz #static-page-section .flexer {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    gap: 20px;
  }

  body.page-spielerschutz #static-page-section .flexer > div {
    width: calc((100% - 20px) / 2);
  }
}

@media (min-width: 768px) {
  body.page-spielerschutz #static-page-section > section.wrapper {
    padding: 50px 10px 60px;
  }
}

@media (max-width: 1279px) {
  body.page-spielerschutz {
    padding-bottom: 55px;
  }
}
