body {
  background-color: #121212;
  color: #fff;
  font-family: "Lato", sans-serif;
  margin: 0;
}
#Menu {
  background-color: #1e1e1e;
  padding: 12px;
  margin-bottom: 20px;
}
.MenuElement {
  /*border-left: #fff solid 5px;*/
  padding: 0px 10px 0px 10px;
}
.MenuElement:last-child {
  border-left: #fff solid 5px;
}
.niewidzialny {
  display: none;
  z-index: -99999;
  animation: znikane 1s step-end;
}
.widzialny {
  display: block !important;
  z-index: 9999;
}
#errorscreen {
  display: flex;
  width: 100%;
  height: 100%;
  margin: auto;
  align-items: center;
  justify-content: center;
}



/*---------------------RWD--------------------
--------------------RESPONSIV-----------------*/
@media only screen and (max-width: 600px) {
  /* For Phones: */
  #Menu, #Menu > select{
    font-size: 70%;
  }
  .footer{
    font-size: 85%;
  }
  /* Track */
  ::-webkit-scrollbar-track {
    background-color: #121212;
    border-radius: 10px;
    width: 15px;
  }

}
@media only screen and (min-width: 600px) {
  /* For tablets: */
  .TopName > h1 {
    font-size: 35px;
  }

}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .TopName > h1 {
    font-size: 70px;
  }
}


/* Handle */
::-webkit-scrollbar-thumb {
  background: #a0a0a0;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #afafaf;
}

::-webkit-scrollbar {
  background-color: #121212;
  width: 20px;
  border-radius: 10px;
}

.footer {
  height: 7%;
  width: 100%;
  margin: 0;
  background-color: #1e1e1e;
  border-radius: 30px 30px 0px 0px;
  margin-top: 3vh;
}
a {
  color: #a0a0a0 !important;
}
a:hover {
  color: #fdd935 !important;
}
a:active {
  color: #a0a0a0 !important;
}
a:focus {
  color: #a0a0a0 !important;
}
.TopName > h1 {
  /*font-size: 4em;*/
  margin-top: 2%;
  margin-bottom: 1%;
}
.footer {
  font-size: 16px;
}

#loader,
#error {
  position: absolute;
  background-color: #121212;
  width: 100vw;
  height: 100vh;
  top: 0;
  z-index: 9999;
  margin: auto;
  display: none;
}
.lds-ring {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 128px;
  height: 128px;
  margin: 16px;
  border: 16px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes znikane {
  from {
    opacity: 100;
  }
  to {
    opacity: 0;
    display: none;
  }
}
#NasaElement{
  color: white;
  background-color: #1e1e1e;
  border: none;
  width: 70px;  
}
#NasaElement > option{
   width: 200px;
}
#NasaElement > option:first-child{
  display: none;
}
