﻿@charset "UTF-8";
/* +--- Import der Variablen + Base SCSS Datei ---+ */
/* +--- Variablen ---+ */
/* +--- Navigation + Footer ---+ */
/* +--- (in alter Schreibweise, sodass sie geändert werden können) ---+ */
@font-face {
  font-family: "Helvetica_Roman_Bold";
  src: url("fonts/HelveticaNeue/HelveticaNeue_Roman_Bold.woff2") format("woff2"), url("fonts/HelveticaNeue/HelveticaNeue_Roman_Bold.woff") format("woff");
}
@font-face {
  font-family: "Helvetica_Roman";
  src: url("fonts/HelveticaNeue/HelveticaNeue_Roman.woff2") format("woff2"), url("fonts/HelveticaNeue/HelveticaNeue_Roman.woff") format("woff");
}
:root {
  --nav-height: 70px;
  --footer-height: 380px;
}

/* +--- Fonts ---+ */
/* +--- Farben ---+ */
/* +--- Form ---+ */
/* +--- Media Breakpoints ---+ */
/* +--- (NICHT ANFASSEN!) ---+ */
/* +--- Import der Variablen SCSS Datei ---+ */
/* +--- Variablen ---+ */
/* +--- Navigation + Footer ---+ */
/* +--- (in alter Schreibweise, sodass sie geändert werden können) ---+ */
@font-face {
  font-family: "Helvetica_Roman_Bold";
  src: url("fonts/HelveticaNeue/HelveticaNeue_Roman_Bold.woff2") format("woff2"), url("fonts/HelveticaNeue/HelveticaNeue_Roman_Bold.woff") format("woff");
}
@font-face {
  font-family: "Helvetica_Roman";
  src: url("fonts/HelveticaNeue/HelveticaNeue_Roman.woff2") format("woff2"), url("fonts/HelveticaNeue/HelveticaNeue_Roman.woff") format("woff");
}
:root {
  --nav-height: 70px;
  --footer-height: 380px;
}

/* +--- Fonts ---+ */
/* +--- Farben ---+ */
/* +--- Form ---+ */
/* +--- Media Breakpoints ---+ */
/* +--- (NICHT ANFASSEN!) ---+ */
/* +--- Base Styling ---+ */
html {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  padding-top: var(--nav-height);
  padding-bottom: var(--footer-height);
  color: #3F4A50;
  min-height: 100%;
  font-family: "Helvetica_Roman", sans-serif;
  font-size: 24px;
  line-height: 27.6px;
  background: white;
  position: relative;
  scroll-behavior: smooth;
  font-weight: 400;
  font-style: normal;
  overflow-x: clip;
}

hr {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #001a68, rgba(0, 0, 0, 0));
  height: 1px;
  border: 0;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Lighthouse;
}

h1 {
  font-size: 3rem;
}

.scroll-element {
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

/* +--- Tabellen ---+ */
.table {
  border-color: #001a68;
  font-weight: normal;
}
.table tbody > tr:nth-of-type(odd) > td {
  background-color: rgba(63, 74, 80, 0.35);
}
.table > * th {
  background-color: #001a68;
  color: white;
  text-align: center;
}
@media (max-width: 576px) {
  .table {
    font-size: 80%;
  }
}

/* +--- Autofill Überschreiung ---+ */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: black !important;
}

/* --- Selection --- */
select option {
  font-family: Source Sans Pro, sans-serif;
}

