/*
* Software Name : abcdesktop.io
* Version: 0.2
* SPDX-FileCopyrightText: Copyright (c) 2020-2021 Orange
* SPDX-License-Identifier: GPL-2.0-only
*
* This software is distributed under the GNU General Public License v2.0 only
* see the "license.txt" file for more details.
*
* Author: abcdesktop.io team
* Software description: cloud native desktop service
*/
/*Supporting colours*/
#videoPlayer {
  display: none;
  left: calc(50% - 640px);
  top: 10%;
}
#videoPlayer video {
  height: 720px;
  width: 1280px;
}
@media screen and (max-width: 1300px) {
  #videoPlayer {
    height: 395px;
    width: 640px;
    left: calc(50% - 320px);
    top: 10%;
  }
  #videoPlayer video {
    height: 360px;
    width: 640px;
  }
}
