<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/**
 * Set value from map for each breakpoint
 *
 * @author FOURDEGREES
 * @param {string} $attribute  - css attribute 
 * @param {string} $map        - map with value for each breakpoint
 * @param {string} $before     - optional: string before value (needed for 'calc')
 * @param {string} $after      - optional: string after value
 */
/**
 * Animate a list of elements sequentially
 *
 * @author FOURDEGREES
 * @param {string} $target             - selector of animated item 
 * @param {number} $initialDelay = 0.3 - delay until animation begins
 * @param {number} $duration = 0.5     - duration for each animation
 * @param {number} $delay = 0.2        - delay between each animation
 * @param {number} $itemCount = 10     - number of animated items
 */
.form-label {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: bold;
}
.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  font-weight: bold;
  line-height: 1.5;
}
.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}
.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type="file"] {
  overflow: hidden;
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: black;
  outline: 0;
  box-shadow: none;
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #E20000;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #d70000;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #E20000;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #d70000;
}
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-lg {
  min-height: calc(1.5em + (1rem + 2px));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
textarea.form-control {
  min-height: calc(1.5em + (0.75rem + 2px));
}
textarea.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
}
textarea.form-control-lg {
  min-height: calc(1.5em + (1rem + 2px));
}
.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 4px;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 4px;
}
.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23E20000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 32px 24px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: black;
  outline: 0;
  box-shadow: none;
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}
.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}
.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 2.079em;
  margin-bottom: 0.825rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -2.079em;
}
.form-check-input {
  width: 1.579em;
  height: 1.579em;
  margin-top: -0.0395em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  color-adjust: exact;
  transition: all 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-check-input {
    transition: none;
  }
}
.form-check-input[type="checkbox"] {
  border-radius: none;
}
.form-check-input[type="radio"] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: black;
  outline: 0;
  box-shadow: none;
}
.form-check-input:checked {
  background-color: none;
  border-color: none;
}
.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='currentcolor'/%3e%3c/svg%3e");
}
.form-check-input[type="checkbox"]:indeterminate {
  background-color: #E20000;
  border-color: #E20000;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}
.form-switch {
  padding-left: 3.25em;
}
.form-switch .form-check-input {
  width: 2.75em;
  margin-left: -3.25em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3.75' fill='white'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2.75em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3.75' fill='white'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3.75' fill='white'/%3e%3c/svg%3e");
}
.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}
.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}
.form-range {
  width: 100%;
  height: 1rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, none;
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, none;
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #E20000;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #f6b3b3;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #E20000;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #f6b3b3;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.form-floating {
  position: relative;
}
.form-floating &gt; .form-control, .form-floating &gt; .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating &gt; label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating &gt; label {
    transition: none;
  }
}
.form-floating &gt; .form-control {
  padding: 1rem 0.75rem;
}
.form-floating &gt; .form-control::placeholder {
  color: transparent;
}
.form-floating &gt; .form-control:focus, .form-floating &gt; .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating &gt; .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating &gt; .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating &gt; .form-control:focus ~ label, .form-floating &gt; .form-control:not(:placeholder-shown) ~ label, .form-floating &gt; .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating &gt; .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group &gt; .form-control, .input-group &gt; .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group &gt; .form-control:focus, .input-group &gt; .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #E20000;
  border: 1px solid #E20000;
  border-radius: 4px;
}
.input-group-lg &gt; .form-control, .input-group-lg &gt; .form-select, .input-group-lg &gt; .input-group-text, .input-group-lg &gt; .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.input-group-sm &gt; .form-control, .input-group-sm &gt; .form-select, .input-group-sm &gt; .input-group-text, .input-group-sm &gt; .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.input-group-lg &gt; .form-select, .input-group-sm &gt; .form-select {
  padding-right: 3rem;
}
.input-group:not(.has-validation) &gt; :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), .input-group:not(.has-validation) &gt; .dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation &gt; :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), .input-group.has-validation &gt; .dropdown-toggle:nth-last-child(n + 4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group &gt; :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #71BF42;
}
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #000;
  background-color: rgba(113, 191, 66, 0.9);
  border-radius: 4px;
}
.was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip, .is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #71BF42;
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #71BF42;
  box-shadow: 0 0 0 0 rgba(113, 191, 66, 0.25);
}
.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #71BF42;
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #71BF42;
  box-shadow: 0 0 0 0 rgba(113, 191, 66, 0.25);
}
.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #71BF42;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #71BF42;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0 rgba(113, 191, 66, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #71BF42;
}
.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}
.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated .input-group .form-select:valid, .input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated .input-group .form-select:valid:focus, .input-group .form-select.is-valid:focus {
  z-index: 3;
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #E20000;
}
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(226, 0, 0, 0.9);
  border-radius: 4px;
}
.was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip, .is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #E20000;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #E20000;
  box-shadow: 0 0 0 0 rgba(226, 0, 0, 0.25);
}
.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #E20000;
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #E20000;
  box-shadow: 0 0 0 0 rgba(226, 0, 0, 0.25);
}
.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #E20000;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #E20000;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0 rgba(226, 0, 0, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #E20000;
}
.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}
.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated .input-group .form-select:invalid, .input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated .input-group .form-select:invalid:focus, .input-group .form-select.is-invalid:focus {
  z-index: 3;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 4px;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(226, 0, 0, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}
.btn-primary {
  color: #fff;
  background-color: #E20000;
  border-color: #E20000;
}
.btn-primary:hover {
  color: #fff;
  background-color: #c00000;
  border-color: #b50000;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: #c00000;
  border-color: #b50000;
  box-shadow: 0 0 0 0.25rem rgba(230, 38, 38, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show &gt; .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #b50000;
  border-color: #a00;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show &gt; .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(230, 38, 38, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background-color: #E20000;
  border-color: #E20000;
}
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show &gt; .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #565e64;
  border-color: #51585e;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show &gt; .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show &gt; .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #146c43;
  border-color: #13653f;
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show &gt; .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show &gt; .btn-info.dropdown-toggle {
  color: #000;
  background-color: #3dd5f3;
  border-color: #25cff2;
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show &gt; .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show &gt; .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show &gt; .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show &gt; .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show &gt; .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show &gt; .btn-light.dropdown-toggle {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show &gt; .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show &gt; .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show &gt; .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-outline-primary {
  color: #E20000;
  border-color: #E20000;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #E20000;
  border-color: #E20000;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(226, 0, 0, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #E20000;
  border-color: #E20000;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(226, 0, 0, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #E20000;
  background-color: transparent;
}
.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-success {
  color: #198754;
  border-color: #198754;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}
.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}
.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #212529;
  background-color: transparent;
}
.btn-link {
  font-weight: 400;
  color: #E20000;
  text-decoration: underline;
}
.btn-link:hover {
  color: #b50000;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}
.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.row &gt; * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}
.col {
  flex: 1 0 0%;
}
.row-cols-auto &gt; * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 &gt; * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 &gt; * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 &gt; * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.row-cols-4 &gt; * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 &gt; * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 &gt; * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto &gt; * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 &gt; * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 &gt; * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 &gt; * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 &gt; * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 &gt; * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 &gt; * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 769px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto &gt; * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 &gt; * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 &gt; * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 &gt; * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 &gt; * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 &gt; * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 &gt; * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1025px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto &gt; * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 &gt; * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 &gt; * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 &gt; * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 &gt; * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 &gt; * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 &gt; * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto &gt; * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 &gt; * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 &gt; * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 &gt; * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 &gt; * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 &gt; * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 &gt; * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1500px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto &gt; * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 &gt; * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 &gt; * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 &gt; * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 &gt; * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 &gt; * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 &gt; * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.offset-1 {
  margin-left: 8.3333333333%;
}
.offset-2 {
  margin-left: 16.6666666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.3333333333%;
}
.offset-5 {
  margin-left: 41.6666666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.3333333333%;
}
.offset-8 {
  margin-left: 66.6666666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.3333333333%;
}
.offset-11 {
  margin-left: 91.6666666667%;
}
.g-0, .gx-0 {
  --bs-gutter-x: 0;
}
.g-0, .gy-0 {
  --bs-gutter-y: 0;
}
.g-1, .gx-1 {
  --bs-gutter-x: 0.25rem;
}
.g-1, .gy-1 {
  --bs-gutter-y: 0.25rem;
}
.g-2, .gx-2 {
  --bs-gutter-x: 0.5rem;
}
.g-2, .gy-2 {
  --bs-gutter-y: 0.5rem;
}
.g-3, .gx-3 {
  --bs-gutter-x: 1rem;
}
.g-3, .gy-3 {
  --bs-gutter-y: 1rem;
}
.g-4, .gx-4 {
  --bs-gutter-x: 1.5rem;
}
.g-4, .gy-4 {
  --bs-gutter-y: 1.5rem;
}
.g-5, .gx-5 {
  --bs-gutter-x: 3rem;
}
.g-5, .gy-5 {
  --bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .g-sm-0, .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0, .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1, .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1, .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2, .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2, .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3, .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3, .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4, .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4, .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5, .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5, .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 769px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .g-md-0, .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0, .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1, .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1, .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2, .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2, .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3, .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3, .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4, .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4, .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5, .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5, .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1025px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .g-lg-0, .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0, .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1, .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1, .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2, .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2, .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3, .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3, .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4, .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4, .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5, .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5, .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xl-0, .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0, .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1, .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1, .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2, .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2, .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3, .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3, .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4, .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4, .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5, .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5, .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1500px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xxl-0, .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0, .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1, .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1, .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2, .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2, .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3, .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3, .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4, .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4, .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5, .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5, .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
/*!Ion.RangeSlider, 2.3.1, © Denis Ineshin, 2010 - 2019, IonDen.com, Build date: 2019-12-19 16:51:02*/
.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
  font-family: Arial, sans-serif;
}
.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important;
}
.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}
.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}
.irs-handle {
  position: absolute;
  display: block;
  box-sizing: border-box;
  cursor: default;
  z-index: 1;
}
.irs-handle.type_last {
  z-index: 2;
}
.irs-min, .irs-max {
  position: absolute;
  display: block;
  cursor: default;
}
.irs-min {
  left: 0;
}
.irs-max {
  right: 0;
}
.irs-from, .irs-to, .irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
}
.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}
.irs-with-grid .irs-grid {
  display: block;
}
.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}
.irs-grid-pol.small {
  height: 4px;
}
.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}
.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}
.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}
.irs-disabled {
  opacity: 0.4;
}
.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}
.irs--flat {
  height: 40px;
}
.irs--flat.irs-with-grid {
  height: 60px;
}
.irs--flat .irs-line {
  top: 25px;
  height: 12px;
  background-color: #e1e4e9;
  border-radius: 4px;
}
.irs--flat .irs-bar {
  top: 25px;
  height: 12px;
  background-color: #ed5565;
}
.irs--flat .irs-bar--single {
  border-radius: 4px 0 0 4px;
}
.irs--flat .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: #e1e4e9;
}
.irs--flat .irs-handle {
  top: 22px;
  width: 16px;
  height: 18px;
  background-color: transparent;
}
.irs--flat .irs-handle &gt; i:first-child {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background-color: #da4453;
}
.irs--flat .irs-handle.state_hover &gt; i:first-child, .irs--flat .irs-handle:hover &gt; i:first-child {
  background-color: #a43540;
}
.irs--flat .irs-min, .irs--flat .irs-max {
  top: 0;
  padding: 1px 3px;
  color: #999;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  background-color: #e1e4e9;
  border-radius: 4px;
}
.irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single {
  color: white;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #ed5565;
  border-radius: 4px;
}
.irs--flat .irs-from:before, .irs--flat .irs-to:before, .irs--flat .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #ed5565;
}
.irs--flat .irs-grid-pol {
  background-color: #e1e4e9;
}
.irs--flat .irs-grid-text {
  color: #999;
}
.irs--big {
  height: 55px;
}
.irs--big.irs-with-grid {
  height: 70px;
}
.irs--big .irs-line {
  top: 33px;
  height: 12px;
  background-color: white;
  background: linear-gradient(to bottom, #ddd -50%, white 150%);
  border: 1px solid #ccc;
  border-radius: 12px;
}
.irs--big .irs-bar {
  top: 33px;
  height: 12px;
  background-color: #92bce0;
  border: 1px solid #428bca;
  background: linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
  box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
}
.irs--big .irs-bar--single {
  border-radius: 12px 0 0 12px;
}
.irs--big .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: rgba(66, 139, 202, 0.5);
}
.irs--big .irs-handle {
  top: 25px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: #cbcfd5;
  background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
  border-radius: 30px;
}
.irs--big .irs-handle.state_hover, .irs--big .irs-handle:hover {
  border-color: rgba(0, 0, 0, 0.45);
  background-color: #939ba7;
  background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%);
}
.irs--big .irs-min, .irs--big .irs-max {
  top: 0;
  padding: 1px 5px;
  color: white;
  text-shadow: none;
  background-color: #9f9f9f;
  border-radius: 3px;
}
.irs--big .irs-from, .irs--big .irs-to, .irs--big .irs-single {
  color: white;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #428bca;
  background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
  border-radius: 3px;
}
.irs--big .irs-grid-pol {
  background-color: #428bca;
}
.irs--big .irs-grid-text {
  color: #428bca;
}
.irs--modern {
  height: 55px;
}
.irs--modern.irs-with-grid {
  height: 55px;
}
.irs--modern .irs-line {
  top: 25px;
  height: 5px;
  background-color: #d1d6e0;
  background: linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%);
  border: 1px solid #a3adc1;
  border-bottom-width: 0;
  border-radius: 5px;
}
.irs--modern .irs-bar {
  top: 25px;
  height: 5px;
  background: #20b426;
  background: linear-gradient(to bottom, #20b426 0%, #18891d 100%);
}
.irs--modern .irs-bar--single {
  border-radius: 5px 0 0 5px;
}
.irs--modern .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(209, 214, 224, 0.5);
}
.irs--modern .irs-handle {
  top: 37px;
  width: 12px;
  height: 13px;
  border: 1px solid #a3adc1;
  border-top-width: 0;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.irs--modern .irs-handle &gt; i:nth-child(1) {
  position: absolute;
  display: block;
  top: -4px;
  left: 1px;
  width: 6px;
  height: 6px;
  border: 1px solid #a3adc1;
  background: white;
  transform: rotate(45deg);
}
.irs--modern .irs-handle &gt; i:nth-child(2) {
  position: absolute;
  display: block;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 10px;
  height: 12px;
  background: #e9e6e6;
  background: linear-gradient(to bottom, white 0%, #e9e6e6 100%);
  border-radius: 0 0 3px 3px;
}
.irs--modern .irs-handle &gt; i:nth-child(3) {
  position: absolute;
  display: block;
  box-sizing: border-box;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 5px;
  border-left: 1px solid #a3adc1;
  border-right: 1px solid #a3adc1;
}
.irs--modern .irs-handle.state_hover, .irs--modern .irs-handle:hover {
  border-color: #7685a2;
  background: #c3c7cd;
  background: linear-gradient(to bottom, #ffffff 0%, #919ba5 30%, #ffffff 100%);
}
.irs--modern .irs-handle.state_hover &gt; i:nth-child(1), .irs--modern .irs-handle:hover &gt; i:nth-child(1) {
  border-color: #7685a2;
}
.irs--modern .irs-handle.state_hover &gt; i:nth-child(3), .irs--modern .irs-handle:hover &gt; i:nth-child(3) {
  border-color: #48536a;
}
.irs--modern .irs-min, .irs--modern .irs-max {
  top: 0;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  color: white;
  background-color: #d1d6e0;
  border-radius: 5px;
}
.irs--modern .irs-from, .irs--modern .irs-to, .irs--modern .irs-single {
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #20b426;
  color: white;
  border-radius: 5px;
}
.irs--modern .irs-from:before, .irs--modern .irs-to:before, .irs--modern .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #20b426;
}
.irs--modern .irs-grid {
  height: 25px;
}
.irs--modern .irs-grid-pol {
  background-color: #dedede;
}
.irs--modern .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.irs--sharp {
  height: 50px;
  font-size: 12px;
  line-height: 1;
}
.irs--sharp.irs-with-grid {
  height: 57px;
}
.irs--sharp .irs-line {
  top: 30px;
  height: 2px;
  background-color: black;
  border-radius: 2px;
}
.irs--sharp .irs-bar {
  top: 30px;
  height: 2px;
  background-color: #ee22fa;
}
.irs--sharp .irs-bar--single {
  border-radius: 2px 0 0 2px;
}
.irs--sharp .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(0, 0, 0, 0.5);
}
.irs--sharp .irs-handle {
  top: 25px;
  width: 10px;
  height: 10px;
  background-color: #a804b2;
}
.irs--sharp .irs-handle &gt; i:first-child {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #a804b2;
}
.irs--sharp .irs-handle.state_hover, .irs--sharp .irs-handle:hover {
  background-color: black;
}
.irs--sharp .irs-handle.state_hover &gt; i:first-child, .irs--sharp .irs-handle:hover &gt; i:first-child {
  border-top-color: black;
}
.irs--sharp .irs-min, .irs--sharp .irs-max {
  color: white;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 4px;
  opacity: 0.4;
  background-color: #a804b2;
  border-radius: 2px;
}
.irs--sharp .irs-from, .irs--sharp .irs-to, .irs--sharp .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 4px;
  background-color: #a804b2;
  color: white;
  border-radius: 2px;
}
.irs--sharp .irs-from:before, .irs--sharp .irs-to:before, .irs--sharp .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #a804b2;
}
.irs--sharp .irs-grid {
  height: 25px;
}
.irs--sharp .irs-grid-pol {
  background-color: #dedede;
}
.irs--sharp .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.irs--round {
  height: 50px;
}
.irs--round.irs-with-grid {
  height: 65px;
}
.irs--round .irs-line {
  top: 36px;
  height: 4px;
  background-color: #dee4ec;
  border-radius: 4px;
}
.irs--round .irs-bar {
  top: 36px;
  height: 4px;
  background-color: #006cfa;
}
.irs--round .irs-bar--single {
  border-radius: 4px 0 0 4px;
}
.irs--round .irs-shadow {
  height: 4px;
  bottom: 21px;
  background-color: rgba(222, 228, 236, 0.5);
}
.irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid #006cfa;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
}
.irs--round .irs-handle.state_hover, .irs--round .irs-handle:hover {
  background-color: #f0f6ff;
}
.irs--round .irs-min, .irs--round .irs-max {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: #006cfa;
  color: white;
  border-radius: 4px;
}
.irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #006cfa;
}
.irs--round .irs-grid {
  height: 25px;
}
.irs--round .irs-grid-pol {
  background-color: #dedede;
}
.irs--round .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.irs--square {
  height: 50px;
}
.irs--square.irs-with-grid {
  height: 60px;
}
.irs--square .irs-line {
  top: 31px;
  height: 4px;
  background-color: #dedede;
}
.irs--square .irs-bar {
  top: 31px;
  height: 4px;
  background-color: black;
}
.irs--square .irs-shadow {
  height: 2px;
  bottom: 21px;
  background-color: #dedede;
}
.irs--square .irs-handle {
  top: 25px;
  width: 16px;
  height: 16px;
  border: 3px solid black;
  background-color: white;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.irs--square .irs-handle.state_hover, .irs--square .irs-handle:hover {
  background-color: #f0f6ff;
}
.irs--square .irs-min, .irs--square .irs-max {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
}
.irs--square .irs-from, .irs--square .irs-to, .irs--square .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: black;
  color: white;
}
.irs--square .irs-grid {
  height: 25px;
}
.irs--square .irs-grid-pol {
  background-color: #dedede;
}
.irs--square .irs-grid-text {
  color: silver;
  font-size: 11px;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: local(""), url("../Fonts/roboto-v27-latin-300.woff2") format("woff2"), url("../Fonts/roboto-v27-latin-300.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: local(""), url("../Fonts/roboto-v27-latin-regular.woff2") format("woff2"), url("../Fonts/roboto-v27-latin-regular.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: local(""), url("../Fonts/roboto-v27-latin-500.woff2") format("woff2"), url("../Fonts/roboto-v27-latin-500.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: local(""), url("../Fonts/roboto-v27-latin-700.woff2") format("woff2"), url("../Fonts/roboto-v27-latin-700.woff") format("woff");
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-display: swap;
  src: local(""), url("../Fonts/roboto-slab-v13-latin-700.woff2") format("woff2"), url("../Fonts/roboto-slab-v13-latin-700.woff") format("woff");
}
@font-face {
  font-family: "icomoon";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../Fonts/icomoon.woff2") format("woff2"), url("../Fonts/icomoon.woff") format("woff");
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon--arrowLink:before {
  content: "";
}
.icon--arrowHouse:before {
  content: "";
}
.icon--avatar:before {
  content: "";
}
.icon--avatarClick:before {
  content: "";
}
.icon--avatarPin:before {
  content: "";
}
.icon--battery:before {
  content: "";
}
.icon--bin:before {
  content: "";
}
.icon--burgerMenu:before {
  content: "";
}
.icon--chat:before {
  content: "";
}
.icon--check:before {
  content: "";
}
.icon--chevronDown:before {
  content: "";
}
.icon--chevronLeft:before {
  content: "";
}
.icon--chevronRight:before {
  content: "";
}
.icon--chevronUp:before {
  content: "";
}
.icon--close:before {
  content: "";
}
.icon--coins:before {
  content: "";
}
.icon--degree360:before {
  content: "";
}
.icon--distance:before {
  content: "";
}
.icon--documentPen:before {
  content: "";
}
.icon--door:before {
  content: "";
}
.icon--dots:before {
  content: "";
}
.icon--download:before {
  content: "";
}
.icon--flag:before {
  content: "";
}
.icon--flor:before {
  content: "";
}
.icon--grid:before {
  content: "";
}
.icon--groundplan:before {
  content: "";
}
.icon--house:before {
  content: "";
}
.icon--houseEco:before {
  content: "";
}
.icon--housePen:before {
  content: "";
}
.icon--info:before {
  content: "";
}
.icon--instagram:before {
  content: "";
}
.icon--layout:before {
  content: "";
}
.icon--list:before {
  content: "";
}
.icon--listFilter:before {
  content: "";
}
.icon--location:before {
  content: "";
}
.icon--nothing:before {
  content: "";
}
.icon--paperplane:before {
  content: "";
}
.icon--pen:before {
  content: "";
}
.icon--phone:before {
  content: "";
}
.icon--plus:before {
  content: "";
}
.icon--refresh:before {
  content: "";
}
.icon--search:before {
  content: "";
}
.icon--share:before {
  content: "";
}
.icon--shovel:before {
  content: "";
}
.icon--facebook:before {
  content: "";
}
.icon--pinterest:before {
  content: "";
}
.icon--twitter:before {
  content: "";
}
.icon--youtube:before {
  content: "";
}
.icon--squareMeters:before {
  content: "";
}
.icon--upload:before {
  content: "";
}
.icon--email:before {
  content: "";
}
.icon--anchorArrow:before {
  content: "";
}
.icon--mobile:before {
  content: "";
}
.icon--fax:before {
  content: "";
}
.icon--tiktok:before {
  content: "";
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  font-family: inherit;
}
ul, ol {
  list-style: none;
}
li, p, .image {
  break-inside: avoid;
}
.image img {
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
main {
  display: block;
}
button, .btn {
  background-color: transparent;
  border: none;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  cursor: pointer;
}
input, textarea {
  border: none;
  background-color: transparent;
  font-size: inherit;
}
fieldset {
  border: none;
}
label {
  display: inline-block;
}
[hidden] {
  display: none !important;
}
html {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  font-weight: 400;
}
@media (min-width: 1025px) {
  html {
    font-size: 19px;
    line-height: 1.5;
  }
}
strong {
  font-weight: bold;
}
.hyphenation {
  hyphens: auto;
}
h1, .headline--xl, .housetypesDetail__headerMobile {
  font-weight: bold;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 0.8em;
  color: #E20000;
}
@media (min-width: 576px) {
  h1, .headline--xl, .housetypesDetail__headerMobile {
    font-size: 28px;
  }
}
@media (min-width: 769px) {
  h1, .headline--xl, .housetypesDetail__headerMobile {
    font-size: 38px;
  }
}
@media (min-width: 1025px) {
  h1, .headline--xl, .housetypesDetail__headerMobile {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  h1, .headline--xl, .housetypesDetail__headerMobile {
    font-size: 38px;
  }
}
@media (min-width: 1500px) {
  h1, .headline--xl, .housetypesDetail__headerMobile {
    font-size: 38px;
  }
}
h2, .headline--lg {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 0.8em;
  color: #E20000;
}
@media (min-width: 576px) {
  h2, .headline--lg {
    font-size: 24px;
  }
}
@media (min-width: 769px) {
  h2, .headline--lg {
    font-size: 28px;
  }
}
@media (min-width: 1025px) {
  h2, .headline--lg {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  h2, .headline--lg {
    font-size: 28px;
  }
}
@media (min-width: 1500px) {
  h2, .headline--lg {
    font-size: 28px;
  }
}
h3, .headline--md {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 0.8em;
  color: #E20000;
}
@media (min-width: 576px) {
  h3, .headline--md {
    font-size: 24px;
  }
}
@media (min-width: 769px) {
  h3, .headline--md {
    font-size: 28px;
  }
}
@media (min-width: 1025px) {
  h3, .headline--md {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  h3, .headline--md {
    font-size: 28px;
  }
}
@media (min-width: 1500px) {
  h3, .headline--md {
    font-size: 28px;
  }
}
h4, .text--medium, .headline--sm {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 0.8em;
  color: #E20000;
}
@media (min-width: 576px) {
  h4, .text--medium, .headline--sm {
    font-size: 22px;
  }
}
@media (min-width: 769px) {
  h4, .text--medium, .headline--sm {
    font-size: 24px;
  }
}
@media (min-width: 1025px) {
  h4, .text--medium, .headline--sm {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  h4, .text--medium, .headline--sm {
    font-size: 24px;
  }
}
@media (min-width: 1500px) {
  h4, .text--medium, .headline--sm {
    font-size: 24px;
  }
}
h5, .headline--xs, .cardPartner__subHeadline, .cardPartner__headline3 {
  font-weight: bold;
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 0.8em;
  color: #E20000;
}
@media (min-width: 576px) {
  h5, .headline--xs, .cardPartner__subHeadline, .cardPartner__headline3 {
    font-size: 19px;
  }
}
@media (min-width: 769px) {
  h5, .headline--xs, .cardPartner__subHeadline, .cardPartner__headline3 {
    font-size: 19px;
  }
}
@media (min-width: 1025px) {
  h5, .headline--xs, .cardPartner__subHeadline, .cardPartner__headline3 {
    font-size: 19px;
  }
}
@media (min-width: 1200px) {
  h5, .headline--xs, .cardPartner__subHeadline, .cardPartner__headline3 {
    font-size: 19px;
  }
}
@media (min-width: 1500px) {
  h5, .headline--xs, .cardPartner__subHeadline, .cardPartner__headline3 {
    font-size: 19px;
  }
}
h6, .text--caption {
  font-weight: bold;
  font-size: 11px;
  line-height: 1.2;
  margin-bottom: 0.8em;
  color: #E20000;
}
@media (min-width: 576px) {
  h6, .text--caption {
    font-size: 11px;
  }
}
@media (min-width: 769px) {
  h6, .text--caption {
    font-size: 13px;
  }
}
@media (min-width: 1025px) {
  h6, .text--caption {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  h6, .text--caption {
    font-size: 13px;
  }
}
@media (min-width: 1500px) {
  h6, .text--caption {
    font-size: 13px;
  }
}
.ce-headline-center, .text-center {
  text-align: center;
}
.ce-headline-right, .text-right {
  text-align: right;
}
.ce-headline-left, .text-left {
  text-align: left;
}
.content--center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
p, ul, ol {
  font-size: 19px;
  font-weight: 300;
}
sup, sub {
  font-size: 70%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}
sub {
  top: 0.25em;
}
.text {
  font-size: 16px;
}
.text--medium {
  font-size: 19px;
}
.text--large {
  font-weight: 500;
  line-height: 1.3;
  font-size: 22px;
}
@media (min-width: 576px) {
  .text--large {
    font-size: 22px;
  }
}
@media (min-width: 769px) {
  .text--large {
    font-size: 24px;
  }
}
@media (min-width: 1025px) {
  .text--large {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .text--large {
    font-size: 24px;
  }
}
@media (min-width: 1500px) {
  .text--large {
    font-size: 24px;
  }
}
.rte p:not(:last-child), .rte ul:not(:last-child), .rte ol:not(:last-child), .cke_editable p:not(:last-child), .cke_editable ul:not(:last-child), .cke_editable ol:not(:last-child) {
  margin-bottom: 1.5rem;
}
.list {
  margin-left: 0.5rem;
}
.list li {
  padding: 0.375rem 0;
  line-height: 1.3;
  font-weight: 300;
}
.list--numbered li, .rte ol li, .cke_editable ol li {
  position: relative;
  margin-left: 2.5rem;
  margin-block: 0.5em;
  counter-increment: counter;
  font-weight: 300;
}
.list--numbered li::before, .rte ol li::before, .cke_editable ol li::before {
  content: counter(counter);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -0.15rem;
  width: 1rem;
  height: 1rem;
  color: #E20000;
  background: #00000009;
  margin-left: -2.75em;
  border: 0.25em solid #00000010;
  border-radius: 100em;
  font-size: 0.9em;
  font-weight: bold;
  padding: 0.2rem;
}
.list--bold {
  font-weight: bold;
}
.list--bullet li, .list-normal li {
  padding-left: 1em;
  text-indent: -0.96em;
  font-weight: 300;
}
.list--bullet li::before, .list-normal li::before {
  display: inline-block;
  color: #0000;
  font-weight: bold;
  font-size: 0.75em;
  content: "";
  background: #E20000;
  width: 0.75em;
  height: 4px;
  vertical-align: middle;
  margin-right: 0.5em;
}
.list--checkmark li {
  margin-left: 2.5rem;
  font-weight: 300;
}
.list--checkmark li::before {
  position: relative;
  top: 0.1em;
  font-family: icomoon;
  content: "";
  color: #E20000;
  padding-right: 1em;
  margin-left: -2em;
}
body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.section-default {
  max-width: 1366px;
  margin: 0 auto;
}
.content {
  flex-grow: 1;
  position: relative;
  background-color: #FFF;
  z-index: 10;
  margin-top: 70px;
}
@media (min-width: 576px) {
  .content {
    margin-top: 70px;
  }
}
@media (min-width: 769px) {
  .content {
    margin-top: 70px;
  }
}
@media (min-width: 1025px) {
  .content {
    margin-top: 180px;
  }
}
@media (min-width: 1200px) {
  .content {
    margin-top: 180px;
  }
}
@media (min-width: 1500px) {
  .content {
    margin-top: 235px;
  }
}
body.root .content {
  margin-top: 70px;
}
@media (min-width: 576px) {
  body.root .content {
    margin-top: 70px;
  }
}
@media (min-width: 769px) {
  body.root .content {
    margin-top: 70px;
  }
}
@media (min-width: 1025px) {
  body.root .content {
    margin-top: 120px;
  }
}
@media (min-width: 1200px) {
  body.root .content {
    margin-top: 120px;
  }
}
@media (min-width: 1500px) {
  body.root .content {
    margin-top: 175px;
  }
}
.container, .frame-container, .header__container, .footer__container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: 1366px;
}
.frame-container {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 576px) {
  .frame-container {
    padding-left: 32px;
  }
}
@media (min-width: 769px) {
  .frame-container {
    padding-left: 42px;
  }
}
@media (min-width: 1025px) {
  .frame-container {
    padding-left: 42px;
  }
}
@media (min-width: 1200px) {
  .frame-container {
    padding-left: 42px;
  }
}
@media (min-width: 1500px) {
  .frame-container {
    padding-left: 42px;
  }
}
@media (min-width: 576px) {
  .frame-container {
    padding-right: 32px;
  }
}
@media (min-width: 769px) {
  .frame-container {
    padding-right: 42px;
  }
}
@media (min-width: 1025px) {
  .frame-container {
    padding-right: 42px;
  }
}
@media (min-width: 1200px) {
  .frame-container {
    padding-right: 42px;
  }
}
@media (min-width: 1500px) {
  .frame-container {
    padding-right: 42px;
  }
}
.frame-container--center {
  justify-content: center;
}
.frame-type-text .frame-container, .frame-type-textmedia .frame-container, .frame-type-html .frame-container, .frame-textIndent .frame-container {
  max-width: 1174px;
}
/* width */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #C1C1C1;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #C1C1C1;
}
.preload {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}
.frame {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .frame {
    padding-top: 32px;
  }
}
@media (min-width: 769px) {
  .frame {
    padding-top: 42px;
  }
}
@media (min-width: 1025px) {
  .frame {
    padding-top: 42px;
  }
}
@media (min-width: 1200px) {
  .frame {
    padding-top: 42px;
  }
}
@media (min-width: 1500px) {
  .frame {
    padding-top: 60px;
  }
}
@media (min-width: 576px) {
  .frame {
    padding-bottom: 32px;
  }
}
@media (min-width: 769px) {
  .frame {
    padding-bottom: 42px;
  }
}
@media (min-width: 1025px) {
  .frame {
    padding-bottom: 42px;
  }
}
@media (min-width: 1200px) {
  .frame {
    padding-bottom: 42px;
  }
}
@media (min-width: 1500px) {
  .frame {
    padding-bottom: 60px;
  }
}
.frame-space-after--half {
  padding-bottom: 10px;
}
@media (min-width: 576px) {
  .frame-space-after--half {
    padding-bottom: 15px;
  }
}
@media (min-width: 769px) {
  .frame-space-after--half {
    padding-bottom: 15px;
  }
}
@media (min-width: 1025px) {
  .frame-space-after--half {
    padding-bottom: 15px;
  }
}
@media (min-width: 1200px) {
  .frame-space-after--half {
    padding-bottom: 20px;
  }
}
@media (min-width: 1500px) {
  .frame-space-after--half {
    padding-bottom: 20px;
  }
}
.frame-space-before--half {
  padding-top: 10px;
}
@media (min-width: 576px) {
  .frame-space-before--half {
    padding-top: 15px;
  }
}
@media (min-width: 769px) {
  .frame-space-before--half {
    padding-top: 15px;
  }
}
@media (min-width: 1025px) {
  .frame-space-before--half {
    padding-top: 15px;
  }
}
@media (min-width: 1200px) {
  .frame-space-before--half {
    padding-top: 20px;
  }
}
@media (min-width: 1500px) {
  .frame-space-before--half {
    padding-top: 20px;
  }
}
.frame-space-after--double {
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  .frame-space-after--double {
    padding-bottom: 60px;
  }
}
@media (min-width: 769px) {
  .frame-space-after--double {
    padding-bottom: 60px;
  }
}
@media (min-width: 1025px) {
  .frame-space-after--double {
    padding-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .frame-space-after--double {
    padding-bottom: 75px;
  }
}
@media (min-width: 1500px) {
  .frame-space-after--double {
    padding-bottom: 75px;
  }
}
.frame-space-before--double {
  padding-top: 40px;
}
@media (min-width: 576px) {
  .frame-space-before--double {
    padding-top: 60px;
  }
}
@media (min-width: 769px) {
  .frame-space-before--double {
    padding-top: 60px;
  }
}
@media (min-width: 1025px) {
  .frame-space-before--double {
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  .frame-space-before--double {
    padding-top: 75px;
  }
}
@media (min-width: 1500px) {
  .frame-space-before--double {
    padding-top: 75px;
  }
}
.frame-space-before--none {
  padding-top: 0 !important;
}
.frame-space-before--negative {
  padding-top: 0 !important;
}
@media (min-width: 576px) {
  .frame-space-before--negative {
    margin-top: -60px;
  }
}
.frame-space-after--none {
  padding-bottom: 0;
}
.frame-space-after--paragraph {
  padding-bottom: 1.5rem;
}
.frame-space-after--paragraph + .frame {
  padding-top: 0;
}
.frame-container {
  display: flex;
  justify-content: center;
}
.frame-container .frame-inner, .frame-container .header__inner, .frame-container .footer__row {
  width: 100%;
  position: relative;
}
@media (min-width: 1200px) {
  .frame-default .frame-inner, .frame-default .header__inner, .frame-default .footer__row {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .frame-indent .frame-container .frame-inner, .frame-indent .frame-container .header__inner, .frame-indent .frame-container .footer__row {
    width: 79.5%;
  }
}
@media (min-width: 769px) {
  .frame-indent--right .frame-container {
    justify-content: flex-start;
  }
}
@media (min-width: 769px) {
  .frame-indent--right .frame-inner, .frame-indent--right .header__inner, .frame-indent--right .footer__row {
    width: 72%;
  }
}
.frame-backgroundimage-container {
  margin: 0 auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  max-width: 1366px;
}
.frame-backgroundimage-container .frame-backgroundimage {
  width: 100%;
  background-size: cover;
  background-position: bottom right;
}
.frame-background-lightGrey {
  background-color: #F1F4EE;
}
.frame-background-gradient, .search {
  background: transparent linear-gradient(180deg, #FFF 0%, #F1F4EE 100%);
}
.row.row--padded-cols &gt; * {
  padding-bottom: 1rem;
}
.gridbox {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.gridbox__item {
  padding: 10px;
}
.gridbox &gt; * {
  width: 100%;
}
.gridbox--col2 &gt; * {
  width: 100%;
}
@media (min-width: 576px) {
  .gridbox--col2 &gt; * {
    width: 50%;
  }
}
@media (min-width: 769px) {
  .gridbox--col2 .card .card__headline {
    font-size: 28px;
  }
}
.gridbox--col2 .cardImgLeft .card__headline {
  font-size: 19px;
  line-height: 1;
}
.gridbox--col3 &gt; * {
  width: 100%;
}
@media (min-width: 576px) {
  .gridbox--col3 &gt; * {
    width: 50%;
  }
}
@media (min-width: 769px) {
  .gridbox--col3 &gt; * {
    width: 33.333333%;
  }
}
.gridbox--col4 &gt; * {
  width: 100%;
}
@media (min-width: 576px) {
  .gridbox--col4 &gt; * {
    width: 50%;
  }
}
@media (min-width: 769px) {
  .gridbox--col4 &gt; * {
    width: 33.333333%;
  }
}
@media (min-width: 1200px) {
  .gridbox--col4 &gt; * {
    width: 25%;
  }
}
.gridbox--asym {
  display: block;
}
@media (min-width: 1025px) {
  .gridbox--asym {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (min-width: 1025px) {
  .gridbox--asym {
    display: flex;
    width: auto;
  }
  .gridbox--asym &gt; *:nth-child(odd) {
    width: 70%;
    max-width: 910px;
  }
  .gridbox--asym &gt; *:nth-child(even) {
    width: 30%;
  }
}
@media (min-width: 576px) {
  .column--col2 {
    columns: 2;
  }
  .column--col3 {
    columns: 3;
  }
  .column--col4 {
    columns: 4;
  }
  .column &gt; * {
    page-break-inside: avoid;
    break-inside: avoid;
  }
}
.flex {
  display: flex;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--rows {
  flex-direction: row;
}
.flex--cols {
  flex-direction: column;
}
.flex--gap {
  gap: 1rem;
}
.flex--end {
  justify-content: flex-end;
}
.flex--centered {
  justify-content: center;
}
.flex--spaceBetween {
  justify-content: space-between;
}
.flex--spaceAround {
  justify-content: space-around;
}
.flex--spaceEvenly {
  justify-content: space-evenly;
}
.avatar {
  border: 2px solid #E6E6E6;
  border-radius: 50%;
  object-fit: cover;
  width: 55px;
  height: 55px;
}
.avatar--l {
  border-width: 3px;
  width: 82.5px;
  height: 82.5px;
}
.avatar--xl {
  border-width: 4px;
  width: 110px;
  height: 110px;
}
.avatar--xxl {
  border-width: 8px;
  width: 180px;
  height: 180px;
}
.avatarbox {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
}
.avatarbox__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}
.avatarbox__name {
  font-family: Roboto Slab, serif;
  color: #71BF42;
  display: block;
}
.avatarbox__subtext {
  display: block;
}
.badge, .tagFilter__button {
  font-family: Roboto Slab, serif;
  font-size: 16px;
  color: #FFF;
  border-radius: 1600px;
  padding: 8px 16px;
  width: fit-content;
  display: block;
}
.badge--green {
  background-color: #76B82A;
}
.badge--red {
  background-color: #E20000;
}
.badge--grey {
  background-color: #E5E5E5;
  color: #E20000;
}
.badge--greenTag {
  background-color: #76B82A;
  font-family: Roboto, sans-serif;
  text-transform: uppercase;
}
.badge--redTag {
  background-color: #E20000;
  font-family: Roboto, sans-serif;
  text-transform: uppercase;
}
.badge--greyTag {
  background-color: #E5E5E5;
  color: #E20000;
}
.badge--round {
  background-color: #76B82A;
  font-size: 22px;
  box-shadow: 0 0 0 0.5em rgba(118, 184, 42, 0.5);
  width: 170px;
  height: 170px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  transform: rotate(15deg);
}
.tagFilter {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .tagFilter {
    margin-bottom: 30px;
  }
}
.tagFilter__button {
  font-family: Roboto, sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: #E6E6E6;
  color: #333;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 576px) {
  .tagFilter__button {
    width: fit-content;
  }
}
.tagFilter__button i {
  font-size: 21px;
  display: none;
  padding-left: 10px;
}
.tagFilter__button--active {
  padding-left: 30px;
  padding-right: 30px;
  color: #FFF;
  background-color: #E20000;
}
.tagFilter__button--active i {
  display: block;
}
.breadcrumb {
  font-family: Roboto, sans-serif;
  font-weight: 300;
}
.breadcrumb li {
  color: #333;
  cursor: pointer;
  display: inline-block;
}
.breadcrumb li i {
  color: #E20000;
  font-size: 12.8px;
  padding: 0 8px;
  font-weight: bold;
}
.breadcrumb li:hover {
  color: #E20000;
}
.breadcrumb li:last-child {
  pointer-events: none;
  font-weight: 600;
}
.breadcrumb li:last-child i {
  display: none;
}
.btn {
  font-family: Roboto, sans-serif !important;
  font-size: 14px;
  color: #FFF;
  background-color: #E20000;
  border-radius: 4.6666666667px;
  padding: 14px 24px;
  transition: all 0.3s linear;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  width: 100%;
  pointer-events: all;
}
@media (min-width: 576px) {
  .btn {
    width: fit-content;
  }
}
.btn:hover {
  color: #FFF;
  background-color: #B20000;
}
.btn--round {
  border-radius: 50% !important;
  width: 34px;
  height: 34px;
  box-shadow: 0 0 0 0.2em rgba(226, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--l {
  padding: 21px 24px;
}
.btn--xl {
  font-size: 21px;
  padding: 28px 24px;
}
.btn--iconL {
  font-size: 21px;
}
.btn--iconXL {
  font-size: 28px;
}
.btn--iconInv, .btn--iconInvL, .btn--iconInvXL, .btn--alphabet {
  color: #E20000;
  background-color: #FFF;
  padding: 0.25em;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5) !important;
  border-radius: 0;
  border: none;
}
.btn--iconInvL {
  font-size: 21px;
}
.btn--iconInvXL {
  font-size: 28px;
}
.btn--iconText, .btn--iconTextL, .btn--iconTextXL {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--iconText span, .btn--iconTextL span, .btn--iconTextXL span {
  padding-left: 0.6em;
  padding-top: 0.1em;
}
.btn--iconText i, .btn--iconTextL i, .btn--iconTextXL i {
  font-size: 1.5em;
}
.btn--iconText.hideText, .hideText.btn--iconTextL, .hideText.btn--iconTextXL {
  padding-left: 14px;
  padding-right: 14px;
}
.btn--iconText.hideText span, .hideText.btn--iconTextL span, .hideText.btn--iconTextXL span {
  display: none;
}
.btn--iconTextL {
  padding: 21px 24px;
}
.btn--iconTextL i {
  font-size: 21px;
}
.btn--iconTextXL {
  padding: 28px 24px;
  font-size: 21px;
}
.btn--iconTextXL i {
  font-size: 28px;
}
.btn--light {
  background-color: #FFF;
  color: #333;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}
.btn--light:hover {
  background-color: #E6E6E6;
  box-shadow: none;
  color: #1F1E1E;
}
.btn--dark {
  background-color: #333;
  color: #FFF;
}
.btn--dark:hover {
  background-color: #1F1E1E;
}
.btn--arrow {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn--arrow::after {
  padding-left: 1ex;
  color: #E20000;
  font-size: 14.4px;
  font-family: "icomoon";
  content: "";
  position: relative;
  left: 0;
  transition: left 0.1s linear;
}
.btn--arrow:hover {
  color: #E20000;
}
.btn--arrow:hover::after {
  left: 8px;
}
.btn--arrow i {
  display: none;
}
.btn--iconLeft {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}
.btn--iconLeft i {
  color: #E20000;
  padding-left: 0;
  padding-right: 4px;
  font-weight: normal;
}
.btn--iconLeft:hover {
  color: #E20000;
}
.btn--iconLeft:hover i::before {
  left: 0;
}
.btn--alphabet {
  font-size: 19px;
  text-transform: none;
  height: 40px;
  width: 40px;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  color: #333;
}
.btn--alphabet.btn--active {
  color: #FFF;
  background: #E20000;
}
.btn--tile {
  background: #E6E6E6;
  color: #1F1E1E;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  font-weight: initial;
  text-transform: initial;
  font-size: 1rem;
  line-height: 1.2;
  padding: 10px;
}
.btn--tile i {
  font-size: calc(.5rem + 5vw);
}
@media (min-width: 576px) {
  .btn--tile i {
    font-size: 3rem;
  }
}
.btn--tile:hover, .btn--tile:focus, .btn--tile:active, .btn--tileHighlighted {
  background-color: #71BF42;
  color: #FFF;
}
.btn--download {
  padding-left: 35px;
  padding-right: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  transition: all 0.3s;
}
.btn--download:hover {
  color: #E20000;
}
.btn--download::before {
  content: "";
  font-family: "icomoon";
  color: #E20000;
  font-weight: normal;
  font-size: 25px;
  position: absolute;
  left: 0;
  top: -9px;
}
.bubble {
  position: relative;
  padding: 1rem;
  background: #FFF;
  border-radius: 0.5rem;
  filter: drop-shadow(0 0 0.25rem #0005);
}
.bubble:after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 0.75rem;
  background: inherit;
  position: absolute;
  bottom: -0.7rem;
  left: calc(66.666% - 2rem / 2);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.catcher {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--bg-url) no-repeat center top 1rem;
  background-size: auto 6rem;
  padding: 8rem 1rem 1rem;
}
.catcher__large {
  font-size: 1.5rem;
  font-weight: bold;
}
.catcher__small {
  font-size: 1rem;
}
.catcher__link {
  margin-top: 1rem;
}
.catcher--left {
  text-align: start;
  padding: 1rem 1rem 1rem 8rem;
  background: var(--bg-url) no-repeat 1rem center;
  background-size: auto 6rem;
  min-height: 6rem;
}
.catcher--check {
  background: none;
  padding: 1rem;
}
.catcher--check .catcher__large {
  font-size: 1rem;
}
.catcher--check::before {
  content: "";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  color: #E20000;
}
.catcher--left.catcher--check {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
}
.catcher--left.catcher--check::before {
  position: absolute;
  left: 1.5rem;
}
.deflist div {
  display: flex;
  align-items: baseline;
}
.deflist div i {
  font-size: 20px;
  padding-right: 5px;
  display: inline-block;
  min-width: 30px;
}
.deflist--table {
  display: table;
  border-collapse: separate;
  width: 100%;
}
.deflist--table div {
  display: table-row;
}
.deflist--table div:last-child dd::after, .deflist--table div:last-child dt::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
  position: absolute;
  bottom: 0;
  left: 0;
}
.deflist--table dd, .deflist--table dt {
  position: relative;
  display: table-cell;
  padding-top: 15px;
  padding-bottom: 15px;
}
.deflist--table dd::before, .deflist--table dt::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
  position: absolute;
  top: 0;
  left: 0;
}
.deflist--table dt {
  font-weight: bold;
  padding-right: 10px;
}
.deflist--table i {
  margin-right: 20px;
}
.deflist--small dd {
  text-align: right;
}
.deflist--small dd, .deflist--small dt {
  font-size: 17px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.deflist__sum dd, .deflist__sum dt {
  padding-top: 15px;
}
.deflist__sum dd::before, .deflist__sum dt::before {
  background-color: #666;
}
.download {
  display: inline-block;
  width: 100%;
  color: inherit;
  background: #fff;
  box-shadow: 0 0.125rem 0.375rem #0003;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  line-height: 1.3;
  transition: box-shadow 0.2s;
  margin: 0.5rem 0;
  position: relative;
}
.download__filename {
  font-weight: 700;
}
.download__meta {
  font-weight: 300;
  font-size: 90%;
}
.download::before {
  transition: background-color 0.2s;
  font-family: icomoon;
  content: "";
  font-size: 1.5rem;
  position: absolute;
  display: flex;
  background-color: #E20000;
  width: 3.5rem;
  height: 100%;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: #FFF;
  border-radius: 0 0.25rem 0.25rem 0;
  bottom: 0;
  right: 0;
}
.download:hover {
  box-shadow: 0 0.125rem 0.375rem #0006;
}
.download:hover::before {
  background-color: #B20000;
}
p &gt; a:not(.btn):not(.btn--arrow):not(.download), p &gt; strong &gt; a:not(.btn):not(.btn--arrow):not(.download), p &gt; em &gt; a:not(.btn):not(.btn--arrow):not(.download), .rte li &gt; a:not(.btn):not(.btn--arrow):not(.download), .cke_editable li &gt; a:not(.btn):not(.btn--arrow):not(.download) {
  cursor: pointer;
  color: #E20000;
  text-decoration: none;
  transition: background-size 0.3s ease-in;
  background-image: linear-gradient(to right, #E20000, #E20000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  padding-bottom: 2px;
}
p &gt; a:not(.btn):not(.btn--arrow):not(.download):hover, p &gt; strong &gt; a:not(.btn):not(.btn--arrow):not(.download):hover, p &gt; em &gt; a:not(.btn):not(.btn--arrow):not(.download):hover, .rte li &gt; a:not(.btn):not(.btn--arrow):not(.download):hover, .cke_editable li &gt; a:not(.btn):not(.btn--arrow):not(.download):hover {
  background-size: 100% 1px;
}
.link {
  cursor: pointer;
  color: #E20000;
  text-decoration: none;
  transition: background-size 0.3s ease-in;
  background-image: linear-gradient(to right, #E20000, #E20000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  padding-bottom: 2px;
}
.link:hover {
  background-size: 100% 1px;
}
.headline {
  font-weight: bold;
}
.headline--black {
  color: #333;
}
.headline--secondary {
  color: #71BF42;
}
.headline--centered {
  text-align: center;
}
.headline--hidden {
  display: none;
}
.checkbox label {
  display: flex;
}
.checkbox label p {
  font-size: 12px;
}
.form-check-input {
  flex-shrink: 0;
  margin-right: 0.5em;
}
.form-check-input.is-valid {
  background-color: white !important;
}
.form-check-input.is-invalid {
  background-color: white !important;
}
.form-check-label {
  font-weight: bold;
}
form .div {
  margin: 1rem;
}
.form-label-required::after {
  content: "*";
}
.form-switch .form-check-input {
  height: 1.5em;
  background-color: #333;
}
.form-switch .form-check-input:checked {
  background-color: #71BF42;
}
.form-buttons {
  text-align: right;
  border-top: 1px solid #0002;
  padding-top: 1rem;
  margin-top: 1rem;
}
.form-buttons &gt; *:first-child {
  margin-right: 1rem;
}
fieldset:not(:first-child) {
  margin-top: 1rem;
}
fieldset legend.headline {
  margin-bottom: 1rem;
}
.powermail_form .powermail_message {
  padding-block: 1rem;
  border: 1px solid;
  border-radius: 0.25rem;
  font-size: 0.9rem;
}
.powermail_form .powermail_message.powermail_message_error {
  border-color: #E20000;
  background: #ffe2e2;
  color: #af0000;
}
.powermail_form .parsley-error {
  border-color: #E20000;
}
.powermail_form .parsley-success {
  border-color: #71BF42;
}
.powermail_form .parsley-errors-list li {
  font-size: 0.8rem;
  color: #E20000;
}
.finder {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  box-shadow: 0 0 0.5rem #0005;
  border-radius: 0.5rem;
  margin-bottom: 15px;
  width: 100%;
  justify-content: space-between;
}
@media (min-width: 576px) {
  .finder {
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) {
  .finder {
    flex-direction: row;
    padding: 0;
  }
}
.finder &gt; * {
  flex-grow: 1;
}
.finder__item, .finder__item--dropdown summary {
  display: flex;
  flex-wrap: wrap;
}
.finder__item &gt; label, .finder__item--dropdown summary &gt; label {
  flex: 1 0 100%;
  font-size: 0.85rem;
  font-weight: bold;
}
.finder__item &gt; [class^="icon-"], .finder__item--dropdown summary &gt; [class^="icon-"] {
  margin-right: 0.25rem;
  font-size: 1.25rem;
}
.finder__item &gt; input, .finder__item &gt; select, .finder__item--dropdown summary &gt; input, .finder__item--dropdown summary &gt; select {
  flex: 1 1 1%;
  padding: 0.25rem 0;
  appearance: none;
  border: unset;
  font-size: inherit;
}
.finder__item {
  position: relative;
  align-items: baseline;
  border: 0 solid #0002;
  border-bottom-width: 2px;
  width: 100%;
  padding: 0.5rem;
}
@media (min-width: 769px) {
  .finder__item {
    flex-basis: 50%;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 769px) {
  .finder__item {
    border-bottom-width: 0;
  }
  .finder__item:not(:first-child) {
    border-bottom-width: 0;
    border-left-width: 2px;
  }
}
.finder__item--dropdown summary {
  list-style: none;
}
.finder__item--dropdown summary &gt; * {
  pointer-events: none;
}
.finder__item--dropdown summary::marker, .finder__item--dropdown summary::-webkit-details-marker {
  display: none;
}
.finder__item--dropdown summary::before {
  transition: transform 0.1s;
  content: "";
  color: #E20000;
  font-family: "icomoon";
  position: absolute;
  right: 1rem;
}
.finder__item--dropdown[open] summary ~ * {
  animation: sweep 0.1s ease-in-out;
  transform-origin: top center;
}
@keyframes sweep {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.finder__item--dropdown[open] summary::before {
  transform: rotateX(180deg);
}
.finder__item--checkbox summary input {
  text-overflow: ellipsis;
}
.finder__item--autocomplete summary &gt; * {
  pointer-events: inherit;
}
.finder__item--autocomplete summary::before {
  content: "";
}
.finder__item--autocomplete .finder__dropdown {
  display: flex;
  flex-direction: column;
}
.finder__item--autocomplete .finder__dropdown button, .finder__item--autocomplete .finder__dropdown .btn {
  text-align: inherit;
}
.finder__item--autocomplete .finder__dropdown button:hover, .finder__item--autocomplete .finder__dropdown .btn:hover {
  color: #E20000;
  font-weight: bold;
}
.finder__button {
  flex-basis: 25%;
  background: #E20000;
  color: white;
  border: none;
  border-radius: 0.25rem;
  padding: 1.3rem 0.5rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 0.5rem;
  transition: background-color ease-in-out 0.2s;
}
@media (min-width: 769px) {
  .finder__button {
    flex-grow: 0;
    margin: 0;
    border-radius: 0 0.5rem 0.5rem 0;
  }
}
.finder__button[disabled] {
  background: #E6E6E6;
  cursor: not-allowed;
}
.finder__button + .emptySuggest {
  display: none;
}
.finder__dropdown {
  background: #FFF;
  width: 100%;
  z-index: 1;
  padding: 1rem 0;
}
@media (min-width: 769px) {
  .finder__dropdown {
    position: absolute;
    overflow: hidden;
    top: 71px;
    left: 0;
    padding: 1rem;
    box-shadow: 0 -0.5rem #FFF, 0 0 0.5rem #0005;
  }
}
.finder__dropdown--loading {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(data:image/gif;base64,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);
}
.finder__dropdown--loading button, .finder__dropdown--loading .btn {
  opacity: 0.3;
}
.finder__dropdown--loading fieldset {
  min-height: 3rem;
}
.finder__dropdown fieldset &gt; * {
  margin-bottom: 1rem;
}
.finder__dropdown fieldset {
  hyphens: auto;
  display: flex;
  flex-direction: column;
  max-height: 12rem;
  overflow-y: auto;
}
.finder__dropdown fieldset ol li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.finder__dropdown fieldset ol li &gt; label {
  padding: 0.25rem 0;
  flex-grow: 1;
}
.finder__dropdown :checked ~ label {
  color: #E20000;
  font-weight: bold;
}
.finder__dropdown--date {
  padding: 0;
  width: auto;
}
.finder__dropdown--date .litepicker {
  box-shadow: none;
}
.finder__dropdown--date .litepicker .container__months {
  box-shadow: none;
}
.finder__dropdownControl {
  display: flex;
  border-top: 1px solid #E6E6E6;
  padding-top: 0.5rem;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .finder__dropdownControl {
    padding: 0.25rem;
  }
}
.finder__dropdownControl button, .finder__dropdownControl .btn {
  height: 2.5rem;
  width: auto;
}
.finder__accept {
  display: none;
}
@media (min-width: 769px) {
  .finder__accept {
    display: initial;
  }
}
.finder--simple {
  flex-direction: row;
  height: 50px;
  margin-bottom: 5px;
  padding: 0;
}
.finder--simple .finder__item {
  margin: 0;
  border: none;
  padding: 0.8rem;
}
@media (min-width: 1025px) {
  .finder--simple .finder__item {
    padding: 0.5rem 1rem;
  }
}
.finder--simple .finder__button {
  width: 50px;
  flex-basis: 60px;
  padding: 4px 0 0;
  margin-top: 0;
  border-radius: 0 0.5rem 0.5rem 0;
}
.finder--simple .finder__dropdown {
  position: absolute;
  left: 0;
  top: 40px;
  padding: 1rem;
}
@media (min-width: 769px) {
  .finder--simple .finder__dropdown {
    top: 50px;
  }
}
.finder .emptySuggest__text {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.finder .emptySuggest .btn {
  width: auto;
}
.finder .emptySuggest .btn:hover {
  color: #FFF;
}
.finder &gt; form {
  flex-grow: 0;
  flex-basis: 30%;
}
.finder &gt; form .finder__button {
  height: 100%;
  width: 100%;
}
.quote {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote--box {
  border-radius: 0.5rem;
  box-shadow: 0 3px 4px #0002;
  background: #F1F4EE;
  padding: 2rem;
  padding-bottom: 3rem;
  font-weight: bold;
  font-size: 1.5rem;
}
@media (min-width: 769px) {
  .quote--box {
    padding: 5rem;
    padding-bottom: 6rem;
  }
}
.quote--box::before {
  content: attr(data-label);
  font-family: Roboto Slab, serif;
  color: #E20000;
}
.quote--box .quote__caption {
  font-size: 0.85rem;
  text-align: end;
  font-weight: normal;
}
.table, .rte table, .cke_editable table {
  width: 100%;
  border-collapse: collapse;
}
.table thead th, .rte table thead th, .cke_editable table thead th {
  border-bottom: 1px solid currentColor;
}
.table tbody tr, .rte table tbody tr, .cke_editable table tbody tr {
  border-bottom: 1px solid #0002;
}
.table th, .rte table th, .cke_editable table th, .table td, .rte table td, .cke_editable table td {
  padding: 0.5rem 0.25rem;
}
.table--striped tbody tr:nth-child(odd) {
  background-color: #0001;
}
.table--compact td, .table--compact th {
  padding: 0.25rem 0.125rem;
}
.table--wide td, .table--wide th {
  padding: 1rem 0.5rem;
}
.table--respo thead {
  display: none;
}
.table--respo td {
  display: flex;
  gap: 1rem;
}
.table--respo th, .table--respo td {
  text-align: start;
  vertical-align: top;
}
@media (min-width: 769px) {
  .table--respo thead, .table--respo th, .table--respo td {
    display: revert;
  }
  .table--respo span.desc {
    display: none;
  }
}
.table--respo tbody th[scope=row] {
  display: block;
}
.table--respo span.desc {
  flex: 0 0 40%;
  font-weight: bold;
}
.table-responsive {
  overflow-y: auto;
  margin-block: 1rem;
}
.irs--round .irs-bar {
  background: #E20000;
}
.irs--round .irs-handle {
  border: 1px solid #000;
}
.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
  background-color: #E20000;
}
.irs--round .irs-from::before, .irs--round .irs-to::before, .irs--round .irs-single::before {
  border-top-color: #E20000;
}
p &gt; a:not(.btn):not(.btn--arrow):not(.download), p &gt; strong &gt; a:not(.btn):not(.btn--arrow):not(.download), p &gt; em &gt; a:not(.btn):not(.btn--arrow):not(.download), .rte li &gt; a:not(.btn):not(.btn--arrow):not(.download), .cke_editable li &gt; a:not(.btn):not(.btn--arrow):not(.download) {
  cursor: pointer;
  color: #E20000;
  text-decoration: none;
  transition: background-size 0.3s ease-in;
  background-image: linear-gradient(to right, #E20000, #E20000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  padding-bottom: 2px;
}
p &gt; a:not(.btn):not(.btn--arrow):not(.download):hover, p &gt; strong &gt; a:not(.btn):not(.btn--arrow):not(.download):hover, p &gt; em &gt; a:not(.btn):not(.btn--arrow):not(.download):hover, .rte li &gt; a:not(.btn):not(.btn--arrow):not(.download):hover, .cke_editable li &gt; a:not(.btn):not(.btn--arrow):not(.download):hover {
  background-size: 100% 1px;
}
.link {
  cursor: pointer;
  color: #E20000;
  text-decoration: none;
  transition: background-size 0.3s ease-in;
  background-image: linear-gradient(to right, #E20000, #E20000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  padding-bottom: 2px;
}
.link:hover {
  background-size: 100% 1px;
}
:root {
  --litepicker-container-months-color-bg: #fff;
  --litepicker-container-months-box-shadow-color: #ddd;
  --litepicker-footer-color-bg: #fafafa;
  --litepicker-footer-box-shadow-color: #ddd;
  --litepicker-tooltip-color-bg: #fff;
  --litepicker-month-header-color: #333;
  --litepicker-button-prev-month-color: #E20000;
  --litepicker-button-next-month-color: #E20000;
  --litepicker-button-prev-month-color-hover: #2196f3;
  --litepicker-button-next-month-color-hover: #2196f3;
  --litepicker-month-width: calc(var(--litepicker-day-width) * 7);
  --litepicker-month-weekday-color: #000;
  --litepicker-month-week-number-color: #9e9e9e;
  --litepicker-day-width: 2.5rem;
  --litepicker-day-color: #333;
  --litepicker-day-color-hover: #0002;
  --litepicker-is-today-color: #E20000;
  --litepicker-is-in-range-color: #E6E6E6;
  --litepicker-is-locked-color: #9e9e9e;
  --litepicker-is-start-color: #FFF;
  --litepicker-is-start-color-bg: #E20000;
  --litepicker-is-end-color: #FFF;
  --litepicker-is-end-color-bg: #E20000;
  --litepicker-button-cancel-color: #fff;
  --litepicker-button-cancel-color-bg: #9e9e9e;
  --litepicker-button-apply-color: #fff;
  --litepicker-button-apply-color-bg: #2196f3;
  --litepicker-button-reset-color: #909090;
  --litepicker-button-reset-color-hover: #2196f3;
  --litepicker-highlighted-day-color: #333;
  --litepicker-highlighted-day-color-bg: #ffeb3b;
  --litepicker-container-padding: .75rem;
}
.show-week-numbers {
  --litepicker-month-width: calc(var(--litepicker-day-width) * 8);
}
.litepicker {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1em;
  display: none;
}
.litepicker .container__main {
  display: flex;
}
.litepicker .container__months {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--litepicker-container-months-color-bg);
  border-radius: 5px;
  box-shadow: 0 0 5px var(--litepicker-container-months-box-shadow-color);
  width: calc(var(--litepicker-month-width) + 10px);
  box-sizing: content-box;
}
.litepicker .container__months.columns-2 {
  width: calc((var(--litepicker-month-width) * 2) + 20px);
}
.litepicker .container__months.columns-3 {
  width: calc((var(--litepicker-month-width) * 3) + 30px);
}
.litepicker .container__months.columns-4 {
  width: calc((var(--litepicker-month-width) * 4) + 40px);
}
.litepicker .container__months.split-view .month-item-header .button-previous-month, .litepicker .container__months.split-view .month-item-header .button-next-month {
  visibility: visible;
}
.litepicker .container__months .month-item {
  padding: 5px;
  width: var(--litepicker-month-width);
  box-sizing: content-box;
}
.litepicker .container__months .month-item-header {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  padding: 10px 5px;
  text-align: center;
  align-items: center;
  color: var(--litepicker-month-header-color);
}
.litepicker .container__months .month-item-header div {
  flex: 1;
}
.litepicker .container__months .month-item-header div &gt; .month-item-name {
  margin-right: 5px;
  font-weight: inherit;
}
.litepicker .container__months .month-item-header div &gt; .month-item-year {
  padding: 0;
}
.litepicker .container__months .month-item-header .reset-button {
  color: var(--litepicker-button-reset-color);
}
.litepicker .container__months .month-item-header .reset-button &gt; svg {
  fill: var(--litepicker-button-reset-color);
}
.litepicker .container__months .month-item-header .reset-button * {
  pointer-events: none;
}
.litepicker .container__months .month-item-header .reset-button:hover {
  color: var(--litepicker-button-reset-color-hover);
}
.litepicker .container__months .month-item-header .reset-button:hover &gt; svg {
  fill: var(--litepicker-button-reset-color-hover);
}
.litepicker .container__months .month-item-header .button-previous-month, .litepicker .container__months .month-item-header .button-next-month {
  visibility: hidden;
  text-decoration: none;
  padding: 3px 5px;
  border-radius: 3px;
  transition: color 0.3s, border 0.3s;
  cursor: default;
}
.litepicker .container__months .month-item-header .button-previous-month *, .litepicker .container__months .month-item-header .button-next-month * {
  pointer-events: none;
}
.litepicker .container__months .month-item-header .button-previous-month {
  color: var(--litepicker-button-prev-month-color);
}
.litepicker .container__months .month-item-header .button-previous-month &gt; svg, .litepicker .container__months .month-item-header .button-previous-month &gt; img {
  fill: var(--litepicker-button-prev-month-color);
}
.litepicker .container__months .month-item-header .button-previous-month:hover {
  color: var(--litepicker-button-prev-month-color-hover);
}
.litepicker .container__months .month-item-header .button-previous-month:hover &gt; svg {
  fill: var(--litepicker-button-prev-month-color-hover);
}
.litepicker .container__months .month-item-header .button-next-month {
  color: var(--litepicker-button-next-month-color);
}
.litepicker .container__months .month-item-header .button-next-month &gt; svg, .litepicker .container__months .month-item-header .button-next-month &gt; img {
  fill: var(--litepicker-button-next-month-color);
}
.litepicker .container__months .month-item-header .button-next-month:hover {
  color: var(--litepicker-button-next-month-color-hover);
}
.litepicker .container__months .month-item-header .button-next-month:hover &gt; svg {
  fill: var(--litepicker-button-next-month-color-hover);
}
.litepicker .container__months .month-item-weekdays-row {
  display: flex;
  justify-self: center;
  justify-content: flex-start;
  color: var(--litepicker-month-weekday-color);
}
.litepicker .container__months .month-item-weekdays-row &gt; div {
  padding: 5px 0;
  font-size: 85%;
  font-weight: bold;
  flex: 1;
  width: var(--litepicker-day-width);
  text-align: center;
}
.litepicker .container__months .month-item:first-child .button-previous-month {
  visibility: visible;
}
.litepicker .container__months .month-item:last-child .button-next-month {
  visibility: visible;
}
.litepicker .container__months .month-item.no-previous-month .button-previous-month {
  visibility: hidden;
}
.litepicker .container__months .month-item.no-next-month .button-next-month {
  visibility: hidden;
}
.litepicker .container__days {
  display: flex;
  flex-wrap: wrap;
  justify-self: center;
  justify-content: flex-start;
  text-align: center;
  box-sizing: content-box;
}
.litepicker .container__days &gt; div, .litepicker .container__days &gt; a {
  padding: 5px 0;
  width: var(--litepicker-day-width);
}
.litepicker .container__days .day-item {
  color: var(--litepicker-day-color);
  text-align: center;
  text-decoration: none;
  border-radius: 10rem;
  transition: color 0.3s, border 0.3s;
  cursor: default;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.75em;
  font-weight: bold;
  padding: 0.7rem;
}
.litepicker .container__days .day-item:hover {
  background-color: var(--litepicker-day-color-hover);
}
.litepicker .container__days .day-item.is-today {
  color: var(--litepicker-is-today-color);
}
.litepicker .container__days .day-item.is-locked {
  color: var(--litepicker-is-locked-color);
}
.litepicker .container__days .day-item.is-locked:hover {
  color: var(--litepicker-is-locked-color);
  box-shadow: none;
  cursor: default;
}
.litepicker .container__days .day-item.is-in-range {
  background-color: var(--litepicker-is-in-range-color);
  border-radius: 0;
}
.litepicker .container__days .day-item.is-start-date {
  color: var(--litepicker-is-start-color);
  background-color: var(--litepicker-is-start-color-bg);
  border-top-left-radius: 10rem;
  border-bottom-left-radius: 10rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.litepicker .container__days .day-item.is-start-date.is-flipped {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
}
.litepicker .container__days .day-item.is-end-date {
  color: var(--litepicker-is-end-color);
  background-color: var(--litepicker-is-end-color-bg);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
}
.litepicker .container__days .day-item.is-end-date.is-flipped {
  border-top-left-radius: 10rem;
  border-bottom-left-radius: 10rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.litepicker .container__days .day-item.is-start-date.is-end-date {
  border-top-left-radius: 10rem;
  border-bottom-left-radius: 10rem;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
}
.litepicker .container__days .day-item.is-highlighted {
  color: var(--litepicker-highlighted-day-color);
  background-color: var(--litepicker-highlighted-day-color-bg);
}
.litepicker .container__days .week-number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--litepicker-month-week-number-color);
  font-size: 85%;
}
.litepicker .container__footer {
  text-align: right;
  padding: 10px 5px;
  margin: 0 5px;
  background-color: var(--litepicker-footer-color-bg);
  box-shadow: inset 0px 3px 3px 0px var(--litepicker-footer-box-shadow-color);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.litepicker .container__footer .preview-date-range {
  margin-right: 10px;
  font-size: 90%;
}
.litepicker .container__footer .button-cancel {
  background-color: var(--litepicker-button-cancel-color-bg);
  color: var(--litepicker-button-cancel-color);
  border: 0;
  padding: 3px 7px 4px;
  border-radius: 3px;
}
.litepicker .container__footer .button-cancel * {
  pointer-events: none;
}
.litepicker .container__footer .button-apply {
  width: 100%;
}
.litepicker .container__tooltip {
  position: absolute;
  margin-top: -4px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: var(--litepicker-tooltip-color-bg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-size: 11px;
  pointer-events: none;
  visibility: hidden;
}
.litepicker .container__tooltip:before {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 5px);
  border-top: 5px solid rgba(0, 0, 0, 0.12);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
}
.litepicker .container__tooltip:after {
  position: absolute;
  bottom: -4px;
  left: calc(50% - 4px);
  border-top: 4px solid var(--litepicker-tooltip-color-bg);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}
.litepicker {
  box-shadow: 0 0 1rem #0005;
}
.litepicker .container__header {
  background-color: #f1f4ee;
  padding: var(--litepicker-container-padding);
}
.litepicker .container__header time {
  display: block;
  font-weight: bold;
  font-size: 1.25rem;
}
.litepicker .container__months {
  border-radius: 0;
  padding: var(--litepicker-container-padding);
}
.litepicker .container__footer {
  padding: var(--litepicker-container-padding);
  margin: 0;
  box-shadow: none;
  background-color: white;
}
.litepicker .container__footer .preview-date-range, .litepicker .container__footer .button-cancel {
  display: none;
}
.frame-type-textmedia header {
  width: 100%;
  order: -3;
}
.frame-type-textmedia figure.image img {
  max-width: 100%;
}
.frame-type-textmedia .textmedia {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.frame-type-textmedia .textmedia__item {
  width: 100%;
}
.frame-type-textmedia .textmedia__gallery:not(:empty) {
  position: relative;
  padding-bottom: 2em;
  order: -1;
  overflow: visible;
}
@media (min-width: 769px) {
  .frame-type-textmedia .textmedia__gallery:not(:empty) {
    padding-bottom: 0;
    order: 0;
  }
}
.frame-type-textmedia .textmedia.textmedia--above .textmedia__gallery, .frame-type-textmedia .textmedia.textmedia--below .textmedia__gallery {
  width: 100%;
}
.frame-type-textmedia .textmedia--centeredright .textmedia__gallery, .frame-type-textmedia .textmedia--centeredleft .textmedia__gallery, .frame-type-textmedia .textmedia--right .textmedia__gallery, .frame-type-textmedia .textmedia--left .textmedia__gallery {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .frame-type-textmedia .textmedia--centeredright .textmedia__gallery, .frame-type-textmedia .textmedia--centeredleft .textmedia__gallery, .frame-type-textmedia .textmedia--right .textmedia__gallery, .frame-type-textmedia .textmedia--left .textmedia__gallery {
    width: 49%;
  }
}
@media (min-width: 769px) {
  .frame-type-textmedia .textmedia--centeredright .textmedia__text, .frame-type-textmedia .textmedia--centeredleft .textmedia__text, .frame-type-textmedia .textmedia--right .textmedia__text, .frame-type-textmedia .textmedia--left .textmedia__text {
    width: 49%;
  }
}
.frame-type-textmedia .textmedia--centeredright, .frame-type-textmedia .textmedia--centeredleft {
  align-items: center;
}
@media (min-width: 769px) {
  .frame-type-textmedia .textmedia--right .textmedia__gallery, .frame-type-textmedia .textmedia--centeredright .textmedia__gallery {
    order: 1;
  }
}
.frame-type-textmedia .textmedia--intextright, .frame-type-textmedia .textmedia--intextleft {
  display: block;
}
.frame-type-textmedia .textmedia--intextright .textmedia__gallery:not(:empty), .frame-type-textmedia .textmedia--intextleft .textmedia__gallery:not(:empty) {
  margin-bottom: 2%;
}
@media (min-width: 769px) {
  .frame-type-textmedia .textmedia--intextright .textmedia__gallery:not(:empty), .frame-type-textmedia .textmedia--intextleft .textmedia__gallery:not(:empty) {
    width: 49%;
  }
}
@media (min-width: 769px) {
  .frame-type-textmedia .textmedia--intextright ul, .frame-type-textmedia .textmedia--intextright ol, .frame-type-textmedia .textmedia--intextleft ul, .frame-type-textmedia .textmedia--intextleft ol {
    display: inline-block;
    width: 48%;
  }
}
.frame-type-textmedia .textmedia--intextright .textmedia__gallery:not(:empty) {
  float: right;
}
@media (min-width: 769px) {
  .frame-type-textmedia .textmedia--intextright .textmedia__gallery:not(:empty) {
    margin-left: 2%;
  }
}
.frame-type-textmedia .textmedia--intextleft .textmedia__gallery:not(:empty) {
  float: left;
}
@media (min-width: 769px) {
  .frame-type-textmedia .textmedia--intextleft .textmedia__gallery:not(:empty) {
    margin-right: 2%;
  }
}
.caption {
  font-size: 16px;
  font-weight: 300;
  margin-top: 0.8rem;
}
.caption__container {
  display: inline-block;
  text-align: left;
}
.caption__description {
  text-align: left;
}
.frame-type-textmedia.frame-default .gallery-item img, .frame-type-textmedia.frame-default .gallery-item video {
  width: 100%;
}
.frame-type-textmedia.frame-indent .gallery-item img {
  width: auto;
}
@media (min-width: 769px) {
  .frame-type-textmedia.frame-indent .textmedia__item {
    width: 48%;
  }
  .frame-type-textmedia.frame-indent .textmedia__text {
    width: 65%;
  }
  .frame-type-textmedia.frame-indent .textmedia__gallery {
    width: 30%;
  }
  .frame-type-textmedia.frame-indent .gallery-item img {
    width: 100%;
  }
}
.frame-type-textmedia.frame-media-above .textmedia__gallery, .frame-type-textmedia.frame-media-abovenoscale .textmedia__gallery {
  order: 0;
  padding-bottom: 2rem !important;
}
.frame-type-textmedia.frame-media-below .textmedia__gallery, .frame-type-textmedia.frame-media-belownoscale .textmedia__gallery {
  order: 1;
  padding-top: 2rem !important;
}
.frame-type-textmedia.frame-media-abovenoscale .textmedia, .frame-type-textmedia.frame-media-belownoscale .textmedia {
  justify-content: center;
}
.frame-type-textmedia.frame-media-abovenoscale .textmedia__item, .frame-type-textmedia.frame-media-belownoscale .textmedia__item {
  width: auto;
}
.tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -4px;
  margin-right: -4px;
}
@media (min-width: 576px) {
  .tiles {
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media (min-width: 1025px) {
  .tiles {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.tiles__item {
  padding: 4px;
  width: 50%;
  max-width: 170px;
}
@media (min-width: 576px) {
  .tiles__item {
    width: 33.333333%;
    padding: 8px;
    max-width: none;
  }
}
@media (min-width: 769px) {
  .tiles__item {
    width: 25%;
  }
}
@media (min-width: 1025px) {
  .tiles__item {
    padding: 16px;
  }
}
.tiles__itemContainer {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  width: 100%;
}
.tiles__itemInner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.search {
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  transition: all 0.5s;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  background-color: #FFF;
  z-index: 900;
  pointer-events: none;
}
.search button, .search .btn, .search a {
  pointer-events: none;
}
@media (min-width: 576px) {
  .search {
    align-items: center;
  }
}
.search--active {
  pointer-events: all;
  opacity: 1;
}
.search--active button, .search--active .btn, .search--active a {
  pointer-events: all;
}
.search--active .tx-solr-autosuggest {
  position: fixed !important;
}
@media (min-width: 576px) {
  .search .frame-container {
    width: 80%;
  }
}
@media (min-width: 1200px) {
  .search .frame-container {
    width: 60%;
  }
}
.search__form {
  padding-top: 30%;
}
@media (min-width: 576px) {
  .search__form {
    padding-top: 0;
  }
}
.search__contentWrapper {
  display: flex;
  flex-wrap: wrap-reverse;
}
@media (min-width: 576px) {
  .search__contentWrapper {
    flex-wrap: nowrap;
  }
}
.search__content {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  margin-top: 20px;
}
@media (min-width: 576px) {
  .search__content {
    margin-top: 0;
  }
}
.search__input {
  color: #1F1E1E;
  height: 50px;
}
@media (min-width: 576px) {
  .search__input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 1200px) {
  .search__input {
    height: 65px;
  }
}
.search__buttonSubmit {
  display: none;
}
@media (min-width: 576px) {
  .search__buttonSubmit {
    display: block;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 576px) {
  .search__buttonSubmit span {
    margin-bottom: 0;
    display: none;
  }
}
.search__buttonClose {
  position: fixed;
  top: 30px;
  right: 30px;
}
.search .tx-solr-suggest {
  color: #333;
  opacity: 1;
  font-size: 30px !important;
  font-weight: bold !important;
}
.search .header__right {
  flex-grow: 1;
}
.tx-solr-suggest-focus {
  color: #333 !important;
  font-size: 30px !important;
  font-weight: bold !important;
  border: none !important;
}
.tx-solr-autosuggest {
  padding: 20px 0 !important;
  margin-top: 1px !important;
  width: fit-content !important;
  color: #666;
  font-size: 20px !important;
  border: none !important;
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.25);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tx-solr-autosuggest .autocomplete-suggestion {
  color: #666;
  padding-left: 0.7em;
  padding-right: 2.8em;
}
.tx-solr-autosuggest .autocomplete-suggestion:hover {
  color: #E20000;
  cursor: pointer;
  background-color: transparent;
}
.tx-solr-autosuggest strong {
  color: #E20000 !important;
}
.searchinfo {
  padding: 10px 0;
}
.search-result:not(:last-child) {
  border-bottom: 1px solid #CCC;
}
.results-list {
  padding-top: 40px;
}
.results-list &gt; *:not(:first-child) {
  padding-top: 20px;
}
.result-content {
  padding-bottom: 20px;
}
.results-highlight {
  font-weight: bold;
}
.autocomplete-search-overlay {
  position: fixed !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.searched-for, .result-found {
  color: #E20000;
}
#tx-solr-search {
  width: 100%;
}
.solr-pagination {
  padding: 10px 0;
}
.solr-pagination .pagination {
  display: flex;
  justify-content: center;
}
.solr-pagination .pagination li {
  padding: 0 5px;
}
.solr-pagination .pagination li a {
  padding: 4px;
}
.solr-pagination .pagination .previous, .solr-pagination .pagination .next {
  color: #E20000;
}
.solr-pagination .pagination .active {
  background-color: #E20000;
  color: #FFF;
  border-radius: 100%;
}
.solr-pagination:nth-of-type(3) {
  bottom: -70px;
}
.frame-type-menu_section .frame-container {
  max-width: 1174px;
}
.frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
  border-radius: 6px;
  background-color: #F1F4EE;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.29);
  padding-left: 8%;
  padding-right: 8%;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
    padding-top: 32px;
  }
}
@media (min-width: 769px) {
  .frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
    padding-top: 42px;
  }
}
@media (min-width: 1025px) {
  .frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
    padding-top: 42px;
  }
}
@media (min-width: 1200px) {
  .frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
    padding-top: 42px;
  }
}
@media (min-width: 1500px) {
  .frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
    padding-top: 42px;
  }
}
@media (min-width: 576px) {
  .frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
    padding-bottom: 32px;
  }
}
@media (min-width: 769px) {
  .frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
    padding-bottom: 42px;
  }
}
@media (min-width: 1025px) {
  .frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
    padding-bottom: 42px;
  }
}
@media (min-width: 1200px) {
  .frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
    padding-bottom: 42px;
  }
}
@media (min-width: 1500px) {
  .frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
    padding-bottom: 42px;
  }
}
@media (min-width: 576px) {
  .frame-type-menu_section .frame-inner, .frame-type-menu_section .header__inner, .frame-type-menu_section .footer__row {
    width: 79.5%;
  }
}
.frame-type-menu_section header {
  margin-bottom: 2rem;
}
.sectionMenu__item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.sectionMenu__link {
  color: #333 !important;
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
  transition: color 0.3s !important;
  background-image: none !important;
  font-weight: bold;
  line-height: 1.2;
  padding-right: 1em;
}
.sectionMenu__link::after {
  content: "";
  font-family: "icomoon" !important;
  font-size: 0.7em;
  color: #E20000;
  position: absolute;
  right: 0;
  top: 0.2em;
}
.sectionMenu__link:hover {
  color: #E20000 !important;
}
.video video {
  width: 100%;
}
.video img {
  position: absolute;
  z-index: 20;
  width: 100%;
}
.video .embed-responsive {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.video .embed-youtube {
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.video .embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.alpNav {
  width: 100%;
  margin: -15px;
}
.alpNav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.alpNav ul li {
  padding: 5px 10px;
}
.acc__container {
  border-bottom: 1px solid #CCC;
}
.acc__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
}
.acc__button i {
  font-size: 25px;
  color: #E20000;
}
.acc__button:hover &gt; * {
  color: #E20000;
}
.acc__button h5, .acc__button .headline--xs, .acc__button .cardPartner__subHeadline, .acc__button .cardPartner__headline3 {
  margin: 0;
  color: inherit;
}
.acc__content {
  display: none;
  padding-bottom: 20px;
}
@media (min-width: 769px) {
  .acc__content {
    padding-right: 100px;
  }
}
.acc__contentText {
  width: 100%;
}
.acc__contentSingleImage {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (min-width: 769px) {
  .acc__contentSingleImage {
    flex-wrap: nowrap;
  }
}
.acc__contentSingleImage figure {
  width: 100%;
  display: block;
}
@media (min-width: 769px) {
  .acc__contentSingleImage figure {
    width: 41%;
  }
}
.acc__contentSingleImage img {
  width: 100%;
  height: auto;
}
.acc__contentSingleImage p {
  padding-top: 20px;
}
@media (min-width: 769px) {
  .acc__contentSingleImage p {
    padding-left: 30px;
    padding-top: 0;
  }
}
.acc__contentSingleImage.reverse {
  flex-direction: row-reverse;
}
@media (min-width: 769px) {
  .acc__contentSingleImage.reverse p {
    padding-left: 0;
    padding-right: 30px;
  }
}
.acc__contentMultiImage {
  display: flex;
  flex-direction: column;
}
.acc__contentMultiImage.reverse {
  flex-direction: column-reverse;
}
.acc__contentMultiImage .gridbox {
  align-items: flex-start;
}
.acc__contentMultiImage img {
  height: auto;
  width: 100%;
}
.acc__caption {
  font-size: 16px;
  font-weight: 300;
}
.acc--active .acc__button {
  color: #E20000;
}
.separator {
  border-bottom: 1px solid #CCC;
  margin: 0 !important;
}
.card__headline {
  font-size: 19px;
  color: inherit;
}
.card__imgTeaser {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1.333333;
}
.card__sticker {
  width: 100px;
  top: 20px;
  right: 20px;
  position: absolute;
  height: auto;
}
.card__container, .cardText__container {
  border-radius: 5px;
  background: #FFF;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.1s linear;
  hyphens: auto;
}
.card__container:hover, .cardText__container:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.card__center {
  padding: 30px 20px 20px;
  position: relative;
}
.card__center h5, .card__center .headline--xs, .card__center .cardPartner__subHeadline, .card__center .cardPartner__headline3 {
  margin: 0;
}
.card__center p {
  padding-top: 6px;
  padding-bottom: 20px;
}
.card__infobox {
  display: flex;
  flex-wrap: wrap;
}
.card__infobox .deflist {
  padding-right: 40px;
  padding-bottom: 20px;
}
.card__infobox p {
  white-space: nowrap;
  padding: 0;
}
.card__tagbox {
  display: flex;
  flex-wrap: wrap;
}
.card__tagbox div {
  padding-right: 10px;
}
.card__separator {
  padding: 0 20px;
}
.card__bottom {
  padding: 20px 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
}
.card__date .text--medium {
  font-weight: bold;
  text-transform: uppercase;
  margin: -3px 0;
  padding-right: 20px;
}
.card__date &gt; * {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.card__centerEvent {
  display: flex;
}
.card__centerEvent .card__centerRight &gt; p {
  color: #333;
}
.card__centerEvent i {
  font-size: 20px;
}
.card .card__bottomL .icon--share {
  display: none;
}
.card__top {
  position: relative;
}
.card__top .card__badge {
  bottom: -20px;
  right: 20px;
  position: absolute;
}
.card__badges .badge, .card__badges .tagFilter__button {
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
}
.card__img img {
  display: block;
}
.card .deflist dt {
  position: relative;
  top: 2px;
}
@media (min-width: 1025px) {
  .cardImg .headline {
    font-size: 28px;
  }
}
.cardImg__top .card__img .card__imgTeaser {
  position: absolute;
  height: 100%;
  object-fit: cover;
}
.cardImg__gradient {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px 20px 20px 30px;
  pointer-events: none;
}
.cardImg__badge {
  position: absolute;
  top: -2.5rem;
  pointer-events: none;
}
.cardImg__container {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  height: 100%;
  transition: box-shadow 0.1s linear;
}
.cardImg__container:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.cardImg__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  bottom: 0;
  z-index: 0;
  height: 100%;
  min-height: 300px;
}
.cardImg__bottomText {
  color: #FFF;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cardImg__bottomL {
  color: #FFF;
  padding-right: 10px;
}
.cardImg__bottomL .card__headline {
  padding-bottom: 10px;
}
.cardImg__bottomL p + .deflist {
  margin-top: 1rem;
}
.cardImg__bottomL, .cardImg__bottomR {
  z-index: 1;
}
.cardImg--news .card__badge {
  position: relative;
  top: 0;
  right: 0;
  padding-bottom: 20px;
}
.cardImg--news .cardImg__bottom {
  height: auto;
}
@media (min-width: 1025px) {
  .cardImg--news .cardImg__bottom {
    min-height: 400px;
  }
}
.cardImgLeft__container {
  z-index: 1;
  cursor: pointer;
  height: 100%;
}
@media (min-width: 1025px) {
  .cardImgLeft__container {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .cardImgLeft__container .card__imgTeaser {
    height: 100%;
  }
}
.cardImgLeft__container--active {
  box-shadow: 0 0 10px #E20000 !important;
}
.cardImgLeft__right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .cardImgLeft__right p {
    font-size: 19px;
  }
}
@media (min-width: 1025px) {
  .cardImgLeft__header &gt; * {
    padding-bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .cardImgLeft__header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    align-items: center;
  }
}
@media (min-width: 1025px) {
  .cardImgLeft__header .card__badge {
    position: relative;
    top: 0;
    right: 0;
  }
}
@media (min-width: 769px) {
  .cardImgLeft__header .card__headline {
    font-size: 28px;
    line-height: 1;
  }
}
.cardImgLeft__headerText {
  padding-bottom: 20px;
}
@media (min-width: 1025px) {
  .cardImgLeft__headerText p {
    padding-top: 0;
    margin-top: -6px;
  }
}
.cardImgLeft .card__infobox {
  padding-bottom: 24px;
}
.cardImgLeft .card__bottom {
  padding: 20px;
  position: relative;
}
.cardImgLeft .card__bottom .card__separator {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cardImgLeft--small p {
  font-size: 19px;
}
.cardImgLeft--small p {
  padding-bottom: 0;
}
.cardImgLeft--small .card__img {
  width: 100%;
  height: 100%;
}
@media (min-width: 1025px) {
  .cardImgLeft--small .card__imgTeaser {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 1025px) {
  .cardImgLeft--small .cardImgLeft__left, .cardImgLeft--small .cardImgLeft__right {
    width: 50%;
  }
}
.cardImgLeft--small .cardImgLeft__left .card__top, .cardImgLeft--small .cardImgLeft__right .card__top {
  height: 100%;
}
@media (min-width: 1025px) {
  .cardImgLeft--small .cardImgLeft__right {
    width: 50%;
  }
}
.cardImgLeft--small .cardImgLeft__header {
  padding-bottom: 14px;
}
@media (min-width: 1025px) {
  .cardImgLeft--small .cardImgLeft__header &gt; * {
    padding-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .cardImgLeft--small .cardImgLeft__header {
    display: block;
  }
}
.cardImgLeft--small .deflist p {
  white-space: initial;
}
.cardImgLeft--small .cardImgLeft__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1025px) {
  .cardImgLeft--small .cardImgLeft__img {
    position: absolute;
  }
}
.cardImgLeft--custom .card__container, .cardImgLeft--custom .cardText__container {
  cursor: default;
}
.cardImgLeft--custom .cardImgLeft__container {
  box-shadow: none;
}
.cardImgLeft--custom .card__center {
  padding-bottom: 10px !important;
}
.cardText__imgTeaser {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cardText__container {
  min-height: 100%;
}
.cardText__container p {
  padding-bottom: 20px;
}
.cardText__links {
  padding: 20px;
  display: grid;
}
.cardText__links h4, .cardText__links .text--medium, .cardText__links .headline--sm {
  padding: 0 0 20px 0;
}
.cardText__links a {
  font-size: 14px;
  padding-bottom: 20px;
}
.cardText__links a span {
  white-space: nowrap;
}
.cardText__links a i {
  font-size: 14px;
}
@media (min-width: 576px) {
  .cardText__links .rte {
    display: flex;
    flex-wrap: wrap;
  }
}
.cardText__top {
  padding: 20px 20px 0;
}
.cardText--green .cardText--greenContainer {
  background-color: #76B82A;
  box-shadow: none;
}
.cardText--green .cardText--greenContainer:hover {
  box-shadow: none;
}
.cardText--green .cardText--greenContainer .cardText--greenContainerTxt {
  padding: 28px 24px;
  color: #FFF;
}
.cardAvatar {
  padding-top: 70px;
}
.cardAvatar p {
  font-weight: 300;
}
.cardAvatar .card__container, .cardAvatar .cardText__container {
  overflow: visible;
}
.cardAvatar__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}
.cardAvatar__top h5, .cardAvatar__top .headline--xs, .cardAvatar__top .cardPartner__subHeadline, .cardAvatar__top .cardPartner__headline3 {
  padding-top: 80px;
}
.cardAvatar__avatar {
  position: relative;
  padding-top: 65px;
}
.cardAvatar__avatar img {
  position: absolute;
  top: -70px;
  left: -90px;
}
.cardAvatar__center {
  padding: 0 20px;
}
.cardAvatar__bottom {
  padding: 20px;
}
.cardAvatar__bottom .deflist div:first-child {
  padding-bottom: 10px;
}
.cardAvatar--min .cardAvatar__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cardInfo__header {
  padding: 30px 20px 0 20px;
}
.cardInfo__header h4, .cardInfo__header .text--medium, .cardInfo__header .headline--sm {
  padding: 0;
}
.cardInfo &gt; .card__container &gt; .card__center, .cardInfo &gt; .cardText__container &gt; .card__center {
  padding: 0px 20px 20px;
}
.cardInfo &gt; .card__container &gt; .card__center p, .cardInfo &gt; .cardText__container &gt; .card__center p, .cardInfo &gt; .card__container &gt; .card__center div, .cardInfo &gt; .cardText__container &gt; .card__center div {
  padding-bottom: 0;
}
.cardInfo &gt; .card__container &gt; .card__center dl, .cardInfo &gt; .cardText__container &gt; .card__center dl {
  padding-top: 20px;
}
.cardInfo &gt; .card__container &gt; .card__center h5, .cardInfo &gt; .cardText__container &gt; .card__center h5, .cardInfo &gt; .card__container &gt; .card__center .headline--xs, .cardInfo &gt; .card__container &gt; .card__center .cardPartner__subHeadline, .cardInfo &gt; .card__container &gt; .card__center .cardPartner__headline3, .cardInfo &gt; .cardText__container &gt; .card__center .headline--xs, .cardInfo &gt; .cardText__container &gt; .card__center .cardPartner__subHeadline, .cardInfo &gt; .cardText__container &gt; .card__center .cardPartner__headline3 {
  padding-top: 40px;
  padding-bottom: 26px;
}
.cardInfo__partner {
  padding-bottom: 20px;
}
.cardInfo__models .glider__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cardInfo__models .glider__itemImg {
  width: 50%;
  min-width: 300px;
  padding-right: 30px;
}
.cardInfo__models .glider__itemImg .cardImg__bottom {
  height: auto;
  min-height: 230px;
}
.cardInfo__models .glider__itemImg dl {
  padding-top: 0;
  padding-bottom: 20px;
}
.cardInfo__models .glider__itemText {
  width: 50%;
}
.cardInfo .card__separator {
  padding: 30px 0 0 0;
}
.cardInfo .card__bottomR .btn--arrow:first-child {
  padding-right: 20px;
}
.cardInfo .glider-buttons {
  display: none;
}
.glider-nav {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
.glider-nav .glider-dot:hover, .glider-nav .glider-dot:focus, .glider-nav .glider-dot.active {
  background: red;
}
.glider-buttons {
  display: none;
  position: absolute;
  top: 9px;
  right: 0;
}
@media (min-width: 576px) {
  .glider-buttons {
    display: flex;
  }
}
.glider-buttons a {
  position: initial;
  font-size: 21px;
  width: 50px;
  height: 50px;
  color: #E20000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glider-buttons a:last-child {
  margin-left: 40px;
}
.glider-buttons a:hover {
  color: #FFF;
}
.cardsteaser__headline {
  color: inherit;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 1025px) {
  .cardsteaser__headline {
    font-size: 1rem;
  }
}
.cardsteaser__headline--large {
  font-size: 1.5rem;
}
.cardsteaser__column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.cardsteaser__column &gt; * {
  flex-grow: 1;
  flex-basis: 100%;
}
@media (min-width: 1025px) {
  .cardsteaser__column--left &gt; :nth-child(1) {
    flex-basis: 100%;
  }
  .cardsteaser__column--left &gt; :nth-child(n+2) {
    flex-basis: calc(50% - 10px);
  }
  .cardsteaser__column--right &gt; :nth-child(1) {
    flex-basis: calc(50% - 10px);
  }
  .cardsteaser__column--right &gt; :nth-child(2) {
    flex-basis: calc(50% - 10px);
  }
  .cardsteaser__column--right &gt; :nth-child(n+3) {
    flex-basis: 100%;
  }
}
.cardsteaser .cardImg.cardText {
  min-height: 25rem;
}
.custom-select {
  display: flex;
  flex-direction: column;
}
.custom-select__option {
  padding: 0.5rem;
  text-align: inherit;
}
.custom-select__option:hover, .custom-select__option:focus {
  background: #E6E6E6;
}
@media (min-width: 769px) {
  .downloads .gridbox__firstCol {
    padding-right: 40px;
  }
}
@media (min-width: 769px) {
  .downloads .gridbox__secondCol {
    padding-left: 40px;
  }
}
.downloads__container {
  padding-top: 40px;
}
.downloads__container .headline--sm {
  margin: 0;
  padding-bottom: 40px;
}
.downloads__containerItem {
  border-bottom: 1px solid #E6E6E6;
}
@media (min-width: 576px) {
  .downloads__containerItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.downloads__containerItem &gt; * {
  display: flex;
}
.downloads__containerLeft {
  margin-bottom: -10px;
  margin-top: 10px;
  align-items: center;
}
@media (min-width: 576px) {
  .downloads__containerLeft {
    display: flex;
    margin: 10px 0px;
  }
}
.downloads__containerLeft a {
  display: flex;
  align-items: center;
}
.downloads__containerLeft a:hover {
  color: #E20000;
}
.downloads__containerLeft i {
  font-size: 30px;
  color: #E20000;
  font-weight: bold;
  padding-right: 10px;
}
.downloads__containerLeft p {
  white-space: nowrap;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  top: -10px;
}
@media (min-width: 576px) {
  .downloads__containerLeft p {
    position: static;
  }
}
.downloads__containerRight {
  position: relative;
  left: 44px;
  top: -2px;
}
@media (min-width: 576px) {
  .downloads__containerRight {
    position: static;
  }
}
.downloads__containerRight span {
  color: #C1C1C1;
}
.downloads__containerItemSize {
  padding-left: 0.2em;
  padding-top: 2px;
}
.eventList .gridbox {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .eventList .gridbox {
    margin-bottom: 30px;
  }
}
.eventList .btn--iconText, .eventList .btn--iconTextL, .eventList .btn--iconTextXL {
  margin: 0 auto;
}
.eventDetail__image {
  width: 100%;
  height: auto;
}
.eventDetail__related {
  padding-top: 20px;
}
@media (min-width: 576px) {
  .eventDetail__related {
    padding-top: 32px;
  }
}
@media (min-width: 769px) {
  .eventDetail__related {
    padding-top: 42px;
  }
}
@media (min-width: 1025px) {
  .eventDetail__related {
    padding-top: 42px;
  }
}
@media (min-width: 1200px) {
  .eventDetail__related {
    padding-top: 42px;
  }
}
@media (min-width: 1500px) {
  .eventDetail__related {
    padding-top: 60px;
  }
}
.eventDetail__glider {
  padding-top: 10px;
}
@media (min-width: 576px) {
  .eventDetail__glider {
    padding-top: 15px;
  }
}
@media (min-width: 769px) {
  .eventDetail__glider {
    padding-top: 15px;
  }
}
@media (min-width: 1025px) {
  .eventDetail__glider {
    padding-top: 15px;
  }
}
@media (min-width: 1200px) {
  .eventDetail__glider {
    padding-top: 20px;
  }
}
@media (min-width: 1500px) {
  .eventDetail__glider {
    padding-top: 20px;
  }
}
.imageTeaser__image img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.housetypesDetail {
  width: 100%;
  overflow: hidden;
}
.housetypesDetail .finder__button {
  pointer-events: none;
}
@media (min-width: 1025px) {
  .housetypesDetail__headerMobile {
    display: none;
  }
}
.housetypesDetail__media {
  position: relative;
  padding-top: 75%;
  margin-bottom: 70px;
}
.housetypesDetail__mediaContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.housetypesDetail__image {
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .housetypesDetail__body {
    padding-right: 25px;
  }
}
.housetypesDetail__bodySection {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .housetypesDetail__bodySection {
    margin-bottom: 32px;
  }
}
@media (min-width: 769px) {
  .housetypesDetail__bodySection {
    margin-bottom: 42px;
  }
}
@media (min-width: 1025px) {
  .housetypesDetail__bodySection {
    margin-bottom: 42px;
  }
}
@media (min-width: 1200px) {
  .housetypesDetail__bodySection {
    margin-bottom: 42px;
  }
}
@media (min-width: 1500px) {
  .housetypesDetail__bodySection {
    margin-bottom: 60px;
  }
}
.housetypesDetail__variant {
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.housetypesDetail__variant.js-active {
  height: auto;
  opacity: 1;
  pointer-events: all;
}
.housetypesDetail__variantInsert {
  display: none;
}
.housetypesDetail__variantInsert.js-active {
  display: inline;
}
.housetypesDetail__variantButtons {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
  margin-right: -2px;
}
.housetypesDetail__variantButton {
  text-align: left;
  max-width: 33.333333%;
  padding: 0 2px 8px 2px;
}
@media (min-width: 769px) {
  .housetypesDetail__variantButton {
    max-width: 50%;
  }
}
@media (min-width: 1025px) {
  .housetypesDetail__variantButton {
    max-width: 33.333333%;
  }
}
.housetypesDetail__variantButton.js-active figure {
  border-color: #E20000;
}
.housetypesDetail__variantButton figure {
  display: inline-block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.housetypesDetail__variantButton figure:hover {
  border-color: #E20000;
}
.housetypesDetail__variantButton figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background-image: linear-gradient(transparent, #333);
}
.housetypesDetail__variantButton img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.housetypesDetail__variantTitle {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  pointer-events: none;
  z-index: 1;
}
.housetypesDetail__badge {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
}
@media (min-width: 769px) {
  .housetypesDetail__badge {
    margin-right: 25px;
  }
}
.housetypesDetail__iframeContainer {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.housetypesDetail__image360 {
  height: 0 !important;
  padding-bottom: 56.25% !important;
}
.housetypesDetail__image360--classic {
  padding-bottom: 75% !important;
}
.housetypesDetail__icon360 {
  position: absolute;
  bottom: 5%;
  left: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 7px;
  background-color: rgba(226, 0, 0, 0.5);
  pointer-events: none;
  z-index: 100;
}
@media (min-width: 769px) {
  .housetypesDetail__icon360 {
    width: 60px;
    height: 60px;
  }
}
.housetypesDetail__icon360 &gt; div {
  background-color: #E20000;
  border-radius: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.housetypesDetail__icon360 .icon::before {
  color: #FFF;
  font-size: 22px;
}
@media (min-width: 769px) {
  .housetypesDetail__icon360 .icon::before {
    font-size: 30px;
  }
}
.housetypesDetail__form div:first-child {
  padding-bottom: 0;
}
.housetypesDetail__priceWrap {
  display: none;
  margin-bottom: 0.6em;
}
.housetypesDetail__price {
  font-size: 22px;
  color: #E20000;
  font-weight: bold;
  display: none;
}
@media (min-width: 576px) {
  .housetypesDetail__price {
    font-size: 22px;
  }
}
@media (min-width: 769px) {
  .housetypesDetail__price {
    font-size: 24px;
  }
}
@media (min-width: 1025px) {
  .housetypesDetail__price {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .housetypesDetail__price {
    font-size: 24px;
  }
}
@media (min-width: 1500px) {
  .housetypesDetail__price {
    font-size: 24px;
  }
}
.housetypesDetail__price.js-active {
  display: block;
}
.housetypesDetail__priceDisclaimer {
  font-size: 10px;
  color: #333;
}
.housetypesDetail__subheadline {
  font-size: 16px;
  margin-top: 5px;
  display: none;
}
.housetypesDetail__showForm {
  display: none;
}
.housetypesDetail .red {
  color: #E20000;
}
.housetypesDetail__priceContainer:not([data-location=""]) .housetypesDetail__showForm, .housetypesDetail__priceContainer:not([data-location=""]) .housetypesDetail__subheadline {
  display: none !important;
}
.housetypesDetail__error {
  display: none;
  margin-bottom: 15px;
}
.housetypesDetail__iconList {
  overflow: visible;
}
.housetypesDetail__icon {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  height: 90px;
  transform: scale(1);
  transition: all 0.3s;
}
.housetypesDetail__icon:hover {
  transform: scale(1.1);
}
.groundPlan {
  overflow: hidden;
}
.groundPlan__buttons {
  margin-bottom: 20px;
}
.groundPlan__button {
  background-color: #E5E5E5;
  color: #333;
  margin-right: 15px;
  margin-bottom: 15px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
}
@media (min-width: 769px) {
  .groundPlan__button {
    margin-right: 25px;
  }
}
.groundPlan__button:last-child {
  margin-right: 0;
}
.groundPlan__button.js-active, .groundPlan__button:hover {
  background-color: #E20000;
  color: #FFF;
}
.groundPlan__floors {
  height: 0;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.groundPlan__floors.js-active {
  height: auto;
  opacity: 1;
  pointer-events: all;
}
.groundPlan__floorPlan {
  position: relative;
  width: 100%;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.groundPlan__floorPlan.js-active {
  height: auto;
  opacity: 1;
  pointer-events: all;
}
.groundPlan__floorPlan img {
  width: 100%;
}
.groundPlan__rooms {
  height: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.groundPlan__rooms.js-active {
  height: auto;
  opacity: 1;
  pointer-events: all;
  position: relative;
}
.groundPlan__column {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .groundPlan__column--left {
    width: 60%;
  }
}
@media (min-width: 769px) {
  .groundPlan__column--right {
    width: 38%;
  }
}
.groundPlan__columnRow {
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .groundPlan__columnRow {
    margin-bottom: 30px;
  }
}
.groundPlan__row {
  width: 100%;
}
.groundPlan__sum {
  display: flex;
  flex-wrap: wrap;
  column-gap: 70px;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .groundPlan__sum {
    justify-content: center;
  }
}
.groundPlan__sum.js-active {
  height: auto;
  opacity: 1;
  pointer-events: all;
}
.groundPlan__sum dt {
  margin-right: 30px;
}
.groundPlan__slider {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.groundPlan__slider.js-active {
  height: auto;
  opacity: 1;
  pointer-events: all;
  margin-bottom: 30px;
}
.groundPlan__slider .glider {
  margin-left: -8px;
  margin-right: -8px;
}
.groundPlan__slider .lightboxContent {
  display: none;
  height: 0;
}
.groundPlan__sliderImageContainer {
  position: relative;
  padding: 10px;
  min-width: auto !important;
}
.groundPlan__sliderImageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.groundPlan__sliderImageContainer .housetypesDetail__icon360 {
  left: auto;
  bottom: auto;
  left: 50%;
  bottom: 50%;
  margin-left: -31px;
  margin-bottom: -31px;
}
.groundPlan .degree360 .housetypesDetail__icon360 {
  width: 60px;
  height: 60px;
}
.groundPlan__variantTitle {
  cursor: pointer;
  color: #E20000;
  text-decoration: none;
  transition: background-size 0.3s ease-in;
  background-image: linear-gradient(to right, #E20000, #E20000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  padding-bottom: 2px;
  text-align: left;
  font-size: 15px;
}
.groundPlan__variantTitle:hover {
  background-size: 100% 1px;
}
.groundPlan__spaceResult {
  position: relative;
  display: inline-block;
  color: #FFF;
  background-color: #E20000;
  border-radius: 20px;
  padding: 5px 15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.groundPlan .housetypesDetail__variantTitle {
  font-size: 12px;
}
.housetypesList .card__top {
  height: auto;
}
.homesList .gridbox {
  padding-top: 20px;
}
.homesList__filters {
  padding: 20px 0;
}
@media (min-width: 576px) {
  .homesList__filters {
    display: flex;
  }
}
@media (min-width: 576px) {
  .homesList__filters .tagFilter__button:last-child {
    position: relative;
    left: 5%;
  }
}
.homesList__cardContainer {
  margin-bottom: 20px;
}
.homesList .cardImgLeft--small {
  padding: 10px 0 10px 0;
}
@media (min-width: 576px) {
  .homesList .cardImgLeft--small {
    position: static;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.homesList__mapContainer {
  width: 100%;
}
.homesList__mapContainer .mapouter {
  height: 100%;
}
.homesList__mapContainer .gmap_canvas {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.homesList__mapContainer .gmap_canvas #gmap_canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.homesList__loadButton {
  margin: 20px auto;
}
.homesDetail__kontakt dd {
  display: flex;
  align-items: center;
}
.homesDetail__kontakt dd i {
  padding-right: 5%;
}
.homesDetail__kontakt dd .icon--email {
  font-size: 0.8em;
}
.homesDetail__time dd {
  display: flex;
  justify-content: space-between;
}
.homesDetail__video {
  width: 100% !important;
  padding: 40px 0;
  height: 300px;
}
@media (min-width: 769px) {
  .homesDetail__video {
    height: 625px;
  }
}
.homesDetail .homeCardContent {
  display: flex;
}
.homesDetail .homeCardContent i {
  font-size: 1.5em;
  padding: 2% 7% 0 0;
}
.homesDetail__image {
  width: 100%;
  height: auto;
}
.homesDetail__related {
  margin-top: 30px;
}
.homesDetail main .rte {
  margin-top: 30px;
}
.homesDetail__roundView {
  margin: 50px -10px;
}
.homesDetail__roundView .lightboxContent {
  height: 0;
}
.homesDetail__roundView .housetypesDetail__icon360 {
  width: 60px;
  height: 60px;
}
.infoWindow__heading {
  font-size: 20px;
  margin-bottom: 0.2em;
}
.infoWindow__body {
  margin-bottom: 10px;
}
.infoWindow__body p {
  font-size: 17px;
}
.infoWindow__button {
  margin-top: 5px;
}
.frame-type-tcprimaryt3content_imageteaser .frame-container {
  padding-left: 0;
  padding-right: 0;
}
.imageTeaser {
  position: relative;
}
.imageTeaser__imageContainer {
  position: relative;
  overflow: hidden;
}
.imageTeaser__imageContainer img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.imageTeaser__image img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.imageTeaser__imageBadge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 15%;
}
@media (min-width: 576px) {
  .imageTeaser__imageBadge {
    top: 32px;
  }
}
@media (min-width: 769px) {
  .imageTeaser__imageBadge {
    top: 42px;
  }
}
@media (min-width: 1025px) {
  .imageTeaser__imageBadge {
    top: 42px;
  }
}
@media (min-width: 1200px) {
  .imageTeaser__imageBadge {
    top: 42px;
  }
}
@media (min-width: 1500px) {
  .imageTeaser__imageBadge {
    top: 60px;
  }
}
@media (min-width: 576px) {
  .imageTeaser__imageBadge {
    right: 32px;
  }
}
@media (min-width: 769px) {
  .imageTeaser__imageBadge {
    right: 42px;
  }
}
@media (min-width: 1025px) {
  .imageTeaser__imageBadge {
    right: 42px;
  }
}
@media (min-width: 1200px) {
  .imageTeaser__imageBadge {
    right: 42px;
  }
}
@media (min-width: 1500px) {
  .imageTeaser__imageBadge {
    right: 60px;
  }
}
.imageTeaser__caption {
  font-size: 16px;
  font-weight: 300;
}
.imageTeaser__content {
  padding: 60px;
  height: max-content;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 0.25rem;
}
@media (min-width: 769px) {
  .imageTeaser__content {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 5%;
    width: 90%;
  }
}
@media (min-width: 1025px) {
  .imageTeaser__content {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .imageTeaser__content {
    width: 35%;
  }
}
@media (min-width: 769px) {
  .imageTeaser__content--textBoxLarger {
    width: 70%;
  }
}
.imageTeaser__content--withoutTextBox {
  display: none;
}
.imageTeaser__contentMain ul {
  padding: 10px 0;
}
.imageTeaser__contentMain ul li {
  padding-top: 10px;
  padding-bottom: 10px;
}
.imageTeaser__btn {
  margin-top: 20px;
}
.infoBox {
  overflow: hidden;
}
.infoBox__container {
  background-color: #F1F4EE;
  padding: 30px 24px;
}
.infoBox__container dl &gt; div {
  padding-bottom: 20px;
}
.infoBox__container dl dt {
  color: #333;
}
.infoBox__container dl dd.margin {
  margin-bottom: 10px;
}
.infoBox__container dl .btn {
  width: 100%;
}
.infoBox__container dl .mapouter {
  position: relative;
  padding-bottom: 73%;
  /* ratio 16x9 */
  height: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.infoBox__container dl .mapouter #infoBoxMap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.infoBox__container dl .gmap_canvas {
  position: relative;
  padding-bottom: 100%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.infoBox__container dl .gmap_canvas #gmap_canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.infoBox__header {
  margin-bottom: 2rem;
}
.infoBox__headline {
  font-size: 24px;
}
@media (min-width: 1025px) {
  .infoBox__headline {
    font-size: 38px;
  }
}
.infoBox__subHeadline {
  font-size: 16px;
}
@media (min-width: 1025px) {
  .infoBox__subHeadline {
    font-size: 19px;
  }
}
.infoBox__item:not(:last-child) {
  border-bottom: 1px solid #C1C1C1;
  margin-bottom: 20px;
}
.lexSearch form {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  height: 75px;
  border-radius: 5px;
}
@media (min-width: 1200px) {
  .lexSearch form {
    max-width: 1030px;
    margin-left: auto;
    margin-right: auto;
  }
}
.lexSearch i {
  font-size: 22px;
}
.lexSearch__input {
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1;
}
.lexSearch__placeholder {
  display: flex;
  position: absolute;
  transition: all 0.25s linear;
  z-index: 0;
}
.lexSearch__placeholder i {
  padding-right: 10px;
}
.lexSearch--active .lexSearch__placeholder {
  opacity: 0;
}
.lexView__header &gt; * {
  margin-bottom: 40px;
}
.lexView__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .lexView__main {
    flex-wrap: nowrap;
  }
  .lexView__main .alpNav {
    width: 35%;
    padding-right: 5%;
  }
  .lexView__main .alpNav ul {
    justify-content: left;
  }
}
.lexView__main &gt; * {
  margin-bottom: 40px;
}
.lexView__alpView {
  color: #E20000;
}
.lexView__alpView:not(:first-child) {
  margin-top: 40px;
}
.lexView__lexicon {
  width: 100%;
}
.lightbox__overlay {
  opacity: 0;
  z-index: 1000;
  overflow: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .lightbox__overlay {
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.lightbox__btn--close {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 576px) {
  .lightbox__btn--close {
    background-color: rgba(255, 255, 255, 0.75);
  }
}
@media (min-width: 1200px) {
  .lightbox__btn--close {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: none;
  }
}
.lightbox__holder {
  position: relative;
  max-width: 1200px;
  height: 100%;
}
@media (min-width: 576px) {
  .lightbox__holder {
    margin: 0 auto;
  }
}
.lightbox__content {
  height: 100%;
  display: flex;
  align-items: center;
}
.lightbox__glider {
  position: absolute !important;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 1200px) {
  .lightbox__glider {
    height: 80%;
  }
}
.lightbox__glider .glider__item {
  height: 100%;
}
.lightbox .glider-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 15%;
  height: fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .lightbox .glider-nav {
    bottom: 10%;
  }
}
@media (min-width: 1200px) {
  .lightbox .glider-nav {
    bottom: 3%;
  }
}
.lightbox .glider-nav .glider-dots {
  position: fixed;
  left: 0;
  right: 0;
  top: 5%;
  opacity: 0;
  height: fit-content;
  background-color: rgba(255, 255, 255, 0.75);
  width: max-content;
  border-radius: 1rem;
}
@media (min-width: 576px) {
  .lightbox .glider-nav .glider-dots {
    opacity: 1;
    top: 10%;
  }
}
@media (min-width: 1200px) {
  .lightbox .glider-nav .glider-dots {
    top: 4%;
    background-color: rgba(255, 255, 255, 0);
  }
}
.lightbox .glider-nav .glider-dots &gt; * {
  background-color: #666;
}
.lightbox .glider-nav .glider-dots .active {
  background-color: #E20000;
}
.lightbox .glider-nav .glider-buttons {
  display: flex;
  position: relative;
  bottom: auto;
  top: auto;
  right: auto;
  left: auto;
}
@media (min-width: 576px) {
  .lightbox .glider-nav .glider-buttons .btn {
    background-color: #FFF;
  }
}
@media (min-width: 1200px) {
  .lightbox .glider-nav .glider-buttons .btn {
    background-color: rgba(255, 255, 255, 0);
  }
}
.lightbox .pnlm-controls-container {
  top: 15%;
  left: 1%;
}
@media (min-width: 1200px) {
  .lightbox .pnlm-controls-container {
    top: 10%;
  }
}
.lightbox--show .lightbox {
  opacity: 1;
  left: 0;
}
.lightboxContactForm .lightbox__holder {
  height: auto;
}
.lightboxContactForm form {
  margin: 0 -1.55rem 0 0;
}
.news .headline--brand {
  border-bottom: 1px solid #CCC;
}
.news .gridbox--news {
  padding-top: 30px;
}
@media (min-width: 769px) {
  .news .gridbox--news .gridbox__item:nth-child(1), .news .gridbox--news .gridbox__item:nth-child(2) {
    width: 66.666666%;
  }
}
@media (min-width: 1200px) {
  .news .gridbox--news .gridbox__item:nth-child(1), .news .gridbox--news .gridbox__item:nth-child(2) {
    width: 50%;
  }
}
.news footer {
  display: flex;
  justify-content: center;
  padding-top: 45px;
}
.news-related {
  margin-block-start: 2rem;
}
.tx-tc-t3-news {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tx-tc-t3-news .teaser-text {
  font-weight: bold;
}
.tx-tc-t3-news .news-backlink-wrap {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 769px) {
  .tx-tc-t3-news .teaser-text, .tx-tc-t3-news .news-text-wrap {
    padding: 0 6rem;
  }
}
.tx-tc-t3-news .mediaelement img {
  width: 100%;
  max-height: 100vw;
  object-fit: cover;
}
@media (min-width: 769px) {
  .tx-tc-t3-news .mediaelement img {
    max-height: 35rem;
  }
}
.propsAreasList__image {
  width: 100%;
  object-fit: cover;
}
.propsAreasList .tagFilter {
  padding-top: 10px;
}
@media (min-width: 769px) {
  .propsAreasList .tagFilter {
    justify-content: flex-start;
  }
}
.propsAreasList__loadButton {
  margin: 40px auto 0;
}
.propsAreasList .card__top {
  height: auto;
}
.propsDetail__glider .cardContent {
  display: flex;
  align-items: baseline;
}
.propsDetail__glider .cardContent i {
  padding-right: 3%;
}
.propsDetail__immo {
  background: none !important;
  display: inline-block;
  top: 5px;
  position: relative;
}
.propsDetail__immoImage {
  display: inline-block;
}
.propsDetail__image {
  width: 100%;
}
.propsDetail .rte, .propsDetail .cke_editable {
  margin-top: 30px;
}
.frame-type-tcprimaryt3content_stageheader {
  padding-top: 0 !important;
}
.frame-type-tcprimaryt3content_stageheader .frame-container {
  padding-left: 0;
  padding-right: 0;
}
.stageHeader {
  position: relative;
}
.stageHeader__bgImage {
  display: block;
  object-fit: cover;
  width: 100%;
}
.stageHeader__stickerImage {
  position: absolute;
  top: 10%;
  right: 10%;
}
.stageHeader__content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 0.25em;
  padding: 20px;
  margin: -100px 10px 0px;
  background-color: #FFF;
  word-break: break-word;
  min-width: min-content;
  position: relative;
}
@media (min-width: 576px) {
  .stageHeader__content {
    margin: 0;
    width: 50%;
    position: absolute;
    bottom: -40px;
    left: 80px;
    z-index: 10;
  }
}
@media (min-width: 1025px) {
  .stageHeader__content {
    width: 37.5%;
  }
}
@media (min-width: 1200px) {
  .stageHeader__content {
    width: 35%;
  }
}
@media (max-height: 800px) and (min-width: 1025px) {
  .stageHeader__content {
    bottom: 100px;
  }
}
@media (max-height: 800px) and (min-width: 1200px) {
  .stageHeader__content {
    bottom: 150px;
  }
}
.stageHeader__content span {
  line-height: 1.2;
}
.stageHeader__ellipsis {
  font-size: 50px;
  color: #71BF42;
  font-weight: bold;
  margin-top: -20px;
}
.stageHeader__contentNew {
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  pointer-events: none;
}
@media (min-width: 576px) {
  .stageHeader__contentNew {
    bottom: 42px;
    left: 42px;
    right: 80px;
  }
}
.stageHeader__headlineNew {
  line-height: 1.6;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .stageHeader__headlineNew {
    font-size: 35px;
  }
}
@media (min-width: 769px) {
  .stageHeader__headlineNew {
    font-size: 54px;
  }
}
@media (min-width: 1025px) {
  .stageHeader__headlineNew {
    font-size: 54px;
  }
}
@media (min-width: 1200px) {
  .stageHeader__headlineNew {
    font-size: 54px;
  }
}
@media (min-width: 1500px) {
  .stageHeader__headlineNew {
    font-size: 54px;
  }
}
.stageHeader__headlineNew span {
  background-color: #FFF;
  color: #E20000;
  display: inline;
  padding: 0.1em 0.3em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 5px;
}
.stageHeader__button {
  margin-top: 30px;
}
@media (min-width: 576px) {
  .presseList__headArticle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
  }
}
.presseList__headArticle .headline {
  margin-bottom: 0;
}
.presseList__headArticle &gt; * {
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .presseList__headArticle &gt; * {
    padding-bottom: 0;
  }
}
.presseList__filter {
  position: relative;
}
.presseList__filter summary {
  list-style: none;
}
.presseList__filter summary &gt; * {
  pointer-events: none;
}
.presseList__filter summary::marker, .presseList__filter summary::-webkit-details-marker {
  display: none;
}
.presseList__filter summary::after {
  transition: transform 0.1s;
  content: "";
  color: #E20000;
  font-family: "icomoon";
  margin-left: 10px;
}
.presseList__filter[open] summary ~ * {
  animation: sweep 0.1s ease-in-out;
  transform-origin: top center;
}
@keyframes sweep {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.presseList__filter[open] summary::after {
  transform: rotateX(180deg);
}
.presseList__filterDropDown {
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  background-color: #FFF;
  padding: 10px 20px;
  position: absolute;
  width: 100%;
  z-index: 99;
}
.presseList__filterOptions {
  cursor: pointer;
}
.presseList__filterOptions--active {
  font-size: bold !important;
  color: #E20000;
}
.presseList .btn--iconText, .presseList .btn--iconTextL, .presseList .btn--iconTextXL {
  margin: 10px auto 0;
}
@media (min-width: 576px) {
  .presseList .btn--iconText, .presseList .btn--iconTextL, .presseList .btn--iconTextXL {
    margin-top: 40px;
  }
}
.presseList__headDownloads, .presseList__headPressemappen {
  padding-top: 20px;
}
@media (min-width: 576px) {
  .presseList__headDownloads, .presseList__headPressemappen {
    padding-top: 40px;
  }
}
.presseList .cardImg .card__headline {
  padding-bottom: 0;
}
.glider {
  scrollbar-width: none;
}
.glider.gridbox {
  margin-left: -10px;
  margin-right: -10px;
}
.glider-slide {
  justify-content: flex-start;
}
.glider-dot:only-child {
  display: none;
}
.glider__img {
  width: 100%;
  object-fit: cover;
  height: auto;
  cursor: pointer;
}
.glider__caption {
  font-size: 16px;
  font-weight: 300;
}
.glider img {
  opacity: 0;
}
.glider .glider-track img {
  opacity: 1;
}
.partnersearch__searchform {
  padding: 20px 0 80px;
}
.partnerContactForm {
  min-height: 400px;
}
.partnerContactForm .contactResult {
  padding: 80px 30px;
}
@media (min-width: 1025px) {
  .partnerContactForm .contactResult {
    padding: 80px;
  }
}
.partnerContactForm .autocomplete-container {
  position: relative;
}
.partnerContactForm .autocomplete:focus ~ .autocomplete-list {
  transform: scaleY(1);
}
.partnerContactForm .autocomplete-list {
  transition: transform 0.2s ease-in-out;
  transition-delay: 80ms;
  transform: scaleY(0);
  transform-origin: top center;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid #E5E5E5;
  position: absolute;
  top: 4.3rem;
  background-color: #FFF;
  max-height: 50vh;
  overflow-y: auto;
  width: 50%;
}
.partnerContactForm .autocomplete-list button, .partnerContactForm .autocomplete-list .btn {
  text-align: left;
  padding: 0.5rem;
}
.partnerContactForm .autocomplete-list button:hover, .partnerContactForm .autocomplete-list .btn:hover {
  font-weight: bold;
  color: #E20000;
}
.lightbox__content .partnerContactForm {
  background-color: #fff;
  padding: 10px 20px;
  margin: 10px;
  width: 100%;
}
.cardPartner {
  width: 100%;
}
@media (min-width: 769px) {
  .cardPartner {
    width: 50%;
  }
}
.cardPartner__headline {
  margin-bottom: 0.3em;
}
.cardPartner__subHeadline {
  color: #333;
  margin-bottom: 1.5em;
}
.cardPartner__headline3 {
  color: #333;
  padding: 0 !important;
}
.cardPartner__headline3--green {
  color: #71BF42;
  margin-bottom: 0.7em !important;
}
.cardPartner__center {
  padding-bottom: 0 !important;
}
.cardPartner__bottom {
  padding: 20px;
}
.cardPartner__item {
  padding-bottom: 30px !important;
  width: 100%;
}
@media (min-width: 576px) {
  .cardPartner__item {
    width: 50%;
  }
}
@media (min-width: 769px) {
  .cardPartner__item {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .cardPartner__item {
    width: 50%;
  }
}
.cardPartner .cardImgLeft .deflist p {
  font-size: 16px;
}
.navFooter__column {
  break-inside: avoid;
}
.navFooter__title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 1em;
  line-height: 1.2;
  display: inline-block;
}
@media (min-width: 576px) {
  .navFooter__title {
    font-size: 19px;
  }
}
.navFooter__list {
  margin-bottom: 1.8rem;
}
.navFooter__item {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 0.8em;
}
@media (min-width: 576px) {
  .navFooter__item {
    font-size: 16px;
  }
}
.navFooter__link:hover {
  color: #E20000;
}
.navSocial {
  background-color: #E20000;
  color: #FFF;
  width: 100%;
  min-height: 120px;
}
.navSocial__list {
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 576px) {
  .navSocial__list {
    gap: 36px;
  }
}
.navSocial__item {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #FFF;
}
.navSocial__link {
  color: #FFF !important;
  font-size: 35px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-image: none !important;
}
.navMeta {
  width: 100%;
}
.navMeta__list {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  flex-wrap: wrap;
}
.navMeta__item {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
}
.navMeta__item:not(:last-child)::after {
  content: "|";
  margin-left: 20px;
}
.navMeta__link:hover {
  color: #E20000;
}
.breadcrumb {
  height: 0;
  display: none;
  background-color: rgba(255, 255, 255, 0.93);
}
@media (min-width: 1025px) {
  .breadcrumb {
    display: block;
    height: 60px;
  }
}
.breadcrumb__list {
  height: 60px;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.breadcrumb__item {
  font-size: 16px;
}
.breadcrumb__item:not(:last-child) {
  cursor: pointer;
  margin-right: 30px;
  position: relative;
}
.breadcrumb__item:not(:last-child):hover {
  color: #E20000;
}
.breadcrumb__item:not(:last-child)::after {
  font-family: "icomoon";
  font-weight: normal;
  font-size: 12px;
  content: "";
  color: #E20000;
  position: absolute;
  right: -21px;
  top: 2px;
}
.header--scrolled .breadcrumb .frame-container {
  border-bottom: 1px solid #E5E5E5;
}
@media (min-width: 1500px) {
  .header--scrolled .breadcrumb .frame-container {
    border: none;
  }
}
@media (min-width: 1500px) {
  .header--scrolled .breadcrumb__list {
    border-color: #E5E5E5;
  }
}
.contactFooter__partnerTitle {
  color: #E20000;
  font-weight: bold;
  line-height: 1.2;
  font-size: 18px;
  margin-bottom: 0.8em;
}
@media (min-width: 576px) {
  .contactFooter__partnerTitle {
    font-size: 28px;
  }
}
.contactFooter__phone {
  margin-bottom: 1rem;
}
.contactFooter__phoneAdd {
  font-size: 16px;
  font-weight: 300;
}
.contactFooter__phoneLink {
  color: #E20000;
  font-weight: bold;
  font-size: 18px;
}
@media (min-width: 576px) {
  .contactFooter__phoneLink {
    font-size: 28px;
  }
}
.contactFooter p {
  font-size: 15px;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .contactFooter p {
    font-size: 19px;
  }
}
.navTeasers {
  margin-top: 50px;
  position: relative;
}
.navTeasers__teaser {
  align-items: flex-start;
  column-gap: 45px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
.navTeasers__teaser.active {
  display: flex;
}
.navTeasers__media {
  position: relative;
  width: 40%;
  border-radius: 5px;
  display: block;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .navTeasers__media {
    width: 50%;
  }
}
.navTeasers__mediaImage {
  width: 100%;
  height: auto;
  display: block;
}
.navTeasers__mediaText {
  color: #FFF;
}
.navTeasers__text {
  width: 50%;
}
.navTeasers__text p {
  font-size: 17px;
  margin-bottom: 1rem !important;
}
.navTeasers__text a {
  font-size: 14px;
}
#vocalcom-navbar {
  bottom: 70px !important;
}
@media (min-width: 769px) {
  #vocalcom-navbar {
    bottom: 0 !important;
  }
}
#vocalcom-navbar .nav-actions {
  padding-right: 10px !important;
}
#vocalcom-navbar .btn {
  background-color: #E20000 !important;
  border-radius: 5px !important;
  border: none !important;
  font-weight: bold !important;
}
#vocalcom-navbar .btn-group .btn {
  background-color: transparent !important;
}
#vocalcom-navbar .icon-thewave.icon-comment-white::after {
  font-family: Roboto, sans-serif !important;
}
#vocalcom-navbar .icon-thewave.icon-collapse-up::after {
  top: 1px !important;
}
#vocalcom-navbar .icon-thewave.icon-close::after {
  top: 0 !important;
}
.campaign {
  position: relative;
}
.campaign picture {
  display: block;
}
.campaign__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.85;
}
.campaign__content {
  position: relative;
  background-color: #FFF;
  padding: 20px 20px 25px;
  width: 95%;
  left: 2.5%;
  margin-top: -10%;
  margin-bottom: 5px;
  box-shadow: 1px 1px 5px #CCC;
}
@media (min-width: 1025px) {
  .campaign__content {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 510px;
    padding: 30px;
    left: auto;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .campaign__content {
    position: absolute;
    bottom: 80px;
    right: 80px;
    padding: 40px;
  }
}
.campaign__button {
  margin-top: 30px;
}
.campaign__eyecatcher {
  display: block;
  z-index: 5;
  position: absolute;
  top: 2.5%;
  left: 2.5%;
  width: 20%;
  max-width: 200px;
}
@media (min-width: 1025px) {
  .campaign__eyecatcher {
    top: 50px;
    left: 50px;
  }
}
@media (min-width: 1200px) {
  .campaign__eyecatcher {
    top: 80px;
    left: 80px;
  }
}
.campaign__eyecatcher img {
  height: auto;
}
@media (min-width: 1025px) {
  .campaign--left .campaign__content {
    right: auto;
    left: 50px;
  }
}
@media (min-width: 1200px) {
  .campaign--left .campaign__content {
    right: auto;
    left: 80px;
  }
}
.campaign--left .campaign__eyecatcher {
  left: auto;
  right: 2.5%;
}
@media (min-width: 1025px) {
  .campaign--left .campaign__eyecatcher {
    left: auto;
    right: 50px;
  }
}
@media (min-width: 1200px) {
  .campaign--left .campaign__eyecatcher {
    left: auto;
    right: 80px;
  }
}
.sidebar {
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.325rem;
  position: fixed;
  bottom: 0;
  right: 0;
  padding-right: 6px;
  width: 100%;
  height: 68px;
  background-color: #FFF;
  justify-content: flex-end;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 769px) {
  .sidebar {
    transform: none;
    bottom: auto;
    top: 35%;
    flex-direction: column;
    width: 68px;
    height: auto;
    padding: 6px;
  }
}
.sidebar__button {
  position: relative;
  width: 57px;
  height: 57px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}
.sidebar__button::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #E6E6E6;
  position: absolute;
  top: 0;
  left: -3px;
}
@media (min-width: 769px) {
  .sidebar__button::before {
    width: 100%;
    height: 1px;
    top: -3px;
    left: 0;
  }
}
@media (min-width: 769px) {
  .sidebar__button:first-child::before {
    display: none;
  }
}
.referencesDetail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.referencesDetail__header .headline {
  margin-block-end: 1.5rem;
}
.referencesDetail__header .headline span {
  font-size: 1rem;
  display: block;
  margin-block: 0.75rem;
}
.referencesDetail__controls {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.referencesDetail__content {
  margin-bottom: 30px;
}
.referencesDetail .glider-slide img {
  width: 100%;
}
.referencesDetail .frame-container {
  max-width: 1174px;
}
.referencesList .mapouter {
  height: 100%;
  margin-bottom: 30px;
}
.referencesList__more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.referencesList__results {
  margin-bottom: 20px;
  width: 100%;
}
.referencesList .gmap_canvas {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.referencesList .gmap_canvas #gmap_canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.referencesList .card__img img {
  width: 100%;
  height: auto;
}
.consentFallback {
  position: absolute;
  top: 0;
  padding: 5%;
  align-items: center;
  background: #0001;
  height: 100%;
  width: 100%;
  overflow: hidden auto;
  justify-content: flex-start;
  gap: 0.3rem;
}
@media (min-width: 576px) {
  .consentFallback {
    justify-content: center;
  }
}
@media (min-width: 1025px) {
  .consentFallback {
    padding: 9%;
  }
}
.consentFallback__message, .consentFallback li {
  color: #000a;
  font-size: 15px;
  line-height: 1.2;
}
@media (min-width: 1025px) {
  .consentFallback__message, .consentFallback li {
    font-size: 1rem;
    line-height: inherit;
  }
}
.consentFallback__controls {
  display: inline-block;
}
@media (min-width: 576px) {
  .consentFallback__controls {
    display: flex;
  }
}
.consentFallback .btn {
  padding: 14px 24px;
}
.consentFallback .btn--light {
  margin-bottom: 10px;
}
iframe[src] + .consentFallback {
  display: none;
}
iframe[data-src] {
  display: none;
}
iframe[data-src] + .consentFallback {
  display: inherit;
}
.infoBox .consentFallback {
  justify-content: flex-start;
  padding: 5%;
}
.infoBox .consentFallback__message, .infoBox .consentFallback li {
  font-size: 15px;
  line-height: 1.2;
}
.infoBox .consentFallback .consentFallback__controls {
  display: inline-block !important;
}
.lds-spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #E20000;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.lds-overlay {
  width: 100%;
  z-index: 999;
  text-align: center;
  display: none;
}
.lds-overlay.spinner-active {
  display: block;
}
.lds-overlay .lds-spinner {
  z-index: 9;
}
.lds-overlay--absolute {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#ot-sdk-cookie-policy a, #ot-sdk-cookie-policy td, #ot-sdk-cookie-policy span {
  font-weight: 300 !important;
}
.googleReviews__placeInfo {
  margin-bottom: 50px;
}
.googleReviews .review__bubble {
  position: relative;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.googleReviews .review__bubble::before, .googleReviews .review__bubble::after {
  content: "";
  display: block;
  background-color: #FFF;
  position: absolute;
}
.googleReviews .review__bubble::before {
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  bottom: -15px;
  right: 20%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.googleReviews .review__bubble::after {
  width: 100%;
  height: 25px;
  bottom: 0;
  right: 0;
}
.googleReviews .review__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.googleReviews .review__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.googleReviews .review__signatory {
  margin-left: 20px;
  flex-grow: 1;
}
.googleReviews .review__author {
  color: #71BF42;
  font-size: 19px;
}
.googleReviews .review__date {
  font-size: 19px;
}
.googleReviews .review__text {
  aspect-ratio: 1.3;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
}
@media (min-width: 576px) {
  .googleReviews .review__text {
    aspect-ratio: 3;
  }
}
@media (min-width: 769px) {
  .googleReviews .review__text {
    aspect-ratio: 1.3;
  }
}
.googleReviews .review__image {
  width: 25%;
  max-width: 100px;
}
.cSelect {
  position: relative;
  width: 330px;
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.cSelect * {
  box-sizing: border-box;
}
.cSelect__default {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  height: 48px;
  padding: 8px 8px 8px 16px;
  border: 1px solid #C1C1C1;
  border-radius: 5px;
  cursor: pointer;
  color: #333;
}
.cSelect__disabled .cSelect__default {
  cursor: not-allowed;
}
.cSelect__disabled .cSelect__default .cSelect__label {
  color: #C1C1C1;
}
.cSelect__label-arrow {
  position: relative;
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  box-sizing: border-box;
}
.cSelect__label-arrow::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 11px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #E20000;
  border-right: 2px solid #E20000;
  transform: rotateZ(135deg);
}
.cSelect__drop {
  position: absolute;
  width: 100%;
  height: 0;
  max-height: 300px;
  left: 0;
  top: 48px;
  transition: height, 0.25s;
  z-index: 1000;
}
.cSelect__drop--open .cSelect__results {
  border: 1px solid #C1C1C1;
}
.cSelect__results {
  height: 100%;
  overflow-y: auto;
  max-height: 300px;
  padding: 0 !important;
  background-color: #FFF;
  color: #333;
  border-radius: 5px;
  margin: 10px 0 0;
  scrollbar-width: thin;
}
.cSelect__search {
  position: absolute;
  top: 0;
  height: 48px;
  width: 100%;
  overflow: hidden;
  background-color: #E20000;
  pointer-events: none;
  border-radius: 12px;
  transition: all 0.5s;
  display: none;
}
.cSelect__search-input {
  width: 100%;
  height: 100%;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  background-color: transparent;
  color: #C1C1C1;
  border: 2px solid #C1C1C1;
  border-radius: 12px;
}
.cSelect__search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 16px;
  height: 16px;
}
.cSelect__search-icon::before, .cSelect__search-icon::after {
  content: "";
  display: block;
  box-sizing: border-box;
}
.cSelect__search-icon::before {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
}
.cSelect__search-icon::after {
  margin: 0 auto;
  width: 2px;
  height: 6px;
  background-color: transparent;
}
.cSelect__option {
  padding: 0.7em;
  cursor: pointer;
  font-size: 16px !important;
  min-height: 17px;
  list-style: none;
  margin: 10px !important;
  border-radius: 8px;
  transition: all 0.3s;
  /* needs to be after selected */
}
.cSelect__option::before {
  display: none;
}
.cSelect__option:hover {
  background-color: #E20000;
  color: #FFF;
}
.cSelect__option.selected {
  font-weight: bold;
}
.cSelect__option.disabled {
  display: none;
}
.cSelect--opened .cSelect__search {
  display: block;
}
.cSelect--opened .cSelect__label-arrow::after {
  transform: rotateZ(315deg);
  top: 14px;
}
.cSelect__button {
  margin-top: 55px;
}
.custom-select--gender + .cSelect {
  width: 160px;
}
.CC {
  width: 100%;
}
.CC label {
  font-weight: bold;
  padding-bottom: 5px;
}
.CC__interface {
  position: relative;
  width: 100%;
}
@media (min-width: 769px) {
  .CC__interface {
    display: flex;
    flex-wrap: wrap;
  }
}
.CC__interface .interfaceTop {
  width: 100%;
}
@media (min-width: 769px) {
  .CC__interface .interfaceTop {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px 0;
  }
}
@media (min-width: 1025px) {
  .CC__interface .interfaceTop {
    justify-content: space-between;
  }
}
@media (min-width: 769px) {
  .CC__interface .interfaceTop div:last-child label {
    position: relative;
    top: -4px;
  }
}
.CC__interface .interfaceBottom {
  width: 100%;
}
@media (min-width: 769px) {
  .CC__interface .interfaceBottom {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px 0;
  }
}
@media (min-width: 1025px) {
  .CC__interface .interfaceBottom {
    justify-content: space-between;
  }
}
.CC__interface label {
  font-size: 13px;
}
.CC__interface button, .CC__interface .btn {
  margin: 20px 0px 40px 0;
  position: relative;
}
@media (min-width: 576px) {
  .CC__interface button, .CC__interface .btn {
    left: 35%;
    width: 30%;
    height: 50px;
  }
}
.CC__interface--infoBox {
  position: relative;
  display: flex;
  flex-wrap: wrap-reverse;
  box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.2);
  margin: 15px 0;
}
@media (min-width: 769px) {
  .CC__interface--infoBox {
    flex-wrap: wrap;
  }
}
@media (min-width: 769px) {
  .CC__interface--infoBox {
    width: 49%;
  }
}
.CC__interface--infoBox article {
  padding: 10px;
}
@media (min-width: 769px) {
  .CC__interface--infoBox article {
    width: 50%;
    padding: 20px;
  }
}
.CC__interface--infoBoxLeft h5, .CC__interface--infoBoxLeft .headline--xs, .CC__interface--infoBoxLeft .cardPartner__subHeadline, .CC__interface--infoBoxLeft .cardPartner__headline3 {
  font-size: 16px;
  color: black;
}
.CC__interface--infoBoxLeft p {
  font-size: 16px;
}
.CC__interface--infoBoxRight {
  width: 100%;
}
@media (min-width: 769px) {
  .CC__interface--infoBoxRight {
    display: flex;
    align-items: center;
  }
}
.CC__interface--infoButton {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.CC__interface--infoButton:hover {
  color: #76B82A;
}
.CC__interface--select, .CC__interface--input {
  position: relative;
  padding: 16px 0;
  position: relative;
  padding-bottom: 20px;
  width: 100%;
}
@media (min-width: 769px) {
  .CC__interface--select, .CC__interface--input {
    padding: 15px 0;
    padding-bottom: 20px;
  }
}
.CC__interface--select {
  display: flex;
  flex-direction: column-reverse;
  border-bottom: 1px solid #C1C1C1;
  cursor: pointer;
  margin: 0 0 10px 0;
}
@media (min-width: 769px) {
  .CC__interface--select {
    display: flex;
    flex-wrap: wrap;
    margin: -20 -20 10px -20px;
  }
}
@media (min-width: 1200px) {
  .CC__interface--select {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 10px 0;
  }
}
.CC__interface--selected {
  width: 90%;
  font-size: 16px;
}
.CC__interface--selectBoxIcon {
  position: absolute;
  right: 0;
  top: 50%;
  bottom: 27px;
  color: #E20000;
  font-size: 16px;
  font-weight: bold;
}
.CC__interface--selectDropdown {
  position: absolute;
  background: #fff;
  z-index: 1;
  top: 75px;
  width: 100%;
  max-height: 300px;
  border: 1px solid #C1C1C1;
  border-radius: 5px;
  overflow: auto;
}
.CC__interface--selectDropdown li {
  padding: 8px;
  margin: 8px;
  font-weight: 300;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.3s linear;
}
.CC__interface--selectDropdown li:hover {
  background-color: #E20000;
  color: #fff;
}
.CC__interface--input {
  border-bottom: 1px solid #C1C1C1;
  font-weight: 300;
  font-size: 16px;
}
.CC__interface--input input {
  width: 100%;
  position: relative;
  left: 18px;
}
.CC__interface--inputIcon {
  position: absolute;
  top: 47px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
.CC__interface--footnote {
  text-align: end;
}
@media (min-width: 769px) {
  .CC__interface--footnote {
    position: absolute;
    right: 20px;
    bottom: 3px;
  }
}
@media (min-width: 1200px) {
  .CC__interface--footnote {
    width: 93%;
  }
}
.CC__interface--footnote span {
  font-size: 12px;
}
.CC__interface--overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 70px;
  right: 0;
  bottom: 68px;
  z-index: 999;
  overflow: overlay;
}
@media (min-width: 769px) {
  .CC__interface--overlay {
    bottom: 0;
    overflow: auto;
  }
}
.CC__interface--overlay article {
  padding: 30px 10px 10px 10px;
  background-color: white;
  max-width: 500px;
}
@media (min-width: 769px) {
  .CC__interface--overlay article {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    bottom: 0;
    padding: 30px;
  }
}
.CC__interface--overlay p {
  font-size: 16px;
}
.CC__interface--overlayButton {
  position: absolute;
  top: 15px;
  right: 30px;
  cursor: pointer;
}
@media (min-width: 769px) {
  .CC__interface--overlayButton {
    top: 10px;
    right: 10px;
  }
}
.CC__interface--overlayButton:hover {
  color: #E20000;
}
.CC__output {
  position: relative;
  margin-top: 20px;
}
@media (min-width: 769px) {
  .CC__output {
    display: flex;
    justify-content: center;
  }
}
.CC__output section {
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 30px;
}
@media (min-width: 769px) {
  .CC__output section {
    margin: 0;
  }
}
.CC__output header {
  text-align: center;
  background-color: #fff;
  padding-bottom: 30px;
  margin: 0 -26px 0 -26px;
}
@media (min-width: 769px) {
  .CC__output label {
    font-size: 19px;
  }
}
.CC__output #consumptionContainer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 769px) {
  .CC__output #consumptionContainer {
    height: 300px;
  }
}
.CC__output #consumptionContainer p {
  text-align: center;
}
.CC__output #consumptionContainer div {
  padding: 20px 20px;
}
@media (min-width: 576px) {
  .CC__output #consumptionContainer div {
    padding: 40px 20px;
  }
}
@media (min-width: 576px) {
  .CC__output #consumptionContainer div:nth-child(3) label, .CC__output #consumptionContainer div:nth-child(4) label {
    opacity: 0;
  }
}
.CC__output #consumptionContainer #consumptionContainerPercents {
  position: absolute;
  top: 50%;
}
@media (min-width: 576px) {
  .CC__output #consumptionContainer #consumptionContainerPercents {
    top: 60%;
  }
}
.CC__output #outputCosts {
  display: flex;
}
.CC__output #outputCosts div:nth-child(1) {
  background-color: #666;
  position: relative;
  min-width: 100px;
}
@media (min-width: 769px) {
  .CC__output #outputCosts div:nth-child(1) {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-bottom: 3px;
  }
}
.CC__output #outputCosts div:nth-child(1) h4, .CC__output #outputCosts div:nth-child(1) .text--medium, .CC__output #outputCosts div:nth-child(1) .headline--sm {
  color: white;
  margin: 0;
  text-align: center;
}
.CC__output #outputCosts div:nth-child(2) {
  background-color: white;
  width: 100%;
}
@media (min-width: 769px) {
  .CC__output #outputCosts div:nth-child(2) {
    display: flex;
    flex-wrap: wrap-reverse;
  }
}
.CC__output #outputCosts div:nth-child(2) div:nth-child(1) {
  margin-bottom: 1px;
  background-color: white;
}
.CC__output #outputCosts div:nth-child(2) div:nth-child(1) h4, .CC__output #outputCosts div:nth-child(2) div:nth-child(1) .text--medium, .CC__output #outputCosts div:nth-child(2) div:nth-child(1) .headline--sm {
  color: #333;
  margin: 0;
}
.CC__output--currentProperty {
  background-color: #F6F6F6;
}
@media (min-width: 769px) {
  .CC__output--currentProperty {
    padding: 0 0 35px 19px;
  }
}
.CC__output--newProperty {
  margin-top: 60px;
  background-color: #76B82A29;
}
@media (min-width: 769px) {
  .CC__output--newProperty {
    margin: 0;
    padding: 0 0 35px 19px;
  }
}
.CC__output--newProperty header {
  padding-top: 30px;
}
@media (min-width: 769px) {
  .CC__output--newProperty header {
    padding-top: 0px;
  }
}
.CC__output--newProperty #outputCosts div:nth-child(1) {
  background-color: #76B82A;
}
.CC__output--newProperty #outputCosts div:nth-child(2) div:nth-child(1) h4, .CC__output--newProperty #outputCosts div:nth-child(2) div:nth-child(1) .text--medium, .CC__output--newProperty #outputCosts div:nth-child(2) div:nth-child(1) .headline--sm {
  color: #76B82A;
  margin: 0;
}
.CC__output--consumption header {
  width: 100%;
  margin: auto;
}
@media (min-width: 769px) {
  .CC__output--consumption header {
    width: auto;
    margin-left: -20px;
    min-height: 110px;
    padding: 16px 0;
  }
}
.CC__output--prices {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 20px 0 20px;
}
.CC__output--prices div {
  width: 100%;
}
.CC__output--prices div:last-child {
  flex-wrap: wrap !important;
}
.CC__output--prices p {
  width: 100%;
  padding-bottom: 13px;
}
.CC__output--divider {
  width: 90% !important;
  height: 1px !important;
  background-color: #666 !important;
  margin: 0 20px !important;
}
.CC__output--dropdownButton {
  position: relative;
  top: 13px;
  right: 40px;
  cursor: pointer;
  display: none;
}
@media (min-width: 576px) {
  .CC__output--dropdownButton {
    display: block;
  }
}
.CC__output--timeLabel {
  padding: 10px 0;
}
.CC__output--mainDisplay {
  padding: 10px 20px;
}
.CC__output--secondDisplay {
  display: none;
}
@media (min-width: 576px) {
  .CC__output--secondDisplay {
    display: block;
  }
}
@media (min-width: 769px) {
  .CC__output--secondDisplay div:first-child {
    padding: 0 20;
  }
}
.CC__output--secondDisplay span {
  font-size: 13px;
}
.CC__output--yearly {
  padding: 10px 20px 0px 20px;
  margin-bottom: -15px;
  margin-left: 2px;
}
.CC__output--footnote {
  position: absolute;
  bottom: -20px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media (min-width: 1025px) {
  .CC__output--footnote {
    right: 110px;
  }
}
.CC__output--footnote span {
  font-size: 12px;
}
.CC__hidden {
  display: none !important;
}
.CC__onChange {
  background-color: #76B82A29;
}
.propertyList__results {
  margin-bottom: 20px;
  width: 100%;
}
.propertyList .card__img img {
  width: 100%;
  height: auto;
}
.propertyDetail__image {
  width: 100%;
  height: auto;
}
.propertyDetail__headline {
  margin-top: 1.5em;
}
.propertyDetail main .rte {
  margin-top: 30px;
}
.propertyDetail .infoWindow__heading {
  font-size: 20px;
  margin-bottom: 0.2em;
}
.propertyDetail .infoWindow__body {
  margin-bottom: 10px;
}
.propertyDetail .infoWindow__body p {
  font-size: 17px;
}
.propertyDetail .infoBox h2, .propertyDetail .infoBox .headline--lg {
  margin-bottom: 1.4em;
}
.propertyDetail .infoBox dt {
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .propertyDetail .infoBox dt {
    width: 100%;
  }
}
.propertyDetail .infoBox dl div {
  display: flex;
  align-items: baseline;
  gap: 0 0.5em;
  flex-wrap: wrap;
}
.propertyDetail .infoBox dl div.border {
  border-top: 1px solid #333;
  padding-top: 25px;
}
.propertyDetail .groundPlan {
  margin-top: 40px;
}
body.cke_editable {
  gap: 1em;
  padding: 15px;
}
body.cke_editable ol, body.cke_editable ul {
  margin-left: 1.1em;
}
body.cke_editable ol li, body.cke_editable ul li {
  margin-bottom: 0.6em;
}
body.cke_editable ul {
  list-style-type: disc;
}
body.cke_editable ol {
  list-style-type: decimal;
}
body.cke_editable .list--checkmark {
  list-style: none;
}
.glider-contain {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.glider {
  margin: 0 auto;
  position: relative;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  transform: translateZ(0);
}
.glider-track {
  transform: translateZ(0);
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  z-index: 1;
}
.glider.draggable {
  user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}
.glider.draggable .glider-slide img {
  user-select: none;
  pointer-events: none;
}
.glider.drag {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.glider-slide {
  user-select: none;
  justify-content: center;
  align-content: center;
  width: 100%;
}
.glider-slide img {
  max-width: 100%;
}
.glider::-webkit-scrollbar {
  opacity: 0;
  height: 0;
}
.glider-prev, .glider-next {
  user-select: none;
  position: absolute;
  outline: none;
  background: none;
  padding: 0;
  z-index: 2;
  font-size: 40px;
  text-decoration: none;
  left: -23px;
  border: 0;
  top: 30%;
  cursor: pointer;
  color: #666;
  opacity: 1;
  line-height: 1;
  transition: opacity 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67), color 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}
.glider-prev:hover, .glider-next:hover, .glider-prev:focus, .glider-next:focus {
  color: #a89cc8;
}
.glider-next {
  right: -23px;
  left: auto;
}
.glider-next.disabled, .glider-prev.disabled {
  opacity: 0.25;
  color: #666;
  cursor: default;
}
.glider-slide {
  min-width: 150px;
}
.glider-hide {
  opacity: 0;
}
.glider-dots {
  user-select: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}
.glider-dot {
  border: 0;
  padding: 0;
  user-select: none;
  outline: none;
  display: block;
  cursor: pointer;
  color: #ccc;
  border-radius: 999px;
  background: #ccc;
  width: 12px;
  height: 12px;
  margin: 7px;
}
.glider-dot:hover, .glider-dot:focus, .glider-dot.active {
  background: #a89cc8;
}
@media (max-width: 36em) {
  .glider::-webkit-scrollbar {
    opacity: 1;
    -webkit-appearance: none;
    width: 7px;
    height: 3px;
  }
  .glider::-webkit-scrollbar-thumb {
    opacity: 1;
    border-radius: 99px;
    background-color: rgba(156, 156, 156, 0.25);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
  }
}
/* Pannellum 2.5.6, https://github.com/mpetroff/pannellum */
.pnlm-container {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  cursor: default;
  width: 100%;
  height: 100%;
  font-family: Helvetica, "Nimbus Sans L", "Liberation Sans", Arial, sans-serif;
  background: #f4f4f4 url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2267%22%20height%3D%22100%22%20viewBox%3D%220%200%2067%20100%22%3E%0A%3Cpath%20stroke%3D%22%23ccc%22%20fill%3D%22none%22%20d%3D%22M33.5%2C50%2C0%2C63%2C33.5%2C75%2C67%2C63%2C33.5%2C50m-33.5-50%2C67%2C25m-0.5%2C0%2C0%2C75m-66.5-75%2C67-25m-33.5%2C75%2C0%2C25m0-100%2C0%2C50%22%2F%3E%0A%3C%2Fsvg%3E%0A") repeat;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: 0;
  line-height: 1.4;
  contain: content;
}
.pnlm-container * {
  box-sizing: content-box;
}
.pnlm-ui {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pnlm-grab {
  cursor: grab;
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2226%22%20width%3D%2226%22%3E%0A%3Cpath%20stroke%3D%22%23000%22%20stroke-width%3D%221px%22%20fill%3D%22%23fff%22%20d%3D%22m15.3%2020.5s6.38-6.73%204.64-8.24-3.47%201.01-3.47%201.01%203.61-5.72%201.41-6.49c-2.2-0.769-3.33%204.36-3.33%204.36s0.873-5.76-1.06-5.76-1.58%205.39-1.58%205.39-0.574-4.59-2.18-4.12c-1.61%200.468-0.572%205.51-0.572%205.51s-1.58-4.89-2.93-3.79c-1.35%201.11%200.258%205.25%200.572%206.62%200.836%202.43%202.03%202.94%202.17%205.55%22%2F%3E%0A%3C%2Fsvg%3E%0A") 12 8, default;
}
.pnlm-grabbing {
  cursor: grabbing;
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2226%22%20width%3D%2226%22%3E%0A%3Cpath%20stroke%3D%22%23000%22%20stroke-width%3D%221px%22%20fill%3D%22%23fff%22%20d%3D%22m15.3%2020.5s5.07-5.29%203.77-6.74c-1.31-1.45-2.53%200.14-2.53%200.14s2.74-3.29%200.535-4.06c-2.2-0.769-2.52%201.3-2.52%201.3s0.81-2.13-1.12-2.13-1.52%201.77-1.52%201.77-0.261-1.59-1.87-1.12c-1.61%200.468-0.874%202.17-0.874%202.17s-0.651-1.55-2-0.445c-1.35%201.11-0.68%202.25-0.365%203.62%200.836%202.43%202.03%202.94%202.17%205.55%22%2F%3E%0A%3C%2Fsvg%3E%0A") 12 8, default;
}
.pnlm-sprite {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2226%22%20height%3D%22208%22%3E%0A%3Ccircle%20fill-opacity%3D%22.78%22%20cy%3D%22117%22%20cx%3D%2213%22%20r%3D%2211%22%20fill%3D%22%23fff%22%2F%3E%0A%3Ccircle%20fill-opacity%3D%22.78%22%20cy%3D%22143%22%20cx%3D%2213%22%20r%3D%2211%22%20fill%3D%22%23fff%22%2F%3E%0A%3Ccircle%20cy%3D%22169%22%20cx%3D%2213%22%20r%3D%227%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%2F%3E%0A%3Ccircle%20cy%3D%22195%22%20cx%3D%2213%22%20r%3D%227%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%2F%3E%0A%3Ccircle%20cx%3D%2213%22%20cy%3D%22195%22%20r%3D%222.5%22%2F%3E%0A%3Cpath%20d%3D%22m5%2083v6h2v-4h4v-2zm10%200v2h4v4h2v-6zm-5%205v6h6v-6zm-5%205v6h6v-2h-4v-4zm14%200v4h-4v2h6v-6z%22%2F%3E%0A%3Cpath%20d%3D%22m13%20110a7%207%200%200%200%20-7%207%207%207%200%200%200%207%207%207%207%200%200%200%207%20-7%207%207%200%200%200%20-7%20-7zm-1%203h2v2h-2zm0%203h2v5h-2z%22%2F%3E%0A%3Cpath%20d%3D%22m5%2057v6h2v-4h4v-2zm10%200v2h4v4h2v-6zm-10%2010v6h6v-2h-4v-4zm14%200v4h-4v2h6v-6z%22%2F%3E%0A%3Cpath%20d%3D%22m17%2038v2h-8v-2z%22%2F%3E%0A%3Cpath%20d%3D%22m12%209v3h-3v2h3v3h2v-3h3v-2h-3v-3z%22%2F%3E%0A%3Cpath%20d%3D%22m13%20136-6.125%206.125h4.375v7.875h3.5v-7.875h4.375z%22%2F%3E%0A%3Cpath%20d%3D%22m10.428%20173.33v-5.77l5-2.89v5.77zm1-1.73%203-1.73-3.001-1.74z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.pnlm-container:-moz-full-screen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}
.pnlm-container:-webkit-full-screen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}
.pnlm-container:-ms-fullscreen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}
.pnlm-container:fullscreen {
  height: 100% !important;
  width: 100% !important;
  position: static !important;
}
.pnlm-render-container {
  cursor: inherit;
  position: absolute;
  height: 100%;
  width: 100%;
}
.pnlm-controls {
  margin-top: 4px;
  background-color: #fff;
  border: 1px solid #999;
  border-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  cursor: pointer;
  z-index: 2;
  -webkit-transform: translateZ(9999px);
  transform: translateZ(9999px);
}
.pnlm-control:hover {
  background-color: #f8f8f8;
}
.pnlm-controls-container {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 1;
}
.pnlm-zoom-controls {
  width: 26px;
  height: 52px;
}
.pnlm-zoom-in {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  border-radius: 3px 3px 0 0;
}
.pnlm-zoom-out {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  background-position: 0 -26px;
  border-top: 1px solid #ddd;
  border-top-color: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.pnlm-fullscreen-toggle-button, .pnlm-orientation-button, .pnlm-hot-spot-debug-indicator {
  width: 26px;
  height: 26px;
}
.pnlm-hot-spot-debug-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 13px;
  display: none;
}
.pnlm-orientation-button-inactive {
  background-position: 0 -156px;
}
.pnlm-orientation-button-active {
  background-position: 0 -182px;
}
.pnlm-fullscreen-toggle-button-inactive {
  background-position: 0 -52px;
}
.pnlm-fullscreen-toggle-button-active {
  background-position: 0 -78px;
}
.pnlm-panorama-info {
  position: absolute;
  bottom: 4px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0 3px 3px 0;
  padding-right: 10px;
  color: #fff;
  text-align: left;
  display: none;
  z-index: 2;
  -webkit-transform: translateZ(9999px);
  transform: translateZ(9999px);
}
.pnlm-title-box {
  position: relative;
  font-size: 20px;
  display: table;
  padding-left: 5px;
  margin-bottom: 3px;
}
.pnlm-author-box {
  position: relative;
  font-size: 12px;
  display: table;
  padding-left: 5px;
}
.pnlm-load-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 150px;
  margin: -75px 0 0 -100px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
  display: none;
  color: #fff;
}
.pnlm-load-box p {
  margin: 20px 0;
}
.pnlm-lbox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  display: none;
}
.pnlm-loading {
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-name: pnlm-mv;
  -webkit-animation-name: pnlm-mv;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  height: 10px;
  width: 10px;
  background-color: #fff;
  position: relative;
}
@keyframes pnlm-mv {
  from {
    left: 0;
    top: 0;
  }
  25% {
    left: 10px;
    top: 0;
  }
  50% {
    left: 10px;
    top: 10px;
  }
  75% {
    left: 0;
    top: 10px;
  }
  to {
    left: 0;
    top: 0;
  }
}
@-webkit-keyframes pnlm-mv {
  from {
    left: 0;
    top: 0;
  }
  25% {
    left: 10px;
    top: 0;
  }
  50% {
    left: 10px;
    top: 10px;
  }
  75% {
    left: 0;
    top: 10px;
  }
  to {
    left: 0;
    top: 0;
  }
}
.pnlm-load-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 100px;
  margin: -50px 0 0 -100px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
  display: table;
  color: #fff;
  cursor: pointer;
}
.pnlm-load-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.pnlm-load-button p {
  display: table-cell;
  vertical-align: middle;
}
.pnlm-info-box {
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 150px;
  margin: -75px 0 0 -100px;
  background-color: #000;
  border-radius: 3px;
  display: table;
  text-align: center;
  color: #fff;
  table-layout: fixed;
}
.pnlm-info-box a, .pnlm-author-box a {
  color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.pnlm-info-box p {
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px 0 5px;
}
.pnlm-error-msg {
  display: none;
}
.pnlm-about-msg {
  font-size: 11px;
  line-height: 11px;
  color: #fff;
  padding: 5px 8px 5px 8px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  position: absolute;
  top: 50px;
  left: 50px;
  display: none;
  opacity: 0;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}
.pnlm-about-msg a:link, .pnlm-about-msg a:visited {
  color: #fff;
}
.pnlm-about-msg a:hover, .pnlm-about-msg a:active {
  color: #eee;
}
.pnlm-hotspot-base {
  position: absolute;
  visibility: hidden;
  cursor: default;
  vertical-align: middle;
  top: 0;
  z-index: 1;
}
.pnlm-hotspot {
  height: 26px;
  width: 26px;
  border-radius: 13px;
}
.pnlm-hotspot:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.pnlm-hotspot.pnlm-info {
  background-position: 0 -104px;
}
.pnlm-hotspot.pnlm-scene {
  background-position: 0 -130px;
}
div.pnlm-tooltip span {
  visibility: hidden;
  position: absolute;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  max-width: 200px;
  padding: 5px 10px;
  margin-left: -220px;
  cursor: default;
}
div.pnlm-tooltip:hover span {
  visibility: visible;
}
div.pnlm-tooltip:hover span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
  bottom: -20px;
  left: -10px;
  margin: 0 50%;
}
.pnlm-compass {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 4px;
  bottom: 4px;
  border-radius: 25px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2250%22%20width%3D%2250%22%3E%0A%3Cpath%20d%3D%22m24.5078%206-3.2578%2018h7.5l-3.25781-18h-0.984376zm-3.2578%2020%203.2578%2018h0.9844l3.2578-18h-7.5zm1.19531%200.9941h5.10938l-2.5547%2014.1075-2.5547-14.1075z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  cursor: default;
  display: none;
}
.pnlm-world {
  position: absolute;
  left: 50%;
  top: 50%;
}
.pnlm-face {
  position: absolute;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.pnlm-dragfix, .pnlm-preview-img {
  position: absolute;
  height: 100%;
  width: 100%;
}
.pnlm-preview-img {
  background-size: cover;
  background-position: center;
}
.pnlm-lbar {
  width: 150px;
  margin: 0 auto;
  border: #fff 1px solid;
  height: 6px;
}
.pnlm-lbar-fill {
  background: #fff;
  height: 100%;
  width: 0;
}
.pnlm-lmsg {
  font-size: 12px;
}
.pnlm-fade-img {
  position: absolute;
  top: 0;
  left: 0;
}
.pnlm-pointer {
  cursor: pointer;
}
.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: #FFF;
  transition: all 0.3s;
  height: 70px;
}
@media (min-width: 576px) {
  .header {
    height: 70px;
  }
}
@media (min-width: 769px) {
  .header {
    height: 70px;
  }
}
@media (min-width: 1025px) {
  .header {
    height: 120px;
  }
}
@media (min-width: 1200px) {
  .header {
    height: 120px;
  }
}
@media (min-width: 1500px) {
  .header {
    height: 175px;
  }
}
@media (min-width: 1500px) {
  .header--scrolled .header__partnerTitle {
    font-size: 17px;
  }
}
.header__container {
  height: 100%;
}
.header__inner {
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #E5E5E5;
  width: 100%;
}
@media (min-width: 576px) {
  .header__inner {
    padding-left: 20px;
  }
}
@media (min-width: 769px) {
  .header__inner {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .header__inner {
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  .header__inner {
    padding-left: 30px;
  }
}
@media (min-width: 1500px) {
  .header__inner {
    padding-left: 40px;
  }
}
@media (min-width: 576px) {
  .header__inner {
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .header__inner {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .header__inner {
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .header__inner {
    padding-right: 30px;
  }
}
@media (min-width: 1500px) {
  .header__inner {
    padding-right: 40px;
  }
}
.header__left {
  display: flex;
  align-items: center;
  width: calc(100% - 85px);
}
@media (min-width: 576px) {
  .header__left {
    width: auto;
  }
}
.header__right {
  display: flex;
  align-items: center;
}
.header__logo {
  display: block;
  height: 62%;
  width: 56px;
}
@media (min-width: 576px) {
  .header__logo {
    height: 55%;
  }
}
@media (min-width: 1025px) {
  .header__logo {
    width: 85px;
  }
}
.header__logoImage {
  width: auto;
  height: 100%;
  display: block;
  max-width: 100%;
}
.header__partner {
  width: 100%;
  margin-left: 16px;
}
@media (min-width: 576px) {
  .header__partner {
    width: 190px;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media (min-width: 1500px) {
  .header__partner {
    width: 210px;
    margin-left: 35px;
    margin-right: 35px;
  }
}
.header__partnerTitle {
  max-height: 3.3em;
  font-size: 12px;
  line-height: 1.1;
  font-weight: bold;
  color: #E20000;
  overflow: hidden;
  margin-bottom: 0.4em;
  transition: all 0.3s;
}
@media (min-width: 1025px) {
  .header__partnerTitle {
    font-size: 19px;
  }
}
.header__partnerPhone {
  font-weight: bold;
  font-size: 12px;
  line-height: 1.1;
}
.header__partnerPhone a {
  margin-left: 0.5em;
}
.header__search {
  font-size: 22px;
  margin-left: 16px;
  line-height: 1;
  position: relative;
  padding-top: 2px;
  transition: all 0.3s;
}
@media (min-width: 576px) {
  .header__search {
    margin-left: 32px;
  }
}
.header__search:hover {
  color: #E20000;
}
.header__login {
  display: none;
}
.header__nav {
  display: none;
  transition: all 0.3s;
}
.header__navLink {
  padding: 0.7em 1em 2px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
  transition: all 0.3s;
  position: relative;
  border: 1px solid transparent;
  border-radius: 5px;
}
.header__navLink::after {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: 4px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  z-index: 1100;
}
.header__navLink.clicked::after {
  opacity: 1;
}
@media (min-width: 1500px) {
  .header__navLink {
    font-size: 22px;
  }
}
.header__navLink.active .nav__linktext::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #E20000;
  position: absolute;
  left: 0;
  bottom: -0.3em;
}
.header__navLink:hover {
  color: #E20000;
}
.header__navLinkText {
  position: relative;
}
.navOpener {
  position: relative;
  height: 30px;
  margin-left: 16px;
}
@media (min-width: 576px) {
  .navOpener {
    margin-left: 32px;
  }
}
.navOpener__icon {
  display: block;
  position: relative;
  background-color: #333;
  width: 30px;
  height: 3px;
  transition: all 0.3s;
}
.navOpener__icon::before, .navOpener__icon::after {
  position: absolute;
  left: 0;
  content: "";
  width: 30px;
  height: 3px;
  display: inline-block;
  background-color: #333;
  transform: rotate(0deg);
  transition: all 0.3s;
}
.navOpener__icon::before {
  top: -9px;
  transform-origin: center right;
}
.navOpener__icon::after {
  top: 9px;
  transform-origin: center right;
}
body.nav--desktop .header__login {
  display: flex;
  margin-left: 16px;
}
@media (min-width: 576px) {
  body.nav--desktop .header__login {
    margin-left: 32px;
  }
}
body.nav--desktop .header__nav {
  display: flex;
  height: 67%;
  align-self: flex-end;
}
body.nav--desktop .navOpener {
  display: none;
}
@media (min-width: 1500px) {
  body.nav--desktop .header--scrolled {
    height: 120px;
  }
  body.nav--desktop .header--scrolled .header__nav {
    height: 74%;
  }
}
.navDrop {
  position: relative;
  background: #FFF;
  transition: all 0.3s 0.3s;
  width: 100%;
  z-index: 999;
  overflow: hidden;
  height: 0;
  font-size: 19px;
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  transform: scale(0);
  transform-origin: top right;
  opacity: 0;
}
.navDrop__container {
  display: flex;
  height: 100%;
  position: relative;
  column-gap: 25px;
}
.navDrop__left {
  position: relative;
  width: 100%;
  z-index: 1;
}
.navDrop__right {
  position: relative;
  width: 68%;
  display: none;
}
.navDrop__column {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.navDrop__column.active {
  display: block;
}
.navDrop__nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  width: 100%;
}
.navDrop__nav.active {
  display: block;
}
.navDrop__list {
  height: calc(100% - 60px);
  overflow-y: auto;
  padding-right: 10px;
  padding-left: 10px;
}
@media (min-width: 576px) {
  .navDrop__list {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.navDrop__item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 12px 22px;
  border-bottom: 1px solid #CCC;
}
.navDrop__item:last-child {
  border: none;
}
.navDrop__item.current {
  color: #E20000;
}
.navDrop__itemIcon {
  cursor: pointer;
  font-size: 0.8em;
  color: #E20000;
  position: absolute;
  right: 0;
  margin-top: 2px;
}
.navDrop__itemIcon:hover {
  transform: scale(1.2);
}
.navDrop__link {
  position: relative;
  flex-grow: 1;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.navDrop__path {
  height: 50px;
  display: flex;
  align-items: center;
}
.navDrop__path--mobile {
  font-size: 14px;
  padding-left: 22px;
  background-color: #F1F4EE;
}
.navDrop__path--desktop {
  font-size: 13px;
  white-space: nowrap;
  display: none;
}
.navDrop__pathLabel {
  margin-right: 8px;
  display: none;
}
.navDrop__pathItem {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
}
.navDrop__pathItem:not(:last-child) {
  cursor: pointer;
  margin-right: 20px;
  position: relative;
}
.navDrop__pathItem:not(:last-child):hover {
  color: #E20000;
}
.navDrop__pathItem:not(:last-child)::after {
  font-family: "icomoon";
  font-weight: normal;
  content: "";
  color: #E20000;
  position: absolute;
  right: -17px;
}
.navDrop__pathItem--back {
  cursor: pointer;
  margin-left: 10px;
}
@media (min-width: 576px) {
  .navDrop__pathItem--back {
    margin-left: 30px;
  }
}
.navDrop__pathItem--back::before {
  font-family: "icomoon";
  content: "";
  position: absolute;
  left: -22px;
  top: -1px;
  color: #E20000;
  transform: rotate(180deg);
}
.navDrop__pathItem--back:hover {
  color: #E20000;
}
.navDrop__pathItem--back:hover::before {
  transform: rotate(180deg) scale(1.2);
}
.navDrop__pathItem--home {
  color: #E20000;
  margin-left: 10px;
}
@media (min-width: 576px) {
  .navDrop__pathItem--home {
    margin-left: 30px;
  }
}
.navDrop__close {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  align-items: center;
  cursor: pointer;
}
.navDrop__close:hover .navDrop__closeLabel {
  color: #E20000;
}
.navDrop__closeIcon {
  width: 15px;
  height: 15px;
  overflow: hidden;
  transition: all 0.3s;
  transform: rotate(0);
  transition-delay: 0 !important;
}
.navDrop__closeIcon::before, .navDrop__closeIcon::after {
  position: absolute;
  content: "";
  display: block;
  cursor: pointer;
  width: 22px;
  height: 2px;
  background-color: #E20000;
  top: -2px;
  transition: all 0.3s;
}
.navDrop__closeIcon::before {
  transform: rotate(45deg);
  transform-origin: top left;
  left: 0;
}
.navDrop__closeIcon::after {
  transform: rotate(-45deg);
  transform-origin: top right;
  right: 0;
}
.navDrop__closeLabel {
  font-size: 14px;
  font-weight: bold;
  margin-left: 0.8em;
  transition: all 0.3s;
}
.navDrop__button {
  margin-top: 10px;
}
@media (min-width: 576px) {
  .navDrop__button {
    width: auto;
  }
}
@media (min-width: 1500px) {
  body.nav--opened .header {
    height: 120px;
  }
}
body.nav--opened .navDrop {
  transition-delay: 0s;
  height: 100vh;
  max-height: calc(100vh - 70px);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid #E5E5E5;
  transform: scale(1);
  opacity: 1;
}
@media (min-width: 576px) {
  body.nav--opened .navDrop {
    max-height: calc(100vh - 70px);
  }
}
@media (min-width: 769px) {
  body.nav--opened .navDrop {
    max-height: calc(100vh - 70px);
  }
}
@media (min-width: 1025px) {
  body.nav--opened .navDrop {
    max-height: calc(100vh - 120px);
  }
}
@media (min-width: 1200px) {
  body.nav--opened .navDrop {
    max-height: calc(100vh - 120px);
  }
}
@media (min-width: 1500px) {
  body.nav--opened .navDrop {
    max-height: calc(100vh - 175px);
  }
}
body.nav--opened .navDrop__close {
  opacity: 1;
}
body.nav--opened .navDrop__closeIcon {
  transition-delay: 0.5s;
}
body.nav--opened .nav.active .nav__link {
  opacity: 1;
  transition-delay: 0.3s;
}
@media (min-width: 1500px) {
  body.nav--opened .header__nav {
    height: 74%;
  }
}
body.nav--opened .header__navLink.clicked {
  border-color: #CCC;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
}
body.nav--opened .navOpener .navOpener__icon {
  background-color: transparent;
}
body.nav--opened .navOpener .navOpener__icon::before, body.nav--opened .navOpener .navOpener__icon::after {
  background-color: #333;
}
body.nav--opened .navOpener .navOpener__icon::before {
  transform: rotate(45deg);
  top: 10px;
}
body.nav--opened .navOpener .navOpener__icon::after {
  transform: rotate(-45deg);
  left: 0;
  top: -11px;
}
body.nav--desktop.nav--opened .navDrop {
  height: 500px;
  margin-top: -75px;
}
body.nav--desktop.nav--opened.root .navDrop {
  margin-top: -15px;
}
body.nav--desktop .navDrop {
  width: 92%;
  max-height: calc(100vh - 110px);
  transform-origin: top center;
  padding: 32px;
}
body.nav--desktop .navDrop__close {
  display: flex;
}
body.nav--desktop .navDrop__left {
  width: 32%;
  min-width: 320px;
}
body.nav--desktop .navDrop__right {
  display: block;
}
body.nav--desktop .navDrop__path--mobile {
  display: none;
}
body.nav--desktop .navDrop__path--desktop {
  display: flex;
}
body.nav--desktop .navDrop__pathLabel {
  display: inline;
}
body.nav--desktop .navDrop__list {
  padding-left: 0;
}
body.nav--desktop .navDrop__item {
  padding-left: 0;
}
body.nav--desktop .navDrop__item:first-child {
  border-top: 1px solid #CCC;
}
body.nav--desktop .navDrop__item:last-child {
  border-bottom: 1px solid #CCC;
}
body.nav--desktop .navDrop__button {
  display: none;
}
.navDrop__nav.active .navDrop__item {
  opacity: 0;
  left: -200px;
  animation: 0.5s slideIn 0.3s forwards ease-out;
}
.navDrop__nav.active .navDrop__item:nth-of-type(2) {
  animation-delay: 0.35s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(3) {
  animation-delay: 0.4s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(4) {
  animation-delay: 0.45s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(5) {
  animation-delay: 0.5s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(6) {
  animation-delay: 0.55s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(7) {
  animation-delay: 0.6s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(8) {
  animation-delay: 0.65s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(9) {
  animation-delay: 0.7s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(10) {
  animation-delay: 0.75s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(11) {
  animation-delay: 0.8s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(12) {
  animation-delay: 0.85s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(13) {
  animation-delay: 0.9s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(14) {
  animation-delay: 0.95s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(15) {
  animation-delay: 1s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(16) {
  animation-delay: 1.05s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(17) {
  animation-delay: 1.1s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(18) {
  animation-delay: 1.15s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(19) {
  animation-delay: 1.2s;
}
.navDrop__nav.active .navDrop__item:nth-of-type(20) {
  animation-delay: 1.25s;
}
@keyframes slideIn {
  100% {
    opacity: 1;
    left: 0;
  }
}
.footer {
  position: relative;
  background-color: #FFF;
}
.footer__container {
  flex-direction: column;
}
.footer__row {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 576px) {
  .footer__row {
    padding-left: 20px;
  }
}
@media (min-width: 769px) {
  .footer__row {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .footer__row {
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  .footer__row {
    padding-left: 30px;
  }
}
@media (min-width: 1500px) {
  .footer__row {
    padding-left: 40px;
  }
}
@media (min-width: 576px) {
  .footer__row {
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .footer__row {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .footer__row {
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .footer__row {
    padding-right: 30px;
  }
}
@media (min-width: 1500px) {
  .footer__row {
    padding-right: 40px;
  }
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 100px;
  border-top: 1px solid #E5E5E5;
}
@media (min-width: 1025px) {
  .footer__top {
    padding-bottom: 30px;
    flex-wrap: nowrap;
  }
}
.footer__center {
  position: relative;
  padding-top: 100px;
}
@media (min-width: 1025px) {
  .footer__center {
    padding-top: 30px;
  }
}
.footer__bottom {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 70px;
}
@media (min-width: 769px) {
  .footer__bottom {
    margin-bottom: 0;
  }
}
.footer__left {
  width: 100%;
  column-count: 2;
  gap: 20px;
  margin-bottom: 2rem;
}
@media (min-width: 769px) {
  .footer__left {
    column-count: 3;
  }
}
@media (min-width: 1025px) {
  .footer__left {
    margin-bottom: 0;
  }
}
@media (min-width: 769px) {
  .footer__left.col4 {
    column-count: 4;
  }
}
@media (min-width: 1025px) {
  .footer__left.col4 {
    margin-bottom: 0;
  }
}
.footer__right {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1025px) {
  .footer__right {
    width: 39%;
  }
}
.footerAwards {
  position: absolute;
  display: flex;
  width: 100%;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  justify-content: center;
  pointer-events: none;
}
@media (min-width: 769px) {
  .footerAwards {
    justify-content: flex-end;
    right: 20px;
  }
}
@media (min-width: 1200px) {
  .footerAwards {
    right: 30px;
  }
}
@media (min-width: 1500px) {
  .footerAwards {
    right: 40px;
  }
}
.footerAwards__item {
  display: block;
  height: 115px;
  margin-left: 10px;
  margin-right: 10px;
}
.footerAwards__image {
  display: block;
  height: 100%;
  width: auto;
}
#pe_rating {
  color: #333 !important;
}
#pe_name {
  pointer-events: none;
}
.pe-richsnippets {
  text-align: center !important;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 576px) {
  .pe-richsnippets {
    padding-left: 20px;
  }
}
@media (min-width: 769px) {
  .pe-richsnippets {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .pe-richsnippets {
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  .pe-richsnippets {
    padding-left: 30px;
  }
}
@media (min-width: 1500px) {
  .pe-richsnippets {
    padding-left: 40px;
  }
}
@media (min-width: 576px) {
  .pe-richsnippets {
    padding-right: 20px;
  }
}
@media (min-width: 769px) {
  .pe-richsnippets {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .pe-richsnippets {
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .pe-richsnippets {
    padding-right: 30px;
  }
}
@media (min-width: 1500px) {
  .pe-richsnippets {
    padding-right: 40px;
  }
}
@media (min-width: 769px) {
  .pe-richsnippets {
    text-align: right !important;
  }
}
</pre></body></html>