/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
@-webkit-keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

[hidden] {
  display: none !important;
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/* stylelint-disable selector-max-type */
/**
 * 1. Change the default font family in all browsers (opinionated).
  * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
   ========================================================================== */
/**
    * Remove the margin in all browsers (opinionated).
    */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
        * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
  =========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
      * 1. Correct the inheritance and scaling of font size in all browsers.
      * 2. Correct the odd `em` font sizing in all browsers.
      */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
*/
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* =============================================================================
// @name Globals
// @description Set global attributes used site-white by default.
// @group generic
// @file src/sass/_partials/2-generic/_globals.generic.scss
// ========================================================================== */
/* stylelint-disable selector-max-type */
html {
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  background-repeat: no-repeat;
}

address {
  font-style: normal;
}

/* =============================================================================
// @name Shared
// @description Set attributes which are shared among different elements.
// @group generic
// @file src/sass/_partials/2-generic/_shared.generic.scss
// ========================================================================== */
/* stylelint-disable selector-max-type */
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
blockquote,
p,
address,
hr,
table,
fieldset,
figure,
pre {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* =============================================================================
// @name Form Elements
// @description Base CSS for form related tags.
// @group elements
// @file src/sass/_partials/3-elements/_elements.form.scss
// ========================================================================== */
/* stylelint-disable selector-max-type */
input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea {
  display: block;
  width: 100%;
  min-width: 200px;
  height: 2.3625rem;
  padding: 0.675rem;
  border: 1px solid #c7c8cc;
  border-radius: 3px;
  background-color: #fff;
  line-height: 100%;
}

input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus,
input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover {
  border: 1px solid #7f8fa4;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  display: inline-block;
  cursor: pointer;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

label {
  cursor: pointer;
}

/* =============================================================================
// @name Header Elements
// @description Base CSS for header tags.
// @group elements
// @file src/sass/_partials/3-elements/_elements.header.scss
// ========================================================================== */
/* stylelint-disable selector-max-type */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 700;
}

h1 {
  font-size: 1.8225rem;
}

@media (min-width: 50.01em) {
  h1 {
    font-size: 2.152828125rem;
  }
}

@media (min-width: 80.01em) {
  h1 {
    font-size: 2.460375rem;
  }
}

h2 {
  font-size: 1.35rem;
}

@media (min-width: 50.01em) {
  h2 {
    font-size: 1.8225rem;
  }
}

h3 {
  font-size: 1rem;
}

@media (min-width: 50.01em) {
  h3 {
    font-size: 1.18125rem;
  }
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.875rem;
}

h6 {
  font-size: 0.875rem;
}

/* =============================================================================
// @name Image Elements
// @description Base CSS for images and image related elements.
// @group elements
// @file src/sass/_partials/3-elements/_elements.image.scss
// ========================================================================== */
/* stylelint-disable selector-max-type */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* =============================================================================
// @name Link Elements
// @description Base CSS for link styling.
// @group elements
// @file src/sass/_partials/3-elements/_elements.link.scss
// ========================================================================== */
/* stylelint-disable selector-max-type */
a {
  transition: color 0.1s ease-in-out;
  text-decoration: none;
  color: #0077b3;
}

a:hover {
  text-decoration: underline;
}

/* =============================================================================
// @name List Elements
// @description Base CSS for list tags.
// @group elements
// @file src/sass/_partials/3-elements/_elements.list.scss
// ========================================================================== */
/* stylelint-disable selector-max-type */
ul,
ol {
  padding-left: 1.35rem;
  list-style-position: outside;
}

li {
  margin: 0;
}

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

nav ul,
nav ol,
nav li {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

dl {
  margin: 0 0 1.35rem 0;
}

/* =============================================================================
// @name Page Elements
// @description Base CSS for root html and body tags.
// @group elements
// @file src/sass/_partials/3-elements/_elements.page.scss
// ========================================================================== */
/* stylelint-disable selector-max-type */
/* stylelint-disable at-rule-no-vendor-prefix */
@-ms-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  min-height: 100%;
  font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 100%;
  line-height: 1.35;
  -webkit-overflow-scrolling: touch;
}

body {
  color: #333;
  background-color: #eaf3fe;
  font-size: 0.875rem;
}

/* =============================================================================
// @name Table Elements
// @description Base CSS for table related tags.
// @group elements
// @file src/sass/_partials/3-elements/_elements.table.scss
// ========================================================================== */
/* stylelint-disable selector-max-type */
table {
  width: 100%;
  border-spacing: 0;
}

th,
td {
  padding: 0.675rem;
}

/* =============================================================================
// @name Typography Elements
// @description Base CSS for header and other typography tags.
// @group elements
// @file src/sass/_partials/3-elements/_elements.typography.scss
// ========================================================================== */
/* stylelint-disable selector-max-type */
code {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  display: block;
  padding: 0.675rem;
  color: #333;
  font-family: "Bitstream Vera Sans Mono", "Consolas", "Courier", monospace;
}

figure {
  margin: 0;
}

hr {
  height: 1px;
  margin: 1.35rem 0;
  border: none;
  background-color: #e5e5e5;
}

strong,
b {
  font-weight: 600;
}

/* =============================================================================
// @name Form Group Layout
// @description Objects for form items and their enclosed elements.
// @group layouts
// @file src/sass/_partials/4-layout/_layout.form-group.scss
// ========================================================================== */
.l-form-group--inline,
.views--inline-exposed-form .views-exposed-form,
.block--inline-form .form {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  align-items: flex-end;
  max-width: 100%;
  margin-right: -1.35rem;
  margin-bottom: 0;
}

@media (min-width: 50.01em) {
  .l-form-group--inline,
  .views--inline-exposed-form .views-exposed-form,
  .block--inline-form .form {
    margin-right: -2.025rem;
  }
}

.l-form-group--inline > .form-item,
.views--inline-exposed-form .views-exposed-form > .form-item,
.block--inline-form .form > .form-item {
  flex-grow: 1;
}

@media (min-width: 22.51em) {
  .l-form-group--inline > .form-item,
  .views--inline-exposed-form .views-exposed-form > .form-item,
  .block--inline-form .form > .form-item {
    margin-right: 1.35rem;
  }
}

@media (min-width: 50.01em) {
  .l-form-group--inline > .form-item,
  .views--inline-exposed-form .views-exposed-form > .form-item,
  .block--inline-form .form > .form-item {
    margin-right: 2.025rem;
  }
}

.l-form-group--inline > .l-form-item--inline,
.views--inline-exposed-form .views-exposed-form > .l-form-item--inline,
.block--inline-form .form > .l-form-item--inline {
  align-self: flex-start;
}

.l-form-group--inline > .form-item--actions .button:not(:only-child):not(:last-of-type),
.views--inline-exposed-form .views-exposed-form > .form-item--actions .button:not(:only-child):not(:last-of-type),
.block--inline-form .form > .form-item--actions .button:not(:only-child):not(:last-of-type) {
  margin-right: 1.35rem;
}

@media (min-width: 50.01em) {
  .l-form-group--inline > .form-item--actions .button:not(:only-child):not(:last-of-type),
  .views--inline-exposed-form .views-exposed-form > .form-item--actions .button:not(:only-child):not(:last-of-type),
  .block--inline-form .form > .form-item--actions .button:not(:only-child):not(:last-of-type) {
    margin-right: 2.025rem;
  }
}

.l-form-item--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.l-form-item--inline .form-item__label {
  align-self: center;
  padding-right: 1.35rem;
}

.l-form-item--inline .form-item__description {
  flex-grow: 1;
  flex-basis: 100%;
}

.l-inline-search-form .form-item {
  flex-basis: 0%;
}

.l-inline-search-form .form-item:last-child {
  margin-right: 0;
}

.l-inline-search-form .form-item--actions.form-item--actions.form-item--actions {
  flex-grow: 0;
  flex-basis: auto;
}

/* =============================================================================
// @name Grid Layout
// @description Extra grid classes/layouts for special cases where the default
                layout grid isn't enough.
// @group layouts
// @file src/sass/_partials/4-layout/_layout.grid.scss
// ========================================================================== */
.row {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.left-col {
  width: 100%;
}

.main-col {
  width: 100%;
}

.right-col {
  width: 100%;
}

@media (min-width: 50.01em) {
  .row {
    flex-direction: row;
  }
  .left-col--home {
    max-width: 270px;
    flex: 25% 1;
    padding-right: 1.35rem;
  }
  .main-col {
    flex: auto;
  }
  .right-col {
    flex: 25% 1;
    padding-left: 1.35rem;
  }
}

/* =============================================================================
// @name Media Layout
// @description Standard media object layout.
// @group layouts
// @file src/sass/_partials/4-layout/_layout.media.scss
// ========================================================================== */
.l-media::before, .l-media::after {
  display: table;
  content: "";
}

.l-media::after {
  clear: both;
}

/* =============================================================================
// @name Nav Layout
// @description Objects for main site navigation.
// @group layouts
// @file src/sass/_partials/4-layout/_layout.nav.scss
// ========================================================================== */
/* =============================================================================
// @name Page Layout
// @description Overall site section layout.
// @group layouts
// @file src/sass/_partials/4-layout/_layout.page.scss
// ========================================================================== */
.l-page__inner {
  clear: both;
  max-width: 80em;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.675rem;
  padding-left: 0.675rem;
  background: #fff;
  box-shadow: 1px 1px 5px #999;
}

@media (min-width: 50.01em) {
  .l-page__inner {
    padding-right: 1.35rem;
    padding-left: 1.35rem;
  }
}

.l-page__breadcrumb {
  margin-right: -0.675rem;
  margin-left: -0.675rem;
}

@media (min-width: 50.01em) {
  .l-page__breadcrumb {
    margin-right: -1.35rem;
    margin-left: -1.35rem;
  }
}

.l-page__navigation {
  border-bottom: 1px solid #e5e5e5;
  background-color: #fff;
}

.l-region--navigation {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.l-region--navigation li {
  display: flex;
  align-items: center;
}

.l-page__primary {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-color: #eaf3fe;
}

.l-page__sidebar--first {
  display: none;
}

.l-region--sidebar-first {
  height: 100%;
}

.l-page__sidebar--second {
  display: none;
  flex-basis: 15rem;
  width: 15rem;
  padding: 1.35rem;
}

.l-page__main {
  flex-grow: 1;
  flex-basis: 100%;
  width: 100%;
  max-width: 80em;
  padding: 2.025rem 1.35rem 1.35rem 1.35rem;
}

.l-page--has-sidebar-first .l-page__main {
  max-width: 74.6rem;
}

.l-page--has-sidebar-second .l-page__main {
  max-width: 59.6rem;
}

.l-page__footer {
  padding: 1.35rem 0;
}

@media (min-width: 50.01em) {
  .l-page__main {
    padding: 2.025rem 1.35rem 1.35rem 2.7rem;
  }
  .l-page__sidebar--first,
  .l-page__sidebar--second {
    display: block;
  }
}

/* =============================================================================
// @name Branding Component
// @description Styling for a sites branding logo and slogan.
// @group components
// @file src/sass/_partials/5-components/_component.branding.scss
// ========================================================================== */
.brand_logo {
  height: 64px;
  width: 104px;
  padding: 0.3375rem 0 1.0125rem;
}

.brand__link {
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.brand__link:hover {
  text-decoration: none;
}

/* =============================================================================
// @name Breadcrumb Component
// @description Nav component to display a list of breadcrumb links.
// @group components
// @file src/sass/_partials/5-components/_component.breadcrumb.scss
// ========================================================================== */
.breadcrumb {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 26px;
  margin-top: 0;
  margin-bottom: 1.35rem;
  padding: 0;
  list-style: none;
  background-color: #e5e5e5;
}

@media (min-width: 37.51em) {
  .breadcrumb {
    height: 34px;
  }
}

@media (min-width: 50.01em) {
  .breadcrumb {
    height: 50px;
  }
}

.breadcrumb__item {
  position: relative;
  background-color: #164b72;
  color: #fff;
  padding: 0 0.16875rem 0 0.675rem;
  font-size: 0.7407407407rem;
}

@media (min-width: 37.51em) {
  .breadcrumb__item {
    font-size: 1rem;
  }
}

@media (min-width: 50.01em) {
  .breadcrumb__item {
    padding: 0 0.675rem 0 1.35rem;
    font-size: 1.35rem;
  }
}

.breadcrumb__item::after {
  content: '';
  speak: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  z-index: 1;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 8px solid #164b72;
}

@media (min-width: 37.51em) {
  .breadcrumb__item::after {
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #164b72;
  }
}

@media (min-width: 50.01em) {
  .breadcrumb__item::after {
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 25px solid #164b72;
  }
}

.breadcrumb__item + .breadcrumb__item {
  padding-left: calc(8px + 0.16875rem);
}

@media (min-width: 37.51em) {
  .breadcrumb__item + .breadcrumb__item {
    padding-left: calc(25px + 0.675rem);
  }
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '';
  speak: none;
  position: absolute;
  top: 0;
  left: 1px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 8px solid #e5e5e5;
}

@media (min-width: 37.51em) {
  .breadcrumb__item + .breadcrumb__item::before {
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #e5e5e5;
  }
}

@media (min-width: 50.01em) {
  .breadcrumb__item + .breadcrumb__item::before {
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 25px solid #e5e5e5;
  }
}

.breadcrumb__item:hover:not(.breadcrumb__item--last) {
  background-color: #0077b3;
}

.breadcrumb__item:hover:not(.breadcrumb__item--last)::after {
  border-left-color: #0077b3;
}

.breadcrumb__link {
  display: block;
  padding: 0.16875rem 0;
  color: #fff;
}

@media (min-width: 37.51em) {
  .breadcrumb__link {
    padding: 0.3375rem 0;
  }
}

@media (min-width: 50.01em) {
  .breadcrumb__link {
    padding: 0.675rem 0;
  }
}

.breadcrumb__link:link, .breadcrumb__link:visited {
  color: #fff;
}

.breadcrumb__link:hover, .breadcrumb__link:focus, .breadcrumb__link:active {
  text-decoration: underline;
  color: #fff;
}

.breadcrumb__text--last {
  display: block;
  padding: 0.16875rem 0;
}

@media (min-width: 37.51em) {
  .breadcrumb__text--last {
    padding: 0.3375rem 0.3375rem 0.3375rem 0;
  }
}

@media (min-width: 50.01em) {
  .breadcrumb__text--last {
    padding: 0.675rem 0;
  }
}

/* =============================================================================
// @name Button Component
// @description Form and link button component.
// @group components
// @file src/sass/_partials/5-components/_component.button.scss
// ========================================================================== */
.button {
  display: inline-flex;
  padding: 0.50625rem 1.35rem;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 600;
}

.button:hover {
  cursor: pointer;
  text-decoration: none;
}

.button--primary {
  background-color: #164b72;
}

.button--primary:hover {
  background-color: #113856;
}

.button--secondary {
  background-color: #497f2e;
}

.button--secondary:hover {
  background-color: #375f23;
}

.button--tertiary {
  color: #000;
  background-color: #ff921a;
}

.button--tertiary:hover {
  background-color: #bf6e14;
}

.button--bare {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  text-transform: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.button--expanded {
  display: block;
  width: 100%;
}

.button--positive,
.button--success {
  color: #fff;
  background-color: #497f2e;
}

.button--positive:hover,
.button--success:hover {
  background-color: #375f23;
}

.button--negative,
.button--danger,
.button[type='submit'][value='Clear Search'] {
  color: #fff;
  background-color: #c11f1f;
}

.button--xs {
  padding: 0.3375rem 0.84375rem;
  font-size: 0.875rem;
}

.button--sm {
  padding: 0.50625rem 1.35rem;
  font-size: 1rem;
}

.button--md {
  padding: 0.50625rem 1.35rem;
  font-size: 1.18125rem;
}

.button--lg {
  padding: 0.50625rem 1.35rem;
  font-size: 1.35rem;
}

.button--xl {
  padding: 0.50625rem 1.35rem;
  font-size: 1.8225rem;
}

.button[type='submit'][value='Search']::before {
  display: inline-block;
  content: '';
  font-family: "customermap-icons";
  font-weight: 400;
  speak: none;
  text-decoration: none;
  margin-right: 0.3375rem;
  content: '\e912';
}

.button[type='submit'][value='Clear Search']::before {
  display: inline-block;
  content: '';
  font-family: "customermap-icons";
  font-weight: 400;
  speak: none;
  text-decoration: none;
  margin-right: 0.3375rem;
  content: '\e91c';
}

/* datatables.js */
div.dataTables_paginate #ExpDataTable_first,
div.dataTables_paginate #ExpDataTable_previous,
div.dataTables_paginate #ExpDataTable_next,
div.dataTables_paginate #ExpDataTable_last {
  color: #0099CC;
  padding: 9px;
}

div.dataTables_paginate .paginate_active {
  padding: 5px;
  color: #164b72;
  font-weight: bold;
}

div.dataTables_paginate .paginate_button {
  padding: 5px;
}

/* table */
#dataTableWrapper {
  display: block;
  float: left;
  clear: both;
  width: 970px;
  margin-left: 10px;
}

#dataTable {
  display: block;
  float: left;
  clear: both;
  width: 100%;
}

.dataTableBanner {
  display: block;
  float: left;
  clear: both;
  width: 100%;
  padding: 0 0;
  margin: 15px 0 2px 0;
  background: red;
}

.dataTableBanner a {
  color: #888;
  display: block;
  width: 967px;
  height: 50px;
  background-color: #eee;
  border: 1px solid #ddd;
  border-bottom: 2px solid #ccc;
  border-right: 2px solid #ccc;
}

.dataTableBanner a:hover {
  background-color: #fff;
  text-decoration: underline;
  cursor: hand;
}

.dataTableBanner .showText {
  font-size: 22px;
  line-height: 50px;
  width: 400px;
  display: block;
  float: left;
  clear: none;
  padding-left: 70px;
}

.show-icon {
  display: block;
  position: absolute;
  background: url(/ui/assets/images/flag-sprite.png) 0 -150px no-repeat;
  width: 70px;
  height: 80px;
  margin-top: -8px;
  margin-left: 9px;
}

/*TABLE FILTER - TABLE FILTER - TABLE FILTER - TABLE FILTER - TABLE FILTER - */
/*TABLE FILTER - TABLE FILTER - TABLE FILTER - TABLE FILTER - TABLE FILTER - */
#filter-form {
  margin: 15px 0 10px;
}

/*TABLE SORTER - TABLE SORTER - TABLE SORTER - TABLE SORTER - TABLE SORTER - */
/*TABLE SORTER - TABLE SORTER - TABLE SORTER - TABLE SORTER - TABLE SORTER - */
table.data {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 10px 0 1.5em;
  padding: 0;
  width: 100%;
  font-size: 12px;
  width: 100%;
}

table.data caption {
  font-style: italic;
  text-align: left;
}

table.data tr td {
  background: #ffffff;
}

table.data tr:nth-child(odd) td {
  background: #e9eff3;
}

table.data tr.odd td {
  background: #e9eff3;
}

table.data td {
  border: 1px solid #fff;
  /*border-left: 1px solid #DDEAF2;*/
  padding: .333em;
  vertical-align: middle;
}

table.data td:first-child {
  border-left: solid 1px #fff;
}

table.data.addsorting tr:hover td {
  background: #164b72;
  color: #fff;
}

table.data.addsorting tr:hover td a {
  color: #fff;
}

table.data th {
  font-weight: 700;
  padding: .333em;
  vertical-align: middle;
  text-align: left;
}

table.data th.header {
  background-image: url(data:image/gif;base64,R0lGODlhFQAMAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAwAAAIajI+AywnaYnhUMoqt3gZXPmVg94yJiabqUQAAOw==);
  background-repeat: no-repeat;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 18px;
  padding-right: 5px;
}

table.data th.headerSortDown {
  background-image: url(data:image/gif;base64,R0lGODlhFQAMAJEAAAAAAP///wBmmf///yH5BAEAAAMALAAAAAAVAAwAAAIUnI8jya2ynINUMoqt3rz7D4biKBUAOw==);
  background-repeat: no-repeat;
  color: #164b72;
}

table.data.addsorting th.headerSortUp {
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
  background-repeat: no-repeat;
  color: #164b72;
}

table.data.addsorting th.header:hover {
  color: #164b72;
  cursor: pointer;
}

/*keep links and email addresses from ruining the table*/
table.data.addsorting tr td a[href] {
  display: block;
  width: 145px;
  overflow: hidden;
  white-space: pre-wrap;
  /* css-3 */
  white-space: 0;
  /* Mozilla, since 1999 */
  white-space: 0;
  /* Opera 4-6 */
  white-space: 0;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}

div.dataTables_filter,
div.dataTables_length,
div.dataTables_filter,
div.dataTables_info {
  margin: 15px 0 10px;
  font-size: 12px;
}

div.dataTables_paginate {
  font-size: 12px;
  color: #0099cc;
  margin-top: 15px;
  margin-right: 15px;
  margin-bottom: 10px;
  margin-left: 0;
}

.fieldset fieldset {
  width: 100%;
}

.fieldset h4 {
  margin-top: 0;
}

.fieldset__wrapper {
  padding: 1.0125rem;
}

.fieldset__wrapper--types {
  border: 1px solid #e5e5e5;
}

.fieldset__wrapper--spotlight {
  border-bottom: 1px solid #e5e5e5;
}

.google-map {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
}

.google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media (min-width: 50.01em) {
  .info-lists div:first-child {
    margin-right: 1.35rem;
  }
}

.input-list {
  padding: 0;
  list-style-type: none;
  margin-bottom: 0.675rem;
}

.leg-panel {
  display: flex;
  flex-wrap: wrap;
}

.leg-panel__item {
  flex: 50% 1;
  font-size: 0.7407407407rem;
}

.leg-panel__title {
  font-weight: 700;
}

.leg-panel__img img {
  float: left;
  width: 42px;
  height: 50px;
  padding: 0 0.16875rem 0.16875rem 0;
}

.main-nav {
  display: flex;
  font-family: 'Titillium Web', sans-serif;
}

@media (max-width: 37.49em) {
  .main-nav {
    flex-wrap: wrap;
    margin-bottom: 0.675rem;
  }
  .main-nav .brand_logo {
    order: 2;
  }
  .main-nav .main-nav__toggle {
    order: 1;
    margin-right: 0.675rem;
    margin-left: -0.675rem;
  }
}

.main-nav__link {
  display: block;
  padding: 0;
  color: #164b72;
}

@media (min-width: 37.51em) {
  .main-nav__link {
    padding: 0.3375rem 0.675rem;
  }
}

.main-nav__link > span {
  font-size: 1rem;
  text-transform: uppercase;
}

.main-nav__link:hover, .main-nav__link:focus {
  transition: background-color 0.1s ease-in-out;
  background: #164b72;
  color: #fff;
}

.main-nav__item {
  padding: 0.3375rem 0;
  font-weight: 700;
  border-bottom: 1px solid #164b72;
}

.main-nav__item:last-of-type {
  border: none;
}

@media (min-width: 37.51em) {
  .main-nav__item {
    border: none;
  }
}

.main-nav__toggle {
  height: calc(30px + 1.35rem + half-spacing);
  width: calc(30px + 1.35rem + half-spacing);
  border: none;
  background: #164b72;
  padding: 1.0125rem;
}

.main-nav__toggle img {
  width: 30px;
  height: 30px;
}

@media (min-width: 37.51em) {
  .main-nav__toggle {
    display: none;
  }
}

.main-menu {
  display: none;
  margin: 0.675rem auto;
}

@media (max-width: 37.49em) {
  .main-menu.is-active {
    width: 100%;
    order: 3;
    display: flex;
    flex-direction: column;
  }
  .main-menu.is-active br {
    display: none;
  }
  .main-menu.is-active small::after {
    content: ' ';
    speak: none;
  }
}

@media (min-width: 37.51em) {
  .main-menu {
    display: flex;
  }
}

/* RANGE */
/* RANGE */
/* RANGE */
/* RANGE */
/* RANGE */
/* RANGE */
/* RANGE */
/* RANGE */
/* RANGE */
/* RANGE */
/* RANGE */
/* RANGE */
#rangeWrapper {
  position: relative;
  border: 0;
  margin: 0;
  padding: 0;
  width: 170px;
  height: 105px;
}

#rangeWrapper input {
  width: 45px;
}

/* slider root element */
.slider {
  cursor: pointer;
  position: absolute;
  height: 1px;
  margin-top: 25px;
  width: 175px;
}

/* progress bar (enabled with progress: true) */
.progress {
  background-color: #C5FF00;
  display: none;
  height: 10px;
  opacity: 0.6;
}

/* drag handle */
.handle {
  position: absolute;
  display: block;
  top: 27px;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  background: #164b72;
  cursor: move;
  z-index: 12;
}

.handle:hover {
  background: #0077b3;
}

/* the input field */
.range {
  border: 1px solid #919eaf;
  border-radius: 4px;
  float: left;
  font-size: 14px;
  margin: 0;
  padding: 3px 0;
  position: relative;
  text-align: center;
  width: 50px;
  top: 13px;
}

#range1 {
  z-index: 11;
}

