:root {
  --mud-palette-secondary-darken: #1c629b !important;
  --mud-palette-secondary-hover: #d0e6f8 !important;
  --mud-palette-secondary: #2d7bb9 !important;
  --mud-palette-success-darken: #5c793e !important;
  --mud-palette-success-hover: #e7efe5 !important;
  --mud-palette-success: #7a9c59 !important;
  --mud-palette-error-darken: #a33f3f !important;
  --mud-palette-error-hover: #f1d0d0 !important;
  --mud-palette-error: #d44b41 !important;
  --mud-palette-primary: black !important;
  --mud-palette-primary-hover: #d4d4d4 !important;
  --mud-palette-primary-darken: #303030 !important;
  --mud-palette-primary-text: white !important;
  --mud-palette-primary-text-hover: black !important;
  --mud-palette-tertiary: white !important;
  --mud-palette-tertiary-hover: #f4f4f4 !important;
  --mud-palette-tertiary-darken: #f0f0f0 !important;
  --mud-palette-tertiary-text: black !important;
  --mud-palette-tertiary-text-hover: black !important;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

p {
  font-size: 1rem;
}
p a {
  color: inherit;
  text-decoration: underline;
}
p a:hover {
  color: #aaa;
}

h1, h2, h3 {
  margin-bottom: 0.5em;
  word-wrap: break-word;
}

h1 {
  font-size: 4rem;
  font-weight: 200;
  font-size: clamp(2rem, 10vw, 4rem);
}

header {
  width: 100%;
  padding: 0rem 1rem;
  border-bottom: 1px solid var(--mud-palette-primary);
  margin-bottom: 4rem;
}
header img {
  width: 100%;
  max-width: 500px;
  padding: 2rem 0;
  margin: auto;
  display: block;
}
header .inner {
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  header .inner {
    flex-direction: column;
    gap: 1rem;
  }
}

a {
  color: gray;
}

footer {
  margin-top: 4rem;
  background-color: var(--mud-palette-primary);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
  justify-self: flex-end;
}
footer #version {
  position: absolute;
  bottom: 0.5em;
  text-align: center;
  width: 100%;
  left: 0;
  opacity: 0.5;
  font-size: 0.8rem;
}

#container {
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#top-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
@media (max-width: 800px) {
  #top-section {
    grid-template-columns: 1fr;
  }
}

#personal-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  #personal-data {
    grid-template-columns: 1fr;
  }
}

#gebote {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
#gebote .gebot {
  width: 100%;
  display: flex;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  border-radius: var(--mud-default-borderradius);
  padding: 1rem;
  gap: 0.5rem;
}
@media (max-width: 460px) {
  #gebote .gebot {
    flex-direction: column;
  }
  #gebote .gebot .gebot-image {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
#gebote .gebot .left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#gebote .gebot .left .gebot-image {
  width: 100%;
  padding-top: 100%;
  max-width: 170px;
  width: 170px;
  aspect-ratio: 1/1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--mud-palette-lines-inputs);
  border-radius: var(--mud-default-borderradius);
  margin-top: 3px;
  margin-bottom: 2px;
}
@media (max-width: 600px) {
  #gebote .gebot .left .gebot-image {
    max-width: 120px;
    width: 120px;
  }
}
@media (max-width: 460px) {
  #gebote .gebot .left .gebot-image {
    max-width: 100%;
    width: 100%;
  }
}
#gebote .gebot .right {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
#gebote .gebot .right > * {
  width: 100%;
  flex-grow: 0;
}
#gebote .gebot .right .gebot-inputs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
#gebote .gebot .right .gebot-inputs > *:nth-child(1) {
  min-width: 200px;
}
@media (max-width: 800px) {
  #gebote .gebot .right .gebot-inputs > *:nth-child(3) {
    width: 100%;
  }
}
@media (max-width: 600px) {
  #gebote .gebot .right .gebot-inputs {
    flex-direction: column;
    align-items: unset;
  }
}
#gebote .gebot .right .gebot-actions {
  display: flex;
  justify-content: flex-start;
  margin-bottom: auto;
}

#filters {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  padding-bottom: 3rem;
}

#objekte {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  padding-bottom: 8rem;
}
#objekte .objekt {
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  border: 1px solid lightgray;
  border-radius: 4px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#objekte .objekt > * {
  display: block;
  margin: 0;
  word-wrap: break-word;
}
#objekte .objekt img {
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
}
#objekte .objekt h2 {
  font-size: 1.7rem;
}
#objekte .objekt .bottom-row {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}
#objekte .objekt .bottom-row .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#objekte .objekt .preis {
  text-align: right;
  font-weight: 800;
  font-size: 2rem;
}

#cart-row {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: var(--mud-palette-success);
  color: white;
  border-top: 1px solid white;
  padding: 2rem 1rem;
  padding-bottom: 3rem;
  transform: translateY(100%);
  transition: 0.5s ease-in-out;
  display: flex;
  justify-content: center;
}
@media (max-width: 800px) {
  #cart-row {
    padding: 1rem;
  }
}
#cart-row.show {
  transform: translateY(0);
}
#cart-row .cart-label {
  font-weight: 300;
  text-align: center;
  margin: 0;
}
#cart-row .cart-label small {
  font-weight: 100;
}
#cart-row .inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
}
#cart-row .inner .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
#cart-row .inner .bottom-row {
  max-height: 75px;
  overflow-y: auto;
}

#contact-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: scroll;
  padding: 6rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  pointer-events: none;
  opacity: 0;
  transition: 0.5s ease-in-out;
  z-index: 100;
}
#contact-form.show {
  pointer-events: all;
  opacity: 1;
}
#contact-form .inner {
  margin: auto;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 800px;
  padding: 2rem;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#contact-form .contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 800px) {
  #contact-form .contact-info-row {
    grid-template-columns: 1fr;
  }
}
#contact-form .button-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.sent-button * {
  font-size: 1.5rem !important;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.5s;
  pointer-events: none;
  opacity: 0;
}
#loading.show {
  pointer-events: all;
  opacity: 1;
}
#loading .inner {
  margin: auto;
  padding: 2rem;
  background-color: white;
  border-radius: 0.25rem;
  border: 1px solid lightgray;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#loading .inner .spinner {
  position: relative;
}/*# sourceMappingURL=main.css.map */