:root {
  --lsm-control-height: 60px;
}

.adresse.layer {
  z-index: 199;
}

.adresse.layer #Bauwerk {
  display: block !important;
}

.adresse.layer.lsm--active {
  position: sticky !important;
}

.abdunkler {
  z-index: 198;
}

.abdunkler.lsm--active {
  max-width: 1200px;
  position: absolute;
}

#lbOverlay {
  width: 100%;
  z-index: 666;
}

#lbCenter,
#lbBottomContainer {
  z-index: 667;
}

.lsm__page {
  position: relative;
  background-color: white;
  max-width: 1200px;
  width: 100%;
  min-height: 100%;
  margin: auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 20px;
  padding-top: 100px;
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.lsm__page h1,
.lsm__page h2,
.lsm__page h3,
.lsm__page h4,
.lsm__page h5,
.lsm__page h6 {
  overflow: initial;
}

.lsm__page .breadcrumb {
  color: black;
}

.lsm__page.inverted img {
  filter: invert(1);
}

.lsm__page.link-highlighted *[href] {
  border: 2px solid red;
  display: block;
}

.lsm__container {
  background-color: black;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  overflow-y: scroll;
}

.lsm__controls__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background-color: #5a5a5a;
  z-index: 200;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  margin-right: 18px;
}

.lsm__controls__wrapper::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 20px;
  height: var(--lsm-control-height);
  z-index: 3;
  background-color: #5a5a5a;
}

.lsm__controls {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  height: var(--lsm-control-height);
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 15px;
}

.lsm__controls > a {
  color: white !important;
}

.lsm__controls .readMenu.invisible {
  display: none;
}

.lsm__controls .lsm__close {
  width: 45px;
  height: 45px;
}

.lsm__controls .lsm__close:hover {
  background-color: red;
}

.lsm__controls .lsm__close:disabled {
  opacity: 0.5;
}

.lsm__controls .lsm__close:disabled:hover {
  background-color: #000;
}

.lsm__controls .lsm__close:disabled:hover img {
  background-color: #000;
}

.lsm__spacer {
  flex-grow: 1;
}

.lsm__button {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.lsm__control {
  color: white;
}

.lsm__control a {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}

.lsm__control.lsm__invisible {
  display: none;
}

.lsm__control > .lsm__button img {
  height: 30px;
  width: 30px;
}

.lsm__control > .lsm__button img[title], .lsm__control > .lsm__button img[alt] {
  color: white;
  text-overflow: ellipsis;
}

.lsm__control > .lsm__button:hover img,
.lsm__control > .lsm__button:hover span {
  transition: opacity 0.1s;
  opacity: 0.75;
}

.lsm__dropDownMenu_appearance, .lsm__dropDownMenu_fonts, .lsm__dropDownMenu_voice, .lsm__dropDownMenu_error {
  hyphens: none;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  background-color: #717171;
  margin-top: 15px;
  margin-left: -40px;
  filter: drop-shadow(0 0 5px black);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.lsm__dropDownMenu_appearance::after, .lsm__dropDownMenu_fonts::after, .lsm__dropDownMenu_voice::after, .lsm__dropDownMenu_error::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 15px 30px;
  border-color: transparent transparent #717171 transparent;
}

.lsm__dropDownMenu_appearance.visible, .lsm__dropDownMenu_fonts.visible, .lsm__dropDownMenu_voice.visible, .lsm__dropDownMenu_error.visible {
  visibility: visible;
  opacity: 1;
  transition: none;
}

.lsm__dropDownMenu_appearance ul, .lsm__dropDownMenu_fonts ul, .lsm__dropDownMenu_voice ul, .lsm__dropDownMenu_error ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style-type: none;
  min-width: 500px;
  margin: 0;
  padding: 0;
}

.lsm__dropDownMenu_appearance ul li:nth-child(1), .lsm__dropDownMenu_fonts ul li:nth-child(1), .lsm__dropDownMenu_voice ul li:nth-child(1), .lsm__dropDownMenu_error ul li:nth-child(1) {
  padding: 10px 5px 5px 10px;
}

