@import "../Bootstrap/bootstrap.css";
.combobox {
  position: relative;
  display: flex;
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 6px;
}
.combobox:focus-within {
  border-color: var(--primary-color-light-20);
}
.combobox.is-invalid {
  border-color: var(--error-color, #e74c3c);
}
.combobox.is-invalid:focus-within {
  border-color: var(--error-color, #e74c3c);
}
.combobox .selected-item {
  display: flex;
  align-items: center;
  padding: 0.6rem;
  cursor: pointer;
  background-color: var(--bg-white, #ffffff);
  gap: 0.5rem;
  user-select: none;
  border-radius: 6px;
  justify-content: space-between;
  flex: 1;
}
.combobox .selected-item:focus-visible {
  outline: none;
}
.combobox .selected-item .dropdown-icon {
  margin-left: auto;
}
.combobox .selected-item-placeholder {
  color: var(--text-light, #6b7280);
}
@media (max-width: 600px) {
  .combobox .selected-item {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}
.combobox .dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1000;
  max-height: 300px;
  overflow: hidden;
  background: var(--bg-white, #ffffff);
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 6px;
  min-width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.combobox .dropdown:focus-visible {
  outline: none;
}
.combobox .dropdown .dropdown-options {
  max-height: 300px;
  overflow-y: auto;
}
.combobox .dropdown .dropdown-options .dropdown-option {
  display: flex;
  align-items: center;
  padding: 0.4rem;
  gap: 0.5rem;
  cursor: pointer;
}
.combobox .dropdown .dropdown-options .dropdown-option:hover {
  background-color: #f0f0f0;
}
.combobox .dropdown .dropdown-options .dropdown-option:focus-within {
  background-color: #e0e0e0;
}
.combobox .dropdown .dropdown-options .dropdown-option:focus-visible {
  outline: none;
}
.combobox .dropdown .dropdown-options .dropdown-option.selected {
  background-color: var(--primary-color);
  color: var(--text-white, #ffffff);
}

.combobox-help-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-light, #6b7280);
}

.checkbox-container {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
  gap: 0.5rem;
}
.checkbox-container input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 1.2rem;
  width: 1.2rem;
}
.checkbox-container input[type=checkbox].is-invalid + .checkmark {
  border-color: var(--error-color, #e74c3c);
}
.checkbox-container input[type=checkbox]:focus-visible + .checkmark {
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-light-30-rgb), 0.25);
}
.checkbox-container input[type=checkbox]:checked + .checkmark {
  background-color: var(--primary-color);
}
.checkbox-container input[type=checkbox]:checked + .checkmark:after {
  display: block;
}
.checkbox-container .checkmark {
  position: relative;
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  transition: background-color 0.2s ease-in-out;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0.45em;
  top: 0.25em;
  width: 0.25em;
  height: 0.5em;
  border: solid white;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}
.checkbox-container .checkbox-label {
  font-size: 0.9rem;
  line-height: 1;
}
.checkbox-container .checkbox-label a {
  font-size: 0.9rem;
}

.input-wrapper {
  margin-bottom: 1rem;
}

.input-label {
  display: block;
  margin-bottom: 0.3rem;
}
.input-label .required {
  color: var(--error-color, #e74c3c);
}

.input-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.input-box:has(.input-icon) {
  padding-left: 2.4rem;
}
.input-box.is-invalid {
  border-color: var(--error-color, #e74c3c);
}
.input-box.is-invalid:focus-within {
  border-color: var(--error-color, #e74c3c);
}
.input-box:focus-within {
  border-color: var(--primary-color-light-20);
}
@media (max-width: 600px) {
  .input-box .input-field {
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    font-size: 0.9rem;
  }
}

.input-error {
  color: var(--error-color, #e74c3c);
}

.input-icon {
  position: absolute;
  left: 0.6rem;
  color: var(--text-light, #6b7280);
  font-size: 1.2rem;
}

.input-field {
  flex: 1;
  padding: 0.6rem 0.5rem 0.6rem 0.5rem;
  border: none;
  outline: none;
  font-size: 1rem;
  width: 100%;
  line-height: 1;
  color: var(--text-dark, #222831);
}
.input-field:autofill, .input-field:-webkit-autofill, .input-field:-webkit-autofill:hover, .input-field:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 100px white inset !important;
  box-shadow: 0 0 0 100px white inset !important;
  -webkit-text-fill-color: var(--text-dark, #222831) !important;
}

.otp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 576px) {
  .otp-container {
    gap: 0.75rem;
  }
}

.otp-header {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-color, #333);
  text-align: center;
}
@media (max-width: 576px) {
  .otp-header {
    font-size: 1rem;
  }
}

.otp-inputs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
@media (max-width: 576px) {
  .otp-inputs {
    gap: 0.375rem;
  }
}
.otp-inputs:focus {
  outline: none;
}

.otp-input {
  position: relative;
  z-index: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
  text-align: center;
  border: 2px solid var(--border-color, #dee2e6);
  border-radius: 0.5rem;
  background-color: var(--bg-white, #ffffff);
  transition: border-color 0.25s ease, transform 0.2s ease;
}
@media (max-width: 576px) {
  .otp-input {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}
.otp-input:focus {
  border-color: var(--primary-color);
  transform: scale(1.05);
  outline: none;
}
.otp-input:focus::after {
  opacity: 1;
  transform: scale(1);
}

.phone-number-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 6px;
  background-color: var(--bg-white, #ffffff);
  border: 1px solid var(--border-color, #dee2e6);
}
.phone-number-container:focus-within {
  border: 1px solid var(--primary-color-light-20);
}
.phone-number-container.is-invalid {
  border-color: var(--error-color, #e74c3c);
}
.phone-number-container.is-invalid:focus-within {
  border-color: var(--error-color, #e74c3c);
}
.phone-number-container .country-select-wrapper .country-select {
  width: 100%;
  height: 100%;
  padding: 6px 8px;
  font-size: 0.875rem;
}
.phone-number-container .phone-number-field {
  border-left: 1px solid var(--border-color, #dee2e6);
  border-radius: 0 6px 6px 0;
}
.phone-number-container .phone-number-field .input-box {
  padding-left: 0;
}
.phone-number-container .selected-item {
  border-radius: 6px 0 0 6px !important;
  border: none !important;
}

.phone-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark, #222831);
  margin-bottom: 0.4rem;
}

.form-group-container {
  margin-bottom: 1rem;
}

.phone-number-field {
  flex: 1;
}
.phone-number-field .input-wrapper,
.phone-number-field .input-box,
.phone-number-field .input-field {
  min-width: 0;
}
.phone-number-field .input-box {
  border: none;
  box-shadow: none;
}
.phone-number-field .input-wrapper {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
}
.phone-number-field .input-field {
  width: 100%;
  flex: initial;
  padding: 0.6rem 8px 0.6rem 8px;
}
@media (max-width: 600px) {
  .phone-number-field .input-field {
    padding: 0.5rem 8px 0.5rem 8px;
    font-size: 0.9rem;
  }
}

.country-flag-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 15px;
  width: 20px;
}

.country-flag {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.birthday-select-inline {
  display: flex;
  gap: 1rem;
  margin-top: 0.3rem;
}

.birthday-inline-option {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.birthday-inline-option select {
  padding: 0.6rem 0.4rem;
  font-size: 0.875rem;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  outline: none;
  width: 100%;
  color: #212529;
}
.birthday-inline-option select:has(option:checked:disabled) {
  color: #6c757d;
}
.birthday-inline-option select:focus-within {
  border-color: var(--primary-color-light-20);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-light-30-rgb), 0.25);
}

.country-select-combobox {
  position: relative;
  display: inline-block;
}
.country-select-combobox .selected-item {
  border: 1px solid var(--border-color, #dee2e6);
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0.6rem;
  cursor: pointer;
  background-color: var(--bg-white, #ffffff);
  gap: 0.5rem;
  user-select: none;
  min-height: calc(20px + 1.2rem);
}
.country-select-combobox .selected-item .fa-chevron-down {
  margin-left: auto;
}
.country-select-combobox .selected-item:focus-visible {
  outline: none;
}
@media (max-width: 600px) {
  .country-select-combobox .selected-item {
    min-height: calc(20px + 1rem);
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    font-size: 0.9rem;
  }
}
.country-select-combobox .dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1000;
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  background: var(--bg-white, #ffffff);
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.country-select-combobox .dropdown:focus-visible {
  outline: none;
}
.country-select-combobox .dropdown .dropdown-options {
  max-height: 300px;
  overflow-y: auto;
}
.country-select-combobox .dropdown .dropdown-options .dropdown-option {
  display: flex;
  align-items: center;
  padding: 0.4rem;
  gap: 0.5rem;
  cursor: pointer;
}
.country-select-combobox .dropdown .dropdown-options .dropdown-option:hover {
  background-color: #f0f0f0;
}
.country-select-combobox .dropdown .dropdown-options .dropdown-option:focus-within {
  background-color: #e0e0e0;
}
.country-select-combobox .dropdown .dropdown-options .dropdown-option:focus-visible {
  outline: none;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../webfonts/InterVariable.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../webfonts/InterVariable-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../webfonts/InterVariable.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../webfonts/InterVariable-Italic.woff2") format("woff2");
}
@font-feature-values Inter {
  @character-variant {
    cv01: 1;
    cv02: 2;
    cv03: 3;
    cv04: 4;
    cv05: 5;
    cv06: 6;
    cv07: 7;
    cv08: 8;
    cv09: 9;
    cv10: 10;
    cv11: 11;
    cv12: 12;
    cv13: 13;
    alt-1: 1;
    alt-3: 9;
    open-4: 2;
    open-6: 3;
    open-9: 4;
    lc-l-with-tail: 5;
    simplified-u: 6;
    alt-double-s: 7;
    uc-i-with-serif: 8;
    uc-g-with-spur: 10;
    single-story-a: 11;
    compact-lc-f: 12;
    compact-lc-t: 13;
  }
  @styleset {
    ss01: 1;
    ss02: 2;
    ss03: 3;
    ss04: 4;
    ss05: 5;
    ss06: 6;
    ss07: 7;
    ss08: 8;
    open-digits: 1;
    disambiguation: 2;
    disambiguation-except-zero: 4;
    round-quotes-and-commas: 3;
    square-punctuation: 7;
    square-quotes: 8;
    circled-characters: 5;
    squared-characters: 6;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
body:has(.modal-backdrop.show) {
  overflow: hidden;
}

.dialog-host {
  justify-content: center;
  align-items: center;
  z-index: 1100;
  width: 100%;
  position: fixed;
  inset: 0;
  overflow-y: auto;
  padding: 2rem 0.5rem;
  display: none;
  height: 100%;
}
.dialog-host[data-state=open] {
  display: flex;
}
.dialog-host .login-container, .dialog-host .register-container {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dialog-content-wrapper {
  margin: auto;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1090;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.dialog-container {
  background-color: var(--bg-white, #ffffff);
  border-radius: 0.4rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 1.5rem;
  position: relative;
  opacity: 0;
  transform: scale(0.95) translateY(-10px);
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}
.dialog-host[data-state=open] .dialog-container {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: dialog-in 200ms ease-out;
}
@media (max-width: 576px) {
  .dialog-container {
    width: calc(100% - 1rem);
    padding: 1rem;
  }
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.dialog-header h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0.5rem 0 0;
}
@media (max-width: 576px) {
  .dialog-header h2 {
    font-size: 1.1rem;
  }
}
.dialog-header .close-dialog-button {
  color: #4B5563;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.3s ease;
}
.dialog-header .close-dialog-button:hover {
  color: #111827;
}

.dialog-content {
  max-height: 60vh;
  overflow-y: auto;
}

.dialog-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.dialog-footer .dialog-button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  background-color: var(--primary-color-light-10);
  color: var(--text-white, #ffffff);
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.2s;
}
.dialog-footer .dialog-button:hover {
  background-color: var(--primary-color);
}
.dialog-footer .dialog-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--primary-color-light-20), 0.5);
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes dialog-out {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
}
.toastHost {
  position: fixed;
  top: calc(64px + 1rem);
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}
@media (max-width: 576px) {
  .toastHost {
    right: 0.5rem;
    left: 0.5rem;
  }
}
.toastHost .toastItem {
  display: flex;
  align-items: center;
  max-width: 24rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  animation: slideInTop 0.5s ease forwards;
}
@media (max-width: 576px) {
  .toastHost .toastItem {
    max-width: 100%;
  }
}
.toastHost .toastItem .toastMessage {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
}
.toastHost .toastItem .toastClose {
  background: none;
  border: none;
  margin-left: 0.75rem;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s;
}
.toastHost .toastItem .toastClose:hover {
  opacity: 0.7;
}
.toastHost .toastItem .toastClose svg {
  width: 1rem;
  height: 1rem;
}
.toastHost .toastItem.success {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}
.toastHost .toastItem.error {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
.toastHost .toastItem.info {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}
.toastHost .toastItem.warning {
  background-color: #fefce8;
  border-color: #fef08a;
  color: #854d0e;
}
@keyframes slideInTop {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.sf-slider {
  padding: 0 0.125rem;
  animation: sf-slider-enter 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes sf-slider-enter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sf-slider {
    animation: none !important;
  }
}
.sf-slider__display {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3335;
}

.sf-slider__track-wrap {
  padding: 0.5625rem 0;
}

.sf-slider__track {
  position: relative;
  height: 4px;
  background: #ebeef0;
  border-radius: 2px;
  margin: 0 0.5625rem;
}

.sf-slider__fill {
  position: absolute;
  top: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 2px;
}

.sf-slider__thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary-color);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  cursor: grab;
  touch-action: none;
  transition: box-shadow 0.15s;
}
.sf-slider__thumb:active {
  cursor: grabbing;
  box-shadow: 0 0 0 5px rgba(var(--primary-color-rgb), 0.15), 0 1px 4px rgba(0, 0, 0, 0.18);
}
.sf-slider__thumb:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.3), 0 1px 4px rgba(0, 0, 0, 0.18);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.text-gray-400 {
  color: #9CA3AF;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-info {
  color: var(--info-color, #3498db) !important;
}

.text-warning {
  color: var(--warning-color, #f39c12) !important;
}

.text-error {
  color: var(--error-color, #e74c3c) !important;
}

.text-dark {
  color: var(--text-dark, #222831) !important;
}

.text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}

.text-md {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}

.text-xs {
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}

.text-color {
  color: var(--text-color, #333) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: #4b5563 !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-gray {
  background-color: var(--bg-gray, #e5e7eb) !important;
}

.line-through {
  text-decoration: line-through;
}

.glowing-icon {
  background-color: rgba(var(--primary-color-light-20-rgb), 0.2);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.cursorPointer {
  cursor: pointer;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-light, #f9fafb);
}

.publicApp {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
@media (max-width: 768px) {
  .publicApp:has(.appointment-booking-stepper) .primary-footer {
    padding-bottom: 4rem;
  }
}

.main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.main-content a {
  text-decoration: none;
  color: var(--primary-color);
}
.main-content a:hover {
  text-decoration: underline;
}

.close-dialog-btn {
  color: var(--text-light, #6b7280);
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.3s ease;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.close-dialog-btn:hover {
  color: var(--text-dark, #222831);
}

.dialog-footer .custom-button {
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.dialog-footer .custom-button.small {
  width: 100%;
}
.dialog-footer .custom-button.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--text-white, #ffffff);
}
.dialog-footer .custom-button.btn-primary:hover {
  background-color: rgba(var(--primary-color-rgb), 0.9) !important;
}
.dialog-footer .custom-button.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem var(--primary-color-light-40);
}
.dialog-footer .custom-button.btn-secondary {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}
.dialog-footer .custom-button.btn-secondary:hover {
  background-color: #e5e7eb;
}
.dialog-footer .custom-button.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(209, 213, 219, 0.5);
}

.custom-loader {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  margin: 50px auto;
  animation: spin 1s linear infinite;
}

.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
  outline: none;
  border-radius: calc(0.5rem - 2px);
  border: none;
}
.custom-button:focus-visible {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}
.custom-button:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.custom-button.large {
  height: 2.75rem;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  line-height: 1rem;
}
.custom-button.small {
  height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1rem;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--text-white, #ffffff) !important;
  border-color: var(--primary-color) !important;
}
.btn-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem var(--primary-color-light-40);
  outline: none;
}
.btn-primary:hover {
  background-color: rgba(var(--primary-color-rgb), 0.9) !important;
}

.btn-secondary {
  background-color: var(--background, #fff);
  color: inherit;
  border: 1px solid #d1d5db;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  border-color: #9ca3af;
  background-color: var(--accent, #f8f9fa);
  color: var(--accent-foreground, #212529);
}
.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-40);
  outline-offset: 2px;
}
.btn-secondary:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-danger {
  background-color: var(--error-color, #e74c3c) !important;
  color: var(--text-white, #ffffff) !important;
  border-color: var(--error-color, #e74c3c) !important;
}
.btn-danger:focus-visible {
  box-shadow: 0 0 0 0.25rem #ed7669;
  outline: none;
}
.btn-danger:hover {
  background-color: rgba(231, 76, 60, 0.9) !important;
}

.dropdown .dropdown-menu .dropdown-item:focus {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  outline: none;
}
.dropdown .btn-custom {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
}
.dropdown .btn-custom:hover {
  background-color: #f9fafb;
}
.dropdown .btn-custom:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20), 0 0 0 4px #f3f4f6;
}

.password-visibility-btn {
  color: var(--primary-color);
}
.password-visibility-btn:active {
  color: var(--primary-color-light-20) !important;
}
.password-visibility-btn:hover {
  color: var(--primary-color-light-10);
}
.password-visibility-btn:focus-visible {
  color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-20), 0 0 0 4px rgba(243, 244, 246, 0.5);
}
.password-visibility-btn i {
  height: 16px;
  width: 18px;
}

.footer-bottom-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}
.footer-bottom-bar > .lang-switch {
  flex: 0 0 auto;
}
.footer-bottom-bar > :only-child {
  margin-inline: auto;
}
@media (max-width: 575.98px) {
  .footer-bottom-bar {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.lang-switch {
  position: relative;
  display: inline-flex;
  --ls-surface: #1e2226;
  --ls-surface-text: #f4f5f7;
  --ls-border: rgba(255, 255, 255, 0.12);
  --ls-hover: rgba(255, 255, 255, 0.08);
}
.lang-switch__flag {
  display: inline-flex;
  flex: 0 0 auto;
}
.lang-switch__flag .country-flag-figure {
  height: 14px;
  width: 20px;
  margin: 0;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 20%, transparent);
}
.lang-switch__flag .country-flag {
  display: block;
  border-radius: 0;
  box-shadow: none;
}
.lang-switch__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  height: 2.25rem;
  padding: 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  color: inherit;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  background: color-mix(in srgb, currentColor 6%, transparent);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.lang-switch__trigger:hover {
  background: color-mix(in srgb, currentColor 12%, transparent);
  border-color: color-mix(in srgb, currentColor 32%, transparent);
}
.lang-switch__trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color-light-40);
}
.lang-switch__name {
  flex: 1 1 auto;
  text-align: left;
  white-space: nowrap;
}
.lang-switch__chevron {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.lang-switch.is-open .lang-switch__chevron {
  transform: rotate(180deg);
}
.lang-switch__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.lang-switch__menu {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  right: 0;
  z-index: 1001;
  min-width: 12rem;
  max-height: 20rem;
  overflow-y: auto;
  margin: 0;
  padding: 0.375rem;
  list-style: none;
  color: var(--ls-surface-text);
  background: var(--ls-surface);
  border: 1px solid var(--ls-border);
  border-radius: 0.875rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.16);
  animation: lang-switch-in 0.16s ease;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--ls-surface-text) 28%, transparent) transparent;
}
.lang-switch__menu::-webkit-scrollbar {
  width: 8px;
}
.lang-switch__menu::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--ls-surface-text) 22%, transparent);
  border: 2px solid transparent;
  border-radius: 8px;
  background-clip: padding-box;
}
.lang-switch__menu li {
  margin: 0;
}
.lang-switch__option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  color: inherit;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.14s ease;
}
.lang-switch__option:hover {
  background: var(--ls-hover);
}
.lang-switch__option:focus-visible {
  outline: none;
  background: var(--ls-hover);
  box-shadow: inset 0 0 0 2px var(--primary-color-light-40);
}
.lang-switch__option.is-active {
  font-weight: 700;
}
.lang-switch__check {
  flex: 0 0 auto;
  font-size: 0.75rem;
  color: var(--primary-color);
}

.pf .lang-switch {
  --ls-surface: #ffffff;
  --ls-surface-text: #1f2329;
  --ls-border: rgba(0, 0, 0, 0.09);
  --ls-hover: rgba(0, 0, 0, 0.05);
}

@keyframes lang-switch-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lang-switch__menu {
    animation: none;
  }
  .lang-switch__chevron {
    transition: none;
  }
}
@media (max-width: 576px) {
  .fs-2 {
    font-size: 1.5rem !important;
  }
  .fs-3 {
    font-size: 1.25rem !important;
  }
  .fs-4 {
    font-size: 1.125rem !important;
  }
  .fs-5 {
    font-size: 1rem !important;
  }
}

/*# sourceMappingURL=publicStyle.css.map */
