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

/* VIDEO PLAY BUTTON */

.product-videos__list {
  display: flex;
  flex-wrap: wrap;
}

.product-videos__item {
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .product-videos__item {
    width: 100%;
  }
}

.product-videos__link {
  position: relative;
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
}

.product-videos__img {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-decoration: none;
}

.product-videos__caption {
  text-decoration: none;
  display: block;
  text-align: center;
  /* width: 120px; */
  font-size: 15px;
}

.product-videos__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  width: 68px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: 0 0;
  opacity: 0.6;
  transition: 0.2s ease-in-out;
  transform: translate(-50%, -50%);
}

.product-videos__btn--Red {
  background-image: url("../img/youtube-btn-red.svg");
}

.product-videos__btn--Black {
  background-image: url("../img/youtube-btn-black.svg");

}

.product-videos__btn--Clear {
  left: 36px;

  width: 50px;
  height: 30px;

  background-image: url("../img/youtube-btn-clear.svg");
}

.product-videos__link:hover .product-videos__btn {
  opacity: 1;
}