#range2 {
  z-index: 10;
  margin-left: 125px;
}

.range1wrapper,
.range2wrapper {
  position: relative;
  height: 55px;
}

.range1wrapper::after,
.range2wrapper::after {
  content: '';
  position: absolute;
  top: 58px;
  left: 0;
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background-color: #c7c8cc;
}

.range2wrapper {
  top: -55px;
}

/* =============================================================================
// @name Sidebar Table Component
// @description Sidebar exporter info table.
// @group components
// @file src/sass/_partials/5-components/_component.button.scss
// ========================================================================== */
.sidebar-table {
  margin-right: auto;
  max-width: 210px;
  font-size: 0.875rem;
}

.sidebar-table th,
.sidebar-table td {
  padding: 0.16875rem;
  vertical-align: top;
}

.sidebar-table th:first-child,
.sidebar-table td:first-child {
  width: 33.3333%;
  text-align: right;
  padding-right: 0.3375rem;
}

.sidebar-table th:last-child,
.sidebar-table td:last-child {
  position: relative;
  text-align: left;
  padding-left: 0.675rem;
}

.sidebar-table th:last-child::before,
.sidebar-table td:last-child::before {
  content: '\2013';
  speak: none;
  position: absolute;
  top: 1px;
  left: 0;
}

/* =============================================================================
// @name Color Utilities
// @description Utility colors classes.
// @group utilities
// @file src/sass/_partials/7-utilities/_utilities.color.scss
// ========================================================================== */
.u-text-black {
  color: #000 !important;
}

