/* General */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Zain';
}

.center {
  text-align: center;
}

a {
  color: #f5f8fd;
  text-decoration: none;
  font-size: 10px;
}

a:hover {
  color: #529af8;
  text-decoration: none;
}

p {
  font-size: large;
  color: #f5f8fd;
}


h1 {
  font-size: xx-large;
  color: #f5f8fd;
}

img {
  pointer-events: none;
}



table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
  background-color: #f2f2f2;
  opacity: 0.6;
}

table,
th,
td {
  border: 1px solid #020E1E;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #529af8;
  font-size: 20px;
  font-weight: bolder;
}


.search-table-outter {
  overflow-x: scroll;
}

th,
td {
  min-width: 80px;
}

th:first-child,
td:first-child {
  position: sticky;
  left: 0px;
  background-color: #529af8;
  font-size: 20px;
  font-weight: bolder;
}

.img-responsive {
  width: 100%;
  height: auto;
}

@media (min-width: 576px) {
  img {
    max-width: 90%;
  }
}

@media (min-width: 768px) {
  img {
    max-width: 70%;
  }
}

@media (min-width: 992px) {
  img {
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  img {
    max-width: 40%;
  }
}

@media (min-width: 1600px) {
  img {
    max-width: 30%;
  }
}


/*--------------------------------------------------------------
# solar Section
--------------------------------------------------------------*/
#solar {
  padding: 10px;
  width: 100%;
  background: url("../assets/img/ball-wed.svg"), url("img/swimming-orbit-ani-2.svg");
  background-blend-mode: luminosity;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-color: #020E1E;
  z-index: 1;
}

/* Footer */

.footer {
  padding: 10px;
  width: 100%;
  background-color: #2e2e2e;
  font-size: medium;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
}

.footer_text {
  font-size: medium;
  color: #ffff;
}

#footer .copyright {
  font-size: medium;
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: medium;
  color: #ffff;

}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}

/*--------------------------------------------------------------
# by: Gamal Nabih |  1LineArt Studio | https://1lineart.com
--------------------------------------------------------------*/