#photoGallery img{
	width: 100%;
	margin: 15px 0px 15px 0px;
	cursor: pointer;
}
.modal-content{
	padding: 0px 5px 5px 5px;
}
.modal-content button{
	text-align: right;
}
.modal-image img{
	width: 100%;
}
.modal-image{
	margin: 0px 10px 10px 10px;
	position: relative;
}
/*
*******Too Wide Layout BREAKPOINT*******
MEDIA QUERY FOR > Background Width
*/
@media (min-width: 1278px){
}
/*
*******Width Only Desktop  Layout BREAKPOINT*******
MEDIA QUERY FOR > Medium Width
Set "min-width" equal to bootstrap small breakpoint
*/
@media (min-width: 768px){
}
/*
*******Full Desktop Layout BREAKPOINT*******
MEDIA QUERY FOR Medium Height & > Medium Width
Set "min-width" equal to bootstrap small breakpoint
Set "max-height" equal to max background image height + header height + footer height
Set "min-height" equal to minimum viewport size
*/
@media (max-height: 1034.9px) and (min-height: 500px) and (min-width: 768px){
	/*Activate these styles when screen width is above x and screen height is above x*/
}

/*
*******Too Tall Desktop Layout BREAKPOINT*******
MEDIA QUERY FOR Large Height & > Medium Width
Set "min-width" equal to bootstrap small breakpoint
Set "min-height" equal to max background image height + header height + footer height
This media query un-fixes the footer from the bottom of the viewport
*/
@media (min-height: 1035px) and (min-width: 768px){
	/*Activate these styles when screen width is above x and screen height is below x*/
}