@charset "UTF-8";
:root {
  --corporate-color: #d52b1e;
}

.frauenarzt {
  --corporate-color: #cb023a;
}

.clear:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}

.bgGray {
  background-color: rgba(240, 241, 241, 0.5);
}
.bgGray a {
  text-decoration: underline;
}

a {
  color: #777;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: underline;
}

p {
  margin-top: 0;
}

ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  display: block;
  background-color: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  color: #000;
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
ul li:last-child {
  margin-bottom: 0px;
}

input,
textarea,
select {
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus,
textarea:focus {
  outline: none;
}

input[type=submit],
input[type=reset],
input[type=button],
button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

::-webkit-input-placeholder {
  color: #777;
}

::-moz-placeholder {
  color: #777;
}

:-ms-input-placeholder {
  color: #777;
}

:-moz-placeholder {
  color: #777;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #777;
  line-height: 1.4rem;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: "Crimson Text", "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 50px;
  font-size: 3.125rem;
  color: var(--corporate-color);
  line-height: 50px;
  transition: font-size 0.5s ease;
}

h2 {
  margin-top: 0;
  font-family: "Crimson Text", "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 28px;
  font-size: 1.75rem;
  transition: font-size 0.5s ease;
}

/* The container */
.checkboxContainer {
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  font-size: inherit;
  color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
  display: none;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 16px;
  width: 16px;
  border: 1px solid #777;
  background: #fff;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
  border: 1px solid var(--corporate-color);
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark {
  background-color: var(--corporate-color);
  border: 1px solid var(--corporate-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Label mit Links und Abstände */
label {
  margin-bottom: 10px;
}
label:last-child {
  margin-bottom: 0px;
}
label a {
  color: inherit;
}

/* Select-Box-Styling */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

select:focus::-ms-value {
  background-color: transparent;
}

.select-wrapper {
  position: relative;
}

.select-wrapper:before {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  position: absolute;
  right: 15px;
  top: 10px;
  color: inherit;
  pointer-events: none;
}

/* Button-Styling */
#formSubmit {
  display: inline-block;
  height: 40px;
  background-color: var(--corporate-color);
  padding: 0 10px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
#formSubmit:hover {
  background-color: #777;
  transition: background-color 0.2s ease;
}

.hint ul {
  padding-bottom: 15px;
}
.hint ul li {
  background-color: inherit;
  color: inherit;
  height: inherit;
  line-height: inherit;
  white-space: inherit;
  overflow: inherit;
  list-style-type: circle;
  display: list-item;
  margin-left: 20px;
  padding-left: 0px;
}

*, *:after, *:before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html, body {
  height: 100%;
}

main {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding-bottom: 50px;
}

#headerMain {
  display: block;
  height: 180px;
  background-color: #fff;
  transition: height 0.5s ease;
}
#headerMain .content {
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 7%;
}
#headerMain .content h2 {
  position: absolute;
  bottom: 15px;
  margin: 0;
}
#headerMain .content #logoContainer {
  position: relative;
  float: right;
  width: 0px;
  height: 100%;
}
#headerMain .content #logoContainer #mgof-logo {
  position: absolute;
  bottom: 20px;
  right: 0;
  height: 55px;
  width: auto;
  transition: height 0.5s ease;
}

