@font-face {
  font-family: 'Frutiger LT 45';
  src: url('../fonts/Frutiger\ LT\ W02_45\ Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Frutiger LT 67 Bold Cond';
  src: url('../fonts/Frutiger\ LT\ W02_67\ Bold\ Cond.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Frutiger LT 47 Light Cond';
  src: url('../fonts/Frutiger\ LT\ W02_47\ Light\ Cond.woff2') format('woff2');
  font-weight: 17px;
  font-style: 400;
}

:root {
  --lightgreySP: #e9ecee;
  --greySP: #A3ADB2;
  --digitalBlau: #00568A;
  --digitalRot: #D20420;
  --digitalGrau: #A3ADB2;
  --digitalSchwarz: #1D1D1D;

  --digitalBlau2: #4F81BD;
  --digitalBlau3: #92B6D4;
  --digitalBlau4: #EAF3F7;
  --digitalLila: #394160;
  --digitalLila2: #803A60;
  --digitalLightGrau: #C8CED1;
  --digitalLightGrau2: #EDEFF0;
  --digitalLightGrau3: #F8F9FA;

  --gruen: #006B3E;
  --gelb: #FFFF00;
  --orange: #ffa600;
  --rot: #FF0000;
}

html {
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: default;
}

body {
  margin: 0;
  /* font-family: 'Frutiger LT 45'; */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  /* min-width: 1024px; */
  overflow-x: auto;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: black;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

input,
textarea {
  outline: none;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

input[type='radio'] {
  accent-color: var(--digitalBlau);
}

hr {
  border: 0;
  height: 1px;
  background: var(--lightgreySP);
}


summary:focus {
  outline: none;
}

.bodyDiv {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ContentGrow {
  flex-grow: 2;
  /* height: 100%;
  min-height: 100%; */
}

.blockAusblenden {
  display: none !important;
}

.welcomepage {
  padding: 30px;
}

.welcomepage>p {
  font-size: 40px;
  line-height: 1.5em;
}

.welcomepage label span {
  color: var(--digitalGrau);
}

.welcomepage label {
  color: var(--digitalBlau);
}



.blockUnsichtbar {
  visibility: hidden;
}

/* h1 {
  font-size: 3vh;
  margin-block-end: 20px;
  margin-block-start: 20px;
} */

.spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.alignRight {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.alignCenter {
  align-items: center;
}

.justifyContentMittig {
  justify-content: center;
}

.buttonGross {
  width: 108px;
  height: 35px;
  /* padding: 10px; */
}

button {
  background-color: var(--lightgreySP);
  border-radius: 3px;
  padding: 4px 6px;
  border: none;
  box-shadow: inset 0 -0.6em 1em -0.35em rgba(0, 0, 0, 0.17), inset 0 0.6em 2em -0.3em rgba(255, 255, 255, 0.15), inset 0 0 0em 0.05em rgba(255, 255, 255, 0.12);
  margin: 2px;
  outline: none;
  min-width: fit-content;
  height: 25px;
}

button:disabled:hover {
  cursor: not-allowed;
  background-color: var(--lightgreySP);
}

/* .buttonMitSymbol {
  font-size: 1.3em;
} */

.buttonMitSymbolGross {
  font-size: 1.3em;
  width: 35px;
  height: 35px;
}

.buttonMitImgKlein {
  max-width: 25px;
  max-height: 25px;
}

.buttonMitImgKlein img {
  margin: 0 !important;
  height: 15px !important;
}

.buttonBlau {
  background-color: var(--digitalBlau);
  color: white;
}

button:hover {
  cursor: pointer;
  background-color: var(--digitalGrau);
}

.btnAktive {
  background-color: var(--greySP);
  box-shadow: rgba(60, 60, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

select {
  outline: none;
  border-radius: 3px;
  border: 1px solid #8f8f9d;
}

select:hover {
  background-color: var(--lightgreySP);
}

select.decorated option:hover {
  box-shadow: 0 0 10px 100px var(--digitalBlau) inset;
}


.control {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 4px;
  padding-top: 3px;
  cursor: pointer;
  font-size: 14px;
  margin-left: 2px;
  white-space: nowrap;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  left: 10px;
}

.control_indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 17px;
  width: 17px;
  background: var(--lightgreySP);
  border: 1px solid var(--greySP);
  border-radius: 3px;
}

.control:hover input~.control_indicator,
.control input:focus~.control_indicator {
  background: var(--greySP);
}

.control input:checked~.control_indicator {
  background: var(--digitalBlau);
  border: 1px solid var(--digitalBlau);
}


.control input:disabled~.control_indicator {
  background: var(--digitalBlau2);
  opacity: 0.6;
  pointer-events: none;
}

.control_indicator:after {
  box-sizing: unset;
  content: '';
  position: absolute;
  display: none;
}

.control input:checked~.control_indicator:after {
  display: block;
}

.control-checkbox .control_indicator:after {
  left: 6px;
  top: 1px;
  width: 3px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.control-checkbox input:disabled~.control_indicator:after {
  border-color: var(--digitalGrau);
}

.MarginTop30 {
  margin-top: 30px;
}

.Opacity02 {
  opacity: 0.2;
  /* transition: opacity 1s; */
}

.grid-container {
  display: grid;
  grid-template-rows: 70px auto 50px;
}

@media (max-width: 800px) {
  .grid-container {
    grid-template-rows: 50px auto 40px;
  }
}

.progressbar {
  width: 100%;
  background-color: var(--lightgreySP);
  border-radius: 5px;
}

.progressbar div {
  background-color: var(--digitalBlau);
  height: 10px;
  border-radius: 5px;
  width: 50%;
}

/* @keyframes rotate {
  from {
      transform: rotate(0deg);
  }
  to { 
      transform: rotate(360deg);
  }
}


@-webkit-keyframes rotate {
  from {
      -webkit-transform: rotate(0deg);
  }
  to { 
      -webkit-transform: rotate(360deg);
  }
} */

#pageLoading {
  display: none;
  position: absolute;
  height: 100%;
  width: calc(100% + 10px);
  background-color: var(--lightgreySP);
  left: -10px;
  opacity: 70%;
  z-index: 10000;
}

.withAnimation {
  /* animation: rotate 2s linear infinite; */
  -webkit-transition: all 0.5s ease-in;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1.0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  transition: all 0.5s ease-in;
  animation-name: rotate;
  animation-duration: 1.0s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.load {
  width: 100px;
  height: 100px;
  margin: 110px auto 0;
  border: solid 20px var(--greySP);
  border-radius: 50%;
  /* border-right-color: transparent; */
  border-bottom-color: transparent;
  /* -webkit-transition: all 0.5s ease-in;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1.0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear; */

  /* transition: all 0.5s ease-in;
  animation-name: rotate;
  animation-duration: 1.0s;
  animation-iteration-count: infinite;
  animation-timing-function: linear; */
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--lightgreySP);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: var(--digitalBlau);
}

input:checked+.colorGrey {
  background-color: var(--digitalGrau);
  cursor: not-allowed;
}



input:focus+.slider {
  box-shadow: 0 0 1px var(--digitalBlau);
}

input:checked+.slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Slider blau */
.blue {
  background-color: var(--digitalBlau);
}

input:checked+.blue {
  background-color: var(--digitalBlau);
}

input:focus+.blue {
  box-shadow: 0 0 1px var(--digitalBlau);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

#slidercontainer {
  align-items: center;
  gap: 10px
}