.wrapper {
  height: 0;
  overflow: hidden;
  padding-top: 47.25%;
  padding-right: 96%;position: relative;
  background-color:#fff;
border: 1px solid #6c757d57;/* box-shadow: 2px 0px 4px #cfcbcb; */}

.wrapper > img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
	filter: grayscale(100%);
}

.wrapper > img:hover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
	filter: grayscale(10%);
}


img {
 
  transition: all 0.7s ease-in-out;
}

/* play-button */
.overlay-play-button {
  cursor: pointer;
  width: 50%;
  max-width: calc(76px + 3vw);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  margin: auto;
  z-index: 1;
  opacity: 0.7;
}

.overlay-play-button circle {
  stroke: orange;
  stroke-width: 15;
}

.overlay-play-button polygon {
  fill: orange;
}

/* Button states */
.overlay-play-button:hover circle {
  stroke: white;
}

.overlay-play-button:hover polygon {
  fill: white;
}

.overlay-play-button:active circle {
  stroke: red;
}

.overlay-play-button:active polygon {
  fill: red;
}

.overlay-play-button:hover + img {
  transform: scale(1.05);
}

/* duration */
.overlay-duration {
  position: absolute;
  right: 0;
  bottom: 0;
  color: white;
  background-color: rgb(51 38 44 / 56%);
  padding: 3px;
  font-size: calc(2px + 1vw);
margin-right: 10px;margin-bottom: 10px;/* height: 39px; */}