/* #################### */
/* !CORE STYLING */
/* #################### */
body {
	margin: 0px;
	padding: 0px;

/* 	background: url("../Images/Backgrounds/bg_body.png") repeat-x center top; */
	background-color: white;
/*
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
 	color:#695F4C;
 */
	font-family: 'Playfair Display', serif;
}
a {
	color: var(--lavender-dark);
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: var(--lavender-light);
}
img {
	width: 100%;
	height: auto;
}
/* ---------- */
/* !PALETTE */
/* ---------- */
:root {
	/* Palette */
	--lavender-dark: #590d80;
	--lavender-light: #9d59b8;
	--lavender-med1: #8b43ba;
	--lavender-med2: #8c44a8;
	--lavender-neutral: #774152;

	/* Menus */
	--my-pill-active: #590d80;
	--my-pill-active-hover: #8b43ba;
	--my-pill-hover: #8b43ba;
	--my-pill-bg: #774152;
	--my-pill-selected-bg: #774152;
	--my-dropdown-color: white;
	--my-dropdown-hover: #9d59b8;
	--my-dropdown-bg: #590d80;

	/* Effects */
	--shadow: rgba(0, 0, 0, 0.40);
	--shadow-dark: rgba(0, 0, 0, 0.60);
}

/* ---------- */
/* !SEMANTIC STYLES */
/* ---------- */
figure {
	margin: 0px 1em 1em 0px;
	float: left;
}
figure > img {
	border: solid 1px black;
}
figcaption {
	font-family: sans-serif;
	font-size: small;
	color: grey;
}

/* ---------- */
/* !RESPONSIVE VIDEO CONTAINER (YouTube embed) */
/* ---------- */
.videoContainer {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px;
	height: 0;
	overflow: hidden;
}

.videoContainer iframe,
.videoContainer object,
.videoContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ---------- */
/* !LINK STYLING */
/* ---------- */
/*
a { color: var(--my-acqua); }
a:link { color:var(--my-acqua); }
a:visited { color:#9A0910; }
a:hover { color:var(--my-burgandy-dark); text-decoration:underline; }
a:focus { color:var(--my-burgandy-dark); outline: thin dotted; }

ul, li {
	list-style-position: inside;
}
*/

/* ---------- */
/* !PAGE MESSAGE STYLE */
/* ---------- */
.pagemsg {
	font-size:.75em;
	font-weight:bold;
	color:#FF0004;
	margin-bottom:1em;
}

/* ---------- */
/* !CUSTOM CAPTION */
/* ---------- */
.caption { font-size:.75em; }

/* ---------- */
/* !CUSTOM DISPLAY TEXT STYLE */
/* ---------- */
.display5 {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 2.5em;
	line-height: 1;
	font-weight: 100;
	margin-bottom: 2px;
}

/* ---------- */
/* !TEXT COLUMN STYLE */
/* ---------- */
.twoColumn {
	-moz-column-count:2; /* Firefox */
	-webkit-column-count:2; /* Safari and Chrome */
	column-count:2;
	-moz-column-gap:30px; /* Firefox */
	-webkit-column-gap:30px; /* Safari and Chrome */
	column-gap:30px;
	-moz-column-rule:1px outset #696969; /* Firefox */
	-webkit-column-rule:1px outset #696969; /* Safari and Chrome */
	column-rule:1px outset #696969;
	padding-left: 1.5em;
	padding-right: 1.5em;
}

/* ---------- */
/* !STICKY ELEMENT */
/* ---------- */
.stickit {
	position: sticky !important;
	top: 0px;
	z-index: 1000;
}

/* #################### */
/* !BOX STYLES */
/* #################### */
.box {
	padding: .5em;
	overflow: hidden;
}
.boxwhite {
	background-color:#FFFFFF;
	padding: .5em;
	overflow: hidden;
}
.boxblack {
	background-color:#000;
	padding: .5em;
	overflow: hidden;
}
.boxshadow {
	box-shadow: 2px 2px 4px var(--shadow);
}
.boxblacktransp {
	background-color: rgba(0, 0, 0, 0.50);
	padding: 1em 0px 1em 0px;
	width: 100%;
}
.borderblack {
	border: 1px solid black;
}
.borderwhite {
	border: 1px solid white;
}
.rad4 {
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}
.rad6 {
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}
.rad10 {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

/* ---------- */
/* !CLEARFIX */
/* ---------- */
.clearfix { clear:both; }


/* #################### */
/* !BOOTSTRAP MISC STYLES */
/* #################### */
.row {
/* 	overflow: hidden; */
}
.container-fluid {
/* 	max-width: 1440px; */
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.10);
}
.table-hover tbody tr:hover {
	background-color: rgba(0, 100, 255, 0.20);
}

.row-striped :nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.10);
}
.row-striped :nth-of-type(even) {
  background-color: yellow;
}

.divhover div:hover {
	background-color: yellow;
}

/* ---------- */
/* Edit Icons */
/* ---------- */
.editicons {
	display: block;
	width: 16px;
	height: 16px;
	background-color:#a11c49;
	padding: .2em;
/* 	border: 1px solid black; */
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	color: #fff;
	font-family: SourceSansPro-Black;
	font-size: 1em;
	text-align: center;
}
.editicons a, link, visited, hover, focus {
	color:white;
	text-decoration: none;
	outline: none;
}


