/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/* prettier-ignore */
/*-----------------------------------------------
|   Navbar
-----------------------------------------------*/
:root[data-bs-theme=dark] .navbar-brand .light-theme-logo {
  display: none !important;
}
:root[data-bs-theme=dark] .navbar-brand .dark-theme-logo {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
:root[data-bs-theme=dark] h1,
:root[data-bs-theme=dark] h2,
:root[data-bs-theme=dark] h3,
:root[data-bs-theme=dark] h4,
:root[data-bs-theme=dark] h5 {
  color: #fff !important;
}

nav[data-bs-theme=dark] .navbar-brand.light-theme-logo {
  display: none !important;
}
nav[data-bs-theme=dark] .navbar-brand.dark-theme-logo {
  display: inline-block !important;
}
nav[data-bs-theme=dark] h1,
nav[data-bs-theme=dark] h2,
nav[data-bs-theme=dark] h3,
nav[data-bs-theme=dark] h4,
nav[data-bs-theme=dark] h5 {
  color: #fff !important;
}

.navbar-toggle-icon.icon-white .toggle-line {
  background-color: #fff;
}
.navbar-toggle-icon.icon-white:after, .navbar-toggle-icon.icon-white:before {
  background-color: #fff;
}

/*-----------------------------------------------
|   Form
-----------------------------------------------*/
.form-check-label {
  font-size: 1rem;
  font-weight: 500;
}

.form-switch .form-check-input:not(:checked) {
  background-color: #9da9bb;
}

.form-control:disabled:-moz-read-only {
  color: #5e6e82;
}

.form-control:disabled:read-only {
  color: #5e6e82;
}

.choices__input {
  font-size: 0.875rem !important;
}

.choices__inner {
  font-size: 0.875rem !important;
}

/*-----------------------------------------------
|   Background
-----------------------------------------------*/
.bg-full {
  background: no-repeat center center fixed;
  background-size: cover;
}

.bg-gradient-primary-linear {
  background: linear-gradient(-243.5deg, #76CFD7 16.64%, #00ACBB 46.21%, #0596C7 66.23%, #0576C7 83.36%);
}

/*-----------------------------------------------
|   Overlay & Loader
-----------------------------------------------*/
.bg-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.page-loader {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  margin: auto;
  top: calc((100% - 48px) / 2);
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
.page-loader::after, .page-loader::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  -webkit-transform-origin: 0px 100%;
  -ms-transform-origin: 0px 100%;
  transform-origin: 0px 100%;
}
.page-loader::before {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  background: #fff;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
/*-----------------------------------------------
|   z-index
-----------------------------------------------*/
.z-page-loader {
  z-index: 9999;
}

/*-----------------------------------------------
|   Sticky Notes
-----------------------------------------------*/
.note {
  width: 254px;
  height: 227px;
  border-top: 6px solid;
  -webkit-box-shadow: -3px 5px 10px 0px rgba(58, 58, 58, 0.2509803922);
  box-shadow: -3px 5px 10px 0px rgba(58, 58, 58, 0.2509803922);
  border-radius: 0 0 6px 6px;
  padding: 4px 10px 12px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.note.note-orange {
  background-color: #FFEDDB;
  border-top-color: #FF9F3B;
}
.note.note-green {
  background-color: #E8FFDA;
  border-top-color: #4FD000;
}
.note > .note-body {
  margin-top: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/*-----------------------------------------------
|   Sortable
-----------------------------------------------*/
.sortable-item:hover {
  background-color: var(--falcon-primary-bg-subtle);
}

/*-----------------------------------------------
|   Table
-----------------------------------------------*/
th {
  color: #5e6e82 !important;
}

.table-hover > tbody > tr:hover > * {
  color: #344050 !important;
  --falcon-table-bg-state: #A7ECF1;
}

/*-----------------------------------------------
|   Divider
-----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--falcon-body-font-family);
  font-size: var(--falcon-body-font-size);
  font-weight: var(--falcon-body-font-weight);
  line-height: var(--falcon-body-line-height);
  color: var(--falcon-body-color);
  text-align: var(--falcon-body-text-align);
  background-color: var(--falcon-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr, .divider::after, .divider::before {
  margin: 1rem 0;
  color: var(--falcon-border-color);
  border: 0;
  border-top: var(--falcon-border-width) solid;
  opacity: var(--falcon-hr-opacity);
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: var(--falcon-font-sans-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--falcon-heading-color);
}

h1 {
  font-size: calc(1.373832rem + 1.485984vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.48832rem;
  }
}

h2 {
  font-size: calc(1.33236rem + 0.98832vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2.0736rem;
  }
}

h3 {
  font-size: calc(1.2978rem + 0.5736vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.728rem;
  }
}

h4 {
  font-size: calc(1.269rem + 0.228vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.44rem;
  }
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-right: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-right: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 800;
}

small {
  font-size: 75%;
}

mark {
  padding: 0.1875em;
  color: var(--falcon-highlight-color);
  background-color: var(--falcon-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--falcon-link-color-rgb), var(--falcon-link-opacity, 1));
  text-decoration: none;
}
a:hover {
  --falcon-link-color-rgb: var(--falcon-link-hover-color-rgb);
  text-decoration: underline;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--falcon-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 75%;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 75%;
  color: var(--falcon-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 75%;
  color: var(--falcon-body-bg);
  background-color: var(--falcon-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #9da9bb;
  text-align: right;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: right;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: right;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.divider::before {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.divider::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.divider:not(:empty)::before {
  margin-left: 1rem;
}
.divider:not(:empty)::after {
  margin-right: 1rem;
}