@import url("https://fonts.googleapis.com/css2?family=Trispace&display=swap");
html,
body {
  padding: 0;
  margin: 0;
  background-color: #121212;
  font-family: "Trispace", sans-serif;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  -ms-font-smoothing: antialiased !important;
}

::-moz-selection {
  /* Code for Firefox */
  color: #e2e2e2;
  background: #121212;
}

::selection {
  color: #e2e2e2;
  background: #121212;
}

#earth_div {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute !important;
  width: 100%;
}

nav {
  font-size: 0.9rem;
  position: absolute;
  top: 1.5rem;
  right: 0.5rem;
  left: 0.5rem;
  z-index: 9999999;
  background-color: #242424;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0.5rem;
  text-transform: uppercase;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

a {
  text-decoration: none;
  padding: 0.2rem;
  color: #e2e2e2;
}

.dataDiv {
  color: #e2e2e2;
  min-height: 25%;
  max-height: 30%;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  left: 0.5rem;
  z-index: 999999;
  background-color: #242424;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.pipDiv,
.apodDiv,
#warnMsg {
  display: none;
  position: relative;
  margin: 0 0.5rem 0 0.5rem;
  z-index: 9999999;
  padding: 1rem;
  height: auto;
  color: #e2e2e2;
  background-color: #242424;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-transition: display 1.2s ease;
  transition: display 1.2s ease;
}

#speaker,
#astroHeading {
  background-color: #242424;
  border-radius: 0.3rem;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  -webkit-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}

.rounded {
  border-radius: 0.5rem;
}

.tab {
  overflow: hidden;
  color: #e2e2e2;
  padding-top: 0.2rem;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  color: #e2e2e2;
  font-family: "Trispace", sans-serif;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tab button.active {
  color: #82b1ff;
  border-bottom: 1px solid #82b1ff;
  -webkit-transition: border 0.5s;
  transition: border 0.5s;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  font-size: 0.8rem;
  -webkit-animation: fadeEffect 1s;
          animation: fadeEffect 1s;
  /* Fading effect takes 1 second */
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type="radio"] {
    --active: #82b1ff;
    --active-inner: #fff;
    --focus: 2px #82b2ffad;
    --border: #bbc1e1;
    --border-hover: #82b1ff;
    --background: #fff;
    --disabled: #f6f8ff;
    --disabled-inner: #e1e6f9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 20px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    -webkit-transition: background 0.3s, border-color 0.3s, -webkit-box-shadow 0.2s;
    transition: background 0.3s, border-color 0.3s, -webkit-box-shadow 0.2s;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  }
  input[type="radio"]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  }
  input[type="radio"]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: 0.3s;
    --d-t: 0.6s;
    --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
  }
  input[type="radio"]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type="radio"]:focus {
    -webkit-box-shadow: 0 0 0 var(--focus);
            box-shadow: 0 0 0 var(--focus);
  }
  input[type="radio"]:not(.switch) {
    width: 20px;
  }
  input[type="radio"]:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type="radio"]:not(.switch):checked {
    --o: 1;
  }
  input[type="radio"] + label {
    font-size: 12px;
    line-height: 20px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }
  input[type="radio"] {
    border-radius: 50%;
  }
  input[type="radio"]:after {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    -webkit-transform: scale(var(--s, 0.7));
            transform: scale(var(--s, 0.7));
  }
  input[type="radio"]:checked {
    --s: 0.5;
  }
}

.we-pm-icon {
  background-image: url(../assets/iss-ani.png) !important;
  width: 50px !important;
  background-repeat: no-repeat;
  background-position: 30% 50%;
}

.we-pm-icon :hover {
  cursor: pointer;
}

.we-pp-wrapper,
.we-pp-tip {
  font-family: "Trispace", sans-serif;
  background-color: #242424;
  color: #e2e2e2;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.we-pp-close {
  background-repeat: no-repeat;
}

/**

  # 2016 by Nazar The Vis Azhar
  # nazarazhar.blogspot.com

**/
.stars,
.twinkling,
.clouds {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.stars {
  z-index: 0;
  background: #000 url("../assets/stars.png") repeat top center;
}

.twinkling {
  z-index: 0;
  background: transparent url("../assets/twinkling.png") repeat top center;
  -webkit-animation: move-twink-back 200s linear infinite;
          animation: move-twink-back 200s linear infinite;
}

.clouds {
  z-index: 0;
  background: transparent url("../assets/clouds.png") repeat top center;
  -webkit-animation: move-clouds-back 200s linear infinite;
          animation: move-clouds-back 200s linear infinite;
}

/* Go from zero to full opacity */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes move-twink-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}

@keyframes move-twink-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}

@-webkit-keyframes move-clouds-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 0;
  }
}

@keyframes move-clouds-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 0;
  }
}

.apodDiv img {
  border: 5px solid #121212;
  -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.apodDiv th {
  font-size: 0.8rem;
}

.basicLightbox {
  background: rgba(0, 0, 0, 0.9) !important;
  z-index: 999999999 !important;
}

@media only screen and (min-width: 992px) {
  nav {
    width: 30%;
    font-size: 1rem;
  }
  .dataDiv {
    width: 30%;
    right: 0.5rem !important;
    left: auto;
    z-index: 999999;
  }
  .pipDiv,
  .apodDiv,
  #warnMsg {
    width: 30%;
  }
  .apodDiv th {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 420px) and (max-width: 834px) {
  nav {
    width: 50%;
    font-size: 1rem;
  }
  .dataDiv {
    width: 50%;
    right: 0.5rem !important;
    left: auto;
    z-index: 999999;
  }
  .pipDiv,
  .apodDiv,
  #warnMsg {
    width: 50%;
  }
}
/*# sourceMappingURL=style.css.map */