.lazy-video {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.lazy-video__button {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  line-height: 0;
}

.lazy-video__thumb {
  display: block;
  width: 100%;
  height: auto;
}

.lazy-video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lazy-video__icon-triangle {
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 3px;
}

.lazy-video__button:focus-visible .lazy-video__icon {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.lazy-video__button:hover .lazy-video__icon {
  background: rgba(0, 0, 0, 0.75);
}

.lazy-video video {
  width: 100%;
  height: auto;
  display: block;
}
