html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none !important;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

:root {
  --bg: #f3f6fb;
  --bg-accent: #dbeafe;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #ffffff;
  --surface-muted: #eef4ff;
  --ink: #142033;
  --ink-soft: #475569;
  --ink-muted: #64748b;
  --line: rgba(20, 32, 51, 0.12);
  --line-strong: rgba(20, 32, 51, 0.24);
  --brand: #0f4c81;
  --brand-strong: #0c3a61;
  --brand-soft: #d9ebfb;
  --accent: #d97706;
  --accent-soft: #fff1dc;
  --success-soft: #e7f7ef;
  --warning: #b45309;
  --warning-soft: #fff4d8;
  --danger-soft: #ffe4de;
  --shadow-sm: 0 10px 26px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 48px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: Georgia, Cambria, "Times New Roman", serif;
}

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

body.site-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(217, 235, 251, 0.95), rgba(217, 235, 251, 0) 28rem),
    radial-gradient(circle at top right, rgba(255, 241, 220, 0.8), rgba(255, 241, 220, 0) 22rem),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}

body.site-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(15, 76, 129, 0.04), rgba(15, 76, 129, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
  z-index: -1;
}

a {
  color: var(--brand);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

a:hover,
a:focus {
  color: var(--brand-strong);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
iframe:focus-visible {
  outline: 3px solid rgba(15, 76, 129, 0.35);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #10233b;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--space-4);
}

h1 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
}

h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p,
ul,
ol {
  margin-bottom: var(--space-4);
}

li,
label {
  margin: 0;
}

.text-center {
  text-wrap: balance;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  z-index: 10000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(248, 251, 255, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 32, 51, 0.08);
}

.site-header .container,
.site-main .container,
.site-footer .container {
  max-width: 1180px;
}

.site-header-inner {
  position: relative;
}

.site-header-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
  text-decoration: none;
}

.site-brand:hover,
.site-brand:focus {
  text-decoration: none;
}

.site-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f4c81, #2a6ba2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 14px 24px rgba(15, 76, 129, 0.22);
}

.site-logo {
  width: 35px;
  height: 35px;
}

.site-brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-brand-title {
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.site-brand-tagline {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.3;
}

.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.82rem 1rem;
  border: 1px solid rgba(15, 76, 129, 0.18);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--brand-strong);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.site-nav-toggle:hover,
.site-nav-toggle:focus {
  background: #ffffff;
}

.site-nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.site-nav-toggle-icon span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.site-nav {
  min-width: 0;
}

.site-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link:focus {
  background: rgba(15, 76, 129, 0.08);
  color: var(--brand-strong);
  text-decoration: none;
}

.site-nav-link.is-active,
.site-nav-link[aria-current="page"] {
  background: linear-gradient(135deg, #113e66, #0f4c81);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 76, 129, 0.22);
}

.site-search-form {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  margin: 0;
}

.site-search-input-wrap {
  position: relative;
  flex: 1 1 auto;
}

.site-search-input-wrap::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(15, 23, 42, 0.38);
  border-radius: 999px;
  transform: translateY(-58%);
}

