@font-face {
  font-family: "Maison Neue";
  src: url("/platform-content/themes/generic-2021/fonts/maisonneuebold-webfont.woff2") format("woff2"), url("/platform-content/themes/generic-2021/fonts/maisonneuebold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Maison Neue";
  src: url("/platform-content/themes/generic-2021/fonts/maisonneuebook-webfont.woff2") format("woff2"), url("/platform-content/themes/generic-2021/fonts/maisonneuebook-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.tns-nav {
  text-align: center;
}
.tns-nav button {
  margin: 0 5px;
  background: #ccc;
  border: 0;
  width: 24px;
  height: 2px;
}
.tns-nav button.tns-nav-active {
  background: #2A96CE;
}

.button {
  display: inline-block;
  margin: 0 10px 10px;
  padding: 15px 40px;
  color: white;
  font-size: 18px;
  line-height: 21px;
  font-weight: 300;
  background: #000;
  background-size: 100% 100%;
  border-radius: 55px;
  border: 0;
  transition: 0.1s all ease-out;
  outline: 0;
}
.button:hover, .button:focus {
  transform: scale(1.1);
}
.button:hover {
  background: var(--context-color);
  text-decoration: none;
}
.button:disabled {
  background: #ccc;
}
.button:disabled:hover {
  background: #ccc;
  transform: none;
}

form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
form.loading button {
  position: relative;
  text-indent: -99999em;
}
form.loading button:after {
  background: url("../../images/loading.svg") no-repeat 50% !important;
  background-size: auto 50% !important;
}
form.error input:not([type=checkbox]), form.error select, form.error textarea {
  background-color: rgba(255, 0, 0, 0.2) !important;
}
form .button-container {
  display: flex;
}
form .button-container input:not([type=checkbox]), form .button-container select, form .button-container textarea {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
[data-brand=remeha] form a {
  color: #000;
  text-decoration: underline;
}
[data-brand=broetje] form a {
  color: #fff;
  text-decoration: underline;
}
form label {
  display: block;
  margin: 0 0 10px;
  text-align: left;
  width: 100%;
  font-size: 14px;
}
form label span {
  display: block;
  margin: 0 0 5px;
  font-weight: 600;
}
form input:not([type=checkbox]), form select, form textarea {
  width: 100%;
  height: 56px;
  padding: 5px 15px;
  font-size: 20px;
  line-height: normal;
  color: #000;
  background: #fff;
  border: 0;
  border-radius: 1px;
  outline: 0;
}
@media (max-width: 680px) {
  form input:not([type=checkbox]), form select, form textarea {
    text-align: center;
  }
}
form input:not([type=checkbox]):-ms-input-placeholder, form select:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: gray;
}
form input:not([type=checkbox])::-moz-placeholder, form select::-moz-placeholder, form textarea::-moz-placeholder {
  color: gray;
}
form input:not([type=checkbox])::placeholder, form select::placeholder, form textarea::placeholder {
  color: gray;
}
form textarea {
  padding: 15px;
}
form input[type=checkbox] {
  margin: 3px 7px 5px 0;
  background: #2A96CE;
  outline: 0;
}

.form-column {
  padding: 0 20px 20px;
  width: 50%;
}
@media (max-width: 680px) {
  .form-column {
    padding: 0 0 20px;
    width: 100%;
  }
}

.checkbox {
  line-height: normal;
}

.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 10px;
  max-width: 90%;
}
.checkbox label span {
  font-weight: 400;
}

.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  left: 0;
  margin-left: -20px;
  border: 2px solid #000;
  border-radius: 50%;
  background-color: #fff;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
  display: inline-block;
  position: absolute;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
  line-height: 1.4;
}

.checkbox input[type=checkbox],
.checkbox input[type=radio] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.checkbox input[type=checkbox]:checked + label::after,
.checkbox input[type=radio]:checked + label::after {
  content: "";
  background: url("../../images/check-black.svg") no-repeat 50% 50%;
  border-radius: 50%;
  background-size: 10px;
}

.checkbox input[type=checkbox]:indeterminate + label::after,
.checkbox input[type=radio]:indeterminate + label::after {
  display: block;
  content: "";
  width: 10px;
  height: 3px;
  background-color: #555555;
  border-radius: 2px;
  margin-left: -16.5px;
  margin-top: 7px;
}

.checkbox input[type=checkbox]:disabled,
.checkbox input[type=radio]:disabled {
  cursor: not-allowed;
}

.checkbox input[type=checkbox]:disabled + label,
.checkbox input[type=radio]:disabled + label {
  opacity: 0.65;
}

.checkbox input[type=checkbox]:disabled + label::before,
.checkbox input[type=radio]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}

.checkbox.checkbox-inline {
  margin-top: 0;
}

.radio {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 20px;
}
.radio label {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 0;
}
.radio label:before {
  display: none;
}
.radio label input {
  margin: 3px 5px 5px 0;
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  max-width: 15px;
  max-height: 15px;
  opacity: 1 !important;
}
.radio label span {
  margin: 0;
  font-weight: normal;
}
.radio span {
  margin: 0 0 20px;
  font-weight: bold;
}

.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}

.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  transition: border 0.15s ease-in-out;
}

.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #555555;
  transform: scale(0, 0);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type=radio] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.radio input[type=radio]:checked + label::after {
  transform: scale(1, 1);
}

.radio input[type=radio]:disabled {
  cursor: not-allowed;
}

.radio input[type=radio]:disabled + label {
  opacity: 0.65;
}

.radio input[type=radio]:disabled + label::before {
  cursor: not-allowed;
}

.radio.radio-inline {
  margin-top: 0;
}

[data-brand=remeha] .checkbox input[type=checkbox]:checked + label::after, [data-brand=remeha] .checkbox input[type=radio]:checked + label::after {
  background-color: #ffcf00;
}
[data-brand=broetje] .checkbox input[type=checkbox]:checked + label::after, [data-brand=broetje] .checkbox input[type=radio]:checked + label::after {
  background-color: #da0a16;
}

.mandatory {
  margin: 0 0 0 2px;
  font-size: 16px;
  font-style: normal;
}