@font-face {
  font-family: 'Muli';
  src: url(fonts/muli/Muli-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Muli';
  src: url(fonts/muli/Muli-Light.ttf);
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Muli';
  src: url(fonts/muli/Muli-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Rajdhani';
  src: url(fonts/rajdhani/Rajdhani-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Rajdhani';
  src: url(fonts/rajdhani/Rajdhani-Light.ttf);
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Rajdhani';
  src: url(fonts/rajdhani/Rajdhani-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}

:root {
  /* Neturno */
  --neturno-50: #f1f4ff;
  --neturno-100: #e5e9ff;
  --neturno-200: #ced7ff;
  --neturno-300: #a7b4ff;
  --neturno-400: #7684ff;
  --neturno-500: #3f48ff;
  --neturno-600: #1c18ff;
  --neturno-700: #1007fa;
  --neturno-800: #0c05d2;
  --neturno-900: #0c06ac;
  --neturno-950: #000080;

  /* Gray */
  --gray-50: #f5f6f6;
  --gray-100: #e5e7e8;
  --gray-200: #cdd1d4;
  --gray-300: #aab0b6;
  --gray-400: #808990;
  --gray-500: #6c757d;
  --gray-600: #565c64;
  --gray-700: #4a4f54;
  --gray-800: #414449;
  --gray-900: #3a3c3f;
  --gray-950: #242628;

  /* Orange */
  --orange-50: #fffcea;
  --orange-100: #fff4c5;
  --orange-200: #ffea85;
  --orange-300: #ffd846;
  --orange-400: #ffc51b;
  --orange-500: #ffa200;
  --orange-600: #e27a00;
  --orange-700: #bb5302;
  --orange-800: #984008;
  --orange-900: #7c350b;
  --orange-950: #481a00;

  /* Success */
  --success-50: #f0fdf6;
  --success-100: #ddfbec;
  --success-200: #bcf6d9;
  --success-300: #88edbd;
  --success-400: #4ddb98;
  --success-500: #25c279;
  --success-600: #19a061;
  --success-700: #198754;
  --success-800: #186340;
  --success-900: #155237;
  --success-950: #062d1c;

  /* Danger */
  --danger-50: #fef2f2;
  --danger-100: #fee6e5;
  --danger-200: #fccfcf;
  --danger-300: #f9a8a8;
  --danger-400: #f57779;
  --danger-500: #ec474f;
  --danger-600: #dc3545;
  --danger-700: #b7192c;
  --danger-800: #99182c;
  --danger-900: #83182c;
  --danger-950: #490812;

  /* Warning */
  --warning-50: #ffffea;
  --warning-100: #fffbc5;
  --warning-200: #fff885;
  --warning-300: #ffee46;
  --warning-400: #ffdf1b;
  --warning-500: #ffc107;
  --warning-600: #e29400;
  --warning-700: #bb6902;
  --warning-800: #985108;
  --warning-900: #7c420b;
  --warning-950: #482200;

  /* Info */
  --info-50: #ecfdff;
  --info-100: #cef9ff;
  --info-200: #a3f1fe;
  --info-300: #64e4fc;
  --info-400: #25cff2;
  --info-500: #02b1d8;
  --info-600: #058cb5;
  --info-700: #0c7092;
  --info-800: #135b77;
  --info-900: #154c64;
  --info-950: #073145;

  --border-radius: .375rem;
  --border-color: var(--gray-700);
}

:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: none !important;
}

:active {
  outline: none;
  box-shadow: none;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: 'Muli';
  scrollbar-width: thin;
  scrollbar-color: var(--gray-400) var(--gray-900);
}

html {
  scroll-behavior: smooth;
  transition: 0.5s;
}

@supports selector(::-webkit-scrollbar) {
  html,
  body,
  * {
    scrollbar-width: auto;
    scrollbar-color: auto;
  }

  ::-webkit-scrollbar {
    width: .5rem;
    height: .5rem;
  }

  ::-webkit-scrollbar-track {
    background-color: var(--gray-900);
  }

  ::-webkit-scrollbar-thumb {
    background-color: var(--gray-400);
    border: 2px solid var(--gray-900);
    border-radius: 999px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--gray-300);
  }
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html,
body {
  font-variant-ligatures: none;
  font-feature-settings:
    "liga" 0,
    "clig" 0;
}

/* Utility classes */
.h-max {
  height: max-content;
}

/* Material Symbol */
.material-symbols-sharp {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  top: -2px;
}

.btn span.material-symbols-sharp {
  font-size: 1.25rem;
}

/* Spinner icon */
.spinner-icon {
  display: inline-block;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Toast alert */
.toast-stack {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast,
.alert {
  border-radius: var(--border-radius);
}

.toast.has-timer,
.alert.has-timer {
  --toast-time: 5000ms;
  position: relative;
  overflow: hidden;
  min-width: 280px;
  pointer-events: auto;
}

/* Bottom timer bar */
.toast.has-timer::after,
.alert.has-timer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background-color: currentColor;
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: left;
  animation: toast-timer var(--toast-time) linear forwards;
}

.toast.has-timer.paused::after {
  animation-play-state: paused;
}

/* Status color tuning */
.toast.bg-success.has-timer::after,
.alert-success.has-timer::after {
  background-color: #198754;
}

.toast.bg-danger.has-timer::after,
.alert-danger.has-timer::after {
  background-color: #dc3545;
}

.toast.bg-warning.has-timer::after,
.alert-warning.has-timer::after {
  background-color: #ffc107;
}

.toast.bg-info.has-timer::after,
.alert-info.has-timer::after {
  background-color: #0dcaf0;
}

/* Animation */
@keyframes toast-timer {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.has-timer::after {
  animation-play-state: running;
}

.has-timer.paused::after {
  animation-play-state: paused;
}

/* Dropdown */
.dropdown-menu {
  --bs-dropdown-spacer: .125rem;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: .5rem;
  background-color: var(--bg-container);
  border-radius: var(--bs-dropdown-border-radius);
  box-shadow: 0 .5rem 1rem var(--bg-container);
  min-width: 10rem;
  margin: .3rem 0 0 !important;
  padding: 0;
}

.dropdown-menu li a.dropdown-item {
  padding: .45rem 1rem;
}

.dropdown-menu li:first-child a.dropdown-item {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.dropdown-menu li:last-child a.dropdown-item {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.dropdown-menu li a.dropdown-item:disabled {
  background-color: transparent;
}

.list-group {
  --bs-list-group-bg: transparent;
}

/* Accordion */
.accordion {
  --bs-accordion-bg: var(--border-container);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

/* Accordion Default */
.accordion .accordion-item:nth-child(even) {
  background-color: var(--bg-container);
  border: 1px solid var(--border-container);
}

.accordion .accordion-item .accordion-header {
  background-color: transparent;
}

.accordion .accordion-item .accordion-header button {
  font-weight: bold;
  background-color: transparent;
}

/* Image */
.img-thumbnail {
  padding: 0rem;
}

/* Forms */
.form-control,
.form-check-input,
.form-select {
  background-color: var(--bg);
  border-radius: var(--border-radius);
}

.form-control:focus,
.form-check-input:focus,
.form-select:focus {
  background-color: var(--bg);
  box-shadow: none !important;
}

.form-control:disabled,
.form-check-input:disabled,
.form-select:disabled {
  box-shadow: none !important;
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28108, 117, 125, 1%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position .15s ease-in-out;
}

.input-group-text {
  border-radius: var(--border-radius);
}

/* Password toggle */
/*
.password-toggle .btn-toggle {
  border: 1px solid var(--bs-border-color);
  background: var(--bs-border-color);
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
*/

.password-toggle .material-symbols-sharp {
  font-size: 1.25rem;
  line-height: 1;
  vertical-align: middle;
}
