@charset "utf-8";
/* CSS Document */
.gutscheine a {
	background: none;
	padding:0;
}
.gutscheine figure {
  display: inline-block;
  width: 300px;
  height: 210px;
  margin: 15px;
  position: relative;
  border: solid rgba(0,204,0,1) 1px;
}
.gutscheine figcaption {
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 0;
  right: 0;
  background-color: rgba(153,153,153,.9);
  padding: 20px;
  font-family: Titillium, Arial, sans-serif;
  font-weight: 400;
  font-size: .9em;
  color: white;
  opacity: 0;
  transition: opacity .75s ease-out;
}
.gutscheine figure:hover figcaption {
  opacity: 1;
}
