/* Styles for Global HTML Tags */
body {
  width: 100vw;
  height: 100vh;
  font-family: "Source Sans Pro", "Helvetica", "sans-serif";
  color: white;
  background: url(../img/aurora.png) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
table, td, th, tr {
  background: transparent;
}

tr.thead { 
  background-color: #202020;
  }

tr.hv:hover {
  background-color: #404060;
}

th {
  background: #303030;
  }

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}
button:focus {
  outline: none;
}
a {
  color: #ddddff;
  text-decoration: none;
}
code:hover {
  color: #c7254e;
}
a:hover {
  color: #aaaaff;
  outline: none;
  text-decoration: none;
}
a:focus {
  outline: none;
}
a:click {
  color: inherit;
  outline: none;
  text-decoration: none;
}
code {
  background-color: transparent;
  color: lightskyblue;
}

/* Quick Styles */
.thin {
  font-weight: 200;
}
.light {
  font-weight: 300;
}
.medium {
  font-weight: 400;
}
.spaceOut {
  letter-spacing: 0.75px;
}
.redify {
  color: #9d1717;
}
.leftBar {
  padding-left: 10px;
  border-left: 3px solid #9d1717;
}
.flank {
  position: relative;
  top: -6px;
  padding: 0 5px;
}
.rot-left {
  transform: rotateZ(90deg);
}
.rot-right {
  transform: rotateZ(-90deg);
}
.titleMajor {
  font-size: 64pt;
}
.titleMinor {
  font-size: 32pt;
}
.titleMicro {
  font-size: 24pt;
}
.titleNano {
  font-size: 20pt;
}
.titlePico {
  font-size: 16pt;
}
.titleFemto {
  font-size: 12pt;
}
.titleAtto {
  font-size: 10pt;
}
.glow {
  color: lightskyblue;
  filter: drop-shadow(0 0 3px lightskyblue);
}
.superScript {
  line-height: inherit;
  vertical-align: super;
  position: relative;
  top: -6px;
}
/*
@media (max-width: 768px) {
  .titleMinor {
    font-size: 24pt;
  }
  .titleMajor {
    font-size: 48pt;
  }
  .titleMicro {
    font-size: 20pt;
  }
  .titleNano {
    font-size: 18pt;
  }
}
*/

/* Title Container */
#title-container {
  position: absolute;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#title-subcontainer {
  display: table;
  margin-top: 10px;
}
#title-subcontainer:hover {
  text-shadow: 0 0 2px white;
}
#title-bl {
  height: 15pt
}
#title-nw {
  margin-left: -2px;
}
#menu-btn-container {
  position: absolute;
  right: 40px;
  top: 30px;
}

