.ProductDetail {
  padding-top: 0;
  padding-bottom: 0;
}

.ProductDetail-content {
  display: flex;
  justify-content: space-between;
}

.ProductDetail-leftPanel {
  width: 60%;
  padding-top: var(--spaceXl);
}

@media (max-width: 62rem) {
  .ProductDetail-leftPanel {
    width: 100%;
  }
}

.ProductDetail-rightPanel {
  width: 30%;
}

@media (max-width: 87.5rem) {
  .ProductDetail-rightPanel {
    width: 35%;
  }
}

@media (max-width: 62rem) {
  .ProductDetail-rightPanel {
    width: 0;
  }
}

.ProductDetail-gallery {
  margin-top: var(--spaceLg);
}

.ProductDetail-gallery .ImageGallery:last-child {
  margin-bottom: var(--spaceLg);
}

.ProductDetailHeader {
  position: relative;
}

.ProductDetailHeader:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 91%, black 100%);
}

.ProductDetailHeader .Breadcrumbs {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: transparent;
}

.ProductDetailHeader .Breadcrumbs-item:not(:first-child):before {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 1L10 3.5L7.5 6' stroke='white'/%3E%3Cpath d='M10 3.5L0 3.5' stroke='white'/%3E%3C/svg%3E%0A");
}

.ProductDetailHeader .Breadcrumbs-item a {
  color: #fff;
}

.ProductDetailDesc {
  margin-bottom: var(--spaceLg);
}

.ProductDetailDesc a {
  font-weight: bold;
  text-decoration: underline;
}

.ProductDetailDesc a:hover, .ProductDetailDesc a:active, .ProductDetailDesc a:focus {
  text-decoration: none;
}

.ProductDetailPrednosti {
  background-color: rgba(238, 242, 244, 0.6);
  margin-top: var(--spaceLg);
  padding: var(--spaceLg);
}

@media (max-width: 48rem) {
  .ProductDetailPrednosti {
    padding: var(--spaceLg) var(--spaceMd);
  }
}

.ProductDetailPrednosti ul + h2,
.ProductDetailPrednosti ol + h2 {
  border-top: 1px solid #D8E2E8;
  padding-top: var(--spaceMd);
  margin-top: var(--spaceMd);
}

.ProductDetailPrednosti ul li, .ProductDetailPrednosti ol li {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: var(--spaceMd);
  padding-left: 40px;
  position: relative;
  list-style-type: none;
}

.ProductDetailPrednosti ul li::before {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/frontend/images/icons/prednost-before.svg");
  left: 0;
  top: 4%;
}

.ProductDetailPrednosti ol {
  counter-reset: number;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1rem;
}

@media (max-width: 48rem) {
  .ProductDetailPrednosti ol {
    grid-template-columns: 1fr;
  }
}

.ProductDetailPrednosti ol li {
  position: relative;
  counter-increment: number;
}

.ProductDetailPrednosti ol li::before {
  content: counter(number);
  position: absolute;
  left: 0;
  color: #3874B0;
  border: 2px solid #3874B0;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.ProductDetailRealizovane {
  padding: var(--spaceLg) 0;
}

@media (max-width: 62rem) {
  .ProductDetailRealizovane {
    margin-right: calc(-1 * var(--sizeContentOffset));
  }
}

.ProductDetailRealizovane img {
  transition: all .3s;
}

.ProductDetailRealizovane-imgWrap:hover img {
  transform: scale(1.1);
}

.ProductDetailRealizovane-img {
  transition: transform .3s;
}

.ProductDetailRealizovane-title {
  margin-bottom: 0;
}

.ProductDetailRealizovane-content {
  display: flex;
  align-items: center;
  margin-bottom: var(--spaceRg);
}

@media (max-width: 768px) {
  .ProductDetailRealizovane-dots {
    display: none;
  }
}

.CategoryColors {
  padding: var(--spaceLg) 0;
  position: relative;
  margin-top: var(--spaceLg);
}

.CategoryColors::before {
  content: '';
  background-color: rgba(238, 242, 244, 0.6);
  position: absolute;
  z-index: -1;
  height: 100%;
  top: 0;
  left: calc(-1 * ((100vw - var(--sizeContentWidthLarge))/2));
  width: 100vw;
}

@media (max-width: 87.5rem) {
  .CategoryColors::before {
    left: calc(-1 * var(--sizeContentOffset));
  }
}

.CategoryColors-title {
  font-size: var(--textLg);
  margin-bottom: var(--spaceRg);
}

.CategoryColors-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}

@media (max-width: 62rem) {
  .CategoryColors-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 30rem) {
  .CategoryColors-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.CategoryColors-wrap {
  transition: all .3s;
}

.CategoryColors-item {
  background: #fff;
  font-size: 1rem;
}

@media (max-width: 48rem) {
  .CategoryColors-item {
    font-size: .875rem;
  }
}

.CategoryColors-item picture {
  display: block;
  overflow: hidden;
}

.CategoryColors-item picture img {
  transition: .25s;
  width: 100%;
}

.CategoryColors-item:hover img {
  transform: scale(1.3);
}

.CategoryColors-container:not(:last-of-type) {
  margin-bottom: var(--spaceXl);
}

.CategoryColors-info {
  text-align: center;
  padding: var(--spaceXs) var(--spaceXxs);
}

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