@keyframes flash {
  0%, 100% {
    box-shadow: 0 0 20px 10px rgba(239, 243, 6, 0.2); /* Light glow at the beginning and end */
  }
  50% {
    box-shadow: 0 0 50px 20px rgba(169, 224, 238, 0.4); /* Stronger light glow at the middle */
  }
}
@keyframes progressbar-countdown {
  0% {
    width: 100%;
    background: #0F0;
  }
  100% {
    width: 0%;
    background: #F00;
  }
}
.dimmed {
  filter: brightness(0.3);
  top: 10px;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.disappearing {
  animation: fadeOut 1s ease-in-out 10s forwards;
}

.disappearing_time_break {
  animation: fadeOut 1s ease-in-out 360s forwards;
}

.show2s {
  animation: fadeIn 5s ease-in forwards;
}

.hide2s {
  animation: fadeOut 4s ease-in forwards;
  text-transform: uppercase;
}

.btn_witdth {
  width: 6em;
}

/*cookie consent*/
.cookie-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-bar button {
  margin: 5px;
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1.2rem;
}

.cookie-bar button:hover {
  background: #0056b3;
}

.cookie-bar a {
  color: #00aaff;
  text-decoration: none;
  margin-left: 10px;
  font-size: 1.2rem;
}

.cookie-bar a:hover {
  text-decoration: underline;
}

/* style for profile avatars */
.avatar-option {
  text-align: center;
}

.avatar-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.profile-img {
  width: 8em;
  height: 8em;
}

/* Optional: Some basic styling for selected avatar */
.avatar-selector input[type=radio]:checked + img,
.avatar-selector input[type=radio]:checked ~ img { /* If img is sibling after radio */
  border: 2px solid blue; /* Highlight selected avatar */
}

/* Adjust the label and image structure if needed for the CSS selector above */
.avatar-option label img {
  display: block; /* Make image a block element for better control */
  margin-bottom: 0.2rem; /* Space between image and radio */
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
}

.avatar-option input[type=radio]:checked + img { /* This won't work as img is inside label */
  /* You might need JavaScript for more complex visual feedback directly on the image
     or restructure HTML so img is a sibling controlled by the radio's :checked state */
}

/* A simpler approach for visual feedback: style the container of the checked radio */
.avatar-option input[type=radio]:checked {
  outline: 2px solid blue; /* Or some other visual cue on the radio itself */
}

.avatar-option label:has(input[type=radio]:checked) img { /* Uses :has pseudo-class, good browser support now */
  border: 3px solid #007bff; /* Highlight image when its radio is checked */
  box-shadow: 0 0 5px #007bff;
}

.icon-img {
  width: 3.5rem;
  height: 3.5rem;
  border: 0.18rem solid #e2bd5d;
  /* border: 0.18rem solid #007bff; */
  border-radius: 50%;
  /* background-color: #007BFF ; */
}

.page-wrapper {
  flex: 1 0 auto;
  background: linear-gradient(-20deg, transparent 5%, #630e53, transparent 95%);
}

.accordion-icon {
  width: 2rem;
  height: auto;
}

label[for=id_login] {
  display: none;
}

label[for=id_password] {
  display: none;
}

label[for=id_email] {
  display: none;
}

label[for=id_username] {
  display: none;
}

label[for=id_password1] {
  display: none;
}

label[for=id_oldpassword] {
  display: none;
}

label[for=id_password2] {
  display: none;
}

label[for=id_code] {
  display: none;
}

.accord-table {
  width: 2rem;
  height: auto;
}

.icon-sm {
  width: 1.8rem;
  height: auto;
}

.icon-title {
  width: 3rem;
  height: auto;
}

.logo-size {
  width: 6rem;
  height: auto;
}
.login-background {
    /* background-image: url("/static/img/SkyTower.jpg"); */

    /* background-size: cover; */
    background-color: #eee;
    color:#333;
} 
@media (orientation: landscape) and (max-width: 1023px) and (min-aspect-ratio: 16/9) {
  html {
    font-size: small;
  }
  .top-margin {
    margin-top: 1rem;
  }
}
@media (orientation: portrait) and (max-aspect-ratio: 9/16) and (max-width: 575px) {
  html {
    font-size: smaller;
  }
  .top-margin {
    margin-top: 0;
  }
}
@media (orientation: portrait) and (max-aspect-ratio: 9/16) and (min-aspect-ratio: 0.5) and (max-width: 575px) {
  html {
    font-size: xx-small;
  }
}/*# sourceMappingURL=site-v1.css.map */