@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
galerija.nexus-gallery {
    transform: translateY(-80px);
    width: 100%;
    max-width: 1250px;
    margin: 15px auto;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
}
.nexus-gallery__viewer {
    display: none;
    width: 100%;
    margin-top: 14px;
    margin-bottom: 0;
}
.nexus-gallery__viewer.is-visible {
    display: block;
    animation: galleryReveal 0.32s ease;
}
.nexus-gallery__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0b0b0b;
    overflow: hidden;
    box-shadow: 6px 12px 12px hsl(0deg 0% 0% / 0.31);
}
.nexus-gallery__stage-image, .nexus-gallery__stage-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: none;
}
.nexus-gallery__stage-image.is-visible, .nexus-gallery__stage-video.is-visible {
    display: block;
}
.nexus-gallery__stage-image {
    object-fit: cover;
}
.nexus-gallery__thumbrow {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 12px;
}
.nexus-gallery__viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}
.nexus-gallery__track {
    display: flex;
    gap: 12px;
    transition: transform 0.28s ease;
}
.nexus-gallery__item {
    position: relative;
    flex: 0 0 calc((100% - (12px * 4)) / 5);
    aspect-ratio: 16 / 9;
    padding: 0;
    background: #111;
    cursor: pointer;
    overflow: hidden;
    border: 0;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 8px;
    transition: 0.15s ease;
}
.nexus-gallery__item:hover {
    transform: scale(0.96);
    transition: 0.25s ease;
    cursor: hand;
	border: 1px solid rgba(255, 255, 255, 1);
}
.nexus-gallery__item:hover .nexus-gallery__play {
	opacity:0.0;
	transition:0.25s ease;
}
.nexus-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}
.nexus-gallery__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 34px;
    color: white;
    line-height: 1;
    pointer-events: none;
    text-shadow: 6.0px 12.0px 12.0px hsl(0deg 0% 0% / 0.31);
	transition: 0.15s ease;
}
.nexus-gallery__arrow {
    width: 64px;
    min-width: 64px;
    background: #08162b;
    color: white;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    border: 0;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 6.0px 12.0px 12.0px hsl(0deg 0% 0% / 0.31);
    transition: 0.15s ease;
	border-radius:8px;
}
.nexus-gallery__arrow:hover {
    opacity: 0.7;
    transform: scale(0.96);
    transition: 0.25s ease;
    cursor: hand;
    box-shadow: 4.9px 9.8px 9.8px hsl(0deg 0% 0% / 0.35);
}
.nexus-gallery__arrow:active {
    transform: scale(0.93);
    transition: 0.15s ease;
    cursor: default;
    box-shadow: 4.4px 8.8px 8.8px hsl(0deg 0% 0% / 0.36);
}
.nexus-gallery__arrow:disabled {
    opacity: 0.35;
    cursor: default;
    box-shadow: 2.0px 4.0px 4.0px hsl(0deg 0% 0% / 0.44);
    transform: scale(0.9);
}
.nexus-gallery__arrow:focus, .nexus-gallery__arrow:focus-visible, .nexus-gallery__item:focus, .nexus-gallery__item:focus-visible, .nexus-gallery__stage-video, .nexus-gallery__stage-video:focus, .nexus-gallery__stage-video:focus-visible {
    box-shadow: 6px 12px 12px hsl(0deg 0% 0% / 0.31);
}
@keyframes galleryReveal {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media only screen and (max-width: 900px) {
    .nexus-gallery__thumbrow {
        gap: 10px;
    }
    .nexus-gallery__track {
        gap: 10px;
    }
    .nexus-gallery__item {
        flex: 0 0 calc((100% - (10px * 2)) / 3);
    }
    .nexus-gallery__arrow {
        width: 56px;
        min-width: 56px;
        font-size: 34px;
    }
}
@media only screen and (max-width: 600px) {
    .nexus-gallery__thumbrow {
        gap: 8px;
    }
    .nexus-gallery__track {
        gap: 8px;
    }
    .nexus-gallery__item {
        flex: 0 0 calc((100% - 8px) / 2);
    }
    .nexus-gallery__arrow {
        width: 48px;
        min-width: 48px;
        font-size: 28px;
    }
}