* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

svg,
img {
  width: 100%;
  display: block;
  vertical-align: middle;
}

:root {
  --xWidth: 25em;
  --shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
      rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  --focus: 0 0 0 0.2rem rgba(250, 53, 15, 0.25);
  --hr-color: #fa350f;
  --hr-style: solid;
  --hr-width: 2px;
}

.as {
  display: flex;
  flex-direction: column;
  place-items: center;
  min-width: 320px;
  min-height: 71vh;
  overflow-x: hidden;
  padding: 5rem 0;
  position: relative;
  mix-blend-mode: multiply;
  background-image: url("../images/1133128135.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
}
.as .x {
  position: absolute;
  top: 0;
  left: 15%;
  background-color: #fa350f;
  width: 20vw;
  min-width: 300px;
  height: 100%;
  transform-origin: 0% 100%;
  transform: skewX(-43deg);
  z-index: -1;
  mix-blend-mode: multiply;
}
.as #root {
  box-shadow: var(--shadow);
}
.as .disclaimer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
}
.as .disclaimer.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.as .disclaimer {
  padding: 3em 4rem;
  font-size: 1rem;
  line-height: 1.3;
}
.as .disclaimer .disclaimer-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3333333333);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.as .disclaimer .disclaimer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.as .disclaimer .disclaimer-close:focus,
.as .disclaimer .disclaimer-close:hover {
  color: #FA350F;
}
.as .disclaimer .disclaimer-content {
  position: absolute;
  text-align: center;
  max-width: 600px;
  background-color: #fff;
  padding: 3em 4rem;
}
.as .disclaimer span {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1em;
}

.bs {
  display: flex;
  place-items: center;
  min-width: 320px;
  height: 80vh;
  overflow-x: hidden;
  padding: 0 2rem;
  position: relative;
  mix-blend-mode: multiply;
  background-image: url("../images/1133128135.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bs .x {
  position: absolute;
  top: 0;
  left: 15%;
  background-color: #fa350f;
  width: 20vw;
  height: 100%;
  transform-origin: 0% 100%;
  transform: skewX(-43deg);
  z-index: -1;
  mix-blend-mode: multiply;
}
.bs .login {
  margin: 0 auto;
  padding: 3rem 3rem;
  background-color: #fff;
  width: 20%;
  box-shadow: var(--shadow);
}

#root {
  margin: 0 auto;
  padding: 2rem 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  #root {
    padding: 2rem 2rem;
  }
}
#root h3 {
  border-top: var(--hr-width) var(--hr-style) var(--hr-color);
  margin-bottom: 1rem;
  padding-top: 1rem;
  font-size: 2rem;
}
#root h3:not(:first-child) {
  margin-top: 3rem;
}
#root h3:first-child {
  margin-top: 0;
  border-top: none;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FA350f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1em;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  background-color: #fff;
  border: 1px solid #cbcbcb;
  border-radius: 0;
  padding-right: 2.5rem;
  width: 100%;
}
select:focus {
  border-color: #fa350f;
  outline: 0;
  box-shadow: var(--focus);
}
select:hover {
  border-color: #fa350f;
}

input[type=radio] {
  appearance: none;
  background-color: #fff;
  margin: 0;
  margin-top: 0.65em;
  width: 1.5em;
  height: 1.5em;
  border: 2px solid #cbcbcb;
  border-radius: 50%;
  display: grid;
  place-content: center;
  cursor: pointer;
  accent-color: #fa350f;
}
input[type=radio]::before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.15s ease-in-out;
  background-color: #fa350f;
}
input[type=radio]:checked::before {
  transform: scale(1);
}
input[type=radio]:hover {
  border-color: #fa350f;
}
input[type=radio]:focus {
  outline: 2px solid rgba(250, 53, 15, 0.25);
  outline-offset: 2px;
}

input[type=checkbox] {
  appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #cbcbcb;
  border-radius: 0;
  display: grid;
  place-content: center;
  margin-top: 0.15em;
  cursor: pointer;
}
input[type=checkbox]:checked {
  border-color: #fa350f;
  background-color: #fa350f;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 1rem;
  background-position: center;
  background-repeat: no-repeat;
}
input[type=checkbox]:checked::before {
  display: none;
}
input[type=checkbox]:hover {
  border-color: #fa350f;
}
input[type=checkbox]:focus {
  outline: 2px solid rgba(250, 53, 15, 0.25);
  outline-offset: 2px;
}

input {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #cbcbcb;
  border-radius: 0;
  box-shadow: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  caret-color: var(--primary);
  accent-color: var(--primary);
  width: 100%;
}

input:focus-visible {
  border-color: #fa350f;
  outline: 0;
  box-shadow: var(--focus);
  color: #222;
  background-color: #fff;
  border-color: #fd9e8c;
}

