.page .product-new-detail .product-images {
  position: relative;
}
.page .product-new-detail .product-images .product-photo-link {
  display: block;
}
.page .product-new-detail .product-images img {
  max-width: 100%;
}
.page .product-new-detail .product-images .main-image.with-stamp::after {
  position: absolute;
  left: -12px;
  top: -8px;
  width: 65px;
  height: 65px;
  background: url(../img/dotovany-produkt.png) no-repeat center;
  background-size: 100% 100%;
  content: "";
}
@media (max-width: 991px) {
  .page .product-new-detail .product-images .main-image img {
    max-height: 400px;
    max-width: unset;
    width: 100%;
    object-fit: cover;
  }
}
.page .product-new-detail .product-photos {
  display: flex;
  list-style: none;
  flex-flow: wrap row;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.page .product-new-detail .product-photos .product-photo {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  max-width: 25%;
}
.page .product-new-detail .product-title {
  font-size: 2.25em;
}
.page .product-new-detail .goto-description {
  color: #69be47;
  font-weight: 500;
}
.page .product-new-detail iframe {
  max-width: 100%;
}
.page .product-new-detail .product-form .action-button {
  border-radius: 4px;
  display: flex;
  width: 100%;
  max-width: 220px;
  text-align: center;
  justify-content: center;
  position: relative;
  margin-inline: auto;
}
.page .product-new-detail .product-form .action-button i.fa {
  margin: 0;
  margin-right: 0.5rem;
}
.page .product-new-detail .product-variant-select-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.page .product-new-detail .variant-original-price {
  text-decoration: line-through rgba(102, 102, 102, 0.5);
  font-weight: normal;
  font-size: 85%;
  color: #666;
}
.page .product-new-detail .variant-price-novat {
  display: block;
  font-weight: normal;
  font-size: 85%;
  color: #666;
  margin-bottom: 4px;
}
.page .product-new-detail .product-variants {
  margin-bottom: 2rem;
}
.page .product-new-detail .product-variants .product-variant-wrapper {
  position: relative;
}
.page .product-new-detail .product-variants .variant-checkbox {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
.page .product-new-detail .product-variants input {
  margin: 0;
}
.page .product-new-detail .product-variants .product-variant {
  display: grid;
  grid-template-columns: 48px auto 180px;
  grid-template-areas: "input title price";
  align-items: center;
  background: #f3f3f3;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
}
.page .product-new-detail .product-variants .product-variant.disabled {
  cursor: not-allowed;
}
.page .product-new-detail .product-variants.blink-color .product-variant {
  animation: blink-color ease-in-out 500ms alternate forwards infinite;
}
@keyframes blink-color {
  50% {
    background: rgba(105, 190, 71, 0.5);
  }
  0%, 100% {
    background: #f3f3f3;
  }
}
.page .product-new-detail .product-variants .variant-checkbox:checked + .product-variant {
  background: #69BE47;
  color: #fff;
}
.page .product-new-detail .product-variants .variant-checkbox:checked + .product-variant .variant-original-price {
  color: #eee;
  text-decoration: line-through #eee;
}
.page .product-new-detail .product-variants .variant-input {
  grid-area: input;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.12);
}
.page .product-new-detail .product-variants .variant-title {
  grid-area: title;
  padding: 0;
  padding-left: 16px;
}
@media (max-width: 860px) {
  .page .product-new-detail .product-variants .variant-title {
    font-size: 14px;
    font-weight: normal;
  }
}
.page .product-new-detail .product-variants .variant-price {
  grid-area: price;
  text-align: right;
  padding: 0 16px;
  display: flex;
  flex-flow: wrap column;
  justify-content: center;
  align-items: flex-end;
}
.page .product-new-detail .product-variants .variant-select {
  margin-top: 1.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.page .product-new-detail .product-variants .variant-select:last-child {
  margin-bottom: 2rem;
}
.page .product-new-detail .product-variants .variant-select .variant-select-title {
  flex: 100%;
  font-weight: bold;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
  display: block;
}
.page .product-new-detail .product-variants .variant-select .variant-select-option-wrapper {
  position: relative;
  display: inline-flex;
  padding: 0 0.5rem;
}
.page .product-new-detail .product-variants .variant-select input[type=checkbox],
.page .product-new-detail .product-variants .variant-select input[type=radio] {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
}
.page .product-new-detail .product-variants .variant-select .variant-select-option {
  cursor: pointer;
  border-radius: 4px;
  padding: 4px;
  opacity: 0.8;
}
.page .product-new-detail .product-variants .variant-select input:checked + .variant-select-option {
  opacity: 1;
  background: #69BE47;
}
.page .product-new-detail .product-variants .variant-select input:checked + .variant-select-option .wood-title {
  color: #fff;
}
.page .product-new-detail .product-variants .variant-colors img,
.page .product-new-detail .product-variants .variant-intranet-logos img {
  width: 90px;
  display: block;
}
.page .product-new-detail .product-variants .variant-length label {
  cursor: pointer;
}
.page .product-new-detail .product-variants .variant-length .variant-select-length-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.page .product-new-detail .product-variants .variant-length .variant-length-group {
  width: 160px;
}
.page .product-new-detail .product-variants .variant-length .variant-length-input {
  text-align: right;
}
.page .product-new-detail .product-variants .variant-length .variant-length-limits {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
}
.page .product-new-detail .product-variants .variant-select {
  display: none;
}
.page .product-new-detail .product-variants .wood-title {
  font-size: 11px;
  margin-bottom: 3px;
  display: block;
}
.page .product-new-detail .product-variants .wood-color {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 4px;
}
.page .product-new-detail .product-variants .wood-color-1 {
  background: #8d542f;
}
.page .product-new-detail .product-variants .wood-color-2 {
  background: #d0621b;
}
.page .product-new-detail .product-variants .wood-color-3 {
  background: #b58531;
}
.page .product-new-detail .product-ask {
  background: #f3f3f3;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 2rem;
  text-align: center;
}
.page .product-new-detail .product-ask .btn {
  text-decoration: none;
}
.page .product-new-detail #description {
  margin-top: 2rem;
  text-align: left;
  padding-bottom: 0.5rem;
  font-size: 22px;
  position: relative;
}
.page .product-new-detail #description::before {
  content: "#";
  display: inline-block;
  color: #ddd;
  position: absolute;
  left: -1.5rem;
}
.page .product-new-detail #description::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgb(105, 190, 71) 0%, rgb(105, 190, 71) 35%, rgb(243, 243, 243) 35%, rgb(243, 243, 243) 100%);
  margin-top: 0.5rem;
}
.page .product-new-detail .product-spacing-text > * {
  margin-bottom: 1rem;
}
.page .product-new-detail .product-description {
  position: relative;
}
.page .product-new-detail .product-description h2, .page .product-new-detail .product-description h3, .page .product-new-detail .product-description h4, .page .product-new-detail .product-description h5, .page .product-new-detail .product-description h6 {
  text-align: left;
}

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