:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

@media (min-width: 1024px) {
  .sk-wp-editor .sk-container {
    max-width: calc(1350px + var(--sk-container-padding) * 2);
  }
}
.sk-wp-editor .hero-section {
  padding-bottom: 50px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .sk-wp-editor .hero-section .sk-container {
    display: flex;
    flex-direction: row;
    gap: 60px;
    justify-content: space-between;
    align-items: center;
  }
}
.sk-wp-editor .hero-section .media-title {
  width: -moz-fit-content;
  width: fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  line-height: 1;
  padding: 10px;
  background: var(--sk-color-dark);
  color: var(--sk-color-beige-light);
  text-box: trim-both ex alphabetic;
}
@media (min-width: 1024px) {
  .sk-wp-editor .hero-section .media-title {
    margin: 0;
  }
}
.sk-wp-editor .hero-section .media-excerpt {
  width: 520px;
  max-width: 100%;
  font-size: 12px;
  line-height: 135%;
}
@media (min-width: 1024px) {
  .sk-wp-editor .hero-section .media-excerpt {
    font-size: 14px;
    margin: 0;
  }
}
.sk-wp-editor .hero-section .sk-btn {
  height: -moz-fit-content;
  height: fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 15px;
  margin: 0;
  padding: 13px 18px;
}
.sk-wp-editor .hero-section .sk-btn .download-icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
}
@media (min-width: 1024px) {
  .sk-wp-editor .hero-section {
    padding-top: 58px;
  }
}
.sk-wp-editor .gallery-section {
  margin-top: 40px;
  margin-bottom: 60px;
}
.sk-wp-editor .gallery-section .section-header {
  margin-bottom: 10px;
}
.sk-wp-editor .gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.sk-wp-editor .gallery-section .gallery-grid .icon {
  min-width: 32px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0;
  border: 1px solid var(--sk-color-primary);
  transition: all 0.3s;
}
.sk-wp-editor .gallery-section .gallery-grid .icon svg {
  min-width: 16px;
  width: 16px;
  height: 16px;
}
.sk-wp-editor .gallery-section .gallery-grid .icon:hover {
  background: var(--sk-color-yellow);
}
.sk-wp-editor .gallery-section .gallery-grid .gallery-hidden {
  display: none;
}
.sk-wp-editor .gallery-section .gallery-grid .image {
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  aspect-ratio: 32/40.9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sk-wp-editor .gallery-section .gallery-grid .image picture {
  display: contents;
}
.sk-wp-editor .gallery-section .gallery-grid .image picture img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sk-wp-editor .gallery-section .gallery-grid .product-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  min-width: 0;
}
.sk-wp-editor .gallery-section .gallery-grid .product-gallery {
  background: var(--sk-color-primary);
  transition: all 0.6s;
}
.sk-wp-editor .gallery-section .gallery-grid .product-gallery .image {
  padding: 10px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .sk-wp-editor .gallery-section .gallery-grid .product-gallery .image {
    padding: 24px;
  }
}
.sk-wp-editor .gallery-section .gallery-grid .product-gallery rect {
  fill: var(--sk-color-primary);
}
.sk-wp-editor .gallery-section .gallery-grid .product-gallery:hover {
  background: var(--sk-color-white);
}
.sk-wp-editor .gallery-section .gallery-grid .product-gallery:hover rect {
  fill: var(--sk-color-white);
}
.sk-wp-editor .gallery-section .gallery-grid .product-download {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding: 9px 0;
}
@media (min-width: 512px) {
  .sk-wp-editor .gallery-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sk-wp-editor .gallery-section .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1280px) {
  .sk-wp-editor .gallery-section .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sk-wp-editor .gallery-section .button-more-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.sk-wp-editor .filters-wrapper {
  display: flex;
  position: relative;
  gap: 15px 32px;
  flex-wrap: wrap;
}
.sk-wp-editor .filters-wrapper .filter-dropdown {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
  padding: 8px !important;
  background: var(--sk-color-white);
  list-style: none;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  gap: 15px 32px;
  min-width: 100%;
}
.sk-wp-editor .filters-wrapper .filter-dropdown .option {
  border-bottom: 1px solid var(--sk-color-primary);
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  transition: 0.3s all ease-in-out;
  background: transparent;
}
.sk-wp-editor .filters-wrapper .filter-dropdown .option button {
  display: none;
  padding: 10px 8px;
  width: 100%;
  text-align: left;
}
.sk-wp-editor .filters-wrapper .filter-dropdown .option:last-child {
  border-bottom: none;
}
.sk-wp-editor .filters-wrapper .filter-dropdown .option::before {
  content: none;
}
.sk-wp-editor .filters-wrapper .filter-dropdown .option:hover {
  background: var(--sk-color-beige-light);
}
.sk-wp-editor .filters-wrapper .filter-dropdown .option.active {
  background: var(--sk-color-primary);
}
.sk-wp-editor .filters-wrapper .filter-dropdown .option.filter-current {
  background: var(--sk-color-primary);
}
.sk-wp-editor .filters-wrapper button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  width: 100%;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.sk-wp-editor .filters-wrapper .toggle-btn {
  padding: 0 12px;
  padding-right: 40px;
  position: relative;
  background: transparent;
  transition: 0.3s all ease-in-out;
}
.sk-wp-editor .filters-wrapper .toggle-btn .arrow-down-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--sk-color-dark);
}
.sk-wp-editor .filters-wrapper .toggle-btn span {
  display: block;
  text-align: left;
}
.sk-wp-editor .filters-wrapper .toggle-btn .filter-label {
  font-size: 14px;
  color: var(--sk-color-secondbeige-dark);
  opacity: 0.7;
  line-height: 135%;
  margin-bottom: 2px;
}
.sk-wp-editor .filters-wrapper .toggle-btn .filter-current {
  font-size: 16px;
  line-height: 143%;
  color: var(--sk-color-dark);
}
.sk-wp-editor .filters-wrapper .toggle-btn:hover {
  background: var(--sk-color-primary);
}
.sk-wp-editor .filters-wrapper .filter-wrapper {
  position: relative;
  min-width: 160px;
}
.sk-wp-editor .filters-wrapper .filter-wrapper.active .filter-dropdown {
  opacity: 1;
  pointer-events: auto;
}
.sk-wp-editor .filters-wrapper .filter-wrapper.active .filter-dropdown .option button {
  display: block;
  color: var(--sk-color-dark);
}
.sk-wp-editor .section-title {
  margin: 0;
}
.sk-wp-editor .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 20px;
}
@media (min-width: 1024px) {
  .sk-wp-editor .section-header {
    margin-bottom: 24px;
  }
}
.sk-wp-editor .swiper-buttons {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 24px;
}
.sk-wp-editor .swiper-buttons .swiper-button {
  margin-top: 0 !important;
}
.sk-wp-editor .swiper-buttons:has(.swiper-button-lock) {
  display: none;
}
.sk-wp-editor .media-section .swiper-wrapper {
  height: -moz-fit-content;
  height: fit-content;
}
.sk-wp-editor .downloads-section {
  margin: 40px 0;
  position: relative;
  z-index: 1;
}
.sk-wp-editor .downloads-section .swiper-wrapper {
  height: -moz-fit-content;
  height: fit-content;
}
.sk-wp-editor .slide-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.sk-wp-editor .slide-grid .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 21px 20px;
  border-radius: 2px;
  border: 1px solid var(--sk-color-primary);
  min-width: 0;
  cursor: pointer;
  margin: 0;
  transition: all 0.3s;
  max-width: 100%;
}
.sk-wp-editor .slide-grid .item svg {
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.sk-wp-editor .slide-grid .item .download-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sk-wp-editor .slide-grid .item .download-icon {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.3s;
}
.sk-wp-editor .slide-grid .item:hover {
  border-color: var(--sk-color-dark);
  text-decoration: none;
}
.sk-wp-editor .slide-grid .item:hover .download-icon {
  opacity: 1;
}
@media (min-width: 512px) {
  .sk-wp-editor .slide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sk-wp-editor .slide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .sk-wp-editor .slide-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

html {
  margin-top: 0 !important;
}
