/* CSS Document */

div.play-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

div.play-icon > div {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12px;
  margin-top: -5px;
  width: 20px;
  height: 15px;
  border: 0;
  z-index: 9;
  background-color: #ffffff;
}

div.play-icon > div:before {
  content: "\f16a";
  line-height: 30px;
  font-family: FontAwesome;
  color: #ff0000;
  font-size: 43px;
  z-index: 10;
  margin-top: -8px;
  margin-left: -12px;
  position: absolute;
  cursor: pointer;
}

div.play-icon > div:hover:before {
  color: #F39;
  transition: ease color 0.1s;
}

