body
{
    
     -moz-user-select: none; /* Firefox */
      -ms-user-select: none; /* Internet Explorer */
   -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
  -webkit-user-select: none; /* Chrome, Safari, and Opera */
  -webkit-touch-callout: none;
}
.add-hotspot{
    cursor: crosshair
}
.spanLink
{
    cursor: pointer;
    text-decoration: underline;
}
.center-screen {
      position: absolute;
      width: 100%;
      height: 100%;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;

}
.pnumoniaAnswers
{
    margin-top: 10px;
    max-height: 300px;
    max-width: 275px;
    overflow-y: auto;
}
.zoomButton
{
    cursor: pointer;
    
}
.zoomButton:hover
{
    color: #b2b2b2;
}
.imageContainer
{
 margin-bottom: 10px;  position: relative; border-radius:10px; background: rgba(0,0,0,0.8); color: white; padding: 15px; font-size: 17px; float:left; margin-right: 20px;
}
.pageContent
{
    top:80px; left:20px; z-index: 100; position: fixed;
    height: 95%;
    width:98%;
    overflow-y: auto;
}
.zoomedBkg{
    background-color: rgba(0,0,0,0.9);
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height:100%;
    z-index: 100000;
}
.zoomedImage{
    position: fixed;    
    z-index: 100001;
}
.slidecontainer {
    z-index: 10000;
    position: fixed;
    width:100%;
    bottom:20px;
}

.videotitle
{
    margin-bottom: 10px;
}

.iconButton
{
font-size:24px;
cursor:pointer;
color: white;
position: absolute; z-index: 10000;top:5px;left:5px;
}

.iconButton:hover
{
    
    color: #bbb;
}

.labelListItem
{
     -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
    cursor: pointer;
    padding:3px;
    margin-left:10px;
    margin-right:10px;
}
a:visited { color: white; }
a { color: white; }
.labelListContainer
{
    background: rgba(0,0,0,0.8); overflow:auto;  margin-top: 10px; overflow-x: hidden;
    min-width: 200px; font-size: 15px; color:white; max-height: 300px;
    padding-top: 5px; padding-bottom: 5px; z-index: 10000;
    border-radius: 10px;
}
.labelListItem-selected
{
    background: #333;
}
.quizLabel{
    background: rgba(0, 0, 0, 0.5);
    padding-top: 1px;
    padding-bottom:  1px;
    padding-left: 10px;
    padding-right: 10px;
color: white;    z-index: 100000; position:absolute;
border-radius: 15px;
}
.quizLabel2{
    background: rgba(0, 0, 0, 0.5);
    padding-top: 1px;
    padding-bottom:  1px;
    padding-left: 10px;
    padding-right: 10px;
color: white;    z-index: 100000; position:absolute;
border-radius: 15px;
}
.choices
{
    cursor: pointer; height: 280px; margin-bottom: 10px; border-radius:10px; background: rgba(0,0,0,0.8); color: white; padding: 15px; font-size: 20px; float:left; margin-right: 20px;
}
.correctAnswer{
    background-color:  green;
}
.incorrectAnswer{
    background-color:  red;
}
.correctAnswer:hover{
    background-color:  green;
}
.incorrectAnswer:hover{
    background-color:  red;
}
.correctQuizLabel{
    background-color:  green;
    padding: 18px;
color: white;    z-index: 100000; position:fixed;
border-radius: 20px;
}
.incorrectQuizLabel{
    background-color:  red;
    padding: 18px;
color: white;    z-index: 100000; position:fixed;
border-radius: 20px;
}
/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}
/* The slider itself */
.slider {
    -webkit-appearance: none;
    width: 90%;
    height: 15px;
    border-radius: 5px;  
    background: #222;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */ 
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%; 
    background: #eee;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #eee;
    cursor: pointer;
}
#sceneDiv
{
     background-image: radial-gradient(#222, #aaa);
}
.buttons{
    cursor: pointer; border-radius:10px; background: rgba(0,0,0,0.8); color: white; padding: 15px; font-size: 20px;  z-index: 10000;
}
.buttons:hover{
    background: rgba(0,0,0,0.5);
}
.welcome-section {
      position: absolute;
      width: 100%;
      height: 100%;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #eee;

}

@keyframes spinner {
  to {transform: rotate(360deg);}
}
 
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #07d;
  animation: spinner .6s linear infinite;
}

#welcome{
      height: 130px;
      width: 100%;
      background-color: #fc0;
      text-align: center;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 20px;
}

.pointer
{
    cursor:pointer;
}
.labelListItem
{
    cursor: pointer;
    padding:3px;
    margin-left:10px;
    margin-right:10px;
}
.labelListItem-selected
{
    background: #333;
}

.label{
    background: rgba(0, 0, 0, 0.8);
    padding:10px;
    color: white;  border-radius:10px;  z-index: 100000; position:fixed;
}

.lists
{
    list-style: none;    
}

input.startbtn{
      //position: absolute;
      width: 150px;
      height: 50px;
      font-size: 18px;
}

#sceneDiv{
      display: block;
      position: absolute;
      height: 100%;
      width: 100%;
}
    
.credit{
      position: absolute;
      bottom: 5px;
      width: 100%;
      height: auto;
      text-align: center;
      font-size: 20px;
}

@media screen and (max-width: 620px){
    .buttons{
    cursor: pointer; border-radius:10px; background: rgba(0,0,0,0.8); color: white; padding: 10px; font-size: 10px;  z-index: 10000;
}
      .credit{
            position: absolute;
            bottom: 5px;
            width: 100%;
            height: auto;
            text-align: center;
            font-size: 10px;
      }
  
      #welcome{
            height: 130px;
            width: 100%;
            background-color: #fc0;
            text-align: center;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 15px;
      }
}

@media screen and (max-height: 620px) {
    
      .credit{
            position: absolute;
            bottom: 5px;
            width: 100%;
            height: auto;
            text-align: center;
            font-size: 10px;
      }
  
      #welcome{
            height: 130px;
            width: 100%;
            background-color: #fc0;
            text-align: center;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 15px;
      }
}