
.video-player {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.video-player-retry-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: auto;
    margin-right: auto;
    z-index: 10000;
    text-align: center;
}

.video-player-retry-message {
    text-align: center;
    color: white;
}

.video-player-btn {
    margin: 8px 5px 5px 5px;
    cursor: pointer;
}

    .video-player-btn .btn-retry {
        color: white;
    }

.video-js .vjs-button.vjs-icon-download {
    cursor: pointer;
    display: block;
    font-family: VideoJs;
}

    .video-js .vjs-button.vjs-icon-download:before {
        display: block;
        position: relative;
        top: 4px;
        content: '\f101';
        transform: rotate(90deg);
        font-size: 1.5em;
    }

    .video-js .vjs-button.vjs-icon-download:after {
        display: block;
        content: ' ';
        width: 4px;
        height: 5px;
        background-color: white;
        position: relative;
        top: -11px;
        left: calc(50% - 2px);
    }

.video-js .vjs-button.vjs-icon-stop {
    cursor: pointer;
    display: block;
    font-family: VideoJs;
}

    .video-js .vjs-button.vjs-icon-stop:before {
        display: block;
        position: relative;
        content: '\f10a';
        transform: rotate(90deg);
        width: 1.2em;
        height: 1.2em;
        background-color: white;
    }

.video-js .vjs-VR-control.vjs-control.vjs-button.enable:before {
    font-size: 1.4em !important;
}

.video-js .vjs-button.vjs-icon-rotate {
    cursor: pointer;
    display: block;
    background: url('/images/VidFleet/rotate_camera.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
}

@supports (-webkit-touch-callout: none) {
    .video-js .vjs-control-bar {
        display: flex !important;
    }
}


/*.video-player {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.video-player-retry-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: auto; 
  margin-right: auto;
  z-index: 10000; 
  text-align: center;
}

.video-player-retry-message {
  text-align: center;
  color: white;
}

.video-player-btn {
  margin: 8px 5px 5px 5px;
  cursor: pointer;
  .btn-retry {
    color: white;
  }
}

.video-js {
  // This class is added to the video.js element by the plugin by default.
  .vjs-button.vjs-icon-download {
    cursor: pointer;
    display: block;
    font-family: VideoJs;
    &:before {
      display: block;
      position: relative;
      top: 4px;
      content: '\f101';
      transform: rotate(90deg);
      font-size: 1.5em;
    }
    &:after {
      display: block;
      content: ' ';
      width: 4px;
      height: 5px;
      background-color: white;
      position: relative;
      top: -11px;
      left: calc(50% - 2px);
    }
  }

  .vjs-button.vjs-icon-stop {
    cursor: pointer;
    display: block;
    font-family: VideoJs;
    &:before {
      display: block;
      position: relative;
      content: '\f10a';
      transform: rotate(90deg);
      //font-size: 1.7em;
      width: 1.2em;
      height: 1.2em;
      background-color: white;
    }
  }

  .vjs-VR-control.vjs-control.vjs-button.enable {
    &:before {
      font-size: 1.4em !important;
    }
  }

  .vjs-button.vjs-icon-rotate {
    cursor: pointer;
    display: block;
    background: url('/assets/icons/rotate_camera.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
  }

  @supports (-webkit-touch-callout: none) {
    .vjs-control-bar{
      display: flex !important;
    }
  }
}*/