* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #454545;
}

/* headings */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h1 {
  font-size: 40px;
  line-height: 48px;
}

h2 {
  font-size: 35px;
  line-height: 32px;
  width: 100%;
}

h3 {
  font-size: 20px;
  line-height: 25px;
}

h4 {
  margin: 0;
  padding: 0;
}

.text-centered {
  text-align: center;
  justify-content: center;
}

/* colors */
.txt-blue {
  color: #006eb4;
}

.txt-red {
  color: #c95858;
}

.txt-white {
  color: #ffffff;
}

.txt-bold {
  font-weight: 700;
  font-size: 32px;
}

.header-stoerer .txt-bold {
  font-size: 18px;
}

.gradient-blue {
  background: transparent linear-gradient(180deg, #2f88c7 0%, #176db4 100%) 0%
    0% no-repeat padding-box;
}

.bg-light-blue {
  background: rgba(0, 110, 180, 0.15) 0% 0% no-repeat padding-box;
}

.bg-red {
  background: #c95858 0% 0% no-repeat padding-box;
}

.border-top {
  padding-top: 75px;
  border-top: 0.5px solid rgba(217, 217, 217, 0.7);
}

.border-right {
  padding-right: 75px;
  border-right: 0.5px solid rgba(217, 217, 217, 0.7);
}

/* bg images */
.bg-full-1 {
  /* background: transparent url("../storage/landing/hintergrund.jpg") 0% 0%
    no-repeat padding-box; */
  background-image: url("../storage/landing/hintergrund.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.bg-full-2 {
  background: transparent url("../storage/landing/hintergrund-soft.jpg") 0% 0%
    no-repeat padding-box;
  background-size: cover;
  width: 100%;
}

#funktionen .grid-2 {
  padding: 80px 0;
}

.termine {
  background: transparent url("../storage/landing/termine_new.png") center
    no-repeat padding-box;
  background-size: contain;
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: -80px;
  height: 100%;
}

.kalender {
  background-image: url("../storage/landing/kalender_new.jpg");
  /* background-position: center center; */
  background-repeat: no-repeat;
  background-origin: padding-box;
  max-width: 100%;
  background-size: cover;
  aspect-ratio: 16/9;
  position: relative;
}

.terminserie {
  background-image: url("../storage/landing/terminserie_new.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-origin: padding-box;
  max-width: 100%;
  background-size: cover;
  aspect-ratio: 16/9;
  position: relative;
}

.settings {
  background-image: url("../storage/landing/grundeinstellungen_new.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-origin: padding-box;
  max-width: 100%;
  background-size: cover;
  aspect-ratio: 16/9;
  position: relative;
}

.patiententermine {
  background-image: url("../storage/landing/freietermine_new.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-origin: padding-box;
  max-width: 100%;
  background-size: cover;
  aspect-ratio: 16/9;
  position: relative;
}

.widget {
  background-image: url("../storage/landing/widget.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-origin: padding-box;
  max-width: 100%;
  background-size: cover;
  aspect-ratio: 16/9;
  position: relative;
}

.video {
  background: transparent url("../storage/landing/videoplaceholder.png") center
    no-repeat padding-box;
  height: 100%;
  width: 100%;
  background-size: contain;
  position: relative;
}

/* header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 5;
}

#header:before {
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0%;
  width: 100%;
  height: 10%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  content: "";
}

.header-container {
  height: 80px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.header-container .grid-2 {
  align-items: center;
  height: 100%;
}

.nav {
  list-style-type: none;
  display: inline-flex;
}

.nav-conf {
  margin-left: auto;
}

.nav-item {
  padding: 5px 0px;
}

.nav-item:not(:first-of-type) {
  margin-left: 20px;
}

.mobile-nav .nav-item {
  margin-left: 0;
}

.nav-item a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
}

.nav-item a:hover {
  text-decoration: none;
}

.nav-item:after {
  content: "";
  display: block;
  margin: auto;
  height: 1px;
  width: 0px;
  background: transparent;
  transition: width 0.5s ease, background-color 0.5s ease;
}

.nav-item:hover:after {
  width: 100%;
  background: #006eb4;
}

.nav-item.txt-blue a {
  border-bottom: 1px solid #006eb4;
  padding-bottom: 2px;
}

.nav-item-btn {
  background-color: #c95858;
  color: white;
  padding: 5px 15px;
  margin-left: 20px;
  border-radius: 10px;
}

.nav-item-btn-blue {
  background-color: #fff;
  border: 1px solid #006eb4;
  color: #006eb4;
  padding: 5px 15px;
  white-space: nowrap;
  margin-left: 20px;
  border-radius: 10px;
  font-weight: 700;
}

.nav-item-btn a,
.nav-link {
  color: white;
  text-decoration: none;
}

.mobile-nav {
  display: none;
}

/* margins */
.margin-top-xxs {
  margin-top: 15px;
}

.margin-top-xs {
  margin-top: 40px;
}

.margin-bot-xs {
  margin-bottom: 40px;
}

.margin-top-s {
  margin-top: 100px;
}

.px-2 {
  padding-inline: 1rem;
}

.lighthouse-img {
  width: 90% !important;
  margin: auto;
}

/* general */
.full-container {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 20px 20px;
  min-height: 100px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.image-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.image-container-header {
  position: relative;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 75%;
}

.button {
  padding: 20px 50px;
  border-radius: 5px;
  display: inline-block;
  max-width: fit-content;
  cursor: pointer;
}

.full-width {
  width: 100%;
  height: 100%;
}

/* grids */
.grid-2 {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  position: relative;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  position: relative;
  column-gap: 20px;
}

.grid-2-row {
  display: grid;
  grid-template-rows: 1fr 2fr;
  align-content: center;
  justify-items: center;
  position: relative;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  column-gap: 50px;
}

.no-gap {
  column-gap: 0;
}

/* content */
#lightbox {
  display: none;
  position: fixed;
  /* keeps the lightbox window in the current viewport */
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  align-items: center;
}

#lightbox img {
  /* box-shadow:0 0 25px #111; */
  width: 100%;
  height: auto;
}

.close {
  position: absolute;
  z-index: 3;
  right: 17px;
  top: 11%;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
}

.close img {
  border-radius: 50%;
  padding: 10px;
}

.content {
  display: grid;
  align-content: center;
}

.bg-full-1 .container {
  padding-top: 80px;
  height: 100%;
  min-height: 550px;
}

.grid-2-row .text-centered p {
  margin: 0;
}

.grid-2-row img {
  height: 60px;
  width: auto;
}

.grid-2-row .function-svg {
  height: 40px;
}

.settings .bg-red,
.kalender .bg-red {
  height: 45px;
  width: 45px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-items: center;
}

.patiententermine .bg-red,
.terminserie .bg-red,
.widget .bg-red {
  height: 45px;
  width: 45px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-items: center;
  right: 0%;
  bottom: 0;
}

.patiententermine .bg-red img,
.settings .bg-red img,
.kalender .bg-red img,
.terminserie .bg-red img,
.widget .bg-red img {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  cursor: pointer;
}

.left {
  padding: 100px 175px;
}

.right {
  padding: 100px;
}

.right a {
  display: inline-flex;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.right a img {
  margin-right: 30px;
  width: 32px;
  height: auto;
}

.playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.playbtn .txt-white {
  font-size: 18px;
  font-weight: 700;
}

.einrichten {
  align-items: center;
}

.einrichten img {
  height: 100px;
}

.einrichten h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 15px;
}

.accordion-container {
  width: 100%;
}

.video-container {
  position: relative;
  border-radius: 15px;
  width: 100%;
}

.accordion {
  width: 50%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(217, 217, 217, 0.7);
  padding: 30px 20px;
  position: relative;
  cursor: pointer;
}

.accordion img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: url("../storage/landing/icon-aufklapper.svg");
}

.accordion.active img {
  content: url("../storage/landing/icon-close.svg");
}

.panel {
  padding: 50px 75px;
  width: 50%;
  margin: 0 auto;
  display: none;
  background-color: white;
  overflow: hidden;
  border: 1px solid rgba(217, 217, 217, 0.7);
}

#bestellen {
  position: relative;
}

#bestellen a {
  color: #454545;
  text-decoration: underline;
}

#faq {
  padding-top: 75px;
}

