@charset "utf-8";

.fa-icon,
blockquote:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/**********
 Variables
 **********/
body {
    /* Text */
    --text-font-family: 'Open Sans', sans-serif;
    --heading-font-family: 'Open Sans', sans-serif;
    --text-font-size: 16px;
    --text-font-size-large: calc(16px + 2px);
    --heading-1-font-size: 48px;
    --heading-2-font-size: 32px;
    --heading-3-font-size: 24px;
    --heading-4-font-size: 20px;
    --heading-5-font-size: 16px;
    --heading-6-font-size: calc(16px - 2px);
    /* Other */
    --border-radius-base: 10px;
    --border-radius-small: calc(10px / 2);
    --border-radius-button: 50px;
    --logo-height: 40px;
    /* Assets */
    --assets-check-svg: url(/hc/theming_assets/01HZPCHCKAG2Z4CZ6Z1KC3VB0Y);
    --assets-circle-svg: url(/hc/theming_assets/01HZPCHD3FY79W6SZ23KPHCJH6);
}

/**********
 Light mode
 **********/
body {
    --primary-color: rgba(226, 6, 38, 1);
    --secondary-color: rgba(0, 0, 51, 1);
    --primary-bg-color: #FFFFFF;
    --primary-bg-color-always: #FFFFFF;
    --secondary-bg-color: rgba(245, 243, 241, 1);
    --secondary-bg-color-always: rgba(245, 243, 241, 1);
    --primary-text-color: rgba(0, 0, 51, 1);
    --secondary-text-color: rgba(51, 51, 92, 1);
    --link-color: #1863BC;
    --border-color: #DDE2EB;
    --info-color: #1863BC;
    --success-color: #67C30B;
    --warning-color: #F1D52F;
    --danger-color: rgba(153, 0, 0, 1);
    --primary-color-light-hover: #c40521;
    --primary-color-hover: #a6041c;
    --primary-color-active: #970419;
    --secondary-color-hover: #000;
    --secondary-color-active: #000;
    --secondary-bg-color-hover: #ede9e5;
    --secondary-bg-color-active: #e8e4df;
    --secondary-text-color-hover: #2c2c4f;
    --secondary-text-color-active: #282848;
    --link-color-hover: #114686;
    --link-color-active: #0f3f78;
    --bg-image-opacity: 0.5;
    --bg-image-opacity-dark: 0.5;
    --bg-image-color: var(--primary-text-color);
}

.layout--style-filled .section:nth-child(even),
.layout--style-invert .section:nth-child(odd),
.section--secondary {
    /* Invert colors */
    --primary-bg-color: rgba(245, 243, 241, 1);
    --secondary-bg-color: #FFFFFF;
}

/*********
 Dark mode
 *********/
.ui-dark body {
    /* UI dark colors */
    --primary-color: rgba(226, 6, 38, 1);
    --secondary-color: #6DBC1D;
    --primary-bg-color: #000C20;
    --primary-bg-color-always: #000C20;
    --secondary-bg-color: #182233;
    --secondary-bg-color-always: #182233;
    --primary-text-color: #FFFFFF;
    --secondary-text-color: #8290A8;
    --link-color: #1863BC;
    --border-color: #242f42;
    --info-color: #1863BC;
    --success-color: #67C30B;
    --warning-color: #F1D52F;
    --danger-color: #e64545;
    --primary-color-light-hover: #f90e30;
    --primary-color-hover: #f92c4a;
    --primary-color-active: #fa3b57;
    --secondary-color-hover: #8ce036;
    --secondary-color-active: #93e243;
    --secondary-bg-color-hover: #2c3e5d;
    --secondary-bg-color-active: #304567;
    --link-color-hover: #4891e8;
    --link-color-active: #5699e9;
    --bg-image-opacity: 0.5;
    --bg-image-opacity-dark: 0.75;
    --bg-image-color: var(--primary-bg-color);
}

