@charset "UTF-8";

/* Floating language buttons */
.icon-float {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 999;
  padding: 6px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.icon-float ul {
  padding: 0;
  margin: 0;
}

.icon-float ul li {
  list-style: none;
  margin-bottom: 8px;
}

.icon-float ul li:last-child {
  margin-bottom: 0;
}

.icon-float ul li a {
  display: block;
  padding: 10px 12px;
  background: #8f9397;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Active */
.icon-float ul li a.active {
  background: #066c9b;
  color: #fff;
}

/* Hover */
.icon-float ul li a:hover {
  background: #066c9b;
  color: #fff;
}

/* Active on click */
.icon-float ul li a:active {
  background: #055477;
}

/* -------------------- */
/* Logo Scroll Behavior */
/* -------------------- */

.navbar-brand-item.scrolled-logo {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#mainNavBrand.scrolled .default-logo {
  display: none;
}

#mainNavBrand.scrolled .scrolled-logo {
  display: inline-block;
  opacity: 1;
}

.scroll-logo {
	height: 40px;
	transition: opacity 0.3s ease;
}

/* Hover text light */
.hover-text-light:hover {
  color: #f8f9fa !important;
}
