#botContainer {
  display: none;
  min-height: 100%;
}
#botContainer.show {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#employeeEditorContainer {
  display: none;
  position: fixed;
  z-index: 101;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  font-family: "rawline";
  overflow-y: auto;
  color: #0E3745;
  /* -------------------------------------- */
  /* --- main grid --- */
  /* -------------------------------------- */
  /* --- rounded Box --- */
  /* -------------------------------------- */
  /* --- Employee Box --- */
  /* -------------------------------------- */
  /* --- View: Overview --- */
  /* -------------------------------------- */
  /* --- View: Employee --- */
  /* -------------------------------------- */
  /* --- View: Form elements --- */
}
#employeeEditorContainer.show {
  display: block;
}
#employeeEditorContainer .close {
  position: fixed;
  right: 66px;
  top: 66px;
  width: 46px;
  height: 46px;
  background: #103846;
  border-radius: 50%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.12);
  z-index: 1;
  color: #fff;
  cursor: pointer;
}
#employeeEditorContainer .close i {
  line-height: 46px;
  display: block;
  text-align: center;
}
#employeeEditorContainer .mainGrid {
  height: 100%;
  max-height: 100%;
  /* -------------------------------------- */
  /* --- left / sidebar element --- */
}
#employeeEditorContainer .mainGrid > * > header {
  height: 140px;
}
#employeeEditorContainer .mainGrid > section {
  display: none;
}
#employeeEditorContainer .mainGrid > aside {
  display: block;
  width: 100%;
  height: 100%;
  background: #E6F4F1;
}
#employeeEditorContainer .mainGrid > aside > .content {
  padding: 40px;
  overflow: auto;
  height: calc(100vh - 140px);
}
#employeeEditorContainer .mainGrid > aside > header {
  display: flex;
  align-items: center;
  padding: 40px;
  height: 140px;
  max-height: 140px;
}
#employeeEditorContainer .mainGrid > aside > header > img {
  display: inline-block;
  width: 100px;
  height: auto;
  margin-left: -11px;
  margin-right: 20px;
}
#employeeEditorContainer .mainGrid > aside > header > h2 {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  line-height: 32px;
  color: #0E3745;
  margin: 0;
}
#employeeEditorContainer .mainGrid > aside > .infoHeader {
  position: absolute;
  right: 480px;
  top: 51px;
}
#employeeEditorContainer .mainGrid > aside > .infoHeader > .infoText {
  margin-right: 30px;
  font-size: 16px;
  line-height: 27px;
  color: #0E3745;
}
#employeeEditorContainer .mainGrid > aside > .infoHeader > .sum {
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 32px;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #0E3745;
}
#employeeEditorContainer .roundedBox {
  background: #fff;
  border-radius: 10px;
  position: relative;
}
#employeeEditorContainer .roundedBox.green {
  background: #E6F4F1;
}
#employeeEditorContainer .roundedBox > h3 {
  background: #0E3745;
  border-radius: 10px 0px;
  color: #fff;
  padding: 6px 20px 9px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 55px);
  margin: 0;
  font-size: 18px;
  line-height: 18px;
}
#employeeEditorContainer .roundedBox > div.innerRoundedBox {
  position: relative;
  padding: 20px;
}
#employeeEditorContainer .employee {
  font-size: 16px;
  line-height: 27px;
}
#employeeEditorContainer .employee > .roundedBox {
  cursor: pointer;
}
#employeeEditorContainer .employee h3 {
  font-size: 18px;
  line-height: 26px;
}
#employeeEditorContainer .employee h3 i {
  margin-right: 5px;
}
#employeeEditorContainer .employee .mark {
  position: absolute;
  padding: 8px;
  cursor: pointer;
  top: 7px;
  right: 8px;
}
#employeeEditorContainer .employee .mark i {
  color: #ccc;
  background: transparent;
  border: 2px solid #ccc;
  border-radius: 50%;
  padding: 5px;
  font-size: 12px;
  line-height: 12px;
  display: block;
  width: 26px;
  text-align: center;
}
#employeeEditorContainer .employee .mark.checked i {
  color: #0E3745;
  background: #71C9B8;
  border: 2px solid #71C9B8;
}
#employeeEditorContainer .employee .mark.incomplete i {
  color: white;
  background: red;
  border: 2px solid red;
}
#employeeEditorContainer .employee .mark:hover i {
  color: #0E3745;
}
#employeeEditorContainer .employee h4 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}
#employeeEditorContainer .employee h4 i {
  margin-left: 5px;
}
#employeeEditorContainer .employee .dataTable {
  display: flex;
}
#employeeEditorContainer .employee .dataTable > * {
  width: 50%;
}
#employeeEditorContainer .employee .dataTable > *.right {
  width: calc(50% - 20px);
  margin-left: 20px;
}
#employeeEditorContainer .employee .dataTable table {
  width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  border-spacing: 0;
}
#employeeEditorContainer .employee .dataTable table tr {
  border-bottom: 1px solid #ececec;
}
#employeeEditorContainer .employee .dataTable table tr.sum {
  border-bottom: none;
}
#employeeEditorContainer .employee .dataTable table td {
  padding: 4px 0;
}
#employeeEditorContainer .employee .dataTable table td:nth-child(2) {
  text-align: right;
}
#employeeEditorContainer .employee footer {
  margin-top: 20px;
}
#employeeEditorContainer .employee footer > .employeeForm {
  font-size: 15px;
  line-height: 18px;
  color: #2D84B3;
  cursor: pointer;
}
#employeeEditorContainer .employee footer > .trash {
  position: absolute;
  color: #ccc;
  right: 10px;
  bottom: 15px;
  padding: 5px 14px;
  cursor: pointer;
}
#employeeEditorContainer .employee footer > .trash:hover {
  color: #0E3745;
}
#employeeEditorContainer .addEmployee .roundedBox {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#employeeEditorContainer .addEmployee .roundedBox a {
  flex: 0 0 auto;
  position: relative;
  margin-top: 40px;
  color: #71C9B8;
}
#employeeEditorContainer .addEmployee .roundedBox a:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -60px;
  width: 50px;
  height: 50px;
  background: url(../../images/icon-add.svg) no-repeat center;
  background-size: 26px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid #71C9B8;
}
#employeeEditorContainer .addEmployee .roundedBox a:hover {
  color: #0E3745;
}
#employeeEditorContainer[location=overview] .mainGrid > section.overview {
  display: block;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > * {
  max-width: calc(100vw - 440px);
}
@media screen and (max-width: 1280px) {
  #employeeEditorContainer[location=overview] .mainGrid > aside .infoHeader {
    top: 110px;
    left: 40px;
  }
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .content {
  padding: 20px;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .content > .gridContainer {
  display: flex;
  flex-wrap: wrap;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .content > .gridContainer > * {
  width: 25%;
  padding: 20px;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .content > .gridContainer > * .roundedBox {
  min-width: 285px;
}
@media screen and (max-width: 2200px) {
  #employeeEditorContainer[location=overview] .mainGrid > aside > .content > .gridContainer > * {
    width: 33.333%;
  }
}
@media screen and (max-width: 1700px) {
  #employeeEditorContainer[location=overview] .mainGrid > aside > .content > .gridContainer > * {
    width: 50%;
  }
}
@media screen and (max-width: 1300px) {
  #employeeEditorContainer[location=overview] .mainGrid > aside > .content > .gridContainer > * {
    width: 100%;
  }
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview {
  position: fixed;
  right: 0;
  top: 0;
  width: 440px;
  height: 100%;
  padding: 40px 40px 40px 0;
  max-width: none;
  overflow-y: scroll;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview button.done {
  position: absolute;
  bottom: 40px;
  left: 40px;
  padding-left: 30px;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview button.done i {
  margin-right: 5px;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview > .roundedBox {
  min-height: 100%;
  padding-bottom: 90px;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview > .roundedBox > .innerRoundedBox {
  padding: 40px;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview header,
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview section {
  padding: 40px 0;
  border-bottom: 1px solid #E6F4F1;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview header:last-child,
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview header {
  padding: 0 40px 40px 0;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview header h2 {
  font-weight: bold;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview header h3 {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  color: #71C9B8;
  margin-bottom: 0;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview section p {
  font-size: 16px;
  line-height: 27px;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview section p:last-child {
  margin-bottom: 0;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview section.kpis {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview section.kpis > div {
  width: 50%;
  margin-bottom: 30px;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview section.kpis > div label {
  display: block;
  font-size: 16px;
  line-height: 27px;
  color: #71C9B8;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview section.kpis > div span {
  display: block;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  color: #0E3745;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview #companyInformation .editEmployeeCount {
  display: flex;
  align-items: center;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview #companyInformation .editEmployeeCount span {
  flex: 0 0 auto;
  display: inline;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview #companyInformation .editEmployeeCount i {
  flex: 0 0 auto;
  font-size: 16px;
  margin-left: 10px;
  color: #ccc;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview #companyInformation .editEmployeeCount i:hover {
  cursor: pointer;
  color: #0E3745;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview #companyInformation .employeeCountInput {
  display: none;
  align-items: center;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview #companyInformation .employeeCountInput input {
  flex: 0 0 auto;
  width: 70px;
  border: 1px solid #E6F4F1;
  border-radius: 10px;
  padding: 10px;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview #companyInformation .employeeCountInput i {
  flex: 0 0 auto;
  font-size: 16px;
  margin-left: 10px;
  color: #ccc;
}
#employeeEditorContainer[location=overview] .mainGrid > aside > .businessOverview #companyInformation .employeeCountInput i:hover {
  cursor: pointer;
  color: #0E3745;
}
#employeeEditorContainer[location=employee] .mainGrid > aside {
  width: 480px;
}
#employeeEditorContainer[location=employee] .mainGrid > aside > .infoHeader {
  right: 140px;
}
#employeeEditorContainer[location=employee] .mainGrid > aside > .businessOverview {
  display: none;
}
#employeeEditorContainer[location=employee] .mainGrid > aside > .content > .gridContainer {
  display: flex;
  flex-wrap: wrap;
}
#employeeEditorContainer[location=employee] .mainGrid > aside > .content > .gridContainer > * {
  width: 100%;
  margin-bottom: 40px;
}
#employeeEditorContainer[location=employee] .mainGrid > section.employeeForm {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  width: calc(100vw - 480px);
  height: 100%;
  padding: 0 0 120px 0;
  overflow-y: scroll;
  max-height: 100vh;
}
#employeeEditorContainer[location=employee] .mainGrid > section.employeeForm > .close {
  right: 76px;
  top: 46px;
}
#employeeEditorContainer[location=employee] .mainGrid > section.employeeForm > header {
  height: 140px;
  max-height: 140px;
}
#employeeEditorContainer[location=employee] .mainGrid > section.employeeForm .content {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}
#employeeEditorContainer[location=employee] .mainGrid > section.employeeForm .content > * {
  width: 50%;
  padding: 20px;
}
@media screen and (max-width: 1660px) {
  #employeeEditorContainer[location=employee] .mainGrid > section.employeeForm .content > * {
    width: 100%;
    padding: 0;
    margin-bottom: 80px;
  }
}
#employeeEditorContainer[location=employee] .mainGrid > section.employeeForm .content .innerRoundedBox {
  padding: 40px;
}
#employeeEditorContainer[location=employee] .mainGrid > section.employeeForm .content .innerRoundedBox.erstattungen {
  background: #71C9B8;
  padding: 20px 40px 0;
}
#employeeEditorContainer[location=employee] .mainGrid > section.employeeForm .content .innerRoundedBox.erstattungen h3 {
  color: #ffffff;
}
#employeeEditorContainer[location=employee] .mainGrid > section.employeeForm .content .innerRoundedBox.erstattungen .uiBerechnetesResultat {
  background: #ffffff;
}
#employeeEditorContainer[location=employee] .mainGrid > section.employeeForm .content .innerRoundedBox h2 {
  font-size: 18px;
  line-height: 32px;
  font-weight: normal;
  text-transform: uppercase;
  border-bottom: 1px solid #0E3745;
  padding: 0px 0;
}
#employeeEditorContainer form .formRow {
  margin-bottom: 30px;
  position: relative;
}
#employeeEditorContainer form .formRow:last-child {
  margin-bottom: 0;
}
#employeeEditorContainer form .formRow > p {
  line-height: 22px;
}
#employeeEditorContainer form #formRowSteuerklasseFaktor {
  display: none;
}
#employeeEditorContainer form label {
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 5px;
}
#employeeEditorContainer form .info {
  display: block;
  font-size: 14px;
  line-height: 18px;
  padding: 10px;
}
#employeeEditorContainer form .withUnit {
  position: relative;
}
#employeeEditorContainer form .withUnit .unit {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
#employeeEditorContainer form input[type=text], #employeeEditorContainer form input[type=email], #employeeEditorContainer form input[type=number], #employeeEditorContainer form input[type=tel] {
  display: block;
  width: 100%;
  appearance: none;
  outline: none;
  background: #FFFFFF;
  border: 1px solid #71C9B8;
  border-radius: 8px;
  font-family: "rawline";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  color: #0E3745;
  padding: 13px 20px;
}
#employeeEditorContainer form input[type=text]::placeholder, #employeeEditorContainer form input[type=email]::placeholder, #employeeEditorContainer form input[type=number]::placeholder, #employeeEditorContainer form input[type=tel]::placeholder {
  color: #72A9BC;
}
#employeeEditorContainer form input[type=text]:focus, #employeeEditorContainer form input[type=email]:focus, #employeeEditorContainer form input[type=number]:focus, #employeeEditorContainer form input[type=tel]:focus {
  outline: none;
  box-shadow: none;
}
#employeeEditorContainer form input[type=text]:invalid.touched, #employeeEditorContainer form input[type=text]:invalid:not([value=""]), #employeeEditorContainer form input[type=email]:invalid.touched, #employeeEditorContainer form input[type=email]:invalid:not([value=""]), #employeeEditorContainer form input[type=number]:invalid.touched, #employeeEditorContainer form input[type=number]:invalid:not([value=""]), #employeeEditorContainer form input[type=tel]:invalid.touched, #employeeEditorContainer form input[type=tel]:invalid:not([value=""]) {
  border-color: red;
}
#employeeEditorContainer form .uiBerechnetesResultat {
  display: block;
  width: 100%;
  appearance: none;
  outline: none;
  background: #71C9B8;
  border: 1px solid #fff;
  border-radius: 8px;
  font-family: "rawline";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  color: #0E3745;
  padding: 15px 20px;
  font-weight: bold;
}
#employeeEditorContainer form .radioButtons .button {
  font-family: "rawline";
  border-radius: 8px;
  background: #fff;
  color: #0E3745;
  border: 1px solid #71C9B8;
  padding: 15px 25px;
  font-size: 20px;
  line-height: 23px;
  cursor: pointer;
  margin-right: 10px;
}
#employeeEditorContainer form .radioButtons .button.selected {
  background: #71C9B8;
}
#employeeEditorContainer form .radioButtons .button:last-of-type {
  margin-right: 0;
}
#employeeEditorContainer form .radioButtons.invalid.touched .button {
  border: 1px solid red;
}
#employeeEditorContainer form .formRowGrid {
  display: flex;
  flex-wrap: wrap;
}
#employeeEditorContainer form .formRowGrid > * {
  width: 50%;
}
#employeeEditorContainer form .formRowGrid > *:nth-child(odd) {
  padding-right: 20px;
}
#employeeEditorContainer form .formRowGrid > *:nth-child(even) {
  padding-left: 20px;
}
#employeeEditorContainer form .formGroup .formRow {
  margin-bottom: 20px;
}
#employeeEditorContainer form footer.formResult {
  display: flex;
  padding: 25px 40px;
  background: #0E3745;
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  color: #E6F4F1;
  text-align: right;
  border-radius: 0 0 8px 8px;
}
#employeeEditorContainer form footer.formResult > * {
  width: 40%;
}
#employeeEditorContainer form footer.formResult > *:first-child {
  width: 60%;
  text-align: left;
}
#employeeEditorContainer form .submitElement {
  position: fixed;
  right: 0;
  bottom: 0;
  text-align: right;
  padding: 0 60px 40px 0;
  pointer-events: none;
}
#employeeEditorContainer form .submitElement .button {
  box-shadow: 0 20px 70px #0E3745;
  pointer-events: all;
}
#employeeEditorContainer form .error {
  display: none;
  color: red;
  font-size: 14px;
  line-height: 18px;
  padding: 10px;
}
#employeeEditorContainer form .error.active {
  display: block;
}
#employeeEditorContainer #leistungssatz_aendern {
  text-decoration: underline;
  color: #0E3745;
  cursor: pointer;
}
#employeeEditorContainer #leistungssatz_aendern_inputs {
  display: none;
}
#employeeEditorContainer #leistungssatz_aendern_inputs.show {
  position: relative;
  display: block;
  padding: 15px 20px;
  border: 1px solid #71C9B8;
  margin-top: 20px;
  border-radius: 6px;
  background: #C7E2DC;
}
#employeeEditorContainer #leistungssatz_aendern_inputs .close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  background: #71C9B8;
  box-shadow: none;
}
#employeeEditorContainer #leistungssatz_aendern_inputs .close > i {
  line-height: 30px;
  font-size: 14px;
}

#finalPageAntrag, #finalPageKug107Only, #finalPageWithoutPdfForms {
  display: none;
  background: #fff;
  font-family: "rawline";
  color: #0E3745;
}
#finalPageAntrag.show, #finalPageKug107Only.show, #finalPageWithoutPdfForms.show {
  display: block;
}
#finalPageAntrag p, #finalPageKug107Only p, #finalPageWithoutPdfForms p {
  margin-bottom: 32px;
}
#finalPageAntrag .summaryTable .label, #finalPageKug107Only .summaryTable .label, #finalPageWithoutPdfForms .summaryTable .label {
  font-weight: bold;
  width: 200px;
  vertical-align: top;
}

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