.ui-dark .layout--style-filled .section:nth-child(even),
.ui-dark .layout--style-invert .section:nth-child(odd),
.ui-dark .section--secondary {
    /* Invert colors */
    --primary-bg-color: #182233;
    --secondary-bg-color: #000C20;
}

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

body,
html {
    min-height: 100vh;
}

[dir] body,
[dir] html {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--text-font-family);
    font-size: var(--text-font-size);
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-text-color);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

[dir] body {
    background-color: var(--secondary-bg-color);
}

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

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-color-hover);
}

a:active,
a.is-active {
    color: var(--link-color-active);
}

[dir] a.is-disabled {
    cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
    color: var(--secondary-text-color);
}

[dir] a,
[dir] button,
[dir] [type=submit],
[dir] [type=button],
[dir] [type=reset] {
    cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
    transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
    outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
    outline: auto 5px -webkit-focus-ring-color;
}

[dir] figure {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/********
 Headings
 ********/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--heading-font-family);
    font-weight: 700;
}

h1,
.h1 {
    font-size: var(--heading-2-font-size);
    line-height: 1.2;
}

[dir] h1,
[dir] .h1 {
    margin: 0 0 1.2em;
}

[dir] .markdown h1,
[dir] .markdown .h1 {
    margin-top: 1.2em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    h1,
    .h1 {
        font-size: var(--heading-1-font-size);
        line-height: 1.1;
    }

    [dir] h1,
    [dir] .h1 {
        margin: 0 0 1em;
    }

    [dir] .markdown h1,
    [dir] .markdown .h1 {
        margin-top: 1em;
    }
}

h2,
.h2 {
    font-size: var(--heading-3-font-size);
    line-height: 1.3;
}

[dir] h2,
[dir] .h2 {
    margin: 0 0 1.3em;
}

[dir] .markdown h2,
[dir] .markdown .h2 {
    margin-top: 1.3em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    h2,
    .h2 {
        font-size: var(--heading-2-font-size);
        line-height: 1.2;
    }

    [dir] h2,
    [dir] .h2 {
        margin: 0 0 1.2em;
    }

    [dir] .markdown h2,
    [dir] .markdown .h2 {
        margin-top: 1.2em;
    }
}

h3,
.h3 {
    font-size: var(--heading-4-font-size);
    line-height: 1.4;
}

[dir] h3,
[dir] .h3 {
    margin: 0 0 1.4em;
}

[dir] .markdown h3,
[dir] .markdown .h3 {
    margin-top: 1.4em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    h3,
    .h3 {
        font-size: var(--heading-3-font-size);
        line-height: 1.3;
    }

    [dir] h3,
    [dir] .h3 {
        margin: 0 0 1.3em;
    }

    [dir] .markdown h3,
    [dir] .markdown .h3 {
        margin-top: 1.3em;
    }
}

h4,
.h4 {
    font-size: var(--heading-4-font-size);
    line-height: 1.4;
}

[dir] h4,
[dir] .h4 {
    margin: 0 0 1.4em;
}

[dir] .markdown h4,
[dir] .markdown .h4 {
    margin-top: 1.4em;
}

h5,
.h5 {
    font-size: var(--heading-5-font-size);
    line-height: 1.5;
}

[dir] h5,
[dir] .h5 {
    margin: 0 0 1.5em;
}

[dir] .markdown h5,
[dir] .markdown .h5 {
    margin-top: 1.5em;
}

h6,
.h6 {
    font-size: var(--heading-6-font-size);
    line-height: 1.5;
}

[dir] h6,
[dir] .h6 {
    margin: 0 0 1.5em;
}

[dir] .markdown h6,
[dir] .markdown .h6 {
    margin-top: 1.5em;
}

/**********************
 Other default elements
 *********************/
[dir] p,
[dir] ul,
[dir] ol,
[dir] dl,
[dir] pre,
[dir] table,
[dir] blockquote {
    margin: 1.5em 0 1.5em;
}

[dir] li {
    margin: 0.75em 0 0.75em;
}