.u-text-white {
  color: #fff !important;
}

.u-text-primary {
  color: #164b72 !important;
}

.u-text-secondary {
  color: #497f2e !important;
}

.u-text-tertiary {
  color: #ff921a !important;
}

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

/* =============================================================================
// @name Grid Utilities
// @description Utility grid classes.
// @group utilities
// @file src/sass/_partials/7-utilities/_utilities.grid.scss
// ========================================================================== */
.u-clearfix::before, .u-clearfix::after,
.clearfix::before,
.clearfix::after {
  display: table;
  content: "";
}

.u-clearfix::after,
.clearfix::after {
  clear: both;
}

/* =============================================================================
// @name Image Utilities
// @description Utility classes for styling images.
// @group utilities
// @file src/sass/_partials/7-utilities/_utilities.image.scss
// ========================================================================== */
/* stylelint-disable selector-max-type */
.u-img {
  display: block;
}

.u-img-left,
img[data-align='left'] {
  float: left;
  margin-right: 0.675rem;
  margin-bottom: 0.3375rem;
}

.u-img-right,
img[data-align='right'] {
  float: right;
  margin-bottom: 0.3375rem;
  margin-left: 0.675rem;
}

.u-img-center,
img[data-align='center'] {
  display: block;
  margin: 0 auto;
}

