.video-player {
  width: 100%;
  position: relative; }
  .video-player.fullscreen .video-content {
    cursor: auto; }
  .video-player .video-content {
    position: relative;
    cursor: none; }
    .video-player .video-content video {
      display: block;
      width: 100%; }
    .video-player .video-content .buttons {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 4;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      -webkit-flex-flow: row wrap;
      -moz-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
      -o-flex-flow: row wrap;
      flex-flow: row wrap;
      pointer-events: none; }
      .video-player .video-content .buttons .button {
        width: 60px;
        height: 60px;
        background: white;
        cursor: pointer;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -o-align-items: center;
        align-items: center;
        -webkit-flex-flow: row wrap;
        -moz-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        -o-flex-flow: row wrap;
        flex-flow: row wrap; }
        .video-player .video-content .buttons .button i {
          font-size: 40px; }
        .video-player .video-content .buttons .button.pause {
          background: white;
          -webkit-transition: opacity 0.4s ease-in-out;
          -moz-transition: opacity 0.4s ease-in-out;
          -ms-transition: opacity 0.4s ease-in-out;
          -o-transition: opacity 0.4s ease-in-out;
          transition: opacity 0.4s ease-in-out; }
          .video-player .video-content .buttons .button.pause.active {
            opacity: 0; }
      .video-player .video-content .buttons .inactive {
        display: none; }
    .video-player .video-content:hover .buttons .button.pause.active {
      opacity: 1; }
  .video-player .progress {
    cursor: pointer;
    height: 36px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #000; }
    .video-player .progress::after {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      background-image: url("../img/wave.png");
      background-size: auto 7px;
      background-repeat: repeat-x;
      background-position: left center;
      opacity: 0.4;
      pointer-events: none; }
  .video-player .progress span {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0px;
    z-index: 2;
    border-right: 4px solid white;
    background-image: url("../img/wave.png");
    background-size: auto 7px;
    background-repeat: repeat-x;
    background-position: left center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    pointer-events: none; }
  .video-player .bottom_bar {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: initial;
    -moz-justify-content: initial;
    -ms-justify-content: initial;
    -o-justify-content: initial;
    justify-content: initial;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-flex-flow: initial;
    -moz-flex-flow: initial;
    -ms-flex-flow: initial;
    -o-flex-flow: initial;
    flex-flow: initial;
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    .video-player .bottom_bar.inactive {
      opacity: 0;
      pointer-events: none; }
    .video-player .bottom_bar .button {
      width: 40px;
      height: 36px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      -webkit-flex-flow: row wrap;
      -moz-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
      -o-flex-flow: row wrap;
      flex-flow: row wrap;
      color: #000;
      background: white;
      cursor: pointer;
      -webkit-transition: all 0.4s ease-in-out;
      -moz-transition: all 0.4s ease-in-out;
      -ms-transition: all 0.4s ease-in-out;
      -o-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out; }