@media screen and (max-width: 1024px) {
  #headerMain {
    height: 140px;
  }
}
@media screen and (max-width: 640px) {
  #headerMain {
    height: 110px;
  }
  #headerMain .content h2 {
    font-size: 22px;
    font-size: 1.375rem;
    bottom: 10px;
  }
  #headerMain .content #logoContainer #mgof-logo {
    height: 40px;
    width: auto;
    bottom: 15px;
  }
}
@media screen and (max-width: 400px) {
  #headerMain {
    height: 110px;
  }
  #headerMain .content #logoContainer #mgof-logo {
    height: auto;
    max-width: 120px;
  }
}
#contentMain .info {
  margin: 15px 0px;
}
#contentMain .outerContent {
  width: 100%;
}
#contentMain .pretext {
  padding-top: 30px;
}
#contentMain .content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 7%;
  padding-bottom: 30px;
}
#contentMain .content:last-child {
  padding-bottom: 0px;
}
#contentMain form h1,
#contentMain div h1 {
  margin: 0;
  padding-top: 30px;
  padding-bottom: 20px;
}
#contentMain form .regHint,
#contentMain div .regHint {
  font-size: 75%;
  line-height: 1.3;
  padding-bottom: 5px;
}
#contentMain form .content:first-child,
#contentMain div .content:first-child {
  padding-bottom: 30px;
}
#contentMain form .inputSpalte,
#contentMain div .inputSpalte {
  width: calc(50% - 10px);
}
#contentMain form .inputSpalte:last-child,
#contentMain div .inputSpalte:last-child {
  float: right;
}
#contentMain form .inputSpalte:first-child,
#contentMain div .inputSpalte:first-child {
  float: left;
  margin-right: 20px;
}
#contentMain form .inputSpalte input,
#contentMain form .inputSpalte select,
#contentMain div .inputSpalte input,
#contentMain div .inputSpalte select {
  color: #777;
  height: 40px;
  padding: 0 10px;
  margin-bottom: 20px;
  width: 100%;
  border: 1px solid rgba(119, 119, 119, 0.3);
  transition: margin 0.5s ease;
  transition: border-color 0.5s ease;
  transition: box-shadow 0.5s ease;
  -webkit-box-shadow: 0px 0px 0px rgba(119, 119, 119, 0);
  -moz-box-shadow: 0px 0px 0px rgba(119, 119, 119, 0);
  box-shadow: 0px 0px 0px rgba(119, 119, 119, 0);
  background-color: #fff;
}
#contentMain form .inputSpalte input:focus,
#contentMain form .inputSpalte select:focus,
#contentMain div .inputSpalte input:focus,
#contentMain div .inputSpalte select:focus {
  border: 1px solid rgb(119, 119, 119);
  -webkit-box-shadow: 0px 0px 35px rgba(119, 119, 119, 0.3);
  -moz-box-shadow: 0px 0px 35px rgba(119, 119, 119, 0.3);
  box-shadow: 0px 0px 35px rgba(119, 119, 119, 0.3);
}
#contentMain form .inputSpalte input:disabled,
#contentMain form .inputSpalte select:disabled,
#contentMain div .inputSpalte input:disabled,
#contentMain div .inputSpalte select:disabled {
  background-color: rgba(150, 150, 150, 0.3);
}
#contentMain form .inputSpalte input:last-child,
#contentMain div .inputSpalte input:last-child {
  margin-bottom: 0px;
}
#contentMain form .inputSpalte label,
#contentMain div .inputSpalte label {
  color: var(--corporate-color);
}
#contentMain form .inputReihe,
#contentMain div .inputReihe {
  margin-top: 20px;
}
#contentMain form #formButtons,
#contentMain div #formButtons {
  margin-top: 20px;
}
#contentMain form #formButtons #formSubmit,
#contentMain div #formButtons #formSubmit {
  width: 250px;
  float: left;
  margin-bottom: 20px;
  margin-right: 20px;
}
#contentMain form #formButtons .linkGruppe,
#contentMain div #formButtons .linkGruppe {
  float: left;
}
#contentMain form #formButtons a,
#contentMain div #formButtons a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  line-height: 40px;
  margin-right: 10px;
}
#contentMain form #formButtons a:hover,
#contentMain div #formButtons a:hover {
  text-decoration: underline;
  color: #000;
}
#contentMain form #systemMessage,
#contentMain div #systemMessage {
  display: none;
  background-color: rgba(240, 241, 241, 0);
  color: var(--corporate-color);
  border-top: 1px solid var(--corporate-color);
  border-bottom: 1px solid var(--corporate-color);
}
#contentMain form #systemMessage .content,
#contentMain div #systemMessage .content {
  max-width: 1200px;
  padding: 0 7%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.fieldError {
  border: 1px solid var(--corporate-color) !important;
}

.msgShow {
  display: block !important;
}

@media screen and (max-width: 640px) {
  #contentMain form h1 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 40px;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  #contentMain form .inputSpalte {
    width: 100%;
  }
  #contentMain form .inputSpalte:first-child {
    float: none;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  #contentMain form .inputSpalte:last-child {
    float: none;
  }
  #contentMain form .inputSpalte input,
  #contentMain form .inputSpalte select {
    margin-bottom: 10px;
  }
  #contentMain form #formButtons {
    margin-top: 20px;
  }
  #contentMain form #formButtons #formSubmit {
    width: 100%;
    float: none;
    margin-bottom: 20px;
    margin-right: 0;
  }
}
#footerMain {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 50px;
  background-color: #fff;
}
#footerMain .content {
  max-width: 1200px;
  padding: 0 7%;
  margin: 0 auto;
}

#berufsgruppenhinweis {
  display: none;
}

/*# sourceMappingURL=base.css.map */
