.youtube-player {
  position: relative;
  height: 0;
  max-width: 100%;
  overflow: hidden;
  background: #000;
}

.youtube-player__responsive {
  padding-bottom: 56.25%;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent;
}

.youtube-player img {
  object-fit: cover;
  display: block;
  left: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: 100%;
  cursor: pointer;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  transition: 0.4s all;
}

.youtube-player img:hover {
  -webkit-filter: brightness(75%);
}

.youtube-player .background-image {
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
}

.youtube-player .play {
  position: absolute;
  cursor: pointer;
  left: 50%;
  top: 50%;
}

.youtube-player .play-modern {
  width: 68px;
  height: 90px;
  margin-left: -34px;
  margin-top: -45px;
  background: url('./buttons/yt-play-modern.svg') no-repeat;
}

.youtube-player .play-classic {
  height: 48px;
  width: 68px;
  margin-top: -24px;
  margin-left: -34px;
  background: url('./buttons/yt-play-classic.svg') no-repeat;
}
