@-webkit-keyframes fadeIn { from { opacity: 0; } to { opacity: 0.8; } }
@-moz-keyframes fadeIn { from { opacity: 0; } to { opacity: 0.8; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 0.8; } }

.fade-in {
  opacity: 0;
  
  -webkit-animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-delay: 0.5s;
  
  -moz-animation: fadeIn ease-in 1;
  -moz-animation-fill-mode: forwards;
  -moz-animation-duration: 0.3s;
  -moz-animation-delay: 0.5s;
  
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
  animation-delay: 0.5s;
}

#splash {
  background: #ffffff;
  background-size: cover;
  background-attachment: fixed;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  text-align: center;
  align-content: center;
  font-family: sans-serif;
  font-size: 14pt;
}

#splash .logo {
  width: 200px;
}

#splash {
  font-family: sans-serif;
}

#splash .instructions {
  text-align: left;
  margin: 0 auto;
  width: 600px;
}

#settings {
  background: #ffffff;
  background-size: cover;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding-left: auto;
  z-index: 500;
  text-align: left;
  align-content: left;
  font-family: sans-serif;
  font-size: 14pt;
}

#settings .header {
  height: 40px;
  font-size: 20pt;
  margin: 0;
}

#settings .header div {
  float: right;
  padding-left: auto;
  margin: 0;
  padding-top: 7px;
}

#settings div {
  padding: 10px 30px 0px 20px;
  margin: 0;
}

#settings .header .closeButton {
  float: left;
}

#settings .header .closeButton svg {
  cursor: pointer;
  width: 20px;
  height: 20px;
  padding: 5px;
  margin: 5px;
}
#settings .header .closeButton path {
  fill: #888888;
}
#settings .header .closeButton:hover path {
  fill: #000000;
}

#outputCanvas {
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

#outputBox {
  background: #001111;
  position:fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#screenshots {
  width: 192px;
  height: 300px;
  padding-bottom: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

#settings .header {
  padding: 0;
  margin: 0;
}