.lsm__dropDownMenu_appearance ul li:nth-child(3), .lsm__dropDownMenu_fonts ul li:nth-child(3), .lsm__dropDownMenu_voice ul li:nth-child(3), .lsm__dropDownMenu_error ul li:nth-child(3) {
  padding: 5px 5px 5px 10px;
}

.lsm__dropDownMenu_appearance ul li:nth-child(5), .lsm__dropDownMenu_fonts ul li:nth-child(5), .lsm__dropDownMenu_voice ul li:nth-child(5), .lsm__dropDownMenu_error ul li:nth-child(5) {
  padding: 5px 5px 10px 10px;
}

.lsm__dropDownMenu_appearance ul li:nth-child(2), .lsm__dropDownMenu_fonts ul li:nth-child(2), .lsm__dropDownMenu_voice ul li:nth-child(2), .lsm__dropDownMenu_error ul li:nth-child(2) {
  padding: 10px 10px 5px 5px;
}

.lsm__dropDownMenu_appearance ul li:nth-child(4), .lsm__dropDownMenu_fonts ul li:nth-child(4), .lsm__dropDownMenu_voice ul li:nth-child(4), .lsm__dropDownMenu_error ul li:nth-child(4) {
  padding: 5px 10px 5px 5px;
}

.lsm__dropDownMenu_appearance ul li:nth-child(6), .lsm__dropDownMenu_fonts ul li:nth-child(6), .lsm__dropDownMenu_voice ul li:nth-child(6), .lsm__dropDownMenu_error ul li:nth-child(6) {
  padding: 5px 10px 10px 5px;
}

.lsm__dropDownMenu_appearance ul .changePitch,
.lsm__dropDownMenu_appearance ul .spacingWords,
.lsm__dropDownMenu_appearance ul .spacingLetters, .lsm__dropDownMenu_fonts ul .changePitch,
.lsm__dropDownMenu_fonts ul .spacingWords,
.lsm__dropDownMenu_fonts ul .spacingLetters, .lsm__dropDownMenu_voice ul .changePitch,
.lsm__dropDownMenu_voice ul .spacingWords,
.lsm__dropDownMenu_voice ul .spacingLetters, .lsm__dropDownMenu_error ul .changePitch,
.lsm__dropDownMenu_error ul .spacingWords,
.lsm__dropDownMenu_error ul .spacingLetters {
  padding-bottom: 10px !important;
}

.lsm__dropDownMenu_appearance .lsm__menupoint, .lsm__dropDownMenu_fonts .lsm__menupoint, .lsm__dropDownMenu_voice .lsm__menupoint, .lsm__dropDownMenu_error .lsm__menupoint {
  font-size: 18px;
  text-align: center;
  flex-basis: 33.33%;
}

.lsm__dropDownMenu_appearance .lsm__menupoint.upperImg, .lsm__dropDownMenu_fonts .lsm__menupoint.upperImg, .lsm__dropDownMenu_voice .lsm__menupoint.upperImg, .lsm__dropDownMenu_error .lsm__menupoint.upperImg {
  margin-bottom: 10px;
}

.lsm__dropDownMenu_appearance .lsm__menuReset button, .lsm__dropDownMenu_fonts .lsm__menuReset button, .lsm__dropDownMenu_voice .lsm__menuReset button, .lsm__dropDownMenu_error .lsm__menuReset button {
  border: none;
  background-color: transparent;
  color: white;
  font-size: small;
}

.lsm__dropDownMenu_appearance .lsm__menuReset button:disabled:hover, .lsm__dropDownMenu_fonts .lsm__menuReset button:disabled:hover, .lsm__dropDownMenu_voice .lsm__menuReset button:disabled:hover, .lsm__dropDownMenu_error .lsm__menuReset button:disabled:hover {
  cursor: auto;
  text-decoration: none;
}