/* =============================================================================
// @name List Utilities
// @description Utility classes for styling lists.
// @group utilities
// @file src/sass/_partials/7-utilities/_utilities.list.scss
// ========================================================================== */
/* =============================================================================
// @name Position Utilities
// @description Utility position classes.
// @group utilities
// @file src/sass/_partials/7-utilities/_utilities.position.scss
// ========================================================================== */
.u-align-left {
  float: left !important;
}

.u-align-right {
  float: right !important;
}

.u-align-center {
  display: block !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

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

/* =============================================================================
// @name Text Size Utility Classes
// @description Helper classes for styling text sizes.
// @group utilities
// @file src/sass/_partials/6-utilities/_utilities.text-size.scss
// ========================================================================== */
.u-text-size--xxxl {
  font-size: 2.460375rem !important;
}

.u-text-size--xxl {
  font-size: 2.152828125rem !important;
}

.u-text-size--xl {
  font-size: 1.8225rem !important;
}

.u-text-size--lg {
  font-size: 1.35rem !important;
}

.u-text-size--md {
  font-size: 1.18125rem !important;
}

.u-text-size--sm {
  font-size: 1rem !important;
}

.u-text-size--xs {
  font-size: 0.875rem !important;
}

/* =============================================================================
// @name Typography Utilities
// @description Utility typography classes.
// @group utilities
// @file src/sass/_partials/7-utilities/_utilities.typography.scss
// ========================================================================== */
.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-justify {
  text-align: justify !important;
}

.u-text-light {
  font-weight: 300 !important;
}

.u-text-normal {
  font-weight: 400 !important;
}

.u-text-medium {
  font-weight: 500 !important;
}

.u-text-semibold {
  font-weight: 600 !important;
}

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

.u-text-italic {
  font-style: italic !important;
}

.u-text-uppercase {
  text-transform: uppercase !important;
}

.u-text-lowercase {
  text-transform: lowercase !important;
}

.u-text-capitalize {
  text-transform: capitalize !important;
}

.u-leader {
  margin-top: 1.35rem !important;
}

.u-half-leader {
  margin-top: 0.675rem !important;
}

.u-quarter-leader {
  margin-top: 0.3375rem !important;
}

.u-eighth-leader {
  margin-top: 0.16875rem !important;
}

.u-leader-none {
  margin-top: 0 !important;
}

.u-trailer {
  margin-bottom: 1.35rem !important;
}

.u-half-trailer {
  margin-bottom: 0.675rem !important;
}

.u-quarter-trailer {
  margin-bottom: 0.3375rem !important;
}

.u-eighth-trailer {
  margin-bottom: 0.16875rem !important;
}

.u-trailer-none {
  margin-bottom: 0 !important;
}

.u-text-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
}

