.cinePanel {
	font-family: "Arial";
	color: white;
	position: absolute;
	width: 0px;
	height: 0px;
	background: black;
	display: none;
	z-index: 1;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.cinePanelImage {
	display: block;
}

.cinePanelCanvas {
    display: block;
}


.cinePanelControlsContainer {
    display: block;
    width: 100%;
    height: 2.5em;
    position: relative;
    bottom: 2.5em;
    color: white;
    background: rgb(0, 0, 0, 0.0);
}

.cinePanelControls {
    display: block;
    width: 100%;
    height: 2.1em;
    position: relative;
    bottom: 0em;
    color: white;
    background-image: linear-gradient(rgb(0, 0, 0, 0.0), rgb(0, 0, 0, 0.85));
}

.cinePanelProgressContainer { 
    top: 0em;
    width: 96%; 
    margin-left: 2%;
    margin-right: 2%;
    height: 0.4em; 
    background-color: rgb(0, 0, 0, 0); 
    text-align: center; 
    color: black; 
    position: relative;
    cursor: pointer;
} 

.cinePanelProgress { 
    width: 100%; 
    height: 50%;
    background-color: rgb(154, 161, 154); 
    text-align: center; 
    color: black; 
    position: relative;
    cursor: pointer;
    top: 25%
  } 

  .cinePanelProgress:hover { 
    height: 100%; 
    top: 0%;
  } 

  .cinePanelLoading{ 
    top: 0em;
    width: 75%; 
    height: 100%; 
    background-color:white; 
    color: black; 
  } 

  .cinePanelPlayPause{ 
    height: 90%; 
    position: relative;
    padding-left: 2%; 
    opacity: 0.8;
  } 

  .cinePanelPlayPause:hover {
      cursor: pointer;
      opacity: 1.0;  
  }

  .cineDirection{ 
    height: 90%; 
    position: relative;
    opacity: 0.8;
  } 

  .cineDirection:hover {
    cursor: pointer;
    opacity: 1.0;  
}

  .cinePanelFrameControl{
    position: relative;
    width: 2em;
  }

  .cinePanelLoadingLabel{
      color: white;      
      text-align: center;
      vertical-align: center;
      float: right;
      padding-top: 0.2em;
      padding-right: 1em;
  }

.cinePanelFpsLabel {
    color: white;
    text-align: center;
    vertical-align: top;
    display: inline-block;
    margin: 0em;
    padding-left: 0.5em;
    padding-top: 0.2em;
}

.cinePanelFtvLabel {
  color: white;
  text-align: center;
  vertical-align: top;
  display: inline-block;
  margin: 0em;
  padding-left: 0.1em;
  padding-top: 0.2em;
}

.currentFrameLabel {
    color: white;
    text-align: right;
    vertical-align: top;
    display: inline-block;
    margin: 0em;
    padding-left: 0.5em;
    min-width: 3.5em;
    padding-top: 0.2em;
}

  .frameInput {
    display: inline-block;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding: 0.2em;
    border: 1px solid;
    font-size: 1em;
    color: white;
    background: rgb(0, 0, 0);
    width: 2em;
    height: 1em;
    margin-left: 0.3em;
    outline: none;
    vertical-align: top;
    margin-top: 0.2em;
  }

  .ftvCheck {
    display: inline-block;
    padding: 0.2em;
    border: 1px solid;
    font-size: 1em;
    color: white;
    background: rgb(0, 0, 0);
    width: 1em;
    height: 1em;
    margin-left: 1em;
    outline: none;
    vertical-align: top;
    margin-top: 0.5em;
  }

  .cineRightArrow{
    color: white;
    vertical-align: top;
    display: inline-block;
    height: 70%;
    padding-left: 0.5em;
    padding-top: 0.2em; 
    opacity: 0.8;
  }

  .cineLeftArrow{
    color: white;
    vertical-align: top;
    display: inline-block;
    height: 70%;
    padding-left: 1em;
    padding-top: 0.2em; 
    opacity: 0.8;
  }

  .cineLeftArrow:hover {
    cursor: pointer;
    opacity: 1.0;  
}

.cineRightArrow:hover {
    cursor: pointer;
    opacity: 1.0;  
}

.exitButton {
	color: white;
    vertical-align: top;
    height: 70%;
    padding-left: 1em;
    padding-top: 0.2em; 
    opacity: 0.8;
    float: right;
}

.exitButton:hover {
    cursor: pointer;
    opacity: 1.0;  
}


#toggle {
    /* opacity 0 so that it can be read by screen readers */
    opacity: 0;
  }
  
  #label {
    display: inline-block;
    background: white;
    width: 2em;
    height: 1em;
    border-radius: 0.3em;
    position: relative;
    cursor: pointer;
    background: #cccccc;
    vertical-align: top;
    margin-top: 0.2em;
  }
  
  #switch {
    position: absolute;
    width: 0.9em;
    height: 0.9em;
    margin-top: 0.06em;
    margin-left: 0.06em;
    border-radius: 0.3em;
    background: gray;
    box-shadow: 5px 0px 28px -9px rgba(0, 0, 0, 0.75);
    transition: transform 0.2s ease-in;
  }
  
  #toggle:checked ~ #label #switch {
    background: #2ecc71;
    transform: translatex(1em);
    transition: transform 0.2s ease-in;
  }


