/* HRRS Bootstrap subset: only the pieces used by the public site. */
*, *::before, *::after { box-sizing: border-box; }

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.row > * {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col,
.col-12,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-6,
.col-md-8,
.col-md-9,
.col-md-12 { flex: 0 0 auto; }
.col { flex: 1 0 0%; }
.col-12 { width: 100%; }
@media (min-width: 576px) {
    .col-sm-4 { width: 33.333333%; }
    .col-sm-5 { width: 41.666667%; }
    .col-sm-6 { width: 50%; }
    .col-sm-7 { width: 58.333333%; }
    .col-sm-8 { width: 66.666667%; }
    .col-sm-12 { width: 100%; }
}
@media (min-width: 768px) {
    .col-md-2 { width: 16.666667%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333333%; }
    .col-md-6 { width: 50%; }
    .col-md-8 { width: 66.666667%; }
    .col-md-9 { width: 75%; }
    .col-md-12 { width: 100%; }
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}
.breadcrumb > li + li::before {
    content: "/";
    padding: 0 8px;
    color: #6c757d;
}

.nav { display: flex; flex-wrap: wrap; padding-left: 0; margin-bottom: 0; list-style: none; }
.navbar-nav { display: flex; flex-direction: column; padding-left: 0; margin-bottom: 0; list-style: none; }
.navbar-collapse { flex-basis: 100%; flex-grow: 1; align-items: center; }
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: no-repeat center center;
    background-size: 100% 100%;
}
.collapse:not(.show) { display: none; }
.collapsing { height: 0; overflow: hidden; transition: height .35s ease; }
.dropdown { position: relative; }
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
}
.dropdown-menu.show { display: block; }
.dropdown-menu > li > a,
.dropdown-menu .dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus { color: #1e2125; background-color: #e9ecef; }
@media (min-width: 768px) {
    .navbar-collapse { display: flex !important; flex-basis: auto; }
    .navbar-nav { flex-direction: row; }
}

.form-label { display: inline-block; margin-bottom: .5rem; }
.form-control,
.form-select {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
}
.form-select {
    padding-right: 2.25rem;
    background-image: linear-gradient(45deg, transparent 50%, #28808d 50%), linear-gradient(135deg, #28808d 50%, transparent 50%);
    background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}
.form-control:focus,
.form-select:focus {
    border-color: #28808d;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(40,128,141,.18);
}
.form-text { margin-top: .25rem; font-size: .875em; color: #6c757d; }
.form-check { display: block; min-height: 1.5rem; padding-left: 1.5em; margin-bottom: .125rem; }
.form-check-inline { display: inline-block; margin-right: 1rem; }
.form-check-input { float: left; margin-left: -1.5em; width: 1em; height: 1em; margin-top: .25em; vertical-align: top; }
.form-check-label { display: inline-block; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
}
.btn:hover { text-decoration: none; }
.btn-primary { color: #fff; background-color: #28808d; border-color: #28808d; }
.btn-primary:hover,
.btn-primary:focus { color: #fff; background-color: #1f6873; border-color: #1f6873; }
.btn-outline-secondary { color: #59636d; border-color: #c8d0d4; }
.btn-outline-secondary:hover,
.btn-outline-secondary:focus { color: #fff; background-color: #59636d; border-color: #59636d; }
.btn-sm { padding: .25rem .5rem; font-size: .875rem; }

.alert { position: relative; padding: 1rem; margin-bottom: 1rem; border: 1px solid transparent; }
.alert-success { color: #184f33; background-color: #e7f4ed; border-color: #c8e7d8; }
.alert-warning { color: #6c4a00; background-color: #fff7e6; border-color: #f1d28b; }
.alert-danger { color: #7b2f1d; background-color: #fff0ea; border-color: #e8b9aa; }
.card { position: relative; display: flex; flex-direction: column; min-width: 0; background-color: #fff; border: 1px solid #d8dddf; }
.card-body { flex: 1 1 auto; padding: 1rem; }
.card-title { margin-top: 0; margin-bottom: .5rem; }
.card-text:last-child { margin-bottom: 0; }
.badge { display: inline-block; padding: .35em .65em; font-size: .75em; font-weight: 700; line-height: 1; text-align: center; white-space: nowrap; vertical-align: baseline; background: #eef1f2; color: #1f2933; }

.pagination { display: flex; padding-left: 0; list-style: none; }
.pagination > li > a,
.pagination > li > span { position: relative; display: block; padding: .375rem .75rem; color: #28808d; text-decoration: none; background-color: #fff; border: 1px solid #dee2e6; margin-left: -1px; }
.pagination > .active > a,
.pagination > .active > span { z-index: 3; color: #fff; background-color: #28808d; border-color: #28808d; }
.pagination-sm > li > a,
.pagination-sm > li > span { padding: .25rem .5rem; font-size: .875rem; }

.carousel { position: relative; }
.carousel-inner { position: relative; width: 100%; overflow: hidden; }
.carousel-item { position: relative; display: none; float: left; width: 100%; margin-right: -100%; backface-visibility: hidden; transition: transform .6s ease-in-out; }
.carousel-item.active,
.item.active { display: block; }
.carousel-control { position: absolute; top: 0; bottom: 0; z-index: 1; display: flex; align-items: center; justify-content: center; width: 15%; color: #fff; text-align: center; opacity: .75; }
.carousel-control.left { left: 0; }
.carousel-control.right { right: 0; }
.carousel-indicators { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; display: flex; justify-content: center; padding: 0; margin: 0 15%; list-style: none; }
.carousel-indicators li { box-sizing: content-box; flex: 0 1 auto; width: 30px; height: 3px; margin-right: 3px; margin-left: 3px; text-indent: -999px; cursor: pointer; background-color: rgba(255,255,255,.5); }
.carousel-indicators .active { background-color: #fff; }
.img-responsive,
.img-fluid { max-width: 100%; height: auto; }

.table { width: 100%; margin-bottom: 1rem; vertical-align: top; border-collapse: collapse; }
.table-bordered { border: 1px solid #dee2e6; }
.table-bordered > :not(caption) > * { border-width: 1px 0; }
.table-bordered > :not(caption) > * > * { border-width: 0 1px; border-style: solid; border-color: #dee2e6; }

.d-block { display: block !important; }
.d-flex { display: flex !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-end { align-items: flex-end !important; }
.gap-2 { gap: .5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.h-100 { height: 100% !important; }
.w-100 { width: 100% !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .25rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.ms-2 { margin-left: .5rem !important; }
.p-0 { padding: 0 !important; }
.text-start,
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-end,
.text-right { text-align: right !important; }
.text-muted { color: #6c757d !important; }
.float-start { float: left !important; }
.float-end { float: right !important; }
.list-unstyled { padding-left: 0; list-style: none; }
.hidden-print { }
.visible-print { display: none !important; }
.visually-hidden,
.sr-only {
    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 print {
    .hidden-print { display: none !important; }
    .visible-print { display: block !important; }
}
/* Additional Bootstrap compatibility discovered during search-page testing. */
.card.card-body { padding: 1rem; }
.small, small { font-size: .875em; }
.text-body-secondary { color: #6c757d !important; }
.page-link {
    position: relative;
    display: block;
    padding: .375rem .75rem;
    color: #28808d;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.page-link:hover,
.page-link:focus { color: #1f6873; background-color: #eef1f2; }
.page-item.active .page-link { z-index: 3; color: #fff; background-color: #28808d; border-color: #28808d; }
.page-item.disabled .page-link { color: #6c757d; pointer-events: none; background-color: #fff; border-color: #dee2e6; }

/* Stack and gutter helpers used by the search pages. */
.vstack {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch;
}
.g-3 {
    row-gap: 1rem;
    column-gap: 0;
}
.meili-search-page .search-hit-content .btn {
    margin-top: .35rem;
    margin-bottom: .35rem;
}

/* Bootstrap tooltip base used by dejure tooltips. */
.tooltip {
    --bs-tooltip-zindex: 1080;
    --bs-tooltip-max-width: 200px;
    --bs-tooltip-padding-x: .5rem;
    --bs-tooltip-padding-y: .25rem;
    --bs-tooltip-color: #fff;
    --bs-tooltip-bg: #000;
    --bs-tooltip-border-radius: .375rem;
    --bs-tooltip-opacity: .9;
    --bs-tooltip-arrow-width: .8rem;
    --bs-tooltip-arrow-height: .4rem;
    z-index: var(--bs-tooltip-zindex);
    display: block;
    margin: 0;
    font-family: var(--site-body-font, Arial, Helvetica, sans-serif);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    opacity: 0;
}
.tooltip.show { opacity: var(--bs-tooltip-opacity); }
.tooltip .tooltip-arrow { display: block; width: var(--bs-tooltip-arrow-width); height: var(--bs-tooltip-arrow-height); }
.tooltip .tooltip-arrow::before { position: absolute; content: ""; border-color: transparent; border-style: solid; }
.bs-tooltip-top .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow { bottom: calc(-1 * var(--bs-tooltip-arrow-height)); }
.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before { top: -1px; border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0; border-top-color: var(--bs-tooltip-bg); }
.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow { top: calc(-1 * var(--bs-tooltip-arrow-height)); }
.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before { bottom: -1px; border-width: 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height); border-bottom-color: var(--bs-tooltip-bg); }
.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow { right: calc(-1 * var(--bs-tooltip-arrow-height)); width: var(--bs-tooltip-arrow-height); height: var(--bs-tooltip-arrow-width); }
.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before { left: -1px; border-width: calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height); border-left-color: var(--bs-tooltip-bg); }
.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow { left: calc(-1 * var(--bs-tooltip-arrow-height)); width: var(--bs-tooltip-arrow-height); height: var(--bs-tooltip-arrow-width); }
.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before { right: -1px; border-width: calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0; border-right-color: var(--bs-tooltip-bg); }
.tooltip-inner {
    max-width: var(--bs-tooltip-max-width);
    padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
    color: var(--bs-tooltip-color);
    text-align: center;
    background-color: var(--bs-tooltip-bg);
    border-radius: var(--bs-tooltip-border-radius);
}
