@charset "UTF-8";
.sb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.sb-overlay.sb-visible {
  display: flex;
}
.sb-overlay.sb-active {
  opacity: 1;
}
.sb-overlay {
  overflow-y: auto;
}

.sb-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  max-width: 1370px;
  padding: 20px;
  min-height: 92vh;
  height: auto;
}

.sb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  overflow: hidden;
}

.sb-img {
  display: block;
  width: 100%;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: zoom-in;
  transform-origin: center center;
}

.sb-img.sb-loaded {
  opacity: 1;
}

.sb-img.sb-zoomed {
  transform: scale(1.8);
  cursor: zoom-out;
}

/* Spinner */
.sb-spinner {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sb-spin 0.7s linear infinite;
  transition: opacity 0.2s;
}

.sb-spinner.sb-hide {
  opacity: 0;
  pointer-events: none;
}

@keyframes sb-spin {
  to {
    transform: rotate(360deg);
  }
}
/* Navigációs gombok */
.sb-btn {
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  border-radius: 10%;
  width: 40px;
  height: 40px;
  font-size: 26px;
  line-height: 1;
  display: inline-block;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.sb-btn:hover {
  opacity: 0.5;
}

.sb-header {
  position: relative;
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  flex-wrap: wrap;
  /* Caption & counter */
}
.sb-header .sb-main-caption {
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 1.5em;
  line-height: 1.1;
  flex: 0 0 100%;
  padding-top: 10px;
}
.sb-header .sb-captions {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: 12px;
  width: 40%;
  text-align: left;
}
.sb-header .sb-captions .sb-sub-caption {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1em;
  text-align: center;
  line-height: 1;
}
.sb-header .sb-header-middle {
  display: flex;
  align-items: center;
  width: 20%;
  justify-content: center;
}
.sb-header .sb-header-middle .sb-counter {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 4px;
  min-width: 40px;
  text-align: center;
}
.sb-header .sb-header-middle .sb-prev, .sb-header .sb-header-middle .sb-next {
  width: 24px;
  height: 24px;
  margin: 0 12px;
}
.sb-header .sb-header-middle .sb-prev {
  background-image: url("icons/v2/arrow-left.svg");
}
.sb-header .sb-header-middle .sb-next {
  background-image: url("icons/v2/arrow-right.svg");
}
.sb-header .sb-control-icons {
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: end;
  width: 40%;
}
.sb-header .sb-control-icons .sb-close {
  background-image: url("icons/v2/close.svg");
}
.sb-header .sb-control-icons .sb-full {
  background-image: url("icons/v2/fullscreen.svg");
}
.sb-header .sb-control-icons .sb-grid {
  background-image: url("icons/v2/grid.svg");
}
.sb-header .sb-control-icons .sb-play {
  background-image: url("icons/v2/play.svg");
}
.sb-header .sb-control-icons .sb-pause {
  background-image: url("icons/v2/pause.svg");
}
.sb-header .sb-control-icons button {
  margin-left: 12px;
  width: 24px;
  height: 24px;
}

.sb-grid-col {
  width: 200px;
  max-height: 90vh;
  position: relative;
  display: none;
  padding: 2rem;
  overflow-y: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  align-content: start;
}

.sb-grid-col.visible {
  display: block;
}

.sb-grid-item {
  display: inline-block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.18s;
}

.sb-grid-item img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sb-grid-item:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.sb-grid-item--active {
  border-color: #fff;
}

@media (min-width: 992px) {
  .sb-grid-col.visible {
    margin-top: 65px;
    display: flex;
    flex-wrap: wrap;
    align-items: center !important;
  }
  .sb-grid-col {
    min-height: 100%;
  }
  .sb-grid-col .sb-grid-item {
    width: 40%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.18s;
  }
  .sb-grid-col .sb-grid-item .sb-grid-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .sb-grid-col .sb-grid-item:hover {
    border-color: rgba(255, 255, 255, 0.5);
  }
  .sb-grid-col .sb-grid-item--active {
    border-color: #fff;
  }
  .sb-prev-in-image,
  .sb-next-in-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0.8;
    width: 84px;
    height: 84px;
    padding: 0;
  }
  .sb-prev-in-image {
    left: 16px;
  }
  .sb-next-in-image {
    right: 16px;
  }
}
@media (max-width: 991px) {
  .sb-prev-in-image,
  .sb-next-in-image,
  .sb-grid-col.visible,
  .sb-grid {
    display: none;
  }
}
.sb-footer {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
  text-align: center;
  min-height: 300px;
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.sb-footer .footer-title {
  color: white;
  font-size: 1.2em;
  margin-bottom: 8px;
}
.sb-footer .cover {
  padding-top: 5px !important;
}/*# sourceMappingURL=simplebox.css.map */