*
{
    margin: 0;
    padding: 0;
}


html,
body
{
    overflow: hidden;
    font-family: 'Helvetica LT UltraCompressed';

}

@font-face {
  font-family: 'Helvetica LT UltraCompressed';
  src:  url(assets/fonts/aa826bad4b6306ce.woff2) format('woff2'),
        url(assets/fonts/656811b733ea9e99.woff) format('woff');
}

#level-background {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: -1;
  transition: backdrop-filter 1s;
}

#level-overlay {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 99;
  opacity: 1;
  transition: opacity 1s;
  /* z-index: 99999; */

  display: flex;
  justify-content:space-evenly;
  flex-direction: column;
  align-items: center;
}

#button-row {
display: flex;

  flex-direction: row;
  width: 100vw;
  justify-content: space-evenly;
  
}
#gender-background {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: -1;
  transition: backdrop-filter 1s;
}

#gender-overlay {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 99;
  opacity: 1;
  transition: opacity 1s;
  /* z-index: 99999; */

  display: flex;
  justify-content:space-evenly;
  flex-direction: column;
  align-items: center;
}

#button-row2 {
  flex-direction: row;
  display: none;
  width: 100vw;
  justify-content: space-evenly;
  
}

.lil-gui {
  font-family: Arial, Helvetica, sans-serif !important;
}

#yes {
  background-color: green;
}

#no {
  background-color: red;
}

#female, #skip {
  /* female pink */
  background-color: #d27ba9 !important;
  box-shadow: 0 2px #5f0133 !important;
}

#male, #next {
  /* male blue */
  background-color: #0059ff !important;
  box-shadow: 0 2px #002c7c !important;
}

#yes, #no, #female, #male, #skip, #next {
  width: 10rem;
  height: 100px;
  font-size: 2rem;
  border-radius: 10px;
  color: white;

}

#yes, #female, #next {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background-color: #4CAF50;
  box-shadow: 0 5px #3E8E41;
  transition: all 0.3s;
}

#no, #male, #skip {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background-color: #FF1234;
  box-shadow: 0 5px #aa0000;
  transition: all 0.3s;
}

button:hover {
  background-color: #3E8E41;
  transform: translateY(3px);
}

button#yes:active {
  box-shadow: 0 2px #4CAF50 !important;
  transform: translateY(5px);
}
button#no:active {
  box-shadow: 0 2px #FF1234 !important;
  transform: translateY(5px);
}

button#female:active {
 /* match for pink */
  box-shadow: 0 2px #f63ea0 !important;
  transform: translateY(5px);
}
button#male:active {
  /* match for blue */
  box-shadow: 0 2px #0059ff !important;
  transform: translateY(5px);
}

#level-overlay-text, #question {
  color: white;
  font-size: 3.5rem;
  text-align: center;
}

#level-overlay {
  display: none;
}

#question {
  margin: 2rem;
}

.webgl
{
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

#questionnaire-screen {
  color: white;
  font-size: 35px;
  overflow-x:hidden;
  overflow-y: scroll;
  display: flex;
  justify-content: start !important;
  letter-spacing: 1.5px;
  padding: 20px;
  width: 90% !important;
  font-family: 'Arial' !important;
}

.submit-button {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 25px;
  font-weight: bold;
  width:50%;
  margin-left:25%;
  text-transform: uppercase;
  color: #fff;
  background-color: #4CAF50;
  box-shadow: 0 5px #3E8E41;
  transition: all 0.3s;
  margin: 50px 25%;
}

.answer-label {
  font-size: 20px;
  padding: 20px 50px;
}

input[type=checkbox] {
  transform: scale(2) ;
  margin-right: 20px;
}

.question {
  padding: 20px 50px;
}

#questionnaire-screen>label {
  padding: 20px;
  font-size: 2.5em;
}

#loading-screen, #tutorial-screen, #questionnaire-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #202020;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }

  #tutorial-screen{
    z-index: 10000 !important;
  }

  
  #loading-bar {
    width: 0%;
    height: 20px;
    background-color: white;
    border-radius: 10px;
    left: 50%;
    top: 50%;
    position: absolute;
    transition: width 0.5s;
    transform: scaleX(0.9) translateX(-50%) translateY(-50%);
    transform-origin: left;
  }
  
  #loading-text {
    font-size: 36px;
    color: white;
    left:50%;
transform: translateX(-50%);

    position: relative;
    margin-bottom: 50px;
  }
  
  #loading-percentage {
    margin-top: 20px;
    position: relative;
