.video {
  position: relative;
}
.video--active {
  cursor: pointer;
}
.video__player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border: none;
  background-color: transparent;
  color: #fff;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), opacity 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.video__button:hover {
  color: #ff7100;
}
.video--active .video__button {
  opacity: 0;
  pointer-events: none;
}
.video__button-icon {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}