.select-style,
.k-dropdownlist > .k-button,
.custom-select {
  background: url("assets/icons/chevron.svg") no-repeat right 1rem center/15px 10px !important;
  background-size: 20px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.k-dropdownlist > .k-button span {
  opacity: 0 !important;
  padding-inline: 1rem !important;
}

/* +--- Validierung ---+ */
.field-validation-error,
.validation-summary-errors {
  color: red;
  font-size: 80%;
}

.field-validation-error {
  padding-bottom: 0.2rem;
  padding-inline: 0.5rem;
}

.validation-summary-errors {
  padding-bottom: 0.5rem;
  width: fit-content;
  padding-top: 0.5rem;
  padding-inline: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.validation-summary-errors > ul {
  margin-bottom: 0;
}

.validation-summary-errors:before {
  content: "Folgende Fehler sind aufgetreten:";
}

/* +--- Verlinkungen ---+ */
.link-style {
  text-decoration: underline;
  color: #001a68 !important;
  box-shadow: inset 0 0 0 0 #001a68;
  color: #54b3d6;
  padding: 0 0.25rem;
  margin: 0 -0.25rem;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.link-style:hover, .link-style:focus, .link-style:active {
  color: white !important;
  box-shadow: inset 600px 0 0 0 #001a68;
  cursor: pointer;
  outline: none;
}

/* +--- Buttons ---+ */
.btn-primary,
.btn-secondary {
  background-color: #001a68;
  border: 2px solid #001a68;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}
.btn-primary:hover, .btn-primary:focus-visible, .btn-primary:focus, .btn-primary:active,
.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: white !important;
  color: #001a68 !important;
  border-color: #001a68 !important;
}

.btn-primary {
  min-width: 15rem;
  padding-inline: 40px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.btn-primary:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 26, 104, 0.15) !important;
}

/* --- Formular --- */
.form-control {
  align-self: center;
  transition: all 0.3s ease-in-out;
}
.form-control::placeholder {
  color: #545454;
}
.form-control:not(.k-input-inner) {
  line-height: 1.5;
  background-color: white !important;
  font-size: 1.125rem;
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  height: 45px;
  color: #3F4A50;
  padding-bottom: 0;
  border: 2px solid #001a68;
}
.form-control:focus {
  border-color: #001a68;
  box-shadow: inset -2px -2px 2px rgba(0, 0, 0, 0.1), inset 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.control-label {
  font-weight: 600;
}

/* +--- Checkbox ---+ */
.control-checkbox {
  width: 1.4em;
  height: 1.4em;
  min-width: 1.4em;
  min-height: 1.4em;
  margin-right: 10px;
  background-color: white;
  border: 2px solid #001a68;
  border-radius: 5px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position-y: 70%;
  background-position-x: 50%;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0), inset -1px -1px 4px rgba(0, 0, 0, 0.5);
}
.control-checkbox:focus-visible {
  outline: 3px solid #001a68;
}
.control-checkbox:checked {
  box-shadow: inset -1px -1px 4px rgba(0, 0, 0, 0), inset 1px 1px 4px rgba(0, 0, 0, 0.3);
  transition: 300ms ease all;
  background-image: url(/Content/assets/icons/check.svg);
  background-size: 80%;
  border: 2px solid #001a68;
  background-repeat: no-repeat;
  background-position-y: 55%;
  background-position-x: 50%;
  background-color: #001a68;
}

/* +--- Checkbox Label ---+ */
.checkbox-label {
  display: flex;
  margin-top: 1px;
  font-size: 1.25rem;
}
.checkbox-label:hover {
  cursor: pointer;
}

/* +--- Radio ---+ */
input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
}

.radio-item {
  align-items: center;
}
.radio-item:hover {
  cursor: pointer;
}
.radio-item:focus-visible {
  outline: 2px solid #001a68;
  border-radius: 3px;
}
.radio-item .radio-style {
  width: 20px;
  border-radius: 100%;
  height: 20px;
  display: block;
  border: 4px solid transparent;
  outline: 2px solid #001a68;
  background-color: white;
  aspect-ratio: 1/1;
  transition: all 0.3s ease-in-out;
}
.radio-item .radio-style:hover {
  cursor: pointer;
}
.radio-item .radio-style:checked, .radio-item .radio-style:focus {
  background-color: #001a68;
  width: 20px;
  height: 20px;
  display: block;
  border: 4px solid white;
  outline: 2px solid #001a68;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: 5px;
}
.radio-item .radio-text {
  align-self: end;
  margin-left: 10px;
}

/* +--- Kontakt Seite ---+ */
#kontakt > * #Frage {
  min-height: 250px;
}