/* ######################################## */
/* COMMON SECTIONS */
/* ######################################## */

/* ############################## */
/* !MENUS: navmain, collapse, sidebarL,R: see also custom_CSSGrid.css */
/* ############################## */

/* ---------- */
/* !COLLAPSE MENU */
/* ---------- */


/* ---------- */
/* !MENU: Top Nav */
/* ---------- */
.topnav {
	overflow: hidden;
	background-color: #333;
}
.topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}
.topnav a:hover {
	background-color: #ddd;
	color: black;
}
.topnav a.active {
	background-color: #04AA6D;
	color: white;
}
.topnav .icon {
	display: none;
}

/* ---------- */
/* !MENU: navpage */
/* ---------- */
.navpage {
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
}
.navpage ul {
	margin:0px 15px 0px 15px;
	padding:0px 0px 0px 0px;
}
.navpage li {
	margin:0px 0px 0px 0px;
	padding:0px .5em 0px .5em;
	display:inline-block;
	list-style:none;
	border-right: 1px solid #06605A;
}
.navpage li:last-child {
	padding:0px 0px 0px .5em;
	border-right: 0px;
}
.navpage li:first-child {
	padding:0px .5em 0px 0px;
}

/* ########## */
/* !CAROUSEL: see also custom_CSSGrid.css */
/* ########## */
.carousel img { /* overide faulty bootstrap carousel responsiveness */
	height:32vw;
	max-height: 500px;
	margin: auto;
}
.carousel-indicators {
	margin-bottom: 0px;
}
.carousel-caption.d-none.d-md-block {
	padding: 10px;
	background: rgba(0, 0, 0, 0.40);
	bottom: 0px;
}
.btn-primary, .btn-secondary {
	margin: 2px 0px;
}
.carousel-control-prev-icon {
	width: 40px;
	height: 40px;
	background-image: url("../Images/General/carousel-control-prev-icon.png");
}
.carousel-control-next-icon {
	width: 40px;
	height: 40px;
	background-image: url("../Images/General/carousel-control-next-icon.png");
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
	display: block !important;
}

/* #################### */
/* !FOOTER: see also custom_CSSGrid.css */
/* #################### */
.footerbottom a, link, visited {
	color: #FAE3EB;
}
.footerbottom a:hover {
	color: #1DC2EE;
}
.footerlogo {
	display: block;
	padding: 20px 0px 5px 0px;
	margin: auto;
	width: 150px;
}

/* #################### */
/* !MISC */
/* #################### */
.socialicons {
	display: inline-block;
	text-align: center;
	width: 100%;
}

/* #################### */
/* !PHOTO GALLERY */
/* #################### */

/* UberGallery */
/*
.galleryThumbs_wrapper {
	width: 100%;
	height: auto;
	background-color: grey;
	padding: 10px 10px 10px 10px;
	margin: 0px;
	border: 1px solid black;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	overflow: hidden;
}
.galleryThumbs {
	display: block;
	color: white;
	text-align: center;
	font-size: .8em;
	width: 140px;
	height: auto;
	padding: 10px 0px 10px 0px;
	margin: 0px 5px 0px 5px;
	background-color: black;
	border: 2px solid #9c9c9c;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	float: left;
}
.galleryThumbs img {
	display: block;
	padding: 0px 0px 0px 0px;
	margin: 0px auto 3px auto;
	border: 1px solid white;
}
.galleryPics_wrapper {
	background-color: #404040;
}
*/

/* Galleria */
.galleria {
	width: 90%; /* 720px */
	background: #000;
	margin: 0px auto 0px auto;
	clear: both;
}
.uploadfiles_wrapper {
	width: 96.4%; /* relative value to induce browser scalaing */
	height: auto;
	background-color: #DDDDDD; /* orig=#DDDDDD */
	padding: 10px 10px 10px 10px;
	margin: 5px auto 20px auto;
	border: 1px solid black;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	overflow: hidden;
}

/* #################### */
/* !DATEPICKER PREV/NEXT BUTTONS */
/* #################### */
.ui-datepicker-prev.ui-corner-all {
	background-color: #0F547A;
}
.ui-datepicker-prev.ui-corner-all:hover {
	background-color: #36B8FF;
}
.ui-datepicker-next.ui-corner-all {
	background-color: #0F547A;
}
.ui-datepicker-next.ui-corner-all:hover {
	background-color: #36B8FF;
}

/* #################### */
/* !BREAKPOINTS - QUERIES */
/* #################### */
@media screen and (max-width: 768px) {
	/* ---------- */
	/* !TEXT COLUMN STYLE */
	/* ---------- */
	.twoColumn {
		column-count:1;
		padding-left: 1.5em;
		padding-right: 1.5em;
		-moz-column-count:1; /* Firefox */
		-webkit-column-count:1; /* Safari and Chrome */
	}

	/* ---------- */
	/* !COLLAPSE MENU */
	/* ---------- */
	.pos-f-t {
		/* margin-top: 35px; */
	}
}

@media screen and (max-width: 380px) {
	/* ---------- */
	/* !COLLAPSE MENU */
	/* ---------- */
	.pos-f-t {
		/* margin-top: 45px; */
	}
}



@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {
		display: none;
	}
	.topnav a.icon {
		float: right;
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.topnav.responsive {
		position: relative;
	}
	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
}

