.product-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: #1e1e1e;
  color: #cccccc;
  padding: 40px;
  max-width: calc(90vw - 80px);
  margin: auto;
  border-radius: 15px;
  margin-bottom: 30px;
}
@media (prefers-color-scheme: dark) {
  .product-wrapper {
    background-color: #cccccc;
    color: #1e1e1e;
  }
}
.product-wrapper .product-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-wrapper .product-header .product-name {
  margin-bottom: 40px;
  font-size: 2em;
}
.product-wrapper .product-header .product-main-picture {
  width: 90vw;
  height: auto;
  max-width: 300px;
}
.product-wrapper #description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-wrapper .pdf-link {
  margin: auto;
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #cccccc;
  color: #1e1e1e;
  text-decoration: none;
  border-radius: 5px;
}
@media (prefers-color-scheme: dark) {
  .product-wrapper .pdf-link {
    background-color: #1e1e1e;
    color: #cccccc;
  }
}
.product-wrapper .product-informations {
  display: grid;
  grid-template-areas: "a b" "c d";
}
@media screen and (max-width: 800px) {
  .product-wrapper .product-informations {
    grid-template-areas: "a" "b" "c" "d";
  }
}
.product-wrapper .product-informations section {
  padding: 15px;
  max-width: calc(90vw - 30px);
}
.product-wrapper .product-informations h2 {
  text-align: center;
  margin: 15px 0;
}
.product-wrapper .product-informations p, .product-wrapper .product-informations li {
  max-width: 90%;
  margin: auto;
  text-align: justify;
  font-size: 0.9em;
}
.product-wrapper .product-informations .info img {
  width: 100px;
  height: auto;
}
.product-wrapper .product-informations .options-grid {
  display: grid;
  grid-template-areas: "a b c";
  text-align: center;
}
@media screen and (max-width: 800px) {
  .product-wrapper .product-informations .options-grid {
    grid-template-areas: "a b" "c d";
  }
  .product-wrapper .product-informations .options-grid h3 {
    font-size: 1em;
  }
}
.product-wrapper .product-informations .options-grid section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 0 !important;
}/*# sourceMappingURL=product-page.css.map */