.site-search-input-wrap::after {
  content: "";
  position: absolute;
  left: 31px;
  top: calc(50% + 5px);
  width: 9px;
  height: 2px;
  background: rgba(15, 23, 42, 0.38);
  border-radius: 999px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.site-search-input,
.form-control {
  min-height: 48px;
  padding: 0.7rem 1rem 0.7rem 3rem;
  border: 1px solid rgba(20, 32, 51, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group-lg .form-control {
  min-height: 60px;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
  border-radius: 22px;
  font-size: 1.08rem;
}

.site-search-input::placeholder,
.form-control::placeholder {
  color: var(--ink-muted);
}

.site-search-input:focus,
.form-control:focus {
  border-color: rgba(15, 76, 129, 0.4);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12);
  background: #ffffff;
}

.site-search-submit {
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(180, 83, 9, 0.22);
}

.site-search-submit:hover,
.site-search-submit:focus {
  background: linear-gradient(135deg, #b45309, #92400e);
}

.site-main {
  padding: var(--space-6) 0 var(--space-7);
}

.site-container {
  position: relative;
}

.page-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: calc(var(--radius-lg) + 4px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.page-shell > * {
  position: relative;
}

.page-shell > h1:first-of-type {
  margin-bottom: var(--space-3);
}

.page-shell > nav[aria-label="breadcrumb"] {
  margin-bottom: var(--space-5);
}

.page-shell > form:first-of-type {
  margin-bottom: var(--space-5);
}

.page-shell > iframe {
  width: 100%;
  min-height: 72vh;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent;
  font-size: 0.98rem;
}

.breadcrumb > li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--ink-soft);
}

.breadcrumb > li + li::before {
  content: "/";
  color: rgba(71, 85, 105, 0.55);
  margin-right: var(--space-2);
}

.breadcrumb > li a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumb > li a:hover,
.breadcrumb > li a:focus {
  color: var(--brand);
}

.panel,
.well,
.jumbotron {
  overflow: visible;
  margin-bottom: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.panel {
  position: relative;
}

.panel-body,
.panel-footer,
.panel-heading {
  padding: clamp(1rem, 1.8vw, 1.4rem) clamp(1rem, 2vw, 1.6rem);
}

.panel-heading {
  border-bottom: 1px solid var(--line);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  background: linear-gradient(180deg, rgba(15, 76, 129, 0.08), rgba(15, 76, 129, 0.02));
  color: #10233b;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.panel-heading h2,
.panel-heading h3 {
  margin-bottom: 0;
}

.panel-body > :last-child,
.panel-footer > :last-child {
  margin-bottom: 0;
}

.panel-footer {
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: rgba(248, 250, 252, 0.95);
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.panel-primary {
  border-color: rgba(15, 76, 129, 0.18);
}

.panel-primary > .panel-heading {
  background: linear-gradient(135deg, #0f4c81, #174f7f);
  color: #ffffff;
}

.panel-info {
  border-color: rgba(15, 76, 129, 0.18);
}

.panel-info > .panel-heading {
  background: linear-gradient(180deg, rgba(15, 76, 129, 0.12), rgba(15, 76, 129, 0.04));
}

.panel-default > .panel-heading {
  background: linear-gradient(180deg, rgba(20, 32, 51, 0.05), rgba(20, 32, 51, 0.02));
}

.panel-warning {
  border-color: rgba(180, 83, 9, 0.24);
}

.panel-warning > .panel-heading {
  background: linear-gradient(180deg, rgba(255, 244, 216, 0.98), rgba(255, 244, 216, 0.75));
  color: #7c3f00;
}

.table {
  width: 100%;
  margin-bottom: 0;
  background: transparent;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td,
.table > tr > th,
.table > tr > td {
  padding: 0.95rem 0.9rem;
  border-top: 1px solid rgba(20, 32, 51, 0.08);
  vertical-align: top;
}

.table > thead > tr > th,
.table > tbody > tr:first-child > th,
.table > tbody > tr:first-child > td,
.table > tr:first-child > th,
.table > tr:first-child > td {
  border-top: 0;
}

.table > thead > tr > th,
.table > tr > th {
  color: #10233b;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.table > tbody > tr:nth-child(odd),
.table > tr:nth-child(odd) {
  background: rgba(248, 250, 252, 0.56);
}

.table a {
  font-weight: 600;
}

.list-group {
  margin-bottom: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.list-group-item {
  margin: 0;
  padding: var(--space-4) var(--space-5);
  border: 0;
  border-top: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.72);
}

.list-group-item:first-child {
  border-top: 0;
}

.label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.label-warning {
  background: var(--warning-soft);
  color: #9a3412;
}

.navbar,
.navbar-inverse,
.navbar-fixed-top,
.navbar-collapse,
.navbar-header,
.navbar-brand,
.navbar-toggle {
  all: unset;
}

.table-responsive {
  border: 0;
}

.footer-links a {
  margin-right: 14px;
  display: inline-block;
}

.site-footer {
  padding: 0 0 var(--space-7);
}

.site-footer-shell {
  padding: clamp(1.5rem, 2.2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.95);
  color: rgba(241, 245, 249, 0.92);
  box-shadow: var(--shadow-lg);
}

.site-footer-shell a {
  color: #d6e9ff;
}

.site-footer-shell a:hover,
.site-footer-shell a:focus {
  color: #ffffff;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(180px, 1fr));
  gap: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-title {
  margin-bottom: var(--space-2);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.site-footer-copy {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
}

.site-footer-link-group h2 {
  margin-bottom: var(--space-3);
  color: #ffffff;
  font-size: 1.05rem;
}

.site-footer-link-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer-link-list li + li {
  margin-top: var(--space-2);
}

.site-footer-meta {
  padding-top: var(--space-5);
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.96rem;
}

.site-footer-meta p:last-child {
  margin-bottom: 0;
}

.favicon-icon,
.site-inline-icon,
.table img,
.panel-footer img {
  display: inline-block;
  vertical-align: text-bottom;
}

.favicon-icon,
.site-inline-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.4rem;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  object-fit: contain;
}

.site-inline-icon--pdf {
  border-radius: 4px;
  background: rgba(180, 83, 9, 0.08);
}

img[alt=""] {
  color: transparent;
}

img[style*="display:none"] {
  max-width: 0;
}

iframe {
  max-width: 100%;
}

pre {
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.94rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.page-home .page-shell > .panel-primary:first-of-type {
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.98), rgba(15, 76, 129, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  border-color: rgba(15, 76, 129, 0.22);
  color: #f8fbff;
}

.page-home .page-shell > .panel-primary:first-of-type .panel-body,
.page-home .page-shell > .panel-primary:first-of-type .panel-footer,
.page-home .page-shell > .panel-primary:first-of-type a {
  color: inherit;
}

.page-home .page-shell > .panel-primary:first-of-type a {
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.page-home .page-shell > .panel-primary:first-of-type .panel-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
  background: rgba(8, 32, 52, 0.24);
}

.page-home .page-shell > .panel-primary:first-of-type + form {
  margin-top: var(--space-5);
}

.page-search .page-shell > .panel-primary:first-of-type,
.page-regulations .page-shell > .panel-primary:first-of-type {
  background: linear-gradient(180deg, rgba(217, 235, 251, 0.84), rgba(255, 255, 255, 0.96));
}

.page-regulations .panel-footer a,
.page-product .panel-footer a,
.page-manual .panel-footer a {
  font-weight: 700;
}

.page-manual iframe + .panel {
  margin-top: var(--space-5);
}

html.has-js .site-nav-toggle {
  display: none;
}

@media (max-width: 991px) {
  .site-header {
    padding-top: 10px;
  }

  .site-header-chrome {
    gap: var(--space-4);
  }

  .site-nav-panel {
    grid-template-columns: 1fr;
  }

  .site-search-form {
    max-width: none;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 959px) {
  .site-brand-copy {
    max-width: 24rem;
  }

  html.has-js .site-nav-toggle {
    display: inline-flex;
  }

  html.has-js .site-nav-panel {
    display: none;
  }

  html.has-js .site-nav-panel.is-open {
    display: grid;
  }

  .site-nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav-link {
    justify-content: flex-start;
    min-height: 52px;
    padding-left: 1.15rem;
    border: 1px solid rgba(20, 32, 51, 0.08);
    background: rgba(248, 250, 252, 0.78);
  }
}

@media (max-width: 767px) {
  body.site-body {
    font-size: 16px;
  }

  .site-header .container,
  .site-main .container,
  .site-footer .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-header-chrome,
  .page-shell,
  .site-footer-shell {
    border-radius: 22px;
  }

  .site-brand {
    gap: var(--space-2);
  }

  .site-logo-wrap {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .site-brand-title {
    font-size: 1.35rem;
  }

  .site-brand-tagline {
    font-size: 0.84rem;
  }

  .site-search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .site-search-submit {
    width: 100%;
  }

  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .table > tbody > tr > td,
  .table > tbody > tr > th,
  .table > tr > td,
  .table > tr > th {
    min-width: 140px;
  }

  .panel-body,
  .panel-heading,
  .panel-footer,
  .list-group-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-shell > iframe {
    min-height: 55vh;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