.lsm__dropDownMenu_appearance .lsm__menuReset button:hover, .lsm__dropDownMenu_fonts .lsm__menuReset button:hover, .lsm__dropDownMenu_voice .lsm__menuReset button:hover, .lsm__dropDownMenu_error .lsm__menuReset button:hover {
  cursor: pointer;
  text-decoration: underline;
}

.lsm__dropDownMenu_appearance .resetBtn, .lsm__dropDownMenu_fonts .resetBtn, .lsm__dropDownMenu_voice .resetBtn, .lsm__dropDownMenu_error .resetBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.lsm__dropDownMenu_appearance .resetBtn:hover, .lsm__dropDownMenu_fonts .resetBtn:hover, .lsm__dropDownMenu_voice .resetBtn:hover, .lsm__dropDownMenu_error .resetBtn:hover {
  opacity: 0.7;
}

.lsm__dropDownMenu_appearance .resetBtn:disabled, .lsm__dropDownMenu_fonts .resetBtn:disabled, .lsm__dropDownMenu_voice .resetBtn:disabled, .lsm__dropDownMenu_error .resetBtn:disabled {
  opacity: 0.7;
}

.lsm__dropDownMenu_appearance .lsm__description, .lsm__dropDownMenu_fonts .lsm__description, .lsm__dropDownMenu_voice .lsm__description, .lsm__dropDownMenu_error .lsm__description {
  color: white;
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.lsm__dropDownMenu_appearance .lsm__menuControlDiv, .lsm__dropDownMenu_fonts .lsm__menuControlDiv, .lsm__dropDownMenu_voice .lsm__menuControlDiv, .lsm__dropDownMenu_error .lsm__menuControlDiv {
  text-align: center;
  width: 100%;
  height: 100%;
}

.lsm__dropDownMenu_appearance .lsm__menuControlDiv.menuPadding, .lsm__dropDownMenu_fonts .lsm__menuControlDiv.menuPadding, .lsm__dropDownMenu_voice .lsm__menuControlDiv.menuPadding, .lsm__dropDownMenu_error .lsm__menuControlDiv.menuPadding {
  padding: 15px;
}

.lsm__dropDownMenu_appearance .lsm__menuControlDiv.menuPadding:hover, .lsm__dropDownMenu_fonts .lsm__menuControlDiv.menuPadding:hover, .lsm__dropDownMenu_voice .lsm__menuControlDiv.menuPadding:hover, .lsm__dropDownMenu_error .lsm__menuControlDiv.menuPadding:hover {
  background-color: #595959;
  border-radius: 5px;
}

.lsm__dropDownMenu_appearance .lsm__button, .lsm__dropDownMenu_fonts .lsm__button, .lsm__dropDownMenu_voice .lsm__button, .lsm__dropDownMenu_error .lsm__button {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 10px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  color: white;
}

.lsm__dropDownMenu_appearance .lsm__button:hover, .lsm__dropDownMenu_fonts .lsm__button:hover, .lsm__dropDownMenu_voice .lsm__button:hover, .lsm__dropDownMenu_error .lsm__button:hover {
  background-color: #595959;
}

.lsm__dropDownMenu_appearance .lsm__button.btn--active, .lsm__dropDownMenu_fonts .lsm__button.btn--active, .lsm__dropDownMenu_voice .lsm__button.btn--active, .lsm__dropDownMenu_error .lsm__button.btn--active {
  background-color: #4b4949;
}

.lsm__dropDownMenu_appearance .resetAll, .lsm__dropDownMenu_fonts .resetAll, .lsm__dropDownMenu_voice .resetAll, .lsm__dropDownMenu_error .resetAll {
  display: flex;
  justify-content: center;
  width: calc(100% - 50px);
  margin: auto;
  margin-top: 10px;
  border-top: 1px solid #888;
}

.lsm__dropDownMenu_appearance .resetAll .resetAllBtn, .lsm__dropDownMenu_fonts .resetAll .resetAllBtn, .lsm__dropDownMenu_voice .resetAll .resetAllBtn, .lsm__dropDownMenu_error .resetAll .resetAllBtn {
  display: flex;
  align-items: center;
  padding: 10px;
  border: transparent;
  background-color: transparent;
  justify-content: center;
  font-size: small;
  width: 100%;
  color: white;
}

.lsm__dropDownMenu_appearance .resetAll .resetAllBtn:hover, .lsm__dropDownMenu_fonts .resetAll .resetAllBtn:hover, .lsm__dropDownMenu_voice .resetAll .resetAllBtn:hover, .lsm__dropDownMenu_error .resetAll .resetAllBtn:hover {
  opacity: 0.7;
  cursor: pointer;
  text-decoration: underline;
}

.lsm__dropDownMenu_appearance .resetAll .resetAllBtn:disabled, .lsm__dropDownMenu_fonts .resetAll .resetAllBtn:disabled, .lsm__dropDownMenu_voice .resetAll .resetAllBtn:disabled, .lsm__dropDownMenu_error .resetAll .resetAllBtn:disabled {
  text-decoration: none;
  cursor: auto;
  opacity: 0.7;
}

.lsm__dropDownMenu_error {
  max-width: 750px;
  padding: 10px;
}

.lsm__menuUpper {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  padding-bottom: 10px;
}

.lsm__menuUpper .menuUpper-img {
  padding-right: 5px;
}

.lsm__menuDowner {
  display: flex;
  background-color: #888;
  width: 100%;
  align-items: center;
  justify-items: center;
  font-size: 18px;
  margin-bottom: 5px;
}

.lsm__menuDowner button.lsm__menupoint {
  height: 24px;
  width: 24px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position-x: center;
  border: none;
}

.lsm__menuDowner button.lsm__menupoint:disabled {
  opacity: 0.4;
}

.lsm__menuDowner button.lsm__menupoint:disabled:hover {
  cursor: auto;
  background-color: #9c9c9c;
}

.lsm__menuDowner button.lsm__menupoint:hover {
  background-color: #9c9c9c;
  cursor: pointer;
}

.lsm__menuDowner .lower {
  background-image: url(../images/remove_white.svg);
  width: 72px !important;
}

.lsm__menuDowner .higher {
  background-image: url(../images/add_white.svg);
  width: 72px !important;
}

.lsm__menuDowner .lsm__val {
  width: 72px !important;
}

.linkBarrierefrei {
  text-decoration: none;
}

.linkBarrierefrei:hover {
  transition: opacity 0.1s;
  opacity: 0.75;
  text-decoration: underline;
}

.linkHotkeys:hover {
  transition: opacity 0.1s !important;
  opacity: 0.75 !important;
}

.smallerImg {
  width: 24px;
}

#hidden {
  display: none;
}

