.sliderContainerPagesController
{
}

.imagesGalleryBigImagesWindow
{
    height: 300px;
    margin-bottom: 1em;
	overflow: hidden;
}

.imagesGalleryBigImagesWindow .imagesGalleryBigImage div,
.imagesGalleryBigImagesWindow .imagesGalleryBigImage video
{
	width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
	cursor: zoom-in;
	object-fit: cover;
}

.imagesGalleryBigImagesSlider
{
	width: 100%;
	white-space: nowrap;
	font-size: 0em;
	
	position: relative;
}

.imagesGalleryBigImagesWindow .imagesGalleryBigImagesSlider .imagesGalleryBigImage
{
	display: inline-block;
	width: 100%;
}

.imagesGalleryThumbnailsWindow
{
	position: relative;
	/*width: 100% !important;*/
	margin: auto;
	min-height: 48px;
	overflow: hidden;
}

.imagesGalleryThumbnailsWindow .imagesGalleryThumbnailsSlider
{
	display: flex;
	column-gap: 1em;
	
	width: fit-content;
	margin: 0em;
    padding: 0em 0em 1em;
}

.imagesGalleryThumbnailsWindow .imagesGalleryThumbnail
{
	display: block;
    height: 3em;
    width: 3em;
	border-radius: 3px;
    background-size: cover;
    background-position: center;
	
    transition: all, ease, .2s;
	cursor: pointer;
	opacity: 1;
}

.imagesGalleryThumbnailsWindow .imagesGalleryThumbnail:hover
{
	opacity: 0.5;
}

@media (max-width: 500px)
{
	.imagesGalleryBigImagesWindow
	{
		height: 35vh;
	}
}

@media (max-width: 400px)
{
	.imagesGalleryBigImagesWindow .imagesGalleryBigImage img
	{
		width: auto;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%);
	}
}