.banner-container {
  width: 640px;
  height: 360px;
  position: relative;
}

.video-wrapper {
  width: 100%;
  position: absolute;
  height: 100%;
}

a.play-pause-button {
  width: 50px;
  height: 50px;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-container:hover + .video-control {
  opacity: 1;
}
.embed-container iframe #player .controls-wrapper {
  display: none;
}

/* video button style */
.video-control {
  opacity: 0;
  position: absolute;
  width: 75px;
  height: 75px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: opacity 0.3s;
}
.video-control:hover {
  opacity: 1;
}
.video-control:before, .video-control:after {
  content: '';
  width: 100%;
  height: 100%;
  max-width: 75px;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
}
.video-control:before {
  background-image: url("http://client.buzzworthystudio.com/webby/wp-content/uploads/2017/06/icon-play.jpg");
  background-position: center;
  background-size: 100%;
  /*content: "\ea1c";*/
}
.video-control:after {
  background-image: url("http://client.buzzworthystudio.com/webby/wp-content/uploads/2017/06/icon-stop.jpg");
  background-position: center;
  background-size: 100%;
  /*content: "\ea1d";*/
}
.video-control.paused:after, .video-control.playing:before {
  opacity: 0;
}

.video-control-show {
  opacity: 1;
}

/* audio button style */
.audio-control {
  opacity: 1;
  position: absolute;
  width: 6%;
  height: 9%;
  bottom: 3%;
  left: 2%;
  transition: opacity 0.3s;
}
.audio-control:hover {
  opacity: 1;
}
.audio-control:before, .audio-control:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  max-width: 36px;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
}
.audio-control:before {
  background-image: url("https://joekang.co/assets/image-hosting/video-buttons-black.png");
  background-position: -1% -2%;
  background-size: 254%;
}
.audio-control:after {
  background-image: url("https://joekang.co/assets/image-hosting/video-buttons-black.png");
  background-position: 69% -1%;
  background-size: 254%;
}
.audio-control.unmuted:after, .audio-control.muted:before {
  opacity: 0;
}


