/* Customize GlideJS CSS*/
.glide{
	margin: 5px 0;
}

/* Navigation */
.glide__arrows{
	position: unset;
}
.glide__arrow{
	position: absolute;
	/* top: 0; */
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 20px;
	background: #EEE;
	color: #999;
	/*background: #FFD335; */
	
	/* background: linear-gradient(to bottom, #22a7de, #2A5AA6);
	color: #FFD335; */
	
	padding-top: 12px;
	opacity: 0.7;
}
.glide__bullets{
	bottom: 15px;
}
.glide__bullet{
	background	: #CCC;
	border		: none;
	width		: 9px !important;
	height		: 9px !important;
	min-width		: unset !important;
	min-height		: unset !important;
}
.glide__bullet--active{
	background: #999;
	border: none;
}
.glide__bullet:focus {
	background: #CCC;
	outline: none;
	border: none;
}

.glide__arrow--left{
	left: 0;
}
.glide__arrow--right{
	right: 0;
}


/* Items */
.glide__track{
	background		: #FFF;
	/* background: linear-gradient(white, white) padding-box, linear-gradient(to bottom, #22a7de, #2A5AA6) border-box; */
	/* border: 1px solid transparent; */
	border: solid 1px #EEE;
}
.gallery_item_picture_container{
	position			: relative;
	/* height			: 280px; */
	background			: #FFF;
	/* border-left			: solid 1px #AAA;
	border-right		: solid 1px #AAA; */
	overflow			: hidden;
	text-align			: center;
}
.gallery_item_picture{
	max-width: 100%;
	/* height: 300px; */
	/* height: 100%; */
	object-fit: cover;
	margin: auto;
}
.gallery_item_picture_title_container{
	position			: absolute;
	bottom				: 0;
	text-align			: center;
	width				: 100%;
	color				: #111;
	font-weight			: 600;
	padding				: 30px 0;
	background-image	: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.3));
}
.gallery_item_picture_title{
	font-size			: 1.0em;
	font-weight			: bold;
	text-transform		: uppercase;
	text-shadow			: 0px 0px 2px white;
}
.gallery_item_picture_subtitle{
	margin			: 2px 0;
	font-size		: 0.85em;
	font-style		: italic;
}

/* Popup */
.popup_wrapper{
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
}
.popup_container{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #FFF;
	padding: 30px 20px;
	/* border-radius: 5px; */
	/* border: solid 3px #FFD335; */
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.popup_container .title{
	margin-top: 0;
	margin-left: 20px;
}
.popup_content{
	position: relative;
	text-align: center;
	width: 50em;
	max-width: 86vw;
	max-height: 50vh;
	padding-bottom: 30px;
}
.popup_navigation #popup_close_button{
	position		: absolute;
	top				: 20px;
	right			: 30px;
	
	width			: 40px;
	height			: 40px;
	
	border			: none;
	border-radius	: 36px;

	font-size		: 20px;
	color			: #222;
	background		: transparent;
	/* background: #FFD335; */
	/* padding: 6px 5px; */
}