.fullscreen-video-container {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: black;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  transition: all 0.5s ease;
  display: none;
}

.fullscreen-video-container.opened {
  top: 0%;
}

.fullscreen-video-content {
  display: table;
  width: 100%;
  height: 100%;
}

.fullscreen-video-align {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.fullscreen-video {
  position: relative;
  width: 80%;
  margin: auto;
  font-size: 0px;
}

.fullscreen-video-close {
  position: absolute;
  right: 10px;
  top: 10px;
  text-align: right;
}

.fullscreen-video-close span {
  display: inline-block;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: url(../../img/roxy/fullscreen_video/close.png) right top no-repeat;
  background-size: 30px 30px;
  opacity: 0.7;
  transition: all 0.5s ease;
}

.fullscreen-video-close span:hover {
  opacity: 1;
}

.fullscreen-video-player {
  margin-top: 10px;
  text-align: center;
}

.fullscreen-video-cover {
  position: absolute;
  z-index: 2;
  background: #000;
  width: 100%;
  height: 100%;
  min-height: 10px;
  display: block;
}

.fullscreen-video-video {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 10px;
}

.fullscreen-video-playbutton {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background: url(../../img/roxy/fullscreen_video/player_sprite.png) right bottom no-repeat;
  background-size: 30px 60px;
  cursor: pointer;
}

.fullscreen-video-playbutton.paused {
  background-position: right top;
}

.fullscreen-video-progressbar {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  width: 80%;
  width: calc(100% - 30px);
  height: 2px;
  background: #606060;
}

.fullscreen-video-progress {
  display: inline-block;
  vertical-align: middle;
  height: 2px;
  background: #fff;
  width: 0%;
}

/*# sourceMappingURL=fullscreen_video.css.map */