.u-no-textwrap {
  white-space: nowrap !important;
}

/* =============================================================================
// @name Visiblity Utilities
// @description Utility visiblity classes.
// @group utilities
// @file src/sass/_partials/7-utilities/_utilities.visibility.scss
// ========================================================================== */
.u-sr-only {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

.u-hidden {
  display: none !important;
}

@media (min-width: 22.5em) {
  .u-hidden--xxs {
    display: none !important;
  }
}

@media (max-width: 22.49em) {
  .u-hidden--xxs-down {
    display: none !important;
  }
}

@media (min-width: 25em) {
  .u-hidden--xs {
    display: none !important;
  }
}

@media (max-width: 24.99em) {
  .u-hidden--xs-down {
    display: none !important;
  }
}

@media (min-width: 37.5em) {
  .u-hidden--sm {
    display: none !important;
  }
}

@media (max-width: 37.49em) {
  .u-hidden--sm-down {
    display: none !important;
  }
}

@media (min-width: 50em) {
  .u-hidden--md {
    display: none !important;
  }
}

@media (max-width: 49.99em) {
  .u-hidden--md-down {
    display: none !important;
  }
}

@media (min-width: 60em) {
  .u-hidden--lg {
    display: none !important;
  }
}

@media (max-width: 59.99em) {
  .u-hidden--lg-down {
    display: none !important;
  }
}

@media (min-width: 80em) {
  .u-hidden--xl {
    display: none !important;
  }
}

@media (max-width: 79.99em) {
  .u-hidden--xl-down {
    display: none !important;
  }
}

.u-inline {
  display: inline !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline-flex {
  display: inline-flex !important;
}

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

@media (max-width: 22.49em) {
  .u-visible--inline-xxs-down {
    display: inline !important;
  }
  .u-visible--inline-block-xxs-down {
    display: inline-block !important;
  }
  .u-visible--block-xxs-down {
    display: block !important;
  }
  .u-visible--table-xxs-down {
    display: table !important;
  }
  .u-visible--flex-xxs-down {
    display: flex !important;
  }
  .u-visible--inline-flex-xxs-down {
    display: inline-flex !important;
  }
}

@media (min-width: 22.5em) {
  .u-visible--inline-xxs {
    display: inline !important;
  }
  .u-visible--inline-block-xxs {
    display: inline-block !important;
  }
  .u-visible--block-xxs {
    display: block !important;
  }
  .u-visible--table-xxs {
    display: table !important;
  }
  .u-visible--flex-xxs {
    display: flex !important;
  }
  .u-visible--inline-flex-xxs {
    display: inline-flex !important;
  }
}

@media (max-width: 24.99em) {
  .u-visible--inline-xs-down {
    display: inline !important;
  }
  .u-visible--inline-block-xs-down {
    display: inline-block !important;
  }
  .u-visible--block-xs-down {
    display: block !important;
  }
  .u-visible--table-xs-down {
    display: table !important;
  }
  .u-visible--flex-xs-down {
    display: flex !important;
  }
  .u-visible--inline-flex-xs-down {
    display: inline-flex !important;
  }
}

@media (min-width: 25em) {
  .u-visible--inline-xs {
    display: inline !important;
  }
  .u-visible--inline-block-xs {
    display: inline-block !important;
  }
  .u-visible--block-xs {
    display: block !important;
  }
  .u-visible--table-xs {
    display: table !important;
  }
  .u-visible--flex-xs {
    display: flex !important;
  }
  .u-visible--inline-flex-xs {
    display: inline-flex !important;
  }
}

@media (max-width: 37.49em) {
  .u-visible--inline-sm-down {
    display: inline !important;
  }
  .u-visible--inline-block-sm-down {
    display: inline-block !important;
  }
  .u-visible--block-sm-down {
    display: block !important;
  }
  .u-visible--table-sm-down {
    display: table !important;
  }
  .u-visible--flex-sm-down {
    display: flex !important;
  }
  .u-visible--inline-flex-sm-down {
    display: inline-flex !important;
  }
}

@media (min-width: 37.5em) {
  .u-visible--inline-sm {
    display: inline !important;
  }
  .u-visible--inline-block-sm {
    display: inline-block !important;
  }
  .u-visible--block-sm {
    display: block !important;
  }
  .u-visible--table-sm {
    display: table !important;
  }
  .u-visible--flex-sm {
    display: flex !important;
  }
  .u-visible--inline-flex-sm {
    display: inline-flex !important;
  }
}

@media (max-width: 49.99em) {
  .u-visible--inline-md-down {
    display: inline !important;
  }
  .u-visible--inline-block-md-down {
    display: inline-block !important;
  }
  .u-visible--block-md-down {
    display: block !important;
  }
  .u-visible--table-md-down {
    display: table !important;
  }
  .u-visible--flex-md-down {
    display: flex !important;
  }
  .u-visible--inline-flex-md-down {
    display: inline-flex !important;
  }
}

@media (min-width: 50em) {
  .u-visible--inline-md {
    display: inline !important;
  }
  .u-visible--inline-block-md {
    display: inline-block !important;
  }
  .u-visible--block-md {
    display: block !important;
  }
  .u-visible--table-md {
    display: table !important;
  }
  .u-visible--flex-md {
    display: flex !important;
  }
  .u-visible--inline-flex-md {
    display: inline-flex !important;
  }
}

@media (max-width: 59.99em) {
  .u-visible--inline-lg-down {
    display: inline !important;
  }
  .u-visible--inline-block-lg-down {
    display: inline-block !important;
  }
  .u-visible--block-lg-down {
    display: block !important;
  }
  .u-visible--table-lg-down {
    display: table !important;
  }
  .u-visible--flex-lg-down {
    display: flex !important;
  }
  .u-visible--inline-flex-lg-down {
    display: inline-flex !important;
  }
}

@media (min-width: 60em) {
  .u-visible--inline-lg {
    display: inline !important;
  }
  .u-visible--inline-block-lg {
    display: inline-block !important;
  }
  .u-visible--block-lg {
    display: block !important;
  }
  .u-visible--table-lg {
    display: table !important;
  }
  .u-visible--flex-lg {
    display: flex !important;
  }
  .u-visible--inline-flex-lg {
    display: inline-flex !important;
  }
}

@media (max-width: 79.99em) {
  .u-visible--inline-xl-down {
    display: inline !important;
  }
  .u-visible--inline-block-xl-down {
    display: inline-block !important;
  }
  .u-visible--block-xl-down {
    display: block !important;
  }
  .u-visible--table-xl-down {
    display: table !important;
  }
  .u-visible--flex-xl-down {
    display: flex !important;
  }
  .u-visible--inline-flex-xl-down {
    display: inline-flex !important;
  }
}

@media print {
  .u-visible-print--block {
    display: block !important;
  }
  .u-visible-print--inline {
    display: inline !important;
  }
  .u-visible-print--inline-block {
    display: inline-block !important;
  }
  .u-visible-print--table {
    display: table !important;
  }
  .u-visible-print--flex {
    display: flex !important;
  }
  .u-visible-print--inline-flex {
    display: inline-flex !important;
  }
}

@media screen {
  .u-hidden--print {
    display: none !important;
  }
}

/* =============================================================================
// @name Hotfixes
// @description Junk Sass file for hotfixes to be later cleaned up.
// @group hotfix
// @file src/sass/_partials/_8-hotfix.scss
// ========================================================================== */
/* ==========================================================================
      JCS - Fig Leaf Software EXIM map landing page custom styles
      ========================================================================== */
/* custom global element style tweaks */
h2, h3, h4 {
  color: #193e6f;
  margin-bottom: 2px;
}

select {
  line-height: 1.5;
  margin-bottom: 3px;
  padding: 0.25em;
  height: 2em;
}

h3.cs_header3 {
  font-size: 16px;
}

/* chart */
.chartlegend {
  display: block;
  float: left;
  width: 182px;
}

.chartlegend ul li .sq {
  display: inline-block;
  height: 2px;
  width: 8px;
  background: #666;
  border: 1px solid #333;
  margin: 3px;
}

.chart {
  display: none;
  height: 102px;
  width: 102px;
  float: left;
}

.chart div {
  /* yes i do mean px */
  border-radius: 100%;
  /* yes i do mean % */
  position: relative;
  line-height: 0;
  font-size: 0;
  behavior: url(ui/assets/js/libs/PIE.htc);
}

.chart div div {
  margin-left: 0%;
  margin-top: 0%;
  position: relative;
  /* margin-top:-100px; */
}

.exportSummary {
  display: block;
  float: left;
  clear: both;
  margin-top: 5px;
}

#shares {
  display: block;
  float: right;
  margin-top: 20px;
  margin-right: 10px;
}

#shares > div {
  position: absolute;
  width: 100px;
  margin-left: -87px;
}

