/*
text font size:
  t1 - 1.5vw
  t2 - 1vw
  t3 - 1.3vw

*/
body {
  background-color: #121212;
  color: #fff;
  font-family: "Lato", sans-serif;
  margin: 0;
  text-align: center;
}
.rocket-page {
  background-color: #1e1e1e;
  border-radius: 30px;
  width: 60vw;
  height: 40vw;
  margin-top: 3vh;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.rocket-page > .img {
  width: 30%;
  height: 100%;
  float: left;
  /*margin: 4%;*/
  background-size: cover;
  background-position: center;
  border-radius: 30px 0 0 30px;
}
.rocket-menu {
  float: left;
  text-align: center;
  width: 70%;
}
#errorscreen {
  display: flex;
  width: 100%;
  height: 100%;
  margin: auto;
  align-items: center;
  justify-content: center;
}
#search{
  width: fit-content;
  height: 4vh;
}
.desc{
  height: 87%;
  overflow-x: hidden;
  overflow-y: auto;
  margin-left: 4%;
  margin-right: 4%;
}
::-webkit-scrollbar {
  background-color: #121212;
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #121212;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #a0a0a0;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #afafaf;
}
.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;
}
.footer {
  font-size: 16px;
}

.niewidzialny {
  display: none;
  z-index: -99999;
  animation: znikane 1s step-end;
}
.widzialny {
  display: block;
  z-index: 9999;
}
#loader,
#error {
  position: absolute;
  background-color: #121212;
  width: 100vw;
  height: 100vh;
  top: 0;
  z-index: 9999;
  margin: auto;
}
.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;
  }
}

/*---------------------RWD--------------------
--------------------RESPONSIV-----------------*/
@media only screen and (max-width: 600px) {
  /* For Phones: */
  .rocket-page{
    width: 90vw;
    height: 50vh;
    font-size: 65%;
  }
  .rocket-menu{
    font-size: 9px;
  }

}
@media only screen and (min-width: 600px) {
  /* For tablets: */

}
@media only screen and (min-width: 768px) {
  /* For desktop: */
}

table,
th,
td {
  border: 1px solid white;
}
table{
    border-collapse: collapse;
    width: 99%;
}