label {
  font-weight: 700;
  margin-bottom: 0.15rem;
}

a {
  cursor: pointer;
}

button {
  border: 1px solid transparent;
  padding: 0.55em 1.25em;
  font-size: 1em;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-shadow: 0;
  color: #fff;
  background-color: #fa350f;
}

button:disabled {
  background-color: #ccc;
  pointer-events: none;
  cursor: not-allowed;
}

button:hover {
  color: #fff;
  background-color: #de2805;
  border-color: #d22604;
}

button:focus,
button:focus-visible {
  outline: 0;
  box-shadow: var(--focus);
}

div [class*=auftragsstrecke-two-inputs] {
  display: flex;
  gap: 1rem;
}

div [class*=auftragsstrecke-two-inputs] > * {
  width: 50%;
}

div [class*=auftragsstrecke-row] > label {
  margin-top: 0.75em;
}

div [class*=auftragsstrecke-row-tarif] {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
div [class*=auftragsstrecke-row-tarif] label {
  margin-top: 0;
}

.auftragsstrecke-row-abweichende-rechnungsadresse {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.auftragsstrecke-label-radio-zahlungsinformationen div:not(:first-child) {
  margin-left: 1rem;
  font-weight: 400;
  font-size: 0.85rem;
  margin-top: 0.5em;
}

.auftragsstrecke-tarif-waehlen-btn {
  margin: 2rem auto 0 auto;
  display: block;
}

.auftragsstrecke-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .auftragsstrecke-container {
    padding: 0 2rem;
  }
}

.auftragsstrecke-error ~ div {
  font-size: 0.6rem;
}

div [class*=auftragsstrecke-input-error-container] > [class*=Error-] {
  color: red;
  font-size: 0.6rem;
}

.auftragsstrecke-row-zahlungsinformationen {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.auftragsstrecke-beschaffungskosten-grundpreis,
.auftragsstrecke-beschaffungskosten-arbeitspreis {
  margin-bottom: 1em;
  width: 100%;
  border-top: 1px dashed #ccc;
}
.auftragsstrecke-beschaffungskosten-grundpreis > div:nth-of-type(1),
.auftragsstrecke-beschaffungskosten-arbeitspreis > div:nth-of-type(1) {
  padding-top: 1em !important;
}

.auftragsstrecke-beschaffungskosten-arbeitspreis div,
.auftragsstrecke-beschaffungskosten-grundpreis div {
  font-size: 0.7rem;
  gap: 0.5em;
}
.auftragsstrecke-beschaffungskosten-arbeitspreis div > div,
.auftragsstrecke-beschaffungskosten-grundpreis div > div {
  padding: 0 0.5em !important;
  margin-right: 2.5rem;
}
.auftragsstrecke-beschaffungskosten-arbeitspreis div label,
.auftragsstrecke-beschaffungskosten-grundpreis div label {
  padding: 0;
  margin: 0;
  margin-top: 0;
  font-weight: 400;
}

.auftragsstrecke-row-tarif-brutto-jahresverbrauchspreis div {
  color: #bbb;
  margin-right: 2.5rem;
}

.auftragsstrecke-tarifkachel {
  border: 1px solid #ccc;
  display: flex;
  padding: 2rem 2rem;
  flex-wrap: wrap;
  width: 100%;
  width: 80%;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}
.auftragsstrecke-tarifkachel .auftragsstrecke-tarif-name {
  font-size: 2rem;
  font-family: "Univers Condensed";
  width: 100%;
  white-space: nowrap;
  font-weight: 700;
}
.auftragsstrecke-tarifkachel .auftragsstrecke-row-tarif-grundpreis,
.auftragsstrecke-tarifkachel .auftragsstrecke-row-tarif-arbeitspreis {
  width: 100%;
  justify-content: flex-start;
}
.auftragsstrecke-tarifkachel .auftragsstrecke-row-tarif-grundpreis div,
.auftragsstrecke-tarifkachel .auftragsstrecke-row-tarif-arbeitspreis div {
  margin-left: auto;
}
.auftragsstrecke-tarifkachel .auftragsstrecke-row-tarif-grundpreis svg,
.auftragsstrecke-tarifkachel .auftragsstrecke-row-tarif-arbeitspreis svg {
  width: 1.25em;
  stroke: #ccc;
}
.auftragsstrecke-tarifkachel .auftragsstrecke-row-tarif-grundpreis label,
.auftragsstrecke-tarifkachel .auftragsstrecke-row-tarif-arbeitspreis label {
  font-weight: 400 !important;
}
.auftragsstrecke-tarifkachel .auftragsstrecke-tarif-beschreibung ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 2rem;
}
.auftragsstrecke-tarifkachel .auftragsstrecke-tarif-beschreibung ul li {
  margin-left: 0em;
}
.auftragsstrecke-tarifkachel .auftragsstrecke-tarif-beschreibung {
  font-size: clamp(1rem, 0.5vw, 1.25rem);
  font-weight: 400;
}
.auftragsstrecke-tarifkachel .auftragsstrecke-row-tarif-abschlag {
  line-height: 1.5;
  white-space: nowrap;
  justify-content: flex-start !important;
  margin-top: 1em;
}
.auftragsstrecke-tarifkachel .auftragsstrecke-row-tarif-abschlag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60%;
  width: 40%;
  height: 1px;
  background: rgba(204, 204, 204, 0.3333333333);
}
.auftragsstrecke-tarifkachel .auftragsstrecke-row-tarif-abschlag > div {
  font-weight: 700;
  margin-left: auto;
  margin-top: 0.5em;
  margin-right: 2.5rem;
}
.auftragsstrecke-tarif-waehlen-btn {
  display: block;
  width: 50%;
  margin-top: 1rem;
}

