* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
header{
	max-width: 100%;
	background: #222; /*FallBack*/
	background: rgba(0,0,0,.6);
	padding: 20px;
	font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
	color: #fff;
	font-size: 20px;
}
body {
  background: #474747;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
  min-height: 100vh;
}
.video-player {
  --accent: #d3d3d3;
  --border-width: 5;
  background: var(--accent);
  overflow: hidden;
  position: relative;
}
.video-player__action {
  position: absolute;
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
  line-height: 44px;
  transform: scale(0);
  background: transparent;
  border: 0;
  cursor: pointer;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  outline-color: transparent;
  outline: 0;
}
.video-player__action svg {
  height: 2.5rem;
  fill: #fff;
}
.video-player__indicator {
  position: absolute;
  background: var(--accent);
}
.video-player__indicator:nth-of-type(1),
.video-player__indicator:nth-of-type(3) {
  height: calc(var(--border-width) * 1px);
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
}
.video-player__indicator:nth-of-type(2),
.video-player__indicator:nth-of-type(4) {
  height: 100%;
  width: calc(var(--border-width) * 1px);
  transform-origin: bottom;
  transform: scaleY(0);
}
.video-player__indicator:nth-of-type(1) {
  top: 0;
}
.video-player__indicator:nth-of-type(3) {
  bottom: 0;
}
.video-player__indicator:nth-of-type(2) {
  top: 0;
  right: 0;
  bottom: 0;
}
.video-player__indicator:nth-of-type(4) {
  top: 0;
  left: 0;
  bottom: 0;
}
.video-player video {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 360px;
  outline-color: transparent;
}
@media (min-width: 800px) {
  .video-player video {
    width: 720px;
  }
@media (min-width: 1024px) {
  .video-player video {
    width: 720px;
  }
@media (min-width: 1366px) {
  .video-player video {
    width: 1280px;
  }
}
