.products-block .product > a,
.products .product > a {
  display: block;
  aspect-ratio: 423/318;
  overflow: hidden;
  background-color: #f5f5f5;
}

.products-block .product > a img,
.products .product > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#productsTop .product > a {
  display: block;
  aspect-ratio: 423/318;
  overflow: hidden;
  background-color: #f5f5f5;
}

#productsTop .product > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  contain: layout;
}

.flags .flag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: unset;
  letter-spacing: 0.6px;
  color: #fff;
  line-height: 1.4;
  white-space: nowrap;
  min-height: 22px;
  box-sizing: border-box;
  opacity: 0.9;
}

.flags .flag-new {
  background-color: #2196f3;
}

.flags .flag-sale {
  background-color: #e53935;
}

.flags .flag.flag-action {
  background-color: #ff7043 !important;
}

.flags .flag-top {
  background-color: #43a047;
}

.flags .flag-new:hover {
  background-color: #1976d2;
}

.flags .flag-sale:hover {
  background-color: #c62828;
}

.flags .flag-akce:hover {
  background-color: #e64a19;
}

.flags .flag-top:hover {
  background-color: #2e7d32;
}

.carousel-inner {
  min-height: unset !important;
  aspect-ratio: 16/5;
  overflow: hidden;
  background-color: #f0f0f0;
  position: relative;
}

.carousel-inner .carousel-item {
  position: absolute;
  inset: 0;
  height: 100%;
}

.carousel-inner .carousel-item img,
.carousel-inner .carousel-item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .carousel-inner {
    aspect-ratio: 4/3;
  }
}
.news-item .image,
.news-item figure {
  display: block;
  aspect-ratio: 16/7;
  overflow: hidden;
  background-color: #f0f0f0;
}
.news-item .image img,
.news-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-item-detail .image,
.news-item-detail .perex-img,
.news-item-detail figure {
  display: block;
  aspect-ratio: 16/6;
  overflow: hidden;
  background-color: #f0f0f0;
  width: 100%;
  max-height: 420px;
}
.news-item-detail .image img,
.news-item-detail .perex-img img,
.news-item-detail figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-item-detail .text img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background-color: #f0f0f0;
}

.news-item-detail > img {
  display: block;
  width: 100%;
  aspect-ratio: 16/6;
  object-fit: cover;
  max-height: 420px;
}

.articles-list .article .image,
.articles-list .article figure {
  display: block;
  aspect-ratio: 16/7;
  overflow: hidden;
  background-color: #f0f0f0;
}
.articles-list .article .image img,
.articles-list .article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-detail .image,
.article-detail .perex-img,
.article-detail figure {
  display: block;
  aspect-ratio: 16/6;
  overflow: hidden;
  background-color: #f0f0f0;
  width: 100%;
  max-height: 420px;
}
.article-detail .image img,
.article-detail .perex-img img,
.article-detail figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-detail > img,
.page-detail .perex > img {
  display: block;
  width: 100%;
  aspect-ratio: 16/6;
  object-fit: cover;
  max-height: 420px;
}

@media (max-width: 767px) {
  .news-item .image,
  .news-item figure,
  .articles-list .article .image,
  .articles-list .article figure {
    aspect-ratio: 4/3;
  }
  .news-item-detail .image,
  .news-item-detail .perex-img,
  .news-item-detail figure,
  .article-detail .image,
  .article-detail .perex-img,
  .article-detail figure {
    aspect-ratio: 16/9;
    max-height: 280px;
  }
  .news-item-detail .text img {
    max-height: 280px;
  }
}
aside.sidebar.sidebar-left {
  transition: opacity 0.3s ease-in-out;
}

.sidebar-inner {
  align-self: start;
  contain: layout;
  min-height: 5000px;
}
.sidebar-inner.height-adjusted {
  min-height: 0;
}
.sidebar-inner.is-loading {
  position: relative;
  pointer-events: none;
}
.sidebar-inner.is-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e8e8e8;
  z-index: 9999;
  animation: pulse 1.5s ease-in-out infinite;
}
.sidebar-inner.is-loaded {
  animation: fadeIn 0.4s ease-in;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.div--collapsable {
  margin-right: 40px;
  position: relative;
}

.filter-section .filter-count {
  right: -29px;
  top: 0;
}

aside #categories {
  max-height: unset;
}

@media (min-width: 768px) {
  .type-post #content-wrapper .text img {
    max-width: 100%;
    height: auto;
    aspect-ratio: attr(width)/attr(height);
  }
  .type-post #content-wrapper h1 {
    height: 100px;
  }
  .type-post #content-wrapper .post-image {
    height: 500px;
  }
}

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