html {
  position: absolute;
  width: 100vW;
  height: 100vH; }

body {
  font-family: 'Roboto', Verdana, Geneva, Tahoma, sans-serif;
  overflow-x: hidden; }
  body.chrome71.chrome #remote-playerlist {
    transform: rotateY(180deg) !important; }

h1, h2, h3 {
  padding-top: 12px;
  color: white; }

h3 {
  font-style: italic;
  font-size: 1.4rem; }

button {
  border-style: solid;
  border-width: 1px;
  border-color: #8a8a8a;
  background: rgba(43, 47, 62, 0.93);
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: white; }

#infoText {
  margin-top: 48px; }

#channelPanel {
  max-width: 600px; }

#channels {
  margin-top: 12px; }
  #channels .channelsHeading {
    display: flex;
    align-items: baseline; }
    #channels .channelsHeading button {
      margin-left: 20px;
      transform: scale(0.8) translateY(-6px); }
  #channels .channel {
    background: #4e525e;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    #channels .channel button {
      margin-left: 40px;
      margin-right: 20px; }
    #channels .channel .channelStatus {
      font-size: 0.8rem;
      opacity: 50%;
      margin-top: 12px; }
  #channels .closeChannel {
    opacity: 50%; }

#guideList {
  padding-top: 20px; }
  #guideList .guide {
    border-style: solid;
    border-width: 1px;
    margin-bottom: 12px;
    border-color: white; }
    #guideList .guide .guideHeading {
      display: flex;
      align-items: center;
      cursor: pointer;
      background: #2B2F3E;
      color: white; }
      #guideList .guide .guideHeading i {
        padding: 10px;
        padding-right: 10px;
        transform: rotateZ(90deg);
        transition: transform 0.5s; }
        #guideList .guide .guideHeading i.open {
          transform: rotateZ(180deg); }
      #guideList .guide .guideHeading .title {
        margin: 0px;
        font-size: 1.2rem; }

.content {
  height: 0px;
  overflow: hidden;
  transition: height 1s;
  background: #2B2F3E;
  color: white; }
  .content .contentPadding {
    padding: 40px; }
  .content img {
    max-width: 300px;
    padding-bottom: 40px;
    cursor: pointer; }

.panel {
  background: #2B2F3E;
  clip-path: polygon(0 16px, 16px 0, calc(100% - 16.00px) 0, 100% 16px, 100% calc(100% - 16.00px), calc(100% - 16.00px) 100%, 16px 100%, 0 calc(100% - 16.00px));
  padding: 20px;
  border-style: solid;
  border-width: 2px;
  position: relative; }

.panel:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: white;
  clip-path: polygon(0 12px, 12px 0, calc(100% - 12.00px) 0, 100% 12px, 100% calc(100% - 12.00px), calc(100% - 12.00px) 100%, 12px 100%, 0 calc(100% - 12.00px), 0 12px, 2px calc(12.00px + 0.83px), 2px calc(100% - 12.00px - 0.83px), calc(12.00px + 0.83px) calc(100% - 2px), calc(100% - 12.00px - 0.83px) calc(100% - 2px), calc(100% - 2px) calc(100% - 12.00px - 0.83px), calc(100% - 2px) calc(12.00px + 0.83px), calc(100% - 12.00px - 0.83px) 2px, calc(12.00px + 0.83px) 2px, 2px calc(12.00px + 0.83px)); }

.text {
  color: white; }

.mainPanel {
  max-width: 1200px;
  width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  min-height: 90vH;
  margin-top: 5vH;
  margin-bottom: 5vH;
  background: rgba(43, 47, 62, 0.8); }

.lineOnTop {
  /*
  border-top-left-radius: 2px;
  border-top-style: solid;
  border-top-color: $buttonBGColor;
  */
  margin-top: 48px; }

#mainPage {
  max-width: 1200px;
  width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  min-height: 90vH; }

#header {
  text-align: center;
  max-width: 1200px;
  margin: auto; }
  #header img {
    width: 380px; }
  #header h3 {
    padding-top: 0px; }

#logoutButton {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 30px;
  font-size: 0.8rem; }

#username {
  position: absolute;
  right: 100px;
  text-align: left;
  top: 12px;
  height: 30px;
  display: flex;
  align-items: center;
  font-size: 0.8rem; }

.slidecontainer {
  color: white;
  font-size: 0.8rem;
  margin-top: 12px;
  /* Mouse-over effects */
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */ }
  .slidecontainer .infoText {
    text-align: center; }
  .slidecontainer .slider {
    -webkit-appearance: none;
    /* Override default CSS styles */
    appearance: none;
    width: 100%;
    /* Full-width */
    height: 3px;
    /* Specified height */
    background: #d3d3d3;
    /* Grey background */
    outline: none;
    /* Remove outline */
    opacity: 0.7;
    /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s;
    /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    border-radius: 4px; }
  .slidecontainer .slider:hover {
    opacity: 1;
    /* Fully shown on mouse-over */ }
  .slidecontainer .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* Override default look */
    appearance: none;
    width: 12px;
    /* Set a specific slider handle width */
    height: 12px;
    /* Slider handle height */
    background: white;
    /* Green background */
    cursor: pointer;
    /* Cursor on hover */
    border-width: 0px; }
  .slidecontainer .slider::-moz-range-thumb {
    width: 12px;
    /* Set a specific slider handle width */
    height: 12px;
    /* Slider handle height */
    background: white;
    /* Green background */
    cursor: pointer;
    /* Cursor on hover */
    border-width: 0px; }