/* +--- Kendo Elemente ---+ */
.k-picker-solid,
.k-input-solid {
  color: black;
}
.k-picker-solid:hover, .k-picker-solid:focus,
.k-input-solid:hover,
.k-input-solid:focus {
  background-color: white !important;
  color: #3F4A50 !important;
  border: 2px solid #001a68 !important;
}
.k-picker-solid:focus, .k-picker-solid:focus-visible,
.k-input-solid:focus,
.k-input-solid:focus-visible {
  box-shadow: inset -2px -2px 2px rgba(0, 0, 0, 0.1), inset 3px 3px 3px rgba(0, 0, 0, 0.2) !important;
}
.k-picker-solid:focus-within,
.k-input-solid:focus-within {
  border-color: #001a68 !important;
  outline: 0;
  box-shadow: inset -2px -2px 2px rgba(0, 0, 0, 0.1), inset 3px 3px 3px rgba(0, 0, 0, 0.2) !important;
}

.k-input-button {
  background-color: #001a68 !important;
  color: white !important;
  padding-inline: 0.5rem !important;
  margin-left: auto !important;
}
.k-input-button:hover, .k-input-button:focus-visible {
  background-color: rgba(0, 26, 104, 0.7) !important;
}

.k-input-inner {
  height: 100%;
  border-radius: 0;
}

/* +--- Kendo Upload ---+ */
.k-upload {
  min-height: 45px;
  font-size: inherit !important;
  border: 2px solid #001a68 !important;
  border-radius: 5px;
  padding-left: 0.75rem;
  font-weight: 700 !important;
}
.k-upload .k-dropzone {
  background-color: transparent !important;
  padding: 0 !important;
  flex-direction: row-reverse;
  text-align: start !important;
}
.k-upload .k-dropzone .k-upload-button-wrap .k-button {
  min-height: 45px;
  border-radius: calc(5px - 3px);
  background-color: #001a68;
  border: none;
  color: white;
  transition: all 0.3s ease-in-out;
  padding-inline: 2rem;
  min-width: 100%;
  font-weight: bold;
}
.k-upload .k-dropzone .k-upload-button-wrap .k-button:hover, .k-upload .k-dropzone .k-upload-button-wrap .k-button:focus-visible {
  background-color: rgba(0, 26, 104, 0.7);
}
@media (min-width: 992px) {
  .k-upload .k-dropzone .k-upload-button-wrap {
    min-width: 50%;
  }
}
.k-upload .k-dropzone .k-upload-status {
  color: #3F4A50;
}
.k-upload .k-upload-files {
  background-color: transparent;
}
.k-upload .k-upload-files .k-file {
  padding: 10px !important;
  color: #3F4A50;
}
.k-upload .k-upload-files .k-file .k-upload-actions {
  background-color: #001a68;
  border-radius: 5px;
  color: white;
}

/* +--- Kaufbeleg Modal ---+ */
#kaufbeleg-modal h2 {
  color: #001a68;
}
#kaufbeleg-modal > * .kaufbeleg-bubble {
  min-width: 45px;
  max-width: 45px;
  position: relative;
  height: fit-content;
}
#kaufbeleg-modal > * .kaufbeleg-bubble > .kaufbeleg-bubble-zahl {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  color: white;
}
#kaufbeleg-modal > * .kaufbeleg-bubble + span {
  margin-left: 7px;
  margin-top: 2px;
}
#kaufbeleg-modal > * .kaufbeleg-tipp-img {
  height: 500px;
}

