.active_link {
  background-color: rgb(216, 216, 216);
  color: black;
}
html {
  scroll-behavior: smooth;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.airport {
  border-radius: 10px;
  margin-bottom: 30px;
}
.nav {
  padding: 1rem 2rem 0 2rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  /* justify-content: space-between; */
}
nav {
  border-bottom: 2px solid black;
  align-items: center;
}
.logo img {
  width: 10rem;
  height: 7rem;
  object-fit: cover;
}
.lists ul {
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 2rem;
}
.lists ul li {
  font-size: 2rem;
}
.lists ul li a {
  text-decoration: none;
  color: black;
  transition: all 0.4s ease;
}
.lists ul li a:hover {
  opacity: 0.5;
}
.top-panel {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.PANEL {
  padding: 0;
}
.form-inline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.main {
  padding: 0 2rem;
  margin-top: 1rem;
}
.Time {
  margin-top: 3rem;
}
.form1,
.form2 {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  gap: 1rem;
}
.gold-item {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.gold-item span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.gold-item sup {
  font-size: 14px;
}

.socialicon {
  margin-bottom: 5px;
  margin-right: 5px;
}
.panel {
  margin-bottom: 10px !important;
}
.code-logo {
  margin-right: 5px;
  width: 30px;
  height: 20px;
}
.gold-logo {
  margin-right: 5px;
  width: 32px;
  height: 32px;
}
.feature-bottom {
  padding-top: 25px;
  padding-bottom: 25px;
}
.panel .feature {
  padding: 3px 0 4px 0;
  font-weight: normal;
}
.date {
  padding: 3px 0 4px 0;
  font-weight: normal;
}
.col-panel {
  padding-right: 5px;
  padding-left: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #5a5a5a;
}
.widead {
  padding-bottom: 10px;
  text-align: center;
}
.miladi {
  color: #ff0000;
  font-weight: bold;
}
.utc::after {
  content: " UTC";
}
.pickdate {
  font-size: 20px;
  color: #ee5588;
}
.same_val::before {
  display: inline-block;
  font-family: "Glyphicons Halflings";
  line-height: 1;
  color: #0368ff;
  content: "\e250";
}
.down_val::before {
  display: inline-block;
  font-family: "Glyphicons Halflings";
  line-height: 1;
  color: #e91d1d;
  content: "\e252";
}
.up_val::before {
  display: inline-block;
  font-family: "Glyphicons Halflings";
  line-height: 1;
  color: #2bac16;
  content: "\e253";
}
.price {
  color: #cc0000;
  font-weight: bold;
  font-size: 14px;
}
.av_table {
  font-weight: bold;
  font-size: 12px;
}
.loader {
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #3498db;
  border-bottom: 4px solid #3498db;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
footer {
  direction: rtl;
  background-color: #202020;
  padding: 2rem;
}
.englis {
  color: white;
}
.englis h1 {
  font-size: 2.5rem;
}
.englis a {
  text-decoration: none;
  font-size: 2rem;
  color: #0368ff;
}
.alman {
  color: white;
}
.alman h1 {
  font-size: 2.5rem;
}
.alman a {
  text-decoration: none;
  font-size: 2rem;
  color: #0368ff;
}
.modal {
  position: absolute;
  top: 30%;
}
.modal-content {
  transition: all 1s ease;
}
.Banners {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 390px) {
  .nav {
    gap: 2rem;
  }
  .lists ul li {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .Time {
    margin-top: 1.2rem;
  }
  .form-inline {
    align-items: center;
  }
  .form1,
  .form2 {
    flex-direction: row;
  }
  .top-panel {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer_end {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
  .nav {
    justify-content: space-between;
  }
  .main {
    padding: 0 5rem;
  }
  .Banners {
    flex-direction: row;
    gap: 4rem;
    div {
      width: 40%;
    }
  }
}
@media screen and (min-width: 992px) {
  .Time {
    margin: 0rem;
    padding-top: 1.2rem;
  }
  .top-panel {
    grid-template-columns: repeat(5, 1fr);
  }
  .main {
    padding: 0 7rem;
  }
  .Banners {
    div {
      width: 50%;
    }
  }
}
@media screen and (min-width: 1250px) {
  .top-panel {
    grid-template-columns: repeat(6, 1fr);
  }
  .main {
    padding: 0 10rem;
  }
}
