@charset "UTF-8";

/* Caveat */
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/caveat/static/Caveat-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/caveat/static/Caveat-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/caveat/static/Caveat-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/caveat/static/Caveat-Bold.ttf") format("truetype");
}

/* GenosGFG */
@font-face {
  font-family: 'GenosGFG';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/genosgfg/GenosGFG-Regular.eot');
  src: local(''),
    url('../fonts/genosgfg/GenosGFG-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/genosgfg/GenosGFG-Regular.woff2') format('woff2'),
    url('../fonts/genosgfg/GenosGFG-Regular.woff') format('woff'),
    url('../fonts/genosgfg/GenosGFG-Regular.ttf') format('truetype'),
    url('../fonts/genosgfg/GenosGFG-Regular.svg') format('svg');
}

@font-face {
  font-family: 'GenosGFG';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/genosgfg/GenosGFG-RegularItalic.eot');
  src: local(''),
    url('../fonts/genosgfg/GenosGFG-RegularItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/genosgfg/GenosGFG-RegularItalic.woff2') format('woff2'),
    url('../fonts/genosgfg/GenosGFG-RegularItalic.woff') format('woff'),
    url('../fonts/genosgfg/GenosGFG-RegularItalic.ttf') format('truetype'),
    url('../fonts/genosgfg/GenosGFG-RegularItalic.svg') format('svg');
}

@font-face {
  font-family: 'GenosGFG';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/genosgfg/GenosGFG-Condensed.eot');
  src: local(''),
    url('../fonts/genosgfg/GenosGFG-Condensed.eot?#iefix') format('embedded-opentype'),
    url('../fonts/genosgfg/GenosGFG-Condensed.woff2') format('woff2'),
    url('../fonts/genosgfg/GenosGFG-Condensed.woff') format('woff'),
    url('../fonts/genosgfg/GenosGFG-Condensed.ttf') format('truetype'),
    url('../fonts/genosgfg/GenosGFG-Condensed.svg') format('svg');
}

@font-face {
  font-family: 'GenosGFG';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/genosgfg/GenosGFG-Bold.eot');
  src: local(''),
    url('../fonts/genosgfg/GenosGFG-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/genosgfg/GenosGFG-Bold.woff2') format('woff2'),
    url('../fonts/genosgfg/GenosGFG-Bold.woff') format('woff'),
    url('../fonts/genosgfg/GenosGFG-Bold.ttf') format('truetype'),
    url('../fonts/genosgfg/GenosGFG-Bold.svg') format('svg');
}

@font-face {
  font-family: 'GenosGFG';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/genosgfg/GenosGFG-BoldItalic.eot');
  src: local(''),
    url('../fonts/genosgfg/GenosGFG-BoldItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/genosgfg/GenosGFG-BoldItalic.woff2') format('woff2'),
    url('../fonts/genosgfg/GenosGFG-BoldItalic.woff') format('woff'),
    url('../fonts/genosgfg/GenosGFG-BoldItalic.ttf') format('truetype'),
    url('../fonts/genosgfg/GenosGFG-BoldItalic.svg') format('svg');
}