/* +--- Media Queries ---+ */
/* +--- Desktop (max. 1200px) ---+ */
/* +--- Tablet (max. 992px) ---+ */
@media (max-width: 992px) {
  :root {
    --nav-height: 80px;
    --footer-height: 180px;
  }
  h1 {
    font-size: 2.5rem;
  }
  .k-upload-button-wrap {
    width: 100% !important;
  }
  .k-upload {
    padding-left: 0;
  }
}
/* +--- Wide Smartphone (max. 768px) ---+ */
/* +--- Smartphone (max. 576px) ---+ */
@media screen and (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
}
/* +--- Standard HMTL-Tags ---+ */
html {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: underline;
  color: #3F4A50;
}

a:hover {
  color: #001a68;
}

#ean-erklärung-link {
  text-decoration: underline;
}

#ean-erklärung-link:hover {
  color: #001a68;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: "Helvetica_Roman_Bold";
}

h2 {
  font-size: 2.2rem;
}

/* +--- Standard Klassen ---+ */
.custom-container {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 80px;
  padding-right: 80px;
}

.control-label {
  margin-bottom: 2px;
  font-family: "Helvetica_Roman_Bold";
  font-size: 18px;
  font-weight: normal;
}

.image-arrow {
  padding-bottom: 5px;
}

/* +--- Navigation ---+ */
.navbar {
  background-color: white !important;
  width: 100% !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: var(--nav-height) !important;
  border-bottom: 1px solid #001a68;
}
.navbar .logo {
  display: flex;
  align-items: center;
}
.navbar .logo > img {
  height: 50px;
}
.navbar #haus, .navbar #haus-mobile {
  background-image: url("assets/icons/house.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s ease-in-out;
  display: block;
  align-self: center;
}
.navbar #haus {
  width: 37px;
  height: 37px;
}
.navbar #haus-mobile {
  width: 30px;
  height: 30px;
}
.navbar #haus:hover,
.navbar #haus-mobile:hover {
  background-image: url("assets/icons/house-fill.svg");
}

.nav-link {
  color: #3F4A50;
  font-size: 20px;
  text-decoration: none !important;
  font-weight: bold !important;
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.nav-link:hover {
  color: #001a68;
}

#navbar-toggler {
  width: 4rem !important;
  height: 4rem !important;
  border: none !important;
  position: relative !important;
}

#mobile-nav-content {
  top: -100%;
  z-index: 1 !important;
  background-color: white !important;
  height: auto !important;
  position: fixed !important;
  padding-top: 6rem !important;
  position: fixed !important;
  transition: ease-in-out 0.3s !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100% !important;
  padding-bottom: 2% !important;
  border-bottom: 2px solid white !important;
  color: white !important;
}

#mobile-nav-content .nav-link {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  font-size: 120% !important;
}

.nav-toggler-line {
  position: absolute !important;
  width: 50% !important;
  height: 4px !important;
  background-color: #001a68 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-radius: 10px !important;
  transition: all 0.4s !important;
}

#navTogglerLine1 {
  top: 30% !important;
}

#navTogglerLine1.selected {
  top: 25% !important;
  transform: rotate(-42deg) translateX(-70%) !important;
  height: 4px !important;
}

#navTogglerLine2 {
  top: 50%;
}

#navTogglerLine2.selected {
  opacity: 0;
}

#navTogglerLine3 {
  top: 70%;
}

#navTogglerLine3.selected {
  top: 73%;
  transform: rotate(42deg) translateX(-70%) !important;
  height: 4px;
}

.unpinned {
  transform: translateY(-14.3rem) !important;
  transition: ease-in-out !important;
}

.openNav {
  top: 0% !important;
}

/* +--- Header ---+ */
header {
  position: relative !important;
}

.img-text {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  max-width: 49%;
  color: #001a68;
}
@media screen and (min-width: 768px) {
  .img-text {
    left: 57%;
  }
}

.img-text > a {
  text-decoration: none !important;
  display: block;
  width: 50%;
}

.img-text a div {
  margin-left: 0;
}

.img-text > div {
  margin-bottom: 6%;
  font-size: 2rem;
  line-height: 2.6rem;
}