#bestellen::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.28;
  background-image: url("../storage/landing/hintergrund-soft-fade.jpg");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

#bestellen > * {
  position: relative;
  z-index: 2;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  background: #f5f5f7 0% 0% no-repeat padding-box;
  border-radius: 5px;
  border: none;
  padding: 20px;
  margin-bottom: 20px;
}

.error input {
  border: 1px solid #d0342c;
}

.alert-danger {
  display: none;
}

.error .alert-danger {
  display: block;
  font-size: 14px;
  color: #d0342c;
  padding-left: 5px;
}

.input-wrapper {
  margin-bottom: 20px;
}

.input-wrapper input,
.input-wrapper select {
  margin-bottom: 0px;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.form-radio {
  margin-top: 40px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
}

.form-radio input {
  width: unset;
  margin-left: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.bestellen-text {
  margin: 0 auto 60px auto;
}

.order {
  width: 100%;
  padding: 100px;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 1px 2px 8px #00000039;
  border-radius: 10px;
}

.street-grid {
  display: grid;
  grid-template-columns: 4fr 1fr;
  column-gap: 20px;
}

.city-grid {
  display: grid;
  grid-template-columns: 1fr 4fr;
  column-gap: 20px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 30px 100%;
  width: 50%;
  column-gap: 20px;
}

.checkbox-container p {
  margin-top: 0;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 22px;
  font-size: 16px;
}

.checkbox-container .txt-blue {
  font-weight: 700;
}

.checkbox-container input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
  width: 20px;
  left: 0;
}

.muted {
  color: rgb(117, 117, 117);
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 2px;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 0;
  left: 0;
}

/* .header-stoerer {
    border: 1px solid #c95858;
    background-color: #c95858;
    border-radius: 100%;
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 20px;
    text-align: center;
    position: absolute;
    right: 20%;
    top: 5%;
    padding: 10px;
} */
.header-stoerer {
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  background-image: url("/storage/landing/23_DF_Button_Shortlist-bester-Workflow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 10%;
  bottom: 0;
}

.circle-text {
  border: 1px solid #c95858;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-items: center;
  padding: 20px;
  text-align: center;
  margin: 5px 20px;
}

.circle-text > div {
  width: 100%;
  transform: rotate(-15deg);
}

.number-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  width: 50%;
  margin-bottom: 25px;
  padding-left: 35px;
}

.number-grid small {
  display: inline-block;
  line-height: 18px;
}

.number-grid input {
  margin-bottom: 0;
  margin-left: 5px;
}

.number-grid .input-wrapper {
  margin-left: 5px;
}

.number-input {
  width: 100px;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
  background: url("../storage/landing/icons8-done.svg");

  background-position: center;
  background-size: contain;
  width: 22px;
  border-color: #006eb4;
  height: 22px;
}

.checkbox-container:hover input ~ .checkmark {
  cursor: pointer;
}

.checkboxes {
  border-bottom: 1px solid rgba(217, 217, 217, 0.7);
  padding-bottom: 60px;
}

.btn-form {
  display: block;
  max-width: 50%;
  margin: 30px auto 30px auto;
}

#footer {
  min-height: 40px;
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 1) 0% 0% no-repeat padding-box;
  border-top: 1px solid rgba(217, 217, 217, 0.7);
}

