video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
}

.video-wrapper a.btn-video {
  color: #fff;
  width: 31px;
  display: inline-block;
}

// Video controls
div.video-controls {
  position: absolute;
  bottom: -45px; // height of controls container
  left: 50%;
  padding: 7px;
  background: rgba(255, 255, 255, .35);
  transform: translateX(-50%);
  transition: bottom .25s ease-in;
}

.video-wrapper:focus > video + .video-controls,
.video-wrapper:hover > video + .video-controls {
  bottom: 12px;
  z-index: 2;
}

// Video controls
.btn {
  padding: 5px 0;
  width: 31px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity .175s ease-in;
  
  &:focus {
    outline: 0;
  }

  &:hover {
    opacity: .25;
  }
}

