/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

.prodImgContainer {
    float:left;
    position:relative
}


.prodImgContainer:after {
	clear:both;
}
.prodImgContainer:hover .prod-img-link {
	background:#000;
}

.prodImgContainer:hover .viewIcon {
	background-color:#000;
	display:block;
	width:100%;
	height:100%;
	opacity:0.8;
}
.viewIcon{
  	position : absolute;
    display:none;
    top: 0;
    width: 40px;
    margin: 0 auto;
    left: 0;
    right:0px;
    z-index:100;
} 
.viewIcon i {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 45%;
    vertical-align: middle;
	color:white;
    font-size: x-large;
}
.viewIcon a {
	text-decoration:none;
	width:100%;
	height:100%;
}