small,
.small {
    font-size: var(--heading-6-font-size);
}

[role="main"] {
    flex-grow: 1;
    position: relative;
}

hr {
    display: block;
    height: 0;
}

[dir] hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

pre {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    color: var(--primary-bg-color);
}

[dir] pre {
    padding: 8px 16px;
    border-radius: var(--border-radius-base);
    background-color: var(--primary-text-color);
}

.ui-dark pre {
    color: var(--secondary-text-color);
}

[dir].ui-dark pre {
    background-color: var(--secondary-bg-color);
}

blockquote {
    display: block;
    position: relative;
    z-index: 2;
}

[dir=ltr] blockquote {
    padding-left: 16px;
    border-left: 1px solid var(--border-color);
}

[dir=rtl] blockquote {
    padding-right: 16px;
    border-right: 1px solid var(--border-color);
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
    [dir=ltr] blockquote {
        padding-left: 24px;
    }

    [dir=rtl] blockquote {
        padding-right: 24px;
    }
}

@media only screen and (min-width: 980px) {
    [dir=ltr] blockquote {
        padding-left: 32px;
    }

    [dir=rtl] blockquote {
        padding-right: 32px;
    }
}

blockquote:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: -4px;
    font-size: 60px;
    color: var(--secondary-bg-color);
}

[dir=ltr] blockquote:before {
    left: 8px;
}

[dir=rtl] blockquote:before {
    right: 8px;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9) and (max-width: 979px), only screen and (min-width: 668px) and (min-height: 416px) and (max-width: 979px) {
    [dir=ltr] blockquote:before {
        left: 12px;
    }

    [dir=rtl] blockquote:before {
        right: 12px;
    }
}

@media only screen and (min-width: 980px) {
    [dir=ltr] blockquote:before {
        left: 16px;
    }

    [dir=rtl] blockquote:before {
        right: 16px;
    }
}

.list-unstyled {
    list-style: none;
}

[dir=ltr] .list-unstyled {
    padding-left: 0;
}

[dir=rtl] .list-unstyled {
    padding-right: 0;
}

dl.details {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
}

[dir] dl.details {
    margin-bottom: 32px;
}

dl.details > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

dl.details > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

dl.details > dt {
    font-weight: 700;
}

[dir] dl.details > dt {
    margin-bottom: 12px;
}

[dir=ltr] dl.details > dt {
    margin-right: 8px;
}

[dir=rtl] dl.details > dt {
    margin-left: 8px;
}

[dir] dl.details > dd {
    margin-bottom: 12px;
}

dl.details > div {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
}

[dir] dl.details > div {
    margin-bottom: 12px;
}

dl.details--type-2 {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

[dir] dl.details--type-2 {
    margin-bottom: 0;
}

dl.details--type-2 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

dl.details--type-2 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

dl.details--type-2 > dd {
    color: var(--secondary-text-color);
}

@media only screen and (min-width: 980px), only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
    [dir=ltr] dl.details--type-2 > dd {
        text-align: right;
    }

    [dir=rtl] dl.details--type-2 > dd {
        text-align: left;
    }
}

.text-secondary {
    font-size: var(--heading-6-font-size);
    line-height: 1.5;
    color: var(--secondary-text-color);
}

/******
 Tables
 ******/
.table-container {
    display: block;
    width: 100%;
    overflow-x: auto;
}

[dir] .table-container {
    border: 1px solid var(--border-color);
    overflow-Y: hidden;
}

.table-container table:not(.pika-table) {
    width: calc(100% + 3px);
    max-width: calc(100% + 3px);
}

[dir] .table-container table:not(.pika-table) {
    margin: -1px;
}