/* +--- Gewinne ---+ */
.Gewinne-img-text {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  max-width: 49%;
  color: #001a68;
  font-size: 1.4rem;
  line-height: 2.6rem;
}
@media screen and (min-width: 768px) {
  .Gewinne-img-text {
    left: 60%;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .Gewinne-img-text {
    bottom: 10%;
    max-width: 100%;
    padding-bottom: 2.5rem;
    font-size: 1.2rem;
  }
}

/* +--- Werbung ---+ */
.Werbung-Img-Text {
  position: absolute;
  transform: translate(40px, 100px);
  color: #001a68;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .Werbung-Img-Text {
    transform: translate(20px, 50px);
    font-size: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .Werbung-Img-Text {
    transform: translate(80px, 150px);
    font-size: 2.5rem;
  }
}

/* +--- Buttons ---+ */
.btn-primary, .btn-secondary {
  font-family: "Helvetica_Roman_Bold";
  text-align: center;
  padding: 1.2rem 1rem 1rem 1rem !important;
  position: relative;
  z-index: 0;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none !important;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: white;
  background-color: #E50054;
  border-color: #007bff;
  border: 2px solid #E50054;
}

.btn-primary {
  background-color: #001a68 !important;
  color: white;
}

.btn-primary:focus, .btn-primary:hover {
  text-decoration: underline;
  background: #1B2A6F;
  color: white;
  border-color: #1B2A6F;
}

.btn-primary:active {
  background: #1B2A6F !important;
  color: #AAAAAA !important;
  border-color: #1B2A6F !important;
}

.btn-secondary:hover {
  color: #E50054 !important;
  background: #f3f3f3 !important;
  border: 2px solid #E50054 !important;
}

.btn-secondary {
  background: white;
  color: #E50054;
  border: 2px solid #E50054;
}

/* --- Telefonnummer --- */
.intl-tel-input {
  display: block !important;
}

.selected-flag {
  background-color: #001a68;
  border-radius: 0.25rem;
  border: 1px solid #001a68;
}

.selected-flag:hover, .selected-flag:focus {
  background-color: #001a68 !important;
}

#telefonnummer {
  padding-left: 3.5rem !important;
}

/* +--- Counter ---+ */
#restZahlAnzeige {
  background: #DADCDD;
  border-radius: 5px;
}

.restZahl {
  background-color: #001a68;
  border-radius: 100%;
  height: 60px;
  width: 60px;
  aspect-ratio: 1/1;
  align-items: center;
  display: flex;
  justify-content: center;
  color: white;
  font-weight: bolder;
  font-size: 1.4rem;
  margin-right: 5px;
  margin-left: 5px;
}

.restZahl span {
  padding-top: 17%;
}

.counter-off {
  background-color: #3F4A50;
}

/* +--- Panels ---+ */
.panel-heading {
  line-height: 27.6px;
}

.panel-clickable, .panel-non-clickable {
  align-items: center;
  padding: 20px;
  width: 100%;
}

.panel-body {
  padding: 0px 20px 5px 20px;
}

.panel-icon {
  width: 40px;
  height: 40px;
  display: block;
  background-size: cover;
  margin-right: 0px;
  margin-left: auto;
  background-image: url("assets/icons/circle.svg");
}

.panel-img {
  height: 93px;
}

.panel-icon-line {
  width: 70%;
  height: 4px;
  display: block;
  background-image: url("assets/icons/line.svg");
  background-size: cover;
  top: 44%;
  left: 14%;
  transition: 300ms ease-in-out;
}

/* +--- HowTo Panel ---+ */
#howToBox > .panel {
  background-color: #DADCDD;
  border-radius: 5px;
  width: 32%;
}

.howTo-link {
  display: block;
  text-decoration: none !important;
  width: fit-content;
}

.howTo-link > * span {
  text-decoration: underline;
}

/* +--- FAQ-Panel ---+ */
.faq-panel {
  border-top: 1px solid #3F4A50;
  padding-top: 10px;
  padding-bottom: 10px;
}

