@media (max-width: 1024px) {
  body .scroll-control {
    display: none;
  }
  body .lejlighedstyper-middle .lejlighedstyper_plantegning {
    height: 50vh !important;
  }
  body .lejlighedstyper-container {
    gap: 45px;
    display: flex !important;
    flex-flow: column;
  }
  body .lejlighedstyper-container .switch_buttons {
    flex-flow: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    height: auto !important;
    overflow-y: auto;
    overflow-x: scroll;
    scrollbar-width: auto !important;
    width: 100vw;
    padding-right: 45px;
  }
  body .lejlighedstyper-container .switch_buttons button {
    width: auto !important;
    padding-left: 35px;
    padding-right: 35px;
  }
  body .lejlighedstyper-container .lejlighedstyperHideMobile {
    opacity: 0;
    height: 0;
  }
  body .lejlighedstyper-container .lejlighedstyperHideDesktop {
    display: flex !important;
  }
  body .lejlighedstyper-container .lejlighedstyper-middle {
    padding-left: 25px;
    padding-right: 25px;
  }
  body .lejlighedstyper-container .lejlighedstyper-middle img {
    width: 100%;
  }
}
.lejlighedstyper-container {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr;
  grid-auto-flow: row;
  gap: 100px;
  background-color: #F6F2EE;
}
.lejlighedstyper-container .lejlighedstyper-left {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.lejlighedstyper-container .lejlighedstyper-left h2 {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 400;
  padding-bottom: 15px;
}
.lejlighedstyper-container .lejlighedstyper-left .switch_buttons {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.lejlighedstyper-container .lejlighedstyper-left .switch_buttons button {
  width: 125px;
  border-radius: 100px;
  border: 1px solid !important;
  border-color: #423D39;
  background-color: #F6F2EE;
  color: #423D39;
  transition: all 0.5s ease;
  opacity: 0.75;
}
.lejlighedstyper-container .lejlighedstyper-left .switch_buttons button.active {
  background: #423D39;
  color: white;
  border: 0 !important;
  opacity: 1;
}
.lejlighedstyper-container .lejlighedstyper-left .switch_buttons button.active:hover {
  background: #423D39 !important;
  color: white !important;
  border: 0 !important;
}
.lejlighedstyper-container .lejlighedstyper-left .switch_buttons button:hover {
  background: #F6F2EE;
  color: #423D39;
  transform: translateX(6px);
}
.lejlighedstyper-container .lejlighedstyper-left .left_additional_info {
  gap: 10px;
  display: flex;
  flex-flow: column;
}
.lejlighedstyper-container .lejlighedstyper-left .left_additional_info .left_additional_info_block h3 {
  font-size: 0.85rem;
  margin-bottom: 0;
  font-weight: 400;
}
.lejlighedstyper-container .lejlighedstyper-left .left_additional_info .left_additional_info_block span {
  font-size: 2rem;
}
.lejlighedstyper-container .lejlighedstyper-middle .lejlighedstyper_plantegning {
  height: 575px;
  width: auto;
  display: flex;
  justify-content: center;
}
.lejlighedstyper-container .lejlighedstyper-middle .lejlighedstyper_plantegning img {
  height: 100%;
  width: auto;
}
.lejlighedstyper-container .lejlighedstyper-right h3 {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 400;
  padding-bottom: 15px;
}
.lejlighedstyper-container .lejlighedstyper-right p {
  font-size: 1.5rem;
}
.lejlighedstyper-container .lejlighedstyper-right a {
  background-color: #423D39;
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  width: fit-content;
  display: block;
  margin-top: 30px;
  transition: all 0.5s ease;
}
.lejlighedstyper-container .lejlighedstyper-right a:hover {
  transform: translateY(6px);
}
.lejlighedstyper-container .lejlighedstyperHideDesktop {
  display: none;
  flex-flow: column;
}
.lejlighedstyper-container .lejlighedstyperHideDesktop .left_additional_info {
  display: flex;
  flex-flow: row;
  gap: 45px;
}
.lejlighedstyper-container .lejlighedstyperHideDesktop .left_additional_info .left_additional_info_block h3 {
  font-size: 0.85rem;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 400;
}
.lejlighedstyper-container .lejlighedstyperHideDesktop .left_additional_info .left_additional_info_block span {
  font-size: 2rem;
}
.lejlighedstyper-container .lejlighedstyperHideDesktop a {
  color: #423D39;
  background: transparent;
  text-decoration: none;
  padding: 8px 20px;
  width: fit-content;
  display: block;
  margin-top: 30px;
  transition: all 0.5s ease;
  border: 1px solid #423D39;
}
.lejlighedstyper-container .lejlighedstyperHideDesktop a:hover {
  transform: translateY(6px);
}

.scroll-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content; /* adjust */
}

.switch_buttons {
  height: 200px;
  padding-right: 10px;
  padding-left: 10px;
  overflow-y: auto;
  scrollbar-width: none; /* optional to hide scrollbar in Firefox */
}

.switch_buttons::-webkit-scrollbar {
  display: none; /* optional to hide scrollbar in Chrome/WebKit */
}

.scroll-control {
  text-align: center;
  cursor: pointer;
  user-select: none;
  padding: 4px;
  font-size: 14px;
}
.scroll-control img {
  width: auto;
  height: 25px;
}

.scroll-control[show=false] {
  display: none;
}

.scroll-control[show=true] {
  display: block; /* or whatever display value you need */
}

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