* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,body {
	min-height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;

	font-size: 16px;
	letter-spacing: -0.02em;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}


h1 {

	font-size: 32px;
	line-height: 48px;
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.title{
	font-family: Gilroy,Arial,Verdana,sans-serif;
	font-weight: 900;
}
.coloring{
	font-family: Gilroy,Arial,Verdana,sans-serif;
	font-weight: 300;
	color: #BBB;
}

.container {
	min-height: 100vh;
    display:flex; /* 2 */
    flex-direction:column; /* 3 */
    max-width: calc(100% - 4rem);
	margin: 0 auto;
	padding: 0 2rem;
    background-color: #fff;
}

.header {
  border-bottom:  1px solid #444;
}

.footer {
	margin-top: 1rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
  border-top:  1px solid #444;
}


.content {
    flex-grow:1; /* 4 */
}
.logo{
	width: 300px;
	height: auto;
}

.parentViewer {
/*  width: 100%;
  height:  100%;
*/ 	
	display: flex;
   	justify-content: center;
   	align-items: center;
	position: sticky;
}

.viewerFrame{
/*	width: 50rem;
*/}
.viewer {

	width: 100%;
	height: 36rem;
	background: #FFF;
	box-shadow: 1px 3px 5px rgb(191, 191, 191);
	margin-bottom: 1rem;
}


.thumbnails {
	width: 100%;
	height: 166px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	column-gap: 0.5rem;
	flex-shrink: 0;
	margin-top: 2rem;

	overflow-x: auto;
	overflow-y: hidden;

}

img{
	display: block;

}

.thumbnail{
    width: 150px; /* or any custom size */
    height: 150px; 
    object-fit: contain;
    border: 1px solid #000;
    background-size: cover;
	transition: all 0.25;
	overflow: hidden; 
	flex-shrink: 0;	
	text-align: center;
  	position: relative;

}

.thumbnail__image{
    width: 150px; /* or any custom size */
    height: 150px; 	
    object-fit: contain;
    background-size: cover;
    background-position: center center;
		border: 8px solid #FFF;
		transition: all 0.25s;
}

.thumbnail__image--active {
		border: 8px solid #FF0092;

}

.thumbnail__content
{
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -100%;
  left: 0%;
  padding: 0.4rem;
  font-family: Gilroy,Arial,sans-serif;
  font-weight: normal;
  background: rgba( 255, 255, 255, 0.6 );
  border-top: 1px solid #000;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  transition: bottom 0.5s ease;
}
.thumbnail:hover .thumbnail__content
{
  bottom: -20%;
}

.thumbnail:hover{
    border: 1px solid #FF0092;
    cursor: pointer;

}

.thumbnail:hover .thumbnail__image,
.thumbnails:focus .thumbnail__image {
  transform: scale(1.2);
}



@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Black.eot');
    src: local('Gilroy Black'), local('Gilroy-Black'),
        url('../fonts/Gilroy-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Black.woff2') format('woff2'),
        url('../fonts/Gilroy-Black.woff') format('woff'),
        url('../fonts/Gilroy-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.eot');
    src: local('Gilroy Light'), local('Gilroy-Light'),
        url('../fonts/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Light.woff2') format('woff2'),
        url('../fonts/Gilroy-Light.woff') format('woff'),
        url('../fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.eot');
    src: local('Gilroy Regular'), local('Gilroy-Regular'),
        url('../fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Regular.woff2') format('woff2'),
        url('../fonts/Gilroy-Regular.woff') format('woff'),
        url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}