/**
 * @file
 * Visual styles for Startup Growth Lite's images overlay.
 */
a.overlayed,
.overlayed-wrapper,
.overlayed-inner {
  position: relative;
  display: block;
  overflow: hidden;
}
.image-preview .overlayed {
  max-width: 100%;
  float: left;
}
.overlay {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  z-index: 10;
}
.overlay i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -40px 0 0 -40px;
  font-size: 20px;
  color: #a3a3a3;
  width: 100%;
  text-align: center;
  width: 80px;
  height: 80px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #3f3f3f;
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  -o-transform: scale(0.1);
  transform: scale(0.1);
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.overlay i:before {
  line-height: 82px;
}
.overlay.large i {
  margin: -40px 0px 0 -40px;
  font-size: 42px;
}
.overlay.small i,
.image-listing-items .overlay i {
  width: 40px;
  height: 40px;
  margin: -20px 0px 0 -20px;
  font-size: 14px;
}
.overlay.small i:before,
.image-listing-items .overlay i:before {
  line-height: 42px;
}
.overlayed:hover,
.overlayed-inner:hover {
  color: #ffffff !important;
  text-decoration: none;
}
.overlayed:hover .overlay,
.overlayed-wrapper:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
}
.overlayed:hover .overlay i,
.overlayed-wrapper:hover .overlay i {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
