﻿.portal-video {
  position: relative;
}
.portal-video__replay-poster {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}
.portal-video__replay-poster picture {
  display: flex;
}
.portal-video__replay-poster span {
  margin-left: 24px;
  font-size: 36px;
  color: #FFFFFF;
}
.portal-video.show-replay .portal-video__replay-poster {
  pointer-events: all;
  opacity: 1;
}
.portal-video:before {
  display: block;
  content: "";
  padding-top: 57.25%;
}
.portal-video iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.portal-video__custom-poster {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.portal-video__custom-poster img {
  width: 100%;
  height: 100%;
}
.portal-video__custom-play-button {
  width: 60px;
  height: 60px;
  position: absolute;
  background: none;
  padding: 0;
  z-index: 2;
  border: none;
  top: 50%;
  left: 49.5%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
@media (max-width: 767px) {
  .portal-video__custom-play-button {
    left: 48%;
  }
}
