.form-label {
  font-weight: bold;
  color: #8e8e93;
}

.custom-btn {
  background-color: #50f3a8;
  color: #fff;
  border: none;
}
.custom-btn:hover {
  background-color: #50f3a8;
}

.custom-select,
.custom-input {
  border-color: #50f3a8;
  border-width: 2px;
}
.custom-select:focus,
.custom-input:focus {
  border-color: #50f3a8;
  box-shadow: 0 0 5px rgba(84, 243, 169, 0.5);
}

@media (max-width: 768px) {
  .form-label,
  .custom-btn {
    width: 100%;
  }
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 15px;
  z-index: 1000;
}

.cookie-popup-content {
  max-width: 600px;
  margin: 0 auto;
}

.cookies-btn {
  margin: 0 10px;
  padding: 10px 20px;
  color: white;
  border: none;
  cursor: pointer;
}

hr.divider {
  height: 0.3rem;
  max-width: 3.25rem;
  margin: 1rem auto;
  background-color: #50f3a8;
  opacity: 1;
}

h1.text-center {
  font-display: swap;
}

.btn i.bi {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: #50f3a8 #0000;
  animation: l16 1s infinite linear;
}
.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.loader::before {
  border-color: #50f3a8 #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
.loader::after {
  margin: 8px;
}
@keyframes l16 {
  100% {
    transform: rotate(1turn);
  }
}

.skeleton-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  padding: 20px;
}

.skeleton-image,
.skeleton-text {
  width: 100%;
  background: #e0e0e0;
  border-radius: 8px;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-image {
  height: 180px;
}

.skeleton-text {
  height: 20px;
}

.skeleton-text.short {
  width: 60%;
}

@keyframes shimmer {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

.skeleton-image,
.skeleton-text {
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%;
}

section.imgbg {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}

section.imgbg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 211, 125, 0.63);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

form .form-label {
  font-weight: bold;
}

form .btn {
  height: 40px;
  font-size: 1rem;
}

.bg-light {
  background-color: #ffffff !important;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .display-3 {
    font-size: 2rem;
  }
  .my-center-text {
    text-align: center;
  }
}

.bookfont {
  font-size: 13px;
}

@media only screen and (max-width: 600px) {
  .bookfont {
    font-size: 12px;
  }
}

.container-fluid {
  padding: 0;
}

.sidebar {
  height: 100vh;
}

.fixed-bottom {
  border-top: 1px solid #ddd;
}

@media only screen and (max-width: 600px) {
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#sticky-sidebar {
  position: fixed;
  max-width: 20%;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.navbar-brand {
  font-weight: bold;
}

.navbar-toggler {
  border: none;
}

.navbar-collapse {
  flex-grow: 1;
}

.collapse.show {
  display: block !important;
}

.navbar {
  width: 100%;
  padding: 0 15px;
  top: 0;
  left: 0;
  z-index: 999;
}

.navbar-nav {
  text-align: center;
}

.nav-item {
  margin-left: 10px;
}

.nav-item a {
  color: black !important;
}

@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    text-align: left;
  }
  .nav-item {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.banner-container {
  width: 100%;
  height: fit-content;
  margin: 0 auto;
  background-color: transparent;
  border-radius: 5px;
  overflow: hidden;
}

.banner-content {
  background-color: #006d77;
  padding: 10px;
}

.truncate {
  max-width: 180px;
}

@media (max-width: 768px) {
  .truncate {
    max-width: 120px;
  }
}

.banner-title {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}

.banner-subtitle {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.btn-primary:hover {
  background-color: #0056b3;
  transition: background-color 0.3s;
}

@media only screen and (max-width: 600px) {
  .banner-title {
    font-size: 21px;
  }
  .banner-subtitle {
    font-size: 17px;
  }
}

.wordfont {
  font-size: 50px;
}

@media (max-width: 768px) {
  .wordfont {
    font-size: 30px;
  }
}

.thermometer {
  width: 5px;
  height: 50px;
  background-color: #4a4a4a;
  border-radius: 10px;
  position: relative;
}

.thermometer::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #4a4a4a;
  border-radius: 50%;
}

.sitecolor {
  color: #000000;
}

.font-size-25 {
  font-size: 25px;
}
.font-size-30 {
  font-size: 30px;
}
.font-size-20 {
  font-size: 20px;
}

/* HTML: <div class="loader"></div> */
.loader2 {
  width: 60px;
  aspect-ratio: 4;
  background: radial-gradient(circle closest-side, #fff 90%, #0000) 0 /
    calc(100% / 3) 100% space;
  clip-path: inset(0 100% 0 0);
  animation: l1 1s steps(4) infinite;
}
@keyframes l1 {
  to {
    clip-path: inset(0 -34% 0 0);
  }
}