table:not(.pika-table) {
    width: 100%;
    max-width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

table:not(.pika-table) thead {
    font-weight: 700;
}

[dir] table:not(.pika-table) thead {
    background-color: var(--secondary-bg-color);
}

[dir] table:not(.pika-table) tfoot {
    background-color: var(--secondary-bg-color);
}

table:not(.pika-table) thead,
table:not(.pika-table) tbody,
table:not(.pika-table) tfoot {
    width: 100%;
    max-width: 100%;
}

[dir=ltr] table:not(.pika-table) th {
    border-left: 1px solid var(--border-color);
}

[dir=rtl] table:not(.pika-table) th {
    border-right: 1px solid var(--border-color);
}

[dir] table:not(.pika-table) td {
    padding: 8px;
    border: 1px solid var(--border-color);
}

/*******
 Iframes
 *******/
.iframe {
    display: block;
    width: 100%;
    height: 0;
    position: relative;
}

.iframe iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

[dir=ltr] .iframe iframe {
    left: 0;
}

[dir=rtl] .iframe iframe {
    right: 0;
}


/********
BZ Header Footer
********/
#footer {
  padding-bottom: 0px;
  padding-top: 0px;
}
.bz-footer {
  background-color: rgb(250, 249, 248);
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  display: block;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  min-width: 0px;
  padding-bottom: 64px;
  padding-top: 64px;
}
.bz-footer .bz-footer--links-section {
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto!important;
  margin-right: auto!important;
  padding-left: 16px;
  padding-right: 16px;
}
.bz-footer .bz-footer--links-row {
  margin: 0px;
  min-width: 0px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  line-height: 25.6px;
}
.bz-footer .bz-footer--links-row .bz-footer--links-row--first {
  margin: 0px auto;
  min-width: 0px;
  display: flex;
  text-align: center;
  flex-direction: row;
  width: 100%;
}
.bz-footer .bz-footer--links-row .bz-footer--links-row--second {
  margin: 0px;
  min-width: 0px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  font-weight: 700;
  color: rgb(51, 51, 92);
}
.bz-footer .bz-footer--links-row .bz-footer--links-row--second div {
  text-align: center;
}

.bz-footer .bz-footer--links-row .bz-footer--link,
.bz-footer .bz-footer--links-row .bz-footer--link-regular { 
  font-family: "DM Sans",Arial,Helvetica,sans-serif;
  text-decoration: none;
  color: rgb(51, 51, 92);
  opacity: 1;
}
.bz-footer .bz-footer--links-row .bz-footer--link-regular:hover {
  opacity: 0.6;
  text-decoration: underline;
}
.bz-footer .bz-footer--links-row .bz-footer--link:hover {
  text-decoration: underline;
}
.bz-footer .bz-footer--links-row .bz-footer--link-regular {
  font-weight: 400;
  color: var(--link-color);
  text-decoration: underline;
}

.bz-header {
  height: 80px;
}
.bz-header .header__container {
  height: 80px;
  min-height: 80px;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.bz-header .header__container .container {
  height: 80px;
}
.bz-header-section {
  max-width	: 1200px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  height: 100%;
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
}
.bz-header-section .bz-header--logo {
 	display: flex;
  align-items: center;
}
.bz-header-section .bz-header--logo-img {
  width: 160px;
}
.bz-header-section .bz-header--links-container {
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  align-items: center;
  flex: 1;
  padding-top: 6px;
  padding-left: 40px;
  height: 100%;
  font-family: "DM Sans",Arial,Helvetica,sans-serif;	
}
.bz-header-section .bz-header--links-container a:first-of-type {
  margin-left: 0;
}
.bz-header-section .bz-header--links-container--link,
.bz-header-section .bz-header--links-container--link-small {
  text-decoration: none;
  color: rgb(0, 0, 51);
  font-weight: 700;
  opacity: 1;
  margin-left: 16px;
  margin-right: 16px;
  cursor: pointer;
  opacity: 0.6;
  line-height: 28px;
}
.bz-header-section .bz-header--links-container--link-small {
  font-size: 14px;
  margin-left: 8px;
  margin-right: 8px;
}
.bz-header-section .bz-header--links-container--link:hover,
.bz-header-section .bz-header--links-container--link-small:hover{
  opacity: 0.8;
}
.bz-header-section .bz-header--links-container .bz-header--spacer {
  flex: 1;
}
.bz-header-section .bz-header--hamburger-container,
.bz-header-section .bz-header--hamburger-menu-container {
  display: none;
}
.bz-header-section .bz-header--sign-in {
  color: var(--primary-color);
  opacity: 1;
}
.bz-header-section .bz-header--sign-in:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 1110px) {
  .bz-footer .bz-footer--links-row {
    grid: inherit;
    text-align: center;
  }
}

