:root {
    --main-color: darkgreen;
	--base-color:#FFFFFF;
}

.container {
 	display:-webkit-box;
 	display:-ms-flexbox;
 	display:flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
 	-ms-flex-wrap: wrap;
 	    flex-wrap: wrap;
	padding: 0 10%;
	max-width: 1350px;
	-ms-flex-preferred-size: 100%;
	    flex-basis: 100%;

}


.col {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding: 15px;
	min-width: 365px;
	max-width: 365px;
}


.square-crop {
	height:365px;
	width:365px;
	-o-object-fit:cover;
	   object-fit:cover;
	margin-right: 30px;
}

.square-crop:hover {
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: -webkit-transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;
  transition: -webkit-transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;
  -o-transition: transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 450ms, -webkit-transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;

}

#modalbg {
	display:none;
	position: fixed;
	top:0;
	left:0;
	bottom:0;
	background-color: black;
	opacity: 0.8;
	width: 100%;
/* 	height:100vw; */
	z-index:1040;
}

.lightboxnomodal {
	overflow-x: hidden;
    overflow-y: auto;
	    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
	outline: 0;
	display: none;
	    text-align:center;
	/*padding-right: 0px !important;*/
}


.gallery-title
{
	font-family: Quicksand, Verdana, Arial;
    font-size: 36px;
    color: var(--main-color);
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
	padding-top: 30px;
}

.buttonset {
	text-align: center;
	margin-bottom: 30px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.filter-button
{
	font-family: Quicksand, Verdana, Arial;
    font-size: 18px;
    border: 1px rgba(255,255,255,0) solid;
    border-radius: 5px;
    text-align: center;
    color: var(--main-color);
	padding: 10px 10px;
	background-color: white;
}

.filter-button:hover
{
    font-size: 18px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    text-align: center;
    color: var(--base-color);
    background-color: var(--main-color);

}
.btn-default:active .filter-button:active
{
    background-color: var(--main-color);
    color: var(--base-color);
}

.warning {
	font-family: Quicksand, Verdana, Arial;
	text-align: center;
	color: red;
	font-weight: bold;
	display: none;
}


#goleft {
	left:0;
	top:0;
	width:33%;
}

#goright {
	right: 0;
	top:0;
	width:33%;
}

#close {
	left:33%;
	right:33%;
	width:34%;
	top:0;
}
#lightbox > .overlay {
	position: fixed;
	height:100%;
	background: black;
	opacity: 0;
	text-align: center;
	font: Quicksand, Verdana, Arial;
	font-size: 70pt;
	color: white;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	text-decoration: none;

}
.fdfsd {
/* Below for centering, even if flex should do the job */
/* Internet Explorer 10 */
display:-ms-flexbox;
-ms-flex-pack:center;
-ms-flex-align:center;

/* Firefox */
display:-moz-box;
-moz-box-pack:center;
-moz-box-align:center;

/* Safari, Opera, and Chrome */
display:-webkit-box;
-webkit-box-pack:center;
-webkit-box-align:center;

/* W3C */
display:box;
box-pack:center;
box-align:center;
}

.transition{
  -o-transition:.5s;
  -webkit-transition:.5s;
  transition:.5s;
}

#lightbox > .overlay:hover:not(.overlayHide) {
	opacity: 0.2;
}

#lightbox > .overlay > span {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	-ms-flex-item-align: center;
	    align-self: center;
	font-family: "WebSymbolsRegular";
}


.header {
	margin: 0 10%;
}

@media screen and (max-width: 1000px)  {
	.row {
	padding: 0px 5%;
	}
	.square-crop {
	height:30vw;
	width:30vw;
	margin-right: 0;
	}
	.col {
	padding: calc(5px + 1vw);
	min-width: 30vw;
	max-width: 30vw;
	}
	.gallery-title {
	font-size: calc(14pt + 1.8vw);
	}
	.filter-button {
	font-size: calc(8pt + 0.8vw);
	}
	.filter-button:hover {
	font-size: calc(8pt + 0.8vw);
	}
}

@media screen and (max-width: 300px)  {
	.row {
	padding: 0px 0%;
	}
}

.noscroll {
	overflow: hidden;
	padding-right: 17px;
}
@media screen and (max-width: 800px) {
	.noscroll {
		padding-right: inherit;
	}
}

#modalfadein {
	display:block;
	position: fixed;
	top:0;
	left:0;
	bottom:0;
	width: 100%;
	z-index:1040;
	background-color: white;
}

/* temporary for landing bar */

