
/*********************** SCREENSHOTS ***********************/


.screenshot_container
{
	position:relative;
	margin-bottom: 20px;
	
	width: 100%;
	height: auto;

	display:flex;
	flex-direction: row;
	flex-wrap: wrap;

	justify-content: space-between;
	align-content: center;

}

.screenshot_thumbnail
{
	box-sizing: border-box;
	display: inline-block;
	
	width: 145px;
	height: 145px;
	
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 15px;
	
	cursor: pointer;
}

.screenshot_thumbnail:hover
{
	opacity: 0.7;
}


.screenshot_thumbnail_full
{
	width: 100%;
	height: 360px;
}

.screenshot_thumbnail_news
{
	width: 100%;
	height: auto;
}

.screenshot_fullscreen_container
{
	position:fixed;
	top: 0px;
	left:0px;
	width: 100%;
	height: 100%;
	
	background-color: rgba(0,0,0,0.7);
	z-index: 10;
	padding: 30px;
	padding-top: 0px;
	padding-bottom: 0px;
	
	display: flex;
  	align-items: center;
  	justify-content: center;
}

.screenshot_fullscreen
{
	width: 100%;
	max-height: 90vh;
	object-fit: contain; 
}

.screenshot_fullscreen_button
{
	width: 60px;
	height: 60px;
	margin-top: -30px;
	
	background-color: rgba(0,0,0,0.5);
	border-radius: 30px;
	
	position: fixed;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50%;
	
	cursor: pointer;
}

.screenshot_fullscreen_button:hover
{
	background-color: rgba(50,50,50,0.5);
}

.screenshot_fullscreen_button_next
{
	right: 10px;
	top: 50%;
	background-image:url('/lib/style/icons/arrow_forward_80.png');
}

.screenshot_fullscreen_button_close
{
	right: 10px;
	top: 40px;
	background-image:url('/lib/style/icons/white_x_80.png');
}

.screenshot_fullscreen_button_previous
{
	left: 10px;
	top: 50%;
	background-image:url('/lib/style/icons/arrow_back_80.png');
}

.screenshot_fullscreen_text
{
	width: 60%;
	margin-left: -30%;
	
	left: 50%;
	bottom: 2%;
	padding: 10px;
	
	background-color: rgba(0,0,0,0.5);
	
	position: fixed;

	color: white;
}

 /************************* VIDEO ************************ */
 
.video_box
{
	height: 360px; 
	width: 100%; 
}
