﻿/* ========================> RTART.ORG CSS <======================== */
/*  LIGHTBOX WITH MODAL IMAGE GALLERY CAROUSEL  */
/*  Sourece: https://www.w3schools.com/howto/howto_js_lightbox.asp  */
/* ================================================================ */
/* The Modal (background) */
.modal{
	display:none;
	position:fixed;
	z-index:11;
	padding-top:56px;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	overflow:auto;
	background-color:rgba(51,51,51,0.95);
}
/* Modal Content */
.modal-content{
	position:relative;
	background-color:#fefefe;
	margin:auto;
	padding:0px;
	width:95%;
	max-width:1200px;
	height:auto;
}
/* The Close Button */
.close{
	color:white;
	position:absolute;
	top:4px;
	right:50px;
	font-size:1.2em;
	font-weight:bold;
}
.closex{font-size:1.6em;}
.close:hover, .close:focus{
	color:#999;
	text-decoration:none;
	cursor:pointer;
}
/* Default for slides = Hidden */
.slide{
	display:none;
	background-color:black;
}
.cursor{cursor:pointer;}
/* Next & Previous buttons */
.prev, .next{
	cursor:pointer;
	position:absolute;
	top:50%;
	width:auto;
	padding:16px;
	margin-top:-50px;
	background-color:rgba(51, 51, 51, 0.5);
	color:white;
	font-weight:bold;
	font-size:2em;
	transition:0.6s ease;
	border-radius:0px 3px 3px 0px;
	user-select:none;
	-webkit-user-select:none;
}
/* Position Next button to the right */
.next{
	right:0px;
	border-radius:3px 0px 0px 3px;
}
/* On hover add black background with a bit of transparency */
.prev:hover, .next:hover{background-color:rgba(0, 0, 0, 0.8);}
/* Number text (1/3 etc) */
.numbertext{
	color:white;
	background-color:rgba(51, 51, 51, 0.5);
	font-size:12px;
	padding:8px 12px;
	position:absolute;
	top:0px;
}
/* Caption text */
.caption-container{
	text-align:center;
	background-color:black;
	padding:2px 16px;
	color:white;
}
img.carousel{
	margin-bottom:-4px;
	width:100%;
	height:auto;
	max-height:720px!important;
	object-fit:contain!important;
}
.hover-shadow{transition:0.3s;}
.hover-shadow:hover{box-shadow:0px 4px 4px 0px rgba(0,0,0,0.50);}