.auftragsstrecke-prev-next-button-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}
.auftragsstrecke-prev-next-button-container .auftragsstrecke-weiter {
  margin-left: auto;
}

.auftragsstrecke-prev-next-button-container ~ p {
  font-size: 0.75rem;
  margin-top: 2rem;
}

.auftragsstrecke-container-anzahl-der-personen-im-haushalt {
  display: flex;
  flex-direction: row;
  gap: 1em;
}

.auftragsstrecke-container-anzahl-der-personen-im-haushalt a {
  border: 1px solid #cbcbcb;
  color: #fff;
  padding: 0.5em 1em;
  width: 5rem;
  height: 3.5rem;
}
.auftragsstrecke-container-anzahl-der-personen-im-haushalt a svg {
  display: none;
}
.auftragsstrecke-container-anzahl-der-personen-im-haushalt a:hover {
  border-color: #fa350f;
  color: #fff;
  box-shadow: var(--focus);
}
.auftragsstrecke-container-anzahl-der-personen-im-haushalt a:focus, .auftragsstrecke-container-anzahl-der-personen-im-haushalt a:focus-visible {
  outline: 0;
  box-shadow: var(--focus);
}
.auftragsstrecke-container-anzahl-der-personen-im-haushalt a:nth-child(1) {
  color: #fff;
  background-image: url("../images/1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.auftragsstrecke-container-anzahl-der-personen-im-haushalt a:nth-child(2) {
  color: #fff;
  background-image: url("../images/2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.auftragsstrecke-container-anzahl-der-personen-im-haushalt a:nth-child(3) {
  color: #fff;
  background-image: url("../images/3.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.auftragsstrecke-container-anzahl-der-personen-im-haushalt a:nth-child(4) {
  color: #fff;
  background-image: url("../images/4.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.auftragsstrecke-allgemeine-fehlermeldung {
  text-align: center;
  border: 2px solid red;
  border: 2px dashed red;
  margin-top: 1em;
  font-weight: 700;
  padding: 0.5em;
}

ul {
  list-style: square;
  list-style-position: inside;
  padding: 0;
  margin: 0;
  margin-bottom: 1em;
}
ul li::marker {
  color: #fa350f;
}
ul li:first-child {
  margin-bottom: 0.5em;
  margin-left: 0em;
  list-style: none;
}
ul li {
  margin-left: 1em;
}
ul li span {
  color: #aaa;
  margin-left: 0.5em;
  font-size: inherit;
}

.auftragsstrecke-umzug-anbieterwechsel > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.auftragsstrecke-container-ab-wann-duerfen-wir-sie-beliefern > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.auftragsstrecke-input-error-container-ab-wann-duerfen-wir-sie-beliefern {
  margin-top: 1em;
}

.auftragsstrecke-checkbox-row-alt-vertrag-bereits-gekuendigt {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1em;
}

.auftragsstrecke-checkbox-row-alt-vertrag-bereits-gekuendigt,
.auftragsstrecke-checkbox-row-abschlussfragen {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.auftragsstrecke-datenuebersicht-kontakt {
  border-top: var(--hr-width) var(--hr-style) var(--hr-color);
}

.auftragsstrecke-datenuebersicht-stromvertrag {
  border-top: var(--hr-width) var(--hr-style) var(--hr-color);
}

.auftragsstrecke-label-ab-wann-duerfen-wir-sie-beliefern {
  justify-content: flex-start;
  font-weight: 700;
}

.passwort-vergessen {
  font-size: 0.75rem;
  margin-bottom: 1em;
}
.passwort-vergessen a {
  color: #aaa !important;
}
.passwort-vergessen a:hover {
  color: #fa350f !important;
}

.auftragsstrecke-row-zaehlerart {
  margin-top: 0.75em;
}

.auftragsstrecke-popup-container-zaehlerart-info-popup {
  margin-left: auto;
  z-index: 2;
  cursor: pointer;
}

.auftragsstrecke-row-zaehlerart > div {
  display: flex;
  gap: 0.5em;
}

.auftragsstrecke-Popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  height: 90%;
  padding: 3rem;
  box-shadow: var(--shadow);
}
@media (min-width: 992px) {
  .auftragsstrecke-Popup {
    width: 80%;
    max-width: 900px;
    height: 70%;
  }
}
@media (min-width: 1200px) {
  .auftragsstrecke-Popup {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .auftragsstrecke-Popup {
    width: 50%;
  }
}
@media (min-width: 1600px) {
  .auftragsstrecke-Popup {
    width: 40%;
  }
}
.auftragsstrecke-Popup .auftragsstrecke-popup-iframe-center {
  width: 100%;
  height: 100%;
  z-index: 999999;
}
.auftragsstrecke-Popup .auftragsstrecke-popup-iframe-center .popup-iframe {
  width: 100%;
  border: none;
}
.auftragsstrecke-Popup .auftragsstrecke-popup-iframe-center .auftragsstrecke-close-iframe-popup {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  padding: 0.5rem 1rem;
  background-color: #fa350f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}
.auftragsstrecke-Popup .auftragsstrecke-popup-iframe-center .auftragsstrecke-close-iframe-popup:hover {
  background-color: rgb(209.6326530612, 37.5591836735, 4.3673469388);
}
.auftragsstrecke-Popup .auftragsstrecke-popup-iframe-center .auftragsstrecke-close-iframe-popup:focus {
  outline: none;
  box-shadow: var(--focus);
}

.auftragsstrecke-popup-invisible {
  display: none;
}

.auftragsstrecke-popup-x-icon {
  position: absolute;
  right: 4px;
  top: 4px;
}

.popup-info-icon {
  width: 1rem;
  height: 1rem;
}

.popup-info-icon svg {
  width: 1.15rem;
  opacity: 0.12;
}

.auftragsstrecke-rechnungsuebernahme-wahl,
.auftragsstrecke-row-bereits-kunde {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1em;
}
.auftragsstrecke-rechnungsuebernahme-wahl label,
.auftragsstrecke-row-bereits-kunde label {
  margin: 0 !important;
  display: block;
}

.kundennummer-abfrage-hinweis {
  font-size: 0.6rem;
}

html {
  height: 100%;
}

.zahler-body {
  width: 100%;
  height: 100%;
}
.zahler-body .zs {
  height: 100%;
}
.zahler-body .pseudobody {
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.zahler-body .pseudobody::-webkit-scrollbar {
  display: none;
}

.mbs {
  background-color: var(--white);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 77;
}

.zs .pseudobody {
  width: 100%;
  padding: 1rem 1rem;
  max-width: 900px;
  background-color: #fff;
}
.zs .pseudobody p {
  margin: 0;
  padding: 0;
}
.zs .pseudobody > p:first-of-type {
  border-top: 2px solid #fa350f;
  padding-top: 0.5em;
  margin: 0;
  margin-top: 3rem;
}
.zs .pseudobody .zaehler-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  gap: 1rem;
  width: 100%;
  text-align: center;
}
@media (min-width: 766px) {
  .zs .pseudobody .zaehler-container {
    flex-direction: row;
  }
}
.zs .pseudobody .zaehler-container .analoge {
  width: 22%;
}
.zs .pseudobody .zaehler-container .analoge img {
  width: 100%;
}
.zs .pseudobody .zaehler-container .analoge p:first-child {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}
@media (min-width: 500px) {
  .zs .pseudobody .zaehler-container .analoge p:first-child {
    white-space: nowrap;
  }
}
.zs .pseudobody .zaehler-container .analoge p {
  font-size: 0.85em;
}
.zs .pseudobody .zaehler-container .digitale {
  width: 22%;
}
.zs .pseudobody .zaehler-container .digitale img {
  width: 100%;
}
.zs .pseudobody .zaehler-container .digitale p:first-child {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}
@media (min-width: 500px) {
  .zs .pseudobody .zaehler-container .digitale p:first-child {
    white-space: nowrap;
  }
}
.zs .pseudobody .zaehler-container .digitale p {
  font-size: 0.85em;
}

.columns #dcrt_dps_content ul {
  list-style-position: outside !important;
}
.columns #dcrt_dps_content ul li:first-child {
  margin-bottom: 0;
  margin-left: 1em;
  list-style: unset;
}