/* Content Container */
#content-container {
  position: absolute;
  padding-left: 250px;
  top: 94px;
  width: 100%;
  height: calc(100% - 94px);
  overflow-y: scroll;
  padding-right: 0;
  padding-bottom: 60px;
  -webkit-transition: all 0.75s ease;
  -moz-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  transition: all 0.75s ease;
}
#content-container.toggled {
  padding-left: 0px;
}
#sidebar-container {
  z-index: 1000;
  position: absolute;
  width: 250px;
  left: 250px;
  margin-left: -250px;
  overflow-y: hidden;
  overflow-x: hidden;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.75s ease;
  -moz-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  transition: all 0.75s ease;
}
#content-container.toggled #sidebar-container {
  width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0);
}
#sidebar-container ul {
  position: absolute;
  top: 15px;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#sidebar-container ul li {
  text-indent: 15px;
  line-height: 60px;
}
.selectedItem {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
#page-container {
  font-size: 16pt;
  height: 95%;
  padding: 0 20px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Statistics */
.summaryEnclosure {
  width: 100%;
  padding: 0;
  margin-top: 20px;
}
.summaryEnclosure:hover .headerTitle {
  color: #c7254e;
}
.summaryEnclosure:hover .summaryHeader {
  background-color: rgba(0,0,0,0.25);
}
.summaryEnclosure:hover .summaries {
  background-color: rgba(0,0,0,0.25);
}
.summaryHeader {
  width: 100%;
  display: inline-block;
  margin-bottom: -6px;
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px 5px 0 0;
  background-color: rgba(0,0,0,0.1);
}
.summaries {
  width: 100%;
  display: inline-block;
  padding: 10px;
  border-radius: 0 0 5px 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0,0,0,0.1);
  margin-bottom: -5px;
}
.summaryContainer {
  min-width: 200px;
  width: 19%;
  float: left;
  display: inline-table;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0,0,0, 0.5);
}
.summaryContainer:not(:last-child) {
  margin-right: 1.25%;
}
.moreInfo span {
  opacity: 0.75;
}
.moreInfo:hover span {
  opacity: 1;
  text-shadow: 0 0 3px white;
}
.value {
  display: inline-block;
  width: 100%;
  line-height: 90px;
  padding: 0 5px 5px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.key {
  display: inline-block;
  width: 100%;
  padding: 5px 0;
}

/* Downloads */
.downloadButton {
  min-width: 250px;
  display: table;
  margin: 0 auto;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0,0,0,0.25);
}
.downloadButton:hover {
  background-color: rgba(0,0,0,0.5);
}
.downloadButton:hover span code {
  color: #c7254e;
}
.downloadButton:hover .downloadTitle {
  color: white;
  filter: drop-shadow(0 0 3px white);
}
.downloadTitle {
  display: block;
  width: 100%;
  padding: 10px 5px;
}
.downloadSize {
  display: block;
  padding: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Top Candidates */
#tc-container {
  width: 100%;
  margin-top: 15px;
}

/* Table Container */
#table-container {
  width: 100%;
  margin-top: 15px;
  background-color: rgba(0,0,0,0.5);
}
.tableColumn {
  width: calc(45% + 28px);
  display: inline-table;
  float: left;
  margin-bottom: 20px;
}
.tableColumn:first-child {
  margin-right: 20px;
}
.rowContainer {
  width: 100%;
  padding: 7px 10px;
  background-color: rgba(0,0,0,0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.rowContainer:hover {
  background-color: rgba(0,0,0,0.75);
}
.rowContainer:hover span code {
  color: #c7254e;
}
.rowContainer:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.rowContainer:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.rowTitle {
  min-width: 50px;
  display: inline-block;
  float: left;
  width: 10%;
  position: relative;
  top: 3px;
}
.band {
  padding-left: 7px;
  padding-right: 7px;
  display: inline-table;
}
.band:not(:last-child) {
  margin-right: 15px;
}
.bandName {
  display: inline-block;
  opacity: 1;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 7px;
}
.indicatorBulb {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  position: relative;
  top: -1px;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  margin-left: 7px;
  transition: all 0.5s ease;
}
.solidBlueBulb {
  background: #e2d3ff;
  background: gradient-gradient(#ffffff, #9377b9);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.1),  0 1px 0 rgba(255,255,255,0.1),  0 0 15px rgb(154, 117, 255),  inset 0 0 12px rgba(140, 61, 247, 0.8),  inset 0 -2px 5px rgba(214, 185, 253, 0.3),  inset 0 -3px 8px rgba(185, 188, 253, 0.5);
}
.solidGreenBulb {
  background: #adffc3;
  background: gradient-gradient(#ffffff, #77b9a2);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.1),  0 1px 0 rgba(255,255,255,0.1),  0 0 12px rgb(100, 253, 135),  inset 0 0 10px rgba(10, 224, 100, 0.8),  inset 0 -2px 5px rgba(104, 255, 145, 0.3),  inset 0 -3px 8px rgba(145, 255, 166, 0.5);
}
.blinkingBulb {
  animation: blinkBlue 2s infinite;
}
@keyframes blinkBlue {
  0% {
    background: #6b798e;
    background: gradient-gradient(#36455b, #283446);
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.2),  0 1px 0 rgba(255,255,255,0.1),  0 0 10px rgba(185,231,253,0),  inset 0 0 8px rgba(0,0,0,0.9),  inset 0 -2px 5px rgba(0,0,0,0.3),  inset 0 -5px 5px rgba(0,0,0,0.5);
  }
  50% {
    background: #b9f3fe;
    background: gradient-gradient(#ffffff, #77a1b9);
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.1),  0 1px 0 rgba(255,255,255,0.1),  0 0 10px rgba(100,231,253,1),  inset 0 0 8px rgba( 61,157,247,0.8),  inset 0 -2px 5px rgba(185,231,253,0.3),  inset 0 -3px 8px rgba(185,231,253,0.5);
  }
  100% {
    background: #6b798e;
    background: gradient-gradient(#36455b, #283446);
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.2),  0 1px 0 rgba(255,255,255,0.1),  0 0 10px rgba(185,231,253,0),  inset 0 0 8px rgba(0,0,0,0.9),  inset 0 -2px 5px rgba(0,0,0,0.3),  inset 0 -5px 5px rgba(0,0,0,0.5);
  }
}
@media(max-width: 768px) {
  #content-container {
    padding-left: 0;
  }
  #content-container.toggled {
    padding-left: 250px;
  }
  #sidebar-container {
    width: 0;
  }
  #content-container.toggled #sidebar-container {
    width: 250px;
    overflow-x: hidden;
  }
}

