.module.Gallery {
	padding-top: 45px;
	padding-bottom: 20px;
}

.module.Gallery .items {
	overflow: hidden;
}

.module.Gallery .holder {
	
	margin-bottom:15px;
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	box-sizing: border-box;
	
	background-color:rgba(12, 44, 132,1);
}

.module.Gallery .holder .overlayer:hover {
	opacity: 1;
}

.module.Gallery .holder .img {
	position: absolute;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.module.Gallery .holder .img:hover {
	opacity: 0.7;
}

.module.Gallery .items.col2 .holder{
	width: calc((100% - 15px) / 2);
	padding-bottom: 48.4%;
	
}
.module.Gallery .items.col2 .holder:nth-child(odd){
	
	float: left;
	clear:left;
	
}

.module.Gallery .items.col2 .holder:nth-child(even) {
	float: right;
	clear: right;
}

.module.Gallery .items.col3 .holder {
	width: calc((100% - (15px * 2)) / 3);
	padding-bottom: 32.05%;
	
}
.module.Gallery .items.col3 .holder:nth-child(3n+1) {
	float: left;
	clear:left;
	margin-right: 15px;
}
.module.Gallery .items.col3 .holder:nth-child(3n+2) {
	float:left;
	clear:none;
}
.module.Gallery .items.col3 .holder:nth-child(3n+3) {
	float:right;
	clear:right;
}


.lightbox-previous {
	background-image: url(/images/icon_arrow_left_white.svg) !important;
}

.lightbox-next {
	background-image: url(/images/icon_arrow_right_white.svg) !important;
}

.lightbox a.lbdownload {
      display: inline-block;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    line-height: 18px;
    padding-right: 23px;
    margin-left: 10px;
    background-image: url(/images/icon_download.svg);
    background-position: right 49%;
    background-size: 17px 17px;
    background-repeat: no-repeat;

}
.lightbox a.lbdownload:hover {
text-decoration:underline;
}