/*!
 * CrystG3 Bootstrap compatibility subset.
 * Derived from Bootstrap v5.3.0.
 * Copyright 2011-2023 The Bootstrap Authors.
 * Licensed under MIT: https://github.com/twbs/bootstrap/blob/main/LICENSE
 */

html {
    -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #212529;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
        "Noto Sans", "Liberation Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: calc(1.375rem + 1.5vw);
}

h2 {
    font-size: calc(1.325rem + 0.9vw);
}

h3 {
    font-size: calc(1.3rem + 0.6vw);
}

h4 {
    font-size: calc(1.275rem + 0.3vw);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

strong {
    font-weight: bolder;
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: #0d6efd;
    text-decoration: underline;
}

a:hover {
    color: #0a58ca;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

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;
}

[hidden] {
    display: none !important;
}

.btn {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    background-color: transparent;
    color: #212529;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    user-select: none;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.btn:hover {
    color: #212529;
}

.btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn:disabled {
    opacity: 0.65;
    pointer-events: none;
}

.btn-primary {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #fff;
}

.btn-primary:hover {
    border-color: #0a58ca;
    background: #0b5ed7;
    color: #fff;
}

.btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
}

.btn-outline-primary:hover {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #fff;
}

.btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    border-color: #6c757d;
    background: #6c757d;
    color: #fff;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.btn-group {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

.nav {
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
    flex-wrap: wrap;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    border: 0;
    background: none;
    color: #0d6efd;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.nav-link:hover {
    color: #0a58ca;
}

.alert {
    position: relative;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
}

.alert-info {
    border-color: #9eeaf9;
    background: #cff4fc;
    color: #055160;
}

.alert-danger {
    border-color: #f1aeb5;
    background: #f8d7da;
    color: #58151c;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-left {
    justify-content: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.col-12 {
    width: 100%;
    flex: 0 0 auto;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.text-secondary {
    color: #6c757d !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -0.125em;
}

@media (min-width: 768px) {
    .mb-md-0 {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .col-lg-auto {
        width: auto;
        flex: 0 0 auto;
    }

    .me-lg-auto {
        margin-right: auto !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.5rem;
    }
}
