  @font-face {
      font-family: "Manrope-Medium";
      src: url("../font/Manrope-Medium.ttf");
  }
  @font-face {
      font-family: "Manrope-Light";
      src: url("../font/Manrope-Light.ttf");
  }

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

html{
  height: 100%;
  overflow: hidden;
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Manrope-Medium, Arial;
  height: 100%;
  width: 100%;
  position: relative;
  color: #24c1be;
  background: #050505;
  touch-action: none;
  flex-direction: column;
  font-size: max(12px, 2vh);
  overflow: hidden;
}

#display-container{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
}

#display-container > canvas{
  height: 100%;
  width: 100%;
}

#crosshair{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 1;
  pointer-events: none;
}

#crosshair svg {
  height: 10vh;
  width: 10vh;
  position: absolute;
  fill: none;
  stroke: #666;
  stroke-width: 1;
  filter: drop-shadow(1px 1px 1px rgb(0, 0, 0, 0.9));
}

#crosshair.star-tracking .crosshair-center{
  stroke: transparent;
}

#crosshair.hidden {
  display: none;
}
#crosshair.force-hide {
  display: none !important;
}

.constellation-label{
  opacity: 0.6;
  font-size: 0.55em;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 4px black;
  font-weight: lighter;
  color: #fff;
  transform: scaleY(0.8);
}

#day-slider{
  position: absolute;
  right: 0;
  height: 40vh;
  width: 5vh;
}

.block{
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}

.loader {
  width: 48px;
  height: 48px;
  border: 3px solid #b1b1b1;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  opacity: 0.4;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid;
  border-color: #006f6f transparent;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 




.pika-single {
    color: #fff;
    background: none;
    border: none;
    margin-left: -1px;
    font-family: Arial;
    font-weight: normal;
}

.pika-title{
  margin-bottom: 5%;
}

.pika-label {
    font-size: 18px;
    background: none;
    font-weight: normal;
}

.pika-prev,
.is-rtl .pika-next {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAQAAACGG/bgAAAAQ0lEQVR4Ae3KIQ4AIBTD0N0/IeHGI3UIRA3ut/Zl+ltXc5++htVAmIAwAWECwgSEKbgthEoIlRAqIVRCqINQB9nDgQd7ktwFo6UpWQAAAABJRU5ErkJggg==');
}

.pika-next,
.is-rtl .pika-prev {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAQAAACGG/bgAAAAP0lEQVQ4y+3TMQoAMAgEwfwfAvvjTZ1uGzuvHhBPPGczEG+FRqqRaqQaqUaqkX6QBmmjacvQ6qEVTjsh+xizebvlaWptGXZAAAAAAElFTkSuQmCC');
}

.pika-table th {
    color: #0d6262;

}

.pika-button {
    color: #999;
    background: #1d1d1d;
    outline: none !important;
    border-radius: 0 !important;

}

.pika-week {
    color: #999;
}

.is-today .pika-button {
    color: #000000;
    background: #999;
}

.is-selected .pika-button {
    color: #fff;
    background: #002e2e;;
    box-shadow: none;
}

.is-disabled .pika-button {
    color: #999;
    opacity: .3;
}

.pika-button:hover {
    color: #fff !important;
    background: #545454 !important;
}

abbr[title] {
    text-decoration: none;
}












#introduction{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 1em 2em 1em;
  z-index: 9999999999;
  background: #010509;
  overflow-y: auto;
  display: flex;
  justify-content: center;
}
#introduction-wrapper{
  max-width: 500px;
  margin-bottom: 20px;
}
#introduction #disclosure{
  font-size: 0.6em;
  font-style: italic;
  color: #a9a9a9;
}

#disclosure h3{
  font-size: 1.4em;
  transform: scaleY(0.8);
  font-weight: normal;
  font-style: normal;
}
#disclosure p {
  margin-left: 1.2em;
}


#introduction h1 {
  font-size: 2.5em;
    border-bottom: 1px solid rgb(81, 88, 91);
    line-height: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 200;
  transform: scaleY(0.8);
  font-family: Manrope-Light;
}

#introduction p {
  font-size: 1em;
  color: #a9a9a9;
  width: 100%;
}
#introduction small{
  font-size: 0.7em;
  font-style: italic;
  display: inline-block;
}

#page-progress{
  height: 8em;
  display: flex;
  align-items: flex-end;
}
#progress-content{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  transform: translateY(0);
  will-change: transform;
}
.progress-container{
  background: #2c2c2c;
  height: 3px;
  width: 80%;
  overflow: hidden;
}

#progress-bar{
  width: 100%;
  height: 100%;
  background: #2c9b9b;
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 5px 0 5px rgba(0, 0, 0, 0.5);
}

#progress-bottom{
  font-weight: 200;
  transform: scaleY(0.8);
}

#start-button{
  margin-top: 0.5em;
  height: 3em;
  width: 6em;
  background: #2c9b9b;
  border: 1px solid #00ffff;
  color: #0f1113;
  transform: scaleY(0.8);
  outline: none;
  font-size: 1.2em;
  box-shadow: 0 0 0.5em rgba(224, 224, 224, 0.5);
  opacity: 0;
}
#start-button.active{
  cursor: pointer;
}
a{
  color: #2c9b9b;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 0.05em;
  border-bottom: 1px solid #2c9b9b;

}

#copy-right-notice{
  font-size: 8px !important;
  position: fixed;
  bottom: 1em;
  right: 3em;
  text-align: right;
  color: gray;
  display: inline-block;
  background: #010509;
  width: auto !important;
}
#interface-container #copy-right-notice{
  right: initial;
  left: 2em;
}
#interface-container.portrait #copy-right-notice{
  right: initial;
  left: 0;
  width: 100%;
  text-align: center;
}
#copy-right-notice:hover{
  color: inherit;

}

#credits{
  list-style: none;
  font-size: 0.65em;
  margin-top: 2em;
  color: #a9a9a9;
}

#credits h3{
  font-size: 1.4em;
  transform: scaleY(0.8);
  font-weight: normal;
}

#credits li {
  margin-left: 1.5em;
}