@charset "utf-8";/***!  Response returned status code: 404  !***/


/* Force horizontal layout for EasySocial Users module */
.mod-es-users ul.g-list-inline {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

/* Individual user avatar blocks */
.mod-es-users ul.g-list-inline li {
    flex: 0 1 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

/* Optional: Center the "View All Users" button */
.mod-es-users .btn-block {
    display: inline-block !important;
    width: auto !important;
    text-align: center !important;
    margin: 20px auto 0 !important;
}
.bb-language-wrapper {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.bb-language-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bb-language-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bb-language-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.bb-language-selector {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 1rem;
}

.bb-language-list {
  display: inline-flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
  flex-wrap: nowrap;
}

.bb-language-list li {
  display: inline-block;
}

.bb-language-list li a img {
  width: clamp(64px, 12vw, 120px);  /* Larger max width for desktop */
  height: auto;
  transition: transform 0.3s ease;
}

.bb-language-list li a:hover img {
  transform: scale(1.1);
}
/* Target the container holding the <li> items */
.mod-es-users ul.g-list-inline {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important; /* align to the right */
  gap: 12px !important; /* optional spacing between items */
  padding: 0 !important;
  margin: 0 !important;
}

/* Style each list item */
.mod-es-users ul.g-list-inline > li {
  list-style: none !important;
  flex: 0 0 calc(100% / 6 - 12px) !important; /* six items per row */
  box-sizing: border-box !important;
}

/* Make avatar images responsive */
.mod-es-users .o-avatar-v2 img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
}

/* Responsive behavior for smaller screens */
@media (max-width: 1200px) {
  .mod-es-users ul.g-list-inline > li {
    flex: 0 0 calc(100% / 4 - 12px) !important;
  }
}

@media (max-width: 768px) {
  .mod-es-users ul.g-list-inline > li {
    flex: 0 0 calc(100% / 2 - 12px) !important;
  }
}

@media (max-width: 480px) {
  .mod-es-users ul.g-list-inline > li {
    flex: 0 0 100% !important;
  }
}