#fadeTop {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  border-bottom: 0.5px solid #000;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  margin: auto;
}

#fadeTop.inverted {
  border-bottom: 1px white solid;
}

#fadeBottom {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  border-top: 0.5px solid black;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 0;
  margin: auto;
}

#fadeBottom.inverted {
  border-top: 1px white solid;
}

#closeFocus {
  display: flex;
  background-color: rgba(66, 66, 66, 0.6);
  height: 35px;
  width: 35px !important;
  position: fixed !important;
  top: 0;
  border-right: 1px solid black;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
}

#closeFocus:hover {
  background-color: red;
  cursor: pointer;
}

#closeFocus {
  right: calc((100% - 1186px) / 2);
}

#lesemodusButton {
  display: flex;
  justify-content: flex-end;
  grid-area: btn;
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  #lesemodusButton {
    display: none !important;
  }
}

#lesemodusButton.lesemodusButton--disabled {
  visibility: hidden;
  opacity: 0;
}

#lesemodusButton button {
  display: flex;
  justify-content: flex-end;
  background-color: transparent;
  border: none;
  align-items: center;
}

#lesemodusButton button:hover {
  text-decoration: underline;
  cursor: pointer;
}

.on-off-switch {
  display: flex;
  margin-top: 10px;
}

.on-off-switch .on {
  margin-right: 5px;
}

.on-off-switch .off {
  margin-left: 5px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 20px;
}

.switchSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.switchSlider.round {
  border-radius: 20px;
}

