.nopad {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
/*image gallery*/
.imgCheckbox {
	cursor: pointer;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 4px solid transparent;
	margin-bottom: 0;
	outline: 0;	
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.imgCheckbox img{
	opacity:0.6;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.imgCheckbox input[type="checkbox"] {
	display: none;
}
.imgCheckbox:hover,
.imgCheckbox-checked {
	border-color: #4783B0;
}
.imgCheckbox:hover img,
.imgCheckbox-checked img{
	opacity:1;
}
.imgCheckbox .fa {
  position: absolute;
  color: #4A79A3;
  background-color: #fff;
  padding: 10px;
  top: 0;
  right: 0;
}
.imgCheckbox .fa.hidden{
	display:none;
}
.imgCheckbox-checked .fa {
  display: block !important;
}