/* Sweep To Right */
.sweep {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.sweep:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.sweep:hover {
  text-shadow: 0 0 2px white;
/*  font-weight: 300;*/
}
.sweep:hover:before, 
.sweep:focus:before, 
.sweep:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Switch Container */
#switch-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
}
#switch input {
  filter: alpha(opacity=0);
  cursor: pointer;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100%;
}
#switch {
  width: 85px;
  height: 30px;
  margin: auto;
  position: relative;
}
#switch label {
  display: block;
  width: 65%;
  height: 100%;
  background: #1F2736;
  background: linear-gradient(#121823, #161d2b);
  border-radius: 30px 30px 30px 30px;
  box-shadow: inset 0 3px 8px 1px rgba(0,0,0,0.5),  inset 0 1px 0 rgba(0,0,0,0.5),  0 1px 0 rgba(255,255,255,0.2);
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
}
#switch input ~ label i {
  display: block;
  height: 25px;
  width: 25px;
  position: absolute;
  left: 0;
  top: 5px;
  z-index: 2;
  border-radius: inherit;
  background: #283446;
  background: linear-gradient(#36455b, #283446);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),  0 0 8px rgba(0,0,0,0.3),  0 12px 12px rgba(0,0,0,0.4);
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
}
#switch label + span {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background: #283446;
  background: gradient-gradient(#36455b, #283446);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.2),  0 1px 0 rgba(255,255,255,0.1),  0 0 10px rgba(185,231,253,0),  inset 0 0 8px rgba(0,0,0,0.9),  inset 0 -2px 5px rgba(0,0,0,0.3),  inset 0 -5px 5px rgba(0,0,0,0.5);
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  z-index: 2;
}
#switch input:checked ~ label + span {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  z-index: 2;
  background: #b9f3fe;
  background: gradient-gradient(#ffffff, #77a1b9);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.1),  0 1px 0 rgba(255,255,255,0.1),  0 0 10px rgba(100,231,253,1),  inset 0 0 8px rgba( 61,157,247,0.8),  inset 0 -2px 5px rgba(185,231,253,0.3),  inset 0 -3px 8px rgba(185,231,253,0.5);
}
#switch input:checked ~ label i {
  left: auto;
  left: 40%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),  0 0 8px rgba(0,0,0,0.3),  0 8px 8px rgba(0,0,0,0.3),  inset -1px 0 1px #b9f3fe;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

/* Footer Container */
#footer-container {
  position: absolute;
  bottom: 0;
  width: 100%;
}
#footer-text {
  position: absolute;
  width: 100%;
  bottom: 25px;
  opacity: 0.5;
}
#footer-bkg img {
  filter: invert(1);
  -webkit-filter: invert(1);
  -moz-filter: invert(1);
  -o-filter: invert(1);
  opacity: 0.1;
  width: 100%;
}


