/* 
    Document   : productvideo
    Created on : 22/08/2013, 1:18:07 PM
    Author     : logicalit.com
    Description:
        Purpose of the stylesheet follows.
*/

/* VIDEO PLAY BUTTON */

.video_block {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
}

@media (max-width: 1199px) {
  .video_block {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .video_block {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .video_block {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .video_block {
    grid-template-columns: 1fr;
  }
}

.video_block h1 {
  text-align: left;
  padding: 0px;
}

.video_product {
  float: left;
}

a.video_pop_up {
  position: relative;
  display: block;
  text-decoration: none;
}

a.video_pop_up img {
  position: relative;
  z-index: 5;

  display: block;
  width: 100%;

  text-decoration: none;
}

.video_product .caption {
  text-decoration: none;
  display: block;
  text-align: center;
  max-width: 180px;
  padding-top: 5px;
}

span[class^="play"] {
  top: 50%;
  left: 50%;
  
  transform: translate(-50%, -50%);
}

.play_Red {
  width: 36px;
  height: 27px;
  background: url(../img/play_button_red.png) no-repeat 0 0;
  position: absolute;
  top: 34px;
  left: 40px;
  z-index: 100;
  opacity: 0.8;
}

.play_Black {
  width: 36px;
  height: 27px;
  background: url(../img/play_button_black.png) no-repeat 0 0;
  position: absolute;
  top: 34px;
  left: 40px;
  z-index: 100;
  opacity: 0.8;
}

.play_Clear {
  width: 50px;
  height: 30px;
  background: url(../img/play_button_clear.png) no-repeat 0 0;
  position: absolute;
  top: 34px;
  left: 36px;
  z-index: 100;
}

.play_None {}

.play:hover {
  opacity: 1;
}