#footer .flex-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
}

#footer .flex-row .footer-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-left: 30px;
}

#footer .copyright {
  align-self: flex-start;
  color: #454545;
}

#footer .footer-links {
  text-align: right;
  color: #454545;
}

#footer .footer-links a {
  text-decoration: none;
  color: #454545;
}

/*
    Help
*/

.help-wrapper {
  margin-top: 80px;
}

.hr-divider-bottom {
  border-bottom: 1px solid rgba(217, 217, 217, 0.7);
  padding-bottom: 50px;
}

.help-wrapper ul {
  margin-top: 30px;
  list-style: none;

  padding: 0;
  font-weight: 600;
  font-size: 18px;
  /* margin-bottom: 40px; */
}

.help-wrapper a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c95858;
  margin-bottom: 5px;
}

.help-wrapper i {
  font-size: 22px;
}

.blue-box-wrapper {
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 50px;
}

.success-msg {
  color: green;
}

.blue-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(47, 136, 199);
  background: linear-gradient(
    180deg,
    rgba(47, 136, 199, 1) 0%,
    rgba(23, 109, 180, 1) 100%
  );
  width: 100%;
  border-radius: 5px;
  justify-content: center;
  color: white;
  padding: 40px 0;
}

.blue-box i {
  font-size: 30px;
  padding: 8px;
  color: black;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0px 3px 6px #00000029;
}