left:50%;
transform: translateX(-50%);
    font-size: 24px;
    color: white;
  }
  

/**
 * Copyright 2015 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

 .demo-layout {
    position: absolute;
    z-index: 99999;
    height: 100vh !important;
    display: flex;
    font-size: 25px;
    flex-direction: column;
    justify-content: space-evenly !important;
    align-content:center!important;
    width: 100vw;
    background-color: #202020;
    background: url(assets/images/d37ed7d5154a6f68.jpg);
    background-size: cover;
 /*  center  */
  background-position: center;


 }

 #quickstart-sign-in {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 25px;
  font-weight: bold;
  width:50%;
  margin-left:25%;
  text-transform: uppercase;
  color: #fff;
  background-color: #4CAF50;
  box-shadow: 0 5px #3E8E41;
  transition: all 0.3s;
 }


input {
  padding: 15px;
  border-radius: 20px;
}

p {
  font-size: 35px;
}

/* Style for error message */



 #card {
    display:flex;
    flex-direction: column;
    color: white;
    width: 500px;
    left:50%;
    position: relative;
    transform: translateX(-50%);
  }

@media screen and (max-width: 700px) {
  #card {
    width: 325px;
  }
}

  a {
    text-decoration: none;
  }
  li a {
    text-decoration: underline;
    color: #0288d1;
  }
  .mdl-card {
    overflow: visible;
    display: flex;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .grecaptcha-logo {
    background-color: white;
  }
  .mdl-grid {
    max-width: 1024px;
    margin: auto;
  }
  .mdl-layout__header-row {
    padding: 0;
  }
  .quickstart-user-details-container, .user-details-container {
    margin-top: 20px;
    line-height: 25px;
  }
  #quickstart-sign-in-status, #sign-in-status, #quickstart-tenant-id {
    font-weight: bold;
  }
  pre {
    overflow-x: hidden;
    line-height: 18px;
  }
  code {
    white-space: pre-wrap;
    word-break: break-all;
  }
  h3 {
    background-size: 40px;
    padding-left: 50px;
    color: white;
  }
  .close-icon {
    cursor: pointer;
    float: right;
    width: 20px;
  }
  .gcip-heading {
    background: none;
    padding-left: 10px;
  }
  #verification-code-form {
    display:none;
  }
  #recaptcha-container {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  #verify-code-button, #cancel-verify-code-button {
    margin-left: 20px;
  }
  #sign-out-button {
    display: none;
  }
  #sign-in-card {
    z-index: 2;
  }
  .recaptcha-container {
    transform: scale(0.9);
    transform-origin:0 0;
    -webkit-transform:scale(0.9);
    -webkit-transform-origin:0 0;
  }
  .mfa-info-list-item {
    margin-bottom: 0px;
    margin-top: 0px;
    width: 300px;
  }
  .mdl-selectfield {
    height: 27px;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 200px;
  }
  .mdl-selectfield__select {
    background:
      linear-gradient(45deg, transparent 50%, rgba(0,0,0, 0.26) 50%),
      linear-gradient(135deg, rgba(0,0,0, 0.26) 50%, transparent 50%),
      linear-gradient(to right, transparent, transparent);
    background-color: transparent;
    background-position:
      calc(100% - 10px) calc(1em - 4px),
      calc(100% - 5px) calc(1em - 4px),
      100% 0;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    border-color: rgba(0,0,0, 0.12);
    border-radius: 0;
    border-style: solid;
    border-width: 0 0 1px 0;
    box-shadow: none;
    box-sizing: border-box;
    height: 26px;
    line-height: 18px;
    margin: 0;
    outline: none !important;
    padding-bottom: 4px;
    padding-top: 4px;
    width: 100%;
    -moz-appearance:none;
    -moz-box-sizing: border-box;
    -webkit-appearance:none;
    -webkit-box-sizing: border-box;
  }
  .mdl-selectfield__label {
    color: rgba(0,0,0, 0.26);
    display: block;
    font-size: 16px;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: relative;
    text-align: left;
    top: -23px;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    width: 100%;
  }
  .mdl-selectfield__label.is-active {
    color: rgb(255,152,0);
    font-size: 12px;
    top: -40px;
  }
  .blinking{
    animation: blinkingText 1.2s infinite;
  }
  @keyframes blinkingText {
    0% { color: #ff0000; }
    49% { color: transparent; }
    50% { color: transparent; }
    99% { color: #ff0000; }
    100% { color: #ff0000; }
  }
  
  #quickstart-tenant-modal-title {
    margin: 0px;
    padding: 2px;
    text-align: center;
  }

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