
/************************************************************
*
*	video overlay 

	09.05.2016
	- backClose button eingebaut
	- linkbutton css angepast

*				
************************************************************/
#videoWrapp {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  display: none;
  top: 104px;
  top: 0px;
  left: 0;
}
.video-container {
  width: 720px;
  height: 405px;
  position: relative;
  background-color: #000;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
#cboxOverlay {
  background: none repeat scroll 0 0 #000;
  z-index: 9 !important;
}
.videoClose {
  opacity: 0.7;
  position: absolute;
  top: -40px;
  right: 0;
  height: 40px;
  width: 30px;
}
.videoClose.back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.videoClose .fa-times {
  color: #fff;
}
.desktop .videoClose.button:hover {
  opacity: 1.0;
  cursor: pointer;
}
.videoButton {
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
  color: #a4c8da;
  font-size: 18px;
  width: 100%;
  /* 
	.transition;
	*/
}
.desktop .videoButton:hover {
  cursor: pointer;
  color: #3b3b3b;
}
.videoButtonWrap {
  text-align: center;
  display: inline-block;
  width: 510px;
}
.videoButton img {
  width: 100%;
}
.videoButtonWrap .fa-play {
  font-size: 30px;
  color: #fff;
  background-color: #678678;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
}
.videoButtonWrap .fa-play::before {
  margin-left: 15px;
}
.desktop .videoButtonWrap .videoButton:hover .fa-play {
  background-color: #fff;
  color: #a4c8da;