.BackgroundPanelContainer {
  width: 100vW;
  height: 100vh;
  top: 0px;
  left: 0px;
  position: absolute;
  background: #0000006c;
  z-index: 100;
  position: fixed; }

#LoadingPanel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%; }

.ModalWindow {
  width: 500px;
  min-height: 100px;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .ModalWindow .AbortButton {
    margin-top: 24px; }

.localPlayer {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 12px;
  background: #2B2F3E;
  z-index: 1;
  display: flex;
  flex-direction: column; }
  .localPlayer .player {
    width: 183px;
    height: 103px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    -moz-transform: scale(100%, 100%);
    -webkit-transform: scale(100%, 100%);
    -o-transform: scale(100%, 100%);
    -ms-transform: scale(100%, 100%);
    transform: scale(100%, 100%); }

.chrome #remote-playerlist {
  -moz-transform: rotateZ(180deg);
  -webkit-transform: rotateZ(180deg);
  -o-transform: rotateZ(180deg);
  -ms-transform: rotateZ(180deg);
  transform: rotateZ(180deg); }

#local-player-name {
  display: none; }

.remotePlayer {
  width: 100%; }

.localVideoPlayerButton {
  margin-top: 12px;
  font-size: 0.8rem; }

.player {
  width: 1156px;
  height: 600px;
  -moz-transform: scale(100%, -100%);
  -webkit-transform: scale(100%, -100%);
  -o-transform: scale(100%, -100%);
  -ms-transform: scale(100%, -100%);
  transform: scale(100%, -100%); }

.playersContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 60px;
  max-width: 100%;
  height: 100%;
  min-width: 1156px;
  min-height: 600px; }
  .playersContainer #fullscreenButton {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2; }

.player-name {
  display: none; }

#connectPanel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  margin: auto; }

#pausePanel {
  position: absolute;
  bottom: 12px;
  z-index: 2; }
  #pausePanel.differentPos {
    position: unset;
    width: unset;
    font-size: 0.8rem;
    width: 100%;
    margin-top: 12px; }
    #pausePanel.differentPos #pauseButton {
      width: 100%; }

#muteAudioIcon {
  position: absolute;
  right: 18px;
  top: 94px;
  color: white; }

#leaveChannel {
  position: absolute;
  top: 12px;
  left: 0px; }

#alerts {
  display: none; }

#sessionInfo {
  position: absolute;
  top: 12px;
  left: 180px;
  height: 36px;
  display: flex;
  align-items: center; }

#questionControls {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: auto;
  margin-top: 20px;
  text-align: center;
  position: relative; }
  #questionControls .toggleQuestions {
    margin-top: 12px; }

#pauseClickProtection {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgba(43, 47, 62, 0.8);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center; }

#questionsHidden {
  display: flex;
  flex-direction: column;
  align-items: center; }
  #questionsHidden .secondText {
    margin-top: 24px;
    color: white; }

#answerPanel {
  flex-direction: column;
  margin-top: 12px;
  width: 600px; }
  #answerPanel #answerButtons {
    display: flex;
    justify-content: center;
    flex-direction: column; }
    #answerPanel #answerButtons button {
      margin-left: 50px;
      margin-right: 50px; }
    #answerPanel #answerButtons i {
      font-size: 0.8rem;
      margin-left: 12px; }

.callPanel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1200px;
  margin: auto;
  margin-top: auto;
  margin-top: 20px;
  text-align: center;
  flex-direction: column; }

#bgVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%; }

#fullScreenContainer {
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center; }

.fullScreenCallContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center; }
  .fullScreenCallContainer .callFullscreenClose {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center; }
    .fullScreenCallContainer .callFullscreenClose i {
      font-size: 24px; }
  .fullScreenCallContainer .remotePlayer {
    display: flex;
    justify-content: center;
    align-items: center; }
    .fullScreenCallContainer .remotePlayer div {
      width: 100%;
      height: 100%; }
  .fullScreenCallContainer .player {
    width: 100%;
    height: 100%; }

#vrcoach2018_gotoSelection {
  flex-direction: column;
  margin-top: 20px; }
  #vrcoach2018_gotoSelection .sceneSelection {
    margin-top: 12px;
    display: flex;
    gap: 20px; }

.moodSelectionContainer {
  margin-top: 12px;
  display: flex;
  gap: 20px;
  margin-bottom: 20px; }

#vrcoach2018_overview {
  display: flex;
  gap: 12px;
  margin-bottom: 20px; }
  #vrcoach2018_overview .overviewContainer {
    gap: 20px;
    display: flex; }
    #vrcoach2018_overview .overviewContainer button {
      width: 120px; }

/*# sourceMappingURL=vrcoach.css.map */
