@charset "UTF-8";

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
}


.btn-xl {
  text-transform: uppercase;
  padding: 1.5rem 3rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.navbar-custom {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: rgb(73, 49, 98);
}

.footer-custom {
  background-color: rgb(73, 49, 98) !important;
}

.navbar-custom .navbar-brand {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
}

:root {
  --bs-primary: rgb(73, 49, 98) !important;
}

.btn-primary {
  background-color: rgb(73, 49, 98) !important;
  border-color: rgb(73, 49, 98) !important;
}

.btn-outline-primary {
  border-color: rgb(73, 49, 98) !important;
  color: rgb(73, 49, 98) !important;
}

.badge-primary {
  border-color: rgb(73, 49, 98) !important;
  background-color: rgb(73, 49, 98) !important;
}

.navbar-custom .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.bg-gradient-primary-to-secondary {
  background: linear-gradient(45deg, #493162, #9f1ae2) !important;
}

.fullscreen-blocking-modal {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: #F5F5FF !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

.chart-background {
  background-color: rgb(73, 49, 98) !important;
  border-color: rgb(73, 49, 98) !important;
}


.stepperbutton-inactive {
  background-color: rgba(73, 49, 98, 0.5) !important;
  border-color: rgb(73, 49, 98) !important;
}

.overlay {
  border-radius: 5px;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#result-content {
  overflow: hidden;
  transition: max-height 0.5s ease;
}

#result-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 1) 100%);
  transition: opacity 0.5s ease;
}

.overlay-hidden {
  opacity: 0;
  pointer-events: none;
}

.overlay-visible {
  opacity: 1;
}

.expandable-content {
  position: relative;
  overflow: hidden;
}