/*info tip bubble */
.info-bubble-wrapper {
  font-size: 9px;
  padding: 0 !important;
  margin: 0 !important;
}

.info-bubble-title {
  font: bold 11px/1.1 Arial,Helvetica,sans-serif;
  margin-bottom: 1px;
}

.info-bubble-total {
  font-weight: bold;
  margin-top: 1px;
}

.ib-dollars,
.ib-title {
  display: block;
  float: left;
}

.ib-dollars {
  text-align: right;
}

.ib-title {
  text-align: left;
  clear: left;
}

table.infoWin {
  margin: 0px;
  padding: 0px;
  font-size: 9px;
  line-height: 10px;
}

/* ==========================================================================
      Media Queries
      ========================================================================== */
/* ==========================================================================
      Helper classes
      ========================================================================== */
.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.block {
  display: block;
}

.skip {
  background-color: #000;
  color: #fff;
}

.skip a, .screenReadersOnly {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip a:focus {
  position: static;
  width: auto;
  height: auto;
  background-color: #000;
  color: #fff;
}

/*alignment*/
.floatRight {
  float: right;
}

.floatLeft {
  float: left;
}

.floatnone {
  float: none;
}

.clear {
  display: block;
  clear: both;
}

p img.floatLeft {
  border: 1px solid #043c72;
}

p img.floatRight {
  border: 1px solid #043c72;
}

.alignRight {
  text-align: right;
}

.alignLeft {
  text-align: left;
}

.alignCenter {
  text-align: center;
}

.center {
  margin: 0 auto;
}

/*text*/
.allCaps {
  text-transform: uppercase;
}

.strong {
  font-weight: bold;
}

/*no _____ */
.noListStyle {
  list-style: none;
  list-style-position: outside !important;
}

.decimalListStyle {
  list-style: outside none decimal;
  padding-left: 15px !important;
}

.decimalListStyle li {
  display: list-item;
  list-style: outside none decimal;
  padding-left: 0 !important;
}

/* ==========================================================================
      Print styles
      ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  @page {
    margin: 0.5cm;
    size: landscape;
  }
  .headerWrapper {
    display: none;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  #lrgMapPageWrapper .chart {
    behavior: url(ui/assets/js/libs/PIE.htc) !important;
  }
}

select.smlMapSelect {
  max-width: 177px;
}

/* DCW */
.google_plusone_iframe_widget {
  width: 100% !important;
}

#cs_footer {
  background-color: #193E6F;
  width: 990px;
  margin: 0px auto;
  text-align: center;
  color: #fff;
  box-shadow: 1px 1px 5px #999;
}