.switchSlider.round::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 1px;
  bottom: 1px;
  background-color: #fff;
  transition: 0.4s;
  border-radius: 50%;
}

.switchSlider.btn--active.round::before {
  transform: translateX(40px);
}

#lesemodus {
  display: none;
}

body.lsm--active #lesemodus {
  display: block;
}

body.lsm--active {
  font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
}

body.lsm--active #Bauwerk {
  display: none !important;
}

body.lsm--active .adresse #Bauwerk {
  display: block !important;
}

body.lsm--active #Wohnzimmer {
  width: 100%;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

body.lsm--active .breadcrumb {
  padding: 0;
  margin: 0;
}

body.lsm--active h1 {
  line-height: 110%;
}

body.lsm--active #CalInclude {
  display: none;
}

#noSuppText a::hover {
  cursor: pointer;
  text-decoration: underline;
}

#noSuppImg img {
  width: 30px;
  height: 30px;
}

@media screen and (min-width: 0px) and (max-width: 319px) {
  .lsm__dropDownMenu_fonts::after {
    left: 0;
  }
  .lsm__dropDownMenu_appearance::after,
  .lsm__dropDownMenu_voice::after {
    left: 30px;
  }
  .lsm__dropDownMenu_error::after {
    left: 25px;
  }
}

@media screen and (min-width: 0px) and (max-width: 425px) {
  .lsm__controls {
    gap: 15px;
  }
}

@media screen and (min-width: 0px) and (max-width: 767px) {
  #noSuppText {
    display: none;
  }
  #leseModusWrapper {
    margin: auto;
  }
  .adresse.layer {
    max-height: 70vh;
    left: 0;
    right: 0;
  }
  #leseModusButton {
    display: none;
  }
}

@media screen and (min-width: 0px) and (max-width: 959px) {
  .hotkeys {
    display: none;
  }
  #areaFocusLI {
    display: none;
  }
  .lsm__dropDownMenu_fonts ul,
  .lsm__dropDownMenu_voice ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lsm__dropDownMenu_voice ul,
  .lsm__dropDownMenu_fonts ul,
  .lsm__dropDownMenu_appearance ul {
    min-width: 0 !important;
  }
  .lsm__dropDownMenu_voice:after,
  .lsm__dropDownMenu_fonts:after,
  .lsm__dropDownMenu_appearance:after {
    border-width: 0 20px 15px 20px;
  }
  .lsm__dropDownMenu_fonts {
    margin-left: -10px !important;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  .lsm__dropDownMenu_fonts::after {
    left: 5px;
  }
  .lsm__dropDownMenu_voice::after,
  .lsm__dropDownMenu_appearance::after {
    left: 35px;
  }
}

@media screen and (min-width: 426px) and (max-width: 767px) {
  .lsm__dropDownMenu_fonts ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    min-width: 0 !important;
  }
  .lsm__dropDownMenu_fonts::after {
    left: 5px;
  }
  .lsm__dropDownMenu_voice ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    min-width: 0 !important;
  }
  .lsm__dropDownMenu_voice::after {
    left: 35px;
  }
  .lsm__dropDownMenu_appearance ul {
    max-width: 370px !important;
  }
  .lsm__dropDownMenu_appearance::after {
    left: 35px;
    border-width: 0 20px 15px 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .lsm__dropDownMenu_fonts::after {
    left: 5px;
  }
  .lsm__dropDownMenu_appearance::after {
    left: 35px;
  }
  .lsm__dropDownMenu_voice::after {
    left: 35px;
  }
}

@media screen and (min-width: 768px) {
  #noSuppImg {
    display: none;
  }
  .lsm__dropDownMenu_error {
    margin-top: 20px;
  }
  .lsm__dropDownMenu_error::after {
    left: 265px;
  }
}

@media screen and (min-width: 960px) and (max-width: 1380px) {
  .lsm__dropDownMenu_fonts::after,
  .lsm__dropDownMenu_appearance::after,
  .lsm__dropDownMenu_voice::after {
    left: 25px;
  }
}