.blue-box a {
  color: white;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 14px;
}

.container-feedback {
  margin-top: 30px;
  flex-direction: row;
}

.container-feedback h4 {
  font-weight: 600;
}

.container-feedback form {
  width: 100%;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.form-wrapper button {
  border: none;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.form-col {
  display: flex;
  gap: 10px;
}

.form-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-left .input-wrapper {
  margin-bottom: 0;
}

.form-right {
  flex: 1;
}

.form-right textarea {
  height: 100%;
  resize: none;
}

.video-wrapper {
  display: flex;
  gap: 30px;
  width: 100%;
  margin-top: 30px;
}

.video-col {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  width: 100%;
}

.video-element {
  width: 100%;
  border-radius: 10px;
  display: flex;
  position: relative;
  height: 320px;
  background: transparent url("../storage/landing/bg-videos.jpg") center
    no-repeat padding-box;
  background-size: cover;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}

.video-play img {
  max-width: 90px;
}

.faq-help {
  margin-bottom: 50px;
}

@media screen and (max-width: 1400px) {
  .header-container {
    max-width: 1050px;
    padding: 10px;
  }

  .left {
    padding: 100px 100px;
  }
}

@media screen and (min-width: 1200px) {
  .grid-3-extra {
    column-gap: 140px;
  }
}

@media screen and (max-width: 1024px) {
  .nav {
    display: none;
  }

  .logo {
    padding-left: 30px;
  }

  .mobile-nav.active {
    display: flex;
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background-image: url("../storage/landing/hintergrund-soft-fade.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #454545;
    list-style-type: none;
    flex-direction: column;
    align-items: center;
    padding-inline-start: 0px;
    justify-content: space-evenly;
    margin: 0;
    transition: all 0.25s ease-in-out;
  }

  #mobile-nav {
    position: absolute;
    z-index: 10;
    top: 45%;
    right: 30px;
    width: 30px;
    height: 40px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }

  #mobile-nav span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #454545;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    z-index: 5;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  #mobile-nav span:nth-child(1) {
    top: 14px;
  }

  #mobile-nav span:nth-child(2) {
    top: 22px;
  }

  #mobile-nav span:nth-child(3) {
    top: 30px;
  }

  #mobile-nav.open span {
    background: rgba(41, 54, 131, 1);
  }

  #mobile-nav.open span:nth-child(1) {
    top: 22px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  #mobile-nav.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }

  #mobile-nav.open span:nth-child(3) {
    top: 22px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .nav-item-btn {
    margin-left: 0px;
  }

  .header-container {
    max-width: 765px;
  }

  .left {
    padding: 100px 100px;
  }

  .accordion {
    width: 100%;
  }

  .panel {
    width: 100%;
  }
}