.faq-panel-clickable:hover {
  cursor: pointer;
}

.faq-panel-heading {
  width: 90%;
  padding-top: 8px;
  font-family: "Helvetica_Roman_Bold";
}

.faq-panel-icon {
  width: 40px;
  height: 40px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0px;
  margin-left: auto;
}

.faq-panel-clickable {
  align-items: center;
}

.faq-panel-body {
  padding-inline: 0;
  padding-top: 15px;
}

.rotated {
  transform: rotate(-90deg);
  transition: 300ms ease-in-out;
}

/* --- Kendo Widget Numeric --- */
.k-input {
  text-indent: 0 !important;
}

.k-numerictextbox {
  display: block !important;
  width: 100% !important;
  padding-left: inherit !important;
}

.k-numerictextbox > .form-control {
  padding-left: 0 !important;
}

.k-numerictextbox .k-state-focused {
  box-shadow: 0 0 0 0.15rem rgba(32, 36, 81, 0.25) !important;
}

.k-numerictextbox.form-control > .form-control.k-input-inner {
  padding-left: 0px !important;
}

.k-input-inner {
  padding-bottom: 0 !important;
}

.k-numeric-wrap {
  border-width: 0 !important;
}

.k-button:not(.k-upload-button) {
  border-color: #001a68 !important;
  color: white !important;
  background-color: #001a68 !important;
  padding-inline: 0.8rem !important;
}

.k-dropdownlist > .k-input-button {
  background-color: white !important;
  color: black !important;
  background: none !important;
  border-color: transparent !important;
}

.k-multiselect {
  display: inline-table !important;
}

/* Buy Now Button von GSK */
buynow-button {
  --color-primary: #242f60;
  --color-primary--hover: #e86215;
  --button-border-radius: 3.125em/0.3125em;
  --button-padding-top: 0.858em;
  --button-padding-bottom: 0.75em;
  --button-line-height: 1.25em;
  display: inline-block;
  min-height: calc(var(--button-padding-top) + var(--button-padding-bottom) + var(--button-line-height));
  font-size: 0.875rem;
}
@media screen and (max-width: 1200px) {
  buynow-button {
    right: 0 !important;
    position: absolute !important;
    width: 175px !important;
  }
}

buynow-button:focus,
buynow-button:hover {
  --color-primary: #e86215;
}

@media screen and (max-width: 1400px) {
  .custom-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .img-text {
    max-width: 53%;
    padding-top: 3rem;
  }
  .img-text h1 {
    font-size: 2.5rem;
  }
  .img-text > div:first-of-type {
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .img-text h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 2rem;
  }
  .img-text > div:first-of-type {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  #howToBox > .panel {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .img-text {
    padding-top: 3rem;
  }
  .img-text h1 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.1rem;
    line-height: 18.4px;
  }
  .btn-primary, .btn-secondary {
    font-size: 1.3rem;
  }
  .img-text {
    position: absolute;
    bottom: 20%;
    transform: translateY(50%);
    max-width: 100%;
    padding-bottom: 2.5rem;
  }
  .img-text > a {
    text-decoration: none !important;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .img-text div:first-of-type {
    font-size: 1.3rem;
  }
  .k-upload-button-wrap > .k-upload-button {
    font-size: 18px !important;
  }
  .k-upload {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 430px) {
  .logo > img {
    height: 35px;
  }
  .img-text h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .restZahl {
    height: 50px;
  }
  .img-text {
    bottom: 22%;
  }
}
@media screen and (max-width: 380px) {
  .img-text h1 {
    font-size: 1.5rem;
  }
  #header-btn {
    line-height: 0.6 !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    width: 100% !important;
  }
}
footer {
  position: absolute;
  bottom: 0;
  border-top: 1px solid #001a68;
  height: var(--footer-height);
  width: 100vw !important;
}
footer .Footer-link-Row > * {
  width: max-content !important;
}

footer > * img {
  width: 250px;
}