.fullbar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: no-wrap;
	    flex-wrap: no-wrap;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	/* align-content: center; */
	width: 100vw;
}

.barcomponent {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	-ms-flex-negative: 1;
	    flex-shrink: 1;
/* 	display: flex;
	align-items: center;
	align-content: stretch; */
	max-width: 16.8%;
	height:100%
}

.barimg {
	-o-object-fit: cover;
	   object-fit: cover;
	height: 100%;
	width: 16.67vw;

}

.barimg:hover {
	-webkit-transition:.2s;
	-o-transition:.2s;
	transition:.2s;
}
a:nth-of-type(n+1) > .barimg:hover{	-webkit-transform: scale(1.1) rotate(-2deg);	-ms-transform: scale(1.1) rotate(-2deg);	transform: scale(1.1) rotate(-2deg);}
a:nth-of-type(n+2) > .barimg:hover{	-webkit-transform: scale(1.1) rotate(3deg);	-ms-transform: scale(1.1) rotate(3deg);	transform: scale(1.1) rotate(3deg);}
a:nth-of-type(n+3) > .barimg:hover{	-webkit-transform: scale(1.1) rotate(-5deg);	-ms-transform: scale(1.1) rotate(-5deg);	transform: scale(1.1) rotate(-5deg);}
a:nth-of-type(n+4) > .barimg:hover{	-webkit-transform: scale(1.1) rotate(2deg);	-ms-transform: scale(1.1) rotate(2deg);	transform: scale(1.1) rotate(2deg);}
a:nth-of-type(n+5) > .barimg:hover{	-webkit-transform: scale(1.1) rotate(6deg);	-ms-transform: scale(1.1) rotate(6deg);	transform: scale(1.1) rotate(6deg);}
a:nth-of-type(n+6) > .barimg:hover{	-webkit-transform: scale(1.1) rotate(-3deg);	-ms-transform: scale(1.1) rotate(-3deg);	transform: scale(1.1) rotate(-3deg);}

.container#landingcontainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-line-pack: center;
	    align-content: center;
	height: 100vh;

}
.container#landingcontainer:after {
	content:"";
	height:10%;
}

body#landing {
	overflow: hidden;
}

.barsubs {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	width: 100vw;
	margin-top: 30px;
}

.barsub{
	-ms-flex-preferred-size: 0;
	    flex-basis: 0;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	text-align: center;
	font-family: Quicksand, Verdana, Arial;
	font-size: calc(7pt + 0.5vw) ;

}
a.barlink {
	text-decoration: none;
	color: black;
}


@media screen and (max-width: 1000px) {
	.fullbar {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-ms-flex-line-pack: inherit;
		    align-content: inherit;
		width: 100%;
	}
	.barimg {
		height:365px;
		width:365px;
		-o-object-fit:cover;
		   object-fit:cover;
	}
	.barlink {
		margin-bottom: 5vh;
		text-align: center;
	}
	.barsub {
		font-size:12pt;
	}
	.container#landingcontainer {
		height: inherit;
	}
	body#landing {
		overflow: inherit;
	}
}


#modalbglanding {
	display:none;
	position: fixed;
	top:0;
	left:0;
	bottom:0;
	width: 100%;
	z-index:1040;
	background-color: white;
}


@media screen and (max-width: 400px) {
	.barimg {
		height: 200px;
		width: 200px;
	}
}

/* END OF LEGACY */

body {font-family: Quicksand, Verdana, Arial;}

.breadcrumbs a {
  color:teal;
  text-decoration: none;
}

div.vignette {
  position:relative;
  text-align:center;
  margin: 7px;
  background: white;
  padding:0;
  max-height: 171px; /* repeat of img due to slight overall height change */
  overflow:hidden;
}

div.vignette.square {
	max-height: 171px;
}

div.vignette:hover {
  background:black;
}
.vignette img {
  width:256px;
  max-height:171px;
  min-height:171px;
  opacity: 1;
  object-fit: cover;
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.vignette:hover img {
  opacity: 0.8;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.vignette:hover svg {
  background: #DDDDDD;
}

.vignette.square img {
	width: 220px;
	//height: 200px;
}

.vignette  span.foldername, .vignette span.photoname{
  position: absolute;
  left:50%;
  bottom:20px;
  transform: translate(-50%,0);
  color:black;
  mix-blend-mode: multiply;
  font-weight: bold;
  margin:0;
  opacity:0;
}

.vignette:hover span.foldername, .vignette:hover span.photoname {
  color:white;
  mix-blend-mode: screen;
  opacity:1;
}


.folderContainer, .photoContainer {
  width: 70vw;
  //border:1px solid black;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