@media screen and (max-width: 880px) {
  .video-col {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 765px) {
  h1,
  h2 {
    font-size: 27px;
    line-height: 32px;
  }

  .border-right {
    border: none;
    padding-right: 0;
  }

  #footer .flex-row {
    flex-direction: column;
  }

  .first h1 {
    color: #ffffff;
  }

  .first p {
    color: #ffffff;
  }

  h3 {
    font-size: 18px;
    line-height: 23px;
  }

  .margin-top-s {
    margin-top: 30px;
  }

  .header-container .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .content.first {
    padding-bottom: 30px;
  }

  .grid-2-1 .image-container {
    max-height: 250px;
  }

  .termine {
    bottom: -10px;
  }

  .button {
    max-width: 100%;
    text-align: center;
  }

  .image-container {
    height: auto;
  }

  .kalender,
  .patiententermine,
  .settings,
  .terminserie {
    background-size: contain;
  }

  .checkbox-container {
    font-size: 14px;
    line-height: 20px;
  }

  .grid-2-1 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  /*.grid-2-1:after{
        content: 'x ';
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    } */

  .grid-2 {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  #praxisalltag {
    margin-top: 60px;
  }

  #praxisalltag .grid-2 .image-container {
    grid-row: 1;
  }

  #preis .grid-2 {
    row-gap: 0;
  }

  #funktionen .grid-2 {
    padding: 40px;
  }

  #funktionen .bg-full-2 .margin-top-xs,
  #funktionen .container .margin-top-xs {
    margin-top: 0;
  }

  #funktionen .bg-full-2 .margin-bot-xs,
  #funktionen .container .margin-bot-xs {
    margin-bottom: 0;
  }

  .left,
  .right {
    padding: 75px;
  }

  .right a {
    font-size: 18px;
  }

  .left .button {
    display: block;
  }

  .video.margin-top-xs {
    margin-top: 0px;
  }

  .order {
    padding: 20px;
  }

  .number-grid {
    width: 100%;
  }

  #footer .flex-row .footer-links,
  #footer .flex-row .copyright {
    text-align: center;
  }

  .blue-box-wrapper {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 580px) {
  .form-col {
    flex-wrap: wrap;
  }

  .form-left {
    width: 100%;
  }
}

@media screen and (max-width: 465px) {
  .grid-2-1 {
    grid-template-columns: 1fr;
    grid-template-rows: 0.8fr 1fr;
  }

  #bestellen .container {
    padding: 20px 7px;
  }

  .order {
    padding: 20px 10px;
  }

  .order input {
    margin: 10px auto;
  }

  .left,
  .right {
    padding: 25px;
  }

  .form-radio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .form-radio h4 {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    margin-left: 10px;
  }

  .form-radio input {
    margin: 5px 5px;
  }
}

/* Order_complete css */

.bg-order {
  background-image: url("../storage/landing/bg-oben-verlauf.jpg");
  background-position: top 0%;
  background-repeat: no-repeat;
  background-size: cover;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "main" "footer";
  grid-template-rows: 1fr 85px;
}

.order-complete {
  margin-top: 85px;
  grid-area: main;
}

.order-complete a {
  text-decoration: none;
}

.order-complete .first h1,
.order-complete .first p {
  color: #454545 !important;
}

.order-complete .container {
  display: block;
}

.order-complete .first {
  border-bottom: 1px solid rgba(0, 110, 180, 0.15);
  padding-bottom: 40px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-complete .second {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.order-complete .second .button {
  margin-top: 60px;
}

#footer {
  grid-area: footer;
  height: 85px;
  display: grid;
  padding: 15px;
}