table#ExpDataTable td:nth-child(5), table#ExpDataTable td:nth-child(6) {
  text-align: right;
  width: 20%;
}

#legend {
  font: bold 11px/1.1 Arial, Helvetica, sans-serif;
  padding-left: 0px;
  padding-right: 0px;
}

#legend > div {
  border: 1px solid #012;
  padding: 5px 5px 5px 8px;
  background-color: #ffffff !important;
}

#legend table {
  font-weight: 400;
  margin-top: 2px;
}

#legend table td {
  margin: 5px;
}

#legend tr td:first-child {
  line-height: 10px;
  width: 11px;
  height: 10px;
  border: 1px solid #012;
}

/* PODS mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm */
.podblue:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.podblue {
  display: inline-block;
}

html[xmlns] .podblue {
  display: block;
}

* html .podblue {
  height: 1%;
}

/* EXIM GOOGLE MAP - EXIM GOOGLE MAP - EXIM GOOGLE MAP */
/*hompage map*/
#smlMapWrapper {
  background: #E9EFF3;
  color: #fff;
  color: #004970;
  font-family: Verdana, 'Trebuchet MS', Arial;
  font-size: 12px;
  padding: 10px;
  width: 700px;
  border-radius: 5px;
  box-shadow: 1px 2px 2px #999999;
  -moz-box-shadow: 1px 2px 2px #999999;
  -webkit-box-shadow: 1px 2px 2px #999999;
  position: relative;
  behavior: url(/ui/js/libs/PIE.htc);
}

