/* @license GPL-2.0-or-later https://www.drupal.org/licensing/faq */
: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-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", Arial, "Noto Sans", "Liberation Sans", 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;
}
*,
::after,
::before {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
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: transparent;
}
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
hr:not([size]) {
  height: 1px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
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[data-bs-original-title],
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul {
  padding-left: 2rem;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
b,
strong {
  font-weight: bolder;
}
.small,
small {
  font-size: 0.875em;
}
.mark,
mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
code,
kbd,
pre,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}
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: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}
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;
}
tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
button,
input,
optgroup,
select,
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]::-webkit-calendar-picker-indicator {
  display: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button: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-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::file-selector-button {
  font: inherit;
}
::-webkit-file-upload-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: "— ";
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  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-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .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(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.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-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.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 > :not(:last-child) > :last-child > * {
  border-bottom-color: 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-striped > tbody > tr:nth-of-type(odd) {
  --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-bg: #cfe2ff;
  --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: #000;
  border-color: #bacbe6;
}
.table-secondary {
  --bs-table-bg: #e2e3e5;
  --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: #000;
  border-color: #cbccce;
}
.table-success {
  --bs-table-bg: #d1e7dd;
  --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: #000;
  border-color: #bcd0c7;
}
.table-info {
  --bs-table-bg: #cff4fc;
  --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: #000;
  border-color: #badce3;
}
.table-warning {
  --bs-table-bg: #fff3cd;
  --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: #000;
  border-color: #e6dbb9;
}
.table-danger {
  --bs-table-bg: #f8d7da;
  --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: #000;
  border-color: #dfc2c4;
}
.table-light {
  --bs-table-bg: #f8f9fa;
  --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: #000;
  border-color: #dfe0e1;
}
.table-dark {
  --bs-table-bg: #212529;
  --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: #fff;
  border-color: #373b3e;
}
.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;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  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::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 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::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 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;
  -webkit-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;
  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::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-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.form-control-lg,
.form-control-plaintext.form-control-sm {
  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.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 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.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 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: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.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 5l6 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.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  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;
}
.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}
.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-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);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  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 10l3 3l6-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 {
  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-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,
.btn-check[disabled] + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}
.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  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;
  -webkit-transition: background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    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;
  -moz-transition: background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    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-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  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 {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-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:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ 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);
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}
.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.25rem;
}
.input-group-lg > .btn,
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.input-group-sm > .btn,
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4),
.input-group.has-validation
  > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu) {
  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;
}
.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: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip,
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip {
  display: block;
}
.form-control.is-valid,
.was-validated .form-control: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.73L.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);
}
.form-control.is-valid:focus,
.was-validated .form-control: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);
}
.form-select.is-valid,
.was-validated .form-select:valid {
  border-color: #198754;
}
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select: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 5l6 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.73L.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);
}
.form-select.is-valid:focus,
.was-validated .form-select:valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.form-check-input.is-valid,
.was-validated .form-check-input:valid {
  border-color: #198754;
}
.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
  background-color: #198754;
}
.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #198754;
}
.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}
.input-group .form-control.is-valid,
.input-group .form-select.is-valid,
.was-validated .input-group .form-control:valid,
.was-validated .input-group .form-select:valid {
  z-index: 1;
}
.input-group .form-control.is-valid:focus,
.input-group .form-select.is-valid:focus,
.was-validated .input-group .form-control:valid:focus,
.was-validated .input-group .form-select:valid:focus {
  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: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}
.form-control.is-invalid,
.was-validated .form-control: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);
}
.form-control.is-invalid:focus,
.was-validated .form-control: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);
}
.form-select.is-invalid,
.was-validated .form-select:invalid {
  border-color: #dc3545;
}
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select: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 5l6 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);
}
.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
  border-color: #dc3545;
}
.form-check-input.is-invalid:checked,
.was-validated .form-check-input:invalid:checked {
  background-color: #dc3545;
}
.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: #dc3545;
}
.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}
.input-group .form-control.is-invalid,
.input-group .form-select.is-invalid,
.was-validated .input-group .form-control:invalid,
.was-validated .input-group .form-select:invalid {
  z-index: 2;
}
.input-group .form-control.is-invalid:focus,
.input-group .form-select.is-invalid:focus,
.was-validated .input-group .form-control:invalid:focus,
.was-validated .input-group .form-select:invalid:focus {
  z-index: 3;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  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 {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}
.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a53be;
}
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:active + .btn-secondary,
.btn-check:checked + .btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #565e64;
  border-color: #51585e;
}
.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}
.btn-check:focus + .btn-success,
.btn-success:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:active + .btn-success,
.btn-check:checked + .btn-success,
.btn-success.active,
.btn-success:active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #146c43;
  border-color: #13653f;
}
.btn-check:active + .btn-success:focus,
.btn-check:checked + .btn-success:focus,
.btn-success.active:focus,
.btn-success:active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
}
.btn-check:focus + .btn-info,
.btn-info:focus {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:active + .btn-info,
.btn-check:checked + .btn-info,
.btn-info.active,
.btn-info:active,
.show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: #3dd5f3;
  border-color: #25cff2;
}
.btn-check:active + .btn-info:focus,
.btn-check:checked + .btn-info:focus,
.btn-info.active:focus,
.btn-info:active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
}
.btn-check:focus + .btn-warning,
.btn-warning:focus {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:active + .btn-warning,
.btn-check:checked + .btn-warning,
.btn-warning.active,
.btn-warning:active,
.show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}
.btn-check:active + .btn-warning:focus,
.btn-check:checked + .btn-warning:focus,
.btn-warning.active:focus,
.btn-warning:active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}
.btn-check:focus + .btn-danger,
.btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:active + .btn-danger,
.btn-check:checked + .btn-danger,
.btn-danger.active,
.btn-danger:active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}
.btn-check:active + .btn-danger:focus,
.btn-check:checked + .btn-danger:focus,
.btn-danger.active:focus,
.btn-danger:active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:focus + .btn-light,
.btn-light:focus {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:active + .btn-light,
.btn-check:checked + .btn-light,
.btn-light.active,
.btn-light:active,
.show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:active + .btn-light:focus,
.btn-check:checked + .btn-light:focus,
.btn-light.active:focus,
.btn-light:active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}
.btn-check:focus + .btn-dark,
.btn-dark:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:active + .btn-dark,
.btn-check:checked + .btn-dark,
.btn-dark.active,
.btn-dark:active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}
.btn-check:active + .btn-dark:focus,
.btn-check:checked + .btn-dark:focus,
.btn-dark.active:focus,
.btn-dark:active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:active + .btn-outline-primary:focus,
.btn-check:checked + .btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #0d6efd;
  background-color: transparent;
}
.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:active + .btn-outline-secondary,
.btn-check:checked + .btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:active + .btn-outline-secondary:focus,
.btn-check:checked + .btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-success {
  color: #198754;
  border-color: #198754;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:active + .btn-outline-success,
.btn-check:checked + .btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success:active {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:active + .btn-outline-success:focus,
.btn-check:checked + .btn-outline-success:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #198754;
  background-color: transparent;
}
.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info,
.btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:active + .btn-outline-info,
.btn-check:checked + .btn-outline-info,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info:active {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:active + .btn-outline-info:focus,
.btn-check:checked + .btn-outline-info:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus,
.btn-outline-info:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #0dcaf0;
  background-color: transparent;
}
.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:active + .btn-outline-warning,
.btn-check:checked + .btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning:active {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:active + .btn-outline-warning:focus,
.btn-check:checked + .btn-outline-warning:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger,
.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:active + .btn-outline-danger,
.btn-check:checked + .btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:active + .btn-outline-danger:focus,
.btn-check:checked + .btn-outline-danger:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:active + .btn-outline-light,
.btn-check:checked + .btn-outline-light,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show,
.btn-outline-light:active {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:active + .btn-outline-light:focus,
.btn-check:checked + .btn-outline-light:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus,
.btn-outline-light:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:active + .btn-outline-dark,
.btn-check:checked + .btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:active + .btn-outline-dark:focus,
.btn-check:checked + .btn-outline-dark:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #212529;
  background-color: transparent;
}
.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}
.btn-link:hover {
  color: #0a58ca;
}
.btn-link.disabled,
.btn-link:disabled {
  color: #6c757d;
}
.btn-group-lg > .btn,
.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.btn-group-sm > .btn,
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.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;
  }
}
.dropdown,
.dropend,
.dropstart,
.dropup {
  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 {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}
.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: 0.125rem;
}
.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: 0.125rem;
}
.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: 0.125rem;
}
.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: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}
.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group-vertical > .btn,
.btn-group > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
  z-index: 1;
}
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}
.btn-group > .btn-group:not(:first-child),
.btn-group > .btn:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:nth-child(n + 3),
.btn-group > :not(.btn-check) + .btn {
  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,
.dropend .dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}
.btn-group-sm > .btn + .dropdown-toggle-split,
.btn-sm + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
.btn-group-lg > .btn + .dropdown-toggle-split,
.btn-lg + .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,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn-group:not(:first-child),
.btn-group-vertical > .btn:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn ~ .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  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:focus,
.nav-link:hover {
  color: #0a58ca;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: 0 0;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills .nav-link {
  background: 0 0;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}
.nav-fill .nav-item,
.nav-fill > .nav-link {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified .nav-item,
.nav-justified > .nav-link {
  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 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}
.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@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 0.25rem;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  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: 0.5rem;
    padding-left: 0.5rem;
  }
  .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-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-sm .offcanvas-bottom,
  .navbar-expand-sm .offcanvas-top {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-sm .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: 0.5rem;
    padding-left: 0.5rem;
  }
  .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-header {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-md .offcanvas-bottom,
  .navbar-expand-md .offcanvas-top {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-md .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: 0.5rem;
    padding-left: 0.5rem;
  }
  .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-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-lg .offcanvas-bottom,
  .navbar-expand-lg .offcanvas-top {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-lg .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: 0.5rem;
    padding-left: 0.5rem;
  }
  .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-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xl .offcanvas-bottom,
  .navbar-expand-xl .offcanvas-top {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xl .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: 0.5rem;
    padding-left: 0.5rem;
  }
  .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-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxl .offcanvas-bottom,
  .navbar-expand-xxl .offcanvas-top {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl .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: 0.5rem;
  padding-left: 0.5rem;
}
.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-header {
  display: none;
}
.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}
.navbar-expand .offcanvas-bottom,
.navbar-expand .offcanvas-top {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: 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");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: 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");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
  color: #fff;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.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: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}
.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}
.card-title {
  margin-bottom: 0.5rem;
}
.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link + .card-link {
  margin-left: 1rem;
}
.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}
.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom,
.card-img-top {
  width: 100%;
}
.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-group > .card {
  margin-bottom: 0.75rem;
}
@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-header,
  .card-group > .card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-footer,
  .card-group > .card:not(:last-child) .card-img-bottom {
    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-header,
  .card-group > .card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-footer,
  .card-group > .card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: 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");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: 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");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.accordion-header {
  margin-bottom: 0;
}
.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-body {
  padding: 1rem 1.25rem;
}
.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 {
  border-radius: 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "../../../../index.html");
}
.breadcrumb-item.active {
  color: #6c757d;
}
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}
.page-link {
  position: relative;
  display: block;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  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: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: #0a58ca;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}
.page-link {
  padding: 0.375rem 0.75rem;
}
.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.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 {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
}
.alert-primary .alert-link {
  color: #06357a;
}
.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8;
}
.alert-secondary .alert-link {
  color: #34383c;
}
.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0c4128;
}
.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}
.alert-info .alert-link {
  color: #04414d;
}
.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.alert-warning .alert-link {
  color: #523e02;
}
.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}
.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light .alert-link {
  color: #4f5050;
}
.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}
.alert-dark .alert-link {
  color: #101214;
}
@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0d6efd;
  transition: width 0.6s ease;
}
@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: 1rem 1rem;
}
.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
    animation: none;
  }
}
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}
.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:focus,
.list-group-item-action:hover {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.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: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}
.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  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: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}
@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    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: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    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: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    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: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    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: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    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: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.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:focus,
.list-group-item-primary.list-group-item-action:hover {
  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:focus,
.list-group-item-secondary.list-group-item-action:hover {
  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:focus,
.list-group-item-success.list-group-item-action:hover {
  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:focus,
.list-group-item-info.list-group-item-action:hover {
  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:focus,
.list-group-item-warning.list-group-item-action:hover {
  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:focus,
.list-group-item-danger.list-group-item-action:hover {
  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:focus,
.list-group-item-light.list-group-item-action:hover {
  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:focus,
.list-group-item-dark.list-group-item-action:hover {
  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 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  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;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.25;
}
.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}
.toast-container {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.toast-header .btn-close {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}
.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  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% - 1rem);
}
.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% - 1rem);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-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 {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
@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 {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@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 {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@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 {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@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 {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@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 {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  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;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-tooltip-auto[data-popper-placement^="top"],
.bs-tooltip-top {
  padding: 0.4rem 0;
}
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow,
.bs-tooltip-top .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}
.bs-tooltip-auto[data-popper-placement^="right"],
.bs-tooltip-end {
  padding: 0 0.4rem;
}
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow,
.bs-tooltip-end .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}
.bs-tooltip-auto[data-popper-placement^="bottom"],
.bs-tooltip-bottom {
  padding: 0.4rem 0;
}
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow,
.bs-tooltip-bottom .tooltip-arrow {
  top: 0;
}
.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}
.bs-tooltip-auto[data-popper-placement^="left"],
.bs-tooltip-start {
  padding: 0 0.4rem;
}
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow,
.bs-tooltip-start .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}
.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1070;
  display: block;
  max-width: 276px;
  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;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::after,
.popover .popover-arrow::before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow,
.bs-popover-top > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before,
.bs-popover-top > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after,
.bs-popover-top > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow,
.bs-popover-end > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before,
.bs-popover-end > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after,
.bs-popover-end > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow,
.bs-popover-bottom > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before,
.bs-popover-bottom > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after,
.bs-popover-bottom > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before,
.bs-popover-bottom .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow,
.bs-popover-start > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before,
.bs-popover-start > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after,
.bs-popover-start > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}
.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}
.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}
.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%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}
.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
  transform: translateX(100%);
}
.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
  transform: translateX(-100%);
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-end,
  .carousel-fade .active.carousel-item-start {
    transition: none;
  }
}
.carousel-control-next,
.carousel-control-prev {
  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: 0 0;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-next,
  .carousel-control-prev {
    transition: none;
  }
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
.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-next-icon,
.carousel-dark .carousel-control-prev-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}
@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}
@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
  animation: 0.75s linear infinite spinner-grow;
}
.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.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: 1rem 1rem;
}
.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}
.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}
.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}
.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
}
.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
}
.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
}
.offcanvas.show {
  transform: none;
}
.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentColor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}
.placeholder-xs {
  min-height: 0.6em;
}
.placeholder-sm {
  min-height: 0.8em;
}
.placeholder-lg {
  min-height: 1.2em;
}
.placeholder-glow .placeholder {
  -webkit-animation: placeholder-glow 2s ease-in-out infinite;
  animation: placeholder-glow 2s ease-in-out infinite;
}
@-webkit-keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  -webkit-mask-image: linear-gradient(
    130deg,
    #000 55%,
    rgba(0, 0, 0, 0.8) 75%,
    #000 95%
  );
  mask-image: linear-gradient(
    130deg,
    #000 55%,
    rgba(0, 0, 0, 0.8) 75%,
    #000 95%
  );
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  -webkit-animation: placeholder-wave 2s linear infinite;
  animation: placeholder-wave 2s linear infinite;
}
@-webkit-keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}
@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.link-primary {
  color: #0d6efd;
}
.link-primary:focus,
.link-primary:hover {
  color: #0a58ca;
}
.link-secondary {
  color: #6c757d;
}
.link-secondary:focus,
.link-secondary:hover {
  color: #565e64;
}
.link-success {
  color: #198754;
}
.link-success:focus,
.link-success:hover {
  color: #146c43;
}
.link-info {
  color: #0dcaf0;
}
.link-info:focus,
.link-info:hover {
  color: #3dd5f3;
}
.link-warning {
  color: #ffc107;
}
.link-warning:focus,
.link-warning:hover {
  color: #ffcd39;
}
.link-danger {
  color: #dc3545;
}
.link-danger:focus,
.link-danger:hover {
  color: #b02a37;
}
.link-light {
  color: #f8f9fa;
}
.link-light:focus,
.link-light:hover {
  color: #f9fafb;
}
.link-dark {
  color: #212529;
}
.link-dark:focus,
.link-dark:hover {
  color: #1a1e21;
}
.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: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}
@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 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: -webkit-sticky !important;
  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: 1px solid #dee2e6 !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: 1px solid #dee2e6 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-end {
  border-right: 1px solid #dee2e6 !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-start {
  border-left: 1px solid #dee2e6 !important;
}
.border-start-0 {
  border-left: 0 !important;
}
.border-primary {
  border-color: #0d6efd !important;
}
.border-secondary {
  border-color: #6c757d !important;
}
.border-success {
  border-color: #198754 !important;
}
.border-info {
  border-color: #0dcaf0 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.border-danger {
  border-color: #dc3545 !important;
}
.border-light {
  border-color: #f8f9fa !important;
}
.border-dark {
  border-color: #212529 !important;
}
.border-white {
  border-color: #fff !important;
}
.border-1 {
  border-width: 1px !important;
}
.border-2 {
  border-width: 2px !important;
}
.border-3 {
  border-width: 3px !important;
}
.border-4 {
  border-width: 4px !important;
}
.border-5 {
  border-width: 5px !important;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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-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;
}
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.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 {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}
.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  user-select: auto !important;
}
.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}
.pe-none {
  pointer-events: none !important;
}
.pe-auto {
  pointer-events: auto !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-1 {
  border-radius: 0.2rem !important;
}
.rounded-2 {
  border-radius: 0.25rem !important;
}
.rounded-3 {
  border-radius: 0.3rem !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: 50rem !important;
}
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
}
html,
body,
div,
a,
span,
object,
iframe,
p,
blockquote,
pre,
img,
dl,
dt,
dd,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
fieldset,
form,
legend,
textarea,
button,
input,
select {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
svg:not(:root) {
  overflow: hidden;
}
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  text-decoration: none;
  background: transparent;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
a:hover,
a:active,
label:focus,
label:active {
  outline: none;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
fieldset {
  border: none;
}
textarea,
button,
input,
select {
  font-size: 100%;
  vertical-align: baseline;
}
textarea {
  overflow: auto;
  min-height: 30px;
  max-height: 400px;
  resize: vertical;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  vertical-align: middle;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
button[disabled],
input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
small {
  font-size: 85%;
}
strong,
th {
  font-weight: bold;
}
td,
td img {
  vertical-align: top;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}
@font-face {
  font-family: "Calibre Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Calibre Regular"),
    url(../../../../themes/nationalprimepay/styles/fonts/CalibreRegular.woff)
      format("woff");
}
@font-face {
  font-family: "Calibre Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Calibre Medium"),
    url(../../../../themes/nationalprimepay/styles/fonts/CalibreMedium.woff)
      format("woff");
}
@font-face {
  font-family: "Calibre Semibold";
  font-style: normal;
  font-weight: normal;
  src: local("Calibre Semibold"),
    url(../../../../themes/nationalprimepay/styles/fonts/CalibreSemibold.woff)
      format("woff");
}
@font-face {
  font-family: "Calibre Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Calibre Bold"),
    url(../../../../themes/nationalprimepay/styles/fonts/CalibreBold.woff)
      format("woff");
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
strong,
b {
  font-family: "Calibre Semibold";
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.full-width {
  width: 100%;
}
.max-width {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}
@media screen and (max-width: 1420px) {
  .pad-hit {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.is-active {
}
#block-footerhelpfullinks-2-menu {
  color: #ffffff;
  font-size: 1.375rem;
  font-family: "Calibre Semibold";
}
.lang-dropdown-select-element {
  background: #00205b;
  color: white;
  border: 0;
  border-radius: 0;
  position: relative;
  box-sizing: border-box;
  font-family: "Calibre Regular";
  padding: 0;
  margin: 0;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
.red-block {
  background-color: #d22630;
  width: 86px;
  height: 14px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .red-block {
    width: 130px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .red-block {
    height: 8px;
    width: 50px;
    margin-bottom: 5px !important;
  }
}
.cb-accordion li + li {
  margin-top: 1rem;
}
.cb-accordion li h3 {
  margin: 0 !important;
  padding: 0 !important;
}
.cb-accordion li h3 .accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: 100ms all ease-in-out;
  color: #00205b;
  padding: 14px 20px 8px;
  background: #ffffff;
  text-align: left;
  border: 1px solid #fff;
  width: 100%;
  border: 0;
  font-size: 1.375rem;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 991px) {
  .cb-accordion li h3 .accordion-toggle {
    font-size: 1.125rem;
  }
}
.cb-accordion li h3 .accordion-toggle:hover {
  background: #f4f5f5;
}
.cb-accordion li h3 .accordion-toggle:after {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 14px;
  background-image: url(../../../../themes/nationalprimepay/images/down-arrow.png);
  transition: 100ms all ease-in-out;
}
.cb-accordion li h3 .accordion-toggle[aria-expanded="true"] {
  background: #f4f5f5;
}
.cb-accordion li h3 .accordion-toggle[aria-expanded="true"]:after {
  transform: rotateX(180deg) translateY(6px);
}
.cb-accordion li .accordion-content {
  background: #ffffff;
  color: #57575c;
  font-size: 1.125rem;
  padding: 10px 20px 40px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .cb-accordion li .accordion-content {
    font-size: 1rem;
    padding: 10px 10px 20px;
  }
}
.cb-accordion li .accordion-content a {
  color: #185d56;
}
.cb-accordion li .accordion-content ul {
  margin-top: 10px;
}
.cb-accordion li .accordion-content ul li {
  padding-left: 30px;
  position: relative;
}
.cb-accordion li .accordion-content ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.cb-accordion li .accordion-content ol {
  width: 100%;
  counter-reset: item;
  margin-top: 10px;
  margin-left: 14px;
}
.cb-accordion li .accordion-content ol li {
  padding-left: 15px;
  position: relative;
}
.cb-accordion li .accordion-content ol li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: 0;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}
.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}
.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}
.flickity-button:active {
  opacity: 0.6;
}
.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}
.flickity-button-icon {
  fill: #333;
}
.flickity-prev-next-button {
  top: auto;
  bottom: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
  border-radius: 0;
}
.flickity-prev-next-button.previous {
  left: -50px;
  right: 0;
  margin: auto;
}
.flickity-prev-next-button.next {
  left: 0;
  right: -50px;
  margin: auto;
}
.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}
.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
body {
  font-family: "Calibre Regular";
}
.main-container {
  width: 100%;
  display: table;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .desktop-break {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .mobile-break {
    display: none;
  }
}
iframe {
  border: 0;
}
h1 {
  font-family: "Calibre Bold";
  font-size: 3.75rem;
  line-height: 3.75rem;
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}
h2 {
  font-family: "Calibre Regular";
  font-size: 2.5rem;
  line-height: 2.5rem;
}
h2 strong {
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
h3 {
  font-family: "Calibre Semibold";
  font-size: 1.875rem;
  line-height: 2.25rem;
}
h3 strong {
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 768px) {
  h3 {
    font-size: 1.125rem;
    line-height: 1.875rem;
  }
}
h4 {
  font-family: "Calibre Regular";
  font-size: 1.5rem;
  line-height: 1.875rem;
}
h4 strong {
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 768px) {
  h4 {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
h5 {
  font-family: "Calibre Semibold";
  font-size: 1.375rem;
  line-height: 1.875rem;
}
h5 strong {
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 768px) {
  h5 strong {
    font-family: "Calibre Medium";
  }
}
@media only screen and (max-width: 768px) {
  h5 {
    font-family: "Calibre Medium";
    font-size: 1rem;
    line-height: 1.125rem;
  }
}
address p {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.5rem !important;
}
blockquote {
  width: 100%;
  max-width: 785px;
  margin: auto;
  border-left: 5px solid #d22630;
  color: #00205b;
  font-size: 2rem;
  font-family: "Calibre Medium";
  padding: 20px 20px 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
blockquote p {
  font-size: 2rem;
  font-family: "Calibre Medium";
  line-height: 1.5 !important;
  margin: 0 !important;
}
@media only screen and (max-width: 991px) {
  blockquote {
    font-size: 1.5rem;
  }
}
blockquote:before {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/blockquote-quote.png);
  background-size: cover;
  display: block;
  width: 70px;
  height: 50px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  blockquote:before {
    font-size: 1.5rem;
    width: 48px;
    height: 34px;
  }
}
@media only screen and (max-width: 480px) {
  blockquote:before {
    font-size: 1.5rem;
    width: 48px;
    height: 34px;
  }
}
section p {
  margin-bottom: 15px;
  margin-top: 15px;
}
p,
span,
a,
li,
table {
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: "Calibre Regular";
}
p.size-small,
span.size-small,
a.size-small,
li.size-small,
table.size-small {
  font-size: 1rem;
  line-height: 1.5;
}
p.size-medium,
span.size-medium,
a.size-medium,
li.size-medium,
table.size-medium {
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  p.size-medium,
  span.size-medium,
  a.size-medium,
  li.size-medium,
  table.size-medium {
    font-size: 1.125rem;
  }
}
p.size-large,
span.size-large,
a.size-large,
li.size-large,
table.size-large {
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  p.size-large,
  span.size-large,
  a.size-large,
  li.size-large,
  table.size-large {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
p.size-xlarge,
span.size-xlarge,
a.size-xlarge,
li.size-xlarge,
table.size-xlarge {
  font-size: 1.25rem;
  line-height: 1.5;
}
a {
  color: #185d56;
  text-decoration: underline;
}
a:hover {
  text-decoration: underline;
  font-weight: bold;
  color: #185d56;
}
a:focus {
  outline: thin dotted;
}
textarea:focus,
button:focus,
input:focus,
select:focus {
  outline: thin dotted;
}
.font-regular {
  font-family: "Calibre Regular";
}
.font-medium {
  font-family: "Calibre Medium";
}
.font-semibold {
  font-family: "Calibre Semibold";
}
.font-bold {
  font-family: "Calibre Bold";
}
.site-button {
  font-size: 1.375rem;
  font-family: "Calibre Semibold";
  background: #185d56;
  color: white;
  padding: 15px 20px;
  display: table;
  text-decoration: none;
  transition: 0.25s all ease-in-out;
}
.site-button:hover {
  background: #094943;
}
.site-link-green,
.site-link-white {
  font-size: 1.125rem;
  font-family: "Calibre Bold";
  color: #185d56;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  display: table;
  text-decoration: none;
  transition: 0.25s all ease-in-out;
}
.site-link-green {
  color: #185d56;
}
.site-link-green:hover {
  border-bottom: 2px solid #185d56;
}
.site-link-white {
  color: white;
}
.site-link-white:hover {
  border-bottom: 2px solid white;
}
.grey-backdrop {
  background: #edeeee;
  display: table;
}
.section-heading {
  display: table;
  padding: 25px 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .section-heading {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-heading {
    padding: 25px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading {
    padding: 15px 15px;
  }
}
.section-heading span {
  font-size: 1.875rem;
  font-family: "Calibre Semibold";
  display: table;
  padding: 5px 25px;
}
@media only screen and (max-width: 991px) {
  .section-heading span {
    font-size: 1.25rem;
    font-family: "Calibre Bold";
    padding: 5px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-heading span {
    padding: 5px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading span {
    padding: 5px 15px;
  }
}
.section-heading h2 {
  font-family: "Calibre Bold";
  display: table;
  clear: both;
  font-size: 3.75rem;
  padding: 25px 25px 10px;
  background: #ccd2de;
}
@media only screen and (max-width: 991px) {
  .section-heading h2 {
    font-size: 2.5rem;
    margin: 0 15px;
    padding: 20px 10px 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-heading h2 {
    margin: 0 15px;
    padding: 20px 10px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading h2 {
    margin: 0;
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 480px) {
  .section-heading h2 {
    line-height: 2.25rem;
    padding: 10px 10px 0 10px;
  }
}
.breadcrumb {
  padding: 0;
  background: none;
  margin: 0;
  border: none;
  border-radius: 0;
}
.related-content__content-block {
  position: relative;
  height: 100%;
  max-height: 700px;
}
.related-content__header {
  display: flex;
  padding-right: 0px;
}
@media only screen and (max-width: 480px) {
  .related-content__header {
    display: block;
    padding-right: 0;
  }
}
.related-content__header h3 {
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 575px) {
  .related-content__title {
    line-height: 1.125rem;
    font-size: 1rem;
  }
}
.related-content__nav-links {
  text-align: right;
  width: 20%;
}
.related-content__nav-links-container {
  border: solid 1px #d22630;
  padding: 10px;
  display: none;
}
.related-content__tiles-container {
  position: relative;
}
@media only screen and (max-width: 575px) {
  .related-content__tiles-container {
    margin: auto;
  }
}
.related-content__tiles-container:after {
  content: "flickity";
  display: none;
}
.related-content__tiles-container .flickity-page-dots {
  bottom: -40px;
  z-index: 9;
}
.related-content__tiles-container .flickity-page-dots .dot {
  border-radius: 0;
  background: #d22630;
  opacity: 1;
}
.related-content__tiles-container .flickity-page-dots .dot.is-selected {
  background: #00205b;
}
.related-content__tiles-container .flickity-prev-next-button {
  top: -6%;
  bottom: auto;
  background-color: transparent;
  border: 1px solid #d22630;
}
.related-content__tiles-container .flickity-prev-next-button.previous {
  background: url(../../../../themes/nationalprimepay/images/t2_left_arrow.png)
    no-repeat center center;
}
.related-content__tiles-container .flickity-prev-next-button.next {
  background: url(../../../../themes/nationalprimepay/images/t2_right_arrow.png)
    no-repeat center center;
}
.related-content__tiles-container
  .flickity-prev-next-button
  .flickity-button-icon {
  fill: #d22630;
  display: none;
}
@media only screen and (max-width: 1199px) {
  .related-content__tiles-container .flickity-prev-next-button {
    display: none;
  }
}
.related-content__tiles-container .flickity-prev-next-button.previous {
  margin-right: 3.5%;
}
.related-content__tiles-container .flickity-prev-next-button.next {
  margin-right: 4%;
}
@media only screen and (min-width: 1401px) {
  .related-content__tiles-container .flickity-prev-next-button.previous {
    margin-right: 3.5%;
  }
  .related-content__tiles-container .flickity-prev-next-button.next {
    margin-right: 4%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .related-content__tiles-container .flickity-slider > div {
    width: 31.5%;
    margin-right: 2%;
  }
}
@media only screen and (max-width: 1199px) {
  .related-content__tiles-container .flickity-slider > div {
    width: 31.5%;
    margin-right: 2%;
  }
}
@media only screen and (max-width: 767px) {
  .related-content__tiles-container .flickity-slider > div {
    width: 100%;
  }
}
.related-content__tiles {
  height: 100%;
  min-width: 448px;
  margin-right: 20px;
  background: #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .related-content__tiles div {
    width: 100% !important;
    display: inline-block;
  }
}
@media only screen and (max-width: 1199px) {
  .related-content__tiles div {
    width: 100% !important;
    display: inline-block;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .related-content__tiles {
    min-width: 100%;
    width: 100% !important;
  }
}
@media only screen and (max-width: 1199px) {
  .related-content__tiles {
    min-width: 100%;
    width: 100% !important;
    background: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .related-content__tiles {
    min-width: 100%;
  }
}
.related-content .tiles__img-container {
  height: 100%;
  max-height: 277px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .related-content .tiles__img-container {
    max-height: 180px;
  }
}
.related-content .tiles__img-container iframe {
  width: 100%;
  max-height: 277px;
  min-height: 277px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .related-content .tiles__img-container iframe {
    min-height: 180px;
    max-height: 180px;
  }
}
.related-content .tiles__img-container img {
  width: 100%;
  object-fit: cover;
  min-height: 277px;
  max-height: 277px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .related-content .tiles__img-container img {
    min-height: 180px;
    max-height: 180px;
  }
}
.related-content .tiles__detail-container {
  max-width: 448px;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  min-height: 223px;
  border-bottom: solid 3px #ccd2de;
}
.related-content .tiles__detail-container:hover {
  border-bottom: solid 3px #d22630;
}
.related-content .tiles__detail-container:hover .tiles__headline {
  text-decoration: none;
}
.related-content .tiles__detail-container:hover .tiles__link-container a {
  color: #d22630;
}
.related-content
  .tiles__detail-container:hover
  .tiles__link-container
  a
  .see-details-text {
  border-bottom: solid 1px #d22630;
}
.related-content .tiles__detail-container:hover .tiles__link-container a:after {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/t2_right_arrow.png);
  background-repeat: repeat;
  background-size: auto;
  width: 21px;
  height: 15px;
  position: relative;
  display: inline-block;
  top: 2px;
  right: -5px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .related-content .tiles__detail-container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .related-content .tiles__detail-container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .related-content .tiles__detail-container {
    max-width: 100%;
  }
}
.related-content .tiles__text {
  min-height: 120px;
  color: #57575c;
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-family: "Calibre Regular";
}
@media only screen and (max-width: 991px) {
  .related-content .tiles__text {
    font-size: 1rem;
  }
}
.related-content .tiles__text br {
  display: none;
}
.related-content .tiles__date {
  color: #185d56;
  font-size: 1.25rem;
  line-height: 1.875rem;
  min-height: 22px;
  font-family: "Calibre Regular";
}
@media only screen and (max-width: 991px) {
  .related-content .tiles__date {
    font-size: 0.875rem;
  }
}
.related-content .tiles__headline {
  color: #00205b;
  font-family: "Calibre Bold";
  font-size: 1.25rem;
  line-height: 1.875rem;
}
@media only screen and (max-width: 991px) {
  .related-content .tiles__headline {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  .related-content .tiles__headline {
    min-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .related-content .tiles__headline {
    min-height: unset;
  }
}
.related-content .tiles__link-container {
  display: inline-block;
}
.related-content .tiles__link-container .see-details-text {
  font-family: "Calibre Bold";
  font-size: 1.375rem;
}
@media only screen and (max-width: 991px) {
  .related-content .tiles__link-container .see-details-text {
    font-size: 1rem;
  }
}
.related-content .tiles__link-container a {
  text-decoration: none;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
}
@media only screen and (max-width: 991px) {
  .related-content .tiles__link-container a {
    font-size: 1rem;
  }
}
.related-content .tiles__link-container a:hover {
  color: #d22630 !important;
  border-bottom: solid 1px #d22630 !important;
}
.related-content .tiles__link-container a:hover:after {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/t2_right_arrow.png);
  width: 21px;
  height: 15px;
  position: relative;
  display: inline-block;
  top: 2px;
  right: -5px;
  background-repeat: no-repeat;
  background-size: cover;
}
.related-content .tiles__link-container a:after {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/discover-arrow.png);
  width: 21px;
  height: 15px;
  position: relative;
  display: inline-block;
  top: 2px;
  right: -5px;
  background-repeat: no-repeat;
  background-size: cover;
}
.related-content .tiles__link-container a span {
  display: inline-block;
}
.related-content .tiles__link-container a span img {
  height: auto;
}
.customer-tombstones__header {
  margin-bottom: 20px;
  font-family: "Calibre bold";
}
.customer-tombstones .flickity-slider > div {
  width: 31.5%;
  margin-right: 2%;
}
.customer-tombstones__container {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .customer-tombstones__container {
    -ms-grid-rows: auto;
    grid-auto-rows: auto;
    margin: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 575px) {
  .customer-tombstones__container {
    margin: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.customer-tombstones__container:after {
  content: "flickity";
  display: none;
}
.customer-tombstones__container .flickity-page-dots .dot {
  border-radius: 0;
  background: #d22630;
  opacity: 1;
}
.customer-tombstones__container .flickity-page-dots .dot.is-selected {
  background: #00205b;
}
.customer-tombstones__tiles {
  background-color: #ffffff;
  text-align: center;
  border-bottom: solid 3px #d22630;
  padding: 0 10px;
  position: relative;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  width: 31.5%;
  margin-right: 2%;
}
@media only screen and (max-width: 767px) {
  .customer-tombstones__tiles {
    -ms-grid-rows: auto;
    grid-auto-rows: auto;
  }
}
@media only screen and (max-width: 767px) {
  .customer-tombstones__tiles {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
@media only screen and (min-width: 992px) {
  .customer-tombstones__tiles {
    padding: 10px 30px;
  }
}
.customer-tombstones__tiles .customer-tombstones__text {
  float: left;
  width: 100%;
  position: relative;
}
.customer-tombstones__tiles > * {
  margin: 10px auto;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Calibre Regular";
}
.customer-tombstones__amount {
  color: #00205b;
  font-family: "Calibre Semibold";
}
.customer-tombstones__title {
  color: #00205b;
}
#block-userlogin {
  padding-bottom: 50px;
}
#block-userlogin ul li {
  float: left;
  padding-right: 10px;
}
#user-login-form .form-item {
  margin-bottom: 20px;
}
#user-login-form .js-form-type-textfield label {
  float: left;
  padding-right: 20px;
  width: 100px;
}
#user-login-form .js-form-type-password {
  clear: left;
}
#user-login-form .js-form-type-password label {
  float: left;
  padding-right: 23px;
  width: 100px;
}
#user-login-form .button {
  margin-top: 10px;
  line-height: 3.125rem;
  width: 160px;
  text-align: center;
  margin-left: 94px;
  margin-bottom: 20px;
  padding: 0;
  background: #094943;
  outline: none;
  border: 0;
  color: #fff;
  font-size: 1.375rem;
  font-family: "Calibre Semibold";
}
.cl-get-in-touch,
.community-hub {
  position: relative;
}
@media only screen and (max-width: 575px) {
  .cl-get-in-touch,
  .community-hub {
    margin: auto;
  }
}
.cl-get-in-touch:after,
.community-hub:after {
  content: "flickity";
  display: none;
}
.cl-get-in-touch .flickity-page-dots,
.community-hub .flickity-page-dots {
  bottom: -40px;
  z-index: 9;
}
.cl-get-in-touch .flickity-page-dots .dot,
.community-hub .flickity-page-dots .dot {
  border-radius: 0;
  background: #d22630;
  opacity: 1;
}
.cl-get-in-touch .flickity-page-dots .dot.is-selected,
.community-hub .flickity-page-dots .dot.is-selected {
  background: #00205b;
}
.cl-get-in-touch .flickity-prev-next-button,
.community-hub .flickity-prev-next-button {
  top: -9%;
  bottom: auto;
  background-color: transparent;
  border: 1px solid #d22630;
}
.cl-get-in-touch .flickity-prev-next-button.previous,
.community-hub .flickity-prev-next-button.previous {
  background: url(../../../../themes/nationalprimepay/images/t2_left_arrow.png)
    no-repeat center center;
}
.cl-get-in-touch .flickity-prev-next-button.next,
.community-hub .flickity-prev-next-button.next {
  background: url(../../../../themes/nationalprimepay/images/t2_right_arrow.png)
    no-repeat center center;
}
.cl-get-in-touch .flickity-prev-next-button .flickity-button-icon,
.community-hub .flickity-prev-next-button .flickity-button-icon {
  fill: #d22630;
  display: none;
}
@media only screen and (max-width: 1199px) {
  .cl-get-in-touch .flickity-prev-next-button,
  .community-hub .flickity-prev-next-button {
    display: none;
  }
}
.cl-get-in-touch .flickity-prev-next-button.previous,
.community-hub .flickity-prev-next-button.previous {
  margin-right: 3.5%;
}
.cl-get-in-touch .flickity-prev-next-button.next,
.community-hub .flickity-prev-next-button.next {
  margin-right: 4%;
}
@media only screen and (min-width: 1401px) {
  .cl-get-in-touch .flickity-prev-next-button.previous,
  .community-hub .flickity-prev-next-button.previous {
    margin-right: 3.5%;
  }
  .cl-get-in-touch .flickity-prev-next-button.next,
  .community-hub .flickity-prev-next-button.next {
    margin-right: 4%;
  }
}
.cl-get-in-touch .flickity-slider > div,
.community-hub .flickity-slider > div {
  width: 31.5%;
  margin-right: 2%;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .cl-get-in-touch .flickity-slider > div,
  .community-hub .flickity-slider > div {
    width: 31.5%;
    margin-right: 2%;
  }
}
@media only screen and (min-width: 1900px) {
  .cl-get-in-touch .flickity-slider > div,
  .community-hub .flickity-slider > div {
    width: 31.5%;
    margin-right: 2%;
  }
}
@media only screen and (max-width: 1199px) {
  .cl-get-in-touch .flickity-slider > div,
  .community-hub .flickity-slider > div {
    width: 31.5%;
    margin-right: 2%;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch .flickity-slider > div,
  .community-hub .flickity-slider > div {
    width: 100%;
  }
}
.customer-tombstones {
  position: relative;
}
@media only screen and (max-width: 575px) {
  .customer-tombstones {
    margin: auto;
  }
}
.customer-tombstones:after {
  content: "flickity";
  display: none;
}
.customer-tombstones .flickity-page-dots {
  bottom: -40px;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .customer-tombstones .flickity-page-dots {
    bottom: -15px;
  }
}
.customer-tombstones .flickity-page-dots .dot {
  border-radius: 0;
  background: #d22630;
  opacity: 1;
}
.customer-tombstones .flickity-page-dots .dot.is-selected {
  background: #00205b;
}
.customer-tombstones .flickity-prev-next-button {
  top: -13%;
  bottom: auto;
  background-color: transparent;
  border: 1px solid #d22630;
}
.customer-tombstones .flickity-prev-next-button.previous {
  background: url(../../../../themes/nationalprimepay/images/t2_left_arrow.png)
    no-repeat center center;
}
.customer-tombstones .flickity-prev-next-button.next {
  background: url(../../../../themes/nationalprimepay/images/t2_right_arrow.png)
    no-repeat center center;
}
.customer-tombstones .flickity-prev-next-button .flickity-button-icon {
  fill: #d22630;
  display: none;
}
@media only screen and (max-width: 1199px) {
  .customer-tombstones .flickity-prev-next-button {
    display: none;
  }
}
.customer-tombstones .flickity-prev-next-button.previous {
  margin-right: 3.5%;
}
.customer-tombstones .flickity-prev-next-button.next {
  margin-right: 4%;
}
@media only screen and (min-width: 1401px) {
  .customer-tombstones .flickity-prev-next-button.previous {
    margin-right: 3.5%;
  }
  .customer-tombstones .flickity-prev-next-button.next {
    margin-right: 4%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .customer-tombstones .flickity-slider > div {
    width: 31.5%;
    margin-right: 2%;
  }
}
@media only screen and (max-width: 1199px) {
  .customer-tombstones .flickity-slider > div {
    width: 31.5%;
    margin-right: 2%;
  }
}
@media only screen and (max-width: 767px) {
  .customer-tombstones .flickity-slider > div {
    width: 100%;
  }
}
.node-1461 .flickity-prev-next-button {
  top: -24%;
}
.tabs {
  height: auto;
  margin: 0 auto;
}
.tabs ul.tabs-list {
  max-width: 100% !important;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.tabs ul.tabs-list li {
  width: 50% !important;
  float: left;
  margin: 0px;
  text-align: center;
  background-color: #e0e4eb;
  padding-left: 0;
  padding-right: 0;
  list-style-type: none;
  padding-bottom: 10px !important;
}
@media only screen and (max-width: 480px) {
  .tabs ul.tabs-list li {
    padding-left: 5px !important;
  }
}
.tabs ul.tabs-list li:before {
  list-style-type: none;
  background: none !important;
}
.tabs .tabs-list li:hover {
  cursor: pointer;
}
.tabs .tabs-list li a {
  text-decoration: none;
  font-family: "Calibre bold";
  font-size: 1.875rem;
  color: #000;
  line-height: 2.25rem;
}
@media only screen and (max-width: 768px) {
  .tabs .tabs-list li a {
    font-size: 1.125rem;
    line-height: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .tabs .tabs-list li a {
    font-size: 1.125rem;
    line-height: 1rem;
  }
}
.tabs .tabs-list li h3 {
  margin-top: 15px !important;
  text-align: center !important;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .tabs .tabs-list li h3 {
    font-size: 1.125rem;
    line-height: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .tabs .tabs-list li h3 {
    font-size: 1.125rem;
    line-height: 1rem;
  }
}
.tabs .tab {
  display: none;
  width: 85%;
  min-height: 250px;
  height: auto;
  border-radius: 3px;
  padding: 20px 15px;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .tabs .tab {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .tabs .tab {
    width: 100%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .tabs .tab {
    width: 100%;
  }
}
.active {
  display: block !important;
}
.tabs .tabs-list li.active {
  background-color: #fff;
  color: #d22630 !important;
  font-family: "Calibre bold";
}
.active a {
  color: #d22630 !important;
  font-family: "Calibre bold";
}
@media screen and (max-width: 360px) {
  .tabs {
    margin: 0;
    width: 96%;
  }
  .tabs .tabs-list li {
    width: 80px;
  }
}
.tabs-wrapper {
  margin: 0 auto;
  width: 100%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #ccd2de;
}
.path-location .ps-banner__image,
.path-about-us .ps-banner__image {
  margin-top: 0;
}
.fancybox-container .fancybox-content {
  padding: 20px;
  background: transparent;
}
.fancybox-container .mail-popup-content {
  background: #ffffff;
  padding: 20px;
}
.fancybox-container .mail-popup-inner-content {
  background: #edeeee !important;
  padding: 10px 15px 10px 15px;
}
.fancybox-container .popupHead {
  margin-bottom: 20px;
}
.fancybox-container h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 480px) {
  .fancybox-container h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.fancybox-container .ui-dialog-buttonset {
  text-align: right;
}
.fancybox-container .ui-dialog-buttonset .button {
  color: #fff !important;
  line-height: 3rem;
  width: auto;
  text-align: center;
  margin-left: 5px;
  padding: 0 20px;
  padding-top: 0px;
  padding-top: 0px;
  display: inline-block;
  padding-top: 5px;
  font-size: 1.375rem;
  font-family: "Calibre Semibold";
  border: 0;
  background: #185d56;
  margin-top: 15px;
  text-decoration: none !important;
}
@media only screen and (max-width: 480px) {
  .fancybox-container .ui-dialog-buttonset .button {
    width: 100%;
  }
}
.fancybox-container .fancybox-slide--html .fancybox-close-small {
  background: url(../../../../themes/nationalprimepay/images/cancel.png);
  height: 24px;
  top: 8px;
  right: 8px;
  width: 24px;
  border: 0;
}
.fancybox-container .fancybox-slide--html .fancybox-close-small svg {
  display: none;
}
form#emi-calculator-display-form {
  margin-top: 20px;
}
form#emi-calculator-display-form table#edit-emicalculator {
  box-shadow: none !important;
  border: 0 !important;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  margin: 25px auto;
  padding-top: 20px;
}
form#emi-calculator-display-form table#edit-emicalculator thead {
  display: none;
}
form#emi-calculator-display-form table#edit-emicalculator tbody tr {
  background: none !important;
}
form#emi-calculator-display-form table#edit-emicalculator tbody tr td {
  vertical-align: middle;
  text-align: left;
  padding: 10px !important;
  color: #000;
}
form#emi-calculator-display-form
  table#edit-emicalculator
  tbody
  tr
  td
  .form-item {
  max-width: 100%;
}
form#emi-calculator-display-form
  table#edit-emicalculator
  tbody
  tr
  td
  .form-item
  input {
  width: 100%;
  padding: 14.5px 20px;
}
@media only screen and (max-width: 480px) {
  form#emi-calculator-display-form table#edit-emicalculator tbody tr td {
    display: block;
    width: 100%;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    font-size: 1.125rem;
    font-family: "Calibre Semibold";
  }
}
@media only screen and (max-width: 480px) {
  form#emi-calculator-display-form
    table#edit-emicalculator
    tbody
    tr
    td.info-text {
    display: block;
    width: 100%;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: #57575c;
    font-family: "Calibre Regular";
  }
}
form#emi-calculator-display-form
  table#edit-emicalculator
  tbody
  tr:nth-child(2n) {
  background: none !important;
}
form#emi-calculator-display-form table#edit-emicalculator caption {
  display: none;
}
form#emi-calculator-display-form .button {
  background: #185d56;
  color: white;
  border: 0;
  box-shadow: 0;
  width: 187px;
  height: 60px;
  font-size: 1.375rem;
  line-height: 1.625rem;
  display: table;
  text-align: center;
  padding: 20px;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 480px) {
  form#emi-calculator-display-form .button {
    width: 100%;
  }
}
form#emi-calculator-display-form table#edit-emicalculator-values {
  box-shadow: none !important;
  border: 0 !important;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  margin: 25px auto;
  padding-top: 20px;
}
form#emi-calculator-display-form table#edit-emicalculator-values thead {
  display: none;
}
form#emi-calculator-display-form table#edit-emicalculator-values tbody tr {
  background: none !important;
}
form#emi-calculator-display-form table#edit-emicalculator-values tbody tr td {
  vertical-align: middle;
  text-align: left;
  padding: 10px !important;
}
form#emi-calculator-display-form
  table#edit-emicalculator-values
  tbody
  tr
  td
  .form-item {
  max-width: 100%;
}
form#emi-calculator-display-form
  table#edit-emicalculator-values
  tbody
  tr
  td
  .form-item
  input {
  width: 100%;
  padding: 14.5px 20px;
}
form#emi-calculator-display-form table#edit-emicalculator-values caption {
  display: none;
}
form#emi-calculator-display-form #table-box h2 {
  margin-bottom: 20px;
}
.messages {
  background: no-repeat 10px 17px;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border: 1px solid;
  border-top-color: currentcolor;
  border-top-width: 1px;
  border-right-color: currentcolor;
  border-right-width: 1px;
  border-bottom-color: currentcolor;
  border-bottom-width: 1px;
  border-left-color: currentcolor;
  border-left-width: 1px;
  border-width: 1px 1px 1px 0;
  border-radius: 2px;
  padding: 15px 20px 15px 35px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4555;
  margin: 9px 0 10px 8px;
}
.messages--error {
  background-color: #fcf4f2;
  color: #a51b00;
  background-image: url("../../../../core/misc/icons/e32700/error.svg");
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent;
  box-shadow: -8px 0 0 #e62600;
}
.navbar {
  padding-left: 1rem;
  padding-right: 1rem;
}
.form-control {
  border-radius: 0;
}
.site-alert {
  height: auto;
  overflow: hidden;
  transition: 0.25s max-height ease-in-out;
}
.site-alert .notice-message {
  background: #00205b;
  width: 100%;
  font-family: "Calibre Regular";
  color: white;
  text-align: center;
  display: block;
  position: relative;
  padding-top: 13px;
  padding-bottom: 13px;
}
.site-alert .notice-message__container {
  position: relative;
  padding-bottom: 0;
  padding: 0 50px;
}
@media only screen and (max-width: 767px) {
  .site-alert .notice-message__container {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 480px) {
  .site-alert .notice-message__container {
    padding: 0 12px;
  }
}
.site-alert .notice-message__container p {
  line-height: 1.5;
  font-size: 1.125rem;
  font-weight: 100;
}
@media only screen and (max-width: 767px) {
  .site-alert .notice-message__container p {
    font-size: 1rem;
    padding-right: 25px;
  }
}
.site-alert .notice-message__container a {
  color: white;
  font-size: 1.125rem;
  line-height: 1.5;
  transition: 0.25s all ease-in-out;
}
.site-alert .notice-message__container a:hover {
  color: #fedea6;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .site-alert .notice-message__container a {
    font-size: 1rem;
  }
}
.site-alert .notice-message__container .close-notice {
  position: absolute;
  color: white;
  top: -5px;
  right: 10px;
  font-size: 1.25rem;
  padding: 0 0 0 10px;
  opacity: 0.85;
  cursor: pointer;
  transition: 0.25s opacity ease-in-out;
}
.site-alert .notice-message__container .close-notice:hover {
  opacity: 1;
}
.site-alert .notice-message__container .close-notice img {
  width: 24px;
  height: 27px;
}
.site-alert .notice-message__container .close-notice a {
  background: url("../../../../themes/nationalprimepay/images/close-alert.png")
    no-repeat;
  text-indent: -9999999px;
  width: 24px;
  height: 27px;
  display: inline-block;
  background-size: 24px 27px;
  line-height: 1.75rem;
}
.site-alert .notice-message__container .close-notice a:hover,
.site-alert .notice-message__container .close-notice a:focus {
  background: url("../../../../themes/nationalprimepay/images/close-alert-yellow.png")
    no-repeat;
  width: 24px;
  height: 27px;
  display: inline-block;
  background-size: 24px 27px;
  line-height: 1.75rem;
}
.site-alert.hide-alert {
  max-height: 0;
  padding: 0;
  border: 0;
}
.urgent-compliance-message {
  background: #fdeed1;
  border: 1px solid #fedea6;
  color: #000000;
  text-align: center;
  height: auto;
  display: block;
  width: calc(100% - 30px);
  margin: 25px auto;
  position: relative;
  overflow: hidden;
  transition: 0.25s max-height ease-in-out;
  padding: 20px 50px;
}
@media only screen and (max-width: 767px) {
  .urgent-compliance-message {
    width: 100%;
    margin: 0;
    padding: 10px 25px;
    text-align: left;
  }
}
.urgent-compliance-message.hide-alert {
  max-height: 0;
  padding: 0;
  border: 0;
}
.urgent-compliance-message p {
  line-height: 0.9375rem;
  font-size: 1.125rem;
  padding: 0 !important;
  margin: 0 !important;
}
@media only screen and (max-width: 768px) {
  .urgent-compliance-message p {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 480px) {
  .urgent-compliance-message p {
    font-size: 0.9375rem;
    max-width: 95%;
  }
}
.urgent-compliance-message a {
  color: #00205b;
  font-size: 1.125rem;
  line-height: 0.9375rem;
  transition: 0.25s all ease-in-out;
}
@media only screen and (max-width: 768px) {
  .urgent-compliance-message a {
    font-size: 0.9375rem;
  }
}
.urgent-compliance-message a:hover {
  color: #d22630;
  text-decoration: underline;
}
.urgent-compliance-message .close-notice {
  position: absolute;
  color: white;
  top: 15px;
  right: 0;
  font-size: 1.25rem;
  padding: 0 10px;
  cursor: pointer;
  opacity: 0.85;
  transition: 0.25s opacity ease-in-out;
}
@media only screen and (max-width: 575px) {
  .urgent-compliance-message .close-notice {
    top: 8px;
  }
}
.urgent-compliance-message .close-notice:hover {
  opacity: 1;
}
.urgent-compliance-message .close-notice img {
  width: 24px;
  height: 24px;
}
.header.wealth-management.sticky-head .main-navigation__logo .navbar-brand {
  max-width: unset;
}
.header.application-guidelines .header__top-bar,
.header.online-user-help-guide .header__top-bar,
.header.stockholder-information .header__top-bar,
.header.corporate-governance .header__top-bar,
.header.newsroom .header__top-bar,
.header.financial-information .header__top-bar,
.header.nationalprimepay-bank-foundation .header__top-bar,
.header.nationalprimepay-online-help-guide .header__top-bar,
.path-nationalprimepay-onlinehelp .header__top-bar,
.header.nationalprimepay-general-bancorp .header__top-bar,
.header.our-grant-focus .header__top-bar,
.header.frequently-asked-questions- .header__top-bar {
  display: none;
}
@media only screen and (max-width: 480px) {
  .header.application-guidelines
    .main-navigation__mobilemenu.active-mobile-contact-locations,
  .header.online-user-help-guide
    .main-navigation__mobilemenu.active-mobile-contact-locations,
  .header.stockholder-information
    .main-navigation__mobilemenu.active-mobile-contact-locations,
  .header.corporate-governance
    .main-navigation__mobilemenu.active-mobile-contact-locations,
  .header.newsroom .main-navigation__mobilemenu.active-mobile-contact-locations,
  .header.financial-information
    .main-navigation__mobilemenu.active-mobile-contact-locations,
  .header.nationalprimepay-bank-foundation
    .main-navigation__mobilemenu.active-mobile-contact-locations,
  .header.nationalprimepay-online-help-guide
    .main-navigation__mobilemenu.active-mobile-contact-locations,
  .path-nationalprimepay-onlinehelp
    .main-navigation__mobilemenu.active-mobile-contact-locations,
  .header.nationalprimepay-general-bancorp
    .main-navigation__mobilemenu.active-mobile-contact-locations,
  .header.our-grant-focus
    .main-navigation__mobilemenu.active-mobile-contact-locations,
  .header.frequently-asked-questions-
    .main-navigation__mobilemenu.active-mobile-contact-locations {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .header.application-guidelines .main-navigation__search.active-search,
  .header.online-user-help-guide .main-navigation__search.active-search,
  .header.stockholder-information .main-navigation__search.active-search,
  .header.corporate-governance .main-navigation__search.active-search,
  .header.newsroom .main-navigation__search.active-search,
  .header.financial-information .main-navigation__search.active-search,
  .header.nationalprimepay-bank-foundation
    .main-navigation__search.active-search,
  .header.nationalprimepay-online-help-guide
    .main-navigation__search.active-search,
  .path-nationalprimepay-onlinehelp .main-navigation__search.active-search,
  .header.nationalprimepay-general-bancorp
    .main-navigation__search.active-search,
  .header.our-grant-focus .main-navigation__search.active-search,
  .header.frequently-asked-questions- .main-navigation__search.active-search {
    top: 118px;
  }
}
@media only screen and (max-width: 480px) {
  .header.application-guidelines .main-navigation__menu.active-mobile-menu,
  .header.online-user-help-guide .main-navigation__menu.active-mobile-menu,
  .header.stockholder-information .main-navigation__menu.active-mobile-menu,
  .header.corporate-governance .main-navigation__menu.active-mobile-menu,
  .header.newsroom .main-navigation__menu.active-mobile-menu,
  .header.financial-information .main-navigation__menu.active-mobile-menu,
  .header.nationalprimepay-bank-foundation
    .main-navigation__menu.active-mobile-menu,
  .header.nationalprimepay-online-help-guide
    .main-navigation__menu.active-mobile-menu,
  .path-nationalprimepay-onlinehelp .main-navigation__menu.active-mobile-menu,
  .header.nationalprimepay-general-bancorp
    .main-navigation__menu.active-mobile-menu,
  .header.our-grant-focus .main-navigation__menu.active-mobile-menu,
  .header.frequently-asked-questions-
    .main-navigation__menu.active-mobile-menu {
    margin-top: 93px;
  }
}
@media only screen and (max-width: 991px) {
  .header.application-guidelines .wrap-menu-container,
  .header.online-user-help-guide .wrap-menu-container,
  .header.stockholder-information .wrap-menu-container,
  .header.corporate-governance .wrap-menu-container,
  .header.newsroom .wrap-menu-container,
  .header.financial-information .wrap-menu-container,
  .header.nationalprimepay-bank-foundation .wrap-menu-container,
  .header.nationalprimepay-online-help-guide .wrap-menu-container,
  .path-nationalprimepay-onlinehelp .wrap-menu-container,
  .header.nationalprimepay-general-bancorp .wrap-menu-container,
  .header.our-grant-focus .wrap-menu-container,
  .header.frequently-asked-questions- .wrap-menu-container {
    top: 118px !important;
  }
}
@media only screen and (max-width: 480px) {
  .header.online-user-help-guide
    navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item {
    top: 0 !important;
  }
}
@media only screen and (max-width: 991px) {
  .header.online-user-help-guide
    navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item {
    top: 0 !important;
  }
}
.header.sticky-head .main-navigation__menu___ul li.js-menu-tabs-item {
  max-width: 105px;
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .header.sticky-head .main-navigation__menu___ul li.js-menu-tabs-item {
    max-width: 88px;
  }
}
.node-66.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item {
  margin: 0 5px;
  max-width: 190px !important;
}
.node-66.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item
  a {
  max-width: 185px !important;
}
.node-66.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item
  ul.menu-level-1
  li
  .megamenu-title
  a {
  max-width: 100% !important;
}
.node-61.lang-es
  .header.sticky-head
  .main-navigation__menu___ul
  li.js-menu-tabs-item {
  max-width: 94px !important;
}
.node-61.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item:nth-last-child(2)
  a {
  max-width: 140px;
}
.node-61.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item {
  max-width: 167px;
}
@media only screen and (max-width: 768px) {
  .node-61.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item {
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .node-61.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item {
    max-width: 100%;
  }
}
.sticky-head #block-nationalprimepaygeneralbancorpmenu ul li a,
.sticky-head #block-nationalprimepayfoundation ul li a {
  font-size: 1rem !important;
  display: table-cell;
  vertical-align: middle;
  height: 62px;
  line-height: 1.125rem;
}
.header__leftmenubar #hamburger-lines-left.mobile_left_menu {
  display: none;
  top: 0;
}
@media (max-width: 1200px) {
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu {
    position: relative;
    display: block;
    position: relative;
    margin: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    margin-top: -1rem;
    top: 0;
  }
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #d22630;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header__leftmenubar
    #hamburger-lines-left.mobile_left_menu
    span:nth-child(1) {
    top: 0px;
  }
  .header__leftmenubar
    #hamburger-lines-left.mobile_left_menu
    span:nth-child(2) {
    top: 12px;
  }
  .header__leftmenubar
    #hamburger-lines-left.mobile_left_menu
    span:nth-child(3) {
    top: 24px;
  }
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu:after {
    content: "";
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAEBgAABAYBmSDe8AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAHGSURBVGiB7djNShtRGIfx500oFETcF7pMZ2XSuRYFKxUKBcGIi3onLaV+dNUPpJXSa9FpVpqbcB/176axkzCjmcw5jtD3WU3OZDLvj0MCE/A8z/M8z/O8e7L8i+xF+srQZ7ALid3e8OR3U4MVlSXpqkkfgAWMze7Z6a/xudb4QGAt9BFYBD030/Gf5OXrJgYuapD0Nkz6CTwDlhD7ym3ELcRAU9e2EV8fA2aQ9DYk+wK0/61qlJ+5NXmJdoCr3ELjmGIEV1JrJ/++CcjyeXYs2Rowyi23Ed8HnXQr2rQlZUnal+wbk4iRZGvT31+joKyTrpjpB/AktyyTbS8PTw7Cj1wwQ5L2Tfo0NeNIsvWiH6FCCDSLqYqAOyDQDGYeBNwDgYfFDDrplkx7VETADBB4GEwdBMwIgbiYugioAIE4mBAIqAiBsJhQCJgDAuUYpH53mB3O8hkhETAnBOphQiOgBgTmw8RAQE0IVMPEQkAACMyGiYmAQBAoxVwL3pr0FLN9IiEgIARKnx0u/95n4nkC40337PQo1L2DQqB0Z/IF3YlxwSFwJyYKAiJBoBATDQERIXCLeQ8g2bvH9veS53me53me9591A6zTcn4xC5BSAAAAAElFTkSuQmCC");
    width: 15px;
    height: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    float: right;
    margin-left: 10px;
    background-position: -1px 3px;
    transform: rotate(0deg);
    transition: 0.25s transform ease-in-out;
    right: 5px;
    top: 16px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 768px) {
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu:after {
    top: 18px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 767px) {
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu:after {
    top: 12px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 480px) {
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu:after {
    top: 12px;
  }
}
@media (max-width: 1200px) {
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu:before {
    content: "";
    border-bottom: 5px solid #d22630;
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  .header__leftmenubar
    #hamburger-lines-left.mobile_left_menu.open-toggle:after {
    transform: rotate(-180deg);
    transform-origin: 5px 10px;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu {
    position: relative;
    display: block;
    position: relative;
    margin: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    position: absolute;
    top: 0;
  }
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #d22630;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header__leftmenubar
    #hamburger-lines-left.mobile_left_menu
    span:nth-child(1) {
    top: 0px;
  }
  .header__leftmenubar
    #hamburger-lines-left.mobile_left_menu
    span:nth-child(2) {
    top: 12px;
  }
  .header__leftmenubar
    #hamburger-lines-left.mobile_left_menu
    span:nth-child(3) {
    top: 24px;
  }
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu:after {
    content: "";
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAEBgAABAYBmSDe8AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAHGSURBVGiB7djNShtRGIfx500oFETcF7pMZ2XSuRYFKxUKBcGIi3onLaV+dNUPpJXSa9FpVpqbcB/176axkzCjmcw5jtD3WU3OZDLvj0MCE/A8z/M8z/O8e7L8i+xF+srQZ7ALid3e8OR3U4MVlSXpqkkfgAWMze7Z6a/xudb4QGAt9BFYBD030/Gf5OXrJgYuapD0Nkz6CTwDlhD7ym3ELcRAU9e2EV8fA2aQ9DYk+wK0/61qlJ+5NXmJdoCr3ELjmGIEV1JrJ/++CcjyeXYs2Rowyi23Ed8HnXQr2rQlZUnal+wbk4iRZGvT31+joKyTrpjpB/AktyyTbS8PTw7Cj1wwQ5L2Tfo0NeNIsvWiH6FCCDSLqYqAOyDQDGYeBNwDgYfFDDrplkx7VETADBB4GEwdBMwIgbiYugioAIE4mBAIqAiBsJhQCJgDAuUYpH53mB3O8hkhETAnBOphQiOgBgTmw8RAQE0IVMPEQkAACMyGiYmAQBAoxVwL3pr0FLN9IiEgIARKnx0u/95n4nkC40337PQo1L2DQqB0Z/IF3YlxwSFwJyYKAiJBoBATDQERIXCLeQ8g2bvH9veS53me53me9591A6zTcn4xC5BSAAAAAElFTkSuQmCC");
    width: 15px;
    height: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    float: right;
    margin-left: 10px;
    background-position: -1px 3px;
    transform: rotate(0deg);
    transition: 0.25s transform ease-in-out;
    right: 5px;
    top: 10px;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) and (max-width: 768px) {
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu:after {
    top: 18px;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) and (max-width: 480px) {
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu:after {
    top: 12px;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu:before {
    content: "";
    border-bottom: 5px solid #d22630;
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  .header__leftmenubar
    #hamburger-lines-left.mobile_left_menu.open-toggle:after {
    transform: rotate(-180deg);
    transform-origin: 5px 10px;
  }
}
@media only screen and (max-width: 480px) {
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu {
    min-width: 95px;
    font-size: 0.875rem;
    line-height: 1rem;
  }
  .header__leftmenubar #hamburger-lines-left.mobile_left_menu:after {
    right: 5px;
  }
}
.header__leftmenubar
  #hamburger-lines-left.mobile_left_menu
  .mobile_left_menu_title {
  cursor: pointer;
  padding: 11px 31px 11px 10px;
  font-family: "Calibre Semibold";
  font-size: 1.125rem;
  line-height: 2.3125rem;
  height: 54px;
}
@media only screen and (max-width: 767px) {
  .header__leftmenubar
    #hamburger-lines-left.mobile_left_menu
    .mobile_left_menu_title {
    height: 43px;
    line-height: 1.75rem;
  }
}
@media only screen and (max-width: 480px) {
  .header__leftmenubar
    #hamburger-lines-left.mobile_left_menu
    .mobile_left_menu_title {
    min-width: 101px;
    line-height: 1rem;
    padding: 15px 27px 12px 15px;
    height: 43px;
    vertical-align: middle;
    display: table-cell;
    font-size: 1rem;
    color: #000;
  }
}
@media only screen and (max-width: 360px) {
  .header__leftmenubar
    #hamburger-lines-left.mobile_left_menu
    .mobile_left_menu_title {
    line-height: 0.75rem;
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .header__leftmenubar nav {
    position: absolute;
    z-index: 99;
  }
  .header__leftmenubar nav li a {
    width: 280px;
    box-shadow: 0 0 3px #ccc;
    background: #fff;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .header__leftmenubar nav {
    position: absolute;
    z-index: 99;
  }
  .header__leftmenubar nav li a {
    width: 280px;
    box-shadow: 0 0 3px #ccc;
    background: #fff;
  }
}
.node-56.lang-es
  .header.sticky-head
  .main-navigation__menu___ul
  li.js-menu-tabs-item,
.node-76.lang-es
  .header.sticky-head
  .main-navigation__menu___ul
  li.js-menu-tabs-item,
.node-421.lang-es
  .header.sticky-head
  .main-navigation__menu___ul
  li.js-menu-tabs-item {
  max-width: 105px !important;
}
.node-56.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item:nth-last-child(2),
.node-76.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item:nth-last-child(2),
.node-421.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item:nth-last-child(2) {
  max-width: 95px;
}
.node-56.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item:nth-last-child(2)
  a,
.node-76.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item:nth-last-child(2)
  a,
.node-421.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item:nth-last-child(2)
  a {
  max-width: 140px;
}
@media only screen and (max-width: 768px) {
  .node-56.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item:nth-last-child(2)
    a,
  .node-76.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item:nth-last-child(2)
    a,
  .node-421.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item:nth-last-child(2)
    a {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .node-56.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item:nth-last-child(2),
  .node-76.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item:nth-last-child(2),
  .node-421.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item:nth-last-child(2) {
    max-width: 100%;
  }
}
.node-56.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item,
.node-76.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item,
.node-421.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item {
  max-width: 145px;
  margin: 0 10px !important;
}
@media only screen and (min-width: 1401px) {
  .node-56.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item,
  .node-76.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item,
  .node-421.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item {
    max-width: 145px;
    margin: 0 10px !important;
  }
}
@media only screen and (max-width: 768px) {
  .node-56.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item,
  .node-76.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item,
  .node-421.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item {
    max-width: 100%;
  }
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: landscape) {
  .node-56.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item,
  .node-76.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item,
  .node-421.lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item {
    margin: 0 6px !important;
  }
}
.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item {
  margin: 0 5px;
  max-width: 168px;
}
.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item
  .js-menu-content-item {
  top: 200px;
}
@media only screen and (max-width: 768px) {
  .lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item
    .js-menu-content-item {
    top: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item
    .js-menu-content-item {
    top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item {
    max-width: 100%;
  }
}
.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item
  a {
  max-width: 170px;
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item
    a {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 768px) {
  .lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item
    a {
    max-width: 100%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .lang-es
    .header
    nav#block-globalheaderhierarchymenu-2
    ul.menu-main--tabs
    li.js-menu-tabs-item
    a {
    font-size: 1.125rem;
    max-width: 108px;
  }
}
.lang-es
  .header
  nav#block-globalheaderhierarchymenu-2
  ul.menu-main--tabs
  li.js-menu-tabs-item
  ul.menu-level-1
  li
  .megamenu-title
  a {
  max-width: 100%;
}
.lang-es .sticky-head .nav-left ul li.js-menu-tabs-item .js-menu-content-item {
  top: 85px !important;
}
.lang-es .sticky-head .nav-left ul li.js-menu-tabs-item a {
  max-width: 86px !important;
}
@media only screen and (max-width: 768px) {
  .lang-es .sticky-head .nav-left ul li.js-menu-tabs-item a {
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 480px) {
  .lang-es .sticky-head .nav-left ul li.js-menu-tabs-item a {
    max-width: 100% !important;
  }
}
.lang-es
  .sticky-head
  .nav-left
  ul
  li.js-menu-tabs-item
  ul.menu-level-1
  li
  .megamenu-title
  a {
  max-width: 100% !important;
}
.lang-es .sticky-head .nav-right .views-element-container ul {
  justify-content: flex-end;
}
.lang-es .sticky-head .nav-right .views-element-container ul li .sticky-link {
  margin-right: 5px !important;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-1
  .nav-right-item {
  display: flex;
  align-items: center;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-1
  .nav-right-item
  .sticky-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-1
  .nav-right-item
  .sticky-link
  img {
  margin-right: 10px;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-1
  .nav-right-item
  .sticky-link
  span.head-user-title {
  max-width: 118px;
  line-height: 1.125rem;
  font-family: "Calibre Semibold";
  color: black;
  text-decoration: none;
  font-size: 1rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-2
  .nav-right-item {
  display: flex;
  align-items: center;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-2
  .nav-right-item
  .sticky-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-2
  .nav-right-item
  .sticky-link
  img {
  margin-right: 10px;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-2
  .nav-right-item
  .sticky-link
  span.head-user-title {
  max-width: 118px;
  line-height: 1.125rem;
  font-family: "Calibre Semibold";
  color: black;
  text-decoration: none;
  font-size: 1rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-3
  .nav-right-item {
  display: flex;
  align-items: center;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-3
  .nav-right-item
  .sticky-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-3
  .nav-right-item
  .sticky-link
  img {
  margin-right: 10px;
}
.lang-es
  .sticky-head
  .nav-right
  .views-element-container
  ul
  li.nr-3
  .nav-right-item
  .sticky-link
  span.head-user-title {
  max-width: 118px;
  line-height: 1.125rem;
  font-family: "Calibre Semibold";
  color: black;
  text-decoration: none;
  font-size: 1rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
.lang-es .header nav#block-globalheaderhierarchymenu ul.nav-left__ul {
  justify-content: flex-end;
}
.lang-es
  .header
  nav#block-globalheaderhierarchymenu
  ul.nav-left__ul
  li.js-menu-tabs-item
  .js-menu-content-item {
  top: 197px;
}
@media only screen and (max-width: 768px) {
  .lang-es
    .header
    nav#block-globalheaderhierarchymenu
    ul.nav-left__ul
    li.js-menu-tabs-item
    .js-menu-content-item {
    top: 1px;
  }
}
.lang-es
  .header
  nav#block-globalheaderhierarchymenu
  ul.nav-left__ul
  li.js-menu-tabs-item {
  max-width: 118px;
}
@media only screen and (max-width: 768px) {
  .lang-es
    .header
    nav#block-globalheaderhierarchymenu
    ul.nav-left__ul
    li.js-menu-tabs-item {
    max-width: 100%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .lang-es
    .header
    nav#block-globalheaderhierarchymenu
    ul.nav-left__ul
    li.js-menu-tabs-item {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .lang-es .header .nav-right .views-element-container ul {
    flex-flow: row wrap;
    justify-content: flex-end;
  }
}
.lang-es .header .nav-right .views-element-container ul li .sticky-link {
  margin-right: 5px;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-1
  .nav-right-item {
  display: flex;
  align-items: center;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-1
  .nav-right-item
  .sticky-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-1
  .nav-right-item
  .sticky-link
  img {
  margin-right: 10px;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-1
  .nav-right-item
  .sticky-link
  span.head-user-title {
  max-width: 118px;
  line-height: 1.125rem;
  font-family: "Calibre Semibold";
  color: black;
  text-decoration: none;
  font-size: 1rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-1
  .nav-right-item
  a {
  max-width: 118px;
  line-height: 1.125rem;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-3
  .nav-right-item {
  display: flex;
  align-items: center;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-3
  .nav-right-item
  .sticky-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-3
  .nav-right-item
  .sticky-link
  img {
  margin-right: 10px;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-3
  .nav-right-item
  .sticky-link
  span.head-user-title {
  max-width: 118px;
  line-height: 1.125rem;
  font-family: "Calibre Semibold";
  color: black;
  text-decoration: none;
  font-size: 1rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-3
  .nav-right-item
  a {
  line-height: 1.125rem;
}
@media only screen and (max-width: 480px) {
  .lang-es
    .header
    .nav-right
    .views-element-container
    ul
    li.nr-3
    .nav-right-item
    a {
    line-height: 0.875rem;
  }
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-4
  .nav-right-item {
  display: flex;
  align-items: center;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-4
  .nav-right-item
  .sticky-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-4
  .nav-right-item
  .sticky-link
  img {
  margin-right: 10px;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-4
  .nav-right-item
  .sticky-link
  span.head-user-title {
  max-width: 118px;
  line-height: 1.125rem;
  font-family: "Calibre Semibold";
  color: black;
  text-decoration: none;
  font-size: 1rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-4
  .nav-right-item
  a {
  max-width: 118px;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-2
  .nav-right-item {
  display: flex;
  align-items: center;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-2
  .nav-right-item
  .sticky-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-2
  .nav-right-item
  .sticky-link
  img {
  margin-right: 10px;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-2
  .nav-right-item
  .sticky-link
  span.head-user-title {
  max-width: 118px;
  line-height: 1.125rem;
  font-family: "Calibre Semibold";
  color: black;
  text-decoration: none;
  font-size: 1rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
.lang-es
  .header
  .nav-right
  .views-element-container
  ul
  li.nr-2
  .nav-right-item
  a {
  max-width: 118px;
}
.header__top-bar {
  border-bottom: 1px solid #edeeee;
  padding: 0;
}
.header__top-bar___container {
  display: flex;
  flex-basis: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 15px;
}
@media only screen and (max-width: 768px) {
  .header__top-bar___container {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container {
    padding: 0;
    align-items: flex-end;
  }
}
.header__top-bar___container .nav-left__ul {
  display: table;
}
@media screen and (max-width: 1330px) {
  .header__top-bar___container .nav-left__ul {
    padding-top: 0;
  }
}
@media (max-width: 1200px) {
  .header__top-bar___container .nav-left__ul {
    padding-top: 27px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .header__top-bar___container .nav-left__ul {
    padding-top: 0px;
  }
}
.header__top-bar___container .nav-left__ul li {
  float: left;
  opacity: 1;
  transition: 0.25s opacity ease-in-out;
}
@media screen and (max-width: 1330px) {
  .header__top-bar___container .nav-left__ul li {
    padding: 0px 0px;
  }
}
.header__top-bar___container .nav-left__ul li a {
  font-family: "Calibre Semibold";
  color: #57575c;
  text-decoration: none;
  font-size: 1.125rem;
  transition: 0.25s all ease-in-out;
  position: relative;
  padding: 17px 2px 10px;
  margin: 0 8px;
  line-height: 1.25rem;
  border-bottom: 0px solid transparent;
  display: block;
}
@media screen and (max-width: 1330px) {
  .header__top-bar___container .nav-left__ul li a {
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header__top-bar___container .nav-left__ul li a {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__top-bar___container .nav-left__ul li a {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .header__top-bar___container .nav-left__ul li a {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-left__ul li a {
    display: none;
  }
}
@media (max-width: 1200px) {
  .header__top-bar___container .nav-left__ul li a {
    padding: 16px 10px 9px;
  }
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container .nav-left__ul li a {
    padding: 16px 10px 9px;
  }
}
@media only screen and (max-width: 480px) {
  .header__top-bar___container .nav-left__ul li a {
    padding: 17px 5px 10px 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .header__top-bar___container .nav-left__ul li a {
    font-size: 1.1875rem;
    padding: 17px 1px 10px;
  }
}
.header__top-bar___container .nav-left__ul li a.is-active {
  color: black;
  border-bottom: 5px solid #d22630;
}
@media (max-width: 1200px) {
  .header__top-bar___container .nav-left__ul li a.is-active {
    border-bottom: 0px solid #d22630;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .header__top-bar___container .nav-left__ul li a.is-active {
    border-bottom: 0px solid #d22630;
  }
}
@media only screen and (max-width: 1024px) {
  .header__top-bar___container .nav-left__ul li a.is-active {
    border-bottom: 0px solid #d22630;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .header__top-bar___container .nav-left__ul li a.is-active {
    border-bottom: 0px solid #d22630;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__top-bar___container .nav-left__ul li a.is-active {
    border-bottom: 0px solid #d22630;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-left__ul li a.is-active {
    border-bottom: 0px solid #d22630;
  }
}
@media screen and (max-width: 1330px) {
  .header__top-bar___container .nav-left__ul li a.is-active {
    padding: 16px 10px 9px;
    margin-left: 0;
    position: relative;
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .header__top-bar___container .nav-left__ul li a.is-active {
    padding: 20px 6px 5px 15px;
  }
}
.header__top-bar___container .nav-left__ul li.active {
  border-bottom: 4px solid #d22630;
}
@media only screen and (max-width: 1024px) {
  .header__top-bar___container .nav-left__ul li.active {
    display: block;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .header__top-bar___container .nav-left__ul li.active {
    display: block;
  }
}
.header__top-bar___container .nav-left__ul li.active a {
  color: black;
}
.header__top-bar___container .nav-left__ul li:hover a {
  color: black;
}
@media (max-width: 1200px) {
  .header__top-bar___container .nav-left__ul.open-menu {
    width: 280px;
    z-index: 9;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .header__top-bar___container .nav-left__ul.open-menu {
    width: 280px;
    z-index: 9;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .header__top-bar___container .nav-left__ul.open-menu {
    top: 27px;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .header__top-bar___container .nav-left__ul.open-menu {
    top: 27px;
  }
}
@media screen and (max-width: 1330px) {
  .header__top-bar___container .nav-left__ul.open-menu {
    position: relative;
  }
}
.header__top-bar___container .nav-left__ul.open-menu li {
}
@media (max-width: 1200px) {
  .header__top-bar___container .nav-left__ul.open-menu li a {
    display: block;
    margin: 0;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .header__top-bar___container .nav-left__ul.open-menu li a {
    display: block;
    margin: 0;
  }
}
.header__top-bar___container .nav-left__ul.open-menu li a.is-active {
  z-index: 9;
  display: block;
}
@media screen and (max-width: 1330px) {
  .header__top-bar___container .nav-left__ul.open-menu li a.is-active:after {
    transform: rotate(-180deg);
    transform-origin: 5px 10px;
  }
}
.header__top-bar___container .nav-right__ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  justify-content: flex-end;
}
@media only screen and (min-width: 1201px) and (max-width: 1290px) {
  .header__top-bar___container .nav-right__ul li:nth-child(1) a:nth-child(2),
  .header__top-bar___container .nav-right__ul li:nth-child(2) a:nth-child(2) {
    display: none;
  }
}
.header__top-bar___container .nav-right__ul li {
  float: left;
  padding: 0 4px;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right__ul li {
    padding: 0 10px 0 0;
  }
}
@media only screen and (max-width: 480px) {
  .header__top-bar___container .nav-right__ul li {
    padding: 0;
    margin-left: 5px;
  }
}
.header__top-bar___container .nav-right__ul li:last-child {
  padding-right: 0;
  z-index: 9999;
}
.header__top-bar___container .nav-right__ul li img {
  width: auto;
  margin-top: -8px;
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right__ul li img {
    margin-top: -15px;
  }
}
.header__top-bar___container .nav-right__ul li span.head-user-title {
  line-height: 1.125rem;
  font-family: "Calibre Semibold";
  color: black;
  text-decoration: none;
  font-size: 1rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
@media only screen and (max-width: 480px) {
  .header__top-bar___container .nav-right__ul li span.head-user-title {
    font-size: 0.875rem;
    line-height: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right__ul li.nr-1 {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right__ul li.nr-2 {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right__ul li.nr-3 {
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right__ul li.nr-3:before {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% + 14px);
    display: block;
    background: #edeeee;
    left: -11px;
    top: -10px;
  }
}
@media only screen and (max-width: 480px) {
  .header__top-bar___container .nav-right__ul li.nr-3:before {
    left: -2px;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right__ul li.nr-3 .nav-right-item {
    padding-left: 35px;
  }
}
@media only screen and (max-width: 480px) {
  .header__top-bar___container .nav-right__ul li.nr-3 .nav-right-item {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right__ul li.nr-3 .nav-right-item img {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right__ul li.nr-3 .nav-right-item:before {
    content: "+";
    border: 2px solid #d22630;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    display: inline-block;
    margin-top: -20px;
    position: absolute;
    left: 4px;
    top: 25px;
    text-align: center;
    font-size: 1.75rem;
    line-height: 1.75rem;
    color: #d22630;
    font-weight: bold;
  }
}
@media only screen and (max-width: 480px) {
  .header__top-bar___container .nav-right__ul li.nr-3 .nav-right-item:before {
    width: 20px;
    height: 20px;
    font-size: 1.375rem;
    line-height: 1.4375rem;
  }
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container .nav-right__ul li.nr-4 {
    display: none;
  }
}
.header__top-bar___container .nav-right__ul li a {
  font-family: "Calibre Semibold";
  color: black;
  text-decoration: none;
  font-size: 1rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right__ul li a {
    max-width: 65px;
    display: inline-block;
    line-height: 1rem;
    font-size: 1rem;
    padding-top: 3px;
  }
}
@media only screen and (max-width: 480px) {
  .header__top-bar___container .nav-right__ul li a {
    max-width: 55px;
    font-size: 0.875rem;
    font-family: "Calibre Medium";
    line-height: 0.875rem;
  }
}
.header__top-bar___container .nav-right__ul li a:hover {
  color: #d22630 !important;
  text-decoration: underline;
  text-decoration-color: #d22630;
  -webkit-text-decoration-color: #d22630;
  -moz-text-decoration-color: #d22630;
}
.header__top-bar___container .nav-right__ul li a.sticky-link:hover {
  color: none !important;
  text-decoration-color: none;
  -webkit-text-decoration-color: none;
  -moz-text-decoration-color: none;
}
.header__top-bar___container .nav-right__ul li.active {
  border-bottom: 4px solid #d22630;
}
.header__top-bar___container .nav-right__ul li.active a {
  color: #d22630;
}
.header__top-bar___container .nav-right__ul li:hover a {
  color: black;
}
.header__top-bar___container .nav-right .display-none {
  display: none !important;
}
.header__top-bar___container .nav-right .language-selector {
  position: relative;
}
.header__top-bar___container .nav-right .language-selector .lang-dropdown-form {
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .form-submit {
  display: none;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container {
  min-height: 35px;
  margin-top: -5px;
  display: table;
  background: #00205b;
  border: 0;
  border-radius: 0;
  color: white;
  padding: 23px 20px 12px 40px;
  position: relative;
  cursor: pointer;
  font-family: "Calibre Semibold";
  font-size: 1.125rem;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container:before {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/ls-globe.png);
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  background-position: -5px 3px;
  transform: rotate(0deg);
  transition: 0.25s transform ease-in-out;
  left: 15px;
  top: 18px;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .lang-dropdown-form
    .chosen-container:before {
    top: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .lang-dropdown-form
    .chosen-container:before {
    top: 7px;
    left: 7px;
  }
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  b {
  background: url(../../../../themes/nationalprimepay/images/down_arr.png);
  background-repeat: no-repeat;
  background-position: 0px 6px;
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .lang-dropdown-form
    .chosen-container
    b {
    background-position: 0px 15px;
    background-size: 13px 7px;
  }
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container.chosen-container-active.chosen-with-drop
  b {
  background-image: url(../../../../themes/nationalprimepay/images/Up_arr.png);
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container:focus {
  outline: 0;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  .chosen-drop {
  background: #57575c;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  .chosen-drop
  ul.chosen-results {
  background: #57575c;
  padding: 0;
  display: table;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: left;
  margin: 0;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  .chosen-drop
  ul.chosen-results
  li {
  display: inline;
  float: left;
  font-family: "Calibre Semibold";
  font-size: 1.125rem;
  color: #ffffff;
  padding: 15px 15px 15px 20px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .lang-dropdown-form
    .chosen-container
    .chosen-drop
    ul.chosen-results
    li {
    font-size: 0.875rem;
  }
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  .chosen-drop
  ul.chosen-results
  li.highlighted {
  background: #d22630;
  color: #ffffff;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  .chosen-drop
  ul.chosen-results
  li.result-selected {
  display: none;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  .chosen-single {
  font-family: "Calibre Semibold";
  font-size: 1.125rem;
  background: none;
  border: 0;
  color: #ffffff;
  box-shadow: none;
  padding: 0 2px;
  height: auto;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  .chosen-single:focus {
  outline: thin dotted;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  .chosen-single:hover {
  text-decoration: none;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  .chosen-single
  span {
  font-family: "Calibre bold" !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .lang-dropdown-form
    .chosen-container
    .chosen-single
    span {
    width: 100%;
    font-size: 0.875rem;
    margin-top: 8px;
  }
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  .chosen-single
  span:hover,
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  .chosen-single
  span:visited {
  text-decoration: none;
  color: #fff;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  option {
  display: inline-block;
  font-family: "Calibre Semibold";
  color: black;
  text-decoration: none;
  text-decoration-color: currentcolor;
  font-size: 1.125rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
  padding: 15px 15px 15px 20px;
  display: table;
  position: absolute;
  left: 0;
  width: 100%;
  top: 54px;
  text-align: center;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .lang-dropdown-form
  .chosen-container
  option:focus {
  outline: thin dotted;
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .lang-dropdown-form
    .chosen-container {
    padding: 18px 20px 12px 50px;
    width: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .lang-dropdown-form
    .chosen-container {
    padding: 5px 5px 5px 30px;
  }
}
.header__top-bar___container .nav-right .language-selector {
  min-height: 55px;
  margin-top: -7px;
  display: table;
  border: 0;
  border-radius: 0;
  color: white;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right .language-selector {
    min-height: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container .nav-right .language-selector {
    padding: 5px 0px 0px 0px;
  }
}
.header__top-bar___container .nav-right .language-selector__globe {
  position: absolute;
  left: 15px;
  top: 46%;
  transform: translate(0, -50%);
  width: 30px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right .language-selector__globe {
    left: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .header__top-bar___container .nav-right .language-selector__globe {
    top: 53%;
  }
}
@media only screen and (max-width: 480px) {
  .header__top-bar___container .nav-right .language-selector__globe {
    width: 20px;
    height: 20px;
  }
  .header__top-bar___container .nav-right .language-selector__globe svg {
    width: 20px;
  }
}
.header__top-bar___container .nav-right .language-selector__caret {
  position: absolute;
  right: 15px;
  top: 43%;
  transform: translate(0, -50%) rotate(0deg);
  width: 20px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.25s all ease-in-out;
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container .nav-right .language-selector__caret {
    right: 10px;
  }
}
.header__top-bar___container .nav-right .language-selector:hover {
  background: #334d76;
}
.header__top-bar___container
  .nav-right
  .language-selector.open-ls
  .language-selector__caret {
  transform: rotate(180deg);
  transform-origin: 12px 7px;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option {
  display: none;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option
  a {
  display: inline-block;
  padding-right: 10px;
  float: left;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option
  a
  img {
  margin-top: 0px;
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option
    a
    img {
    margin-top: 8px;
  }
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option
  span {
  display: inline;
  float: left;
  font-family: "Calibre Semibold";
  font-size: 1.125rem;
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option
    span {
    display: none;
  }
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option
  em {
  display: none;
  font-family: "Calibre Semibold";
  font-style: normal;
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option
    em {
    display: block;
    padding-top: 5px;
    margin-left: -2px;
    text-align: left;
    color: #ffffff;
  }
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.active-option {
  display: block;
  text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.active-option
  a {
  color: #ffffff !important;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.active-option:hover {
  text-decoration: underline;
  text-decoration-color: white;
  -webkit-text-decoration-color: white;
  -moz-text-decoration-color: white;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.inactive-option {
  background: #57575c;
  padding: 15px 15px 15px 20px;
  display: table;
  position: absolute;
  left: 0;
  width: 100%;
  top: 54px;
  text-align: center;
  display: none;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.inactive-option
  span {
  color: #ffffff;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.inactive-option
  span:hover {
  color: #ffffff;
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option.inactive-option {
    top: 54px;
  }
}
@media only screen and (max-width: 767px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option.inactive-option {
    padding: 15px 20px 15px 10px;
  }
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.inactive-option:hover {
  background: #d22630;
  color: #ffffff;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.inactive-option:hover
  a,
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.inactive-option:hover
  span {
  color: #ffffff;
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.inactive-option:nth-of-type(2) {
  top: 54px;
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option.inactive-option:nth-of-type(2) {
    top: 49px;
  }
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.inactive-option:nth-of-type(3) {
  top: 107px;
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option.inactive-option:nth-of-type(3) {
    top: 103px;
  }
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.inactive-option:nth-of-type(4) {
  top: 160px;
}
@media only screen and (max-width: 991px) {
  .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option.inactive-option:nth-of-type(4) {
    top: 157px;
  }
}
.header__top-bar___container
  .nav-right
  .language-selector
  .options-list__option.inactive-option.show-inactive-option {
  display: inline-block;
}
.header .main-navigation {
  display: flex;
  flex-basis: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 25px 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header .main-navigation {
    padding: 25px 15px;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation {
    padding-top: 0;
    padding-bottom: 0;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
}
.header .main-navigation #block-nationalprimepaygeneralbancorpmenu ul li {
  display: table;
  float: left;
  margin: 0 17px;
  position: relative;
  max-width: 174px;
  height: 50px;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .header .main-navigation #block-nationalprimepaygeneralbancorpmenu ul li {
    float: none;
    width: 100%;
    margin: 0;
    max-width: none;
    padding: 20px 20px 8px;
    border-bottom: 1px solid #edeeee;
  }
}
.header .main-navigation #block-nationalprimepaygeneralbancorpmenu ul li a {
  font-family: "Calibre Semibold";
  color: black;
  font-size: 1.375rem;
  text-decoration: none;
  text-decoration-color: currentcolor;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
  vertical-align: middle;
  display: table-cell;
}
@media only screen and (max-width: 480px) {
  .header .main-navigation #block-nationalprimepaygeneralbancorpmenu ul li a {
    text-align: left;
  }
}
.header .main-navigation #block-nationalprimepayfoundation ul li {
  display: table;
  float: left;
  margin: 0 17px;
  position: relative;
  max-width: 200px;
  height: 50px;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .header .main-navigation #block-nationalprimepayfoundation ul li {
    float: none;
    width: 100%;
    margin: 0;
    max-width: none;
    padding: 20px 20px 8px;
    border-bottom: 1px solid #edeeee;
  }
}
.header .main-navigation #block-nationalprimepayfoundation ul li a {
  font-family: "Calibre Semibold";
  color: black;
  font-size: 1.375rem;
  text-decoration: none;
  text-decoration-color: currentcolor;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
  vertical-align: middle;
  display: table-cell;
}
@media only screen and (max-width: 480px) {
  .header .main-navigation #block-nationalprimepayfoundation ul li a {
    text-align: left;
  }
}
.header .main-navigation__logo {
  order: 1;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__logo {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 1420px) {
  .header .main-navigation__logo {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header .main-navigation__logo .navbar-brand {
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.header .main-navigation__logo .wealth_management_logo {
  width: 202px;
  max-width: 100%;
}
.header .main-navigation__logo img.logo,
.header .main-navigation__logo img {
  width: 100%;
  max-width: 202px;
  float: left;
  opacity: 1;
  transition: 0.25s all ease-in-out;
}
.header .main-navigation__logo img.logo:hover,
.header .main-navigation__logo img:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__logo img.logo,
  .header .main-navigation__logo img {
    max-width: 150px;
  }
}
.header .main-navigation__logo #hamburger-lines {
  width: 34px;
  height: 30px;
  position: relative;
  margin: auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.header .main-navigation__logo #mobile-close-icon {
  display: none;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__logo #mobile-close-icon {
    position: absolute;
    top: 0;
  }
}
.header .main-navigation__logo #mobile-close-icon img:hover {
  opacity: 1;
}
.header .main-navigation__logo #hamburger-lines span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #d22630;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header .main-navigation__logo #hamburger-lines span:nth-child(1) {
  top: 0px;
}
.header .main-navigation__logo #hamburger-lines span:nth-child(2) {
  top: 12px;
}
.header .main-navigation__logo #hamburger-lines span:nth-child(3) {
  top: 24px;
}
.header .main-navigation__logo #hamburger-lines.open-hm span:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header .main-navigation__logo #hamburger-lines.open-hm span:nth-child(2) {
  opacity: 0;
  left: -90px;
}
.header .main-navigation__logo #hamburger-lines.open-hm span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.header .main-navigation__logo .mobile-menu {
  display: none;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__logo .mobile-menu {
    display: table;
    float: right;
  }
}
.header .main-navigation__logo .mobile-menu ul {
  display: flex;
  flex-direction: row;
  flex-basis: 100%;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.header .main-navigation__logo .mobile-menu ul li {
  float: left;
  padding: 0 10px;
  font-family: "Calibre Semibold";
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__logo .mobile-menu ul li {
    position: relative;
  }
}
.header .main-navigation__logo .mobile-menu ul li a {
  color: black;
  font-family: "Calibre Semibold";
  text-decoration: none;
  font-size: 1.125rem;
}
.header .main-navigation__logo .mobile-menu ul li a:hover {
  color: #d22630;
}
.header .main-navigation__logo .mobile-menu ul li a.active-login-link {
  color: #d22630;
}
.header .main-navigation__logo .mobile-menu ul li:first-child {
  padding-left: 0;
}
@media only screen and (max-width: 480px) {
  .header .main-navigation__logo .mobile-menu ul li:first-child {
    display: block;
  }
}
.header .main-navigation__logo .mobile-menu ul li:last-child {
  padding-right: 0;
  border-left: 1px solid #d9d9d9;
}
@media only screen and (max-width: 480px) {
  .header .main-navigation__logo .mobile-menu ul li:last-child {
    border-left: 1px solid #d9d9d9;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__logo .mobile-menu ul li.mobile-menu-wealth-mgmt {
    border-left: 0px;
  }
}
.header .main-navigation__logo .mobile-menu ul li img {
  max-width: 40px;
  cursor: pointer;
  opacity: 1;
  transition: 0.25s all ease-in-out;
}
.header .main-navigation__logo .mobile-menu ul li img:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation .wrap-menu-container {
    position: absolute;
    z-index: 999;
    background: #fff;
    top: 136px;
    height: 100vh;
    width: 100%;
    overflow: auto;
  }
}
.header .main-navigation .wrap-menu-container .wrap-menu-container-inside {
  height: 100%;
  overflow: auto;
}
.header .main-navigation__menu {
  order: 2;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__menu {
    order: 3;
    display: block;
    max-height: 0;
    width: 100%;
    clear: both;
    margin-left: 0;
    overflow: hidden;
    transition: 0.25s max-height ease-in-out;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__menu.active-mobile-menu {
    max-height: 1000px;
    margin-top: 100px;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .header .main-navigation__menu.active-mobile-menu {
    height: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1250px) {
  .header .main-navigation__menu .navbar {
    padding: 0.5rem 0.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__menu .navbar {
    padding: 0px;
  }
}
.header .main-navigation__menu___ul {
  display: table;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__menu___ul {
    display: block;
  }
}
.header
  .main-navigation__menu___ul
  li.active-menu-li
  .js-menu-content-item
  .menu-link-contentglobal-header-hierarchy-men
  .menu-item-1
  .megamenu-title
  a {
  color: #d22630;
  text-decoration: underline;
}
.header
  .main-navigation__menu___ul
  li.active-menu-li
  .js-menu-content-item
  .menu-link-contentglobal-header-hierarchy-men
  .content-level-1 {
  display: block;
}
.header .main-navigation__menu___ul li.js-menu-tabs-item {
  display: table;
  float: left;
  margin: 0 18px;
  position: relative;
  max-width: 185px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__menu___ul li.js-menu-tabs-item {
    display: block;
    cursor: pointer;
  }
}
.header .main-navigation__menu___ul li.js-menu-tabs-item.menu-main--tabs__item {
  height: 50px;
}
.header .main-navigation__menu___ul li.js-menu-tabs-item:first-child {
  padding-left: 0;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__menu___ul li.js-menu-tabs-item:first-child {
    padding: 20px 20px 8px;
  }
}
.header .main-navigation__menu___ul li.js-menu-tabs-item:last-child {
  padding-right: 0;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__menu___ul li.js-menu-tabs-item {
    max-width: 100%;
    width: 100%;
    padding: 20px 20px 8px;
    margin: 0;
    border-bottom: 1px solid #edeeee;
    text-align: left;
    display: table;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__menu___ul li.js-menu-tabs-item.has-parent:before {
    content: "";
    width: 24px;
    height: 14px;
    background: url(../../../../themes/nationalprimepay/images/down-arrow.png);
    background-repeat: no-repeat;
    background-position: center right;
    right: 25px;
    position: absolute;
    background-size: cover;
    top: 23px;
  }
}
@media only screen and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item.change-up-arrow:before {
    content: "";
    width: 24px;
    height: 14px;
    background: url(../../../../themes/nationalprimepay/images/up-arrow.png);
    background-repeat: no-repeat;
    background-position: center right;
    right: 25px;
    position: absolute;
    background-size: cover;
    top: 23px;
  }
}
.header .main-navigation__menu___ul li.js-menu-tabs-item .megamenu-arrow {
  position: absolute;
  width: 100%;
  height: 37px;
  z-index: 9;
  overflow: hidden;
  left: 0;
  top: 50px;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__menu___ul li.js-menu-tabs-item .megamenu-arrow {
    display: none;
  }
}
.header .main-navigation__menu___ul li.js-menu-tabs-item .megamenu-arrow:after {
  opacity: 0;
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #edeeee;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.25s all ease-in-out;
}
.header .main-navigation__menu___ul li.js-menu-tabs-item > a {
  font-family: "Calibre Semibold";
  color: black;
  font-size: 1.375rem;
  line-height: 1.2;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
  vertical-align: middle;
  display: table-cell;
}
@media only screen and (max-width: 480px) {
  .header .main-navigation__menu___ul li.js-menu-tabs-item > a {
    max-width: 70%;
  }
}
@media only screen and (max-width: 768px) {
  .header .main-navigation__menu___ul li.js-menu-tabs-item > a {
    max-width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__menu___ul li.js-menu-tabs-item > a {
    font-family: "Calibre Bold";
    display: block;
  }
}
.header .main-navigation__menu___ul li.js-menu-tabs-item > a:hover {
  color: #d22630 !important;
  text-decoration: underline;
  text-decoration-color: #d22630;
  -webkit-text-decoration-color: #d22630;
  -moz-text-decoration-color: #d22630;
}
.header .main-navigation__menu___ul li.js-menu-tabs-item.active a {
  color: #d22630;
}
@media only screen and (min-width: 992px) {
  .header .main-navigation__menu___ul li.js-menu-tabs-item.active a {
    text-decoration-color: #d22630;
    -webkit-text-decoration-color: #d22630;
    -moz-text-decoration-color: #d22630;
  }
}
.header .main-navigation__menu___ul li.js-menu-tabs-item:hover .megamenu-arrow {
  transition: 0;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item:hover
  .megamenu-arrow:after {
  opacity: 1;
  bottom: 0px;
}
.header .main-navigation__menu___ul li.js-menu-tabs-item:hover > a {
  color: #d22630;
}
@media only screen and (min-width: 992px) {
  .header .main-navigation__menu___ul li.js-menu-tabs-item:hover > a {
    text-decoration-color: #d22630;
    -webkit-text-decoration-color: #d22630;
    -moz-text-decoration-color: #d22630;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__menu___ul li.js-menu-tabs-item:hover > a {
    color: black;
  }
}
.header .main-navigation__menu___ul li.js-menu-tabs-item .js-menu-content-item {
  display: block;
  position: fixed;
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  left: 0;
  right: 0;
  top: 181px;
  z-index: 99;
  background: #edeeee;
  max-height: 1000px;
  opacity: 1;
  transition: 0.25s all ease-in-out;
  padding: 20px;
}
@media only screen and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item {
    position: relative;
    top: 0;
    background: none;
    border: 0px solid white;
    padding: 0;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item.is-hidden {
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  display: none;
  transition: 0.25s all ease-in-out;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0 {
  width: 100%;
  margin: auto;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mega-menu-main-container {
  display: table;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  margin: auto;
  width: 100%;
  background: #fff;
}
@media only screen and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .menu-dropdown-0
    .mega-menu-main-container {
    box-shadow: unset;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  ul.menu {
  width: 30%;
  display: table;
  margin: auto;
  background: #fff;
  padding: 20px 5px 20px 0px;
  float: left;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .menu-dropdown-0
    ul.menu {
    width: 100%;
    padding: 0;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  ul.menu
  li {
  padding: 20px;
}
@media only screen and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .menu-dropdown-0
    ul.menu
    li {
    padding: 0;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  ul.menu
  li:first-child {
  padding-top: 0;
}
@media only screen and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .menu-dropdown-0
    ul.menu
    li:first-child
    a {
    padding-top: 10px;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  ul.menu
  li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  ul.menu
  li:last-child
  a {
  border-bottom: 0px solid #edeeee;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  ul.menu
  li
  a {
  font-family: "Calibre Semibold";
  color: black;
  font-size: 1.375rem;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
  padding: 15px 20px;
  padding-left: 20px;
  float: left;
  width: 100%;
  margin-bottom: 5px;
  font-weight: 500;
  border-bottom: 1px solid #ccd2de;
  padding-left: 0;
}
@media only screen and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .menu-dropdown-0
    ul.menu
    li
    a {
    border-bottom: 0px none;
    padding: 4px 0;
    color: #00205b;
    font-size: 1rem;
    line-height: 1.125rem;
    text-decoration: none;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  ul.menu
  li
  a.is-active {
  color: #d22630;
}
@media only screen and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .menu-dropdown-0
    ul.menu
    li
    a.is-active {
    text-decoration: none;
    color: #00205b;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  ul.menu
  li
  a:hover {
  color: #d22630;
  text-decoration: underline;
  text-decoration-color: #d22630;
  -webkit-text-decoration-color: #d22630;
  -moz-text-decoration-color: #d22630;
}
@media only screen and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .menu-dropdown-0
    ul.menu
    li
    a:hover {
    text-decoration: none;
    color: #00205b;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  ul.menu
  li:hover
  > a {
  color: #d22630;
}
@media only screen and (min-width: 992px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .menu-dropdown-0
    ul.menu
    li:hover
    > a {
    text-decoration-color: #d22630;
    -webkit-text-decoration-color: #d22630;
    -moz-text-decoration-color: #d22630;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  ul.menu
  li
  .menu-dropdown-1 {
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content {
  float: left;
  width: 55%;
  text-align: left;
  padding: 20px 15px;
}
@media only screen and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .menu-dropdown-0
    .mm-content {
    display: none;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  a {
  color: #00205b;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  a:hover {
  color: #00205b;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .mm-content.menu-item--active-content {
  display: block;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .mm-content.menu-item--active-content
  .menu-level-2 {
  width: 100%;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .mm-content.menu-item--active-content
  .menu-level-2
  li {
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .mm-content.menu-item--active-content
  .menu-level-2
  li:first-child {
  padding-top: 0;
}
@media only screen and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .menu-dropdown-0
    .mm-content
    .mm-content.menu-item--active-content
    .menu-level-2
    li:first-child
    a {
    padding-top: 10px;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .mm-content.menu-item--active-content
  .menu-level-2
  li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .mm-content.menu-item--active-content
  .menu-level-2
  li:last-child
  a {
  border-bottom: 0px solid #edeeee !important;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .mm-content.menu-item--active-content
  .menu-level-2
  li
  .megamenu-title
  a {
  border-bottom: 1px solid #ccd2de;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .mm-content.menu-item--active-content
  .menu-level-2
  li
  .megamenu-title
  a.is-active {
  border-bottom: 1px solid #ccd2de;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .menu-title {
  font-family: "Calibre bold";
  background: #d22630;
  font-size: 1.75rem;
  padding: 12px 10px 6px;
  display: inline-block;
  color: #fff;
  margin-bottom: 20px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .menu-dropdown-0
    .mm-content
    .menu-title {
    padding: 15px 10px 0px 10px;
  }
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .menu-dec {
  color: #57575c;
  margin-bottom: 20px;
  font-size: 1.25rem;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .menu-slink {
  margin-bottom: 20px;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .menu-slink
  a {
  color: #00205b;
  text-decoration: underline;
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .menu-plink {
  color: #185d56;
  font-family: "Calibre Bold";
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .menu-plink:hover {
  text-decoration: underline;
}
.header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item
  .menu-dropdown-0
  .mm-content
  .menu-plink::after {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/right-arrow-green.png);
  width: 30px;
  height: 26px;
  position: relative;
  display: inline-block;
  top: 5px;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.header .main-navigation__mobilemenu {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header .main-navigation__mobilemenu.active-mobile-contact-locations {
    order: 3;
    display: table;
    width: 100%;
    border-bottom: 1px solid #edeeee;
    height: 100%;
  }
}
.header .main-navigation__mobilemenu.active-mobile-contact-locations ul {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__mobilemenu.active-mobile-contact-locations ul {
    float: left;
    width: 100%;
    border-bottom: 1px solid #edeeee;
  }
}
.header .main-navigation__mobilemenu.active-mobile-contact-locations li.nr-1 {
  border-right: 1px solid #edeeee;
}
.header .main-navigation__mobilemenu.active-mobile-contact-locations li {
  display: inline-block;
  padding: 6px 20px;
  width: 50%;
  float: left;
}
.header .main-navigation__mobilemenu.active-mobile-contact-locations li a {
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  vertical-align: sub;
}
@media only screen and (max-width: 480px) {
  .header .main-navigation__mobilemenu.active-mobile-contact-locations li a {
    font-size: 1rem;
    line-height: 1rem;
  }
}
.header
  .main-navigation__mobilemenu.active-mobile-contact-locations
  li
  a.sticky-link {
  padding-right: 5px;
}
.header .main-navigation__search {
  order: 3;
  position: relative;
  cursor: pointer;
  border-bottom: 5px solid #d22630;
  padding: 17px 21px;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__search {
    order: 2;
    display: none;
  }
}
.header .main-navigation__search a .si-grey {
  display: none;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__search a .si-grey {
    display: block;
  }
}
.header .main-navigation__search a .si-grey svg {
  width: 32px;
  height: 32px;
}
.header .main-navigation__search a .si-blue svg {
  width: 40px;
  height: 41px;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__search a .si-blue {
    display: none;
  }
}
.header .main-navigation__search img {
  max-width: 23px;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__search img {
    filter: grayscale(100%);
  }
}
.header .main-navigation__search .si-red {
  display: none;
}
.header .main-navigation__search .search-on .si-blue {
  display: none;
}
.header .main-navigation__search .search-on .si-red {
  display: block;
}
.header .main-navigation__search #search-bar {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  height: 50px;
  width: 560px;
  z-index: 99;
  border: 1px solid #d9d9d9;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
.header .main-navigation__search #search-bar input {
  width: 560px;
  height: 50px;
  padding-left: 10px;
  border: 0;
  padding-top: 10px;
  font-family: "Calibre Regular";
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__search #search-bar input {
    font-family: "Calibre Medium";
    font-size: 1.125rem;
    padding-top: 0;
  }
}
.header .main-navigation__search #search-bar button {
  position: absolute;
  right: 10px;
  color: #185d56;
  font-weight: bold;
  height: 50px;
  line-height: 3.125rem;
  border: 0;
  background: transparent;
}
.header .main-navigation__search #search-bar button:hover {
  color: #d22630;
  text-decoration: underline;
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__search.active-search {
    display: table;
    width: 100%;
    background: #ccd2de;
    padding: 25px;
    border-bottom: 0;
    position: fixed;
    top: 140px;
    z-index: 999;
  }
}
@media only screen and (max-width: 480px) {
  .header .main-navigation__search.active-search {
    padding: 15px 10px 15px 10px;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__search.active-search:before {
    top: -18px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(204, 210, 222, 0);
    border-bottom-color: #ccd2de;
    border-width: 10px;
    right: 22px;
    z-index: 999;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__search.active-search #search-bar {
    display: table;
    position: relative;
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__search.active-search #search-bar input {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__search.active-search #search-bar button {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .header .main-navigation__search.active-search a {
    position: absolute;
    right: 35px;
    top: 35%;
    z-index: 999;
  }
}
.header .main-navigation__search .show-search-bar {
  display: table !important;
}
.header.wealth-management.sticky-head .main-navigation__logo {
  padding-top: 9px;
}
.header.sticky-head {
  position: fixed;
  background: white;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  top: 0;
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .header.sticky-head .header__leftmenubar {
    display: none;
  }
}
.header.sticky-head .language-selector .lang-dropdown-form .chosen-container {
  padding-top: 40px;
  padding-bottom: 27px;
}
@media only screen and (max-width: 768px) {
  .header.sticky-head .language-selector .lang-dropdown-form .chosen-container {
    padding: 18px 20px 12px 50px;
    width: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .header.sticky-head .language-selector .lang-dropdown-form .chosen-container {
    padding: 5px 5px 5px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .header.sticky-head .language-selector .lang-dropdown-form .chosen-container {
    padding: 5px 5px 5px 30px;
  }
}
.header.sticky-head
  .language-selector
  .lang-dropdown-form
  .chosen-container:before {
  left: 15px;
  top: 34px;
}
@media only screen and (max-width: 768px) {
  .header.sticky-head
    .language-selector
    .lang-dropdown-form
    .chosen-container:before {
    top: 12px;
    left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header.sticky-head
    .language-selector
    .lang-dropdown-form
    .chosen-container:before {
    top: 7px;
    left: 7px;
  }
}
@media only screen and (max-width: 480px) {
  .header.sticky-head
    .language-selector
    .lang-dropdown-form
    .chosen-container:before {
    top: 7px;
    left: 7px;
  }
}
@media (min-width: 1201px) {
  .header.sticky-head .header__top-bar {
    display: table;
    max-width: 1400px;
    position: relative;
    margin: auto;
  }
  .header.sticky-head .header__top-bar___container {
    display: table;
    width: auto;
    margin: 0;
    position: absolute;
    right: 80px;
    z-index: 9;
  }
  .header.sticky-head .main-navigation {
    display: table;
    padding: 4px 15px 0;
  }
}
@media only screen and (min-width: 1201px) and (min-width: 992px) and (max-width: 1200px) {
  .header.sticky-head .main-navigation {
    padding: 4px 15px 0;
  }
}
@media (min-width: 1201px) {
  .header.sticky-head .main-navigation__logo {
    display: table;
    float: left;
  }
  .header.sticky-head .main-navigation__logo .navbar-brand {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .header.sticky-head .main-navigation__logo img {
    min-width: 185px;
  }
}
@media only screen and (min-width: 1201px) and (min-width: 992px) and (max-width: 1250px) {
  .header.sticky-head .main-navigation__logo img {
    min-width: 150px;
  }
}
@media (min-width: 1201px) {
  .header.sticky-head .main-navigation__menu {
    display: table;
    float: left;
    margin-left: 0;
  }
  .header.sticky-head .main-navigation__menu___ul {
    margin-top: 2px;
  }
  .header.sticky-head .main-navigation__search {
    display: table;
    float: right;
  }
  .header.sticky-head .main-navigation__menu___ul li.js-menu-tabs-item {
    margin: 0 10px;
    display: table;
  }
}
@media only screen and (min-width: 1201px) and (min-width: 992px) and (max-width: 1250px) {
  .header.sticky-head .main-navigation__menu___ul li.js-menu-tabs-item {
    margin: 0 4px;
  }
}
@media (min-width: 1201px) {
  .header.sticky-head .main-navigation__menu___ul li.js-menu-tabs-item > a {
    font-size: 1rem;
    display: table-cell;
    vertical-align: middle;
    height: 62px;
    line-height: 1.125rem;
  }
  .header.sticky-head
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .megamenu-arrow {
    height: 49px;
  }
  .header.sticky-head .header__top-bar___container .nav-left__ul {
    display: none;
  }
  .header.sticky-head
    .header__top-bar___container
    .nav-right__ul
    li:nth-child(1)
    a:nth-child(2),
  .header.sticky-head
    .header__top-bar___container
    .nav-right__ul
    li:nth-child(2)
    a:nth-child(2),
  .header.sticky-head
    .header__top-bar___container
    .nav-right__ul
    li:nth-child(1)
    span.head-user-title,
  .header.sticky-head
    .header__top-bar___container
    .nav-right__ul
    li:nth-child(2)
    span.head-user-title {
    display: none;
  }
}
@media only screen and (min-width: 1201px) and (min-width: 992px) and (max-width: 1200px) {
  .header.sticky-head
    .header__top-bar___container
    .nav-right__ul
    li
    a:nth-child(2) {
    display: none;
  }
}
@media (min-width: 1201px) {
  .header.sticky-head .lang-dropdown-select-element {
    padding-top: 31px !important;
    padding-bottom: 28px !important;
  }
  .header.sticky-head
    .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option.inactive-option,
  .header.sticky-head
    .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option.inactive-option:nth-of-type(2) {
    top: 83px;
  }
  .header.sticky-head
    .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option.inactive-option:nth-of-type(3) {
    top: 137px;
  }
  .header.sticky-head
    .header__top-bar___container
    .nav-right
    .language-selector
    .options-list__option.inactive-option:nth-of-type(4) {
    top: 190px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1250px) {
  .header.sticky-head .main-navigation__logo {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1250px) {
  .header.sticky-head .main-navigation__logo img {
    max-width: 150px;
  }
}
.header.sticky-head
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item {
  top: 85px;
}
@media only screen and (max-width: 991px) {
  .header.sticky-head
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item {
    top: unset;
  }
}
.header.sticky-head
  .main-navigation__menu___ul
  li.js-menu-tabs-item:hover
  .megamenu-arrow {
  bottom: -30px;
}
.header.sticky-head
  .main-navigation__menu___ul
  li.js-menu-tabs-item:hover
  .megamenu-arrow:after {
  bottom: -10px;
}
.header.sticky-head .megamenu-arrow {
  position: static !important;
}
.header.sticky-head.personal #block-views-block-user-account-menu-block-1 {
  padding-left: 10px;
}
.header.sticky-head.business
  #block-views-block-user-account-menu-block-1
  .nav-right__ul
  .nr-1 {
}
.header.sticky-head.business #block-views-block-user-account-menu-block-1 a {
  color: #57575c;
}
.header.sticky-head.international-banking {
}
.header.sticky-head.international-banking
  #block-views-block-user-account-menu-block-1
  .nav-right__ul
  .nr-1 {
}
@media only screen and (max-width: 991px) {
  body.fixedPosition {
    position: fixed;
    width: 100%;
  }
}
body.toolbar-tray-open {
  padding-top: 111px !important;
}
body.toolbar-tray-open
  .header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item {
  top: 293px !important;
}
body.toolbar-tray-open
  .header.sticky-head
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item {
  top: 85px;
}
body.toolbar-tray-open.toolbar-vertical {
  padding-top: 54px !important;
}
body.toolbar-vertical
  .header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item {
  top: 235px;
}
body.toolbar-vertical
  .header.sticky-head
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item {
  top: 85px;
}
.sticky-pad {
  padding-top: 70px;
}
.mm-content .mm-content {
  display: none;
}
.mm-content .mm-content.menu-item--active-content {
  display: block;
}
.cl-header__link-container a:hover,
.site-link-green:hover,
.cl-get-in-touch__email-block a:hover,
.ps-products__tile .tile__link-container a:hover {
  color: #185d56 !important;
}
.site-link-white:hover,
a.site-button:hover {
  color: #fff !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .node-576 .sticky-head .main-navigation__logo .navbar-brand {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item.hide-menu-container {
    width: 320px;
    background: none;
    padding: 0;
    margin-left: -70px;
    position: absolute;
    top: 87px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item.hide-menu-container {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 992px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item.hide-menu-container
    .mega-menu-main-container {
    width: auto;
    background: #edeeee;
    padding: 20px;
    margin: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 991px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item.hide-menu-container
    .mega-menu-main-container {
    width: 100%;
    background: none;
    padding: 0px;
  }
}
@media only screen and (min-width: 992px) {
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item.hide-menu-container
    ul.menu {
    width: 100%;
  }
  .header
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item
    .mm-content.hide-menu-description {
    display: none;
  }
  .header.sticky-head
    .main-navigation__menu___ul
    li.js-menu-tabs-item
    .js-menu-content-item.hide-menu-container {
    margin-left: -105px;
    top: 70px !important;
  }
}
body.toolbar-tray-open
  .header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item.hide-menu-container,
body.toolbar-vertical
  .header
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item.hide-menu-container {
  top: 87px;
}
body.toolbar-tray-open
  .header.sticky-head
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item.hide-menu-container,
body.toolbar-vertical
  .header.sticky-head
  .main-navigation__menu___ul
  li.js-menu-tabs-item
  .js-menu-content-item.hide-menu-container {
  top: 70px;
}
@media only screen and (max-width: 480px) {
  .node-76 .mobile-menu ul li:first-child {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .node-76 .mobile-menu ul li:first-child {
    display: none !important;
  }
}
.node-71 .active-mobile-contact-locations {
  display: none !important;
}
@media only screen and (max-width: 480px) {
  .lang-zh-hant .header__top-bar___container .nav-right__ul li a,
  .lang-zh-hans .header__top-bar___container .nav-right__ul li a {
    max-width: 40px;
  }
}
.main-navigation__menu___ul
  #block-onlineuserhelpguide
  li.js-menu-tabs-item
  .js-menu-content-item {
  top: 150px;
}
@media only screen and (max-width: 480px) {
  .main-navigation__menu___ul
    #block-onlineuserhelpguide
    li.js-menu-tabs-item
    .js-menu-content-item {
    top: 0 !important;
  }
}
@media only screen and (max-width: 991px) {
  .main-navigation__menu___ul
    #block-onlineuserhelpguide
    li.js-menu-tabs-item
    .js-menu-content-item {
    top: 0 !important;
  }
}
#block-onlineuserhelpguide
  > div.menu-main--dropdown.nav-left
  > ul
  > li:nth-child(4)
  > div.menu-main--tabs-content__item.js-menu-content-item.has-links {
  top: 87px !important;
}
@media only screen and (max-width: 480px) {
  #block-onlineuserhelpguide
    > div.menu-main--dropdown.nav-left
    > ul
    > li:nth-child(4)
    > div.menu-main--tabs-content__item.js-menu-content-item.has-links {
    top: 0 !important;
  }
}
@media only screen and (max-width: 991px) {
  #block-onlineuserhelpguide
    > div.menu-main--dropdown.nav-left
    > ul
    > li:nth-child(4)
    > div.menu-main--tabs-content__item.js-menu-content-item.has-links {
    top: 0 !important;
  }
}
body.toolbar-tray-open
  .header
  .main-navigation__menu___ul
  #block-onlineuserhelpguide
  li.js-menu-tabs-item
  .js-menu-content-item {
  top: 261px !important;
}
footer {
  clear: both;
}
footer .global-footer {
  background: #00205b;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  footer .global-footer {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 295px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  footer .global-footer {
    min-height: 315px;
  }
}
footer .global-footer__container {
  display: flex;
  flex-direction: row;
  flex-basis: 100%;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container {
    display: table;
  }
}
footer .global-footer__container #block-footerhelpfullinks-2 {
  width: 12%;
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container #block-footerhelpfullinks-2 {
    width: 40%;
    display: table;
  }
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container #block-footerhelpfullinks-2 li a {
    text-decoration: underline;
  }
}
footer .global-footer__container___column,
footer .global-footer__container #block-footerhelpfullinks-2 {
  color: #ffffff;
  width: 15%;
  padding: 0 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  footer .global-footer__container___column,
  footer .global-footer__container #block-footerhelpfullinks-2 {
    margin: 0 1% 0 0;
  }
}
@media only screen and (max-width: 1199px) {
  footer .global-footer__container___column,
  footer .global-footer__container #block-footerhelpfullinks-2 {
    width: 14.5%;
    padding: 0 8px;
  }
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column,
  footer .global-footer__container #block-footerhelpfullinks-2 {
    width: 24%;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container___column,
  footer .global-footer__container #block-footerhelpfullinks-2 {
    width: 43%;
  }
}
@media only screen and (max-width: 480px) {
  footer .global-footer__container___column,
  footer .global-footer__container #block-footerhelpfullinks-2 {
    float: left;
    width: 46%;
    padding: 0 0 0 15px;
  }
}
footer .global-footer__container___column.fc-1,
footer .global-footer__container #block-footerhelpfullinks-2.fc-1 {
  width: 15%;
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column.fc-1,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-1 {
    display: none;
  }
}
footer .global-footer__container___column.fc-1 img,
footer .global-footer__container #block-footerhelpfullinks-2.fc-1 img {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  footer .global-footer__container___column.fc-2,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-2 {
    position: absolute;
    top: 190px;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container___column.fc-2,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-2 {
    display: table;
    width: 50%;
    float: right;
    position: static;
  }
}
@media only screen and (max-width: 480px) {
  footer .global-footer__container___column.fc-2,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-2 {
    float: right;
    width: 37%;
    padding: 0 5px;
    position: static;
  }
}
footer .global-footer__container___column.fc-3,
footer .global-footer__container #block-footerhelpfullinks-2.fc-3 {
  padding-left: 0;
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column.fc-3,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-3 {
    width: 24%;
    margin: 0 0.5%;
    float: left;
    padding-left: 15px;
  }
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container___column.fc-3,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-3 {
    width: 50%;
    margin: 0;
  }
}
footer .global-footer__container___column.fc-4,
footer .global-footer__container #block-footerhelpfullinks-2.fc-4 {
  width: 15%;
  min-height: 175px;
}
footer .global-footer__container___column.fc-4 span,
footer .global-footer__container #block-footerhelpfullinks-2.fc-4 span {
  font-size: 1.25rem;
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column.fc-4 span,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-4 span {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  footer .global-footer__container___column.fc-4,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-4 {
    width: 19.5%;
    margin: 0 0.5%;
  }
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column.fc-4,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-4 {
    width: 30%;
    margin: 0 1%;
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container___column.fc-4,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-4 {
    width: 90%;
    margin: 0 5% 15px;
    clear: left;
    min-height: 0;
  }
}
footer .global-footer__container___column.fc-5,
footer .global-footer__container #block-footerhelpfullinks-2.fc-5 {
  min-height: 175px;
}
footer .global-footer__container___column.fc-5 span,
footer .global-footer__container #block-footerhelpfullinks-2.fc-5 span {
  font-size: 1.25rem;
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column.fc-5 span,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5 span {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  footer .global-footer__container___column.fc-5,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5 {
    width: 17%;
  }
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column.fc-5,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5 {
    width: 24%;
    margin: 0 1%;
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container___column.fc-5,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5 {
    width: 90%;
    margin: 0 5% 15px;
    min-height: 0;
  }
}
@media only screen and (min-width: 1401px) {
  footer .global-footer__container___column.fc-5,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5 {
    min-height: 215px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer .global-footer__container___column.fc-5,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5 {
    min-height: 215px;
  }
}
footer .global-footer__container___column.fc-6,
footer .global-footer__container #block-footerhelpfullinks-2.fc-6 {
  min-height: 175px;
}
footer .global-footer__container___column.fc-6 span,
footer .global-footer__container #block-footerhelpfullinks-2.fc-6 span {
  font-size: 1.25rem;
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column.fc-6 span,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 span {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  footer .global-footer__container___column.fc-6,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 {
    width: 18%;
    margin: 0 0.5%;
  }
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column.fc-6,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 {
    width: 24%;
    margin: 0 1%;
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container___column.fc-6,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 {
    width: 90%;
    margin: 0 5%;
    min-height: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1401px) {
  footer .global-footer__container___column.fc-6,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 {
    min-height: 215px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer .global-footer__container___column.fc-6,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 {
    min-height: 215px;
  }
}
footer .global-footer__container___column.fc-4 span,
footer .global-footer__container___column.fc-4 a,
footer .global-footer__container___column.fc-5 span,
footer .global-footer__container___column.fc-5 a,
footer .global-footer__container___column.fc-6 span,
footer .global-footer__container___column.fc-6 a,
footer .global-footer__container #block-footerhelpfullinks-2.fc-4 span,
footer .global-footer__container #block-footerhelpfullinks-2.fc-4 a,
footer .global-footer__container #block-footerhelpfullinks-2.fc-5 span,
footer .global-footer__container #block-footerhelpfullinks-2.fc-5 a,
footer .global-footer__container #block-footerhelpfullinks-2.fc-6 span,
footer .global-footer__container #block-footerhelpfullinks-2.fc-6 a {
  font-size: 1.125rem;
  color: #ffffff;
  font-family: "Calibre Semibold";
  text-decoration: none;
}
footer .global-footer__container___column.fc-4 span:hover,
footer .global-footer__container___column.fc-4 a:hover,
footer .global-footer__container___column.fc-5 span:hover,
footer .global-footer__container___column.fc-5 a:hover,
footer .global-footer__container___column.fc-6 span:hover,
footer .global-footer__container___column.fc-6 a:hover,
footer .global-footer__container #block-footerhelpfullinks-2.fc-4 span:hover,
footer .global-footer__container #block-footerhelpfullinks-2.fc-4 a:hover,
footer .global-footer__container #block-footerhelpfullinks-2.fc-5 span:hover,
footer .global-footer__container #block-footerhelpfullinks-2.fc-5 a:hover,
footer .global-footer__container #block-footerhelpfullinks-2.fc-6 span:hover,
footer .global-footer__container #block-footerhelpfullinks-2.fc-6 a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  footer .global-footer__container___column.fc-4 span,
  footer .global-footer__container___column.fc-4 a,
  footer .global-footer__container___column.fc-5 span,
  footer .global-footer__container___column.fc-5 a,
  footer .global-footer__container___column.fc-6 span,
  footer .global-footer__container___column.fc-6 a,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-4 span,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-4 a,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5 span,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5 a,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 span,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 a {
    line-height: 1.25rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  footer .global-footer__container___column.fc-4,
  footer .global-footer__container___column.fc-5,
  footer .global-footer__container___column.fc-6,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-4,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 {
    min-height: 218px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  footer .global-footer__container___column.fc-4,
  footer .global-footer__container___column.fc-5,
  footer .global-footer__container___column.fc-6,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-4,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 {
    min-height: 218px;
  }
}
@media only screen and (min-width: 1450px) {
  footer .global-footer__container___column.fc-4,
  footer .global-footer__container___column.fc-5,
  footer .global-footer__container___column.fc-6,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-4,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 {
    min-height: 218px;
  }
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column.fc-4,
  footer .global-footer__container___column.fc-5,
  footer .global-footer__container___column.fc-6,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-4,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 {
    font-size: 1.125rem;
    border-bottom: 3px solid white;
    padding-bottom: 15px;
    min-height: 218px;
  }
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container___column.fc-4,
  footer .global-footer__container___column.fc-5,
  footer .global-footer__container___column.fc-6,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-4,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-5,
  footer .global-footer__container #block-footerhelpfullinks-2.fc-6 {
    min-height: auto;
  }
}
footer .global-footer__container___column span,
footer .global-footer__container #block-footerhelpfullinks-2 span {
  font-family: "Calibre Semibold";
  padding-bottom: 10px;
  color: #ffffff;
  display: table;
  font-size: 1.375rem;
  transition: 0.25s all ease-in-out;
  cursor: pointer;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  line-height: 1.5rem;
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column span,
  footer .global-footer__container #block-footerhelpfullinks-2 span {
    font-size: 1.125rem;
  }
}
footer .global-footer__container___column span:hover,
footer .global-footer__container #block-footerhelpfullinks-2 span:hover {
  text-decoration: underline;
  text-decoration-color: #ffffff;
  -webkit-text-decoration-color: #ffffff;
  -moz-text-decoration-color: #ffffff;
}
footer .global-footer__container___column span a,
footer .global-footer__container #block-footerhelpfullinks-2 span a {
  color: white;
  font-size: 1.3125rem;
}
footer .global-footer__container___column ul,
footer .global-footer__container #block-footerhelpfullinks-2 ul {
  list-style: none;
  display: table;
  clear: both;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column ul,
  footer .global-footer__container #block-footerhelpfullinks-2 ul {
    margin-bottom: 85px;
  }
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container___column ul,
  footer .global-footer__container #block-footerhelpfullinks-2 ul {
    margin-bottom: 20px;
  }
}
footer .global-footer__container___column ul li,
footer .global-footer__container #block-footerhelpfullinks-2 ul li {
  float: left;
  margin-right: 10px;
}
footer .global-footer__container___column ul li:last-child,
footer .global-footer__container #block-footerhelpfullinks-2 ul li:last-child {
  margin-right: 0;
}
footer .global-footer__container___column ul li:nth-child(3) img,
footer
  .global-footer__container
  #block-footerhelpfullinks-2
  ul
  li:nth-child(3)
  img {
  margin-top: 3px;
}
footer .global-footer__container___column ul li a img.color-icon,
footer
  .global-footer__container
  #block-footerhelpfullinks-2
  ul
  li
  a
  img.color-icon {
  display: none;
}
footer .global-footer__container___column ul li a img.white-icon,
footer
  .global-footer__container
  #block-footerhelpfullinks-2
  ul
  li
  a
  img.white-icon {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 25px;
}
footer .global-footer__container___column ul li:hover img.white-icon,
footer
  .global-footer__container
  #block-footerhelpfullinks-2
  ul
  li:hover
  img.white-icon {
  display: none;
}
footer .global-footer__container___column ul li:hover img.color-icon,
footer
  .global-footer__container
  #block-footerhelpfullinks-2
  ul
  li:hover
  img.color-icon {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 25px;
}
footer .global-footer__container___column ul.social-ul li:nth-child(4),
footer
  .global-footer__container
  #block-footerhelpfullinks-2
  ul.social-ul
  li:nth-child(4) {
  clear: left;
  margin-top: 10px;
}
footer .global-footer__container___column ul.social-ul li:nth-child(5),
footer
  .global-footer__container
  #block-footerhelpfullinks-2
  ul.social-ul
  li:nth-child(5) {
  margin-top: 10px;
}
footer .global-footer__container___column ul.link-ul,
footer .global-footer__container #block-footerhelpfullinks-2 ul.link-ul {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column ul.link-ul,
  footer .global-footer__container #block-footerhelpfullinks-2 ul.link-ul {
    width: 100%;
  }
}
footer .global-footer__container___column ul.link-ul li,
footer .global-footer__container #block-footerhelpfullinks-2 ul.link-ul li {
  padding-bottom: 15px;
  display: table;
  clear: both;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  footer .global-footer__container___column ul.link-ul li,
  footer .global-footer__container #block-footerhelpfullinks-2 ul.link-ul li {
    padding-bottom: 5px;
  }
}
footer .global-footer__container___column ul.link-ul li a,
footer .global-footer__container #block-footerhelpfullinks-2 ul.link-ul li a {
  color: #ffffff;
  transition: 0.25s all ease-in-out;
  display: block;
  font-size: 1.125rem;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
}
@media only screen and (max-width: 1199px) {
  footer .global-footer__container___column ul.link-ul li a,
  footer .global-footer__container #block-footerhelpfullinks-2 ul.link-ul li a {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column ul.link-ul li a,
  footer .global-footer__container #block-footerhelpfullinks-2 ul.link-ul li a {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .global-footer__container___column ul.link-ul li a,
  footer .global-footer__container #block-footerhelpfullinks-2 ul.link-ul li a {
    text-decoration: underline;
    text-decoration-line: underline;
    -webkit-text-decoration: underline;
    text-decoration-color: #ffffff;
    -webkit-text-decoration-color: #ffffff;
    -moz-text-decoration-color: #ffffff;
  }
}
footer .global-footer__container___column ul.link-ul li a:hover,
footer
  .global-footer__container
  #block-footerhelpfullinks-2
  ul.link-ul
  li
  a:hover {
  text-decoration: underline;
  text-decoration-color: #ffffff;
  -webkit-text-decoration-color: #ffffff;
  -moz-text-decoration-color: #ffffff;
}
footer .global-footer__container___column.more-info-column,
footer .global-footer__container #block-footerhelpfullinks-2.more-info-column {
  border-bottom: solid 3px #ffffff;
  display: flexbox;
  text-align: center;
}
footer .global-footer__container___column.more-info-column .gfc-icon,
footer
  .global-footer__container
  #block-footerhelpfullinks-2.more-info-column
  .gfc-icon {
  display: table;
  width: auto;
  margin: 0 auto 10px;
}
footer .global-footer__container___column.more-info-column span,
footer
  .global-footer__container
  #block-footerhelpfullinks-2.more-info-column
  span {
  display: table;
  margin: auto;
  height: 50px;
}
@media only screen and (max-width: 1199px) {
  footer .global-footer__container___column.more-info-column span,
  footer
    .global-footer__container
    #block-footerhelpfullinks-2.more-info-column
    span {
    min-height: 70px;
  }
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column.more-info-column span,
  footer
    .global-footer__container
    #block-footerhelpfullinks-2.more-info-column
    span {
    max-width: unset;
    min-height: unset;
  }
}
footer .global-footer__container___column.more-info-column .fc-content,
footer
  .global-footer__container
  #block-footerhelpfullinks-2.more-info-column
  .fc-content {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Calibre Regular";
}
@media only screen and (max-width: 1199px) {
  footer .global-footer__container___column.more-info-column .fc-content,
  footer
    .global-footer__container
    #block-footerhelpfullinks-2.more-info-column
    .fc-content {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 991px) {
  footer .global-footer__container___column.more-info-column .fc-content,
  footer
    .global-footer__container
    #block-footerhelpfullinks-2.more-info-column
    .fc-content {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
footer #block-footernationalprimepayfoundation,
footer #block-footernationalprimepaygeneralbancorp,
footer #block-footerq2onlineuserhelpguide {
  text-align: center;
  background-color: #f5f5f2;
  padding-top: 15px;
  padding-bottom: 15px;
}
footer #block-footernationalprimepayfoundation .tertiary-footer,
footer #block-footernationalprimepaygeneralbancorp .tertiary-footer,
footer #block-footerq2onlineuserhelpguide .tertiary-footer {
  text-align: center;
  background-color: #f5f5f2;
}
footer #block-footerq2onlineuserhelpguide {
  padding-top: 20px;
}
footer .footer-wealth-management {
  background: #00205b;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1420px) {
  footer .footer-wealth-management {
    padding-left: 15px;
    padding-right: 15px;
  }
}
footer .footer-wealth-management .footer-Investments-table {
  margin-top: 20px;
  margin-bottom: 25px;
}
footer .footer-wealth-management .footer-Investments-table .row {
  padding: 0;
  margin: 0;
}
footer
  .footer-wealth-management
  .footer-Investments-table
  .row
  .ftr-investments-item {
  border: 1px solid #525f86;
  padding: 12px 10px;
  font-family: "Calibre bold";
  text-align: center;
  font-size: 1.125rem;
}
footer
  .footer-wealth-management
  .footer-Investments-table
  .row
  .ftr-investments-item.border-lbt {
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
}
footer
  .footer-wealth-management
  .footer-Investments-table
  .row
  .ftr-investments-item.border-tr {
  border-top: 0;
  border-right: 0;
}
@media only screen and (max-width: 768px) {
  footer .footer-wealth-management .footer-Investments-table .row .row-1-1 {
    border-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer-wealth-management .footer-Investments-table .row .row-1-3 {
    border-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  footer .footer-wealth-management .footer-Investments-table .row .row-1-2 {
    border-left: 1px solid #525f86 !important;
    border-right: 1px solid #525f86 !important;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer-wealth-management .footer-Investments-table .row .flx-1 {
    flex: auto;
    width: 50%;
    max-width: 50%;
    border-top: 1px solid #525f86 !important;
  }
}
@media only screen and (max-width: 480px) {
  footer .footer-wealth-management .footer-Investments-table .row .flx-1 {
    flex: auto;
    width: 100%;
    max-width: 100%;
    border-right: 1px solid #525f86 !important;
    border-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer-wealth-management .footer-Investments-table .row .flx-2 {
    flex: auto;
    width: 50%;
    max-width: 50%;
    border-right: 1px solid #525f86 !important;
  }
}
@media only screen and (max-width: 480px) {
  footer .footer-wealth-management .footer-Investments-table .row .flx-2 {
    flex: auto;
    width: 100%;
    max-width: 100%;
  }
}
footer .footer-wealth-management p {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  footer .footer-wealth-management p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  footer .footer-wealth-management p {
    font-size: 1rem;
  }
}
footer .footer-wealth-management a {
  color: #fff;
  text-decoration: underline;
}
footer .secondary-footer {
  background: #ccd2de;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  footer .secondary-footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
footer .secondary-footer__container {
  display: table;
  margin: auto;
}
footer .secondary-footer__container .menu-link {
  display: none;
  font-size: 1.25rem;
  font-family: "Calibre Semibold";
}
footer .secondary-footer__container .menu-link:after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 1.875rem;
}
@mediaonly screen and (max-width:991px) {
  footer .secondary-footer__container .menu-link {
    display: block;
    cursor: pointer;
  }
}
footer .secondary-footer__container .menu-link.open-menu-link:after {
  content: "-";
}
footer .secondary-footer__container ul {
  display: table;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  footer .secondary-footer__container ul {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: 0.25s max-height ease-in-out;
  }
}
@media only screen and (max-width: 991px) {
  footer .secondary-footer__container ul.show-footer-menu {
    max-height: 1500px;
  }
}
footer .secondary-footer__container ul li {
  float: left;
  padding: 0 25px;
}
footer .secondary-footer__container ul li:first-child {
  padding-left: 0;
}
footer .secondary-footer__container ul li:last-child {
  padding-right: 0;
}
@media only screen and (max-width: 991px) {
  footer .secondary-footer__container ul li {
    width: 100%;
    display: table;
    clear: both;
    padding: 20px 0 5px;
  }
}
@media only screen and (max-width: 767px) {
  footer .secondary-footer__container ul li {
    padding: 5px 0;
  }
}
footer .secondary-footer__container ul li a {
  color: black;
  font-family: "Calibre Semibold";
  text-decoration: none;
  font-size: 1.375rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
@media only screen and (max-width: 991px) {
  footer .secondary-footer__container ul li a {
    color: #00205b;
    font-size: 0.9375rem;
  }
}
footer .secondary-footer__container ul li a:hover {
  text-decoration: underline;
  text-decoration-color: black;
  -webkit-text-decoration-color: black;
  -moz-text-decoration-color: black;
}
@media only screen and (max-width: 991px) {
  footer .secondary-footer__container ul li a:hover {
    color: #d22630;
  }
}
footer .tertiary-footer {
  background: white;
  padding-top: 0px;
  padding-bottom: 20px;
  display: inline-block;
}
footer .tertiary-footer__container {
  margin: auto;
}
footer .tertiary-footer__container ul {
  width: auto;
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer__container ul {
    text-align: center;
  }
}
footer .tertiary-footer__container ul:first-child {
  float: left;
}
@media only screen and (max-width: 991px) {
  footer .tertiary-footer__container ul:first-child {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer__container ul:first-child {
    width: 100%;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  footer .tertiary-footer__container ul:first-child {
    width: 47% !important;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  footer .tertiary-footer__container ul:first-child {
    width: 47% !important;
  }
}
@media only screen and (max-width: 991px) {
  footer .tertiary-footer__container ul:first-child li a {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer__container ul:first-child li a {
    font-size: 0.875rem;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  footer .tertiary-footer__container ul:first-child li a {
    font-size: 0.875rem;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  footer .tertiary-footer__container ul:first-child li a {
    font-size: 0.875rem;
  }
}
footer .tertiary-footer__container ul:first-child li:after {
  content: " | ";
  padding-left: 10px;
}
@media only screen and (max-width: 768px) {
  footer .tertiary-footer__container ul:first-child li:after {
    content: " | ";
  }
}
@media only screen and (max-width: 991px) {
  footer .tertiary-footer__container ul:first-child li:after {
    padding-left: 3px;
  }
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer__container ul:first-child li:after {
    padding-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  footer .tertiary-footer__container ul:first-child li {
    padding: 0 8px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer__container ul:first-child li {
    display: inline-block;
    float: none;
    text-align: center;
    position: relative;
    padding: 0;
  }
}
footer .tertiary-footer__container ul.footer-right-ul,
footer .tertiary-footer__container ul.nav-right {
  float: right;
  display: none;
}
@media only screen and (max-width: 991px) {
  footer .tertiary-footer__container ul.footer-right-ul,
  footer .tertiary-footer__container ul.nav-right {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer__container ul.footer-right-ul,
  footer .tertiary-footer__container ul.nav-right {
    width: 100%;
    display: block;
  }
}
@media only screen and (min-width: 769px) {
  footer .tertiary-footer__container ul.footer-right-ul li:first-child,
  footer .tertiary-footer__container ul.nav-right li:first-child {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 991px) {
  footer .tertiary-footer__container ul.footer-right-ul li:first-child,
  footer .tertiary-footer__container ul.nav-right li:first-child {
    width: 68%;
    padding-right: 0;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  footer .tertiary-footer__container ul.footer-right-ul li:first-child,
  footer .tertiary-footer__container ul.nav-right li:first-child {
    padding-right: 7px;
    text-align: right;
    line-height: 1.125rem;
    padding-top: 10px;
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer__container ul.footer-right-ul li:first-child,
  footer .tertiary-footer__container ul.nav-right li:first-child {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 0.875rem;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  footer .tertiary-footer__container ul.footer-right-ul li:first-child,
  footer .tertiary-footer__container ul.nav-right li:first-child {
    font-size: 0.875rem;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  footer .tertiary-footer__container ul.footer-right-ul li:first-child,
  footer .tertiary-footer__container ul.nav-right li:first-child {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer__container ul.footer-right-ul li,
  footer .tertiary-footer__container ul.nav-right li {
    display: inline-block;
    float: none;
    text-align: center;
    position: relative;
  }
}
footer .tertiary-footer__container ul li {
  float: left;
  padding: 15px 10px 0 0;
  color: #57575c;
  display: flex;
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  footer .tertiary-footer__container ul li {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer__container ul li {
    font-size: 0.875rem;
  }
}
footer .tertiary-footer__container ul li:first-child {
  padding-left: 0;
  font-family: "Calibre Regular";
  font-size: 1.125rem;
}
@media only screen and (max-width: 991px) {
  footer .tertiary-footer__container ul li:first-child {
    font-size: 0.875rem;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  footer .tertiary-footer__container ul li:first-child {
    font-size: 0.875rem;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  footer .tertiary-footer__container ul li:first-child {
    font-size: 0.875rem;
  }
}
footer .tertiary-footer__container ul li:last-child {
  padding-right: 0;
}
footer .tertiary-footer__container ul li:last-child:after {
  display: none;
}
footer .tertiary-footer__container ul li.last_li {
  padding-top: 0;
}
footer .tertiary-footer__container ul li a {
  color: #57575c;
  text-decoration: none;
  font-family: "Calibre Regular";
  font-size: 1.125rem;
  text-decoration-color: transparent;
  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
  transition: 0.25s all ease-in-out;
}
@media only screen and (max-width: 991px) {
  footer .tertiary-footer__container ul li a {
    font-size: 0.875rem;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  footer .tertiary-footer__container ul li a {
    font-size: 0.875rem;
  }
}
footer .tertiary-footer__container ul li a:hover {
  color: black;
  text-decoration: underline;
  text-decoration-color: black;
  -webkit-text-decoration-color: black;
  -moz-text-decoration-color: black;
}
footer .tertiary-footer__container ul li img {
  width: 100%;
}
footer .tertiary-footer__container ul li img.fdic {
  max-width: 70px;
  height: auto;
  width: 75px;
  margin-top: -15px;
}
footer .tertiary-footer__container ul li img.lender {
  width: 35px;
  height: auto;
  margin-top: -10px;
}
@media only screen and (max-width: 768px) {
  footer .tertiary-footer__container ul li img.lender {
    width: 29px;
  }
}
footer .tertiary-footer__container ul li img.lender.notag {
  width: 20px;
  margin-top: -7px;
  margin-left: 5px;
}
@media only screen and (max-width: 768px) {
  footer .tertiary-footer__container ul li img.lender.notag {
    margin-left: 5px;
  }
}
footer .tertiary-footer.onlinehelp-footer {
  padding-bottom: 0;
}
footer .tertiary-footer.onlinehelp-footer .tertiary-footer__container {
  justify-content: center;
}
footer .tertiary-footer.onlinehelp-footer ul {
  text-align: center;
}
footer .tertiary-footer.onlinehelp-footer ul li {
  padding-top: 10px;
}
footer .tertiary-footer.onlinehelp-footer ul li:after {
  display: none;
}
footer .tertiary-footer.onlinehelp-footer ul li img {
  width: 100%;
}
footer .tertiary-footer.onlinehelp-footer ul li img.fdic {
  max-width: 70px;
  height: auto;
  width: 75px;
  margin-top: -15px;
}
footer .tertiary-footer.onlinehelp-footer ul li img.lender {
  width: 35px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  footer .tertiary-footer.onlinehelp-footer ul li img.lender {
    width: 29px;
  }
}
footer .tertiary-footer.ccpa-footer {
  padding-top: 30px;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer.ccpa-footer {
    padding-top: 15px;
  }
}
footer .tertiary-footer.ccpa-footer ul.footer-left-ul li,
footer .tertiary-footer.ccpa-footer ul.footer-left-wealth-ul li {
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer.ccpa-footer ul.footer-left-ul li:last-child,
  footer .tertiary-footer.ccpa-footer ul.footer-left-wealth-ul li:last-child {
    display: none;
  }
}
footer .tertiary-footer.ccpa-footer ul.footer-left-ul li a.sell-btn,
footer .tertiary-footer.ccpa-footer ul.footer-left-wealth-ul li a.sell-btn {
  font-family: "Calibre Semibold";
  background: #185d56;
  color: white;
  padding: 10px 15px 5px;
  display: table;
  text-decoration: none;
  transition: 0.25s all ease-in-out;
}
footer .tertiary-footer.ccpa-footer ul.footer-left-ul li a.sell-btn:hover,
footer
  .tertiary-footer.ccpa-footer
  ul.footer-left-wealth-ul
  li
  a.sell-btn:hover {
  color: #fff;
  background: #094943;
  text-decoration: none;
}
footer .tertiary-footer.ccpa-footer ul.footer-left-ul li a.sell-btn:focus,
footer
  .tertiary-footer.ccpa-footer
  ul.footer-left-wealth-ul
  li
  a.sell-btn:focus {
  outline: thin dotted;
}
footer .tertiary-footer.ccpa-footer ul.footer-left-ul li:last-child,
footer .tertiary-footer.ccpa-footer ul.footer-left-wealth-ul li:last-child {
  padding-top: 0;
}
footer .tertiary-footer.ccpa-footer ul.footer-left-ul li:first-child,
footer .tertiary-footer.ccpa-footer ul.footer-left-ul li:nth-child(2),
footer .tertiary-footer.ccpa-footer ul.footer-left-wealth-ul li:first-child,
footer .tertiary-footer.ccpa-footer ul.footer-left-wealth-ul li:nth-child(2) {
  padding-bottom: 10px;
}
footer .tertiary-footer.ccpa-footer ul.footer-left-ul li:after,
footer .tertiary-footer.ccpa-footer ul.footer-left-wealth-ul li:after {
  content: "  ";
}
footer .tertiary-footer.ccpa-footer ul.footer-left-ul li:first-child:after,
footer
  .tertiary-footer.ccpa-footer
  ul.footer-left-wealth-ul
  li:first-child:after {
  content: " | ";
}
footer .tertiary-footer.ccpa-footer ul.footer-right-ul {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer.ccpa-footer ul.footer-right-ul {
    display: none;
  }
}
footer .tertiary-footer.ccpa-footer ul.footer-right-ul li {
  padding-top: 10px;
}
footer .tertiary-footer.ccpa-footer ul.footer-right-ul li:last-child {
  padding-top: 0;
}
footer .tertiary-footer.ccpa-footer ul.footer-left-mobile-ul {
  display: none;
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer.ccpa-footer ul.footer-left-mobile-ul {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer.ccpa-footer ul.footer-left-mobile-ul li:last-child {
    display: inline-block;
    float: none;
    margin: 10px 0 5px;
  }
}
footer .tertiary-footer.ccpa-footer ul.nav-right {
  display: block;
}
@media only screen and (max-width: 767px) {
  footer .tertiary-footer.ccpa-footer ul.nav-right {
    display: none;
  }
}
footer .tertiary-footer.ccpa-footer ul.nav-right li:first-child {
  float: right;
  padding-top: 10px;
  padding-right: 10px;
}
footer .copyright-footer {
  display: inline-block;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #block-footermainmenu-3 .secondary-footer__container {
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  #block-footermainmenu-3 .menu-link {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #block-footermainmenu-3 ul {
    display: block;
    max-height: 0;
    overflow: unset;
    display: inline-table;
  }
}
#block-footermainmenu-3 ul li {
  padding: 0 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #block-footermainmenu-3 ul li {
    width: auto;
    display: inline-block;
    clear: none;
    padding: 0 8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #block-footermainmenu-3 ul li {
    width: auto;
    display: inline-block;
    clear: none;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  #block-footermainmenu-3 ul li {
    width: 100%;
    display: table;
    clear: both;
    padding: 20px 0 5px;
  }
}
#block-footermainmenu-3 ul li a {
  color: #000;
}
@media only screen and (max-width: 767px) {
  #block-footermainmenu-3 ul li a {
    color: #00205b;
  }
}
#block-views-block-social-icons-block-1-2 span:hover,
.global-footer__container___column-helpful span:hover {
  text-decoration: none !important;
  cursor: unset !important;
}
#block-footerwealthmanagement-3 ul.nav-right li {
  float: right;
}
footer .tertiary-footer__container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 480px) {
  footer .tertiary-footer__container {
    display: block;
  }
}
footer .tertiary-footer ul.footer-right-ul {
  justify-content: flex-end;
  float: right;
}
footer .tertiary-footer ul.footer-left-ul {
  flex: 0 0 50%;
}
footer .tertiary-footer ul.footer-left-ul li {
  display: flex;
  align-items: center;
  line-height: 1.25rem;
  padding-left: 3px;
  word-wrap: break-word;
}
@media only screen and (max-width: 480px) {
  footer .tertiary-footer ul.footer-left-ul li {
    display: inline-block;
  }
}
footer .tertiary-footer ul.footer-left-ul li a {
  line-height: 1.25rem;
  display: inline-block;
}
.fdic-logo {
  background-color: #edeeee;
  border-bottom: 1px solid #000000;
  padding: 6px 0 6px 15px;
}
.fdic-logo img {
  max-width: 30%;
}
@media only screen and (max-width: 768px) {
  .fdic-logo img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .fdic-logo img {
    max-width: 100%;
  }
}
.home-banner {
  position: relative;
  display: table;
  width: 100%;
  margin-bottom: 45px;
}
.home-banner:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  z-index: 0;
  right: 0;
  width: 100%;
}
.home-banner .web-banner {
  max-height: 773px;
}
@media only screen and (max-width: 767px) {
  .home-banner .web-banner {
    display: none;
  }
}
.home-banner .mobile-banner {
  display: none;
}
@media only screen and (max-width: 767px) {
  .home-banner .mobile-banner {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .home-banner {
    min-height: 400px;
    margin-bottom: 5px;
  }
  .home-banner.category-listing-banner {
    min-height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .home-banner {
    min-height: 353px;
  }
}
.home-banner__background {
  width: 100%;
  height: 100%;
  max-height: 773px;
  object-fit: cover;
  object-position: top;
  min-height: 750px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-banner__background {
    min-height: 287px;
    max-height: unset;
    object-fit: contain;
  }
}
@media only screen and (max-width: 767px) {
  .home-banner__background {
    min-height: 353px;
  }
}
@media only screen and (max-width: 480px) {
  .home-banner__background {
  }
}
.home-banner__content {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  left: 0;
  right: 0;
  bottom: 90px;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-banner__content {
    bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .home-banner__content {
    bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .home-banner__content {
    position: static;
    display: block;
    padding: 0;
  }
}
.home-banner__content .fa-arrow-right {
  display: none;
}
@media only screen and (max-width: 991px) {
  .home-banner__content___messaging {
    position: absolute;
    left: 15px;
    right: 0;
    bottom: 90px;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .home-banner__content___messaging {
    bottom: 25px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .home-banner__content___messaging {
    left: 0px;
    bottom: 20px;
    padding: 0 10px;
  }
}
.home-banner__content___messaging h1 {
  font-family: "Calibre Bold";
  font-size: 3.75rem;
  line-height: 3.75rem;
  margin-bottom: 10px;
  color: white;
  text-shadow: 1px 0 2px rgba(0, 0, 0, 0.15);
}
.home-banner__content___messaging h1 strong {
  background: #d22630;
  color: white;
  padding: 15px 10px 4px;
  display: table;
  clear: both;
  margin-left: -10px;
  font-family: "Calibre Bold";
  font-size: 3.75rem;
  line-height: 3.75rem;
  text-shadow: 1px 0 2px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 767px) {
  .home-banner__content___messaging h1 strong {
    padding: 10px 10px 5px;
    margin-left: 0px;
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner__content___messaging h1 strong {
    padding: 10px 10px 5px;
    margin-left: 0px;
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .home-banner__content___messaging h1 strong {
    padding: 10px 10px 5px;
    margin-left: 0px;
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .home-banner__content___messaging h1 strong {
    padding: 25px 10px 4px;
  }
}
@media only screen and (max-width: 991px) {
  .home-banner__content___messaging h1 {
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .home-banner__content___messaging h1 {
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-banner__content___messaging h1 {
    font-size: 1.875rem;
    line-height: 1.875rem;
    padding-left: 5px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .home-banner__content___messaging h1 {
    padding: 10px 10px 5px;
    margin-left: 0px;
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
}
.home-banner__content___messaging a {
  font-family: "Calibre Semibold";
  font-size: 1.375rem;
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .home-banner__content___messaging a {
    font-size: 1.125rem;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .home-banner__content___messaging a {
    font-size: 1rem;
    margin-top: 25px;
  }
}
.home-banner__content___messaging a img {
  width: 30px;
}
.home-banner__content___login-box {
  width: 100%;
  max-width: 400px;
  background: white;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box {
    display: none;
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    padding-bottom: 200px;
    background: #ccd2de;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
@media only screen and (max-width: 767px) {
  .home-banner__content___login-box {
    top: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box.show-login-box {
    display: table;
    z-index: 9;
  }
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box.show-login-box:before {
    bottom: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(204, 210, 222, 0);
    border-bottom-color: #ccd2de;
    border-width: 10px;
    right: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .home-form {
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    float: left;
    width: 100%;
  }
}
.home-banner__content___login-box .home-form__title {
  font-size: 1.875rem;
  font-family: "Calibre Bold";
  display: table;
  padding-bottom: 15px;
  padding-top: 10px;
  line-height: 2.25rem;
}
@media only screen and (max-width: 575px) {
  .home-banner__content___login-box .home-form__title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .home-form__title.desktop_title {
    display: none;
  }
}
.home-banner__content___login-box .home-form__title.mobile_title {
  display: none;
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .home-form__title.mobile_title {
    display: block;
    text-align: center;
  }
}
.home-banner__content___login-box .home-form .desk {
  background: #d22630 !important;
}
.home-banner__content___login-box .home-form__options {
  display: flex;
  flex-basis: 100%;
  flex-direction: row;
  border-bottom: 1px solid #f4f5f5;
  padding-bottom: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .home-banner__content___login-box .home-form__options {
    min-height: 55px;
    margin-bottom: 0 !important;
  }
}
.home-banner__content___login-box .home-form__options.mobile-login {
  display: none;
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .home-form__options {
    flex-direction: column;
    border-bottom: 0;
    display: none;
  }
  .home-banner__content___login-box .home-form__options.mobile-login {
    display: block;
  }
  .home-banner__content___login-box
    .home-form__options.mobile-login
    .second-login-title {
    float: left;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .home-banner__content___login-box .home-form__options {
    min-height: 55px;
    margin-bottom: 0 !important;
  }
}
.home-banner__content___login-box .home-form__options___option {
  width: 50%;
  float: left;
  padding: 0 10px;
  font-size: 1.375rem;
  color: #57575c;
  text-align: center;
  cursor: pointer;
  transition: 0.25s all ease-in-out;
  font-family: "Calibre Medium";
  border-bottom: 5px solid transparent;
  text-decoration: none;
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .home-form__options___option {
    background: #00205b;
    padding: 15px 10px 10px;
    margin-bottom: 10px;
    color: white !important;
    width: 100%;
    font-family: "Calibre Semibold";
  }
}
.home-banner__content___login-box .home-form__options___option:hover {
  color: black;
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .home-form__options___option:hover {
    color: white !important;
  }
}
.home-banner__content___login-box .home-form__options___option.active-option {
  color: black;
  border-bottom: 5px solid #d22630;
  text-shadow: 0.75px 0 0 black;
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .home-form__options___option.active-option {
    color: white !important;
    border-bottom: 0;
    text-shadow: 0 0 0 black;
  }
}
.home-banner__content___login-box .home-form .go-to-desktop-version {
  display: none;
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .home-form .go-to-desktop-version {
    display: block;
    text-align: center;
  }
}
.home-banner__content___login-box .home-form .go-to-desktop-version a {
  color: #00205b;
}
@media only screen and (max-width: 480px) {
  .home-banner__content___login-box .home-form .go-to-desktop-version a {
    font-size: 1rem;
  }
}
.home-banner__content___login-box .home-form__input {
  color: #57575c;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 0;
  border-bottom: 1px solid #57575c;
  font-family: "Calibre Medium";
  font-size: 1.125rem;
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .home-form__input {
    display: none;
  }
}
.home-banner__content___login-box .home-form .forgot-user {
  color: #00205b;
  display: table;
  margin-top: 5px;
  margin-bottom: 20px;
  transition: 0.25s all ease-in-out;
}
.home-banner__content___login-box .home-form .forgot-user:hover {
  color: #d22630;
  text-decoration: underline;
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .home-form .forgot-user {
    display: none;
  }
}
.home-banner__content___login-box .home-form .site-button {
  width: 100%;
  background: #00205b;
  padding: 15px 0 10px;
  margin-bottom: 15px;
  border: 0;
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .home-form .site-button {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .home-banner__content___login-box .view-learn-container {
    display: none;
  }
}
.home-banner__content___login-box .view-learn-container__link a {
  color: #00205b;
  transition: 0.25s all ease-in-out;
}
.home-banner__content___login-box .view-learn-container__link a:hover {
  color: #d22630;
  text-decoration: underline;
}
.home-banner__content___login-box .view-learn-container__link:after {
  content: " | ";
  color: #d9d9d9;
}
.home-banner__content___login-box .view-learn-container__link:last-child:after {
  display: none;
}
.category-listing-container {
  display: flex;
  flex-direction: row;
  flex-basis: 100%;
  justify-content: space-between;
  justify-content: center;
  margin-bottom: 25px;
  width: calc(100% - 5px);
}
@media only screen and (max-width: 767px) {
  .category-listing-container {
    flex-direction: column;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .category-listing-container.sticky-clc {
    margin-top: 90px !important;
  }
}
.category-listing-container:after {
  content: "";
}
@media only screen and (max-width: 767px) {
  .category-listing-container:after {
    content: "flickity";
    display: none;
  }
}
.category-listing-container__block {
  width: 20%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .category-listing-container__block {
    width: 33%;
    float: left;
  }
}
.category-listing-container__block___icon {
  width: 100%;
  max-width: 100px;
  height: 50px;
  display: block;
  margin: auto;
}
.category-listing-container__block span {
  display: block;
  padding-top: 20px;
  font-family: "Calibre Bold";
  font-size: 1.25rem;
  line-height: 1.25rem;
  position: relative;
}
.category-listing-container__block span a {
  text-decoration: none;
  color: #000000;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
  transition: 0.25s all ease-in-out;
  position: relative;
  display: inline-block;
}
.category-listing-container__block span a:after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 0;
  height: 4px;
  background: #d22630;
  left: 0;
  bottom: -3px;
  transition: 0.25s max-width ease-in-out;
}
@media only screen and (max-width: 767px) {
  .category-listing-container__block span {
    font-size: 1rem;
    line-height: 1.125rem;
  }
}
.category-listing-container__block#hclc-foreign-exchange-services a {
  width: 161px;
}
@media only screen and (max-width: 991px) {
  .category-listing-container__block#hclc-foreign-exchange-services a {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .category-listing-container__block#hclc-foreign-exchange-services a {
    width: 100%;
  }
}
.category-listing-container__block#hclc-foreign-exchange-services a:after {
  width: 161px;
}
@media only screen and (max-width: 991px) {
  .category-listing-container__block#hclc-foreign-exchange-services a:after {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .category-listing-container__block#hclc-foreign-exchange-services a:after {
    width: 100%;
  }
}
.category-listing-container__block:hover span a {
  color: #d22630;
}
.category-listing-container__block:hover span a:after {
  width: 100%;
  max-width: 100%;
}
.category-listing-container .flickity-page-dots {
  position: relative;
  margin-bottom: 25px;
}
.category-listing-container .flickity-page-dots .dot {
  border-radius: 0;
  background: #d22630;
  opacity: 1;
}
.category-listing-container .flickity-page-dots .dot.is-selected {
  background: #00205b;
}
.category-listing-container .flickity-page-dots .dot:nth-child(1n + 5) {
  display: none;
}
#home-promotional-banner {
  background: -moz-linear-gradient(
    180deg,
    rgb(255, 255, 255) 45%,
    rgb(237, 238, 238) 45%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(45%, rgb(255, 255, 255)),
    color-stop(45%, rgb(237, 238, 238))
  );
  background: -webkit-linear-gradient(
    180deg,
    rgb(255, 255, 255) 45%,
    rgb(237, 238, 238) 45%
  );
  background: -o-linear-gradient(
    180deg,
    rgb(255, 255, 255) 45%,
    rgb(237, 238, 238) 45%
  );
  background: -ms-linear-gradient(
    180deg,
    rgb(255, 255, 255) 45%,
    rgb(237, 238, 238) 45%
  );
  background: linear-gradient(
    180deg,
    rgb(255, 255, 255) 45%,
    rgb(237, 238, 238) 45%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF",endColorstr="#EDEEEE",GradientType=0);
  padding-bottom: 20px;
}
#home-promotional-banner .promotional-banner__container h2 strong,
#home-promotional-banner .promotional-banner__bg h2 strong {
  font-family: "Calibre bold";
  letter-spacing: 0.0625rem;
}
.promotional-banner {
  display: flex;
  flex-direction: row;
  flex-basis: 100%;
  justify-content: center;
  align-content: center;
  height: 150px;
  font-family: "Calibre Regular";
}
@media screen and (max-width: 1420px) {
  .promotional-banner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promotional-banner {
    height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .promotional-banner {
    padding: 0;
    height: 80px;
  }
}
.promotional-banner__container,
.promotional-banner__bg {
  width: 100%;
  float: left;
  color: white;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  position: relative;
  z-index: 9;
}
.promotional-banner__container:before,
.promotional-banner__bg:before {
  content: "";
  background: black;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
  display: block;
}
@media only screen and (max-width: 480px) {
  .promotional-banner__container,
  .promotional-banner__bg {
    background-position: 84%;
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promotional-banner__container,
  .promotional-banner__bg {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .promotional-banner__container,
  .promotional-banner__bg {
    padding: 0 25px;
  }
}
.promotional-banner__container h2,
.promotional-banner__bg h2 {
  font-size: 3.75rem;
  line-height: 3.75rem;
  margin-top: 20px;
  font-family: "Calibre Bold";
  display: table;
  clear: both;
  z-index: 1;
  max-width: 98%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .promotional-banner__container h2,
  .promotional-banner__bg h2 {
    max-width: 80%;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .promotional-banner__container h2,
  .promotional-banner__bg h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-top: 10px;
    width: 100%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .promotional-banner__container h2,
  .promotional-banner__bg h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .promotional-banner__container h2,
  .promotional-banner__bg h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promotional-banner__container h2,
  .promotional-banner__bg h2 {
    font-size: 1.5rem;
    line-height: 1.625rem;
    margin-top: 10px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .promotional-banner__container h2,
  .promotional-banner__bg h2 {
    font-size: 1.625rem;
    line-height: 1.875rem;
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .promotional-banner__container h2,
  .promotional-banner__bg h2 {
    font-size: 1rem;
    line-height: 1.125rem;
  }
}
.promotional-banner__arrow {
  width: 85px;
  float: right;
  background: #d22630;
  color: white;
  height: 150px;
  line-height: 9.6875rem;
  text-align: center;
  font-size: 3rem;
  cursor: pointer;
  transition: 0.25s all ease-in-out;
  padding-left: 0;
  position: relative;
  z-index: 9;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promotional-banner__arrow {
    width: 45px;
    height: 80px;
    line-height: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .promotional-banner__arrow {
    width: 45px;
    height: 80px;
    line-height: 5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promotional-banner__arrow img {
    width: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .promotional-banner__arrow img {
    width: 32px;
  }
}
.promotional-banner__arrow:hover {
  background: #9e1c23;
}
#products-and-services {
  display: table;
  margin: auto;
  padding-top: 72px;
  padding-bottom: 110px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #products-and-services {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #products-and-services {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
#products-and-services .online-trading {
  clear: both;
  margin-top: 50px;
  padding: 0 15px;
}
#products-and-services .online-trading a {
  background: #88dbdf;
  color: #000000;
  text-decoration: none;
  padding: 15px;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
  transition: 100ms all ease-in-out;
}
#products-and-services .online-trading a:hover {
  background: #80cbcf;
  text-decoration: underline;
}
@media only screen and (max-width: 991px) {
  #products-and-services #block-views-block-products-services-block-1-2 {
    display: none;
  }
}
.product-service-grid {
  display: flex;
  flex-basis: 100%;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .product-service-grid {
    flex-direction: column;
  }
}
@media only screen and (max-width: 991px) {
  .product-service-grid .attachment--row-1 {
    background: #00205b !important;
    margin-bottom: 20px;
  }
  .product-service-grid .attachment--row-1 a:after {
    background: url(../../../../themes/nationalprimepay/images/right-arrow-white.png) !important;
    background-size: cover !important;
  }
}
.product-service-grid
  .block-views-blockproducts-services-block-1
  .product-service-container__text,
.product-service-grid
  #product-services-attachment
  .product-service-container__text {
  padding: 76px 85px 25px 25px;
  min-height: 415px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text {
    padding: 40px 25px 20px;
    min-height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text {
    padding: 55px 25px 20px;
    min-height: inherit;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text {
    max-height: 315px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text:before,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text:before {
    content: "";
    position: absolute;
    margin-top: -20px;
    height: 9px;
    width: 60px;
    background: #d22630;
  }
}
@media only screen and (max-width: 767px) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text:before,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text:before {
    content: "";
    position: absolute;
    margin-top: -30px;
    height: 9px;
    width: 60px;
    background: #d22630;
  }
}
.product-service-grid
  .block-views-blockproducts-services-block-1
  .product-service-container__text
  .psc-text,
.product-service-grid
  #product-services-attachment
  .product-service-container__text
  .psc-text {
  font-size: 2rem;
  color: #ffffff;
  line-height: 2.25rem;
  font-family: "Calibre Regular";
}
.product-service-grid
  .block-views-blockproducts-services-block-1
  .product-service-container__text
  .psc-text
  p,
.product-service-grid
  #product-services-attachment
  .product-service-container__text
  .psc-text
  p {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text
    .psc-text,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text
    .psc-text {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.product-service-grid
  .block-views-blockproducts-services-block-1
  .product-service-container__text
  .psc-text
  P,
.product-service-grid
  #product-services-attachment
  .product-service-container__text
  .psc-text
  P {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.75rem;
}
@media only screen and (max-width: 768px) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text
    .psc-text
    P,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text
    .psc-text
    P {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.product-service-grid
  .block-views-blockproducts-services-block-1
  .product-service-container__text
  .psc-text
  h2,
.product-service-grid
  #product-services-attachment
  .product-service-container__text
  .psc-text
  h2 {
  color: #ffffff;
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 33px;
}
.product-service-grid
  .block-views-blockproducts-services-block-1
  .product-service-container__text
  .psc-text
  h2
  P,
.product-service-grid
  #product-services-attachment
  .product-service-container__text
  .psc-text
  h2
  P {
  font-size: 2rem;
  line-height: 2.5rem;
}
@media only screen and (max-width: 991px) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text
    .psc-text
    h2
    P,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text
    .psc-text
    h2
    P {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
.product-service-grid
  .block-views-blockproducts-services-block-1
  .product-service-container__text
  .psc-text
  h2
  P
  strong,
.product-service-grid
  #product-services-attachment
  .product-service-container__text
  .psc-text
  h2
  P
  strong {
  font-family: "Calibre Semibold";
}
.product-service-grid
  .block-views-blockproducts-services-block-1
  .product-service-container__text
  .psc-text
  h2
  strong,
.product-service-grid
  #product-services-attachment
  .product-service-container__text
  .psc-text
  h2
  strong {
  font-family: "Calibre Semibold";
}
@media only screen and (max-width: 991px) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text
    .psc-text
    h2,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text
    .psc-text
    h2 {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
@media only screen and (max-width: 991px) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text
    .psc-text,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text
    .psc-text {
    font-size: 1.25rem;
    min-height: 135px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text
    .psc-text,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text
    .psc-text {
    max-height: 120px;
    overflow: hidden;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .product-service-grid
    .block-views-blockproducts-services-block-1
    .product-service-container__text
    .psc-text,
  .product-service-grid
    #product-services-attachment
    .product-service-container__text
    .psc-text {
    min-height: 140px !important;
    font-size: 1.3125rem;
  }
}
.product-service-grid .product-service-container {
  display: table;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .product-service-grid .product-service-container__img {
    height: 200px;
  }
}
.product-service-grid .product-service-container__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 767px) {
  .product-service-grid .product-service-container__img img {
    height: 350px !important;
    object-position: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid .product-service-container__img img {
    height: 300px;
  }
}
.product-service-grid .product-service-container__img.compat-object-fit {
  background-size: cover;
  background-position: center center;
}
.product-service-grid .product-service-container__img.compat-object-fit img {
  opacity: 0;
}
.product-service-grid .product-service-container__text {
  padding: 25px 25px 20px;
}
@media screen and (max-width: 1200px) {
  .product-service-grid .product-service-container__text {
    padding: 25px 25px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid .product-service-container__text {
    padding: 40px 25px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .product-service-grid .product-service-container__text span strong {
    font-size: 1.25rem;
  }
}
.product-service-grid__post {
  position: relative;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid__post {
    box-shadow: unset;
  }
}
.product-service-grid__post span {
  font-size: 2rem;
  line-height: 2.8125rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product-service-grid__post span {
    font-size: 1rem;
    line-height: 0.75rem;
  }
}
.product-service-grid__post span strong {
  font-size: 2rem;
  line-height: 2.8125rem;
}
.product-service-grid__post .psc-text,
.product-service-grid__post .psc-text p {
  font-size: 1.5rem;
  line-height: 1.75rem;
  color: #00205b;
  font-family: "Calibre Regular";
}
@media only screen and (max-width: 991px) {
  .product-service-grid__post .psc-text,
  .product-service-grid__post .psc-text p {
    font-size: 1.25rem;
    min-height: 135px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product-service-grid__post .psc-text,
  .product-service-grid__post .psc-text p {
    max-height: 85px;
    overflow: hidden;
  }
}
.product-service-grid__post ul {
  list-style: disc;
  color: #00205b;
  padding-left: 15px;
}
.product-service-grid__post ul a {
  color: inherit;
  font-size: 1.5rem !important;
  line-height: 2.5rem;
  font-family: "Calibre Regular";
}
@media only screen and (max-width: 991px) {
  .product-service-grid__post ul a {
    font-size: 1.25rem !important;
  }
}
.product-service-grid__featured {
  width: 50%;
  float: left;
  background: #00205b;
  color: white;
}
@media only screen and (max-width: 991px) {
  .product-service-grid__featured {
    display: none;
  }
}
.product-service-grid__featured .psc-links__link a:after {
  background: url(../../../../themes/nationalprimepay/images/right-arrow-white.png) !important;
  background-repeat: no-repeat;
  background-size: cover !important;
  top: 5px;
}
.product-service-grid__featured .product-service-container__img img {
  height: 415px;
}
.product-service-grid__featured .product-service-container__text {
  padding-top: 70px;
}
@media only screen and (max-width: 767px) {
  .product-service-grid__featured .product-service-container__text span {
    font-size: 1.25rem;
    line-height: 1.5625rem;
  }
}
.product-service-grid__featured .product-service-container__text ul a {
  color: white;
}
.product-service-grid__featured .product-service-container__text:before {
  content: "";
  position: absolute;
  margin-top: -47px;
  height: 14px;
  width: 86px;
  background: #d22630;
}
@media only screen and (max-width: 768px) {
  .product-service-grid__featured .product-service-container__text:before {
    height: 9px;
    width: 51px;
  }
}
.product-service-grid__post-1 {
  width: 48.5%;
  margin-right: 1.5%;
  float: left;
  height: auto;
  background: white;
  color: black;
  height: 420px;
  margin-bottom: 20px;
}
.product-service-grid__post-1.two-post {
  width: 100%;
  margin-right: 0;
}
.product-service-grid__post-1.two-post .product-service-container__img {
  overflow: hidden;
  height: 200px;
  position: relative;
}
.product-service-grid__post-1.two-post .product-service-container__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .product-service-grid__post-1.two-post .product-service-container__img img {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .product-service-grid__post-1 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid__post-1 {
    width: 100%;
    margin-right: 0;
    background: none;
    margin-bottom: 0;
    height: auto;
  }
}
.product-service-grid__post-2 {
  width: 48.5%;
  margin-left: 1.5%;
  float: left;
  height: auto;
  background: white;
  color: black;
  height: 420px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .product-service-grid__post-2 {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid__post-2 {
    width: 100%;
    background: none;
    margin-bottom: 0;
    margin-left: 0;
    height: auto;
  }
}
.product-service-grid__post-2.two-post {
  width: 100%;
  margin-left: 0;
  margin-bottom: 0;
}
.product-service-grid__post-3 {
  height: 415px;
  background: white;
  color: black;
  clear: both;
}
@media only screen and (min-width: 992px) {
  .product-service-grid__post-3 .product-service-container__img {
    height: 415px;
    float: left;
    width: 50%;
  }
  .product-service-grid__post-3 .product-service-container__img img {
    height: 415px;
    object-fit: cover;
    object-position: top;
  }
  .product-service-grid__post-3
    .product-service-container__img.compat-object-fit {
    background-size: cover;
    background-position: center center;
  }
  .product-service-grid__post-3
    .product-service-container__img.compat-object-fit
    img {
    opacity: 0;
  }
  .product-service-grid__post-3 .product-service-container__text {
    width: 50%;
    float: left;
    padding: 75px 20px 0;
  }
  .product-service-grid__post-3 .product-service-container__text p {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media only screen and (min-width: 992px) {
  .product-service-grid__post-3 .psc-links__link {
    width: 50%;
  }
}
.product-service-grid__post-4 {
  width: 48.5%;
  margin-left: 1.5%;
  float: left;
  height: auto;
  background: white;
  color: black;
  height: 420px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .product-service-grid__post-4 {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid__post-4 {
    width: 100%;
    background: none;
    margin-bottom: 0;
    margin-left: 0;
    height: auto;
  }
}
.product-service-grid__post-4.item-3 {
  margin-left: 0;
  margin-right: 1.5%;
}
@media only screen and (min-width: 992px) {
  .product-service-grid__post-4.item-3,
  .product-service-grid__post-4.item-4 {
    margin-bottom: 0;
  }
}
.product-service-grid__post-4.two-post {
  width: 100%;
  margin-left: 0;
  margin-bottom: 0;
}
.product-service-grid .psc-links {
  position: absolute;
  bottom: 20px;
  width: 100%;
  margin-left: -25px;
  padding: 0 20px 0 25px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .product-service-grid .psc-links {
    display: table;
    bottom: 0;
    margin-left: 0;
    padding: 0;
    position: relative;
    margin-top: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product-service-grid .psc-links {
    font-size: 1rem;
    line-height: 0.75rem;
  }
}
.product-service-grid .psc-links__link {
  float: left;
}
@media only screen and (max-width: 767px) {
  .product-service-grid .psc-links__link {
    margin-bottom: 0px !important;
  }
}
@media only screen and (max-width: 991px) {
  .product-service-grid .psc-links__link {
    display: table;
    margin-bottom: 0;
    clear: both;
  }
  .product-service-grid .psc-links__link:last-child {
    margin-bottom: 0;
  }
}
.product-service-grid .psc-links__link a {
  position: relative;
  font-size: 1.375rem;
  line-height: 0.5rem;
}
@media only screen and (max-width: 991px) {
  .product-service-grid .psc-links__link a {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 768px) {
  .product-service-grid .psc-links__link a {
    font-size: 1rem;
    line-height: 0.75rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product-service-grid .psc-links__link a {
    font-size: 1rem;
    line-height: 0.75rem;
  }
}
.product-service-grid .psc-links__link a .fa-arrow-right {
  display: none;
}
.product-service-grid .psc-links__link a:after {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/right-arrow-green.png);
  width: 30px;
  height: 27px;
  position: relative;
  display: inline-block;
  top: 7px;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 480px) {
  .product-service-grid .psc-links__link a:after {
    top: 7px;
  }
}
.product-service-grid .product-service-grid__featured .psc-links__link a:after {
  top: 5px;
}
@media only screen and (max-width: 767px) {
  .product-service-grid__post {
    width: 100%;
    margin-left: 0;
    height: auto;
  }
}
.product-service-grid__right {
  width: 50%;
  float: left;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .product-service-grid__right {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid__right {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid__right .views-row:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .product-service-grid__right .views-row.row-4:last-child {
    width: 100%;
    height: auto;
  }
  .product-service-grid__right .views-row.row-4:last-child .psc-links {
    position: absolute;
    bottom: 20px;
    width: 100%;
    margin-left: -25px;
    padding: 0 20px 0 25px;
    display: flex;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid__right .views-row:first-child {
    background: #00205b;
    color: white;
  }
}
@media only screen and (max-width: 767px) {
  .product-service-grid__right .views-row:first-child {
    background: #00205b;
    color: white;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .product-service-grid__right .views-row:first-child .psc-links__link a:after {
    background: url(../../../../themes/nationalprimepay/images/right-arrow-white.png) !important;
    background-repeat: no-repeat;
    background-size: cover !important;
    top: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid__right .views-row:first-child .psc-links__link a:after {
    background: url(../../../../themes/nationalprimepay/images/right-arrow-white.png) !important;
    background-repeat: no-repeat;
    background-size: cover !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-service-grid__right .views-row {
    width: 49%;
    margin-right: 2%;
    float: left;
    height: auto;
    background: white;
    color: black;
    height: 550px;
    margin-bottom: 20px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
  }
}
@media only screen and (max-width: 767px) {
  .product-service-grid__right .views-row {
    float: left;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product-service-grid__right
    .views-row:last-child
    .product-service-container__text
    p {
    max-height: 200px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .product-service-grid__right {
    width: 100%;
    margin-left: 0;
  }
}
.product-service-grid__right #product-services-attachment-main {
  display: none;
}
@media only screen and (max-width: 991px) {
  .product-service-grid__right #product-services-attachment-main {
    display: block;
  }
}
#community-hub-section {
  padding-top: 50px;
}
#community-hub-section .flickity-page-dots {
  bottom: 36px;
  z-index: 9;
}
#community-hub-section
  #block-views-block-community-hub-block-1-2
  .flickity-page-dots {
  bottom: 36px;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  #community-hub-section
    #block-views-block-community-hub-block-1-2
    .flickity-page-dots {
    bottom: 26px;
  }
}
@media only screen and (max-width: 767px) {
  #community-hub-section {
    padding-top: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #community-hub-section {
    padding-top: 25px;
  }
}
.community-hub:after {
  content: "";
}
@media only screen and (max-width: 767px) {
  .community-hub:after {
    content: "flickity";
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .community-hub .flickity-page-dots {
    position: relative;
    margin-bottom: 50px;
    margin-top: 5px;
  }
  .community-hub .flickity-page-dots .dot {
    border-radius: 0;
    background: #d22630;
    opacity: 1;
  }
  .community-hub .flickity-page-dots .dot.is-selected {
    background: #00205b;
  }
}
.community-hub__article {
  float: left;
  width: 32%;
  display: block;
  border-bottom: 3px solid #ccd2de;
  padding-bottom: 30px;
  margin-bottom: 35px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.25s all ease-in-out;
}
.community-hub__article:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #d22630;
}
@media only screen and (max-width: 767px) {
  .community-hub__article:hover {
    box-shadow: none;
  }
}
@media only screen and (max-width: 991px) {
  .community-hub__article {
    width: 31%;
  }
}
@media only screen and (max-width: 767px) {
  .community-hub__article {
    width: 100%;
    box-shadow: none;
  }
}
.community-hub__article___img-container {
  margin-bottom: 25px;
  min-height: 225px;
  display: inline-block;
}
.community-hub__article___img-container img {
  width: 100%;
}
.community-hub__article___text-container {
  padding: 0 25px;
  min-height: 170px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .community-hub__article___text-container {
    min-height: 215px;
  }
}
.community-hub__article___text-container .article-date {
  color: #185d56;
  font-family: "Calibre Semibold";
  font-size: 1.25rem;
  height: 20px;
}
.community-hub__article___text-container .article-header {
  color: #00205b;
}
.community-hub__article___text-container .article-header a {
  font-size: 1.25rem;
  font-family: "Calibre Bold";
}
.community-hub__article___text-container .article-header a:hover {
  text-decoration: underline;
}
.community-hub__article___text-container .article-text {
  color: #57575c;
  font-family: "Calibre Regular";
  font-size: 1.125rem;
  line-height: 1.875rem;
}
.community-hub__article___text-container a.views-more-link {
  clear: left;
  display: inherit;
}
.community-hub__article___text-container a {
  text-decoration: none;
  color: #00205b;
  font-family: "Calibre Semibold";
  font-size: 1.125rem;
  transition: 0.25s all ease-in-out;
}
@media only screen and (max-width: 480px) {
  .community-hub__article___text-container a {
    word-wrap: break-word;
    clear: left;
    white-space: initial;
    display: block;
  }
}
.community-hub__article___text-container a:hover {
  color: #d22630;
}
.fdic-banner {
  background: #00205b;
  background-image: url(../../../../themes/nationalprimepay/images/newsletter_emblem.png);
  background-position: center right;
  background-repeat: no-repeat;
  color: white;
  display: table;
  padding: 25px;
  margin-bottom: 100px;
  height: 150px;
  position: relative;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0);
  transition: 0.25s all ease-in-out;
}
.fdic-banner.bright-banner {
  background-image: none;
}
@media only screen and (max-width: 767px) {
  .fdic-banner {
    padding-right: 0;
    height: 215px;
    background-position: center right -200px;
    background-size: cover;
    margin-top: 50px;
  }
  .fdic-banner.bright-banner {
    padding: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .fdic-banner {
    margin-bottom: 50px;
  }
}
.fdic-banner h2 {
  position: relative;
  max-width: 65%;
}
@media only screen and (max-width: 767px) {
  .fdic-banner h2 {
    max-width: 100%;
  }
}
.fdic-banner__text {
  font-size: 1.125rem;
  line-height: 1.5rem;
  max-width: 50%;
  font-family: "Calibre Regular";
}
@media only screen and (max-width: 767px) {
  .fdic-banner__text {
    max-width: 100%;
    padding-top: 20px;
  }
}
.fdic-banner a {
  color: white;
  text-decoration: none;
}
.fdic-banner__arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 1.875rem;
}
.fdic-banner__arrow.bright-banner-logo {
  top: 25px;
  transform: none;
}
.fdic-banner__arrow.bright-banner-logo.fdic-banner__arrow
  .promotional-banner__arrow {
  background: none;
  height: 100px;
  line-height: 6.25rem;
}
@media only screen and (max-width: 767px) {
  .fdic-banner__arrow.bright-banner-logo.fdic-banner__arrow
    .promotional-banner__arrow {
    height: 160px;
    line-height: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .fdic-banner__arrow.bright-banner-logo .fdic-banner-logo {
    display: none;
  }
}
.fdic-banner:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.fdic-banner:hover h2 {
  display: table;
  width: auto;
  position: relative;
}
.fdic-banner:hover a {
  text-decoration: underline;
}
#home-corporate-message {
  position: relative;
  background-color: #edeeee;
  background-repeat: no-repeat;
  background-position: -415px 75%;
}
@media only screen and (max-width: 768px) {
  #home-corporate-message {
    background-position: -18px 75%;
    background-size: 72%;
  }
}
@media only screen and (min-width: 1350px) {
  #home-corporate-message {
    background-position: -350px 75%;
  }
}
@media only screen and (min-width: 1450px) {
  #home-corporate-message {
    background-position: -260px 75%;
  }
}
@media only screen and (min-width: 1600px) {
  #home-corporate-message {
    background-position: -170px 75%;
  }
}
@media only screen and (min-width: 1900px) {
  #home-corporate-message {
    background-position: 0px 75%;
  }
}
@media only screen and (min-width: 1250px) and (max-width: 1290px) {
  #home-corporate-message {
    background-position: -452px 75%;
  }
}
@media only screen and (max-width: 767px) {
  #home-corporate-message {
    background-position: unset;
    background-size: 100%;
  }
}
#home-corporate-message .corporate-message-banner {
  margin: auto;
  height: 785px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  #home-corporate-message .corporate-message-banner {
    height: 785px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #home-corporate-message .corporate-message-banner {
    height: 424px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #home-corporate-message .corporate-message-banner {
    height: 326px;
  }
}
@media only screen and (max-width: 767px) {
  #home-corporate-message .corporate-message-banner {
    height: 760px;
  }
}
@media only screen and (max-width: 575px) {
  #home-corporate-message .corporate-message-banner {
    height: 580px;
  }
}
@media only screen and (max-width: 480px) {
  #home-corporate-message .corporate-message-banner {
    height: 558px;
  }
}
#home-corporate-message .corporate-message-banner__container {
  margin-left: auto;
  display: table;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #home-corporate-message .corporate-message-banner__container {
    top: 9%;
    position: absolute;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  #home-corporate-message .corporate-message-banner__container {
    margin-left: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    padding: 50px 15px;
    background: #d9eae7;
  }
}
#home-corporate-message .corporate-message-banner__container h2 {
  font-size: 3.75rem;
  font-family: "Calibre Semibold";
}
@media only screen and (max-width: 767px) {
  #home-corporate-message .corporate-message-banner__container h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 575px) {
  #home-corporate-message .corporate-message-banner__container h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #home-corporate-message .corporate-message-banner__container h2 {
    font-size: 1.875rem;
  }
}
#home-corporate-message .corporate-message-banner__container h2 strong {
  font-family: "Calibre Bold";
}
#home-corporate-message .corporate-message-banner__container h2 span {
  font-family: "Calibre Bold";
  background: #d22630;
  color: white;
  padding: 30px 50px 15px 30px;
  display: table;
  clear: both;
  font-size: 2.5rem;
  line-height: 2.5rem;
  margin-top: 10px;
  margin-bottom: 20px;
  margin-left: -25px;
  font-size: 3.75rem;
}
@media only screen and (max-width: 767px) {
  #home-corporate-message .corporate-message-banner__container h2 span {
    font-size: 2.125rem;
    padding: 15px 10px 5px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  #home-corporate-message .corporate-message-banner__container h2 span {
    font-size: 1.5rem;
    padding: 5px 5px 0px;
    margin-left: -8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #home-corporate-message .corporate-message-banner__container h2 span {
    font-size: 1.875rem;
    padding: 5px;
    margin-left: 0;
    margin-top: 0;
  }
}
#home-corporate-message .corporate-message-banner__container a {
  margin-left: 10px !important;
}
#home-corporate-message .corporate-message-banner__container h3 {
  font-size: 1.875rem;
  font-family: "Calibre Semibold";
  padding-left: 10px;
}
@media only screen and (max-width: 767px) {
  #home-corporate-message .corporate-message-banner__container h3 {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #home-corporate-message .corporate-message-banner__container h3 {
    padding-left: 0;
    font-family: "Calibre Regular";
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 575px) {
  #home-corporate-message .corporate-message-banner__container h3 {
    padding-left: 0;
    font-size: 1.125rem;
  }
}
#home-corporate-message .corporate-message-banner__container h3 strong {
  font-family: "Calibre Semibold";
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #home-corporate-message .corporate-message-banner__container h3 strong {
    line-height: 1.75rem;
  }
}
@media only screen and (max-width: 575px) {
  #home-corporate-message .corporate-message-banner__container h3 strong br {
    display: none;
  }
}
#home-corporate-message .corporate-message-banner__container .site-button {
  margin-top: 30px;
  line-height: 3.625rem;
  width: auto;
  text-align: center;
  margin-left: 5px;
  padding: 0 20px;
  display: inline-block;
  padding-top: 5px;
}
@media only screen and (max-width: 991px) {
  #home-corporate-message .corporate-message-banner__container .site-button {
    margin-left: 0;
    line-height: 2.5rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  #home-corporate-message .corporate-message-banner__container .site-button {
    font-size: 0.9375rem;
  }
}
#join-nationalprimepay-banner {
  position: relative;
  background-color: #ccd2de;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-position: 350px 75%;
}
@media only screen and (min-width: 1350px) {
  #join-nationalprimepay-banner {
    background-position: 400px 75%;
  }
}
@media only screen and (min-width: 1450px) {
  #join-nationalprimepay-banner {
    background-position: 428px 75%;
    background-size: 93% !important;
  }
}
@media only screen and (min-width: 1600px) {
  #join-nationalprimepay-banner {
    background-position: 450px 75%;
    background-size: 84% !important;
  }
}
@media only screen and (min-width: 1900px) {
  #join-nationalprimepay-banner {
    background-position: 600px 75%;
    background-size: 69% !important;
  }
}
@media only screen and (max-width: 768px) {
  #join-nationalprimepay-banner {
    background-position: 200px 75%;
    background-size: 72%;
  }
}
@media only screen and (max-width: 767px) {
  #join-nationalprimepay-banner {
    background-size: 100%;
    background-position: unset;
  }
}
#join-nationalprimepay-banner .join-nationalprimepay-banner {
  margin: auto;
  height: 785px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner {
    height: 785px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner {
    height: 550px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner {
    height: 326px;
  }
}
@media only screen and (max-width: 767px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner {
    height: 760px;
  }
}
@media only screen and (max-width: 575px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner {
    height: 590px;
  }
}
#join-nationalprimepay-banner .join-nationalprimepay-banner__container {
  margin-right: auto;
  display: table;
  padding: 90px 50px 50px;
  width: 100%;
  max-width: 684px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 991px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner__container {
    max-width: 426px;
    padding: 35px 20px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner__container {
    padding: 65px 30px 30px;
    max-width: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner__container {
    position: absolute;
    top: 8%;
  }
}
@media only screen and (max-width: 767px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner__container {
    margin-left: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    padding: 55px 15px 50px;
    background: white;
    max-width: 100%;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
#join-nationalprimepay-banner .join-nationalprimepay-banner__container:before {
  content: "";
  position: absolute;
  margin-top: -40px;
  height: 14px;
  width: 89px;
  background: #d22630;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container:before {
    margin-top: -12px;
    height: 9px;
    width: 51px;
  }
}
@media only screen and (max-width: 575px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container:before {
    margin-top: -20px;
  }
}
@media only screen and (max-width: 768px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container:before {
    height: 9px;
    width: 51px;
  }
}
#join-nationalprimepay-banner .join-nationalprimepay-banner__container__text {
  font-size: 1.5rem;
  font-family: "Calibre Regular";
  color: #57575c;
  padding-top: 15px;
  line-height: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner__container__text {
    padding-top: 0;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 575px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner__container__text {
    font-size: 1.125rem;
    padding-top: 5px;
  }
}
#join-nationalprimepay-banner .join-nationalprimepay-banner__container span {
  display: table;
  clear: both;
  font-size: 2.5rem;
  line-height: 2rem;
  margin-bottom: 10px;
  padding-top: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner__container span {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media only screen and (max-width: 575px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner__container span {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
#join-nationalprimepay-banner .join-nationalprimepay-banner__container span p {
  font-size: 2.5rem;
  display: block;
  padding-top: 15px;
  font-family: "Calibre Bold" !important;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container
    span
    p {
    font-size: 1.5rem;
    line-height: 1.75rem;
    padding: 0;
  }
}
@media only screen and (max-width: 480px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container
    span
    p {
    font-size: 1.5rem;
    line-height: 1.75rem;
    padding: 0;
  }
}
#join-nationalprimepay-banner
  .join-nationalprimepay-banner__container
  span
  p
  strong {
  font-size: 2.5rem;
  display: block;
  padding-top: 15px;
  font-family: "Calibre Bold" !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container
    span
    p
    strong {
    font-family: "Calibre Semibold";
    padding-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container
    span
    p
    strong {
    padding-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container
    span
    p
    strong {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media only screen and (max-width: 480px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container
    span
    p
    strong {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #join-nationalprimepay-banner .join-nationalprimepay-banner__container span {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
#join-nationalprimepay-banner .join-nationalprimepay-banner__container h3 {
  font-size: 1.25rem;
}
#join-nationalprimepay-banner
  .join-nationalprimepay-banner__container
  .site-button {
  margin-top: 50px;
  line-height: 3.625rem;
  width: auto;
  text-align: center;
  padding: 0 20px;
  display: inline-block;
  padding-top: 5px;
}
@media only screen and (max-width: 991px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container
    .site-button {
    font-size: 1rem;
    line-height: 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container
    .site-button {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 575px) {
  #join-nationalprimepay-banner
    .join-nationalprimepay-banner__container
    .site-button {
    margin-top: 30px;
    font-size: 0.9375rem;
  }
}
#join-nationalprimepay-banner
  .join-nationalprimepay-banner__container
  .site-button
  svg {
  font-size: 0.875rem;
  padding-left: 10px;
}
#join-nationalprimepay-banner
  .join-nationalprimepay-banner__container
  .site-button
  img {
  width: 18px;
  height: 18px;
}
@media only screen and (max-width: 991px) {
  .nationalprimepay-login-form {
    display: none;
  }
}
.nationalprimepay-login-form .home-form__options___option {
  display: none;
}
@media only screen and (max-width: 991px) {
  .nationalprimepay-login-form .home-form__options___option span {
    display: none;
  }
  .nationalprimepay-login-form .home-form__options___option span.active-option {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .nationalprimepay-login-form .home-form__options___option {
    display: block;
  }
}
.nationalprimepay-login-form form input.form-text {
  color: #57575c;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 0;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: 0px;
  border-bottom: 1px solid #57575c;
  font-family: "Calibre Medium";
  font-size: 1.125rem;
}
.nationalprimepay-login-form form input.form-submit {
  width: 100%;
  background: #00205b;
  padding: 15px 0 10px;
  margin-bottom: 15px;
  border: 0;
  font-size: 1.375rem;
  font-family: "Calibre Semibold";
  color: white;
  display: table;
  text-decoration: none;
  transition: 0.25s all ease-in-out;
}
@media only screen and (max-width: 991px) {
  .nationalprimepay-login-form form input.form-submit {
    width: 100%;
    padding: 7px 50px 7px;
  }
}
.nationalprimepay-login-form form #edit-access-type {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
@media only screen and (max-width: 480px) {
  .nationalprimepay-login-form form #edit-access-type {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .nationalprimepay-login-form form #edit-access-type {
    display: none;
  }
}
.nationalprimepay-login-form form #edit-access-type .form-item-access-type {
  padding-bottom: 10px;
  display: inline-flex;
}
.nationalprimepay-login-form
  form
  #edit-access-type
  .form-item-access-type
  label {
  padding-left: 10px;
  margin: 0;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .lang-es .join-nationalprimepay-banner__container__text {
    padding-top: 0;
    font-size: 1.125rem !important;
    line-height: 1.5rem !important;
  }
}
.lang-es .product-service-grid__post .psc-text,
.lang-es .product-service-grid__post .psc-text p {
  font-size: 1.3125rem;
  line-height: 1.75rem;
  color: #00205b;
  font-family: "Calibre Regular";
}
@media only screen and (max-width: 991px) {
  .lang-es .product-service-grid__post .psc-text,
  .lang-es .product-service-grid__post .psc-text p {
    font-size: 1.125rem;
    min-height: 135px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .lang-es .product-service-grid__post .psc-text,
  .lang-es .product-service-grid__post .psc-text p {
    max-height: 85px;
    overflow: hidden;
  }
}
.lang-es .home-form__options span:first-child {
  width: 48.3%;
}
.node-3051 #block-nationalprimepay-breadcrumbs,
.node-3046 #block-nationalprimepay-breadcrumbs,
.node-3366 #block-nationalprimepay-breadcrumbs,
.node-3406 #block-nationalprimepay-breadcrumbs,
.node-2101 #block-nationalprimepay-breadcrumbs {
  display: none;
}
.node-66.lang-zh-hant .header .main-navigation__menu___ul li.js-menu-tabs-item,
.node-66.lang-zh-hans .header .main-navigation__menu___ul li.js-menu-tabs-item {
  display: table;
  float: left;
  margin: 0 18px;
  position: relative;
  max-width: 200px;
  height: 50px;
  text-align: center;
}
#category-listing-header-container {
  max-height: 520px;
  background-color: #e0e4eb;
  padding: 20px 0px 0px 0px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 480px) {
  #category-listing-header-container {
    padding-bottom: 160px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 480px) {
  #category-listing-header-container .cl-header__content-block {
    padding: 0;
  }
}
.listing-header {
  position: absolute;
  width: 98%;
  top: 10%;
  left: 2%;
}
@media only screen and (max-width: 575px) {
  .listing-header__nav-container {
    padding: 0px;
  }
}
.listing-header__nav-container ol {
  display: flex;
}
.listing-header__nav-container ol li {
  margin-right: 5px;
}
.listing-header__nav-container ol li:after {
  content: " | ";
}
.listing-header__nav-container ol li:last-of-type:after {
  content: "  ";
}
.listing-header__nav-container a {
  color: #00205b !important;
  text-decoration: underline;
  font-size: 1.125rem;
}
.listing-header__nav-container p {
  display: inline !important;
  font-size: 1.125rem;
}
.lang-zh-hant .cl-header__banner-title {
  font-weight: bold;
}
.cl-header {
  padding-bottom: 50px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .cl-header {
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .cl-header {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .cl-header__nav-container {
    padding: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .cl-header__nav-container {
    padding: 0 15px;
    padding-bottom: 10px;
  }
}
.cl-header__nav-container .mobile-back {
  display: none;
}
@media only screen and (max-width: 767px) {
  .cl-header__nav-container .mobile-back {
    display: block;
  }
}
.cl-header__nav-container .otherpage-mobile-login-box {
  display: none;
}
@media only screen and (max-width: 991px) {
  .cl-header__nav-container .otherpage-mobile-login-box {
    display: block;
  }
}
.cl-header__nav-container
  .otherpage-mobile-login-box
  .home-banner__content___login-box {
  top: -20px;
  left: -15px;
  right: -15px;
  max-width: calc(100% + 30px);
  width: auto;
}
@media only screen and (max-width: 480px) {
  .cl-header__nav-container
    .otherpage-mobile-login-box
    .home-banner__content___login-box {
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .cl-header__nav-container #block-nationalprimepay-breadcrumbs {
    display: none;
  }
}
.cl-header__nav-container ol {
  display: flex;
}
.cl-header__nav-container ol li {
  margin-right: 5px;
}
.cl-header__nav-container ol li:after {
  content: " | ";
}
.cl-header__nav-container ol li:last-of-type:after {
  content: "  ";
}
.cl-header__nav-container a {
  color: #00205b !important;
  text-decoration: underline;
  font-size: 1.125rem;
}
.cl-header__nav-container p {
  display: inline !important;
  font-size: 1.125rem;
}
.cl-header__title {
  line-height: 3.75rem;
  font-family: "Calibre Bold";
  width: 100%;
  margin-top: 12px;
}
@media only screen and (max-width: 480px) {
  .cl-header__title {
    line-height: 1.75rem;
    padding: 0 15px;
    margin-top: 5px;
  }
}
.cl-header__img {
  width: 86%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  height: 350px;
  align-items: center;
  max-width: 1180px;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .cl-header__img {
    background-size: cover;
    height: 215px;
  }
}
@media only screen and (max-width: 480px) {
  .cl-header__img {
    width: 100%;
    height: 110px;
  }
}
.cl-header__banner-container {
  width: 100%;
  max-width: 635px;
  background-color: #ffffff;
  padding: 32px 40px;
  float: right;
  position: absolute;
  right: 0;
  top: 31%;
}
@media only screen and (max-width: 480px) {
  .cl-header__banner-container {
    width: 100%;
    top: 82%;
    padding: 20px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .cl-header__banner-container {
    max-width: 470px;
    max-height: 154px;
    top: 39%;
    padding: 20px 20px 0px 30px;
    bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .cl-header__banner-container {
    max-width: 910px;
  }
}
.cl-header__banner-title {
  height: auto;
  font-size: 3.75rem;
  font-family: "Calibre Bold";
  padding: 0 10px 10px;
  line-height: 2.5rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .cl-header__banner-title {
    font-size: 1.875rem;
    line-height: 1.25rem;
  }
}
@media only screen and (max-width: 480px) {
  .cl-header__banner-title {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1023px) {
  .cl-header__banner-title {
    font-size: 2.5rem;
  }
}
.cl-header__banner-title-highlight {
  background-color: #d22630;
  font-size: 3.75rem;
  font-family: "Calibre Bold";
  padding: 18px 15px 0px 15px;
  color: #ffffff;
  margin-bottom: 30px;
  display: inline-block;
  line-height: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .cl-header__banner-title-highlight {
    font-size: 1.875rem;
    padding: 10px 6px 5px 6px;
    margin-bottom: 15px;
    line-height: 1.875rem;
  }
}
@media only screen and (max-width: 480px) {
  .cl-header__banner-title-highlight {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1023px) {
  .cl-header__banner-title-highlight {
    font-size: 2.5rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cl-header__banner-title-highlight {
    padding: 25px 15px 0px 15px;
  }
}
.cl-header__link-container {
  position: relative;
}
.cl-header__link-container a {
  text-decoration: none;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
}
.cl-header__link-container a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 480px) {
  .cl-header__link-container a {
    font-size: 1.25rem;
  }
}
.cl-header__link-container span {
  background: url(../../../../themes/nationalprimepay/images/get_online_arrow.png);
  background-repeat: no-repeat;
  height: 22px;
  width: 10px;
  margin: 0px;
  padding: 11px;
  padding-top: 0;
  position: absolute;
  top: 8px;
  margin-left: 10px;
}
#block-printwholepage,
#block-printwholepage-2 {
  display: inline-block;
  padding-left: 5px;
}
@media only screen and (max-width: 575px) {
  #block-printwholepage,
  #block-printwholepage-2 {
    display: none;
  }
}
#block-printwholepage p,
#block-printwholepage-2 p {
  font-size: 1.125rem !important;
  margin: 0;
}
#block-printwholepage input,
#block-printwholepage-2 input {
  background: url(../../../../themes/nationalprimepay/images/print_icon.png);
  background-repeat: no-repeat;
  width: 19px;
  height: 18px;
  display: block;
  border: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#cl__products-services .product-service__header span {
  font-size: 1.875rem;
  font-family: "Calibre Semibold";
  display: table;
  padding: 5px 25px;
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  #cl__products-services .product-service__header span {
    font-size: 1.375rem;
    padding: 5px 15px;
  }
}
@media only screen and (max-width: 768px) {
  #cl__products-services .product-service__header span {
    padding: 5px 10px;
    font-size: 1.125rem;
  }
}
#cl__products-services h2.products-services__title {
  font-family: "Calibre Bold";
  display: table;
  clear: both;
  font-size: 3.75rem;
  padding: 20px 20px 0px;
  background: #ccd2de;
  margin-bottom: 30px;
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  #cl__products-services h2.products-services__title {
    font-size: 1.875rem;
    line-height: 2.5rem;
    padding: 15px 15px 5px;
  }
}
@media only screen and (max-width: 768px) {
  #cl__products-services h2.products-services__title {
    font-size: 1.875rem;
    padding: 10px 10px 5px;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 480px) {
  #cl__products-services h2.products-services__title {
    line-height: 1.875rem !important;
  }
}
.t2-promotional-banner__container {
  width: 100%;
  float: left;
  color: white;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 768px) {
  .t2-promotional-banner__container {
    height: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .t2-promotional-banner__container {
    height: 80px;
    background-position: 84%;
    background-size: cover;
  }
}
@media only screen and (max-width: 767px) {
  .t2-promotional-banner__container {
    height: 80px;
  }
}
.t2-promotional-banner__container h2 strong {
  font-family: "Calibre bold";
  letter-spacing: 0.0625rem;
}
.t2-promotional-banner__container:before {
  content: "";
  background: black;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
  display: block;
}
@media only screen and (max-width: 767px) {
  .t2-promotional-banner__container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 480px) {
  .t2-promotional-banner__container {
    padding: 0 15px;
  }
}
.t2-promotional-banner__container h2 {
  font-size: 3.75rem;
  line-height: 3.75rem;
  margin-top: 20px;
  font-family: "Calibre Semibold";
  display: table;
  clear: both;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .t2-promotional-banner__container h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .t2-promotional-banner__container h2 {
    font-size: 1.5rem;
    line-height: 1.875rem;
    margin: 0;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .t2-promotional-banner__container h2 {
    font-size: 1.625rem;
    line-height: 1.875rem;
    margin: 0;
  }
}
@media only screen and (min-width: 575px) and (max-width: 768px) {
  .t2-promotional-banner__container h2 {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .t2-promotional-banner__container h2 {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.5rem;
  }
}
.promotional-banner__light-bg {
  width: 100%;
  float: left;
  color: white;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: auto;
  background-position: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  position: relative;
  z-index: 9;
  box-shadow: 0 0px 3px #ccc;
}
@media only screen and (max-width: 767px) {
  .promotional-banner__light-bg {
    background-position: 84%;
    background-size: cover;
  }
}
.promotional-banner__light-bg h2 strong {
  font-family: "Calibre semibold";
  letter-spacing: 0.0625rem;
}
@media only screen and (max-width: 991px) {
  .promotional-banner__light-bg {
    padding: 0 5px;
    background-size: auto 100%;
    background-position: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promotional-banner__light-bg {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .promotional-banner__light-bg {
    background-position: 84%;
    background-size: cover;
  }
}
.promotional-banner__light-bg h2 {
  font-size: 3.75rem;
  line-height: 3.75rem;
  margin-top: 20px;
  font-family: "Calibre Semibold";
  display: table;
  clear: both;
  z-index: 1;
  color: #000;
}
@media (max-width: 1200px) {
  .promotional-banner__light-bg h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .promotional-banner__light-bg h2 {
    font-size: 1.5rem;
    line-height: 1.25rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promotional-banner__light-bg h2 {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .promotional-banner__light-bg h2 {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .promotional-banner__light-bg h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-top: 10px;
    width: 100%;
  }
}
.t2-additional-promotional-banne__container {
  width: 100%;
  float: left;
  color: white;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  position: relative;
  z-index: 9;
  box-shadow: 0 0px 3px #ccc;
}
@media only screen and (max-width: 767px) {
  .t2-additional-promotional-banne__container {
    background-size: 50%;
  }
}
.t2-additional-promotional-banne__container h2 strong {
  font-family: "Calibre semibold";
  letter-spacing: 0.0625rem;
}
@media only screen and (max-width: 991px) {
  .t2-additional-promotional-banne__container {
    padding: 0 5px;
    background-size: auto 100%;
    background-position: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .t2-additional-promotional-banne__container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .t2-additional-promotional-banne__container {
    padding: 0 25px;
    background-size: 90%;
    background-position: 400%;
  }
}
.t2-additional-promotional-banne__container h2 {
  font-size: 3.75rem;
  line-height: 3.75rem;
  margin-top: 20px;
  font-family: "Calibre Semibold";
  display: table;
  clear: both;
  z-index: 1;
  color: #000;
}
@media only screen and (max-width: 991px) {
  .t2-additional-promotional-banne__container h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .t2-additional-promotional-banne__container h2 {
    font-size: 1.5rem;
    line-height: 1.25rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .t2-additional-promotional-banne__container h2 {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .t2-additional-promotional-banne__container h2 {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
}
.block-textresize {
  display: inline-block;
}
.block-textresize a.text_resize_decrease,
.block-textresize a.text_resize_increase,
.block-textresize a.text_resize_reset {
  background: none;
  margin: 0;
  color: #57575c;
  text-decoration: none;
  display: inline;
  float: none;
  font-weight: bold;
}
.block-textresize a.text_resize_decrease sup,
.block-textresize a.text_resize_increase sup,
.block-textresize a.text_resize_reset sup {
  display: none;
}
.block-textresize a.text_resize_increase {
  font-size: 1.375rem;
}
@media only screen and (max-width: 991px) {
  .block-textresize a.text_resize_increase {
    font-size: 1.25rem;
  }
}
.block-textresize a.text_resize_reset {
  font-size: 0.875rem;
  margin-right: 2px;
  margin-top: 7.5px;
  float: left;
  text-indent: unset;
  width: auto;
}
@media only screen and (max-width: 991px) {
  .block-textresize a.text_resize_reset {
    font-size: 0.75rem;
    margin-top: 7px;
  }
}
.block-textresize a.text_resize_decrease {
  font-size: 1.125rem;
  margin-right: -2px;
}
@media only screen and (max-width: 991px) {
  .block-textresize a.text_resize_decrease {
    font-size: 1rem;
  }
}
#block-addtoanybuttons,
#block-addtoanybuttons-2,
#block-addtoanybuttons-3 {
  display: inline-block;
}
#block-addtoanybuttons img,
#block-addtoanybuttons-2 img,
#block-addtoanybuttons-3 img {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1420px) {
  h3.customer-tombstones__header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 1420px) {
  .customer-tombstones .customer-tombstones__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .customer-tombstones .customer-tombstones__container {
    -ms-grid-rows: auto;
    grid-auto-rows: auto;
  }
}
@media only screen and (max-width: 767px) {
  .customer-tombstones .customer-tombstones__container {
    -ms-grid-rows: auto;
    grid-auto-rows: auto;
  }
}
.cl-about {
  width: 100%;
  max-width: 920px;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .cl-about {
    position: unset;
  }
}
.cl-about ul li {
  padding-left: 30px;
  position: relative;
}
.cl-about ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.cl-about ol {
  width: 100%;
  counter-reset: item;
  margin-top: 30px;
  margin-left: 14px;
}
.cl-about ol li {
  padding-left: 15px;
  position: relative;
}
.cl-about ol li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
.cl-about .cl-about-benefits ul li {
  padding-left: 30px;
  position: relative;
}
.cl-about .cl-about-benefits ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.cl-about .cl-about-benefits ol {
  width: 100%;
  counter-reset: item;
  margin-top: 30px;
  margin-left: 14px;
}
.cl-about .cl-about-benefits ol li {
  padding-left: 15px;
  position: relative;
}
.cl-about .cl-about-benefits ol li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
.cl-about .cl-about__content-block {
}
.cl-about__header-container {
  margin-bottom: 20px;
}
.cl-about__header-container h2 {
  line-height: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .cl-about__header-container h2 {
    line-height: 1.5rem;
  }
}
.cl-about__header-container h3 {
  margin: 15px 0;
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 480px) {
  .cl-about__header-container h3 {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .cl-about__header-container h3 {
    margin: 10px 0;
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.cl-about__header-container h2 {
  text-align: left;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 480px) {
  .cl-about__header-container h2 {
    font-size: 1.5rem;
  }
}
.cl-about-benefits .cl-about__header-title {
  font-family: "Calibre Bold";
  font-size: 1.5rem;
  line-height: 1.875rem;
  margin-bottom: 20px;
}
.cl-about-benefits .benefits__content,
.cl-about-benefits .cl-about-benefits__text {
  color: #57575c;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Calibre Regular";
}
.cl-about-benefits .benefits__content h3,
.cl-about-benefits .benefits__content h4,
.cl-about-benefits .benefits__content h2,
.cl-about-benefits .cl-about-benefits__text h3,
.cl-about-benefits .cl-about-benefits__text h4,
.cl-about-benefits .cl-about-benefits__text h2 {
  color: #000;
}
.cl-about-benefits__list-container {
  margin: 20px auto;
  display: inline-block;
  width: 100%;
}
.cl-about-benefits__item-container {
  display: inline-flex;
  float: left;
  width: 50%;
  margin: 20px auto;
}
.cl-about-benefits__item-container:nth-child(2n + 1) {
  clear: both;
}
@media only screen and (max-width: 575px) {
  .cl-about-benefits__item-container {
    float: none;
    width: 100%;
    margin: 10px auto;
  }
}
.cl-about-benefits__item-container:nth-child(odd)
  .cl-about-benefits__item-img-container {
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  .cl-about-benefits__item-container:nth-child(odd)
    .cl-about-benefits__item-img-container {
    padding-left: 0;
  }
}
.cl-about-benefits__item-img-container {
  margin-left: 0;
  padding: 0 20px;
}
@media only screen and (max-width: 575px) {
  .cl-about-benefits__item-img-container {
    padding-left: 0;
  }
}
.cl-about-benefits__item-img-container img {
  width: 30px;
  min-width: 33px;
  min-height: 32px;
}
.cl-about .benefits__title {
  font-size: 1.5rem;
  font-family: "Calibre Bold";
  line-height: 1.875rem;
}
@media only screen and (max-width: 768px) {
  .cl-about .benefits__title {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
.cl-about__button-container {
  background-color: #185d56;
  width: 35%;
  text-align: center;
  margin: 40px 15px;
  margin-left: 0;
}
@media only screen and (max-width: 480px) {
  .cl-about__button-container {
    width: 100%;
  }
}
.cl-about__button-container:hover {
  background: #094943;
}
.cl-about__button-container a {
  color: #ffffff;
  text-decoration: none;
  line-height: 3.6875rem;
  text-align: center;
  font-family: "Calibre bold";
  font-size: 1.375rem;
}
@media only screen and (max-width: 1199px) {
  .text-share-print-links {
    float: left;
    width: 100%;
    position: relative;
    z-index: 1;
  }
}
.text-share-print-links .links-icon {
  float: right;
  width: auto;
  text-align: right;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .text-share-print-links .links-icon {
    margin-left: 0;
  }
}
.node--type-t2-category-listing .cl-about-benefits h2.cl-about__header-title,
.node--type-t3-product-service-detail-page
  .cl-about-benefits
  h2.cl-about__header-title {
  margin-bottom: 20px;
}
.node--type-t2-category-listing #cl-account-comparison-container,
.node--type-t3-product-service-detail-page #cl-account-comparison-container {
  border-top: solid 2px #ccd2de;
  margin-bottom: 85px;
  padding-top: 65px;
  margin-top: 90px;
}
@media only screen and (max-width: 991px) {
  .node--type-t2-category-listing #cl-account-comparison-container,
  .node--type-t3-product-service-detail-page #cl-account-comparison-container {
    margin-top: 50px;
    padding-top: 50px;
    margin-bottom: 50px;
  }
}
.node--type-t3-product-service-detail-page #cl-account-comparison-container {
  margin-bottom: 85px;
}
@media only screen and (max-width: 991px) {
  .node--type-t3-product-service-detail-page #cl-account-comparison-container {
    margin-bottom: 50px;
  }
}
.account-comparison__title,
#ps-rates-section__title {
  width: auto;
  display: inline-block;
  height: auto;
  padding: 15px 20px 0px;
  background: #edeeee;
  font-size: 3.75rem;
  font-family: "Calibre Semibold";
  margin-bottom: 20px;
  line-height: 3.75rem;
  margin-top: 32px;
  font-family: "Calibre Bold";
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .account-comparison__title,
  #ps-rates-section__title {
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 20px 0px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .account-comparison__title,
  #ps-rates-section__title {
    font-size: 1.875rem;
    line-height: 2.5rem;
    padding: 15px 15px 5px;
  }
}
@media only screen and (max-width: 768px) {
  .account-comparison__title,
  #ps-rates-section__title {
    font-size: 1.875rem;
    padding: 10px 10px 5px;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .account-comparison__title,
  #ps-rates-section__title {
    line-height: 1.875rem;
  }
}
@media only screen and (max-width: 991px) {
  .account-comparison__title,
  #ps-rates-section__title {
    margin-top: 0;
  }
}
.account-comparison .table-container,
#ps-rates-section .table-container {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .account-comparison .table-container,
  #ps-rates-section .table-container {
    overflow-x: scroll;
    overflow-y: visible;
    width: 100%;
    margin-left: 0px;
  }
}
.account-comparison table,
#ps-rates-section table {
  margin: 0 auto;
  width: 100%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #ccd2de;
}
.account-comparison table tbody tr:nth-child(even),
#ps-rates-section table tbody tr:nth-child(even) {
  background-color: #edeeee;
}
.account-comparison table tr td:first-child,
#ps-rates-section table tr td:first-child {
  position: relative;
}
.account-comparison table td,
#ps-rates-section table td {
  padding: 15px;
  vertical-align: top;
  width: 100px;
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .account-comparison table th,
  #ps-rates-section table th {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 480px) {
  .account-comparison table th,
  #ps-rates-section table th {
    font-size: 0.875rem;
  }
}
.account-comparison table tbody tr td:first-child,
#ps-rates-section table tbody tr td:first-child {
  font-family: "Calibre Bold";
}
.account-comparison thead tr,
#ps-rates-section thead tr {
  background-color: #57575c !important;
  height: 80px;
  color: #ffffff;
  font-family: "Calibre Bold";
  font-family: "Calibre semibold";
}
.account-comparison ul,
#ps-rates-section ul {
  font-family: "Calibre Regular";
  width: 100%;
}
.account-comparison ul li,
#ps-rates-section ul li {
  color: #57575c;
  font-size: 1rem;
  position: relative;
  text-align: left;
  margin-left: 30px;
}
.account-comparison ul li:before,
#ps-rates-section ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.account-comparison ul span,
#ps-rates-section ul span {
  color: #00205b;
  font-family: "Calibre Bold";
}
.account-comparison ol,
#ps-rates-section ol {
  font-family: "Calibre Regular";
  width: 100%;
  max-width: 675px;
  counter-reset: item;
}
.account-comparison ol li,
#ps-rates-section ol li {
  color: #57575c;
  font-size: 1rem;
  margin-left: 15px;
  position: relative;
  text-align: left;
  padding-bottom: 20px;
}
.account-comparison ol li::before,
#ps-rates-section ol li::before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 5px;
  height: 5px;
  display: inline-block;
  color: #00205b;
  margin-left: -20px;
  position: absolute;
  top: -1px;
}
.account-comparison ol span,
#ps-rates-section ol span {
  color: #00205b;
  font-family: "Calibre Bold";
}
.table-footnotes-container {
  margin-top: 25px;
  padding-left: 20px;
}
.cl-our-rates ul {
  font-family: "Calibre Regular";
  width: 100%;
  max-width: 675px;
}
.cl-our-rates ul li {
  color: #57575c;
  font-size: 1rem;
  margin-left: 30px;
  position: relative;
}
.cl-our-rates ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.cl-our-rates ul span {
  color: #00205b;
  font-family: "Calibre Bold";
}
.cl-our-rates ol {
  font-family: "Calibre Regular";
  width: 100%;
  max-width: 675px;
  counter-reset: item;
}
.cl-our-rates ol li {
  color: #57575c;
  font-size: 1rem;
  margin-left: 15px;
  position: relative;
}
.cl-our-rates ol li::before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 5px;
  height: 5px;
  display: inline-block;
  color: #00205b;
  margin-left: -15px;
  position: absolute;
  top: -1px;
}
.cl-our-rates ol span {
  color: #00205b;
  font-family: "Calibre Bold";
}
.promotion-banner-back {
  background: -moz-linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(237, 238, 238) 50%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, rgb(255, 255, 255)),
    color-stop(50%, rgb(237, 238, 238))
  );
  background: -webkit-linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(237, 238, 238) 50%
  );
  background: -o-linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(237, 238, 238) 50%
  );
  background: -ms-linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(237, 238, 238) 50%
  );
  background: linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(237, 238, 238) 50%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF",endColorstr="#EDEEEE",GradientType=0);
}
#cl__products-services {
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  #cl__products-services {
    padding-top: 50px;
  }
}
.user-logged-in .t3-sections-block .products-services__tile:nth-child(3),
.user-logged-in .t3-sections-block .products-services__tile:nth-child(6) {
  padding-right: 14px;
  padding-left: 0;
  margin-top: 20px;
}
@media only screen and (max-width: 480px) {
  .user-logged-in .t3-sections-block .products-services__tile:nth-child(3),
  .user-logged-in .t3-sections-block .products-services__tile:nth-child(6) {
    padding: 0;
  }
}
.user-logged-in .t3-sections-block .products-services__tile:nth-child(4) {
  padding: 0 6px;
}
@media only screen and (max-width: 480px) {
  .user-logged-in .t3-sections-block .products-services__tile:nth-child(4) {
    padding: 20px 0 0 0;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .user-logged-in .t3-sections-block .products-services__tile:nth-child(6) {
    padding-left: 10px;
    padding-right: 0;
  }
}
.user-logged-in .t3-sections-block .products-services__tile:nth-child(5) {
  padding-left: 14px;
}
@media only screen and (max-width: 768px) {
  .user-logged-in .t3-sections-block .products-services__tile:nth-child(5) {
    padding-right: 10px;
    padding-left: 0;
  }
}
.products-services {
  display: block;
  background-color: #edeeee;
}
.products-services__title {
  font-size: 3.75rem;
  font-family: "Calibre Semibold";
  margin-bottom: 20px;
  line-height: 3.75rem;
}
@media only screen and (max-width: 767px) {
  .products-services__title {
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 20px 0px;
  }
}
.products-services__title span {
  display: block;
  background-color: #ccd2de;
  max-width: 550px;
  width: auto;
  height: 70px;
  padding: 10px;
  font-size: 3.75rem;
  font-family: "Calibre Semibold";
  margin-bottom: 20px;
  line-height: 3.75rem;
}
@media only screen and (max-width: 767px) {
  .products-services__title span {
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 20px 0px;
  }
}
.products-services__jumbo-tile-container {
  background-color: #edeeee;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-auto-rows: auto;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media only screen and (max-width: 991px) {
  .products-services__jumbo-tile-container {
    margin: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .products-services__jumbo-tile-container {
    margin: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.products-services__jumbo-tile-container .jumbo-tile__img-container {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}
@media only screen and (max-width: 768px) {
  .products-services__jumbo-tile-container .jumbo-tile__img-container {
    width: 381px;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .products-services__jumbo-tile-container .jumbo-tile__img-container {
    width: 100%;
  }
}
.products-services__jumbo-tile-container .jumbo-tile__img-container img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.products-services__jumbo-tile-container .jumbo-tile__details-block {
  -ms-grid-column: 2;
  -ms-grid-row: 1;
  background-color: #00205b;
  padding: 20px;
  position: relative;
  min-height: 194px;
}
.products-services__jumbo-tile-container .jumbo-tile__details-block p {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 2.25rem;
}
@media only screen and (max-width: 575px) {
  .products-services__jumbo-tile-container .jumbo-tile__details-block p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .products-services__jumbo-tile-container .jumbo-tile__details-block p {
    line-height: 1.875rem;
  }
}
@media only screen and (max-width: 575px) {
  .products-services__jumbo-tile-container .jumbo-tile__details-block {
    padding: 15px;
  }
}
.products-services__jumbo-tile-container .red-block {
  background-color: #d22630;
  width: 89px;
  height: 14px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .products-services__jumbo-tile-container .red-block {
    height: 8px;
    width: 50px;
    margin-bottom: 8px !important;
  }
}
.products-services__jumbo-tile-container .jumbo-tile__subheader-text {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 2.25rem;
  font-family: "Calibre Regular";
}
@media only screen and (max-width: 768px) {
  .products-services__jumbo-tile-container .jumbo-tile__subheader-text {
    font-size: 1rem;
    line-height: 1.3125rem;
  }
}
@media only screen and (max-width: 575px) {
  .products-services__jumbo-tile-container .jumbo-tile__subheader-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.products-services__jumbo-tile-container .jumbo-tile__subheader-text h2 {
  color: #ffffff;
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 33px;
}
@media only screen and (max-width: 768px) {
  .products-services__jumbo-tile-container .jumbo-tile__subheader-text h2 {
    line-height: 1.5625rem;
    margin-bottom: 13px;
  }
}
@media only screen and (max-width: 575px) {
  .products-services__jumbo-tile-container .jumbo-tile__subheader-text h2 {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .products-services__jumbo-tile-container .jumbo-tile__subheader-text h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
.products-services__jumbo-tile-container .jumbo-tile__subheader-text h2 strong {
  font-family: "Calibre Semibold";
}
.products-services__jumbo-tile-container .site-link-white {
  font-size: 1.375rem;
}
.products-services__jumbo-tile-container .site-link-white svg {
  vertical-align: middle;
}
@media only screen and (max-width: 575px) {
  .products-services__jumbo-tile-container .site-link-white {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .products-services__jumbo-tile-container .site-link-white {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .products-services__jumbo-tile-container .site-link-white {
    font-size: 1rem;
  }
}
.products-services__link-container {
  padding-top: 32px;
  bottom: 20px;
  position: absolute;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .products-services__link-container {
    padding-top: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .products-services__link-container {
    padding-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .products-services__link-container {
    position: relative;
    bottom: 0;
  }
}
.products-services__link-container a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
}
.products-services__link-container a:after {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/right-arrow-white.png);
  width: 30px;
  height: 27px;
  position: relative;
  display: inline-block;
  top: 5px;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.products-services__link-container img {
  width: 19px;
  height: 14px;
}
.products-services__tiles-container {
  background-color: #edeeee;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-auto-rows: auto;
  margin-top: 20px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .products-services__tiles-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .products-services__tiles-container {
    align-items: center;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }
}
.products-services__tile {
  margin: auto;
  width: 100%;
  -ms-grid-column: 1;
}
.products-services__tile:nth-child(1),
.products-services__tile:nth-child(4) {
  padding-right: 14px;
}
.products-services__tile:nth-child(2),
.products-services__tile:nth-child(5) {
  padding: 0 6px;
  -ms-grid-column: 2;
}
.products-services__tile:nth-child(3),
.products-services__tile:nth-child(6) {
  -ms-grid-column: 3;
  padding-left: 14px;
}
.products-services__tile:nth-child(1),
.products-services__tile:nth-child(2),
.products-services__tile:nth-child(3) {
  -ms-grid-row: 1;
}
.products-services__tile:nth-child(4),
.products-services__tile:nth-child(5),
.products-services__tile:nth-child(6) {
  margin-top: 20px;
  -ms-grid-row: 2;
}
@media only screen and (max-width: 991px) {
  .products-services__tile:nth-child(1),
  .products-services__tile:nth-child(3),
  .products-services__tile:nth-child(5) {
    padding-right: 10px;
    padding-left: 0;
  }
  .products-services__tile:nth-child(2),
  .products-services__tile:nth-child(4),
  .products-services__tile:nth-child(6) {
    padding-left: 10px;
    padding-right: 0;
  }
  .products-services__tile:nth-child(3),
  .products-services__tile:nth-child(4),
  .products-services__tile:nth-child(5),
  .products-services__tile:nth-child(6) {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .products-services__tile:nth-child(1) {
    padding: 0px;
  }
  .products-services__tile:nth-child(2),
  .products-services__tile:nth-child(3),
  .products-services__tile:nth-child(4),
  .products-services__tile:nth-child(5),
  .products-services__tile:nth-child(6) {
    padding: 20px 0 0 0;
    margin: 0 auto;
  }
}
.products-services__tile .tile__img-container img {
  width: 100%;
  height: 100vh;
  max-height: 298px;
  object-fit: cover;
  object-position: center;
}
.products-services__tile .tile__link-container {
  padding: 10px 5px 10px 20px;
  min-height: 86px;
}
.products-services__tile .tile__details-block {
  background-color: #ffffff;
  padding: 25px 20px 25px 20px;
  max-height: 200px;
  height: 100vh;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .products-services__tile .tile__details-block {
    max-height: 200px;
  }
}
.products-services__tile .tile__details-block .details__title {
  font-size: 2rem;
  font-family: "Calibre Bold";
  color: #00205b;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .products-services__tile .tile__details-block .details__title {
    font-size: 1.375rem;
    line-height: 1.875rem;
  }
}
@media only screen and (max-width: 480px) {
  .products-services__tile .tile__details-block .details__title {
    font-size: 1.375rem;
  }
}
.products-services__tile .tile__details-block .details__text {
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-family: "Calibre Regular";
  color: #57575c;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .products-services__tile .tile__details-block .details__text {
    font-size: 1rem;
  }
}
.products-services__tile .tile__link-container {
  background-color: #ffffff;
  padding: 10px 5px 25px 20px;
}
.products-services__tile .tile__link-container a {
  text-decoration: none;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
}
@media only screen and (max-width: 991px) {
  .products-services__tile .tile__link-container a {
    font-size: 1.125rem;
  }
}
.products-services__tile .tile__link-container a:hover {
  border-bottom: 2px solid #094943;
  color: #185d56;
}
.products-services__tile .tile__link-container a:focus {
  border: 1px solid #094943;
}
.cl-our-rates {
  padding-top: 100px;
  background-color: #ffffff;
}
@media only screen and (max-width: 575px) {
  .cl-our-rates {
    padding-top: 50px;
  }
}
.cl-our-rates__title {
  background-color: #edeeee;
  display: inline-block;
  height: 80px;
  padding: 20px;
  font-size: 3.75rem;
  font-family: "Calibre Semibold";
  margin-bottom: 20px;
  line-height: 3.75rem;
  font-family: "Calibre Bold";
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .cl-our-rates__title {
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 20px 0px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .cl-our-rates__title {
    font-size: 1.875rem;
    line-height: 2.5rem;
    padding: 15px 15px 5px;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .cl-our-rates__title {
    font-size: 1.875rem;
    padding: 10px 10px 5px;
    line-height: 2.5rem;
    height: auto;
  }
}
@media only screen and (max-width: 480px) {
  .cl-our-rates__title {
    line-height: 1.875rem;
  }
}
.cl-our-rates .table-container {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .cl-our-rates .table-container {
    overflow-x: scroll;
    overflow-y: visible;
    width: 100%;
    margin-left: 0px;
  }
}
.cl-our-rates table {
  margin: 0px auto;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #ccd2de;
}
.cl-our-rates table tbody tr:nth-child(even) {
  background-color: #edeeee;
}
.cl-our-rates table tr td:first-child {
  position: relative;
}
.cl-our-rates table tr:nth-child(2n) {
  background-color: #ffffff;
}
.cl-our-rates table tbody tr:nth-child(even) {
  background-color: #ffffff;
}
.cl-our-rates table tbody tr:nth-child(odd) {
  background-color: #edeeee;
}
.cl-our-rates table tbody tr:first-child {
  background: #a6a7a9;
}
.cl-our-rates table tbody tr:first-child td {
  font-family: "Calibre Bold";
}
.cl-our-rates table td {
  padding: 15px;
  vertical-align: top;
  width: 100px;
  font-size: 1rem;
}
.cl-our-rates .table-header {
  background-color: #57575c !important;
  height: 80px;
  color: #ffffff;
  font-family: "Calibre Bold";
}
.cl-our-rates .table-row tr td:first-child {
  position: relative;
}
.cl-our-rates .table-footnotes-container {
  margin-top: 25px;
  padding-left: 20px;
}
#cl__additional-promo-banner {
  background: -moz-linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(237, 238, 238) 50%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, rgb(255, 255, 255)),
    color-stop(50%, rgb(237, 238, 238))
  );
  background: -webkit-linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(237, 238, 238) 50%
  );
  background: -o-linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(237, 238, 238) 50%
  );
  background: -ms-linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(237, 238, 238) 50%
  );
  background: linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(237, 238, 238) 50%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF",endColorstr="#EDEEEE",GradientType=0);
}
@media only screen and (max-width: 768px) {
  #cl__additional-promo-banner .promotional-banner {
    height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #cl__additional-promo-banner .promotional-banner {
    padding: 0;
    height: 80px;
  }
}
.node--type-t2-category-listing .related-content {
  background-color: #edeeee;
  padding: 100px 0px;
  display: inline-block;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .node--type-t2-category-listing .related-content {
    padding: 50px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .node--type-t2-category-listing .related-content {
    padding: 50px 0px;
  }
}
.node--type-t2-category-listing .our-rates-section {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .node--type-t2-category-listing .our-rates-section {
    margin-bottom: 50px;
  }
}
.node--type-t2-category-listing .customer-tombstones {
  background-color: #edeeee;
  padding: 45px 0px 100px 0;
}
@media only screen and (max-width: 1199px) {
  .node--type-t2-category-listing .customer-tombstones {
    padding: 0px 0px 50px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .node--type-t2-category-listing .customer-tombstones {
    padding: 25px 0px 50px 0px;
  }
}
.cl-get-in-touch {
  background-color: #ffffff;
  padding-top: 95px;
  padding-bottom: 50px;
  display: inline-block;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch {
    padding-top: 40px;
  }
}
.cl-get-in-touch .flickity-prev-next-button {
  top: -23%;
}
.cl-get-in-touch .red-block {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch .red-block {
    margin-bottom: 10px;
  }
}
.cl-get-in-touch h3.cl-get-in-touch__header {
  margin-bottom: 40px;
  font-family: "Calibre bold";
  font-size: 2.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch h3.cl-get-in-touch__header {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .cl-get-in-touch h3.cl-get-in-touch__header {
    margin-top: 14px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch h3.cl-get-in-touch__header {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .cl-get-in-touch h3.cl-get-in-touch__header {
    max-width: 86% !important;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch {
    padding-bottom: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__header {
    line-height: 1.875rem;
    font-size: 1.25rem;
  }
}
.cl-get-in-touch__cards-container {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__cards-container {
    align-items: center;
    margin: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cl-get-in-touch__card {
  position: relative;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  width: 31.5%;
  margin-right: 2%;
}
.cl-get-in-touch__card:nth-child(1) {
  padding-right: 14px;
  padding-left: 6px;
}
.cl-get-in-touch__card:nth-child(2) {
  padding: 0 6px;
}
.cl-get-in-touch__card:nth-child(3) {
  padding-left: 14px;
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__card:nth-child(1),
  .cl-get-in-touch__card:nth-child(2),
  .cl-get-in-touch__card:nth-child(3) {
    padding: 0;
  }
}
.cl-get-in-touch__card-img-container {
  height: 303px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .cl-get-in-touch__card-img-container {
    height: 234px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch__card-img-container {
    height: 175px;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__card-img-container {
    height: auto;
  }
}
.cl-get-in-touch__card-img-container img {
  width: 100%;
  height: auto;
}
.cl-get-in-touch__card-details-container {
  float: left;
  width: 100%;
  position: relative;
  top: -10%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch__card-details-container {
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__card-details-container {
    top: -2%;
    padding: 0 2px;
  }
}
@media only screen and (max-width: 480px) {
  .cl-get-in-touch__card-details-container {
    margin-top: -8%;
  }
}
.cl-get-in-touch__card-details {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  width: 85%;
  margin: auto;
  padding: 20px;
  display: block;
  min-height: 268px;
  max-height: 268px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .cl-get-in-touch__card-details {
    min-height: 325px;
    max-height: 325px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch__card-details {
    width: 100%;
    padding: 15px 20px;
    font-size: 0.875rem;
    min-height: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__card-details {
    width: 90%;
    padding: 10px;
    min-height: unset;
    max-height: unset;
    display: table;
  }
}
.cl-get-in-touch__card-details:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 480px) {
  .cl-get-in-touch__card-details {
    padding: 20px 15px;
  }
}
.cl-get-in-touch__name {
  color: #00205b;
  font-size: 1.5rem;
  font-family: "Calibre Bold";
  line-height: 1.875rem;
}
@media only screen and (max-width: 991px) {
  .cl-get-in-touch__name {
    font-size: 1.125rem;
  }
}
.cl-get-in-touch__title {
  color: #00205b;
  font-size: 1.5rem;
  font-family: "Calibre Regular";
  line-height: 1.875rem;
}
@media only screen and (max-width: 991px) {
  .cl-get-in-touch__title {
    font-size: 1.125rem;
  }
}
.cl-get-in-touch__icon {
  padding-right: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch__icon {
    padding-right: 5px;
  }
}
.cl-get-in-touch__days {
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch__days {
    font-size: 1rem;
  }
}
.cl-get-in-touch__email-block {
  float: left;
  width: 100%;
  margin: 10px 0;
}
.cl-get-in-touch__email-block span {
  float: left;
  width: 6%;
  margin-right: 4%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch__email-block span {
    width: 10%;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__email-block span {
    width: 4%;
  }
}
@media only screen and (max-width: 480px) {
  .cl-get-in-touch__email-block span {
    width: 10%;
  }
}
.cl-get-in-touch__email-block span img {
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__email-block p {
    font-size: 1rem;
    max-width: 90%;
    float: right;
  }
}
@media only screen and (max-width: 768px) {
  .cl-get-in-touch__email-block p {
    font-size: 1rem;
    max-width: 80%;
    float: right;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .cl-get-in-touch__email-block p {
    font-size: 1rem;
    max-width: 95%;
    float: none;
  }
}
@media only screen and (max-width: 480px) {
  .cl-get-in-touch__email-block p {
    max-width: 86%;
    float: left;
    font-size: 1rem;
  }
}
.cl-get-in-touch__email-block p.margin-left {
  margin-left: 0 !important;
}
.cl-get-in-touch__email-block a {
  float: left;
  width: 90%;
  word-wrap: break-word;
  white-space: -webkit-pre-wrap;
  word-break: break-all;
  color: #00205b;
}
.cl-get-in-touch__email-block a:hover {
  color: #00205b !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch__email-block a {
    width: 86%;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__email-block a {
    width: 92%;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .cl-get-in-touch__email-block a {
    width: 86%;
  }
}
.cl-get-in-touch__availability,
.cl-get-in-touch__contact,
.cl-get-in-touch__address {
  float: left;
  width: 100%;
  margin: 10px 0;
}
.cl-get-in-touch__availability span:first-child,
.cl-get-in-touch__contact span:first-child,
.cl-get-in-touch__address span:first-child {
  float: left;
  width: 6%;
  margin-right: 4%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch__availability span:first-child,
  .cl-get-in-touch__contact span:first-child,
  .cl-get-in-touch__address span:first-child {
    width: 10%;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__availability span:first-child,
  .cl-get-in-touch__contact span:first-child,
  .cl-get-in-touch__address span:first-child {
    width: 4%;
  }
}
@media only screen and (max-width: 480px) {
  .cl-get-in-touch__availability span:first-child,
  .cl-get-in-touch__contact span:first-child,
  .cl-get-in-touch__address span:first-child {
    width: 10%;
  }
}
.cl-get-in-touch__availability span:first-child img,
.cl-get-in-touch__contact span:first-child img,
.cl-get-in-touch__address span:first-child img {
  padding-right: 0;
}
.cl-get-in-touch__availability span:last-child,
.cl-get-in-touch__contact span:last-child,
.cl-get-in-touch__address span:last-child {
  float: left;
  width: 90%;
}
@media only screen and (max-width: 991px) {
  .cl-get-in-touch__availability span:last-child,
  .cl-get-in-touch__contact span:last-child,
  .cl-get-in-touch__address span:last-child {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch__availability span:last-child,
  .cl-get-in-touch__contact span:last-child,
  .cl-get-in-touch__address span:last-child {
    width: 86%;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__availability span:last-child,
  .cl-get-in-touch__contact span:last-child,
  .cl-get-in-touch__address span:last-child {
    width: 92%;
  }
}
@media only screen and (max-width: 480px) {
  .cl-get-in-touch__availability span:last-child,
  .cl-get-in-touch__contact span:last-child,
  .cl-get-in-touch__address span:last-child {
    width: 86%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch__availability span:last-child p,
  .cl-get-in-touch__contact span:last-child p,
  .cl-get-in-touch__address span:last-child p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__availability span:last-child p,
  .cl-get-in-touch__contact span:last-child p,
  .cl-get-in-touch__address span:last-child p {
    font-size: 1rem;
  }
}
.cl-get-in-touch__availability a,
.cl-get-in-touch__contact a,
.cl-get-in-touch__address a {
  float: left;
  width: 90%;
  word-wrap: break-word;
  white-space: -webkit-pre-wrap;
  word-break: break-all;
  color: #00205b;
}
.cl-get-in-touch__availability a:hover,
.cl-get-in-touch__contact a:hover,
.cl-get-in-touch__address a:hover {
  color: #00205b !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-get-in-touch__availability a,
  .cl-get-in-touch__contact a,
  .cl-get-in-touch__address a {
    width: 86%;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__availability a,
  .cl-get-in-touch__contact a,
  .cl-get-in-touch__address a {
    width: 92%;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .cl-get-in-touch__availability a,
  .cl-get-in-touch__contact a,
  .cl-get-in-touch__address a {
    width: 86%;
  }
}
.related-content__tiles-container .flickity-viewport .flickity-slider {
  margin-top: 25px;
}
.node--type-t3-product-service-detail-page
  .cl-get-in-touch__card-img-container.no-specialist-image,
.node--type-t2-category-listing
  .cl-get-in-touch__card-img-container.no-specialist-image {
  display: none;
}
.node--type-t3-product-service-detail-page
  .cl-get-in-touch__card-details-container.no-specialist-image,
.node--type-t2-category-listing
  .cl-get-in-touch__card-details-container.no-specialist-image {
  top: 0;
}
.node--type-t3-product-service-detail-page
  .cl-get-in-touch__card-details-container.no-specialist-image
  .cl-get-in-touch__card-details,
.node--type-t2-category-listing
  .cl-get-in-touch__card-details-container.no-specialist-image
  .cl-get-in-touch__card-details {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .node--type-t3-product-service-detail-page
    .cl-get-in-touch__card-details-container.no-specialist-image,
  .node--type-t2-category-listing
    .cl-get-in-touch__card-details-container.no-specialist-image {
    margin-top: 5px;
    min-height: 250px;
  }
}
@media only screen and (max-width: 480px) {
  .node--type-t3-product-service-detail-page
    .cl-get-in-touch__card-details-container.no-specialist-image,
  .node--type-t2-category-listing
    .cl-get-in-touch__card-details-container.no-specialist-image {
    margin-top: 5px;
    min-height: 250px;
  }
}
.cl-customer-service {
  background-size: cover;
  height: 100%;
  background-repeat: no-repeat;
  width: 100%;
  padding: 50px 0px;
  position: relative;
  min-height: 390px;
  display: inline-block;
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .cl-customer-service {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .cl-customer-service {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cl-customer-service {
    background-position: 54%;
  }
}
@media only screen and (max-width: 767px) {
  .cl-customer-service {
    padding: 112px 0px 30px 0;
    background-size: 100% 168px;
  }
}
.cl-customer-service__header {
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 991px) {
  .cl-customer-service__header {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .cl-customer-service__content-block {
    padding: 0;
  }
}
.cl-customer-service__block {
  background-color: #ffffff;
  max-width: 682px;
  height: 100%;
  width: 100%;
  padding: 40px;
}
@media only screen and (max-width: 991px) {
  .cl-customer-service__block {
    margin: 25px 0 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .cl-customer-service__block {
    padding: 20px;
    max-width: 384px;
  }
}
@media under-tablet {
  .cl-customer-service__block {
    margin: 0 0 0 20px;
  }
}
@media only screen and (max-width: 575px) {
  .cl-customer-service__block {
    margin: 65px 0 0px 0px;
    max-width: 100%;
  }
}
.cl-customer-service__text,
.cl-customer-service p {
  color: #57575c;
  font-size: 1.375rem;
}
@media only screen and (max-width: 991px) {
  .cl-customer-service__text,
  .cl-customer-service p {
    font-size: 1.125rem;
  }
}
.cl-customer-service__link-container:hover {
  background: #094943;
}
.cl-customer-service__link-container {
  background-color: #185d56;
  width: auto;
  text-align: center;
  margin: 30px 0 0;
  display: inline-block;
  padding: 0 20px;
  padding-top: 5px;
}
.cl-customer-service__link-container a {
  color: #ffffff;
  text-decoration: none;
  line-height: 3.625rem;
  text-align: center;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
}
@media only screen and (max-width: 768px) {
  .cl-customer-service__link-container a {
    font-size: 1.125rem;
    line-height: 3.125rem;
  }
}
.cl-customer-service__mail-container {
  width: 100%;
  color: #57575c;
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-family: "Calibre Regular";
  padding-top: 30px;
  display: inline-block;
}
.cl-customer-service__mail-container p {
  color: #57575c;
  font-size: 1.125rem;
}
.cl-customer-service__mail-container a {
  color: #185d56;
  font-family: "Calibre Regular";
  font-size: 1rem;
  width: 100%;
  clear: both;
  float: left;
  padding: 5px 0 0 30px;
  position: relative;
}
.cl-customer-service__mail-container a:before {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/specialist_icon_1.png)
    no-repeat;
  width: 30px;
  height: 26px;
  position: absolute;
  top: 8px;
  left: 0px;
}
#block-ourrates {
  margin-bottom: 62px;
}
.cl-get-in-touch__cards-container:after,
.customer-tombstones__container:after {
  content: "flickity";
  display: none;
}
@media only screen and (max-width: 767px) {
  .cl-get-in-touch__cards-container:after,
  .customer-tombstones__container:after {
    content: "flickity";
    display: none;
  }
}
.node--type-t2-category-listing
  .category-listing-section
  .cl-about-benefits__text
  p,
.node--type-t2-category-listing
  .category-listing-section
  .account-comparison__content-block
  p {
  padding-bottom: 10px;
  line-height: 1.875rem;
}
.node-121 .tile__link-container {
  min-height: 85px;
}
.lang-es .cl-header__banner-title-highlight {
  font-size: 3.625rem !important;
}
@media only screen and (max-width: 768px) {
  .lang-es .cl-header__banner-title-highlight {
    font-size: 1.875rem !important;
    line-height: 1.25rem;
  }
}
@media only screen and (max-width: 480px) {
  .lang-es .cl-header__banner-title-highlight {
    font-size: 1.5rem !important;
    line-height: 1.5rem;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .lang-es .cl-header__banner-title-highlight {
    font-size: 1.875rem !important;
    line-height: 1.25rem;
  }
}
.lang-es #block-contactusblock .cl-get-in-touch__card-details {
  min-height: 230px;
}
.lang-es
  #block-contactusblock
  .cl-get-in-touch__card-details
  .cl-get-in-touch__email-block
  p {
  display: table;
}
.node-3051 .header__top-bar {
  display: none;
}
.underlines-0 {
  text-decoration: none;
}
select.states-action-select {
  border: 1px solid #d9d9d9;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  padding: 16.5px 20px;
  margin-bottom: 25px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  background: white;
  font-family: "Calibre Medium";
  color: #57575c;
  font-size: 1.3125rem;
  position: relative;
  width: 100%;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAEBgAABAYBmSDe8AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAHGSURBVGiB7djNShtRGIfx500oFETcF7pMZ2XSuRYFKxUKBcGIi3onLaV+dNUPpJXSa9FpVpqbcB/176axkzCjmcw5jtD3WU3OZDLvj0MCE/A8z/M8z/O8e7L8i+xF+srQZ7ALid3e8OR3U4MVlSXpqkkfgAWMze7Z6a/xudb4QGAt9BFYBD030/Gf5OXrJgYuapD0Nkz6CTwDlhD7ym3ELcRAU9e2EV8fA2aQ9DYk+wK0/61qlJ+5NXmJdoCr3ELjmGIEV1JrJ/++CcjyeXYs2Rowyi23Ed8HnXQr2rQlZUnal+wbk4iRZGvT31+joKyTrpjpB/AktyyTbS8PTw7Cj1wwQ5L2Tfo0NeNIsvWiH6FCCDSLqYqAOyDQDGYeBNwDgYfFDDrplkx7VETADBB4GEwdBMwIgbiYugioAIE4mBAIqAiBsJhQCJgDAuUYpH53mB3O8hkhETAnBOphQiOgBgTmw8RAQE0IVMPEQkAACMyGiYmAQBAoxVwL3pr0FLN9IiEgIARKnx0u/95n4nkC40337PQo1L2DQqB0Z/IF3YlxwSFwJyYKAiJBoBATDQERIXCLeQ8g2bvH9veS53me53me9591A6zTcn4xC5BSAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: center right 25px;
  background-size: 25px 25px;
}
@media only screen and (max-width: 480px) {
  select.states-action-select {
    font-size: 0.875rem;
    padding: 14px 10px;
  }
}
@media only screen and (max-width: 768px) {
  select.states-action-select {
    font-size: 0.875rem;
    padding: 14px 10px;
  }
}
@media only screen and (min-width: 768px) {
  select.states-action-select {
    width: 35%;
  }
}
select.states-action-select:focus {
  border: 1px solid #00205b;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.cl-about__button-container.states-action {
  background-color: #57575c;
  pointer-events: none;
}
.cl-about__button-container.states-action:hover {
  background-color: #57575c;
}
.cl-about__button-container.states-action.btn-active {
  background-color: #185d56;
  pointer-events: visible;
}
.cl-about__button-container.states-action.btn-active:hover {
  background-color: #094943;
}
.cl-about__button-container.states-action a {
  display: block;
}
.node--type-t3-product-service-detail-page
  .ps-benefits__text-container
  .ps-about__benefits-text
  h3,
.node--type-t3-product-service-detail-page
  .ps-benefits__text-container
  .ps-about__benefits-text
  h3
  strong,
.node--type-t3-product-service-detail-page
  #ps-benefits__additional-benefits-section
  .ps-about__benefits-text
  h3,
.node--type-t3-product-service-detail-page
  #ps-benefits__additional-benefits-section
  .ps-about__benefits-text
  h3
  strong {
  color: #000 !important;
}
.node--type-t3-product-service-detail-page
  .ps-benefits__text-container
  .ps-about__benefits-text
  p,
.node--type-t3-product-service-detail-page
  .ps-benefits__text-container
  .ps-about__benefits-text
  ul,
.node--type-t3-product-service-detail-page
  #ps-benefits__additional-benefits-section
  .ps-about__benefits-text
  p,
.node--type-t3-product-service-detail-page
  #ps-benefits__additional-benefits-section
  .ps-about__benefits-text
  ul {
  padding-bottom: 10px;
}
figure {
  display: table !important;
}
figcaption {
  display: table-caption;
  caption-side: bottom;
  max-width: none;
}
figure figcaption {
  margin-top: 15px;
  text-align: center;
  font-family: "Calibre Semibold";
}
img[data-align="center"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.ps-banner {
  position: relative;
  height: 342px;
  background: #ccd2de;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .ps-banner {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .ps-banner {
    display: block;
    overflow: visible;
  }
}
@media only screen and (max-width: 767px) {
  .ps-banner {
    background: white;
    height: 240px;
    margin-bottom: 40px;
    overflow: visible;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ps-banner > div {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .ps-banner > div {
    padding: 0;
  }
}
.ps-banner__breadcrumb {
  z-index: 91;
}
@media only screen and (max-width: 768px) {
  .ps-banner__breadcrumb {
    position: relative;
    top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
  }
}
.ps-banner__banner-title {
  z-index: 9;
  height: 100%;
  padding: 0px 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .ps-banner__banner-title {
    padding: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .ps-banner__banner-title {
    padding: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-banner__banner-title {
    margin-top: 200px;
  }
}
.ps-banner__banner-title p,
.ps-banner__banner-title h1 {
  font-family: "Calibre Bold";
  font-size: 3.75rem;
  background: #d22630;
  color: white;
  padding: 18px 17px 0px 17px;
  width: auto;
  display: table;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  line-height: 3.75rem;
  word-wrap: break-word;
  white-space: -webkit-pre-wrap;
  word-break: break-all;
}
@media only screen and (max-width: 991px) {
  .ps-banner__banner-title p,
  .ps-banner__banner-title h1 {
    font-size: 1.875rem;
    line-height: 2.5rem;
    padding: 10px 8px 0 8px;
  }
}
@media only screen and (max-width: 480px) {
  .ps-banner__banner-title p,
  .ps-banner__banner-title h1 {
    font-size: 1.75rem;
    line-height: 2.1875rem !important;
    padding: 10px 8px 0 8px;
    word-break: unset !important;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ps-banner__banner-title p,
  .ps-banner__banner-title h1 {
    padding: 25px 17px 0px 17px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-banner__banner-title p,
  .ps-banner__banner-title h1 {
    display: inline;
    position: relative;
    top: 100%;
    line-height: 2.5rem;
    transform: none;
    bottom: 20px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
}
.ps-banner __content-block {
  position: relative;
  display: table;
  height: 350px;
  background: #ccd2de;
}
.ps-banner__image-container {
  width: auto;
  height: auto;
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 20%;
  right: 0;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .ps-banner__image-container {
    left: 0;
    top: 30px;
  }
}
.ps-banner__image {
  width: auto;
  height: 100%;
  position: absolute;
  object-fit: cover;
  right: 0;
}
@media only screen and (min-width: 1401px) {
  .ps-banner__image {
    width: 80%;
    margin-top: 50px;
    object-fit: cover;
  }
}
@media only screen and (max-width: 1366px) {
  .ps-banner__image {
    width: 90%;
    margin-top: 50px;
    object-fit: cover;
  }
}
@media only screen and (min-width: 1600px) {
  .ps-banner__image {
    width: 74%;
    margin-top: 50px;
    object-fit: cover;
  }
}
@media only screen and (min-width: 1900px) {
  .ps-banner__image {
    width: 65%;
    margin-top: 50px;
    object-fit: cover;
    object-position: 100% 150%;
  }
}
@media only screen and (max-width: 991px) {
  .ps-banner__image {
    width: 75%;
    object-fit: cover;
  }
}
@media only screen and (max-width: 768px) {
  .ps-banner__image {
    width: 90%;
    object-fit: cover;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-banner__image {
    width: 100%;
    position: relative;
    left: 0;
    top: -10px;
  }
}
.ps-header {
  background-color: #e0e4eb;
  position: relative;
  display: inline-block;
}
.ps-header__nav-container {
  width: auto;
  margin-left: 0;
  position: absolute;
  padding: 20px 15px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .ps-header__nav-container {
    padding: 20px 0px 0;
    width: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .ps-header__nav-container {
    padding: 20px 0px 0;
    width: auto;
  }
}
@media only screen and (max-width: 991px) {
  .ps-header__nav-container {
    padding: 20px 15px 0;
  }
}
.ps-header__nav-container .mobile-back {
  display: none;
}
@media only screen and (max-width: 767px) {
  .ps-header__nav-container .mobile-back {
    display: block;
  }
  .ps-header__nav-container .mobile-back a {
    font-size: 1rem;
  }
}
.ps-header__nav-container .otherpage-mobile-login-box {
  display: none;
}
@media only screen and (max-width: 991px) {
  .ps-header__nav-container .otherpage-mobile-login-box {
    display: block;
  }
}
.ps-header__nav-container
  .otherpage-mobile-login-box
  .home-banner__content___login-box {
  top: 0;
}
@media only screen and (max-width: 767px) {
  .ps-header__nav-container #block-nationalprimepay-breadcrumbs {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .ps-header__nav-container {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .ps-header__nav-container {
    width: 100%;
    position: relative;
    padding: 7px 15px 15px;
  }
}
.ps-header__nav-container ol {
  display: flex;
}
.ps-header__nav-container ol li {
  margin-right: 5px;
  font-size: 1rem;
}
@media only screen and (max-width: 991px) {
  .ps-header__nav-container ol li {
    font-size: 0.75rem;
  }
}
.ps-header__nav-container ol li a {
  color: #00205b !important;
  text-decoration: underline;
  font-size: 1.125rem;
}
@media only screen and (max-width: 991px) {
  .ps-header__nav-container ol li a {
    font-size: 0.75rem;
  }
}
.ps-header__nav-container ol li:after {
  content: " | ";
}
@media only screen and (max-width: 991px) {
  .ps-header__nav-container ol li:last-of-type {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .ps-header__nav-container ol li:nth-last-child(2):after {
    content: " ";
  }
}
.ps-header__nav-container ol li:last-of-type:after {
  content: "  ";
}
.ps-header__nav-container a {
  color: #00205b !important;
  text-decoration: underline;
}
.ps-header__nav-container p {
  display: inline !important;
}
.ps-header__banner-container {
  background-color: #d22630;
  color: #ffffff;
  width: 50%;
  position: absolute;
  top: 50%;
  max-height: 77px;
  height: 100%;
  margin-left: 15px;
  padding: 25px 20px 15px 20px;
}
.ps-header__banner-title {
  font-size: 3.75rem;
  font-family: "Calibre Bold";
}
.ps-header__img {
  background: url(../../../../themes/nationalprimepay/images/ps_header_img.html);
  background-size: cover;
  height: 400px;
  width: 70%;
  float: right;
}
.ps-header__img::after {
  display: block;
  clear: both;
}
table td,
table th {
  padding: 15px;
  vertical-align: middle;
}
.ps-about {
  width: 100%;
  max-width: 920px;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .ps-about {
    margin-top: 20px;
  }
}
.ps-about ul li {
  padding-left: 30px;
  position: relative;
  padding-bottom: 20px;
}
.ps-about ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.ps-about ol {
  width: 100%;
  counter-reset: item;
  margin-top: 15px;
  margin-left: 14px;
}
.ps-about ol li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 15px;
}
.ps-about ol li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .ps-about {
    padding-top: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ps-about {
    padding-top: 10px;
  }
}
.ps-about__header-title {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .ps-about__header-title {
    font-size: 1.5rem;
  }
}
.ps-about__subtext {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .ps-about__subtext {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .ps-about__content-block {
    margin-top: 15px;
  }
  .ps-about__content-block .ps-about-benefits__text img {
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .ps-about__content-block {
    margin-top: 15px;
  }
}
.ps-about__header-container {
  margin-bottom: 30px;
}
.ps-about__header-container h2,
.ps-about__header-container h4 {
  text-align: left;
  font-family: "Calibre Bold";
}
.ps-about__header-container h4 {
  font-size: 1.375rem;
}
@media only screen and (max-width: 767px) {
  .ps-about__header-container h4 {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1199px) {
  .ps-about .text-share-print-links {
    float: left;
    width: 100%;
  }
}
.ps-about .text-share-print-links .links-icon {
  float: right;
  width: auto;
  text-align: right;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .ps-about .text-share-print-links .links-icon {
    margin-left: 0;
  }
}
.ps-about-benefits p {
  color: #57575c;
  font-size: 1.125rem;
}
.ps-about__button-container {
  background-color: #185d56;
  max-width: 35%;
  text-align: center;
  margin: 20px 15px 50px 0;
}
@media only screen and (max-width: 767px) {
  .ps-about__button-container {
    width: 155px;
  }
}
@media only screen and (max-width: 480px) {
  .ps-about__button-container {
    width: 100%;
    max-width: 100%;
  }
}
.ps-about__button-container:hover {
  background: #094943;
}
.ps-about__button-container a {
  color: #ffffff;
  text-decoration: none;
  line-height: 3.6875rem;
  text-align: center;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
}
@media only screen and (max-width: 767px) {
  .ps-about__button-container a {
    font-size: 1.125rem;
    line-height: 2.5rem;
  }
}
.ps-benefits ul li {
  padding-left: 30px;
  position: relative;
}
.ps-benefits ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.ps-benefits ol {
  width: 100%;
  counter-reset: item;
  margin-top: 15px;
  margin-left: 14px;
}
.ps-benefits ol li {
  padding-left: 15px;
  position: relative;
}
.ps-benefits ol li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
.ps-benefits__container-block {
  margin: 25px auto 0;
  display: inline-block;
  width: 100%;
}
.ps-benefits__title {
  font-size: 1.5rem;
  font-family: "Calibre Bold";
  line-height: 1.875rem;
}
@media only screen and (max-width: 768px) {
  .ps-benefits__title {
    font-size: 1.25rem;
    line-height: 1.375rem;
  }
}
.ps-benefits__content {
  color: #57575c;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Calibre Regular";
}
.ps-benefits__text-container {
  color: #57575c;
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 25px auto;
}
.ps-benefits__text-container ul li {
  padding-left: 30px;
  position: relative;
}
.ps-benefits__text-container ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.ps-benefits__text-container ol {
  width: 100%;
  counter-reset: item;
  margin-top: 15px;
  margin-left: 14px;
}
.ps-benefits__text-container ol li {
  padding-left: 15px;
  position: relative;
}
.ps-benefits__text-container ol li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
@media only screen and (max-width: 991px) {
  .ps-benefits__text-container {
    max-width: 738px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-benefits__text-container {
    max-width: 94%;
  }
}
.ps-benefits__image-header {
  height: auto;
  margin-bottom: 20px;
  width: 100%;
}
.ps-benefits__image-header img {
  width: 100%;
}
.ps-benefits__header {
  border-bottom: solid 1px #ccd2de;
  padding: 20px 0 10px 0;
}
.ps-benefits__header h2 {
  font-size: 2.5rem;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 767px) {
  .ps-benefits__header h2 {
    font-size: 1.25rem;
  }
}
.ps-benefits__list-container {
  max-width: 920px;
}
.ps-benefits__list-container ul li {
  padding-left: 30px;
  position: relative;
}
.ps-benefits__list-container ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.ps-benefits__list-container ol {
  width: 100%;
  counter-reset: item;
  margin-top: 15px;
  margin-left: 14px;
}
.ps-benefits__list-container ol li {
  padding-left: 15px;
  position: relative;
}
.ps-benefits__list-container ol li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
@media only screen and (max-width: 991px) {
  .ps-benefits__list-container {
    max-width: 738px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-benefits__list-container {
    max-width: 94%;
  }
}
.ps-benefits__item-container {
  display: inline-flex;
  float: left;
  width: 50%;
  height: 109px;
  margin: 20px auto;
}
.ps-benefits__item-container::after {
  clear: both;
  display: inline-block;
}
.ps-benefits__item-container:nth-child(odd)
  .cl-about-benefits__item-img-container {
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .ps-benefits__item-container {
    float: none;
    width: 100%;
    margin: 10px auto 20px auto;
    height: auto;
  }
}
.ps-benefits__item-img-container {
  margin-left: 0;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .ps-benefits__item-img-container {
    padding-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  .ps-benefits__item-img-container {
    padding-left: 0;
  }
}
.ps-benefits__item-img-container img {
  width: 30px;
  min-width: 33px;
  min-height: 32px;
}
.ps-benefits__additional-benefits {
  max-width: 920px;
}
@media only screen and (max-width: 991px) {
  .ps-benefits__additional-benefits {
    max-width: 738px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-benefits__additional-benefits {
    max-width: 94%;
  }
}
.ps-benefits__additional-benefits .additional-benefits__header {
  font-size: 1.875rem;
  font-family: "Calibre Bold";
  margin-bottom: 10px;
  margin-top: 35px;
  padding-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .ps-benefits__additional-benefits .additional-benefits__header {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .ps-benefits__additional-benefits .additional-benefits__header {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .ps-benefits__additional-benefits .additional-benefits__header {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
.ps-benefits__additional-benefits ul li {
  padding-left: 30px;
  position: relative;
  padding-bottom: 20px;
}
.ps-benefits__additional-benefits ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.ps-benefits__additional-benefits ol {
  width: 100%;
  counter-reset: item;
  margin-top: 30px;
  margin-left: 14px;
}
.ps-benefits__additional-benefits ol li {
  padding-left: 15px;
  position: relative;
}
.ps-benefits__additional-benefits ol li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
.ps-benefits__additional-benefits .additional-benefits__list {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .ps-benefits__additional-benefits .additional-benefits__list li {
    padding-left: 18px;
    text-indent: -9px;
  }
}
.ps-benefits__additional-benefits .additional-benefits__list li::before {
  content: "•";
  color: #d22630;
  font-weight: bold;
  display: inline-block;
  width: 10px;
  margin-left: 0;
}
.ps-benefits__additional-benefits .ps-about__benefits-text {
  color: #57575c;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Calibre Regular";
}
.ps-benefits__additional-benefits .ps-about__benefits-text a:hover {
  font-weight: bold;
}
.ps-rates {
  padding-top: 100px;
  background-color: #ffffff;
}
@media only screen and (max-width: 991px) {
  .ps-rates {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-rates {
    padding-top: 50px;
  }
}
.ps-rates__title {
  background-color: #edeeee;
  display: inline-block;
  height: 80px;
  padding: 20px;
  font-size: 3.75rem;
  font-family: "Calibre Semibold";
  margin-bottom: 20px;
  line-height: 3.75rem;
  font-family: "Calibre Bold";
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .ps-rates__title {
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 20px 0px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  .ps-rates__title {
    font-size: 1.875rem;
    line-height: 2.5rem;
    padding: 15px 15px 5px;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .ps-rates__title {
    font-size: 1.875rem;
    padding: 10px 10px 5px;
    line-height: 2.5rem;
    height: auto;
  }
}
@media only screen and (max-width: 480px) {
  .ps-rates__title {
    line-height: 1.875rem;
  }
}
.ps-rates .table-container {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .ps-rates .table-container {
    overflow-x: scroll;
    overflow-y: visible;
    width: 100%;
    margin-left: 0px;
  }
}
.ps-rates table {
}
.ps-rates table tbody tr:nth-child(even) {
  background-color: #edeeee;
}
.ps-rates table tr td:first-child {
  position: relative;
}
.ps-rates table td {
  padding: 15px;
  vertical-align: top;
  width: 100px;
  font-size: 1rem;
}
.ps-rates thead tr {
  background-color: #57575c !important;
  height: 80px;
  color: #ffffff;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 768px) {
  .ps-rates thead tr {
    font-size: 0.9375rem;
    line-height: 1.375rem;
  }
}
@media only screen and (max-width: 480px) {
  .ps-rates thead tr {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.ps-rates .table-row tr td:first-child {
  position: relative;
}
.ps-rates .table-footnotes-container {
  padding-left: 5px;
  padding-right: 5px;
  margin: 25px 15px 0;
}
.ps-rates ul {
  font-family: "Calibre Regular";
  width: 100%;
  max-width: 675px;
}
.ps-rates ul li {
  color: #57575c;
  font-size: 1rem;
  margin-left: 30px;
  position: relative;
  text-align: left;
}
.ps-rates ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.ps-rates ul span {
  color: #00205b;
  font-family: "Calibre Bold";
}
.ps-rates ol {
  font-family: "Calibre Regular";
  width: 100%;
  max-width: 675px;
  counter-reset: item;
}
.ps-rates ol li {
  color: #57575c;
  font-size: 1rem;
  padding-left: 10px;
  position: relative;
  text-align: left;
}
.ps-rates ol li::before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 5px;
  height: 5px;
  display: inline-block;
  color: #00205b;
  margin-left: -15px;
  position: absolute;
  top: -1px;
}
.ps-rates ol span {
  color: #00205b;
  font-family: "Calibre Bold";
}
.node--type-general-page .ps-rates {
  padding-top: 0px;
  border-top: 0;
}
.node--type-general-page .ps-rates .our-rates__content-block {
  padding: 0px;
}
.node--type-general-page .ps-rates__title {
  background: none;
  padding: 0;
  height: auto;
  margin-bottom: 0;
}
.node--type-t2-category-listing .ps-rates__title {
  background: #ccd2de;
}
.node--type-t2-category-listing .ps-rates table tr:nth-child(2n) {
  background-color: #ffffff;
}
.node--type-t2-category-listing .ps-rates table tbody tr:nth-child(even) {
  background-color: #ffffff;
}
.node--type-t2-category-listing .ps-rates table tbody tr:nth-child(odd) {
  background-color: #edeeee;
}
.node--type-t2-category-listing .ps-rates table tbody tr:first-child {
  background: #a6a7a9;
}
.node--type-t2-category-listing .ps-rates table tbody tr:first-child td {
  font-family: "Calibre Bold";
}
#ps__additional-promo-banner {
  background: -moz-linear-gradient(
    180deg,
    rgb(237, 238, 238) 50%,
    rgb(255, 255, 255) 50%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, rgb(237, 238, 238)),
    color-stop(50%, rgb(255, 255, 255))
  );
  background: -webkit-linear-gradient(
    180deg,
    rgb(237, 238, 238) 50%,
    rgb(255, 255, 255) 50%
  );
  background: -o-linear-gradient(
    180deg,
    rgb(237, 238, 238) 50%,
    rgb(255, 255, 255) 50%
  );
  background: -ms-linear-gradient(
    180deg,
    rgb(237, 238, 238) 50%,
    rgb(255, 255, 255) 50%
  );
  background: linear-gradient(
    180deg,
    rgb(237, 238, 238) 50%,
    rgb(255, 255, 255) 50%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EDEEEE",endColorstr="#FFFFFF",GradientType=0);
  display: inline-block;
}
.t3-promotional-banner__container {
  width: 100%;
  float: left;
  color: white;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  position: relative;
  z-index: 9;
  box-shadow: 0 0px 3px #ccc;
}
@media only screen and (max-width: 991px) {
  .t3-promotional-banner__container {
    padding: 0 5px;
    background-size: 260px 100%;
    background-position: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .t3-promotional-banner__container {
    padding: 0 5px;
    background-size: 260px 100%;
    background-position: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .t3-promotional-banner__container {
    padding: 0 5px;
    background-size: cover;
    background-position: 100%;
  }
}
.t3-promotional-banner__container h2 {
  font-size: 3.75rem;
  line-height: 3.75rem;
  margin-top: 20px;
  font-family: "Calibre Semibold";
  display: table;
  clear: both;
  z-index: 1;
  color: #000;
}
@media only screen and (max-width: 991px) {
  .t3-promotional-banner__container h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .t3-promotional-banner__container h2 {
    font-size: 1.5rem;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .t3-promotional-banner__container h2 {
    font-size: 1.375rem;
    line-height: 1.5rem;
    max-width: 70%;
    display: inline;
  }
}
.ps-products {
  margin-top: 92px;
  padding-top: 120px;
  padding-bottom: 72px;
  display: block;
  background-color: #edeeee;
  position: relative;
  display: inline-block;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .ps-products {
    margin-top: 35px;
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-products {
    margin-top: 35px;
    padding-top: 50px;
    padding-bottom: 45px;
  }
}
.ps-products__title-container {
  background-color: #ccd2de;
  display: inline-block;
  height: 70px;
  line-height: 3.75rem;
  padding: 10px;
  font-size: 3rem;
  font-family: "Calibre Semibold";
}
@media only screen and (max-width: 480px) {
  .ps-products__title-container {
    padding-left: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 991px) {
  .ps-products__title-container {
    height: 40px;
    line-height: 1.875rem;
    margin-bottom: 20px;
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .ps-products__title-container {
    background: none;
    height: auto;
    line-height: 1.875rem;
    margin-bottom: 20px;
    display: inline-block;
  }
}
.ps-products__title span {
  width: 100%;
  font-size: 3.75rem;
  line-height: 3.75rem;
  font-family: "Calibre Bold";
  padding: 10px;
}
@media only screen and (max-width: 480px) {
  .ps-products__title span {
    padding: 10px 10px 4px 10px;
    line-height: 1.875rem;
  }
}
@media only screen and (max-width: 991px) {
  .ps-products__title span {
    font-size: 1.875rem;
    line-height: 1.875rem;
    padding: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-products__title span {
    font-size: 1.875rem;
    padding: 10px 10px 0;
    display: inline;
    background-color: #ccd2de;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
  .ps-products__title span.txtsplit-2 {
    display: -ms-grid;
    display: grid;
  }
}
.ps-products__tiles-container {
  background-color: #edeeee;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 448px;
  grid-auto-rows: 448px;
  margin-top: 50px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .ps-products__tiles-container {
    margin: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .ps-products__tiles-container {
    padding: 0;
    -ms-grid-rows: auto;
    grid-auto-rows: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .ps-products__tiles-container {
    align-items: center;
    margin: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0;
    display: inline-block;
  }
}
.ps-products__tile {
  margin: auto;
  width: 100%;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}
.ps-products__tile:nth-child(1) {
  padding-right: 14px;
}
.ps-products__tile:nth-child(2) {
  padding: 0 6px;
}
.ps-products__tile:nth-child(3) {
  padding-left: 14px;
}
@media only screen and (max-width: 991px) {
  .ps-products__tile:nth-child(1),
  .ps-products__tile:nth-child(3) {
    padding-right: 10px;
  }
  .ps-products__tile:nth-child(2) {
    padding-left: 10px;
  }
  .ps-products__tile:nth-child(3) {
    margin-top: 20px;
    padding-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-products__tile {
    margin-bottom: 20px;
  }
  .ps-products__tile:nth-child(1),
  .ps-products__tile:nth-child(2),
  .ps-products__tile:nth-child(3) {
    padding: 0;
  }
}
.ps-products .tile__img-container img {
  width: 100%;
  height: 100vh;
  max-height: 298px;
  object-fit: cover;
  object-position: center;
}
.ps-products .tile__details-block {
  background-color: #ffffff;
  padding: 25px 20px 25px 20px;
  max-height: 150px;
  height: 100vh;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .ps-products .tile__details-block {
    max-height: 222px;
    height: 222vh;
  }
}
@media only screen and (max-width: 991px) {
  .ps-products .tile__details-block {
    max-height: 170px;
    height: 170vh;
  }
}
@media only screen and (max-width: 767px) {
  .ps-products .tile__details-block {
    max-height: 170px;
    height: 170vh;
  }
}
.ps-products .tile__details-block .details__title {
  font-family: "Calibre Bold";
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #00205b;
}
@media only screen and (max-width: 767px) {
  .ps-products .tile__details-block .details__title {
    font-size: 1.375rem;
  }
}
.ps-products .tile__details-block .details__text {
  font-family: "Calibre Regular";
  color: #57575c;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.ps-products .tile__link-container {
  background-color: #ffffff;
  padding: 10px 5px 25px 20px;
}
@media only screen and (max-width: 767px) {
  .ps-products .tile__link-container {
    padding: 10px 5px 15px 20px;
  }
}
.ps-products .tile__link-container a {
  text-decoration: none;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
}
@media only screen and (max-width: 991px) {
  .ps-products .tile__link-container a {
    font-size: 1.125rem;
  }
}
.ps-products .tile__link-container a:hover {
  border-bottom: 2px solid #094943;
}
.ps-products .tile__link-container a:focus {
  border: 1px solid #094943;
}
.t3-sections-block {
}
@media only screen and (max-width: 991px) {
  .t3-sections-block {
    margin-top: 50px;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .t3-sections-block .promotional-banner {
    height: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .t3-sections-block .promotional-banner__arrow {
    height: 90px;
    line-height: 5.9375rem;
    width: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .t3-sections-block .promotional-banner__arrow img {
    width: 35px;
    height: 35px;
  }
}
.general-cms-customer-service {
  margin-top: 100px;
}
@media only screen and (max-width: 991px) {
  .general-cms-customer-service {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .general-cms-customer-service {
    margin-top: 50px;
  }
}
.t3-sections-block #block-views-block-related-content-block-1,
.t3-sections-block #block-views-block-message-about-customer-specific-block-1-2,
.t3-sections-block #block-views-block-frequently-asked-questions-block-1 {
  display: inline-block;
  width: 100%;
}
.customer-tombstones__tiles .tiles__headline {
  color: #00205b;
  font-family: "Calibre Bold";
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.t3-sections-block #block-views-block-related-content-block-1 .related-content {
  background-color: #edeeee;
  padding-top: 92px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .t3-sections-block
    #block-views-block-related-content-block-1
    .related-content {
    padding-top: 40px;
    margin-bottom: 30px;
  }
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .related-content
  .related-content__tiles-container {
}
@media only screen and (max-width: 767px) {
  .t3-sections-block
    #block-views-block-related-content-block-1
    .related-content
    .related-content__tiles-container {
    min-height: 200px;
  }
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .related-content
  .related-content__tiles-container
  .flickity-page-dots {
  bottom: -40px;
  margin: 0;
  z-index: 9;
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .related-content
  .tiles__detail-container {
  padding: 30px 20px;
  border-bottom: solid 3px #ccd2de;
  padding-bottom: 12px;
}
@media only screen and (max-width: 768px) {
  .t3-sections-block
    #block-views-block-related-content-block-1
    .related-content
    .tiles__detail-container {
    padding-top: 10px;
    min-height: 242px;
  }
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .related-content
  .tiles__detail-container:hover {
  border-bottom: 3px solid #d22630;
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .related-content
  .tiles__detail-container:hover
  a.site-link-green {
  color: #d22630;
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .related-content
  .tiles__detail-container:hover
  a.site-link-green:after {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/t2_right_arrow.png);
  width: 21px;
  height: 15px;
  position: relative;
  display: inline-block;
  top: 2px;
  right: -5px;
  background-repeat: no-repeat;
  background-size: cover;
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .related-content
  .tiles__detail-container:hover
  .see-details-text {
  border-bottom: solid 1px #d22630 !important;
}
.t3-sections-block #block-views-block-related-content-block-1 .tiles__headline {
  font-size: 1.25rem;
}
@media only screen and (max-width: 991px) {
  .t3-sections-block
    #block-views-block-related-content-block-1
    .tiles__headline {
    font-size: 1.125rem;
  }
}
.t3-sections-block #block-views-block-related-content-block-1 .tiles__date {
  font-size: 1.25rem;
  height: 20px;
}
@media only screen and (max-width: 991px) {
  .t3-sections-block #block-views-block-related-content-block-1 .tiles__date {
    font-size: 0.875rem;
    line-height: 1rem;
  }
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .tiles__link-container
  a {
  font-size: 1.375rem;
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  .t3-sections-block
    #block-views-block-related-content-block-1
    .tiles__link-container
    a {
    font-size: 1rem;
    line-height: 1rem;
  }
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .tiles__link-container
  a:hover {
  border-bottom: 0px none !important;
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .tiles__link-container
  a:hover
  .see-details-text {
  border-bottom: solid 1px #d22630 !important;
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .tiles__link-container
  a:hover {
  color: #d22630;
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .related-content
  .tiles__text {
  min-height: 80px;
}
@media only screen and (max-width: 1199px) {
  .t3-sections-block
    #block-views-block-related-content-block-1
    .related-content
    .tiles__text {
    min-height: 96px;
  }
}
.t3-sections-block
  #block-views-block-related-content-block-1
  .ps-products__tiles-container {
  padding-bottom: 0px;
}
.t3-sections-block .customer-tombstones {
  border-bottom: solid 2px #edeeee;
  border-top: solid 2px #edeeee;
  background: #ffffff;
  margin-top: 100px;
  padding: 100px 0px;
}
@media only screen and (max-width: 768px) {
  .t3-sections-block .customer-tombstones {
    margin-top: 0px;
    padding-top: 0px;
    border-top: solid 0px #edeeee;
  }
}
.t3-sections-block .customer-tombstones .customer-tombstones__container {
  -ms-grid-rows: auto;
  grid-auto-rows: auto;
}
@media only screen and (max-width: 991px) {
  .t3-sections-block .customer-tombstones .customer-tombstones__container {
    -ms-grid-rows: auto;
    grid-auto-rows: auto;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .t3-sections-block .customer-tombstones .customer-tombstones__container {
    -ms-grid-rows: auto;
    grid-auto-rows: auto;
    margin-bottom: 0px;
  }
}
.t3-sections-block .customer-tombstones .customer-tombstones__header {
  margin-bottom: 30px;
}
.t3-sections-block #block-views-block-frequently-asked-questions-block-1,
.node-27 #block-views-block-frequently-asked-questions-block-1,
.node--type-t2-category-listing
  #block-views-block-frequently-asked-questions-block-1 {
  background-color: #e0e4eb;
  padding: 100px 0;
}
@media only screen and (max-width: 991px) {
  .t3-sections-block #block-views-block-frequently-asked-questions-block-1,
  .node-27 #block-views-block-frequently-asked-questions-block-1,
  .node--type-t2-category-listing
    #block-views-block-frequently-asked-questions-block-1 {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 768px) {
  .t3-sections-block #block-views-block-frequently-asked-questions-block-1,
  .node-27 #block-views-block-frequently-asked-questions-block-1,
  .node--type-t2-category-listing
    #block-views-block-frequently-asked-questions-block-1 {
    padding: 25px 0 20px;
  }
}
.t3-sections-block #block-views-block-frequently-asked-questions-block-1 h2,
.node-27 #block-views-block-frequently-asked-questions-block-1 h2,
.node--type-t2-category-listing
  #block-views-block-frequently-asked-questions-block-1
  h2 {
  font-family: "Calibre Bold";
  font-size: 3.75rem;
  line-height: 3.75rem;
  max-width: 1400px;
  margin: auto;
  padding-bottom: 25px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .t3-sections-block #block-views-block-frequently-asked-questions-block-1 h2,
  .node-27 #block-views-block-frequently-asked-questions-block-1 h2,
  .node--type-t2-category-listing
    #block-views-block-frequently-asked-questions-block-1
    h2 {
    font-size: 1.875rem;
    line-height: 1.875rem;
    padding: 5px 0px;
  }
}
#block-mailpopup {
  clear: both;
}
.ps-resources {
  padding: 90px 0px 100px;
  border-bottom: solid 1px #edeeee;
  width: 100%;
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .ps-resources {
    padding: 40px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-resources {
    padding: 40px 0px 30px;
  }
}
.ps-resources__wrapper {
  border-bottom: solid 3px #edeeee;
  min-height: 112px;
  margin-right: 30px;
  padding-bottom: 20px;
  width: 31%;
  display: inline-flex;
  float: left;
}
@media only screen and (max-width: 991px) {
  .ps-resources__wrapper {
    width: 32%;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-resources__wrapper {
    margin-bottom: 20px;
    min-height: 131px;
    width: 100%;
  }
}
.ps-resources__wrapper:last-child {
  margin-right: 0px;
}
.ps-resources__img {
  margin-right: 20px;
}
@media only screen and (max-width: 991px) {
  .ps-resources__img {
    margin-right: 5px;
  }
}
@media only screen and (max-width: 991px) {
  .ps-resources__img img {
    width: 75%;
    height: auto;
  }
}
.ps-resources__item-description-container {
  display: inline-block;
  width: 100%;
}
.ps-resources__header-wrapper h2 {
  font-size: 1.875rem;
  font-family: "Calibre Bold";
  line-height: 2.25rem;
  max-width: 1400px;
  padding-bottom: 35px;
  margin: auto;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .ps-resources__header-wrapper h2 {
    font-size: 1.25rem;
    line-height: 1.25rem;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-resources__header-wrapper h2 {
    font-size: 1.25rem;
    line-height: 1.25rem;
    padding-bottom: 30px;
  }
}
.ps-resources__title {
  color: #00205b;
  font-family: "Calibre Bold";
  font-size: 1.5rem;
  line-height: 1.875rem;
  text-decoration: none;
  min-height: 75px;
}
@media only screen and (min-width: 769px) and (max-width: 1023px) {
  .ps-resources__title {
    min-height: 75px;
  }
}
@media only screen and (max-width: 991px) {
  .ps-resources__title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    min-height: 75px;
  }
}
@media only screen and (device-width: 1024px) and (orientation: landscape) {
  .ps-resources__title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    min-height: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-resources__title {
    font-size: 1.375rem;
    line-height: 1.375rem;
    min-height: auto;
  }
}
.ps-resources__text {
  color: #57575c;
  padding-top: 10px;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Calibre Regular";
  min-height: 70px;
}
@media only screen and (max-width: 991px) {
  .ps-resources__text {
    padding-top: 5px;
  }
}
.ps-resources__file {
  padding: 25px 5px 15px 0px;
}
.ps-resources__file a {
  text-decoration: none;
  font-family: "Calibre Semibold";
  font-size: 1.375rem;
}
.ps-resources__file a::after {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/right-arrow-green.png);
  width: 30px;
  height: 26px;
  position: relative;
  display: inline-block;
  top: 6px;
  right: -5px;
  background-repeat: no-repeat;
  background-size: cover;
}
.ps-resources__file a:hover {
  border-bottom: 2px solid #094943;
}
.ps-resources__file a:focus {
  border: 1px solid #094943;
}
.ps-resources__wrapper:hover {
  border-bottom: 3px solid #d22630;
}
.ps-resources__wrapper:hover .ps-resources__title a {
  text-decoration: underline;
  text-decoration-line: underline;
  -webkit-text-decoration: underline;
}
.ps-resources__wrapper:hover .ps-resources__file a {
  color: #d22630;
  border-bottom: 2px solid #d22630;
}
.ps-resources__wrapper:hover .ps-resources__file a::after {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/t2_right_arrow.png);
  width: 30px;
  height: 26px;
  position: relative;
  display: inline-block;
  top: 13px;
  right: -10px;
  background-repeat: no-repeat;
}
.ps-get-in-touch {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 100px;
}
.ps-get-in-touch__cards-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  -ms-grid-rows: 448px;
  grid-auto-rows: 448px;
  padding-top: 100px;
}
@media only screen and (max-width: 575px) {
  .ps-get-in-touch__cards-container {
    align-items: center;
    margin: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.ps-get-in-touch__card {
  position: relative;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  width: 31.5%;
  margin-right: 2%;
}
.ps-get-in-touch__card:nth-child(1) {
  padding-right: 14px;
}
.ps-get-in-touch__card:nth-child(2) {
  padding: 0 6px;
}
.ps-get-in-touch__card:nth-child(3) {
  padding-left: 14px;
}
@media only screen and (max-width: 991px) {
  .ps-get-in-touch__card:nth-child(1),
  .ps-get-in-touch__card:nth-child(3) {
    padding-right: 10px;
  }
  .ps-get-in-touch__card:nth-child(2) {
    padding-left: 10px;
  }
  .ps-get-in-touch__card:nth-child(3) {
    margin-top: 20px;
    padding-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .ps-get-in-touch__card:nth-child(1),
  .ps-get-in-touch__card:nth-child(2),
  .ps-get-in-touch__card:nth-child(3) {
    padding: 0;
  }
}
.ps-get-in-touch__card-img-container {
  display: none;
}
.ps-get-in-touch__card-img-container img {
  display: none;
}
.ps-get-in-touch__card-details {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  position: relative;
  max-height: 190px;
  width: 85%;
  top: -10%;
  margin: auto;
  height: -webkit-fill-available;
  padding: 10px;
}
@media only screen and (max-width: 575px) {
  .ps-get-in-touch__card-details h3 {
    margin-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .ps-get-in-touch__card-details {
    max-width: 450px;
    top: -2%;
  }
}
.ps-get-in-touch__name {
  color: #00205b;
}
.ps-get-in-touch__days {
  padding-left: 20px;
}
.ps-get-in-touch__card-details > * {
  margin: 5px auto;
}
@media only screen and (max-width: 768px) {
  .node--type-community-hub .ps-banner__image {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .node--type-community-hub .ps-banner {
    background: #fff;
  }
}
@media only screen and (max-width: 768px) {
  .node--type-community-hub .ps-banner__banner-title {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .node--type-community-hub .chlb .contentleft .share-print-mobile {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .node--type-community-hub .ps-header__nav-container {
    pdding-top: 0 !important;
  }
}
.node--type-t2-category-listing .ps-products {
  margin-top: 0;
  padding-top: 0;
}
.node--type-community-hub .ps-header__nav-container .mobile-back {
  display: block !important;
}
.node--type-t3-product-service-detail-page
  .account-comparison
  .account-comparison__content-block
  p {
  line-height: 1.875rem;
}
.node--type-t3-product-service-detail-page .ps-benefits__list-container a {
  text-decoration: none;
  font-weight: bold;
}
.node--type-t3-product-service-detail-page
  .ps-benefits__list-container
  a:hover {
  text-decoration: underline;
  color: #185d56;
}
.node--type-t3-product-service-detail-page .ps-benefits__text-container a {
  text-decoration: none;
}
.node--type-t3-product-service-detail-page
  .ps-benefits__text-container
  a:hover {
  text-decoration: underline;
  color: #185d56;
}
.node--type-t3-product-service-detail-page
  .product-services
  .ps-about__header-container
  .ps-about__subtext {
  font-family: "Calibre Bold";
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000;
}
@media only screen and (max-width: 480px) {
  .node--type-t3-product-service-detail-page
    .product-services
    .ps-about__header-container
    .ps-about__subtext {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
.node--type-t3-product-service-detail-page
  .product-services
  .ps-about__header-container
  .ps-about__subtext
  p {
  font-family: "Calibre Bold";
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000;
}
@media only screen and (max-width: 480px) {
  .node--type-t3-product-service-detail-page
    .product-services
    .ps-about__header-container
    .ps-about__subtext
    p {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
.node-3311 .ps-about,
.node-3293 .ps-about {
  max-width: 100%;
}
.node-27 .textresize {
  float: right;
  margin-right: 15px;
}
.node-27 .contactus_header {
  margin-bottom: 40px;
  margin-top: 20px;
}
.node-27 .contactus_header h2 {
  font-family: "Calibre Bold";
  line-height: 2.75rem;
}
@media only screen and (max-width: 480px) {
  .node-27 .contactus_header h2 {
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .node-27 .contactus_header h2 {
    line-height: 1.5rem;
  }
}
.node-27 #block-views-block-frequently-asked-questions-block-1 {
  padding-top: 0px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .node-27 #block-views-block-frequently-asked-questions-block-1 {
    margin-bottom: 50px;
  }
}
.node-27 .captcha {
  margin-bottom: 20px;
}
.node-27 .contactus-faq_title {
  background-color: #e0e4eb;
  margin-top: 100px;
  padding: 100px 15px 0;
}
@media only screen and (max-width: 991px) {
  .node-27 .contactus-faq_title {
    margin-top: 50px;
    padding: 40px 15px 0;
  }
}
.node-27 .contactus-faq_title h2 {
  color: #212529;
  font-family: "Calibre Bold";
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-decoration: none;
  max-width: 1400px;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) and (max-width: 1023px) {
  .node-27 .contactus-faq_title h2 {
    min-height: 75px;
  }
}
@media only screen and (max-width: 991px) {
  .node-27 .contactus-faq_title h2 {
    font-size: 1.125rem;
    line-height: 1.375rem;
    min-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .node-27 .contactus-faq_title h2 {
    font-size: 1.375rem;
    line-height: 1.375rem;
    min-height: auto;
  }
}
.webform-submission-contact-us-form #edit-markup-01 {
  clear: left;
  margin-bottom: 15px;
}
.webform-submission-complaint-form-form
  .js-webform-radios
  .form-item-do-you-have-an-account-with-us- {
  padding: 10px;
  float: left;
}
.webform-submission-complaint-form-form .js-webform-type-radios legend {
  float: left;
  width: 48%;
  text-align: right;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .webform-submission-complaint-form-form .js-webform-type-radios legend {
    width: auto;
  }
}
.webform-submission-complaint-form-form
  .js-webform-type-radios
  .fieldset-wrapper {
  width: auto;
  float: right;
  margin-top: 38px;
  padding-right: 28px;
}
@media only screen and (max-width: 991px) {
  .webform-submission-complaint-form-form
    .js-webform-type-radios
    .fieldset-wrapper {
    margin-top: 48px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .webform-submission-complaint-form-form
    .js-webform-type-radios
    .fieldset-wrapper {
    padding-right: 0px;
    float: left;
  }
}
#cms-block
  form.webform-submission-complaint-form-form
  .js-webform-type-radios
  .js-form-type-radio {
  display: inline-block;
}
#cms-block
  form.webform-submission-complaint-form-form
  .js-webform-type-radios
  .js-form-type-radio
  input {
  display: none;
}
#cms-block
  form.webform-submission-complaint-form-form
  .js-webform-type-radios
  .js-form-type-radio
  label {
  display: block;
  position: relative;
  cursor: pointer;
  background: #ccd2de;
  color: #000;
  text-align: center;
  padding: 14px 25px;
  border: 1px solid #ccd2de;
  font-size: 1.25rem;
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  #cms-block
    form.webform-submission-complaint-form-form
    .js-webform-type-radios
    .js-form-type-radio
    label {
    padding: 8px 18px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #cms-block
    form.webform-submission-complaint-form-form
    .js-webform-type-radios
    .js-form-type-radio
    label {
    transform: translate(15px, -35px);
    display: table;
    opacity: 1;
    padding-left: 0;
    margin-left: -15px;
    padding: 15px 20px 10px 20px;
    background: white;
    color: #00205b;
    margin-top: -4px;
    font-size: 1.125rem;
  }
}
#cms-block
  form.webform-submission-complaint-form-form
  .js-webform-type-radios
  .js-form-type-radio:first-child
  label {
  background: #185d56;
  border: 1px solid #185d56;
  color: #fff;
}
#cms-block
  form.webform-submission-complaint-form-form
  .js-webform-type-radios
  .js-form-type-radio
  label:hover {
  background: #edeeee;
}
#cms-block
  form.webform-submission-complaint-form-form
  .js-webform-type-radios
  .js-form-type-radio:first-child
  label:hover {
  background: #094943;
}
#cms-block
  form.webform-submission-complaint-form-form
  .js-webform-type-radios
  .js-form-type-radio
  input.form-radio:checked
  + label {
  background: #00205b;
  color: #fff;
}
#cms-block
  form.webform-submission-complaint-form-form
  .floating-label.half.form-item-please-provide-specific-information,
#cms-block
  form.webform-submission-complaint-form-form
  .floating-label.half.form-item-security-help-markup {
  width: 100%;
}
#cms-block
  form.webform-submission-complaint-form-form
  .floating-label.half.form-item-security-help-markup {
  margin-bottom: 20px;
}
#cms-block form.webform-submission-complaint-form-form textarea {
  min-height: 250px;
}
#cms-block form.webform-submission-complaint-form-form input[type="submit"] {
  margin-top: 100px;
  display: inline-block;
}
#block-views-block-promotion-banner-block-1-3 {
  margin-bottom: 20px;
}
.cms-banner {
  background: #ccd2de;
  max-height: 204px;
}
@media only screen and (max-width: 767px) {
  .cms-banner {
    background: #ffffff;
    max-height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .cms-banner .web-banner {
    display: none;
  }
}
.cms-banner .mobile-banner {
  display: none;
}
@media only screen and (max-width: 767px) {
  .cms-banner .mobile-banner {
    display: block;
  }
}
.cms-banner .ps-banner__image {
  object-fit: cover;
  object-position: 420px;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
}
@media only screen and (min-width: 1401px) {
  .cms-banner .ps-banner__image {
    width: 63.5%;
    object-position: center;
  }
}
@media only screen and (max-width: 991px) {
  .cms-banner .ps-banner__image {
    object-position: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .cms-banner .ps-banner__image {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: relative;
    right: inherit;
    max-height: 109px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cms-banner .ps-header__nav-container ol li:nth-last-child(2):after {
    content: " | ";
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cms-banner .ps-header__nav-container ol li:last-of-type {
    display: block;
  }
}
.clear {
  clear: both;
}
#cms-block {
  background: white;
}
@media only screen and (max-width: 767px) {
  #cms-block {
    margin-top: 15px;
  }
}
#cms-block .cms-container {
  max-width: 920px;
}
@media only screen and (max-width: 1199px) {
  #cms-block .text-share-print-links {
    float: left;
    width: 100%;
  }
}
#cms-block .text-share-print-links .links-icon {
  float: right;
  width: auto;
  text-align: right;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  #cms-block .text-share-print-links .links-icon {
    margin-left: 0;
  }
}
#cms-block h2 {
  text-align: left;
  font-family: "Calibre Bold";
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  #cms-block h2 {
    font-size: 1.5rem;
  }
}
#cms-block h3 {
  text-align: left;
  font-family: "Calibre Bold";
  margin-top: 20px;
  font-size: 2.5rem;
}
@media only screen and (max-width: 991px) {
  #cms-block h3 {
    font-size: 1.125rem;
  }
}
#cms-block h3.general-summary {
  line-height: 1.875rem;
  margin: 30px 0;
  font-size: 1.375rem;
}
#cms-block h4 {
  text-align: left;
  font-family: "Calibre Bold";
  line-height: 1.875rem;
  margin: 30px 0;
  font-size: 1.375rem;
}
@media only screen and (max-width: 991px) {
  #cms-block h4 {
    font-size: 1.125rem;
  }
}
#cms-block span,
#cms-block p {
  font-family: "Calibre Medium";
  color: #57575c;
  line-height: 1.875rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  #cms-block span,
  #cms-block p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
#cms-block li {
  color: #57575c;
  line-height: 1.875rem;
}
@media only screen and (max-width: 991px) {
  #cms-block li {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
#cms-block br {
  display: table;
  content: "";
  margin-top: 0;
  clear: both;
  height: 30px;
}
#cms-block hr {
  margin: 5px 0 25px;
}
#cms-block img {
  width: 100%;
  max-width: 685px;
  margin: auto;
  display: table;
}
@media only screen and (max-width: 480px) {
  #cms-block img {
    height: auto;
  }
}
#cms-block .iframe-media {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 90px;
}
@media only screen and (max-width: 768px) {
  #cms-block .iframe-media {
    margin-bottom: 20px;
  }
}
#cms-block .iframe-media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cms-block ul {
  width: 100%;
  max-width: 675px;
}
#cms-block ul li {
  padding-left: 30px;
  position: relative;
  padding-bottom: 20px;
}
#cms-block ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
#cms-block ul.table-footnotes__list-container li {
  padding-bottom: 0;
  padding-left: 0;
  font-size: 1rem;
}
#cms-block ul.table-footnotes__list-container li:before {
  display: none;
}
#cms-block ul.table-footnotes__list-container li span {
  color: #00205b;
}
#cms-block #block-generalcmsourratetable h2 {
  font-size: 3.75rem;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  #cms-block #block-generalcmsourratetable h2 {
    font-size: 1.875rem;
  }
}
#cms-block #block-generalcmsourratetable ul li {
  font-size: 1rem;
}
#cms-block ol {
  width: 100%;
  max-width: 675px;
  counter-reset: item;
  margin-top: 30px;
  margin-left: 14px;
}
#cms-block ol li {
  padding-left: 15px;
  position: relative;
  padding-bottom: 20px;
}
#cms-block ol li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
#cms-block .blockquote {
  width: 100%;
  max-width: 685px;
  margin: auto;
  border-left: 5px solid #d22630;
  color: #00205b;
  font-size: 2rem;
  font-family: "Calibre Medium";
  padding: 20px 20px 10px;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  #cms-block .blockquote {
    font-size: 1.5rem;
  }
}
#cms-block .blockquote:before {
  content: "";
  background: url(../../../../themes/nationalprimepay/images/blockquote-quote.png);
  background-size: cover;
  display: block;
  width: 70px;
  height: 50px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #cms-block .blockquote:before {
    font-size: 1.5rem;
    width: 48px;
    height: 34px;
  }
}
@media only screen and (max-width: 480px) {
  #cms-block .blockquote:before {
    font-size: 1.5rem;
    width: 48px;
    height: 34px;
  }
}
#cms-block table {
  margin: 0px auto;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #ccd2de;
  margin: 0 auto 40px;
}
@media only screen and (min-width: 769px) {
  #cms-block table h2 {
    font-size: 3.75rem;
  }
}
#cms-block table tbody tr:nth-child(even) {
  background-color: #edeeee;
}
#cms-block table tr td:first-child {
  position: relative;
}
@media only screen and (min-width: 769px) {
  #cms-block table h2 {
    font-size: 3.75rem;
  }
}
#cms-block table br {
  content: none;
}
#cms-block table tr td {
  padding: 15px;
  vertical-align: top;
  width: 100px;
}
#cms-block table td {
  padding: 15px !important;
}
@media only screen and (max-width: 991px) {
  #cms-block table td {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
#cms-block table th {
  background-color: #57575c !important;
  height: 80px;
  color: #ffffff;
  font-family: "Calibre Bold";
}
#cms-block table th p {
  color: white;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  form.webform-submission-form select::-ms-expand {
    display: none;
  }
}
form.webform-submission-form h2 {
  margin-bottom: 15px;
  font-size: 3.75rem;
}
@media only screen and (max-width: 991px) {
  form.webform-submission-form h2 {
    font-size: 1.875rem;
  }
}
form.webform-submission-form h5 {
  color: #57575c;
}
@media only screen and (min-width: 769px) {
  form.webform-submission-form h5 {
    font-size: 1.25rem;
    font-family: "Calibre Semibold";
  }
}
form.webform-submission-form .form-radio,
form.webform-submission-form .form-checkbox {
  float: left;
  width: 1em;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.15);
  padding: 0;
  margin-top: 1px;
  margin-right: 5px;
}
form.webform-submission-form .js-form-type-radio label,
form.webform-submission-form .js-form-type-checkbox label {
  width: 90%;
}
form.webform-submission-form input[type="text"],
form.webform-submission-form input[type="email"],
form.webform-submission-form input[type="tel"],
form.webform-submission-form input[type="date"],
form.webform-submission-form textarea,
form.webform-submission-form select {
  border: 1px solid #d9d9d9;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  padding: 16.5px 20px;
  margin-bottom: 25px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  background: white;
  font-family: "Calibre Medium";
  color: #57575c;
  font-size: 1.3125rem;
  position: relative;
}
@media only screen and (max-width: 480px) {
  form.webform-submission-form input[type="text"],
  form.webform-submission-form input[type="email"],
  form.webform-submission-form input[type="tel"],
  form.webform-submission-form input[type="date"],
  form.webform-submission-form textarea,
  form.webform-submission-form select {
    font-size: 0.875rem;
    padding: 14px 10px;
  }
}
@media only screen and (max-width: 768px) {
  form.webform-submission-form input[type="text"],
  form.webform-submission-form input[type="email"],
  form.webform-submission-form input[type="tel"],
  form.webform-submission-form input[type="date"],
  form.webform-submission-form textarea,
  form.webform-submission-form select {
    font-size: 0.875rem;
    padding: 14px 10px;
  }
}
form.webform-submission-form input[type="text"]:focus,
form.webform-submission-form input[type="email"]:focus,
form.webform-submission-form input[type="tel"]:focus,
form.webform-submission-form input[type="date"]:focus,
form.webform-submission-form textarea:focus,
form.webform-submission-form select:focus {
  border: 1px solid #00205b;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
form.webform-submission-form input,
form.webform-submission-form textarea {
  width: 100%;
  display: flex;
}
form.webform-submission-form textarea {
  resize: none;
  height: 200px;
  width: 100%;
}
form.webform-submission-form select {
  width: 100%;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAEBgAABAYBmSDe8AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAHGSURBVGiB7djNShtRGIfx500oFETcF7pMZ2XSuRYFKxUKBcGIi3onLaV+dNUPpJXSa9FpVpqbcB/176axkzCjmcw5jtD3WU3OZDLvj0MCE/A8z/M8z/O8e7L8i+xF+srQZ7ALid3e8OR3U4MVlSXpqkkfgAWMze7Z6a/xudb4QGAt9BFYBD030/Gf5OXrJgYuapD0Nkz6CTwDlhD7ym3ELcRAU9e2EV8fA2aQ9DYk+wK0/61qlJ+5NXmJdoCr3ELjmGIEV1JrJ/++CcjyeXYs2Rowyi23Ed8HnXQr2rQlZUnal+wbk4iRZGvT31+joKyTrpjpB/AktyyTbS8PTw7Cj1wwQ5L2Tfo0NeNIsvWiH6FCCDSLqYqAOyDQDGYeBNwDgYfFDDrplkx7VETADBB4GEwdBMwIgbiYugioAIE4mBAIqAiBsJhQCJgDAuUYpH53mB3O8hkhETAnBOphQiOgBgTmw8RAQE0IVMPEQkAACMyGiYmAQBAoxVwL3pr0FLN9IiEgIARKnx0u/95n4nkC40337PQo1L2DQqB0Z/IF3YlxwSFwJyYKAiJBoBATDQERIXCLeQ8g2bvH9veS53me53me9591A6zTcn4xC5BSAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: center right 25px;
  background-size: 25px 25px;
}
form.webform-submission-form .floating-label {
  position: relative;
  width: 100%;
}
form.webform-submission-form .floating-label.half {
  width: 49%;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
}
form.webform-submission-form .floating-label.half:nth-child(2n + 1) {
  margin-right: 0;
}
form.webform-submission-form .floating-label.half:nth-child(2n + 2) {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  form.webform-submission-form .floating-label.half {
    width: 100%;
    float: left;
    margin: 0 0 10px;
  }
}
form.webform-submission-form
  .floating-label.half.form-item-do-you-have-an-account-with-us
  label {
  position: relative;
  opacity: 1;
  padding: 0;
  left: 0;
  margin: 0;
  float: left;
  width: 50%;
  text-align: right;
  margin-top: 20px;
  font-family: "Calibre Medium";
  color: #57575c;
  line-height: 1.875rem;
  margin-bottom: 10px;
  font-size: 1.125rem;
}
@media only screen and (max-width: 991px) {
  form.webform-submission-form
    .floating-label.half.form-item-do-you-have-an-account-with-us
    label {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  form.webform-submission-form
    .floating-label.half.form-item-do-you-have-an-account-with-us
    label {
    width: auto;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 480px) {
  form.webform-submission-form
    .floating-label.half.form-item-do-you-have-an-account-with-us
    label {
    margin-bottom: 0;
  }
}
form.webform-submission-form
  .floating-label.half.form-item-do-you-have-an-account-with-us
  .btn-toggle {
  width: auto;
  float: right;
  margin-top: 10px;
  padding-right: 28px;
}
@media only screen and (max-width: 767px) {
  form.webform-submission-form
    .floating-label.half.form-item-do-you-have-an-account-with-us
    .btn-toggle {
    padding-right: 0px;
    float: left;
    padding-left: 30px;
    margin-bottom: 40px;
  }
}
form.webform-submission-form
  .floating-label.half.form-item-do-you-have-an-account-with-us
  .btn-toggle
  .btn {
  background: #edeeee;
  color: #57575c;
}
form.webform-submission-form
  .floating-label.half.form-item-do-you-have-an-account-with-us
  .btn-toggle
  .btn.active {
  background: #00205b;
  color: #fff;
}
form.webform-submission-form .floating-label.third {
  width: 33.3333%;
  margin-left: 1%;
  margin-right: 1%;
}
form.webform-submission-form .floating-label.third:nth-child(3n + 1) {
  margin-left: 0;
}
form.webform-submission-form .floating-label.third:nth-child(3n + 3) {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  form.webform-submission-form .floating-label.third {
    width: 100%;
    margin: 0 0 10px;
  }
}
form.webform-submission-form .floating-label.full {
  width: 100%;
  float: left;
}
@media only screen and (max-width: 767px) {
  form.webform-submission-form .floating-label.full {
    margin: 0 0 10px;
  }
}
form.webform-submission-form .floating-label label {
  position: absolute;
  top: calc(50% - 7px);
  left: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0 10px;
  font-family: "Calibre Medium";
}
form.webform-submission-form
  .floating-label
  input:not(:placeholder-shown)
  + label,
form.webform-submission-form
  .floating-label
  textarea:not(:placeholder-shown)
  + label {
  transform: translate(15px, -35px);
  display: table;
  opacity: 1;
  padding-left: 0;
  margin-left: -15px;
  padding: 0 10px;
  background: white;
  color: #00205b;
  margin-top: -10px;
  font-size: 1.125rem;
}
@media only screen and (max-width: 767px) {
  form.webform-submission-form
    .floating-label
    input:not(:placeholder-shown)
    + label,
  form.webform-submission-form
    .floating-label
    textarea:not(:placeholder-shown)
    + label {
    font-size: 0.875rem;
    margin-top: -4px;
  }
}
form.webform-submission-form
  .floating-label
  textarea:not(:placeholder-shown)
  + label {
  margin-top: -80px;
}
form.webform-submission-form .floating-label .form-text {
  margin-top: 0;
}
form.webform-submission-form input[type="submit"] {
  background: #185d56;
  color: white;
  border: 0;
  box-shadow: none;
  width: 187px;
  height: 60px;
  font-size: 1.375rem;
  line-height: 1.625rem;
  display: table;
  text-align: center;
  padding: 20px;
  margin-bottom: 25px;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 575px) {
  form.webform-submission-form input[type="submit"] {
    font-size: 1.125rem;
    padding: 10px;
    width: 100%;
  }
}
form.webform-submission-form input.form-submit:hover {
  background: #094943;
}
form.webform-submission-form
  .js-form-item-please-provide-specific-information
  textarea {
  font-size: 1.125rem;
}
form.webform-submission-form .form-item-how-can-we-help-you-today- {
  clear: left;
  width: 100% !important;
}
#block-t8banner .ps-banner {
  margin-bottom: 0px;
}
@media only screen and (min-width: 1401px) {
  #block-t8banner .ps-banner__image {
    width: 63.5%;
  }
}
@media only screen and (max-width: 767px) {
  #block-t8banner .ps-banner {
    margin-bottom: 30px;
    background: #ccd2de;
  }
}
a.community-hub-share {
  display: none;
}
#block-views-block-contact-us-block-block-4 .cl-customer-service,
#block-views-block-contact-us-block-block-4-2 .cl-customer-service {
  margin-top: 0px;
}
@media only screen and (max-width: 991px) {
  #block-views-block-contact-us-block-block-4 .cl-customer-service,
  #block-views-block-contact-us-block-block-4-2 .cl-customer-service {
    margin-top: 0px;
  }
}
.chlb,
.block-community-hub-landing-page-block-1 {
  background: -moz-linear-gradient(
    360deg,
    rgb(255, 255, 255) 49%,
    rgb(237, 238, 238) 49%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(49%, rgb(255, 255, 255)),
    color-stop(49%, rgb(237, 238, 238))
  );
  background: -webkit-linear-gradient(
    360deg,
    rgb(255, 255, 255) 49%,
    rgb(237, 238, 238) 49%
  );
  background: -o-linear-gradient(
    360deg,
    rgb(255, 255, 255) 49%,
    rgb(237, 238, 238) 49%
  );
  background: -ms-linear-gradient(
    360deg,
    rgb(255, 255, 255) 49%,
    rgb(237, 238, 238) 49%
  );
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255) 49%,
    rgb(237, 238, 238) 49%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF",endColorstr="#EDEEEE",GradientType=1);
}
.chlb .community-row-warpper,
.block-community-hub-landing-page-block-1 .community-row-warpper {
  border-bottom: 1px solid #ccc;
}
.chlb .col-md-6.contentleft,
.block-community-hub-landing-page-block-1 .col-md-6.contentleft {
  width: 74.666667%;
  flex: 0 0 74.666667%;
  max-width: 74.666667%;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .chlb .col-md-6.contentleft,
  .block-community-hub-landing-page-block-1 .col-md-6.contentleft {
    width: 1068px;
    flex: 0 0 74.666667%;
    max-width: 1068px;
    min-width: 1068px;
  }
}
.chlb .col-md-3.sidebar-region,
.block-community-hub-landing-page-block-1 .col-md-3.sidebar-region {
  width: 25.333333%;
  flex: 0 0 25.333333%;
  max-width: 25.333333%;
}
@media only screen and (min-width: 1200px) and (max-width: 1420px) {
  .chlb .col-md-3.sidebar-region,
  .block-community-hub-landing-page-block-1 .col-md-3.sidebar-region {
    width: 216px;
    flex: 0 0 25.333333%;
    max-width: 216px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .chlb .col-md-6.contentleft,
  .block-community-hub-landing-page-block-1 .col-md-6.contentleft {
    width: 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .chlb .col-md-3.sidebar-region,
  .block-community-hub-landing-page-block-1 .col-md-3.sidebar-region {
    width: 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media only screen and (max-width: 991px) {
  .chlb,
  .block-community-hub-landing-page-block-1 {
    background: none;
  }
  .chlb .col-md-6.contentleft,
  .chlb .col-md-3.sidebar-region,
  .block-community-hub-landing-page-block-1 .col-md-6.contentleft,
  .block-community-hub-landing-page-block-1 .col-md-3.sidebar-region {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .chlb .col-md-3.sidebar-region .col-md-12,
  .block-community-hub-landing-page-block-1
    .col-md-3.sidebar-region
    .col-md-12 {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .col-md-3.sidebar-region .col-md-12,
  .chlb .col-md-7,
  .block-community-hub-landing-page-block-1 .col-md-3.sidebar-region .col-md-12,
  .block-community-hub-landing-page-block-1 .col-md-7 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
}
.chlb .red-block,
.block-community-hub-landing-page-block-1 .red-block {
  margin-bottom: 10px;
}
.chlb #headercontent h2,
.block-community-hub-landing-page-block-1 #headercontent h2 {
  font-size: 2.5rem;
  line-height: 3.75rem;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 991px) {
  .chlb #headercontent h2,
  .block-community-hub-landing-page-block-1 #headercontent h2 {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
.chlb #headercontent p,
.block-community-hub-landing-page-block-1 #headercontent p {
  margin-top: 22px;
  font-size: 1.375rem;
  line-height: 1.875rem;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 991px) {
  .chlb #headercontent p,
  .block-community-hub-landing-page-block-1 #headercontent p {
    font-size: 1.125rem;
    margin-top: 12px;
  }
}
.chlb .pager__item a,
.block-community-hub-landing-page-block-1 .pager__item a {
  font-size: 1.375rem;
  font-family: "Calibre Bold";
  background: #185d56;
  color: white;
  padding: 20px 30px 10px 30px;
  display: table;
  text-decoration: none;
  transition: 0.25s all ease-in-out;
  line-height: 1.625rem;
  text-align: center;
  margin-bottom: 100px;
}
.chlb .pager__item a:hover,
.block-community-hub-landing-page-block-1 .pager__item a:hover {
  background: #094943;
}
.chlb .pager__item a:focus,
.block-community-hub-landing-page-block-1 .pager__item a:focus {
  border: 1px dashed;
}
@media only screen and (max-width: 991px) {
  .chlb .pager__item a,
  .block-community-hub-landing-page-block-1 .pager__item a {
    font-size: 1rem;
    line-height: 1.0625rem;
    margin-bottom: 50px;
    padding: 10px 15px 5px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .pager__item a,
  .block-community-hub-landing-page-block-1 .pager__item a {
    font-size: 0.9375rem;
    line-height: 1.125rem;
    margin-bottom: 50px;
    padding: 15px 15px 10px 15px;
  }
}
.chlb .featuredpost,
.block-community-hub-landing-page-block-1 .featuredpost {
  box-shadow: 0 0px 3px #ccc;
  margin-top: 35px;
  padding: 0;
}
.chlb .featuredpost .col-md-6,
.chlb .featuredpost .col-md-4,
.block-community-hub-landing-page-block-1 .featuredpost .col-md-6,
.block-community-hub-landing-page-block-1 .featuredpost .col-md-4 {
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .chlb .featuredpost,
  .block-community-hub-landing-page-block-1 .featuredpost {
    margin-top: 35px;
  }
}
.chlb .featuredpost .community-hub__article___text-container,
.block-community-hub-landing-page-block-1
  .featuredpost
  .community-hub__article___text-container {
  padding: 50px 40px 50px;
}
@media only screen and (max-width: 991px) {
  .chlb .featuredpost .community-hub__article___text-container,
  .block-community-hub-landing-page-block-1
    .featuredpost
    .community-hub__article___text-container {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .featuredpost .community-hub__article___text-container,
  .block-community-hub-landing-page-block-1
    .featuredpost
    .community-hub__article___text-container {
    padding: 30px 20px;
  }
}
.chlb .featuredpost .community-hub__article___text-container .article-text,
.block-community-hub-landing-page-block-1
  .featuredpost
  .community-hub__article___text-container
  .article-text {
  line-height: 1.875rem;
}
@media only screen and (max-width: 991px) {
  .chlb .featuredpost .community-hub__article___text-container .article-text,
  .block-community-hub-landing-page-block-1
    .featuredpost
    .community-hub__article___text-container
    .article-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .chlb .featuredpost .community-hub__article___text-container .article-text,
  .block-community-hub-landing-page-block-1
    .featuredpost
    .community-hub__article___text-container
    .article-text {
    font-size: 1rem;
    line-height: 1.5rem;
    clear: left;
  }
}
.chlb .featuredpost .community-hub__article___text-container .article-text a,
.block-community-hub-landing-page-block-1
  .featuredpost
  .community-hub__article___text-container
  .article-text
  a {
  font-family: "Calibre Regular";
}
.chlb
  .featuredpost
  .community-hub__article___text-container
  .article-text
  a:hover,
.block-community-hub-landing-page-block-1
  .featuredpost
  .community-hub__article___text-container
  .article-text
  a:hover {
  text-decoration: underline;
  color: #00205b;
}
@media only screen and (max-width: 991px) {
  .chlb .featuredpost .community-hub__article___text-container .article-text a,
  .block-community-hub-landing-page-block-1
    .featuredpost
    .community-hub__article___text-container
    .article-text
    a {
    font-size: 1rem;
    line-height: 1.5rem;
    display: inline-block;
    width: 100%;
  }
}
.chlb .featuredpost img,
.block-community-hub-landing-page-block-1 .featuredpost img {
  width: 100%;
  max-width: 685px;
  margin: auto;
  display: table;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .chlb .featuredpost img,
  .block-community-hub-landing-page-block-1 .featuredpost img {
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .featuredpost img,
  .block-community-hub-landing-page-block-1 .featuredpost img {
    max-width: 100%;
    height: auto;
  }
}
.chlb .featuredpost .community-hub__article___img-container,
.block-community-hub-landing-page-block-1
  .featuredpost
  .community-hub__article___img-container {
  margin-bottom: 0px;
  height: 396px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .chlb .featuredpost .community-hub__article___img-container,
  .block-community-hub-landing-page-block-1
    .featuredpost
    .community-hub__article___img-container {
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .featuredpost .community-hub__article___img-container,
  .block-community-hub-landing-page-block-1
    .featuredpost
    .community-hub__article___img-container {
    height: auto;
  }
}
.chlb .featuredpost h3,
.block-community-hub-landing-page-block-1 .featuredpost h3 {
  font-size: 2rem;
  font-family: "Calibre Bold";
  line-height: 2.5rem;
}
@media only screen and (max-width: 991px) {
  .chlb .featuredpost h3,
  .block-community-hub-landing-page-block-1 .featuredpost h3 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.chlb .featuredpost h3 a,
.block-community-hub-landing-page-block-1 .featuredpost h3 a {
  font-size: 2rem;
  font-family: "Calibre Bold";
  line-height: 2.5rem;
}
@media only screen and (max-width: 991px) {
  .chlb .featuredpost h3 a,
  .block-community-hub-landing-page-block-1 .featuredpost h3 a {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .featuredpost h3 a,
  .block-community-hub-landing-page-block-1 .featuredpost h3 a {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.chlb .bvbchlpb-1,
.block-community-hub-landing-page-block-1 .bvbchlpb-1 {
  margin-top: 50px;
}
.chlb .bvbchlpb-1 .community-detail-header,
.block-community-hub-landing-page-block-1 .bvbchlpb-1 .community-detail-header {
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .chlb .bvbchlpb-1,
  .block-community-hub-landing-page-block-1 .bvbchlpb-1 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .bvbchlpb-1,
  .block-community-hub-landing-page-block-1 .bvbchlpb-1 {
    margin-top: 30px;
  }
}
.chlb .bvbchlpb-1 .community-detail-header ul,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .community-detail-header
  ul {
  float: left;
  width: 100%;
}
.chlb .bvbchlpb-1 .community-detail-header ul li,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .community-detail-header
  ul
  li {
  color: #185d56;
  float: left;
}
.chlb .bvbchlpb-1 .community-detail-header ul li a,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .community-detail-header
  ul
  li
  a {
  color: #185d56;
}
@media only screen and (max-width: 768px) {
  .chlb .bvbchlpb-1 .community-detail-header ul li a,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .community-detail-header
    ul
    li
    a {
    text-decoration: none;
  }
}
.chlb .bvbchlpb-1 .community-detail-header ul li a:hover,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .community-detail-header
  ul
  li
  a:hover {
  color: #185d56;
}
.chlb .bvbchlpb-1 .community-detail-header ul li.community-sep,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .community-detail-header
  ul
  li.community-sep {
  color: #212529;
  padding: 0 10px;
}
.chlb .bvbchlpb-1 .views-row:last-of-type,
.block-community-hub-landing-page-block-1 .bvbchlpb-1 .views-row:last-of-type {
  margin-bottom: 25px;
  float: left;
  width: 100%;
}
.chlb .bvbchlpb-1 .views-row .community-hub-landing,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing {
  border-bottom: 2px #ccc solid;
  margin-bottom: 30px;
}
.chlb .bvbchlpb-1 .views-row .community-hub-landing .hub-mobile,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .hub-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .chlb .bvbchlpb-1 .views-row .community-hub-landing .hub-mobile,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .hub-mobile {
    display: block;
  }
}
.chlb .bvbchlpb-1 .views-row .community-hub-landing .hub-web,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .hub-web {
  display: block;
}
@media only screen and (max-width: 767px) {
  .chlb .bvbchlpb-1 .views-row .community-hub-landing .hub-web,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .hub-web {
    display: none;
  }
}
.chlb
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container {
  padding: 0 20px;
}
.chlb
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-text,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-text {
  line-height: 1.875rem;
}
@media only screen and (max-width: 991px) {
  .chlb
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___text-container
    .article-text,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___text-container
    .article-text {
    font-size: 1rem;
    line-height: 1.5rem;
    clear: left;
  }
}
.chlb
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-text
  a,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-text
  a {
  font-family: "Calibre Regular";
  display: inline-block;
  width: 100%;
}
.chlb
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-text
  a:hover,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-text
  a:hover {
  text-decoration: underline;
  color: #00205b;
}
@media only screen and (max-width: 991px) {
  .chlb
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___text-container
    .article-text
    a,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___text-container
    .article-text
    a {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.chlb
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-header,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-header {
  line-height: 1.875rem;
}
.chlb
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-header
  a,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-header
  a {
  line-height: 1.875rem;
}
@media only screen and (max-width: 991px) {
  .chlb
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___text-container
    .article-header
    a,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___text-container
    .article-header
    a {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.chlb
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-header
  a:hover,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container
  .article-header
  a:hover {
  color: #00205b;
  text-decoration: underline;
}
.chlb
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___img-container,
.chlb
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___img-container,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1
  .views-row
  .community-hub-landing
  .community-hub__article___text-container {
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .chlb .bvbchlpb-1 .views-row .community-hub-landing,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .views-row
    .community-hub-landing {
    margin-bottom: 25px;
  }
  .chlb
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___text-container,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___text-container {
    padding: 0 25px 0 15px;
    margin-bottom: 25px;
  }
  .chlb
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___img-container,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___img-container {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .bvbchlpb-1 .views-row .community-hub-landing,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .views-row
    .community-hub-landing {
    margin-bottom: 30px;
  }
  .chlb
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___text-container,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___text-container {
    margin-bottom: 20px;
  }
  .chlb
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___img-container,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1
    .views-row
    .community-hub-landing
    .community-hub__article___img-container {
    margin-bottom: 20px;
  }
}
.chlb .bvbchlpb-1 .views-row img,
.block-community-hub-landing-page-block-1 .bvbchlpb-1 .views-row img {
  width: 100%;
  max-width: 685px;
  margin: auto;
  display: table;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .chlb .bvbchlpb-1 .views-row img,
  .block-community-hub-landing-page-block-1 .bvbchlpb-1 .views-row img {
    max-width: 100%;
    height: auto;
  }
}
.chlb .bvbchlpb-1 .views-row .col-md-4,
.block-community-hub-landing-page-block-1 .bvbchlpb-1 .views-row .col-md-4 {
  padding-right: 0px;
  padding-left: 0px;
}
.chlb .bvbchlpb-1.community-hub-detail h2,
.block-community-hub-landing-page-block-1 .bvbchlpb-1.community-hub-detail h2 {
  font-size: 2.125rem;
  line-height: 2.125rem;
  font-family: "Calibre Bold";
  color: #00205b;
  margin-top: 3px;
}
@media only screen and (max-width: 768px) {
  .chlb .bvbchlpb-1.community-hub-detail h2,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    h2 {
    font-size: 1.5rem;
    line-height: 1.625rem;
  }
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail {
  border-bottom: 1px solid #ccc;
  padding-bottom: 50px;
  margin-bottom: 30px;
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail.detail-body h2,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail.detail-body
  h2 {
  color: #000;
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail.detail-body li,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail.detail-body
  li {
  margin-bottom: 15px;
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail.detail-body p,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail.detail-body
  p {
  margin-bottom: 10px;
  line-height: 1.875rem;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail.detail-body
  p:last-child,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail.detail-body
  p:last-child {
  margin-bottom: 0px;
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail.detail-body p img,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail.detail-body
  p
  img {
  margin-bottom: 0px;
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail.detail-body img,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail.detail-body
  img {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .chlb .bvbchlpb-1.community-hub-detail .community-hub-detail.detail-body img,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-hub-detail.detail-body
    img {
    height: 100%;
  }
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail img,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail
  img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail ul li,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail
  ul
  li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail ul li:before,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail
  ul
  li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail ol,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail
  ol {
  width: 100%;
  counter-reset: item;
  margin-top: 15px;
  margin-left: 14px;
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail ol li,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail
  ol
  li {
  padding-left: 15px;
  position: relative;
}
.chlb .bvbchlpb-1.community-hub-detail .community-hub-detail ol li:before,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-hub-detail
  ol
  li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
.chlb .bvbchlpb-1.community-hub-detail .community-disclosure span,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  span {
  font-family: "Calibre bold";
  padding-bottom: 7px;
  display: inline-block;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  p,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  p {
  margin-bottom: 15px;
  line-height: 1.875rem;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  p
  img,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  p
  img {
  margin-bottom: 0px;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ul,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ul {
  padding-bottom: 10px;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ul
  li,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ul
  li {
  padding-left: 30px;
  margin-bottom: 15px;
  position: relative;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ul
  li:before,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ul
  li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ol,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ol {
  width: 100%;
  counter-reset: item;
  margin-top: 15px;
  margin-left: 14px;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ol
  li,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ol
  li {
  padding-left: 15px;
  position: relative;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ol
  li:before,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-disclosure
  .community-disclosure-dec
  ol
  li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-header,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-header {
  float: left;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-header
  ul
  li,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-header
  ul
  li {
  float: left;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-header
  ul
  li
  a,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-header
  ul
  li
  a {
  color: #185d56;
  float: left;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-header
  ul
  li
  a:hover,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-header
  ul
  li
  a:hover {
  color: #185d56;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-header
  ul
  li:last-child
  span,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-header
  ul
  li:last-child
  span {
  display: none;
}
@media only screen and (max-width: 767px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    #block-communityhubshare,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    #block-communityhubshare {
    width: 100%;
    margin-bottom: 30px;
  }
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  a.addtoany_share,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  a.addtoany_share {
  display: none;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  a.community-hub-share,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  a.community-hub-share {
  display: inline-block;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  a.print__link,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  a.print__link {
  float: left;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  a.print__link
  img,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  a.print__link
  img {
  width: 32px;
  height: 32px;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  a,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  a {
  margin-left: 15px;
  cursor: pointer;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    #block-communityhubshare
    a,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    #block-communityhubshare
    a {
    margin-left: 0px;
    margin-right: 15px;
  }
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  h2,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  #block-communityhubshare
  h2 {
  font-size: 1.5rem;
  color: #212529;
  line-height: 1.8125rem;
  float: left;
  margin-right: 5px;
}
@media only screen and (max-width: 991px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    #block-communityhubshare
    h2,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    #block-communityhubshare
    h2 {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    #block-communityhubshare
    h2,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    #block-communityhubshare
    h2 {
    margin-top: 30px;
    float: none;
  }
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author {
  float: left;
  width: 100%;
  border-bottom: 4px solid #d22630;
  margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author {
    margin-bottom: 50px;
    border-bottom: 0px none;
  }
}
@media only screen and (max-width: 767px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author {
    margin-bottom: 35px;
  }
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  header,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  header {
  float: left;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    header,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    header {
    margin-bottom: 0;
  }
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  header
  #block-communityhubshare,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  header
  #block-communityhubshare {
  float: right;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  header
  #block-communityhubshare
  a.community-hub-share
  .a2a_label,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  header
  #block-communityhubshare
  a.community-hub-share
  .a2a_label {
  display: none;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-user-picture,
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-field-author-image,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-user-picture,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-field-author-image {
  width: 30%;
  margin-right: 2%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-user-picture,
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-field-author-image,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-user-picture,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-field-author-image {
    width: 100%;
    margin-right: 0%;
    float: none;
    margin-bottom: 15px;
  }
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-user-picture
  img,
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-field-author-image
  img,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-user-picture
  img,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-field-author-image
  img {
  padding: 0;
  max-width: 100%;
  border-radius: 50%;
  width: 150px;
  height: 150px;
}
@media only screen and (max-width: 767px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-user-picture
    img,
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-field-author-image
    img,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-user-picture
    img,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-field-author-image
    img {
    width: 140px;
    height: 140px;
  }
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-field-name-of-author
  .field-content,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-field-name-of-author
  .field-content {
  color: #00205b;
  text-transform: capitalize;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-field-name-of-author
  .field-content
  span,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-field-name-of-author
  .field-content
  span {
  font-family: "Calibre Bold";
  font-size: 1.375rem;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-nothing,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-nothing {
  float: left;
  width: 68%;
  color: #a1a1a4;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-nothing
  span,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-post-user
  .community-post-user-body
  .community-hub-author
  .views-field-nothing
  span {
  font-family: "Calibre Semibold";
  color: #57575c;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-field-bio,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-field-bio {
    border-bottom: 4px solid #d22630;
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-field-bio,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-post-user
    .community-post-user-body
    .community-hub-author
    .views-field-field-bio {
    margin-top: 10px;
  }
}
.chlb .bvbchlpb-1.community-hub-detail .community-share-wrap,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap {
  margin-bottom: 45px;
  float: left;
  width: 100%;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  #block-communityhubshare,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  #block-communityhubshare {
  float: right;
}
@media only screen and (max-width: 767px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-share-wrap
    #block-communityhubshare,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-share-wrap
    #block-communityhubshare {
    width: 100%;
    margin-bottom: 30px;
  }
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  #block-communityhubshare
  h2,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  #block-communityhubshare
  h2 {
  font-size: 1.5rem;
  color: #212529;
  line-height: 1.8125rem;
  float: left;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-share-wrap
    #block-communityhubshare
    h2,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-share-wrap
    #block-communityhubshare
    h2 {
    margin-top: 30px;
    float: none;
  }
}
@media only screen and (max-width: 991px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-share-wrap
    #block-communityhubshare
    h2,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-share-wrap
    #block-communityhubshare
    h2 {
    font-size: 1.125rem;
  }
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  #block-communityhubshare
  a.community-hub-share
  .a2a_label,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  #block-communityhubshare
  a.community-hub-share
  .a2a_label {
  display: none;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  #block-communityhubshare
  span.print__link,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  #block-communityhubshare
  span.print__link {
  margin-left: 15px;
  float: left;
}
@media only screen and (max-width: 767px) {
  .chlb
    .bvbchlpb-1.community-hub-detail
    .community-share-wrap
    #block-communityhubshare
    span.print__link,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-share-wrap
    #block-communityhubshare
    span.print__link {
    margin-left: 0;
    margin-right: 15px;
  }
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  #block-communityhubshare
  span.print__link
  input,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  #block-communityhubshare
  span.print__link
  input {
  background: url(../../../../themes/nationalprimepay/images/print_icon.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 32px;
  height: 32px;
  border: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.chlb .bvbchlpb-1.community-hub-detail .community-share-wrap a,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  a {
  margin-left: 15px;
  cursor: pointer;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .chlb .bvbchlpb-1.community-hub-detail .community-share-wrap a,
  .block-community-hub-landing-page-block-1
    .bvbchlpb-1.community-hub-detail
    .community-share-wrap
    a {
    margin-left: 0;
    margin-right: 15px;
  }
}
.chlb .bvbchlpb-1.community-hub-detail .community-share-wrap a.addtoany_share,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  a.addtoany_share {
  display: none;
}
.chlb
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  a.community-hub-share,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  a.community-hub-share {
  display: inline-block;
}
.chlb .bvbchlpb-1.community-hub-detail .community-share-wrap a.print__link,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  a.print__link {
  text-decoration: none;
  float: left;
}
.chlb .bvbchlpb-1.community-hub-detail .community-share-wrap a.print__link img,
.block-community-hub-landing-page-block-1
  .bvbchlpb-1.community-hub-detail
  .community-share-wrap
  a.print__link
  img {
  width: 32px;
  height: 32px;
}
.chlb .leftcol,
.block-community-hub-landing-page-block-1 .leftcol {
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .chlb .leftcol,
  .block-community-hub-landing-page-block-1 .leftcol {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .leftcol,
  .block-community-hub-landing-page-block-1 .leftcol {
    margin-top: 0px;
  }
}
.chlb .contentleft,
.block-community-hub-landing-page-block-1 .contentleft {
  padding-left: 15px;
  padding-right: 40px;
  background: #ffffff;
}
.chlb .contentleft .row,
.block-community-hub-landing-page-block-1 .contentleft .row {
  margin-left: 0;
  margin-right: 0;
}
.chlb .contentleft .share-print-mobile,
.block-community-hub-landing-page-block-1 .contentleft .share-print-mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  .chlb .contentleft,
  .block-community-hub-landing-page-block-1 .contentleft {
    padding-left: 15px;
    padding-right: 15px;
  }
  .chlb .contentleft .share-print-mobile,
  .block-community-hub-landing-page-block-1 .contentleft .share-print-mobile {
    float: right;
    width: auto;
    margin-top: 25px;
    display: block;
  }
  .chlb .contentleft .share-print-mobile .hub-icon,
  .block-community-hub-landing-page-block-1
    .contentleft
    .share-print-mobile
    .hub-icon {
    float: left;
    padding-left: 5px;
  }
  .chlb .contentleft .share-print-mobile .addtoanybuttons img,
  .block-community-hub-landing-page-block-1
    .contentleft
    .share-print-mobile
    .addtoanybuttons
    img {
    width: 20px;
    height: 20px;
  }
  .chlb .contentleft #headercontent,
  .block-community-hub-landing-page-block-1 .contentleft #headercontent {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .contentleft .share-print-mobile,
  .block-community-hub-landing-page-block-1 .contentleft .share-print-mobile {
    margin-top: -10px;
  }
  .chlb .contentleft .share-print-mobile .printlinks,
  .block-community-hub-landing-page-block-1
    .contentleft
    .share-print-mobile
    .printlinks {
    display: none;
  }
}
.chlb .article-date,
.block-community-hub-landing-page-block-1 .article-date {
  color: #185d56;
  font-size: 1.25rem;
  font-family: "Calibre Semibold";
  line-height: 1.5rem;
}
@media only screen and (max-width: 991px) {
  .chlb .article-date,
  .block-community-hub-landing-page-block-1 .article-date {
    font-size: 0.875rem;
    line-height: 1.625rem;
  }
}
.chlb .article-date a,
.block-community-hub-landing-page-block-1 .article-date a {
  color: #185d56;
  font-size: 1.25rem;
  font-family: "Calibre Semibold";
  line-height: 1.5rem;
}
.chlb .article-date a::before,
.block-community-hub-landing-page-block-1 .article-date a::before {
  content: "|";
  color: #000000;
  display: inline-block;
  width: 10px;
}
@media only screen and (max-width: 991px) {
  .chlb .article-date a,
  .block-community-hub-landing-page-block-1 .article-date a {
    font-size: 0.875rem;
    line-height: 1.625rem;
    display: none;
  }
}
.chlb .cms-container,
.block-community-hub-landing-page-block-1 .cms-container {
  max-width: 100%;
}
.chlb .col-md-7,
.chlb .col-md-12,
.block-community-hub-landing-page-block-1 .col-md-7,
.block-community-hub-landing-page-block-1 .col-md-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.chlb .col-md-8,
.chlb .col-md-5,
.chlb .col-md-3,
.block-community-hub-landing-page-block-1 .col-md-8,
.block-community-hub-landing-page-block-1 .col-md-5,
.block-community-hub-landing-page-block-1 .col-md-3 {
  padding-left: 0px;
  padding-right: 0px;
}
@media only screen and (max-width: 991px) {
  .chlb .bvbchcb-1-2,
  .block-community-hub-landing-page-block-1 .bvbchcb-1-2 {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .bvbchcb-1-2,
  .block-community-hub-landing-page-block-1 .bvbchcb-1-2 {
    padding-right: 0px;
  }
}
.chlb .bvbchcb-1-2 .views-row,
.block-community-hub-landing-page-block-1 .bvbchcb-1-2 .views-row {
  line-height: 2.125rem;
}
.chlb .bvbchcb-1-2 .views-row a,
.block-community-hub-landing-page-block-1 .bvbchcb-1-2 .views-row a {
  color: #00205b;
  text-decoration: none;
}
.chlb .bvbchcb-1-2 .views-row a:hover,
.block-community-hub-landing-page-block-1 .bvbchcb-1-2 .views-row a:hover {
  color: #00205b;
  text-decoration: underline;
}
.chlb .bvbchcb-1-2 .views-row a.is-active,
.block-community-hub-landing-page-block-1 .bvbchcb-1-2 .views-row a.is-active {
  color: #00205b;
  font-family: "Calibre Bold";
}
.chlb .hub-empty-results,
.block-community-hub-landing-page-block-1 .hub-empty-results {
  margin-bottom: 40px;
}
.chlb .bvbchcb-2-2,
.block-community-hub-landing-page-block-1 .bvbchcb-2-2 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .chlb .bvbchcb-2-2,
  .block-community-hub-landing-page-block-1 .bvbchcb-2-2 {
    margin-bottom: 0px;
  }
}
.chlb .bvbchcb-2-2 .views-row,
.block-community-hub-landing-page-block-1 .bvbchcb-2-2 .views-row {
  line-height: 2.125rem;
}
.chlb .bvbchcb-2-2 .views-row a,
.block-community-hub-landing-page-block-1 .bvbchcb-2-2 .views-row a {
  color: #00205b;
  text-decoration: none;
}
.chlb .bvbchcb-2-2 .views-row a:hover,
.block-community-hub-landing-page-block-1 .bvbchcb-2-2 .views-row a:hover {
  color: #d22630;
  text-decoration: underline;
}
.chlb .bvbchcb-2-2 .views-row a.is-active,
.block-community-hub-landing-page-block-1 .bvbchcb-2-2 .views-row a.is-active {
  color: #00205b;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 767px) {
  .chlb #block-views-block-contact-us-block-block-1 .cl-customer-service__block,
  .block-community-hub-landing-page-block-1
    #block-views-block-contact-us-block-block-1
    .cl-customer-service__block {
    margin: 90px 0 0px 0px;
  }
}
.chlb .sidebar-region,
.block-community-hub-landing-page-block-1 .sidebar-region {
  background-color: #edeeee;
  padding: 0px 15px 0 34px;
}
.chlb .sidebar-region .row,
.block-community-hub-landing-page-block-1 .sidebar-region .row {
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (max-width: 991px) {
  .chlb .sidebar-region,
  .block-community-hub-landing-page-block-1 .sidebar-region {
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .sidebar-region,
  .block-community-hub-landing-page-block-1 .sidebar-region {
    padding: 45px 15px;
  }
}
@media only screen and (max-width: 991px) {
  .chlb .sidebar-region.inner-content,
  .block-community-hub-landing-page-block-1 .sidebar-region.inner-content {
    padding: 0;
    margin: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .sidebar-region.inner-content,
  .block-community-hub-landing-page-block-1 .sidebar-region.inner-content {
    margin: 25px 0 5px;
  }
}
.chlb .sidebar-region .textresize,
.block-community-hub-landing-page-block-1 .sidebar-region .textresize {
  text-align: right;
  width: 100%;
}
.chlb .sidebar-region header h2,
.block-community-hub-landing-page-block-1 .sidebar-region header h2 {
  border-bottom: solid 1px #ccd2de;
  padding-bottom: 0px;
  margin-bottom: 25px;
  font-size: 1.875rem;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 991px) {
  .chlb .sidebar-region header h2,
  .block-community-hub-landing-page-block-1 .sidebar-region header h2 {
    font-size: 1.25rem;
    line-height: 1.875rem;
    margin-bottom: 10px;
  }
}
.chlb .sidebar-region .views-field-name a,
.block-community-hub-landing-page-block-1 .sidebar-region .views-field-name a {
  font-size: 1.25rem;
  line-height: 2.5rem;
  font-family: "Calibre Regular";
  color: #00205b;
}
@media only screen and (max-width: 991px) {
  .chlb .sidebar-region .views-field-name a,
  .block-community-hub-landing-page-block-1
    .sidebar-region
    .views-field-name
    a {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}
.chlb .sidebar-region .bvbchcb-1-2 header,
.block-community-hub-landing-page-block-1 .sidebar-region .bvbchcb-1-2 header {
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .chlb .sidebar-region .bvbchcb-1-2 header,
  .block-community-hub-landing-page-block-1
    .sidebar-region
    .bvbchcb-1-2
    header {
    margin-top: 0px;
  }
}
.chlb .sidebar-region .bvbchcb-2-2 header,
.block-community-hub-landing-page-block-1 .sidebar-region .bvbchcb-2-2 header {
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  .chlb .sidebar-region .bvbchcb-2-2 header,
  .block-community-hub-landing-page-block-1
    .sidebar-region
    .bvbchcb-2-2
    header {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .chlb .sidebar-region .bvbchcb-2-2 header,
  .block-community-hub-landing-page-block-1
    .sidebar-region
    .bvbchcb-2-2
    header {
    margin-top: 15px;
  }
}
.chlb .sidebar-region .share-print,
.block-community-hub-landing-page-block-1 .sidebar-region .share-print {
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .chlb .sidebar-region .share-print,
  .block-community-hub-landing-page-block-1 .sidebar-region .share-print {
    display: none;
  }
}
.ps-banner-community-hub .ps-banner__image-container {
  top: 0;
}
.node--type-community-hub
  #block-nationalprimepay-breadcrumbs
  ol
  li:nth-child(2):after {
  content: none;
}
@media only screen and (max-width: 768px) {
  .node--type-community-hub
    #block-nationalprimepay-breadcrumbs
    ol
    li:nth-child(2):after {
    content: " | ";
  }
}
.node--type-community-hub
  #block-nationalprimepay-breadcrumbs
  ol
  li:last-of-type {
  display: none;
}
@media only screen and (max-width: 768px) {
  .node--type-community-hub
    #block-nationalprimepay-breadcrumbs
    ol
    li:last-of-type {
    display: block;
  }
}
.node--type-community-hub .ps-resources {
  border-bottom: 0px none;
}
@media only screen and (max-width: 991px) {
  .node--type-community-hub .chlb .bvbchlpb-1 {
    margin-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .node--type-community-hub .chlb .bvbchlpb-1 {
    margin-top: 30px;
  }
}
.node--type-community-hub .chlb .bvbchlpb-1 figure.align-center {
  text-align: center;
}
.node--type-community-hub .chlb .bvbchlpb-1 figure figcaption {
  margin-top: 5px;
  text-align: center;
  font-family: "Calibre Semibold";
}
.node--type-community-hub .ps-banner-community-hub {
  height: 195px;
  margin-bottom: 0px;
  background-repeat: no-repeat !important;
  background-position: 100% 0% !important;
  background-size: 71% !important;
}
@media only screen and (max-width: 768px) {
  .node--type-community-hub .ps-banner-community-hub {
    background: none !important;
  }
}
.node--type-community-hub .ps-banner-community-hub .ps-banner__image-container {
  top: 0 !important;
}
.node--type-community-hub .ps-banner-community-hub .ps-banner__image-container {
  top: 0 !important;
}
@media only screen and (max-width: 768px) {
  .node--type-community-hub .ps-banner__breadcrumb {
    padding: 5px 15px 0;
  }
}
.node--type-community-hub .ps-banner__breadcrumb li:nth-last-child(2):after {
  content: " | ";
}
@media only screen and (max-width: 991px) {
  .node--type-community-hub .ps-banner__breadcrumb li:last-of-type {
    display: block;
  }
}
.node--type-community-hub .ps-banner__image {
  height: auto;
  position: absolute;
  left: 330px;
}
@media only screen and (max-width: 575px) {
  .node--type-community-hub .ps-banner__image {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .node--type-community-hub .ps-banner__banner-title {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .node--type-community-hub .share-print-mobile {
    position: absolute;
    right: 0px;
    top: -30px;
  }
}
.node--type-community-hub .chlb .sidebar-region .textresize,
.node--type-community-hub .chlb .sidebar-region .printlinks,
.node--type-community-hub .chlb .sidebar-region .addtoanybuttons {
  text-align: left;
  width: auto;
  padding: 0;
}
.node--type-community-hub .chlb .sidebar-region .share-print {
  float: right;
  margin-bottom: 40px;
  align-items: center;
}
.node--type-community-hub #block-addtoanybuttons-2 img,
.node--type-community-hub #block-addtoanybuttons-3 img {
  width: 20px;
  height: 20px;
}
.node--type-community-hub .community-hub-category {
  clear: both;
}
.cl-search-result {
  width: 100%;
  max-width: 920px;
  margin: auto;
  padding-bottom: 20px;
}
.cl-search-result .cl-search-result-title,
.cl-search-result .cl-search-result-title a {
  color: #00205b;
  font-family: "Calibre semiBold";
  font-size: 1.5rem;
  line-height: 1.875rem;
  text-decoration: none;
}
.cl-search-result .cl-search-result-title:hover {
  text-decoration: underline;
}
body.path-nationalprimepay-onlinehelp .cl-search-result {
  padding-left: 15px;
  padding-right: 15px;
}
body.path-nationalprimepay-onlinehelp .cl-search-result li {
  padding-bottom: 20px;
}
.path-search div[role="contentinfo"],
.path-nationalprimepay-onlinehelp div[role="contentinfo"] {
  margin-left: 15px;
  margin-bottom: 10px;
  align-items: center;
  padding: 15px 15px 15px 50px;
  width: 97%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-basis: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.path-search #block-nationalprimepay-local-tasks,
.path-nationalprimepay-onlinehelp #block-nationalprimepay-local-tasks {
  display: none;
}
.path-search #search-form,
.path-search #views-exposed-form-user-help-guide-search-page-1,
.path-nationalprimepay-onlinehelp #search-form,
.path-nationalprimepay-onlinehelp
  #views-exposed-form-user-help-guide-search-page-1 {
  align-items: center;
  padding: 15px 15px 15px 50px;
  width: 97%;
  border-top: 1px solid #ccd2de;
  border-bottom: 1px solid #ccd2de;
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-basis: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.path-search #search-form #edit-advanced,
.path-search #views-exposed-form-user-help-guide-search-page-1 #edit-advanced,
.path-nationalprimepay-onlinehelp #search-form #edit-advanced,
.path-nationalprimepay-onlinehelp
  #views-exposed-form-user-help-guide-search-page-1
  #edit-advanced {
  display: none;
}
@media only screen and (max-width: 480px) {
  .path-search #search-form,
  .path-search #views-exposed-form-user-help-guide-search-page-1,
  .path-nationalprimepay-onlinehelp #search-form,
  .path-nationalprimepay-onlinehelp
    #views-exposed-form-user-help-guide-search-page-1 {
    padding-left: 0;
  }
}
.path-search #search-form .form-item,
.path-search #views-exposed-form-user-help-guide-search-page-1 .form-item,
.path-nationalprimepay-onlinehelp #search-form .form-item,
.path-nationalprimepay-onlinehelp
  #views-exposed-form-user-help-guide-search-page-1
  .form-item {
  float: left;
  display: inline-block;
  width: 88%;
}
.path-search #search-form .form-item input,
.path-search #views-exposed-form-user-help-guide-search-page-1 .form-item input,
.path-nationalprimepay-onlinehelp #search-form .form-item input,
.path-nationalprimepay-onlinehelp
  #views-exposed-form-user-help-guide-search-page-1
  .form-item
  input {
  display: inline-block;
  width: 78%;
  margin: 0 3% 0 10px;
  padding: 14px;
}
@media only screen and (max-width: 480px) {
  .path-search #search-form .form-item label,
  .path-search
    #views-exposed-form-user-help-guide-search-page-1
    .form-item
    label,
  .path-nationalprimepay-onlinehelp #search-form .form-item label,
  .path-nationalprimepay-onlinehelp
    #views-exposed-form-user-help-guide-search-page-1
    .form-item
    label {
    margin-left: 10px;
  }
}
.path-search #search-form .form-item .form-search,
.path-search
  #views-exposed-form-user-help-guide-search-page-1
  .form-item
  .form-search,
.path-nationalprimepay-onlinehelp #search-form .form-item .form-search,
.path-nationalprimepay-onlinehelp
  #views-exposed-form-user-help-guide-search-page-1
  .form-item
  .form-search {
  display: inline-block;
  width: 78%;
  margin: 0 3% 0 10px;
  padding: 14px;
}
@media only screen and (max-width: 768px) {
  .path-search #search-form .form-item .form-search,
  .path-search
    #views-exposed-form-user-help-guide-search-page-1
    .form-item
    .form-search,
  .path-nationalprimepay-onlinehelp #search-form .form-item .form-search,
  .path-nationalprimepay-onlinehelp
    #views-exposed-form-user-help-guide-search-page-1
    .form-item
    .form-search {
    width: 60%;
  }
}
@media only screen and (max-width: 480px) {
  .path-search #search-form .form-item .form-search,
  .path-search
    #views-exposed-form-user-help-guide-search-page-1
    .form-item
    .form-search,
  .path-nationalprimepay-onlinehelp #search-form .form-item .form-search,
  .path-nationalprimepay-onlinehelp
    #views-exposed-form-user-help-guide-search-page-1
    .form-item
    .form-search {
    width: 88%;
    padding: 10px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .path-search #search-form .form-item .form-search,
  .path-search
    #views-exposed-form-user-help-guide-search-page-1
    .form-item
    .form-search,
  .path-nationalprimepay-onlinehelp #search-form .form-item .form-search,
  .path-nationalprimepay-onlinehelp
    #views-exposed-form-user-help-guide-search-page-1
    .form-item
    .form-search {
    width: 70%;
    padding: 10px;
  }
}
.path-search #search-form .button,
.path-search #views-exposed-form-user-help-guide-search-page-1 .button,
.path-nationalprimepay-onlinehelp #search-form .button,
.path-nationalprimepay-onlinehelp
  #views-exposed-form-user-help-guide-search-page-1
  .button {
  padding-top: 5px;
  line-height: 3.125rem;
  width: 160px;
  text-align: center;
  padding: 5px 0 0 0;
  background: #094943;
  outline: none;
  border: 0;
  color: #fff;
  font-size: 1.375rem;
  font-family: "Calibre Semibold";
}
@media only screen and (max-width: 480px) {
  .path-search #search-form .button,
  .path-search #views-exposed-form-user-help-guide-search-page-1 .button,
  .path-nationalprimepay-onlinehelp #search-form .button,
  .path-nationalprimepay-onlinehelp
    #views-exposed-form-user-help-guide-search-page-1
    .button {
    margin-top: 30px;
    line-height: 2.625rem;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .path-search #search-form .button,
  .path-search #views-exposed-form-user-help-guide-search-page-1 .button,
  .path-nationalprimepay-onlinehelp #search-form .button,
  .path-nationalprimepay-onlinehelp
    #views-exposed-form-user-help-guide-search-page-1
    .button {
    line-height: 2.625rem;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .path-search #search-form .button,
  .path-search #views-exposed-form-user-help-guide-search-page-1 .button,
  .path-nationalprimepay-onlinehelp #search-form .button,
  .path-nationalprimepay-onlinehelp
    #views-exposed-form-user-help-guide-search-page-1
    .button {
    line-height: 2.625rem;
  }
}
.path-search #block-nationalprimepay-content h2,
.path-nationalprimepay-onlinehelp #block-nationalprimepay-content h2 {
  font-family: "Calibre bold";
  font-size: 2.5rem;
  line-height: 2.5rem;
  padding-top: 25px;
  padding-bottom: 30px;
  width: 100%;
  max-width: 920px;
  margin: auto;
}
@media screen and (max-width: 1420px) {
  .path-search #block-nationalprimepay-content h2,
  .path-nationalprimepay-onlinehelp #block-nationalprimepay-content h2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.path-search #edit-help-link,
.path-nationalprimepay-onlinehelp #edit-help-link {
  display: none;
}
.path-search .pager,
.path-nationalprimepay-onlinehelp .pager {
  padding: 20px 0;
  font-size: 1.125rem;
  margin: 20px auto 40px;
  max-width: 920px;
  width: 100%;
}
.path-search .pager ul li,
.path-nationalprimepay-onlinehelp .pager ul li {
  float: left;
  padding: 10px;
  padding-top: 0;
}
.path-search #cl-search-result-page h3,
.path-nationalprimepay-onlinehelp #cl-search-result-page h3 {
  margin: 0 !important;
  text-align: left;
}
.path-search h3,
.path-nationalprimepay-onlinehelp h3 {
  margin: 50px 0px 20px 50px;
  text-align: center;
}
#block-userlogin {
  width: 100%;
  max-width: 920px;
  margin: auto;
  position: relative;
}
#block-userlogin #user-login-form {
  max-width: 80%;
  margin: 0 auto;
}
#block-userlogin ul {
  max-width: 80%;
  margin: 0 auto;
}
.path-location .location-content-section .pad-hit,
.path-mortgage-loan-originators .location-content-section .pad-hit,
.node--type-location .location-content-section .pad-hit,
.node--type-mortgage-loan-originators .location-content-section .pad-hit {
  padding-left: 15px;
  padding-right: 15px;
}
.path-location .nav-right__ul .nr-2 a,
.path-mortgage-loan-originators .nav-right__ul .nr-2 a,
.node--type-location .nav-right__ul .nr-2 a,
.node--type-mortgage-loan-originators .nav-right__ul .nr-2 a {
  color: #d22630;
}
.path-location .location-empty-container,
.path-mortgage-loan-originators .location-empty-container,
.node--type-location .location-empty-container,
.node--type-mortgage-loan-originators .location-empty-container {
  position: absolute;
  color: #57575c;
}
@media only screen and (max-width: 767px) {
  .path-location .location-empty-container,
  .path-mortgage-loan-originators .location-empty-container,
  .node--type-location .location-empty-container,
  .node--type-mortgage-loan-originators .location-empty-container {
    width: 96%;
  }
}
.path-location .location-empty-container .location-empty-text,
.path-mortgage-loan-originators .location-empty-container .location-empty-text,
.node--type-location .location-empty-container .location-empty-text,
.node--type-mortgage-loan-originators
  .location-empty-container
  .location-empty-text {
  font-family: "Calibre Regular";
  font-size: 1.375rem;
  line-height: 1.5rem;
  width: auto;
  display: inline-block;
  color: #57575c;
}
@media only screen and (max-width: 991px) {
  .path-location .location-empty-container .location-empty-text,
  .path-mortgage-loan-originators
    .location-empty-container
    .location-empty-text,
  .node--type-location .location-empty-container .location-empty-text,
  .node--type-mortgage-loan-originators
    .location-empty-container
    .location-empty-text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .path-location .location-empty-container .location-empty-text,
  .path-mortgage-loan-originators
    .location-empty-container
    .location-empty-text,
  .node--type-location .location-empty-container .location-empty-text,
  .node--type-mortgage-loan-originators
    .location-empty-container
    .location-empty-text {
    display: none;
  }
}
.path-location #block-locationtoptitle .text-share-print-links,
.path-mortgage-loan-originators #block-locationtoptitle .text-share-print-links,
.node--type-location #block-locationtoptitle .text-share-print-links,
.node--type-mortgage-loan-originators
  #block-locationtoptitle
  .text-share-print-links {
  height: 20px;
  padding: 0 15px;
}
@media only screen and (max-width: 767px) {
  .path-location #block-locationtoptitle .text-share-print-links,
  .path-mortgage-loan-originators
    #block-locationtoptitle
    .text-share-print-links,
  .node--type-location #block-locationtoptitle .text-share-print-links,
  .node--type-mortgage-loan-originators
    #block-locationtoptitle
    .text-share-print-links {
    height: 32px;
    margin-top: -12px;
  }
}
.path-location #edit-combine--description,
.path-mortgage-loan-originators #edit-combine--description,
.node--type-location #edit-combine--description,
.node--type-mortgage-loan-originators #edit-combine--description {
  display: none;
}
@media only screen and (max-width: 767px) {
  .path-location #edit-combine--description,
  .path-mortgage-loan-originators #edit-combine--description,
  .node--type-location #edit-combine--description,
  .node--type-mortgage-loan-originators #edit-combine--description {
    display: block;
    font-size: 1rem;
    color: #57575c;
    padding-top: 10px;
    display: inline-block;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .path-location .ps-about__header-container,
  .path-mortgage-loan-originators .ps-about__header-container,
  .node--type-location .ps-about__header-container,
  .node--type-mortgage-loan-originators .ps-about__header-container {
    margin-bottom: 20px;
  }
  .path-location .ps-about__header-container .ps-about__header-title,
  .path-mortgage-loan-originators
    .ps-about__header-container
    .ps-about__header-title,
  .node--type-location .ps-about__header-container .ps-about__header-title,
  .node--type-mortgage-loan-originators
    .ps-about__header-container
    .ps-about__header-title {
    font-size: 1.5rem;
  }
}
.path-location .location-banner,
.path-mortgage-loan-originators .location-banner,
.node--type-location .location-banner,
.node--type-mortgage-loan-originators .location-banner {
  height: 195px;
}
@media only screen and (max-width: 991px) {
  .path-location .location-banner,
  .path-mortgage-loan-originators .location-banner,
  .node--type-location .location-banner,
  .node--type-mortgage-loan-originators .location-banner {
    height: 105px;
    background: none !important;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .path-location .location-banner,
  .path-mortgage-loan-originators .location-banner,
  .node--type-location .location-banner,
  .node--type-mortgage-loan-originators .location-banner {
    height: 45px;
  }
}
.path-location .location-banner .ps-banner__image,
.path-mortgage-loan-originators .location-banner .ps-banner__image,
.node--type-location .location-banner .ps-banner__image,
.node--type-mortgage-loan-originators .location-banner .ps-banner__image {
  object-fit: cover;
  object-position: 420px;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
}
@media only screen and (max-width: 991px) {
  .path-location .location-banner .ps-banner__image,
  .path-mortgage-loan-originators .location-banner .ps-banner__image,
  .node--type-location .location-banner .ps-banner__image,
  .node--type-mortgage-loan-originators .location-banner .ps-banner__image {
    display: none;
  }
}
@media only screen and (min-width: 1401px) {
  .path-location .location-banner .ps-banner__image,
  .path-mortgage-loan-originators .location-banner .ps-banner__image,
  .node--type-location .location-banner .ps-banner__image,
  .node--type-mortgage-loan-originators .location-banner .ps-banner__image {
    width: 63.5%;
    object-position: center;
  }
}
@media only screen and (max-width: 991px) {
  .path-location .location-banner .ps-banner__image,
  .path-mortgage-loan-originators .location-banner .ps-banner__image,
  .node--type-location .location-banner .ps-banner__image,
  .node--type-mortgage-loan-originators .location-banner .ps-banner__image {
    object-position: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .path-location .location-banner .ps-banner__image,
  .path-mortgage-loan-originators .location-banner .ps-banner__image,
  .node--type-location .location-banner .ps-banner__image,
  .node--type-mortgage-loan-originators .location-banner .ps-banner__image {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: relative;
    right: inherit;
    max-height: 109px;
  }
}
@media only screen and (max-width: 991px) {
  .path-location .location-banner .ps-banner__banner-title h1,
  .path-mortgage-loan-originators .location-banner .ps-banner__banner-title h1,
  .node--type-location .location-banner .ps-banner__banner-title h1,
  .node--type-mortgage-loan-originators
    .location-banner
    .ps-banner__banner-title
    h1 {
    font-size: 1.5rem;
    line-height: 1.4375rem;
    padding: 10px 10px 0 10px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .path-location .location-banner .ps-banner__banner-title h1,
  .path-mortgage-loan-originators .location-banner .ps-banner__banner-title h1,
  .node--type-location .location-banner .ps-banner__banner-title h1,
  .node--type-mortgage-loan-originators
    .location-banner
    .ps-banner__banner-title
    h1 {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .path-location .location-banner .ps-header__nav-container,
  .path-mortgage-loan-originators .location-banner .ps-header__nav-container,
  .node--type-location .location-banner .ps-header__nav-container,
  .node--type-mortgage-loan-originators
    .location-banner
    .ps-header__nav-container {
    padding: 7px 15px 0;
  }
}
@media only screen and (max-width: 767px) {
  .path-location .location-banner .ps-header__nav-container,
  .path-mortgage-loan-originators .location-banner .ps-header__nav-container,
  .node--type-location .location-banner .ps-header__nav-container,
  .node--type-mortgage-loan-originators
    .location-banner
    .ps-header__nav-container {
    display: block !important;
  }
}
.path-location #block-exposedformlocationpage-1,
.path-location #block-exposedformmortgage-loan-originators-of-locationpage-1,
.path-mortgage-loan-originators #block-exposedformlocationpage-1,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1,
.node--type-location #block-exposedformlocationpage-1,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1,
.node--type-mortgage-loan-originators #block-exposedformlocationpage-1,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1 {
  padding: 0 15px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 991px) {
  .path-location #block-exposedformlocationpage-1,
  .path-location #block-exposedformmortgage-loan-originators-of-locationpage-1,
  .path-mortgage-loan-originators #block-exposedformlocationpage-1,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1,
  .node--type-location #block-exposedformlocationpage-1,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1,
  .node--type-mortgage-loan-originators #block-exposedformlocationpage-1,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1 {
    margin: 0 auto 25px;
  }
}
.path-location #block-exposedformlocationpage-1 form,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form,
.path-mortgage-loan-originators #block-exposedformlocationpage-1 form,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form,
.node--type-location #block-exposedformlocationpage-1 form,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form,
.node--type-mortgage-loan-originators #block-exposedformlocationpage-1 form,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form {
  width: 100%;
  border-top: 1px solid #ccd2de;
  border-bottom: 1px solid #ccd2de;
  padding: 28px 0;
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-basis: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.path-location
  #block-exposedformlocationpage-1
  form
  #edit-geolocation-geocoder-google-geocoding-api--description,
.path-location
  #block-exposedformlocationpage-1
  form
  .form-item-field-marker-on-map-proximity,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  #edit-geolocation-geocoder-google-geocoding-api--description,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-field-marker-on-map-proximity,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  #edit-geolocation-geocoder-google-geocoding-api--description,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-field-marker-on-map-proximity,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  #edit-geolocation-geocoder-google-geocoding-api--description,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-field-marker-on-map-proximity,
.node--type-location
  #block-exposedformlocationpage-1
  form
  #edit-geolocation-geocoder-google-geocoding-api--description,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-field-marker-on-map-proximity,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  #edit-geolocation-geocoder-google-geocoding-api--description,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-field-marker-on-map-proximity,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  #edit-geolocation-geocoder-google-geocoding-api--description,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-field-marker-on-map-proximity,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  #edit-geolocation-geocoder-google-geocoding-api--description,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-field-marker-on-map-proximity {
  display: none;
}
.path-location #block-exposedformlocationpage-1 form .field-suffix,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .field-suffix,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix,
.node--type-location #block-exposedformlocationpage-1 form .field-suffix,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .field-suffix,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix {
  position: absolute;
  left: 0px;
  top: 60px;
}
@media only screen and (max-width: 991px) {
  .path-location #block-exposedformlocationpage-1 form .field-suffix,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .field-suffix,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix,
  .node--type-location #block-exposedformlocationpage-1 form .field-suffix,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .field-suffix,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix {
    top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .path-location #block-exposedformlocationpage-1 form .field-suffix,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .field-suffix,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix,
  .node--type-location #block-exposedformlocationpage-1 form .field-suffix,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .field-suffix,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix {
    top: 95px;
  }
}
.path-location #block-exposedformlocationpage-1 form .field-suffix a,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .field-suffix
  a,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a,
.node--type-location #block-exposedformlocationpage-1 form .field-suffix a,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .field-suffix
  a,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a {
  color: #00205b;
  cursor: pointer;
}
.path-location #block-exposedformlocationpage-1 form .field-suffix a:hover,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a:hover,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .field-suffix
  a:hover,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a:hover,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .field-suffix
  a:hover,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a:hover,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .field-suffix
  a:hover,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a:hover {
  color: #00205b;
  text-decoration: underline;
}
.path-location
  #block-exposedformlocationpage-1
  form
  .field-suffix
  a:not([href]):not([tabindex]),
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a:not([href]):not([tabindex]),
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .field-suffix
  a:not([href]):not([tabindex]),
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a:not([href]):not([tabindex]),
.node--type-location
  #block-exposedformlocationpage-1
  form
  .field-suffix
  a:not([href]):not([tabindex]),
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a:not([href]):not([tabindex]),
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .field-suffix
  a:not([href]):not([tabindex]),
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  a:not([href]):not([tabindex]) {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .path-location #block-exposedformlocationpage-1 form .field-suffix a,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix
    a,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .field-suffix
    a,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix
    a,
  .node--type-location #block-exposedformlocationpage-1 form .field-suffix a,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix
    a,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .field-suffix
    a,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .field-suffix
    a {
    font-size: 1rem;
  }
}
.path-location
  #block-exposedformlocationpage-1
  form
  .field-suffix
  + .description,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  + .description,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .field-suffix
  + .description,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  + .description,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .field-suffix
  + .description,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  + .description,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .field-suffix
  + .description,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .field-suffix
  + .description {
  display: none;
}
@media only screen and (max-width: 991px) {
  .path-location #block-exposedformlocationpage-1 form,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form,
  .path-mortgage-loan-originators #block-exposedformlocationpage-1 form,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form,
  .node--type-location #block-exposedformlocationpage-1 form,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form,
  .node--type-mortgage-loan-originators #block-exposedformlocationpage-1 form,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form {
    position: relative;
    padding: 28px 0 50px;
  }
}
.path-location #block-exposedformlocationpage-1 form .form-item-combine,
.path-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api,
.path-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address,
.node--type-location #block-exposedformlocationpage-1 form .form-item-combine,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address {
  display: inline-block;
  float: left;
  width: 88%;
}
@media only screen and (max-width: 991px) {
  .path-location #block-exposedformlocationpage-1 form .form-item-combine,
  .path-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api,
  .path-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address,
  .node--type-location #block-exposedformlocationpage-1 form .form-item-combine,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address {
    width: 100%;
  }
}
.path-location #block-exposedformlocationpage-1 form .form-item-combine label,
.path-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  label,
.path-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  label,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  label,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  label,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  label,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  label,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  label,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  label,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  label,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  label,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  label,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  label,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  label,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  label,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  label,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  label,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  label,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  label,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  label,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  label,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  label,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  label,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  label {
  display: inline-block;
  float: left;
  width: 18%;
  font-family: "Calibre Bold";
  font-size: 1.125rem;
  margin-bottom: 0;
  padding: 5px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .path-location #block-exposedformlocationpage-1 form .form-item-combine label,
  .path-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .path-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    label,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    label,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    label,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    label,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    label,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label {
    width: 21%;
  }
}
@media only screen and (max-width: 991px) {
  .path-location #block-exposedformlocationpage-1 form .form-item-combine label,
  .path-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .path-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    label,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    label,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    label,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    label,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    label,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    label,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    label {
    display: none;
  }
}
.path-location #block-exposedformlocationpage-1 form .form-item-combine input,
.path-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  input,
.path-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  input,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  input,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  input,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  input,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  input,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  input,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  input,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  input,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  input,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  input,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  input,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  input,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  input,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  input,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  input,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  input,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  input,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  input,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  input,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  input,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  input,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  input {
  display: inline-block;
  float: left;
  width: 79%;
  margin: 0 3% 0 0;
  padding: 14px;
  background-image: none !important;
  border-radius: 0;
  color: #495057;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .path-location #block-exposedformlocationpage-1 form .form-item-combine input,
  .path-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .path-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    input,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    input,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    input,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    input,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    input,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input {
    width: 76%;
  }
}
@media only screen and (max-width: 991px) {
  .path-location #block-exposedformlocationpage-1 form .form-item-combine input,
  .path-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .path-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    input,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    input,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    input,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    input,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    input,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    input,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    input {
    width: 100%;
    height: 50px;
  }
}
.path-location
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper,
.path-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper,
.path-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper {
  position: relative;
  float: left;
  width: 80%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .path-location
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .path-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .path-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper {
    width: 76%;
  }
}
@media only screen and (max-width: 991px) {
  .path-location
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .path-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .path-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper {
    width: 100%;
  }
}
.path-location
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  input,
.path-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  input,
.path-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  input,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  input,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  input,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  input,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  input,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  input,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  input,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  input,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  input,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  input,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  input,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  input,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  input,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  input,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  input,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  input,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  input,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  input,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  input,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  input,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  input,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  input {
  width: 100%;
}
.path-location
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.path-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.path-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-location
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-combine
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .form-item-geolocation-geocoder-google-geocoding-api
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  .js-form-item-geolocation-geocoder-address
  .suggestions-input-wrapper
  .loc_autocomplete-suggestions {
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 9999;
}
@media only screen and (max-width: 991px) {
  .path-location
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .path-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .path-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-location
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-combine
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .form-item-geolocation-geocoder-google-geocoding-api
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    .js-form-item-geolocation-geocoder-address
    .suggestions-input-wrapper
    .loc_autocomplete-suggestions {
    top: 50px;
  }
}
.path-location #block-exposedformlocationpage-1 form input.button,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  input.button,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  input.button,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  input.button,
.node--type-location #block-exposedformlocationpage-1 form input.button,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  input.button,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  form
  input.button,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  form
  input.button {
  display: inline-block;
  float: left;
  width: 12%;
  font-size: 1.375rem;
  font-family: "Calibre Bold";
  background: #185d56
    url("../../../../themes/nationalprimepay/images/Search.png") no-repeat 80%
    55%;
  color: white;
  padding: 20px 30px 10px 8px;
  text-decoration: none;
  transition: 0.25s all ease-in-out;
  line-height: 1.625rem;
  text-align: center;
  border: 0px none;
  border-radius: 0;
}
@media only screen and (max-width: 991px) {
  .path-location #block-exposedformlocationpage-1 form input.button,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    input.button,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    input.button,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    input.button,
  .node--type-location #block-exposedformlocationpage-1 form input.button,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    input.button,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    input.button,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    input.button {
    background-image: none;
    position: absolute;
    right: 4px;
    font-size: 1.125rem;
    line-height: 1.25rem;
    padding: 14px 10px 10px 10px;
    top: 31px;
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .path-location #block-exposedformlocationpage-1 form input.button,
  .path-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    input.button,
  .path-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    input.button,
  .path-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    input.button,
  .node--type-location #block-exposedformlocationpage-1 form input.button,
  .node--type-location
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    input.button,
  .node--type-mortgage-loan-originators
    #block-exposedformlocationpage-1
    form
    input.button,
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form
    input.button {
    font-size: 1rem;
  }
}
.path-location #block-exposedformlocationpage-1 .geolocation-common-map,
.path-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  .geolocation-common-map,
.path-mortgage-loan-originators
  #block-exposedformlocationpage-1
  .geolocation-common-map,
.path-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  .geolocation-common-map,
.node--type-location #block-exposedformlocationpage-1 .geolocation-common-map,
.node--type-location
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  .geolocation-common-map,
.node--type-mortgage-loan-originators
  #block-exposedformlocationpage-1
  .geolocation-common-map,
.node--type-mortgage-loan-originators
  #block-exposedformmortgage-loan-originators-of-locationpage-1
  .geolocation-common-map {
  clear: both;
}
.path-location #block-nationalprimepay-content,
.path-mortgage-loan-originators #block-nationalprimepay-content,
.node--type-location #block-nationalprimepay-content,
.node--type-mortgage-loan-originators #block-nationalprimepay-content {
  padding: 0 15px;
  clear: both;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content,
  .path-mortgage-loan-originators #block-nationalprimepay-content,
  .node--type-location #block-nationalprimepay-content,
  .node--type-mortgage-loan-originators #block-nationalprimepay-content {
    padding: 0;
  }
}
.path-location #block-nationalprimepay-content .back-and-ATM,
.path-mortgage-loan-originators #block-nationalprimepay-content .back-and-ATM,
.node--type-location #block-nationalprimepay-content .back-and-ATM,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .back-and-ATM {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .path-location #block-nationalprimepay-content .back-and-ATM,
  .path-mortgage-loan-originators #block-nationalprimepay-content .back-and-ATM,
  .node--type-location #block-nationalprimepay-content .back-and-ATM,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .back-and-ATM {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content .back-and-ATM,
  .path-mortgage-loan-originators #block-nationalprimepay-content .back-and-ATM,
  .node--type-location #block-nationalprimepay-content .back-and-ATM,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .back-and-ATM {
    border-top: 1px solid #ccd2de;
    padding-top: 30px;
  }
}
.path-location
  #block-nationalprimepay-content
  .back-and-ATM
  a.back-to-results-link,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .back-and-ATM
  a.back-to-results-link,
.node--type-location
  #block-nationalprimepay-content
  .back-and-ATM
  a.back-to-results-link,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .back-and-ATM
  a.back-to-results-link {
  color: #00205b;
  font-size: 1.25rem;
  text-decoration: none;
}
.path-location
  #block-nationalprimepay-content
  .back-and-ATM
  a.back-to-results-link
  u:hover,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .back-and-ATM
  a.back-to-results-link
  u:hover,
.node--type-location
  #block-nationalprimepay-content
  .back-and-ATM
  a.back-to-results-link
  u:hover,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .back-and-ATM
  a.back-to-results-link
  u:hover {
  text-decoration: none;
}
.path-location #block-nationalprimepay-content .view-content.view-content-empty,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .view-content.view-content-empty,
.node--type-location
  #block-nationalprimepay-content
  .view-content.view-content-empty,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .view-content.view-content-empty {
  display: none;
}
.path-location #block-nationalprimepay-content .empty-wrapper,
.path-mortgage-loan-originators #block-nationalprimepay-content .empty-wrapper,
.node--type-location #block-nationalprimepay-content .empty-wrapper,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .empty-wrapper {
  min-height: 915px;
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content .empty-wrapper,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .empty-wrapper,
  .node--type-location #block-nationalprimepay-content .empty-wrapper,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .empty-wrapper {
    min-height: 870px;
  }
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .empty-wrapper
    .geolocation-common-map,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .empty-wrapper
    .geolocation-common-map,
  .node--type-location
    #block-nationalprimepay-content
    .empty-wrapper
    .geolocation-common-map,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .empty-wrapper
    .geolocation-common-map {
    width: 96% !important;
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .empty-wrapper
    .geolocation-common-map.mobile-map,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .empty-wrapper
    .geolocation-common-map.mobile-map,
  .node--type-location
    #block-nationalprimepay-content
    .empty-wrapper
    .geolocation-common-map.mobile-map,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .empty-wrapper
    .geolocation-common-map.mobile-map {
    top: 270px;
  }
}
.path-location
  #block-nationalprimepay-content
  .empty-wrapper
  .location-map-mobile,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .empty-wrapper
  .location-map-mobile,
.node--type-location
  #block-nationalprimepay-content
  .empty-wrapper
  .location-map-mobile,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .empty-wrapper
  .location-map-mobile {
  position: absolute;
  top: 70px;
  right: 15px;
  width: auto;
}
.path-location #block-nationalprimepay-content .empty-wrapper .messages--error,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .empty-wrapper
  .messages--error,
.node--type-location
  #block-nationalprimepay-content
  .empty-wrapper
  .messages--error,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .empty-wrapper
  .messages--error {
  background: none;
  border: 0px none;
  text-align: center;
  box-shadow: none;
  color: #000;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .empty-wrapper
    .messages--error,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .empty-wrapper
    .messages--error,
  .node--type-location
    #block-nationalprimepay-content
    .empty-wrapper
    .messages--error,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .empty-wrapper
    .messages--error {
    font-size: 1rem;
  }
}
.path-location
  #block-nationalprimepay-content
  .empty-wrapper
  .zip-code-empty-message,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .empty-wrapper
  .zip-code-empty-message,
.node--type-location
  #block-nationalprimepay-content
  .empty-wrapper
  .zip-code-empty-message,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .empty-wrapper
  .zip-code-empty-message {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .empty-wrapper
    .zip-code-empty-message,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .empty-wrapper
    .zip-code-empty-message,
  .node--type-location
    #block-nationalprimepay-content
    .empty-wrapper
    .zip-code-empty-message,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .empty-wrapper
    .zip-code-empty-message {
    width: 88%;
    margin: 0 0 0 25px;
  }
}
.path-location #block-nationalprimepay-content a.find-a-pulse-link,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  a.find-a-pulse-link,
.node--type-location #block-nationalprimepay-content a.find-a-pulse-link,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  a.find-a-pulse-link {
  float: right;
  text-decoration: none;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
  max-width: 40%;
}
@media only screen and (max-width: 991px) {
  .path-location #block-nationalprimepay-content a.find-a-pulse-link,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    a.find-a-pulse-link,
  .node--type-location #block-nationalprimepay-content a.find-a-pulse-link,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    a.find-a-pulse-link {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content a.find-a-pulse-link,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    a.find-a-pulse-link,
  .node--type-location #block-nationalprimepay-content a.find-a-pulse-link,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    a.find-a-pulse-link {
    float: left;
    display: none;
    max-width: 100%;
  }
}
.path-location #block-nationalprimepay-content a.find-a-pulse-link sup,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  a.find-a-pulse-link
  sup,
.node--type-location #block-nationalprimepay-content a.find-a-pulse-link sup,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  a.find-a-pulse-link
  sup {
  font-size: 100%;
  top: 0;
}
.path-location
  #block-nationalprimepay-content
  a.find-a-pulse-link
  .find-a-pulse-arrow,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  a.find-a-pulse-link
  .find-a-pulse-arrow,
.node--type-location
  #block-nationalprimepay-content
  a.find-a-pulse-link
  .find-a-pulse-arrow,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  a.find-a-pulse-link
  .find-a-pulse-arrow {
  vertical-align: top;
  margin-left: 10px;
}
.path-location #block-nationalprimepay-content a.find-a-pulse-link:hover,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  a.find-a-pulse-link:hover,
.node--type-location #block-nationalprimepay-content a.find-a-pulse-link:hover,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  a.find-a-pulse-link:hover {
  color: #185d56;
}
.path-location #block-nationalprimepay-content .location-map-mobile,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-mobile,
.node--type-location #block-nationalprimepay-content .location-map-mobile,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-mobile {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content .location-map-mobile,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-mobile,
  .node--type-location #block-nationalprimepay-content .location-map-mobile,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-mobile {
    display: block !important;
    color: #00205b;
    font-size: 1rem;
    text-decoration: underline;
    margin-bottom: 30px;
    width: 100%;
    text-align: right;
    padding-right: 25px;
  }
}
.path-location #block-nationalprimepay-content .location-map-mobile.show-map,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-mobile.show-map,
.node--type-location
  #block-nationalprimepay-content
  .location-map-mobile.show-map,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-mobile.show-map {
  background: url(../../../../themes/nationalprimepay/images/down-arrow.png)
    no-repeat center right;
  background-size: 14px;
}
.path-location #block-nationalprimepay-content .location-map-mobile.hide-map,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-mobile.hide-map,
.node--type-location
  #block-nationalprimepay-content
  .location-map-mobile.hide-map,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-mobile.hide-map {
  background: url(../../../../themes/nationalprimepay/images/up-arrow.png)
    no-repeat center right;
  background-size: 14px;
  margin-bottom: 0;
}
.path-location #block-nationalprimepay-content header,
.path-mortgage-loan-originators #block-nationalprimepay-content header,
.node--type-location #block-nationalprimepay-content header,
.node--type-mortgage-loan-originators #block-nationalprimepay-content header {
  float: left;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content header,
  .path-mortgage-loan-originators #block-nationalprimepay-content header,
  .node--type-location #block-nationalprimepay-content header,
  .node--type-mortgage-loan-originators #block-nationalprimepay-content header {
    padding: 0 15px;
  }
}
.path-location #block-nationalprimepay-content header .results,
.path-mortgage-loan-originators #block-nationalprimepay-content header .results,
.node--type-location #block-nationalprimepay-content header .results,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  header
  .results {
  position: absolute;
  top: 0px;
  left: 15px;
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content header .results,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    header
    .results,
  .node--type-location #block-nationalprimepay-content header .results,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    header
    .results {
    top: 40px;
  }
}
.path-location #block-nationalprimepay-content header .results.map,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  header
  .results.map,
.node--type-location #block-nationalprimepay-content header .results.map,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  header
  .results.map {
  top: 300px;
}
.path-location #block-nationalprimepay-content .geolocation-common-map,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map,
.node--type-location #block-nationalprimepay-content .geolocation-common-map,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map {
  float: left;
  width: 100%;
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .path-location #block-nationalprimepay-content .geolocation-common-map,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map,
  .node--type-location #block-nationalprimepay-content .geolocation-common-map,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content .geolocation-common-map,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map,
  .node--type-location #block-nationalprimepay-content .geolocation-common-map,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map {
    padding: 0 15px;
  }
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations {
  overflow-y: scroll;
  max-height: 700px;
  min-height: 700px !important;
}
@media only screen and (max-width: 991px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations {
    min-height: 750px;
  }
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations {
    min-height: inherit;
  }
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail {
  float: left;
  width: 42%;
  margin-right: 4%;
}
@media only screen and (max-width: 991px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail {
    width: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail {
    width: 100%;
    margin-right: 0;
  }
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail {
  font-family: "Calibre Bold";
  margin-bottom: 50px;
  position: relative;
  display: none;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail:before,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail:before,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail:before,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail:before,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail:before,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail:before,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail:before,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail:before {
  content: url("../../../../themes/nationalprimepay/images/locationred-icon.png");
  position: absolute;
  left: 0;
  width: 23px;
  height: 36px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail
  h3,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail
  h3,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail
  h3,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail
  h3,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail
  h3,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail
  h3,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-title-detail
  h3,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-title-detail
  h3 {
  margin-left: 45px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-pad,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-pad,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-pad,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-pad,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-pad,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-pad,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-pad,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-pad {
  padding-left: 45px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-info,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .business-hrs,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .contact-detail,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .manager-name,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-info,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .business-hrs,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .contact-detail,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .manager-name,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-info,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .business-hrs,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .contact-detail,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .manager-name,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-info,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .business-hrs,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .contact-detail,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .manager-name,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-info,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .business-hrs,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .contact-detail,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .manager-name,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-info,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .business-hrs,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .contact-detail,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .manager-name,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-info,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .business-hrs,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .contact-detail,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .manager-name,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-info,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .business-hrs,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .contact-detail,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .manager-name {
  margin-bottom: 45px;
  color: #57575c;
  font-size: 1.125rem;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-info
  h5,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .business-hrs
  h5,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .contact-detail
  h5,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .manager-name
  h5,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-info
  h5,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .business-hrs
  h5,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .contact-detail
  h5,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .manager-name
  h5,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-info
  h5,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .business-hrs
  h5,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .contact-detail
  h5,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .manager-name
  h5,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-info
  h5,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .business-hrs
  h5,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .contact-detail
  h5,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .manager-name
  h5,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-info
  h5,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .business-hrs
  h5,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .contact-detail
  h5,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .manager-name
  h5,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-info
  h5,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .business-hrs
  h5,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .contact-detail
  h5,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .manager-name
  h5,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .location-info
  h5,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .business-hrs
  h5,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .contact-detail
  h5,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .manager-name
  h5,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .location-info
  h5,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .business-hrs
  h5,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .contact-detail
  h5,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .manager-name
  h5 {
  font-size: 1.125rem;
  color: #000000;
  margin-bottom: 5px;
  font-family: "Calibre Bold";
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .ATM-safe-deposit-box-details,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .ATM-safe-deposit-box-details,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .ATM-safe-deposit-box-details,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .ATM-safe-deposit-box-details,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .ATM-safe-deposit-box-details,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .ATM-safe-deposit-box-details,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .ATM-safe-deposit-box-details,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .ATM-safe-deposit-box-details {
  margin-bottom: 45px;
  color: #57575c;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .ATM-safe-deposit-box-details
  img,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .ATM-safe-deposit-box-details
  img,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .ATM-safe-deposit-box-details
  img,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .ATM-safe-deposit-box-details
  img,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .ATM-safe-deposit-box-details
  img,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .ATM-safe-deposit-box-details
  img,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .ATM-safe-deposit-box-details
  img,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .ATM-safe-deposit-box-details
  img {
  padding-right: 10px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  a.get-direction-link,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  a.get-direction-link,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  a.get-direction-link,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  a.get-direction-link,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  a.get-direction-link,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  a.get-direction-link,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  a.get-direction-link,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  a.get-direction-link {
  font-family: "Calibre Bold";
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation {
  border-bottom: 2px solid #ccd2de;
  padding: 30px 0;
  box-shadow: 0px 0px 6px #fff;
  border-radius: 2px;
  padding-right: 20px;
  width: 98%;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover {
  box-shadow: 0px 0px 6px #ccc;
  border-radius: 2px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  margin: 3px 2px 2px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover:first-child,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover:first-child,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover:first-child,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover:first-child,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover:first-child,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover:first-child,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover:first-child,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover:first-child {
  padding-top: 30px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover
  .location-content::before,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover
  .location-content::before,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover
  .location-content::before,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover
  .location-content::before,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover
  .location-content::before,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover
  .location-content::before,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:hover
  .location-content::before,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:hover
  .location-content::before {
  content: url("../../../../themes/nationalprimepay/images/locationgreen-icon.png");
  position: absolute;
  left: 0;
  width: 23px;
  height: 36px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:first-child,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:first-child,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:first-child,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:first-child,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:first-child,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:first-child,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:first-child,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:first-child {
  padding-top: 0;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content {
  padding-left: 45px;
  position: relative;
  margin: 10px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content:before,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content:before,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content:before,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content:before,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content:before,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content:before,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content:before,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content:before {
  content: url("../../../../themes/nationalprimepay/images/locationred-icon.png");
  position: absolute;
  left: 0;
  width: 23px;
  height: 36px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-title,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-title,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-title,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-title,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-title,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-title,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-title,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-title {
  margin-bottom: 5px;
  padding-top: 5px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-title
  a,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-title
  a,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-title
  a,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-title
  a,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-title
  a,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-title
  a,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-title
  a,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-title
  a {
  color: #000;
  text-decoration: none;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
}
@media only screen and (max-width: 991px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-title
    a,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-title
    a,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-title
    a,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-title
    a,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-title
    a,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-title
    a,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-title
    a,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-title
    a {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-title
    a,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-title
    a,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-title
    a,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-title
    a,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-title
    a,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-title
    a,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-title
    a,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-title
    a {
    font-size: 1.125rem;
  }
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-address
  p,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-address
  .field-content,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-zip-code,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-nmls-id,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-language,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-address
  p,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-address
  .field-content,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-zip-code,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-nmls-id,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-language,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-address
  p,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-address
  .field-content,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-zip-code,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-nmls-id,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-language,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-address
  p,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-address
  .field-content,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-zip-code,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-nmls-id,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-language,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-address
  p,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-address
  .field-content,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-zip-code,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-nmls-id,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-language,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-address
  p,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-address
  .field-content,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-zip-code,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-nmls-id,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-language,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-address
  p,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-address
  .field-content,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-zip-code,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-nmls-id,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-language,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-address
  p,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-address
  .field-content,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-zip-code,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-nmls-id,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-language {
  color: #57575c;
  font-size: 1.125rem;
  font-family: "Calibre Regular";
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    p,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    .field-content,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-zip-code,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-nmls-id,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-language,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    p,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    .field-content,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-zip-code,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-nmls-id,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-language,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    p,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    .field-content,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-zip-code,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-nmls-id,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-language,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    p,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    .field-content,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-zip-code,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-nmls-id,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-language,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    p,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    .field-content,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-zip-code,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-nmls-id,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-language,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    p,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    .field-content,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-zip-code,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-nmls-id,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-language,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    p,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    .field-content,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-zip-code,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-nmls-id,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-language,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    p,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    .field-content,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-zip-code,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-nmls-id,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-language {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    p
    span,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    .field-content
    span,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-zip-code
    span,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-nmls-id
    span,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-language
    span,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    p
    span,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    .field-content
    span,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-zip-code
    span,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-nmls-id
    span,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-language
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    p
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    .field-content
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-zip-code
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-nmls-id
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-language
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    p
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    .field-content
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-zip-code
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-nmls-id
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-language
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    p
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    .field-content
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-zip-code
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-nmls-id
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-language
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    p
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    .field-content
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-zip-code
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-nmls-id
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-language
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    p
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-address
    .field-content
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-zip-code
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-nmls-id
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-language
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    p
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-address
    .field-content
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-zip-code
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-nmls-id
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-language
    span {
    font-size: 1rem !important;
  }
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-zip-code,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-nothing,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-zip-code,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-nothing,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-zip-code,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-nothing,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-zip-code,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-nothing,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-zip-code,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-nothing,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-zip-code,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-nothing,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-zip-code,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-nothing,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-zip-code,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-nothing {
  display: none;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-view-node,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-view-node,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-view-node,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-view-node,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-view-node,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-view-node,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-view-node,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-view-node {
  display: none;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-view-node
  a,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-view-node
  a,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-view-node
  a,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-view-node
  a,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-view-node
  a,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-view-node
  a,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-view-node
  a,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-view-node
  a {
  color: #00205b;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-view-node
    a,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-view-node
    a,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-view-node
    a,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-view-node
    a,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-view-node
    a,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-view-node
    a,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-view-node
    a,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-view-node
    a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-view-node,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-view-node,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-view-node,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-view-node,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-view-node,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-view-node,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-view-node,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-view-node {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-safe-deposit-box,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-safe-deposit-box,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-safe-deposit-box,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-safe-deposit-box,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-safe-deposit-box,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-safe-deposit-box,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-safe-deposit-box,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-safe-deposit-box {
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-safe-deposit-box,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-safe-deposit-box,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-safe-deposit-box,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-safe-deposit-box,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-safe-deposit-box,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-safe-deposit-box,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-safe-deposit-box,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-safe-deposit-box {
    top: 40px;
  }
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field {
  clear: both;
  color: #57575c;
  font-size: 1.125rem;
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field {
    font-size: 1rem !important;
  }
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field
    span,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field
    span,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field
    span,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field
    span,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field
    span {
    font-size: 1rem !important;
  }
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-label,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-label,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-label,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-label,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-label,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-label,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-label,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-label {
  font-family: "Calibre Bold";
  float: left;
  padding-right: 10px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-contact-me
  a,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-contact-me
  a,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-contact-me
  a,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-contact-me
  a,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-contact-me
  a,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-contact-me
  a,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation
  .location-content
  .views-field-field-contact-me
  a,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation
  .location-content
  .views-field-field-contact-me
  a {
  color: #00205b;
  font-size: 1.125rem;
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-contact-me
    a,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-contact-me
    a,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-contact-me
    a,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-contact-me
    a,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-contact-me
    a,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-contact-me
    a,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation
    .location-content
    .views-field-field-contact-me
    a,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation
    .location-content
    .views-field-field-contact-me
    a {
    font-size: 1rem;
  }
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:last-child,
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:last-child,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:last-child,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:last-child,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:last-child,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:last-child,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations
  .geolocation:last-child,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations-detail
  .geolocation:last-child {
  border-bottom: 0px none;
}
@media only screen and (max-width: 991px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation:last-child,
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation:last-child,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation:last-child,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation:last-child,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation:last-child,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation:last-child,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations
    .geolocation:last-child,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations-detail
    .geolocation:last-child {
    border-bottom: 2px solid #ccd2de;
  }
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container {
  float: right;
  width: 54% !important;
  height: 625px !important;
}
@media only screen and (max-width: 991px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container {
    width: 61% !important;
  }
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container {
    display: none !important;
    float: left;
    width: 100% !important;
    height: 225px !important;
    margin-bottom: 30px;
  }
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container.mobile-map,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container.mobile-map,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container.mobile-map,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container.mobile-map {
  display: block !important;
  margin-bottom: 75px;
}
.path-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container
  .geolocation-google-map,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container
  .geolocation-google-map,
.node--type-location
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container
  .geolocation-google-map,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-container
  .geolocation-google-map {
  height: 625px !important;
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container
    .geolocation-google-map,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container
    .geolocation-google-map,
  .node--type-location
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container
    .geolocation-google-map,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-container
    .geolocation-google-map {
    height: 225px !important;
  }
}
.path-location #block-nationalprimepay-content .location-details,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-details,
.node--type-location #block-nationalprimepay-content .location-details,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-details {
  margin-top: 0px;
  margin-bottom: 45px;
}
.path-location #block-nationalprimepay-content .location-map-bottom-content,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-bottom-content,
.node--type-location
  #block-nationalprimepay-content
  .location-map-bottom-content,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-bottom-content {
  float: right;
  margin-top: 45px;
  width: 54%;
}
.path-location #block-nationalprimepay-content .location-map-bottom-content a,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-bottom-content
  a,
.node--type-location
  #block-nationalprimepay-content
  .location-map-bottom-content
  a,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-bottom-content
  a {
  clear: both;
  float: left;
  width: 100%;
  color: #00205b;
}
@media only screen and (max-width: 991px) {
  .path-location #block-nationalprimepay-content .location-map-bottom-content,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-bottom-content,
  .node--type-location
    #block-nationalprimepay-content
    .location-map-bottom-content,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-bottom-content {
    width: 61% !important;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content .location-map-bottom-content,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-bottom-content,
  .node--type-location
    #block-nationalprimepay-content
    .location-map-bottom-content,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-bottom-content {
    float: left;
    width: 100% !important;
    margin-top: 0px;
    padding: 0 15px;
  }
}
.path-location
  #block-nationalprimepay-content
  .location-map-bottom-content
  .find-a-pulse-money,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-bottom-content
  .find-a-pulse-money,
.node--type-location
  #block-nationalprimepay-content
  .location-map-bottom-content
  .find-a-pulse-money,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-bottom-content
  .find-a-pulse-money {
  width: 72%;
  display: inline-block;
  color: #57575c;
}
@media only screen and (max-width: 991px) {
  .path-location
    #block-nationalprimepay-content
    .location-map-bottom-content
    .find-a-pulse-money,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-bottom-content
    .find-a-pulse-money,
  .node--type-location
    #block-nationalprimepay-content
    .location-map-bottom-content
    .find-a-pulse-money,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-bottom-content
    .find-a-pulse-money {
    width: 66%;
  }
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .location-map-bottom-content
    .find-a-pulse-money,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-bottom-content
    .find-a-pulse-money,
  .node--type-location
    #block-nationalprimepay-content
    .location-map-bottom-content
    .find-a-pulse-money,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-bottom-content
    .find-a-pulse-money {
    width: 100%;
    margin-top: 30px;
    font-size: 1rem;
  }
}
.path-location #block-nationalprimepay-content .location-map-bottom-content img,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-bottom-content
  img,
.node--type-location
  #block-nationalprimepay-content
  .location-map-bottom-content
  img,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-bottom-content
  img {
  float: right;
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    .location-map-bottom-content
    img,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-bottom-content
    img,
  .node--type-location
    #block-nationalprimepay-content
    .location-map-bottom-content
    img,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-bottom-content
    img {
    float: left;
  }
}
.path-location
  #block-nationalprimepay-content
  .location-map-bottom-content.mortgage-loan-bottom,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-bottom-content.mortgage-loan-bottom,
.node--type-location
  #block-nationalprimepay-content
  .location-map-bottom-content.mortgage-loan-bottom,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-map-bottom-content.mortgage-loan-bottom {
  margin-bottom: 45px;
  font-size: 1.125rem;
}
.path-location #block-nationalprimepay-content .location-bottom-left-content,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-bottom-left-content,
.node--type-location
  #block-nationalprimepay-content
  .location-bottom-left-content,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-bottom-left-content {
  width: 42%;
  margin-right: 4%;
  float: left;
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  .path-location #block-nationalprimepay-content .location-bottom-left-content,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-bottom-left-content,
  .node--type-location
    #block-nationalprimepay-content
    .location-bottom-left-content,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-bottom-left-content {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content .location-bottom-left-content,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-bottom-left-content,
  .node--type-location
    #block-nationalprimepay-content
    .location-bottom-left-content,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-bottom-left-content {
    width: 90%;
    margin-right: 0;
    margin: 20px 15px 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ccd2de;
  }
}
.path-location
  #block-nationalprimepay-content
  .location-bottom-left-content
  span,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-bottom-left-content
  span,
.node--type-location
  #block-nationalprimepay-content
  .location-bottom-left-content
  span,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-bottom-left-content
  span {
  display: inline-block;
  width: 100%;
  color: #57575c;
  font-size: 1rem;
}
.path-location
  #block-nationalprimepay-content
  .location-bottom-left-content
  span
  img,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-bottom-left-content
  span
  img,
.node--type-location
  #block-nationalprimepay-content
  .location-bottom-left-content
  span
  img,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  .location-bottom-left-content
  span
  img {
  padding-right: 20px;
  vertical-align: top;
}
.path-location
  #block-nationalprimepay-content
  footer
  .location-map-bottom-content,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .location-map-bottom-content,
.node--type-location
  #block-nationalprimepay-content
  footer
  .location-map-bottom-content,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .location-map-bottom-content {
  position: absolute;
  right: 0;
  top: 705px;
  color: #57575c;
}
.path-location
  #block-nationalprimepay-content
  footer
  .location-map-bottom-content.location-empty-bottom-content,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .location-map-bottom-content.location-empty-bottom-content,
.node--type-location
  #block-nationalprimepay-content
  footer
  .location-map-bottom-content.location-empty-bottom-content,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .location-map-bottom-content.location-empty-bottom-content {
  position: relative;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 991px) {
  .path-location
    #block-nationalprimepay-content
    footer
    .location-map-bottom-content,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .location-map-bottom-content,
  .node--type-location
    #block-nationalprimepay-content
    footer
    .location-map-bottom-content,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .location-map-bottom-content {
    top: 685px;
  }
}
@media only screen and (max-width: 767px) {
  .path-location
    #block-nationalprimepay-content
    footer
    .location-map-bottom-content,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .location-map-bottom-content,
  .node--type-location
    #block-nationalprimepay-content
    footer
    .location-map-bottom-content,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .location-map-bottom-content {
    position: relative;
    top: inherit;
  }
}
.path-location #block-nationalprimepay-content footer .find-a-pulse-link,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .find-a-pulse-link,
.node--type-location #block-nationalprimepay-content footer .find-a-pulse-link,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .find-a-pulse-link {
  display: none;
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content footer .find-a-pulse-link,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .find-a-pulse-link,
  .node--type-location
    #block-nationalprimepay-content
    footer
    .find-a-pulse-link,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .find-a-pulse-link {
    display: block;
    margin-bottom: 20px;
    padding: 0 15px;
  }
}
.path-location #block-nationalprimepay-content footer .location-pager,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .location-pager,
.node--type-location #block-nationalprimepay-content footer .location-pager,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .location-pager {
  padding: 20px;
  font-size: 1.125rem;
  position: absolute;
  width: auto;
  bottom: 5px;
}
.path-location #block-nationalprimepay-content footer .location-pager:after,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .location-pager:after,
.node--type-location
  #block-nationalprimepay-content
  footer
  .location-pager:after,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .location-pager:after {
  content: ":";
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content footer .location-pager,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .location-pager,
  .node--type-location #block-nationalprimepay-content footer .location-pager,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .location-pager {
    display: inline-block;
    position: relative;
    margin-top: 30px;
    width: 100%;
    float: left;
    clear: both;
    padding: 0 15px;
  }
  .path-location #block-nationalprimepay-content footer .location-pager:after,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .location-pager:after,
  .node--type-location
    #block-nationalprimepay-content
    footer
    .location-pager:after,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .location-pager:after {
    content: " ";
  }
}
.path-location #block-nationalprimepay-content footer .pager-wrapper,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .pager-wrapper,
.node--type-location #block-nationalprimepay-content footer .pager-wrapper,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .pager-wrapper {
  width: 100%;
  display: inline-block;
  padding: 20px;
  font-size: 1.125rem;
  margin-top: 35px;
  min-height: 64px;
}
.path-location #block-nationalprimepay-content footer .pager-wrapper ul,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul,
.node--type-location #block-nationalprimepay-content footer .pager-wrapper ul,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul {
  float: right;
}
@media only screen and (max-width: 767px) {
  .path-location #block-nationalprimepay-content footer .pager-wrapper ul,
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .pager-wrapper
    ul,
  .node--type-location #block-nationalprimepay-content footer .pager-wrapper ul,
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .pager-wrapper
    ul {
    float: left;
  }
}
.path-location #block-nationalprimepay-content footer .pager-wrapper ul li,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul
  li,
.node--type-location
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul
  li,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul
  li {
  display: inline;
  float: left;
  padding-right: 20px;
}
.path-location #block-nationalprimepay-content footer .pager-wrapper ul li a,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul
  li
  a,
.node--type-location
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul
  li
  a,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul
  li
  a {
  color: #000;
  text-decoration: none;
}
.path-location
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul
  li.is-active
  a,
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul
  li.is-active
  a,
.node--type-location
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul
  li.is-active
  a,
.node--type-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .pager-wrapper
  ul
  li.is-active
  a {
  font-family: "Calibre Bold";
}
.path-location #block-views-block-contact-us-block-block-5,
.path-mortgage-loan-originators #block-views-block-contact-us-block-block-5,
.node--type-location #block-views-block-contact-us-block-block-5,
.node--type-mortgage-loan-originators
  #block-views-block-contact-us-block-block-5 {
  clear: both;
}
.path-location #block-views-block-contact-us-block-block-5 .cl-customer-service,
.path-mortgage-loan-originators
  #block-views-block-contact-us-block-block-5
  .cl-customer-service,
.node--type-location
  #block-views-block-contact-us-block-block-5
  .cl-customer-service,
.node--type-mortgage-loan-originators
  #block-views-block-contact-us-block-block-5
  .cl-customer-service {
  margin-top: 100px;
}
@media only screen and (max-width: 991px) {
  .path-location
    #block-views-block-contact-us-block-block-5
    .cl-customer-service,
  .path-mortgage-loan-originators
    #block-views-block-contact-us-block-block-5
    .cl-customer-service,
  .node--type-location
    #block-views-block-contact-us-block-block-5
    .cl-customer-service,
  .node--type-mortgage-loan-originators
    #block-views-block-contact-us-block-block-5
    .cl-customer-service {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .node--type-mortgage-loan-originators
    #block-exposedformmortgage-loan-originators-of-locationpage-1
    form {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .node--type-mortgage-loan-originators form {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-mobile {
    margin-bottom: 0px;
    width: auto;
    float: right;
  }
  .node--type-mortgage-loan-originators
    #block-nationalprimepay-content
    .location-map-bottom-content {
    border-top: 1px solid #ccd2de;
    padding: 30px 0 0;
    margin-top: 30px;
  }
}
.node--type-location .header .main-navigation,
.path-location .header .main-navigation {
  border-bottom: 1px solid #edeeee;
}
.node--type-location .header .main-navigation__logo .mobile-menu ul li,
.path-location .header .main-navigation__logo .mobile-menu ul li {
  padding-right: 0px;
}
.node--type-location
  .header.sticky-head
  .header__top-bar___container
  .nav-right__ul
  li:nth-child(1)
  a:nth-child(2),
.node--type-location
  .header.sticky-head
  .header__top-bar___container
  .nav-right__ul
  li:nth-child(2)
  a:nth-child(2),
.path-location
  .header.sticky-head
  .header__top-bar___container
  .nav-right__ul
  li:nth-child(1)
  a:nth-child(2),
.path-location
  .header.sticky-head
  .header__top-bar___container
  .nav-right__ul
  li:nth-child(2)
  a:nth-child(2) {
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .node--type-location .header__top-bar___container .nav-right__ul li.nr-3 a,
  .path-location .header__top-bar___container .nav-right__ul li.nr-3 a {
    max-width: 50px;
  }
  .node--type-location .header__top-bar___container .nav-right__ul li.nr-3,
  .path-location .header__top-bar___container .nav-right__ul li.nr-3 {
    padding-right: 4px;
  }
}
@media only screen and (max-width: 767px) {
  .node--type-location .header__top-bar___container .nav-right,
  .path-location .header__top-bar___container .nav-right {
    width: 100%;
    display: inline-block;
  }
  .node--type-location
    .header__top-bar___container
    .nav-right
    .language-selector,
  .path-location .header__top-bar___container .nav-right .language-selector {
    display: block;
  }
  .node--type-location .header__top-bar___container .nav-right__ul li.nr-1,
  .path-location .header__top-bar___container .nav-right__ul li.nr-1 {
    display: inline-block;
    padding-left: 2px;
  }
  .node--type-location .header__top-bar___container .nav-right__ul li.nr-2,
  .path-location .header__top-bar___container .nav-right__ul li.nr-2 {
    display: inline-block;
    padding-left: 8px;
  }
  .node--type-location .header__top-bar___container .nav-right__ul li.nr-1 a,
  .node--type-location .header__top-bar___container .nav-right__ul li.nr-2 a,
  .path-location .header__top-bar___container .nav-right__ul li.nr-1 a,
  .path-location .header__top-bar___container .nav-right__ul li.nr-2 a {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 575px) {
  .node--type-location
    .header__top-bar___container
    .nav-right__ul
    li.nr-1
    a:last-child,
  .node--type-location
    .header__top-bar___container
    .nav-right__ul
    li.nr-2
    a:last-child,
  .path-location
    .header__top-bar___container
    .nav-right__ul
    li.nr-1
    a:last-child,
  .path-location
    .header__top-bar___container
    .nav-right__ul
    li.nr-2
    a:last-child {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .node--type-location .header__top-bar___container .nav-right__ul li img,
  .path-location .header__top-bar___container .nav-right__ul li img {
    margin-top: -2px;
  }
  .node--type-location
    .header__top-bar___container
    .nav-right__ul
    li.nr-3:before,
  .path-location .header__top-bar___container .nav-right__ul li.nr-3:before {
    display: none;
  }
  .node--type-location
    .header__top-bar___container
    .nav-right__ul
    li.nr-3
    .nav-right-item:before,
  .path-location
    .header__top-bar___container
    .nav-right__ul
    li.nr-3
    .nav-right-item:before {
    width: 20px;
    height: 20px;
    font-size: 1.4375rem;
    line-height: 1.4375rem;
  }
}
@media only screen and (max-width: 767px) {
  .node--type-location #block-exposedformlocationpage-1 form {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .node--type-location form {
    display: none;
  }
}
.node--type-location
  #block-nationalprimepay-content
  .location-map-bottom-content
  a.find-a-pulse-link {
  display: none;
}
@media only screen and (max-width: 767px) {
  .node--type-location #block-nationalprimepay-content .location-map-mobile {
    margin-bottom: 0px;
    width: auto;
    float: right;
  }
  .node--type-location
    #block-nationalprimepay-content
    .location-map-bottom-content {
    border-top: 1px solid #ccd2de;
    padding: 30px 0 0;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .node--type-location
    #block-nationalprimepay-content
    .location-map-bottom-content
    a.find-a-pulse-link {
    display: block;
    margin-bottom: 20px;
    color: #185d56;
  }
  .node--type-location
    #block-nationalprimepay-content
    .location-map-bottom-content
    a.find-a-pulse-link
    img {
    float: none;
  }
}
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map {
  margin-top: 20px;
}
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  .geolocation-common-map
  .geolocation-common-map-locations {
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations {
    min-height: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    .geolocation-common-map
    .geolocation-common-map-locations {
    min-height: inherit;
  }
}
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .location-map-bottom-content {
  top: 648px;
}
@media only screen and (max-width: 767px) {
  .path-mortgage-loan-originators
    #block-nationalprimepay-content
    footer
    .location-map-bottom-content {
    top: 20px;
    margin-bottom: 10px;
  }
}
.path-mortgage-loan-originators
  #block-nationalprimepay-content
  footer
  .location-map-bottom-content.location-empty-bottom-content {
  position: relative;
  right: 0;
  top: 0;
  font-size: 1.125rem;
}
.ui-dialog {
  padding: 10px 20px 20px 20px;
  top: 140px !important;
}
@media only screen and (max-width: 480px) {
  .ui-dialog.external-link-popup {
    height: 60vh !important;
    top: 10% !important;
    z-index: 10001 !important;
  }
}
@media only screen and (max-width: 480px) {
  .ui-dialog {
    width: 92% !important;
    padding: 10px 10px 20px 10px;
  }
}
@media only screen and (max-width: 768px) {
  .ui-dialog {
    width: 92% !important;
  }
}
.ui-dialog .ui-dialog-titlebar,
.ui-dialog .ui-dialog-buttonpane {
  padding: 0;
}
.ui-dialog .ui-widget-header .ui-dialog-titlebar-close {
  background: url(../../../../themes/nationalprimepay/images/cancel.png);
  background-repeat: no-repeat;
  float: right;
  height: 24px;
  left: 29px;
  position: relative;
  top: -8px;
  width: 24px;
  border: 0;
}
@media only screen and (max-width: 480px) {
  .ui-dialog .ui-widget-header .ui-dialog-titlebar-close {
    top: -4px;
    width: 40px;
  }
}
.ui-dialog .ui-widget-header {
  border: 0;
  background: none;
}
.ui-dialog .ui-widget-header .ui-dialog-title {
  display: none;
}
.ui-dialog .external-link-popup-content.ui-dialog-content {
  padding: 0 !important;
}
@media only screen and (max-width: 480px) {
  .ui-dialog .external-link-popup-content.ui-dialog-content {
    overflow-y: scroll !important;
    min-height: 100% !important;
    -webkit-overflow-scrolling: touch !important;
    height: 100% !important;
    max-height: 100vh !important;
  }
}
@media only screen and (max-width: 480px) {
  .ui-dialog .external-link-popup-body {
    height: 100% !important;
    max-height: 100% !important;
  }
}
@media only screen and (max-width: 480px) {
  .ui-dialog .ui-dialog-buttonset button {
    display: block !important;
    width: 100% !important;
  }
}
.ui-dialog #boxpopup .popupHead {
  margin-bottom: 20px;
  margin-left: 15px;
}
@media only screen and (max-width: 480px) {
  .ui-dialog #boxpopup .popupHead img {
    width: 145px;
  }
}
.ui-dialog #boxpopup #popupContent {
  background: #edeeee !important;
  padding: 10px 15px 10px 15px;
}
@media only screen and (max-width: 480px) {
  .ui-dialog #boxpopup #popupContent {
    min-height: 100vh !important;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch !important;
  }
}
.ui-dialog #boxpopup #popupContent h3 {
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.875rem;
}
@media only screen and (max-width: 480px) {
  .ui-dialog #boxpopup #popupContent h3 {
    line-height: 1.5rem;
  }
}
.ui-dialog #boxpopup #popupContent h6,
.ui-dialog #boxpopup #popupContent p {
  line-height: 1.3;
}
.ui-dialog #boxpopup #popupContent address {
  padding-top: 20px;
}
.ui-dialog .ui-dialog-buttonpane {
  background: #edeeee !important;
  border: 0;
  margin-top: 0;
}
@media only screen and (max-width: 480px) {
  .ui-dialog .ui-dialog-buttonpane {
    margin-top: 10px !important;
    background: transparent !important;
  }
}
.ui-dialog .ui-dialog-buttonpane {
  padding-top: 0;
}
@media only screen and (max-width: 480px) {
  .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    text-align: center;
    float: none;
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
.ui-dialog .ui-dialog-buttonpane button {
  color: #fff !important;
  line-height: 3rem;
  width: auto;
  text-align: center;
  margin-left: 5px;
  padding: 0 20px;
  padding-top: 0px;
  display: inline-block;
  padding-top: 5px;
  font-size: 1.375rem;
  font-family: "Calibre Semibold";
  border: 0;
  -webkit-appearance: none;
  background: #185d56;
}
@media only screen and (max-width: 480px) {
  .ui-dialog .ui-dialog-buttonpane button {
    line-height: 2.5rem;
    font-size: 1.125rem;
    padding: 0 12px;
    margin: 2px;
    display: block !important;
    width: 100% !important;
  }
}
.ui-dialog button:focus {
  outline: 0;
}
.ui-dialog button:hover {
  background: #094943;
}
@media only screen and (max-width: 480px) {
  .ui-dialog.external-link-popup {
    height: 79vh !important;
  }
  .ui-dialog.external-link-popup
    .external-link-popup-content.ui-dialog-content {
    height: calc(100% - 110px) !important;
    min-height: calc(100% - 110px) !important;
    overflow: visible !important;
  }
  .ui-dialog.external-link-popup #boxpopup {
    height: 100%;
  }
  .ui-dialog.external-link-popup #boxpopup #popupContent {
    height: 89%;
    min-height: initial !important;
  }
}
.webform-submission-interest-form-form .form-item-markup {
  font-size: 1.25rem;
  font-family: "Calibre Semibold";
}
.webform-submission-interest-form-form .form-item-markup strong {
  margin-bottom: 15px;
  font-size: 3.75rem;
  text-align: left;
  font-family: "Calibre Bold";
  margin-top: 20px;
}
.webform-submission-interest-form-form .js-form-type-processed-text {
  word-wrap: break-word;
  clear: both;
}
.webform-submission-complaint-form-form #edit-markup--2 {
  margin-bottom: 20px;
}
.ps-contact-us-block {
  margin-bottom: 20px;
}
.ps-contact-us-block h2.cl-about-us__header-title {
  font-family: "Calibre Bold";
  margin-bottom: 20px;
}
.ps-contact-us-block h3.cl-about-us__subtext {
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-family: "Calibre Bold";
  margin-bottom: 20px;
}
.ps-contact-us-block .cl-get-in-touch__card-details {
  width: 30%;
  margin: 10px;
  min-height: 190px;
  float: left;
}
.ps-contact-us-block .cl-get-in-touch__card-details .margin-left {
  margin-left: 35px;
}
@media only screen and (max-width: 768px) {
  .ps-contact-us-block .cl-get-in-touch__card-details .margin-left {
    margin-left: 20px;
    min-height: 228px;
  }
}
@media only screen and (max-width: 480px) {
  .ps-contact-us-block .cl-get-in-touch__card-details {
    width: 94%;
  }
}
.ps-contact-us-block span.footer-note {
  clear: left;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
}
.ps-contact-us-block span.footer-note p {
  margin: 0;
}
.view-location .no-result {
  width: 70%;
  margin: 0 auto;
  margin-top: 0px;
  text-align: center;
  margin-top: 20px;
  color: #000;
  text-decoration: none;
  font-family: "Calibre Bold";
  font-size: 1.375rem;
}
.node-27 div[role="contentinfo"] {
  width: 100%;
  max-width: 1400px;
  padding-left: 15px;
  padding-right: 15px;
  background: #fdeed1;
  border: 1px solid #fedea6;
  color: #000;
  text-align: center;
  height: auto;
  display: block;
  width: calc(100% - 30px);
  margin: 25px auto;
  position: relative;
  overflow: hidden;
  transition: 0.25s max-height ease-in-out;
  padding: 20px 50px;
}
.view-community-hub-landing-page h4.article-header {
  line-height: 1.5rem !important;
}
.view-community-hub-landing-page h4.article-header a {
  line-height: 1.5rem !important;
}
.decoration-none {
  text-decoration: none !important;
}
.decoration-none:hover {
  color: #d22630 !important;
}
.a2a_menu a {
  color: #00205b !important;
}
.a2a_mini_services .a2a_svg.a2a_s_email {
  background: url(../../../../themes/nationalprimepay/images/specialist_icon_1.png)
    no-repeat scroll 0 0 !important;
  width: 20px !important;
  height: 13px !important;
  vertical-align: middle;
}
.a2a_mini_services .a2a_svg.a2a_s_email svg {
  display: none;
}
#login-popup-form.fancybox-content {
  background: #fff;
}
@media only screen and (max-width: 991px) {
  #personal-form-option-pop.fancybox-content,
  #business-form-option-pop.fancybox-content {
    background: #fff;
    width: 400px;
  }
}
@media only screen and (max-width: 991px) {
  #personal-form-option-pop.fancybox-content .home-form__options___option,
  #personal-form-option-pop.fancybox-content .view-learn-container,
  #business-form-option-pop.fancybox-content .home-form__options___option,
  #business-form-option-pop.fancybox-content .view-learn-container {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  #personal-form-option-pop.fancybox-content .login-heading,
  #business-form-option-pop.fancybox-content .login-heading {
    font-size: 1.875rem;
    font-family: "Calibre Bold";
    display: table;
    padding-bottom: 15px;
    padding-top: 10px;
    line-height: 2.25rem;
  }
}
@media only screen and (max-width: 575px) {
  #personal-form-option-pop.fancybox-content .login-heading,
  #business-form-option-pop.fancybox-content .login-heading {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 991px) {
  #personal-form-option-pop.fancybox-content .mobile_banking_title,
  #business-form-option-pop.fancybox-content .mobile_banking_title {
    font-size: 1.375rem;
    cursor: pointer;
    transition: 0.25s all ease-in-out;
    font-family: "Calibre Medium";
    color: #000;
    text-shadow: 0.75px 0 0 #000;
    text-decoration: none;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 2px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 575px) {
  #personal-form-option-pop.fancybox-content .mobile_banking_title,
  #business-form-option-pop.fancybox-content .mobile_banking_title {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 991px) {
  #personal-form-option-pop.fancybox-content .mobile_banking_title:after,
  #business-form-option-pop.fancybox-content .mobile_banking_title:after {
    content: "";
    position: absolute;
    display: block;
    height: 5px;
    width: 155px;
    bottom: 0;
    left: 0;
    background: #d22630;
  }
}
@media only screen and (max-width: 991px) {
  #personal-form-option-pop.fancybox-content .forgot-user,
  #business-form-option-pop.fancybox-content .forgot-user {
    color: #00205b;
    display: table;
    margin-top: 15px;
    margin-bottom: 15px;
    transition: 0.25s all ease-in-out;
  }
}
@media only screen and (max-width: 575px) {
  #personal-form-option-pop.fancybox-content .forgot-user,
  #business-form-option-pop.fancybox-content .forgot-user {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  #personal-form-option-pop.fancybox-content .form-submit,
  #business-form-option-pop.fancybox-content .form-submit {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 575px) {
  #personal-form-option-pop.fancybox-content input.form-text,
  #business-form-option-pop.fancybox-content input.form-text {
    font-size: 1rem;
  }
}
.node-3311 #products-services-benefits-container {
  display: none;
}
.underline {
  text-decoration: underline !important;
}
.underline:hover {
  text-decoration: none !important;
}
.path-sitemap main {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}
.node--type-page.node-3524 #block-nationalprimepay-content,
.node--type-page.node-3696 #block-nationalprimepay-content,
.node--type-page.node-3536 #block-nationalprimepay-content {
  display: none;
}
.node--type-page.node-3524 .ps-banner__image,
.node--type-page.node-3696 .ps-banner__image,
.node--type-page.node-3536 .ps-banner__image {
  margin-top: 0;
}
@media only screen and (max-width: 991px) {
  .view-community-hub-landing-page
    .nationalprimepay-insights-pager
    .col-md-6.contentleft {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .view-community-hub-landing-page .pager-bottom .contentleft {
    position: relative;
  }
}
.view-community-hub-landing-page .pager-bottom .contentleft ul {
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .view-community-hub-landing-page .pager-bottom .contentleft ul {
    padding-bottom: 0px;
    position: absolute;
    bottom: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .view-community-hub-landing-page .pager-bottom .contentleft ul {
    bottom: 570px;
  }
}
@media only screen and (max-width: 991px) {
  .view-community-hub-landing-page .pager-bottom .col-md-6.contentleft {
    margin-bottom: 0px;
  }
}
.view-community-hub-landing-page
  .view-id-community_hub_landing_page
  .pager-bottom {
  display: none;
}
.view-community-hub-landing-page .pager__item a {
  font-size: 1.375rem;
  font-family: "Calibre Bold";
  background: #185d56;
  color: white;
  padding: 20px 30px 10px 30px;
  display: table;
  text-decoration: none;
  transition: 0.25s all ease-in-out;
  line-height: 1.625rem;
  text-align: center;
  margin-bottom: 0px;
}
.view-community-hub-landing-page .pager__item a:hover {
  background: #094943;
}
.view-community-hub-landing-page .pager__item a:focus {
  border: 1px dashed;
}
@media only screen and (max-width: 991px) {
  .view-community-hub-landing-page .pager__item a {
    font-size: 1rem;
    line-height: 1.0625rem;
    margin-bottom: 0px;
    padding: 10px 15px 5px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .view-community-hub-landing-page .pager__item a {
    font-size: 0.9375rem;
    line-height: 1.125rem;
    margin-bottom: 0px;
    padding: 15px 15px 10px 15px;
  }
}
.node--type-frequently-asked-questions .ps-faq {
  background-color: #e0e4eb;
  padding: 100px 0;
}
.webform-confirmation {
  width: 98%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .webform-submission-ccpa-form-add-form {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.webform-submission-ccpa-form-add-form .webform__heading {
  width: 98%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .webform-submission-ccpa-form-add-form .webform__heading {
    width: 100%;
  }
}
.webform-submission-ccpa-form-add-form .webform__heading h3 {
  font-family: "Calibre Bold";
  line-height: 2.75rem;
  font-size: 2.5rem;
}
@media only screen and (max-width: 991px) {
  .webform-submission-ccpa-form-add-form .webform__heading h3 {
    line-height: 1.5rem;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .webform-submission-ccpa-form-add-form .webform__heading__title {
    margin-top: 15px;
  }
}
.webform-submission-ccpa-form-add-form .webform__content {
  width: 98%;
  margin: 0 auto 100px auto;
  padding: 50px 50px 25px 50px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 991px) {
  .webform-submission-ccpa-form-add-form .webform__content {
    margin: 0 auto 50px auto;
  }
}
@media only screen and (max-width: 767px) {
  .webform-submission-ccpa-form-add-form .webform__content {
    padding: 20px 10px;
    width: 100%;
  }
}
.webform-submission-ccpa-form-add-form
  .webform__content
  .js-form-item-date-
  label {
  color: #57575c !important;
}
.webform-submission-ccpa-form-add-form .captcha {
  display: inline-block;
  width: 100%;
}
.webform-submission-ccpa-form-add-form .webform__content .form-item-form-title {
  display: none;
}
.webform-submission-ccpa-form-add-form .form-item-markup.form-no-label {
  font-family: "Calibre Medium";
  line-height: 1.5625rem;
  margin-bottom: 15px;
  font-size: 1.125rem;
}
.webform-submission-ccpa-form-add-form fieldset,
.webform-submission-ccpa-form-add-form
  .js-form-wrapper.js-webform-states-hidden {
  margin-bottom: 15px;
  width: 100%;
}
.webform-submission-ccpa-form-add-form .form-textarea::placeholder {
  color: #6c757d;
  opacity: 1;
}
.webform-submission-ccpa-form-add-form fieldset legend {
  line-height: 1.5rem;
  margin-bottom: 10px;
}
.webform-submission-ccpa-form-add-form
  fieldset.address--wrapper
  .fieldset-wrapper
  .js-form-item.form-item {
  float: left;
  margin-right: 2%;
  margin-bottom: 2%;
}
@media only screen and (max-width: 767px) {
  .webform-submission-ccpa-form-add-form
    fieldset.address--wrapper
    .fieldset-wrapper
    .js-form-item.form-item {
    margin-bottom: 20px;
  }
}
.webform-submission-ccpa-form-add-form
  fieldset.address--wrapper
  .fieldset-wrapper
  .js-form-item.form-item:first-child {
  display: block;
  float: none;
}
.webform-submission-ccpa-form-add-form
  .fieldset-wrapper
  .js-form-item.form-item {
  width: 100%;
}
.webform-submission-ccpa-form-add-form .g-recaptcha {
  margin-bottom: 20px;
}
.webform-submission-ccpa-form-add-form .form-item-resident-no {
  font-weight: bold;
}
.webform-submission-ccpa-form-add-form #edit-markup-01 {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Calibre Regular";
}
.webform-submission-ccpa-form-add-form #edit-markup-02 {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Calibre Regular";
}
#block-nationalprimepay-content h1 {
  font-size: 2.125rem;
  line-height: 2.125rem;
  font-family: "Calibre Bold";
  color: #00205b;
  margin-top: 3px;
}
@media only screen and (max-width: 768px) {
  #block-nationalprimepay-content h1 {
    font-size: 1.5rem;
    line-height: 1.625rem;
  }
}
.node--type-general-page h1,
.node--type-general-page h2,
.node--type-general-page h3,
.node--type-general-page h4,
.node--type-general-page h5,
.node--type-general-page h6 {
  font-weight: normal;
  margin: 0;
}
.node--type-general-page h2 {
  text-align: left;
  font-family: "Calibre Bold";
  font-size: 2.5rem;
  line-height: 2.5rem;
}
@media only screen and (max-width: 991px) {
  .node--type-general-page h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .node--type-general-page h2 {
    font-size: 1.5rem;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .node--type-general-page h2 {
    font-size: 1.375rem;
    line-height: 1.5rem;
    max-width: 70%;
    display: inline;
  }
}
.node--type-general-page h3 {
  font-family: "Calibre Semibold";
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.node--type-general-page h4 {
  font-family: "Calibre Regular";
  font-size: 1.5rem;
  line-height: 1.875rem;
}
.node--type-general-page .ps-banner {
  max-height: 204px;
}
.node--type-general-page .cms-container {
  max-width: 920px;
  margin: auto;
  position: relative;
  width: 100%;
}
.node--type-general-page .cms-container ul li {
  padding-left: 30px;
  position: relative;
  padding-bottom: 20px;
}
.node--type-general-page .cms-container ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #d22630;
  margin-left: -30px;
  position: absolute;
  top: 4px;
}
.node--type-general-page .cms-container ul ol {
  width: 100%;
  counter-reset: item;
  margin-top: 15px;
  margin-left: 14px;
}
.node--type-general-page .cms-container ul ol li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 15px;
}
.node--type-general-page .cms-container ul ol li:before {
  content: counter(item);
  counter-increment: item;
  font-family: "Calibre Bold";
  width: 10px;
  height: 10px;
  display: inline-block;
  color: #00205b;
  margin-left: -30px;
  position: absolute;
  top: -1px;
}
.node--type-general-page .cms-container ul .table-container {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .node--type-general-page .cms-container ul .table-container {
    overflow-x: scroll;
    overflow-y: visible;
    width: 100%;
    margin-left: 0px;
  }
}
.node--type-general-page .cms-container ul table {
}
.node--type-general-page .cms-container ul table tbody tr:nth-child(even) {
  background-color: #edeeee;
}
.node--type-general-page .cms-container ul table tr td:first-child {
  position: relative;
}
.node--type-general-page .cms-container ul table td {
  padding: 15px;
  vertical-align: top;
  width: 100px;
  font-size: 1rem;
}
.node--type-general-page .cms-container ul thead tr {
  background-color: #57575c !important;
  height: 80px;
  color: #ffffff;
  font-family: "Calibre Bold";
}
@media only screen and (max-width: 768px) {
  .node--type-general-page .cms-container ul thead tr {
    font-size: 0.9375rem;
    line-height: 1.375rem;
  }
}
@media only screen and (max-width: 480px) {
  .node--type-general-page .cms-container ul thead tr {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.node--type-general-page .cms-container ul .table-row tr td:first-child {
  position: relative;
}
.node--type-general-page .cms-container ul .table-footnotes-container {
  padding-left: 5px;
  padding-right: 5px;
  margin: 25px 15px 0;
}
.sitemap {
  margin-top: 30px;
}
.sitemap ul {
  margin-top: 15px;
  padding-left: 0;
  list-style: inherit;
}
.sitemap ul > li {
  padding-bottom: 0 !important;
  padding-left: 0 !important;
}
.sitemap ul > li > ul {
  margin-left: 15px;
  padding-left: 10px;
}
.sitemap > .sitemap-item > div > ul > li {
  list-style: none;
  padding-bottom: 40px;
}
.sitemap > .sitemap-item > div > ul > li a {
  font-size: 1.5rem;
}
.sitemap > .sitemap-item > div > ul > li > ul {
  margin-top: 0;
  margin-bottom: 30px;
}
.sitemap > .sitemap-item > div > ul > li > ul > li {
  list-style: disc;
}
.sitemap > .sitemap-item > div > ul > li > ul > li a {
  font-size: 1.125rem;
}
.sitemap > .sitemap-item > div > ul > li > ul > li > ul {
  margin-top: 0;
  margin-bottom: 0;
}
.sitemap > .sitemap-item > div > ul > li > ul > li > ul > li > ul {
  margin-top: 0;
  margin-bottom: 0;
}
.sitemap .sitemap-item > div > ul li:before {
  content: none !important;
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  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;
  }
  .header__top-bar,
  .main-navigation__menu,
  .main-navigation__search,
  #block-views-block-contact-us-block-block-11,
  #block-views-block-contact-us-block-block-1,
  .global-footer,
  #block-footermainmenu-2,
  #block-ccpafootersitemap .footer-left-ul,
  #block-footersitemap-2,
  #block-nationalprimepay-breadcrumbs,
  .text-share-print-links,
  .products-services,
  .promotional-banner,
  .ps-banner__image-container,
  #block-views-block-contact-us-block-block-3,
  #block-views-block-contact-us-block-block-2,
  #block-views-block-related-content-block-1,
  .ps-about__button-container,
  .community-share-wrap,
  .sidebar-inner,
  .node--type-community-hub .ps-header__nav-container .mobile-back,
  .product-services-section,
  .secondary-footer,
  #block-ccpafooterwealthmanagement,
  #block-footerwealthmanagement-3 {
    display: none !important;
  }
  .ps-banner {
    height: auto !important;
    margin-bottom: 0 !important;
  }
  .ps-banner__banner-title h1 {
    top: 0 !important;
    position: relative !important;
    padding: 20px 0 !important;
    transform: none !important;
  }
  .cl-header {
    padding-bottom: 0 !important;
  }
  .main-navigation {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cl-header__img {
    background-image: none !important;
    height: auto;
  }
  .cl-header__img .cl-header__banner-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    left: 0;
    float: none;
    top: 0;
    padding: 0;
  }
  .cl-header__img .cl-header__banner-container h1 {
    padding: 0;
  }
  #header {
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
  }
  #header.sticky-head {
    position: static;
  }
  #header .main-navigation__logo img {
    width: 150px;
  }
  .cl-header__banner-title-highlight {
    margin-bottom: 0 !important;
  }
  .cl-about,
  .max-width {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
  h2 {
    font-size: 1.875rem !important;
    line-height: 1.2 !important;
  }
  p {
    font-size: 1.125rem !important;
    line-height: 1.2 !important;
  }
  .promotional-banner__arrow {
    display: none !important;
  }
  .promotional-banner__light-bg {
    float: none;
  }
  #category-listing-header-container {
    max-height: auto !important;
    margin-bottom: 0 !important;
  }
  .cl-about-benefits__item-img-container {
    padding: 0 !important;
  }
  footer .tertiary-footer ul.footer-right-ul {
    width: 100% !important;
  }
  .ps-benefits__item-img-container {
    padding: 0 !important;
  }
  ul {
    list-style: inside disc !important;
  }
  ul li:before {
    display: none !important;
  }
  .community-detail-header ul {
    list-style: none !important;
  }
  .chlb .col-md-6.contentleft,
  .block-community-hub-landing-page-block-1 .col-md-6.contentleft {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    padding: 0 !important;
  }
  .cl-about-benefits__item-container {
    padding: 20px !important;
  }
  .fdic-logo img {
    max-width: 40% !important;
  }
}
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.chosen-container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}
.chosen-container a {
  cursor: pointer;
}
.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 400;
  color: #999;
}
.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(
    linear,
    50% 0,
    50% 100%,
    color-stop(20%, #fff),
    color-stop(50%, #f6f6f6),
    color-stop(52%, #eee),
    color-stop(100%, #f4f4f4)
  );
  background: -webkit-linear-gradient(
    #fff 20%,
    #f6f6f6 50%,
    #eee 52%,
    #f4f4f4 100%
  );
  background: -moz-linear-gradient(
    #fff 20%,
    #f6f6f6 50%,
    #eee 52%,
    #f4f4f4 100%
  );
  background: -o-linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}
.chosen-container-single .chosen-default {
  color: #999;
}
.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
}
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(
    linear,
    50% 0,
    50% 100%,
    color-stop(20%, #3875d7),
    color-stop(90%, #2a62bc)
  );
  background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: 700;
  cursor: default;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(
    linear,
    50% 0,
    50% 100%,
    color-stop(1%, #eee),
    color-stop(15%, #fff)
  );
  background-image: -webkit-linear-gradient(#eee 1%, #fff 15%);
  background-image: -moz-linear-gradient(#eee 1%, #fff 15%);
  background-image: -o-linear-gradient(#eee 1%, #fff 15%);
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eee;
  background-image: -webkit-gradient(
    linear,
    50% 0,
    50% 100%,
    color-stop(20%, #f4f4f4),
    color-stop(50%, #f0f0f0),
    color-stop(52%, #e8e8e8),
    color-stop(100%, #eee)
  );
  background-image: -webkit-linear-gradient(
    #f4f4f4 20%,
    #f0f0f0 50%,
    #e8e8e8 52%,
    #eee 100%
  );
  background-image: -moz-linear-gradient(
    #f4f4f4 20%,
    #f0f0f0 50%,
    #e8e8e8 52%,
    #eee 100%
  );
  background-image: -o-linear-gradient(
    #f4f4f4 20%,
    #f0f0f0 50%,
    #e8e8e8 52%,
    #eee 100%
  );
  background-image: linear-gradient(
    #f4f4f4 20%,
    #f0f0f0 50%,
    #e8e8e8 52%,
    #eee 100%
  );
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px;
}
.chosen-container-multi
  .chosen-choices
  li.search-choice
  .search-choice-close:hover {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(
    linear,
    50% 0,
    50% 100%,
    color-stop(20%, #f4f4f4),
    color-stop(50%, #f0f0f0),
    color-stop(52%, #e8e8e8),
    color-stop(100%, #eee)
  );
  background-image: -webkit-linear-gradient(
    #f4f4f4 20%,
    #f0f0f0 50%,
    #e8e8e8 52%,
    #eee 100%
  );
  background-image: -moz-linear-gradient(
    #f4f4f4 20%,
    #f0f0f0 50%,
    #e8e8e8 52%,
    #eee 100%
  );
  background-image: -o-linear-gradient(
    #f4f4f4 20%,
    #f0f0f0 50%,
    #e8e8e8 52%,
    #eee 100%
  );
  background-image: linear-gradient(
    #f4f4f4 20%,
    #f0f0f0 50%,
    #e8e8e8 52%,
    #eee 100%
  );
  color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
.chosen-container-multi
  .chosen-choices
  li.search-choice-focus
  .search-choice-close {
  background-position: -42px -10px;
}
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(
    linear,
    50% 0,
    50% 100%,
    color-stop(20%, #eee),
    color-stop(80%, #fff)
  );
  background-image: -webkit-linear-gradient(#eee 20%, #fff 80%);
  background-image: -moz-linear-gradient(#eee 20%, #fff 80%);
  background-image: -o-linear-gradient(#eee 20%, #fff 80%);
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: 0;
  background: transparent;
}
.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
.chosen-disabled .chosen-single {
  cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}
.chosen-rtl {
  text-align: right;
}
.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}
.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}
.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}
.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}
.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}
.chosen-rtl .chosen-choices li {
  float: right;
}
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}
.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}
.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
  left: 9999px;
}
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: 0;
}
.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  direction: rtl;
}
.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-resolution: 144dpi),
  only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-repeat: no-repeat !important;
  }
}
body.compensate-for-scrollbar {
  overflow: hidden;
}
.fancybox-active {
  height: auto;
}
.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}
.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}
.fancybox-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.fancybox-bg {
  background: #aaaaaa;
  opacity: 0.3;
  -webkit-transition-duration: inherit;
  -o-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
  opacity: 0.3;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  -o-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  -o-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}
.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fancybox-toolbar {
  right: 0;
  top: 0;
}
.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}
.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}
.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}
.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}
.fancybox-slide--image::before {
  display: none;
}
.fancybox-slide--html {
  padding: 6px;
}
.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox-container [data-selectable="true"] {
  cursor: text;
}
.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.fancybox-spaceball {
  z-index: 1;
}
.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}
.fancybox-slide--video .fancybox-content {
  background: #000;
}
.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}
.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}
.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}
.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}
.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}
.fancybox-button:hover {
  color: #fff;
}
.fancybox-button:focus {
  outline: none;
}
.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}
.fancybox-button div {
  height: 100%;
}
.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}
.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}
.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}
.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}
.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: -webkit-transform;
  -webkit-transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  z-index: 99998;
}
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}
.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}
.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}
.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}
.fancybox-navigation .fancybox-button div {
  padding: 7px;
}
.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  padding: 31px 26px 31px 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
}
.fancybox-caption {
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0;
  text-align: center;
  z-index: 99996;
}
.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAD6CAQAAADKSeXYAAAAYklEQVQoz42RwQ3AMAgDjfcfup8WoRykfBAK5mQHKSz5rbXJPis1hjiV3CIqgG0hLZPkVkA4p4x5oR1bVeDrdCLrW2Q0D5bcwY3TGMHbdw3mPRuOtaspYP1w//G1OIcW148H0DMCqI/3mMMAAAAASUVORK5CYII=);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -44px;
  z-index: -1;
}
.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}
@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}
.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.fancybox-share p {
  margin: 0;
  padding: 0;
}
.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}
.fancybox-share__button:hover {
  text-decoration: none;
}
.fancybox-share__button--fb {
  background: #3b5998;
}
.fancybox-share__button--fb:hover {
  background: #344e86;
}
.fancybox-share__button--pt {
  background: #bd081d;
}
.fancybox-share__button--pt:hover {
  background: #aa0719;
}
.fancybox-share__button--tw {
  background: #1da1f2;
}
.fancybox-share__button--tw:hover {
  background: #0d95e8;
}
.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}
.fancybox-share__button svg path {
  fill: #fff;
}
.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}
.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}
.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}
.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}
.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}
.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}
.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}
.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
@media all and (max-height: 576px) {
  .fancybox-caption {
    padding: 12px;
  }
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
}