@media only screen and (max-width: 992px) {
  .bz-header-section .bz-header--links-container {
    display: none;
  }
  .bz-header-section .bz-header--hamburger-container {
    box-sizing: border-box;
    margin: 0px;
    min-width: 0px;
    display: flex;
    height: 100%;
    align-items: center;
    flex: 1 1 0%;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.02em;
    color: rgb(0, 0, 51);
    font-weight: 700;
    cursor: pointer;
  }
  .bz-header-section .bz-header--hamburger-menu-container {	
    box-sizing: border-box;
    margin: 0px;
    min-width: 0px;
    position: absolute;
    right: 0px;
    height: 100vh;
    z-index: 100;
    background: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 25%) 0px 7px 5px;
    width: 100%;
    top: 72px;
    max-width: 392px;
  }
  .bz-header-section .bz-header--hamburger-menu-container .bz-header--hamburger-menu--row {
    box-sizing: border-box;
    min-width: 0px;
    align-items: center;
    margin: 0px;
    padding: 8px 16px;
    border-top: 1px solid rgb(245, 243, 241);
    display: block;
    background-color: rgb(255, 255, 255);
  }
  .bz-header-section .bz-header--hamburger-menu-container .bz-header--hamburger-menu--row-link {
    box-sizing: border-box;
    margin: 0px;
    min-width: 0px;
    display: flex;
    align-items: center;
  }
  .bz-header-section .bz-header--hamburger-menu-container .bz-header--hamburger-menu--row-link a,
  .bz-header-section .bz-header--hamburger-menu-container .bz-header--hamburger-menu--row a {
  	box-sizing: border-box;
    min-width: 0px;
    text-decoration: none;
    color: rgb(0, 0, 51);
    font-weight: 700;
    opacity: 0.6;
    cursor: pointer;
    margin: 4px 0px;
    font-family: 'DM Sans', Arial, Helvetica, sans-serif !important;
    line-height: 28px !important;
	}
  .bz-header-section .bz-header--hamburger-menu-container .bz-header--hamburger-menu--row-link a:hover,
  .bz-header-section .bz-header--hamburger-menu-container .bz-header--hamburger-menu--row a:hover {
  	opacity: 0.8 !important;
  }
  .bz-header-section .bz-header--hamburger-menu-container .bz-header--hamburger-menu--row-spacer {
  	box-sizing: border-box;
    margin: 0px;
    min-width: 0px;
    flex: 1 1 0%;
  }
  .bz-header-section .bz-header--hamburger-container .bz-header--hamburger-container--spacer {
    box-sizing: border-box;
    margin: 0px;
    min-width: 0px;
    flex: 1 1 0%;
  }
  
  /* SHOWN */
  #BzHeader.opened #bz-header-hamburger-menu-dropdown,
  #BzHeader.opened #bz-header-hamburger-menu-close {
    display: block;
  }
  
  /* HIDDEN */
  #BzHeader #bz-header-hamburger-menu-close,
  #BzHeader.opened #bz-header-hamburger-menu {
    display: none;
  } 
  
  
}

/* ADA updates Nov 13, 2024 */
div#upload-dropzone:focus-within {
  outline: 2px solid #003;
  outline-offset: 2px;
}
.nesty-input:after {
  color: #003;
}
.header__container.is-filled {
  box-shadow: unset !important;
}
.page-heading .breadcrumbs {
  flex-flow: row;
}

#bzFooter p {
  margin: unset;
}