.reproductor {
  position: absolute;
  top: 46%;
  left: 46%;
  transform: translate(-50%);
  padding: 0px;
  cursor:pointer;
  outline: 0;
}

#buttonPlay {
  position: absolute;
  top: 46px;
  left: -1px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-color: transparent;
  background-color: transparent;
  border-radius: 50%;
  outline: 0;
}

.reproductor img {
    position: absolute;
    top: 2px;
    left: 6px;
    width: 28px;
    height: 28px;
    z-index: 1;
   /* color: blue;*/
    outline: 0;
}

#buttonPlay:active {
  transform: scale(.8);
  transition: .2s ease-in-out;
}

@media all and (min-width: 712px) {
  .reproductor {
      top: 63%;
      left: 46%;
  }
}

@media all and (min-width: 1024px) {
  .reproductor {
      top: 63%;
      left: 48%;
  }
}