:root {
  --vr-blue: hsl(206, 100%, 35%);
  --vr-blue-light: hsla(206, 100%, 35%, .1);
  --vr-blue-dark: hsl(206, 100%, 30%);
  --vr-blue-darker: hsl(206, 100%, 25%);
  --vr-orange: hsl(24, 100%, 50%);
  --vr-orange-light: hsla(24, 100%, 50%, .1);
  --vr-orange-dark: hsl(24, 100%, 45%);
  --vr-orange-darker: hsl(24, 100%, 40%);
  --vr-ultramarine: rgb(0, 45, 103);
  --title: var(--color-tertiary);
  --text: rgb(0, 0, 0, 0.86);
  --meta: var(--color-tertiary-2);
  --link: var(--color-primary);
  --border: $grey5;
  --disabled: rgba(0, 0, 0, 0.38);
  --font-title: "Caveat", Arial, sans-serif;
  --font-main: "GenosGFG", Arial, sans-serif;
  --font-size: 16px;
  --font-weight: normal;
  --line-height: 1.5;
  --font-size-sm: 13px;
  --line-height-sm: 1.3846153846;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

*,
html,
body,
h1,
p,
th,
div {
  font-family: var(--font-main) !important;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  color: var(--text);
  overflow-x: hidden;
}

h1 {
  margin: 0 0 2rem 0;
  padding: 0;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.1578947368;
  color: #282828;
}

h2 {
  margin: 0 0 var(--margin-md) 0;
  padding: 0;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.4545454545;
  color: #282828;
}

h3 {
  margin: 0 0 var(--margin-md) 0;
  padding: 0;
  font-size: 20px;
  font-weight: normal !important;
  line-height: 1.4545454545;
  color: #282828;
}

.ogr-form fieldset>h3 {
  margin-top: 0;
}

p {
  margin: 0 0 1rem 0;
  font-size: var(--font-size);
  line-height: var(--line-height);
}

p:last-child {
  margin: 0;
}

b,
strong,
.bold {
  font-weight: bold;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  margin: 0;
  padding: 0;
}

.mt-1 {
  -webkit-margin-before: 1rem !important;
  margin-block-start: 1rem !important;
}

.mt-2 {
  -webkit-margin-before: 2rem !important;
  margin-block-start: 2rem !important;
}

.mt-3 {
  -webkit-margin-before: 3rem !important;
  margin-block-start: 3rem !important;
}

.mt-4 {
  -webkit-margin-before: 4rem !important;
  margin-block-start: 4rem !important;
}

.mt-5 {
  -webkit-margin-before: 5rem !important;
  margin-block-start: 5rem !important;
}

.mb-1 {
  -webkit-margin-after: 1rem !important;
  margin-block-end: 1rem !important;
}

.mb-2 {
  -webkit-margin-after: 2rem !important;
  margin-block-end: 2rem !important;
}

.mb-3 {
  -webkit-margin-after: 3rem !important;
  margin-block-end: 3rem !important;
}

.mb-4 {
  -webkit-margin-after: 4rem !important;
  margin-block-end: 4rem !important;
}

.mb-5 {
  -webkit-margin-after: 5rem !important;
  margin-block-end: 5rem !important;
}

:root {
  --container-max: 1256px;
  --margin-xxlg: 56px;
  --margin-xlg: 48px;
  --margin-lg: 32px;
  --margin-md: 24px;
  --margin-sm: 16px;
  --margin-xsm: 8px;
}

@media screen and (max-width: 899px) {
  :root {
    --margin-xxlg: 48px;
    --margin-xlg: 40px;
  }
}

@media screen and (max-width: 599px) {
  :root {
    --margin-lg: 32px;
    --margin-md: 24px;
    --margin-sm: 16px;
    --margin-xsm: 8px;
  }
}

@media screen and (max-width: 1499px) {
  .wrapper {
    padding-inline: 8%;
  }
}

@media screen and (max-width: 899px) {
  .wrapper {
    padding-inline: 4%;
  }
}

@media screen and (max-width: 599px) {
  .wrapper {
    padding-inline: 16px;
  }
}

.container {
  margin-block: var(--margin-xxlg);
  margin-inline: auto;
  max-width: var(--container-max);
  width: 100%;
}

.grid {
  display: grid;
  -moz-column-gap: 52px;
  column-gap: 52px;
  grid-template-columns: repeat(12, 57px);
}

@media screen and (max-width: 1499px) {
  .grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

@media screen and (max-width: 1199px) {
  .grid {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}

@media screen and (max-width: 899px) {
  .grid {
    -moz-column-gap: 30px;
    column-gap: 30px;
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media screen and (max-width: 599px) {
  .grid {
    -moz-column-gap: 20px;
    column-gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.grid[data-grid=eight] {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

@media screen and (max-width: 1499px) {
  .grid[data-grid=eight] {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

[class*=col] {
  margin-block: var(--margin-sm);
}

.col {
  grid-column: 1/-1;
}

.col-2 {
  grid-column: span 2;
}

@media screen and (max-width: 899px) {
  .col-2 {
    grid-column: 1/-1;
  }
}

.col-3 {
  grid-column: span 3;
}

@media screen and (max-width: 899px) {
  .col-3 {
    grid-column: 1/-1;
  }
}

.col-4 {
  grid-column: span 4;
}

@media screen and (max-width: 899px) {
  .col-4 {
    grid-column: 1/-1;
  }
}

.col-6 {
  grid-column: span 6;
}

@media screen and (max-width: 899px) {
  .col-6 {
    grid-column: 1/-1;
  }
}

.col-8 {
  grid-column: span 8;
}

@media screen and (max-width: 899px) {
  .col-8 {
    grid-column: 1/-1;
  }
}

.col-9 {
  grid-column: span 9;
}

@media screen and (max-width: 899px) {
  .col-9 {
    grid-column: 1/-1;
  }
}

.col-10 {
  grid-column: span 10;
}

@media screen and (max-width: 899px) {
  .col-10 {
    grid-column: 1/-1;
  }
}

main {
  display: block;
}

.content[data-size=small] p {
  --font-size: 13px;
  --line-height: 1.3846153846;
}

.btn {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-inline: var(--margin-sm);
  height: 44px;
  width: 180px;
  border-radius: 50vh;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

.btn:disabled {
  pointer-events: none;
  background-color: var(--disabled);
}

@media screen and (max-width: 599px) {
  .btn {
    width: 100%;
  }
}

.btn-icon {
  flex-shrink: 0;
  display: inline-block;
  -webkit-margin-end: var(--margin-xsm);
  margin-inline-end: var(--margin-xsm);
  width: 24px;
  height: 24px;
  background-color: white;
}

.btn-prev,
.btn-next {
  flex-shrink: 0;
  display: inline-block;
  -webkit-margin-start: var(--margin-xsm);
  margin-inline-start: var(--margin-xsm);
  width: 24px;
  height: 24px;
  background-color: white;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 20px;
  mask-size: 20px;
}

.btn-prev {
  -webkit-mask-image: url("../img/icon/ic_pfeil-links_24.svg");
  mask-image: url("../img/icon/ic_pfeil-links_24.svg");
}

.btn-next {
  -webkit-mask-image: url("../img/icon/ic_pfeil-rechts_24.svg");
  mask-image: url("../img/icon/ic_pfeil-rechts_24.svg");
}

.btn-label {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: bold;
  line-height: 1.2307692308;
  text-align: center;
}

.btn-label--full {
  width: 100%;
}

.btn--compact {
  padding-inline: initial;
  width: 44px;
}

.btn--compact .btn-icon,
.btn--compact .btn-prev,
.btn--compact .btn-next {
  -webkit-margin-start: initial;
  margin-inline-start: initial;
}

.btn--primary-blue {
  background-color: var(--vr-blue);
}

.btn--primary-blue .btn-label {
  color: white;
}

.btn--primary-blue:hover {
  background-color: var(--vr-blue-dark);
}

.btn--primary-orange {
  background-color: var(--vr-orange);
}

.btn--primary-orange .btn-label {
  color: white;
}

.btn--primary-orange:hover {
  background-color: var(--vr-orange-dark);
}

.btn--secondary-blue {
  background-color: white;
  border-color: var(--vr-blue);
}

.btn--secondary-blue .btn-label {
  color: var(--vr-blue);
}

.btn--secondary-blue .btn-prev,
.btn--secondary-blue .btn-next {
  background-color: var(--vr-blue);
}

.btn--secondary-blue:hover {
  background-color: var(--vr-blue-light);
}

.btn--secondary-orange {
  background-color: white;
  border-color: var(--vr-orange);
}

.btn--secondary-orange .btn-label {
  color: var(--vr-orange);
}

.btn--secondary-orange.btn-bg {
  border-color: transparent;
}

.btn--secondary-orange .btn-prev,
.btn--secondary-orange .btn-next {
  background-color: var(--vr-orange);
}

.btn--tertiary-blue {
  background-color: transparent;
  border-color: transparent;
}

.btn--tertiary-blue .btn-label {
  color: var(--vr-blue);
}

.btn--tertiary-blue .btn-prev,
.btn--tertiary-blue .btn-next {
  background-color: transparent;
}

.btn--tertiary-blue:hover {
  background-color: var(--vr-blue-light);
}

.btn--tertiary-orange {
  background-color: transparent;
  border-color: transparent;
}

.btn--tertiary-orange .btn-label {
  color: var(--vr-orange);
}

.btn--tertiary-orange.btn-bg {
  border-color: transparent;
}

.btn--tertiary-orange.btn-bg .btn-label {
  color: white;
}

.btn--tertiary-orange .btn-prev,
.btn--tertiary-orange .btn-next {
  background-color: transparent;
}

.btn--tertiary-orange:hover {
  background-color: var(--vr-orange-dark);
}

.btn-bar {
  display: flex;
  flex-wrap: wrap;
  -webkit-margin-before: 3rem;
  margin-block-start: 3rem;
}

.btn-bar .btn:not(:last-child) {
  -webkit-margin-end: var(--margin-sm);
  margin-inline-end: var(--margin-sm);
  -webkit-margin-after: var(--margin-sm);
  margin-block-end: var(--margin-sm);
}

@media screen and (max-width: 599px) {
  .btn-bar .btn:not(:last-child) {
    -webkit-margin-end: inherit;
    margin-inline-end: inherit;
  }
}

.form-section {
  margin-top: 20px;
  margin-bottom: 40px;
}

.form-error {
  color: #FF2600;
  font-size: 13px;
}

.ogr-form .error-in-col label,
.ogr-form .error label {
  color: #0000009E;
}

.form-hint {
  color: #0000009E;
  font-size: 13px;
}

.form-text {
  color: #282828 !important;
  font-size: 16px !important;
}

.form-label {
  font-weight: bold;
  font-size: 16px;
  color: #282828;
  margin-bottom: 16px;
}

input,
textarea,
select {
  border: none;
  font-family: var(--font-main);
}

:focus {
  outline: none;
}

.form-field {
  margin-bottom: 16px;
  position: relative;
  cursor: text;
}

.form-field-input {
  position: relative;
  background: #F7F7F7;
  display: flex;
  align-items: flex-end;
  border-bottom: 2px solid #E5E5E5;
  width: 100%;
  cursor: text;
  max-width: 500px;
}

.form-field-input input,
.form-field-input textarea,
.form-field-input select {
  width: 100%;
  background-color: transparent;
  font-size: 16px;
  color: #282828;
  caret-color: var(--vr-blue);
}

.form-field-input input~label,
.form-field-input textarea~label,
.form-field-input select~label {
  position: absolute;
  left: 12px;
  width: calc(100% - 24px);
  color: #0000009E;
  transition: 0.3s;
  cursor: text;
}

.form-field-input input:focus~label,
.form-field-input textarea:focus~label,
.form-field-input select:focus~label {
  font-size: 12px;
  color: #0000009E;
  transition: 0.3s;
}

.form-field-input input~.form-field-input-border,
.form-field-input textarea~.form-field-input-border,
.form-field-input select~.form-field-input-border {
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #282828;
  transition: 0.4s;
}

.form-field-input input:focus~.form-field-input-border,
.form-field-input textarea:focus~.form-field-input-border,
.form-field-input select:focus~.form-field-input-border {
  width: 100%;
  transition: 0.4s;
  left: 0;
}

.form-field-input input::-moz-placeholder,
.form-field-input textarea::-moz-placeholder {
  color: transparent;
}

.form-field-input input:-ms-input-placeholder,
.form-field-input textarea:-ms-input-placeholder {
  color: transparent;
}

.form-field-input input::placeholder,
.form-field-input textarea::placeholder {
  color: transparent;
}

.form-field-input input:not(:-moz-placeholder-shown)~.form-field-input-label,
.form-field-input textarea:not(:-moz-placeholder-shown)~.form-field-input-label {
  font-size: 12px;
}

.form-field-input input:not(:-ms-input-placeholder)~.form-field-input-label,
.form-field-input textarea:not(:-ms-input-placeholder)~.form-field-input-label {
  font-size: 12px;
}

.form-field-input input:not(:placeholder-shown)~.form-field-input-label,
.form-field-input textarea:not(:placeholder-shown)~.form-field-input-label {
  font-size: 12px;
}

.form-field-input select {
  padding: 31px 0 5px 12px;
}

.form-field-input select~label {
  bottom: 5px;
  pointer-events: none;
}

.form-field-input select:focus~label {
  bottom: 30px;
}

.form-field-input select:not([value=""]):valid~.form-field-input-label {
  bottom: 30px;
  font-size: 12px;
}

.form-field-input input {
  height: 62px;
  padding: 40px 0 16px 12px;
}

.form-field-input input:not(:-moz-placeholder-shown)~.form-field-input-label {
  bottom: 35px;
}

.form-field-input input:not(:-ms-input-placeholder)~.form-field-input-label {
  bottom: 35px;
}

.form-field-input input:not(:placeholder-shown)~.form-field-input-label {
  bottom: 35px;
}

.form-field-input input~label {
  bottom: 5px;
}

.form-field-input input:focus~label {
  bottom: 35px;
}

.form-field-input textarea {
  resize: none;
  margin-bottom: 10px;
  margin-top: 34px;
  padding: 0 0 16px 12px;
}

.form-field-input textarea:not(:-moz-placeholder-shown)~.form-field-input-label {
  top: 8px;
}

.form-field-input textarea:not(:-ms-input-placeholder)~.form-field-input-label {
  top: 8px;
}

.form-field-input textarea:not(:placeholder-shown)~.form-field-input-label {
  top: 8px;
}

.form-field-input-label>.ogr-infolayer__triggerwrapper,
.form-field-input-label>.ogr-textinput__unit--standard,
.form-field-input-label>.punkte {
  display: inline-block !important;
}

.form-field-input-label>.ogr-textinput__unit--standard {
  margin-right: .25rem;
}

dfn {
  margin: 0 .25rem;
  color: var(--text);
}

dfn abbr {
  text-decoration: none;
}

.ogr-richtext dfn {
  margin: 0 .25rem;
  color: var(--text);
}

.form-field-input textarea~label {
  top: calc(50% - 16px);
}

.form-field-input textarea:focus~label {
  top: 8px;
}

.form-field-input .suffix {
  display: flex;
  align-items: baseline;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 5px;
  color: rgba(0, 0, 0, 0.86);
  font-size: 13px;
  font-weight: bold;
}

.form-field-input .suffix .icon {
  color: #A7A7A7;
}

.form-field-input .suffix[data-toggle] {
  cursor: pointer;
}

.form-field-input .suffix .form-field-input-select .input-select:checked+label,
.form-field-input .suffix .form-field-input-select .input-select:not(:checked)+label {
  position: relative;
  height: initial;
  transition: initial;
  width: 100%;
  display: inline-flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: initial;
  background-color: transparent;
  cursor: pointer;
  color: #0000009E;
  padding: 0 40px 0 0;
  text-align: right;
  white-space: nowrap;
  font-size: 13px;
  bottom: 0;
}

.form-field-input .suffix .form-field-input-select .input-select:checked+label .input-select-label-value,
.form-field-input .suffix .form-field-input-select .input-select:not(:checked)+label .input-select-label-value {
  position: relative;
  bottom: initial;
}

.form-field-input .suffix .form-field-input-select .input-select:checked+label .input-select-label-icon .icon,
.form-field-input .suffix .form-field-input-select .input-select:not(:checked)+label .input-select-label-icon .icon {
  bottom: -1px;
}

.form-field-input .suffix .input-select-option {
  top: 22px;
  left: initial;
  right: 0;
  min-width: 150px;
}

.form-field-input.input-datepicker {
  cursor: text;
}

.form-field-input.input-datepicker input~label {
  cursor: text;
}

.form-field-input.input-datepicker .flatpickr-calendar.open {
  top: 69px !important;
  left: 0 !important;
}

.form-field-input.disabled {
  pointer-events: none;
  border-bottom: none;
}

.form-field-input.disabled input,
.form-field-input.disabled textarea {
  color: #00000061;
}

.form-field-input.disabled input~.form-field-input-border,
.form-field-input.disabled textarea~.form-field-input-border {
  background-color: transparent;
}

.form-field-input.disabled input~label,
.form-field-input.disabled input:focus~label,
.form-field-input.disabled textarea~label,
.form-field-input.disabled textarea:focus~label {
  color: #00000061;
}

.form-field-input.error {
  background: #FFF0ED;
  border-color: #FF2600;
}

.form-field-input.error input~.form-field-input-border,
.form-field-input.error textarea~.form-field-input-border {
  background-color: #FF2600;
}

.form-field-input-select {
  position: relative;
  max-width: 100%;
}

.form-field-input-select .input-select:checked,
.form-field-input-select .input-select:not(:checked) {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-field-input-select .input-select:checked+label,
.form-field-input-select .input-select:not(:checked)+label {
  position: relative;
  height: 62px;
  transition: 0.3s;
  width: 100%;
  display: inline-flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 2px solid #E5E5E5;
  background-color: #F7F7F7;
  cursor: pointer;
  color: #0000009E;
  padding: 30px 12px 16px 12px;
}

.form-field-input-select .input-select:checked+label:before,
.form-field-input-select .input-select:not(:checked)+label:before {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  cursor: auto;
  pointer-events: none;
}

.form-field-input-select .input-select:checked+label .input-select-label-icon .icon,
.form-field-input-select .input-select:not(:checked)+label .input-select-label-icon .icon {
  transition: transform 0.3s linear;
  color: #282828;
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 10px;
}

.form-field-input-select .input-select:checked+label.selected,
.form-field-input-select .input-select:not(:checked)+label.selected {
  padding-top: 8px;
}

.form-field-input-select .input-select:checked+label.selected .input-select-label-value,
.form-field-input-select .input-select:not(:checked)+label.selected .input-select-label-value {
  display: inline-block;
}

.form-field-input-select .input-select:checked+label.selected .input-select-label-text,
.form-field-input-select .input-select:not(:checked)+label.selected .input-select-label-text {
  font-size: 12px;
  padding-top: 0;
}

.form-field-input-select .input-select:checked+label .input-select-label-text,
.form-field-input-select .input-select:not(:checked)+label .input-select-label-text {
  transition: 0.3s;
}

.form-field-input-select .input-select:checked+label .input-select-label-value,
.form-field-input-select .input-select:not(:checked)+label .input-select-label-value {
  position: absolute;
  bottom: 6px;
  transition: 0.3s;
  display: none;
  color: #282828;
}

.form-field-input-select .input-select:checked~.form-field-input-border,
.form-field-input-select .input-select:not(:checked)~.form-field-input-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #282828;
  transition: 0.4s;
}

.form-field-input-select .input-select:checked+label {
  padding-top: 8px;
}

.form-field-input-select .input-select:checked+label .input-select-label-text {
  font-size: 12px;
}

.form-field-input-select .input-select:checked+label:before {
  pointer-events: auto;
}

.form-field-input-select .input-select:checked+label .input-select-label-icon .icon {
  transform: rotate(180deg);
}

.form-field-input-select .input-select:checked~.input-select-option {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.form-field-input-select .input-select:checked~.form-field-input-border {
  width: 100%;
  transition: 0.4s;
  left: 0;
}

.form-field-input-select .input-select-option {
  position: absolute;
  background-color: #FFFFFF;
  top: 62px;
  left: 0;
  width: 100%;
  border-radius: 4px;
  display: block;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.12);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: all 0.2s linear;
}

.form-field-input-select .input-select-option-item {
  color: #282828;
  display: flex;
  padding: 12px;
  cursor: pointer;
}

.form-field-input-select .input-select-option-item:hover {
  color: #282828;
  background-color: #F7F7F7;
}

.form-field-input-select .input-select-option-item.selected:after {
  content: "✓";
  margin-left: 12px;
}

.form-field-input-select.disabled {
  pointer-events: none;
}

.form-field-input-select.disabled .input-select+label {
  border-bottom: none;
  color: #00000061;
}

.form-field-input-select.disabled .input-select+label .input-select-label-value,
.form-field-input-select.disabled .input-select+label .input-select-label-text,
.form-field-input-select.disabled .input-select+label .input-select-label-icon .icon {
  color: #00000061;
}

.ogr-textinput:disabled {
  border: 0;
  background-color: #f7f7f7;
  color: #00000061;
}

.ogr-textinput:disabled+* {
  color: #00000061;
}

.ogr-textinput:disabled~.form-field-input-border:last-child {
  left: 0;
  width: 100%;
  background-color: #f7f7f7;
}

.ogr-textinput[type="hidden"]:disabled~.form-field-input-border:last-child {
  display: none;
}


.form-field-input-select.error .input-select+label {
  background-color: #FFF0ED;
  border-color: #FF2600;
}

.form-field-input-select.error .input-select~.form-field-input-border {
  background-color: #FF2600;
}

.form-field-error,
.form-field-hint {
  padding: 0 12px;
  font-size: 13px;
}

.checkbox {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
}

.checkbox+.checkbox {
  margin-top: 16px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
}

.checkbox span {
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.checkbox-icon {
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 2px solid #282828;
  transition: all 0.2s ease;
}

.checkbox-icon svg {
  position: absolute;
  height: 22px;
  width: 22px;
  top: -2px;
  left: -2px;
  fill: none;
  stroke: #282828;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: arcs;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.checkbox-icon:before {
  content: "";
  width: 100%;
  height: 100%;
  /* background: #828282; */
  color: #0000009E;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}

.checkbox-label,
.checkbox .form-error,
.checkbox-text {
  padding-left: 14px;
}

.checkbox-content {
  display: flex;
  flex-direction: column;
}

.checkbox:hover .checkbox-icon {
  border-color: #282828;
}

.checkbox input[type=checkbox] {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.checkbox input[type=checkbox]:checked+.checkbox-icon {
  background: transparent;
  border-color: #282828;
}

.checkbox input[type=checkbox]:checked+.checkbox-icon svg {
  stroke-dashoffset: 0;
}

.checkbox input[type=checkbox]:checked+.checkbox-icon:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

.checkbox.disabled {
  pointer-events: none;
}

.checkbox.disabled .checkbox-icon {
  border-color: #00000061;
}

.checkbox.disabled .checkbox-icon svg {
  stroke: #B2B2B2;
}

.checkbox.disabled .checkbox-label {
  color: #00000061;
}

.checkbox.disabled input[type=checkbox]:checked+.checkbox-icon {
  border-color: #00000061;
}

.ogr-options-group__input[disabled]+.checkbox-icon {
  border-color: #B2B2B2 !important;
}

.ogr-options-group__input[disabled]~.checkbox-icon>svg {
  stroke: #B2B2B2;
}

.ogr-options-group__input[disabled]~.checkbox-label>.ogr-label {
  color: #00000061;
}

.checkbox.error .checkbox-icon {
  border-color: #FF2600;
}

.checkbox.error .checkbox-icon svg {
  stroke: #FF2600;
}

.checkbox.error input[type=checkbox]:checked+.checkbox-icon {
  border-color: #FF2600;
}

@-webkit-keyframes wave {
  50% {
    transform: scale(0.9);
  }
}

@keyframes wave {
  50% {
    transform: scale(0.9);
  }
}

.radio {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
}

.radio+.radio {
  margin-top: 16px;
}

.radio input[type=radio] {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.radio input[type=radio]+span {
  display: inline-block;
  position: relative;
  padding-left: 36px;
}

.radio input[type=radio]+span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #282828;
  background: transparent;
}

.radio input[type=radio]+span:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #282828;
  position: absolute;
  border-radius: 50%;
  top: 6px;
  left: 6px;
  opacity: 0;
  transform: scale(0, 0);
  transition: all 0.2s cubic-bezier(0.64, 0.57, 0.67, 1.53);
}

.radio input[type=radio]:checked+span:after {
  opacity: 1;
  transform: scale(1, 1);
}

.radio-text {
  padding-left: 36px;
}

.radio .form-error {
  padding-left: 36px;
}

.radio.disabled {
  pointer-events: none;
}

.radio.disabled input[type=radio]+span {
  color: #00000061;
}

.radio.disabled input[type=radio]+span:before {
  border-color: #00000061;
}

.radio.disabled input[type=radio]+span:after {
  background: #B2B2B2;
}

.radio.error input[type=radio]+span:before {
  border-color: #FF2600;
}

.radio.error input[type=radio]+span:after {
  background: #FF2600;
}

.toggle {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 24px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toggle input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.toggle input:checked~.toggle-switch {
  background-color: #0066B3;
}

.toggle input:checked~.toggle-switch:after {
  left: 16px;
}

.toggle-switch {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 40px;
  border-radius: 12px;
  background-color: #CCCCCC;
  transition: background-color 0.15s ease-in;
}

.toggle-switch:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #FFFFFF;
  transition: left 0.15s ease-in;
  border: 2px solid #0066B3;
}

.toggle.disabled {
  pointer-events: none;
}

.toggle.disabled input:checked~.toggle-switch {
  /* background-color: #B2B2B2; */
  background-color: #00000061;
}

.toggle.disabled .toggle-switch {
  /* background-color: #B2B2B2; */
  background-color: #00000061;
}

.toggle.disabled .toggle-switch:after {
  background: rgba(255, 255, 255, 0.5);
  border-color: #00000061;
}

.toggle.sm {
  padding-left: 30px;
}

.toggle.sm input:checked~.toggle-switch:after {
  left: 10px;
}

.toggle.sm .toggle-switch {
  height: 20px;
  width: 30px;
  border-radius: 10px;
}

.toggle.sm .toggle-switch:after {
  width: 20px;
  height: 20px;
}

.range-slider {
  width: 100%;
  position: relative;
  margin-bottom: 37px;
}

.range-slider input {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: #DBDBDB;
  outline: none;
}

.range-slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FF6600;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  background: url("../img/icon/ic_pfeil-links_24.svg") #FF6600;
  background-size: 0;
  background-position: center;
  background-repeat: no-repeat;
}

.range-slider input::-webkit-slider-thumb:hover {
  transform: scale(2);
  background-size: 50%;
}

.range-slider input::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FF6600;
  cursor: pointer;
  -moz-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  background: url("../img/icon/ic_pfeil-links_24.svg") #FF6600;
  background-size: 0;
  background-position: center;
  background-repeat: no-repeat;
}

.range-slider input::-moz-range-thumb:hover {
  transform: scale(2);
  background-size: 50%;
}

.range-slider input::-ms-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FF6600;
  cursor: pointer;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  background: url("../img/icon/ic_pfeil-links_24.svg") #FF6600;
  background-size: 0;
  background-position: center;
  background-repeat: no-repeat;
}

.range-slider input::-ms-thumb:hover {
  transform: scale(2);
  background-size: 50%;
}

.range-slider-value {
  display: flex;
  align-items: baseline;
  margin-bottom: 32px;
}

.range-slider-value-number {
  font-size: 86px;
  line-height: 105%;
  margin-right: 16px;
  border-bottom: 2px solid #E5E5E5;
}

.range-slider-value-suffix {
  font-size: 36px;
}

.range-slider-value+.range-slider-hint,
.range-slider-value+.range-slider-error {
  margin-top: -22px;
  margin-bottom: 32px;
}

.range-slider-progress {
  position: absolute;
  height: 2px;
  background: #FF6600;
  border-radius: 5px;
  bottom: 7px;
  left: 2px;
  z-index: -1;
}

.range-slider-scale {
  position: absolute;
  bottom: 4px;
  left: 2px;
  background: transparent;
  width: 100%;
  height: 8px;
  display: flex;
  justify-content: space-between;
  z-index: -2;
}

.range-slider-scale-stroke {
  height: 100%;
  width: 2px;
  background: #DBDBDB;
}

.range-slider-legende {
  display: flex;
  justify-content: space-between;
  color: #0000009E;
  font-size: 13px;
  margin-top: 24px;
  position: absolute;
  bottom: -37px;
  width: 100%;
}

.range-slider-hint {
  color: #282828;
}

.range-slider.disabled {
  pointer-events: none;
}

.range-slider.disabled input::-webkit-slider-thumb {
  background: #B2B2B2;
}

.range-slider.disabled input::-moz-range-thumb {
  background: #B2B2B2;
}

.range-slider.disabled input::-ms-thumb {
  background: #B2B2B2;
}

.range-slider.disabled .range-slider-label,
.range-slider.disabled .range-slider-value-number,
.range-slider.disabled .range-slider-value-suffix {
  color: #00000061;
}

.range-slider.disabled .range-slider-progress {
  background: #B2B2B2;
}

.range-slider.error .range-slider-value-number {
  border-color: #FF2600;
  background: #FFF0ED;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: #FFFFFF;
  color: #0000009E;
  border-radius: 0;
  padding: 16px;
  position: absolute;
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(178, 178, 178, 0.6);
  font-size: 13px;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  border-style: solid;
}

.tooltip.bottom .tooltip-text {
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip.bottom .tooltip-text::after {
  top: 100%;
  left: 50%;
  margin-left: -11px;
  border-width: 11px;
  border-color: #FFFFFF transparent transparent transparent;
  filter: drop-shadow(0 1px 0 #B2B2B2);
}

.tooltip.left .tooltip-text {
  top: -5px;
  left: calc(100% + 11px + 5px);
}

.tooltip.left .tooltip-text::after {
  top: 50%;
  right: 100%;
  margin-top: -11px;
  border-width: 11px;
  border-color: transparent #FFFFFF transparent transparent;
  filter: drop-shadow(-1px 0 0 #B2B2B2);
}

.tooltip:hover .tooltip-text {
  visibility: visible;
}

.progress-action-bar {
  width: 100%;
  height: 76px;
  background: #CC5100;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 899px) {
  .progress-action-bar {
    padding: 16px 16px;
  }
}

.progress-action-bar-steps,
.progress-action-bar-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 899px) {

  .progress-action-bar-steps #btnCancel,
  .progress-action-bar-steps #btnPrev,
  .progress-action-bar-actions #btnCancel,
  .progress-action-bar-actions #btnPrev {
    display: none;
  }
}

.progress-action-bar-steps {
  display: flex;
  font-weight: bold;
  align-items: baseline;
  color: #FFFFFF;
}

.progress-action-bar-steps .current-step {
  font-size: 38px;
}

.progress-action-bar-steps .total-steps {
  font-size: 22px;
}

.progress-action-bar-steps .total-steps:before {
  content: "/";
  padding: 4px;
}

.progress-action-bar-steps .step-selection {
  font-size: 13px;
  padding: 0 16px;
}

@media screen and (max-width: 899px) {
  .progress-action-bar-steps .step-selection {
    display: none;
  }
}

.progress-action-bar-steps .step-selection-title {
  color: white;
}

.progress-action-bar-steps .step-selection-icon .icon {
  width: 1rem;
  height: 1rem;
  background-color: white;
}

.progress-action-bar-actions .btn:last-child {
  margin-left: 8px;
}

@media screen and (max-width: 899px) {
  .progress-action-bar-actions .btn:last-child {
    margin: 0;
  }
}

.progress-action-bar-actions .btn:not(:last-child) {
  margin: 0 8px;
}

.progress-action-bar-actions--mobile {
  display: none;
}

@media screen and (max-width: 899px) {
  .progress-action-bar-actions--mobile {
    display: block;
    padding: 0 16px;
  }

  .progress-action-bar-actions--mobile .icon {
    background: #FFFFFF;
  }
}

.progress-action-bar-progress {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #FF6600;
  z-index: 1;
}

.form-stepper-content {
  margin: 24px 0;
}

.form-stepper-step {
  display: none;
  visibility: hidden;
}

.dropdown {
  position: relative;
  max-width: 100%;
}

.dropdown [type=checkbox]:checked,
.dropdown [type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.dropdown-input:checked+label,
.dropdown-input:not(:checked)+label {
  position: relative;
  height: 24px;
  transition: all 200ms linear;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #282828;
  z-index: 1;
}

.dropdown-input:checked+label:before,
.dropdown-input:not(:checked)+label:before {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  cursor: auto;
  pointer-events: none;
}

.dropdown-input:checked+label:after,
.dropdown-input:not(:checked)+label:after {
  content: "";
  background: url("../img/icon/ic_pfeil-links_24.svg") #FF6600;
  background-size: 0;
  background-position: center;
  background-repeat: no-repeat;
}

.dropdown-input:checked+label .icon,
.dropdown-input:not(:checked)+label .icon {
  font-size: 10px;
  margin-left: 10px;
  transition: transform 200ms linear;
}

.dropdown-input:checked+label:before {
  pointer-events: auto;
}

.dropdown-input:checked+label .icon {
  transform: rotate(180deg);
}

.dropdown-input:checked+label .icon.icon-menue-mehr {
  transform: rotate(0);
}

.dropdown-input:checked~.dropdown-section {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-section {
  position: absolute;
  background-color: #FFFFFF;
  top: 34px;
  left: 0;
  width: 100%;
  min-width: 200px;
  border-radius: 4px;
  display: block;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.12);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 200ms linear;
}

.dropdown-section:before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  content: "";
  display: block;
  z-index: 1;
}

.dropdown-section-item {
  position: relative;
  color: #282828;
  transition: all 200ms linear;
  border-radius: 2px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.dropdown-section-item:hover {
  color: #282828;
  background-color: #F7F7F7;
}

.dropdown-section-sub {
  position: relative;
  display: block;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 200ms linear;
}

.dropdown-section-sub .dropdown-section-item {
  padding-left: 26px;
  font-size: 13px;
}

.dropdown-sub:checked+label,
.dropdown-sub:not(:checked)+label {
  position: relative;
  color: #282828;
  transition: all 200ms linear;
  border-radius: 2px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.dropdown-sub:checked+label .icon,
.dropdown-sub:not(:checked)+label .icon {
  font-size: 10px;
  transition: transform 200ms linear;
}

.dropdown-sub:checked+label:hover,
.dropdown-sub:not(:checked)+label:hover {
  color: #282828;
  background-color: #F7F7F7;
}

.dropdown-sub:checked+label .icon {
  transform: rotate(180deg);
}

.dropdown-sub:checked~.dropdown-section-sub {
  pointer-events: auto;
  opacity: 1;
  max-height: 999px;
}

.icon {
  flex-shrink: 0;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #282828;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 1.5rem;
  mask-size: 1.5rem;
  transform-origin: center;
}

.icon-arrow-down {
  -webkit-mask-image: url("../img/icon/ic_chevron-unten_24.svg");
  mask-image: url("../img/icon/ic_chevron-unten_24.svg");
}

.icon-menue-mehr {
  -webkit-mask-image: url("../img/icon/ic_menue-mehr-vertikal_24.svg");
  mask-image: url("../img/icon/ic_menue-mehr-vertikal_24.svg");
}

.icon-auge {
  -webkit-mask-image: url("../img/icon/ic_auge-geoeffnet_24.svg");
  mask-image: url("../img/icon/ic_auge-geoeffnet_24.svg");
}

.icon-kalender {
  -webkit-mask-image: url("../img/icon/ic_kalender_24.svg");
  mask-image: url("../img/icon/ic_kalender_24.svg");
}

.icon-info-circle {
  -webkit-mask-image: url("../img/icon/ic_infozeichen_24.svg");
  mask-image: url("../img/icon/ic_infozeichen_24.svg");
}

.ogr-textinput {
  border: 0px solid #ccc;
}

.noBorder {
  border-bottom: 0px;
}

.ogr-infolayer__element.ogr-infolayer__element {
  width: 100%;
  float: none;
}

.ogr-row--options label {
  margin-bottom: 24px;
}

.ogr-row--options label.radio,
.ogr-row--options label.checkbox {
  margin-bottom: 0px;
}

.error label {
  color: #0000009E;
}

.ogr-textinput__unit--standard {
  color: #0000009E;
}

.form-field-error {
  display: none;
}

.error~.form-field-error {
  display: inline-block;
}

.ogr-box--highlight a {
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
  display: block;
}

th {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.62);
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}

td {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.86);
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}

.ogr-footnote-text {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.62);
  letter-spacing: 0;
  line-height: 18px;
  font-weight: 400;
  margin-top: 0em;
  margin-bottom: 0em;
}

.ogr-btn {
  font-size: 13px;
  letter-spacing: 0.6px;
  text-align: center;
  line-height: 42px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  /* display: inline-flex; */
  justify-content: center;
  align-items: center;
  padding-inline: var(--margin-sm);
  height: 44px;
  width: 180px;
  border-radius: 50vh;
  border-width: 2px;
  border-style: solid;
  border-color: #0066b3;
  color: #0066B3;
  text-decoration: none;
  transition: all 150ms ease-in-out;
  background-color: #fff;
  translate: all .3s ease-in-out;
}

.ogr-btn:hover {
  text-decoration: none;
  background-color: #f4f7fa;
}

.ogr-btn.ogr-btn--cta {
  background: #0066b3;
  border-color: #0066b3;
}

.ogr-btn.ogr-btn--cta:hover {
  background-color: #005ba0;
}

.ogr-btn span,
.ogr-btn img {
  /* float: left; */
  margin: 6px 0 0 -4px;
}

.icons--cancel {
  background-image: url(../img/icons.png);
  margin: 12px 0 0 0px !important;
}

.ogr-btn--cta [class^="icons-"],
.ogr-btn--cta [class*=" icons-"] {
  background-image: url(../img/ic_pfeil-rechts_24.svg);
}

.icons--next {
  background-position: 0px 0px !important;
  height: 24px !important;
  width: 24px !important;
}

.ogr-btn--cta span,
.ogr-btn--cta img {
  margin: 9px 0px 0px 0px !important;
}

.ogr-infolayer__element {
  font-size: 16px;
  color: #282828;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 700;
}

.col-8 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.ogr-label.ogr-infolayer__element {
  display: block;
  font-size: 16px;
  margin-block-start: 0;
  margin-block-end: var(--margin-sm);
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}

.checkbox-label>.ogr-label {
  font-weight: normal;
  margin-bottom: 0;
}

.ogr-row.form-field-input {
  margin-bottom: 0;
  margin-top: 0;
}

/* .grid + .ogr-row   {
  margin-bottom: var(--margin-md);
  background-color: #CC5100;
} */

.ogr-row {
  margin-bottom: var(--margin-sm) !important;
}

#firsth2 {
  margin-bottom: 16px !important;
}

.ogr-errorbox {
  border: 0px !important;
  border-left: 1px solid #E00000 !important;
  color: #E00000;
  background: #FFF0ED;
  padding: 24px 16px 24px 48px !important;
  width: 500px;
}

.ogr-errorbox h3 {
  font-size: 16px;
  color: #E00000;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 700;
}

.ogr-errorbox h4 {
  font-size: 16px;
  color: #E00000;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 700;
}

.ogr-errorbox li label {
  font-size: 16px;
  color: #E00000 !important;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}

.ogr-errorbox:before {
  background-image: url(../img/ic_warnschild_24.svg);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 22px;
  left: 12px;
  background-position: 0px 0px;
  height: 24px;
  width: 24px;
}

.ogr-notification--hint {
  border: 1px solid #E5E5E5;
  border-left: 2px solid #f60;
  padding: 24px 32px 24px 32px !important;
  background-color: #f7f7f7;
  max-width: 1600px;
}

.ogr-notification--hint p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.86);
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}

.ogr-notification--hint .icons.icons--hint {
  display: none !important;
}

.ogr-result {
  margin: 1.5rem 0 1rem 0;
  padding: 1.5rem 0 0 0;
}

.ogr-division,
.ogr-richtext .ogr-division {
  margin: 1.5rem 0 0;
  padding: 0 0 1.5rem;
}

.ogr-row--button {
  padding-top: 1.5rem;
}

.form-field-input input~.form-field-input-border,
.form-field-input textarea~.form-field-input-border,
.form-field-input select~.form-field-input-border {
  background-color: var(--vr-blue);
}