/* Minimal Bootstrap compatibility layer for classes used in this site. */

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

.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.navbar-brand {
    display: inline-block;
    white-space: nowrap;
}

.navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.375rem;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: center 0.32rem, center, center calc(100% - 0.32rem);
    background-size: 1.2rem 2px, 1.2rem 2px, 1.2rem 2px;
}

.collapse:not(.show) {
    display: none;
}

.collapse.show {
    display: block;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    margin-top: calc(var(--bs-gutter-y, 0) * -1);
}

.row > * {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    margin-top: var(--bs-gutter-y, 0);
}

.g-0 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

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

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

.flex-column {
    flex-direction: column !important;
}

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

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

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

.position-relative {
    position: relative !important;
}

.h-100 {
    height: 100% !important;
}

.p-0 {
    padding: 0 !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.m-0 {
    margin: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.ms-lg-auto {
    margin-left: 0;
}

.fw-bold {
    font-weight: 700 !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

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

.small,
small {
    font-size: 0.875em;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
}

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

.btn-info,
.bg-info {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    color: #000;
}

.bg-secondary {
    background-color: #6c757d;
    color: #fff;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 999px;
}

.rounded-circle {
    border-radius: 50% !important;
}

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

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .navbar-expand-lg .collapse:not(.show),
    .navbar-expand-lg .collapse.show {
        display: flex !important;
    }

    .navbar-expand-lg .navbar-collapse {
        flex-basis: auto;
        align-items: center;
    }

    .ms-lg-auto {
        margin-left: auto !important;
    }
}