#smlMapWrapper h2,
#smlMapWrapper h3 {
  font-family: Verdana, 'Trebuchet MS', Arial;
  color: #111;
}

#smlMapWrapper h2 {
  font-size: 17px;
  padding-bottom: 5px;
  line-height: 25px;
  display: block;
  clear: both;
}

.smlMapSelect {
  margin-top: 4px;
  border: 1px solid #7DA2BA;
  padding-left: 5px;
  width: 95.5%;
}

/* googlemap flag wrapper mmmmmmmmmmmmmm */
#googleMapFlagWrapper {
  margin-left: -10px;
  margin-right: 10px;
}

#googleMapFlagWrapper .flag {
  margin-top: 1px;
}

#googleMapFlagWrapper .shade {
  background: #004970 url(https://www.exim.gov/ui/images/trimask.png) no-repeat right center;
  font-size: 17px;
  line-height: 30px;
  width: 680px;
}

#googleMapFlagWrapper {
  margin-left: -10px;
}

/*googlemap wrapper mmmmmmmmmmmmmmmmmmmm */
.smlGoogleMapWrapper {
  display: block;
  float: left;
  margin-bottom: 5px;
  width: 480px;
  min-height: 280px;
  clear: left;
}

#smlMapWrapper h3 {
  font-size: 12px;
  margin-bottom: 5px;
}

#smlMapWrapper h3 a {
  font-weight: normal;
  color: #699BB6;
  font-size: 10px;
}

/*data wrapper mmmmmmmmmmmmmmmmmmmmmmmmmm */
.smlMapDataWrapper {
  display: block;
  float: left;
  width: 200px;
  padding-left: 20px;
  color: #000;
}

.smlMapDataWrapper ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.smlMapDataWrapper ul li {
  line-height: 1.2;
  margin-bottom: 5px;
}

.smlMapNumber {
  display: inline-block;
  width: 50px;
  text-align: right;
  white-space: nowrap;
}

.smlInstructions {
  color: #e9eff3;
  clear: both;
  display: block;
  font-size: 9px;
  line-height: 1;
}

.lrgInstructions {
  display: block;
  clear: both;
  color: #000;
  font-size: 9px;
  padding-top: 9px;
}

.smlMapSelect {
  margin-top: 4px;
  border: 1px solid #7DA2BA;
  padding-left: 5px;
  width: 95.5%;
}

/* legend styles */
#legend {
  font: bold 11px/1.1 Arial, Helvetica, sans-serif;
  padding-left: 0px;
  padding-right: 0px;
}

#legend > div {
  border: 1px solid #012;
  padding: 5px 5px 5px 8px;
  background-color: #ffffff !important;
}

#legend table {
  font-weight: 400;
  margin-top: 2px;
}

#legend table td {
  margin: 5px;
}

#legend tr td:first-child {
  line-height: 10px;
  width: 11px;
  height: 10px;
  border: 1px solid #012;
}

/*info tip bubble */
.info-bubble-wrapper {
  font-size: 9px;
  padding: 0 !important;
  margin: 0 !important;
}

.info-bubble-title {
  font: bold 11px/1.1 Arial,Helvetica,sans-serif;
  margin-bottom: 1px;
}

.info-bubble-total {
  font-weight: bold;
  margin-top: 1px;
}

.ib-dollars,
.ib-title {
  display: block;
  float: left;
}

.ib-dollars {
  text-align: right;
}

.ib-title {
  text-align: left;
  clear: left;
}

table.infoWin {
  margin: 0px;
  padding: 0px;
  font-size: 9px;
  line-height: 10px;
}

div.selectMode {
  border: 1px solid red;
}

/*# sourceMappingURL=_sourcemaps/customermap.styles.css.map */
