/*
    Layout v3 Mark 1

    Table of Contents

    1. Variables
	2. Defaults & General Elements
	3. Page
		3.1 Layout Header
		3.2 Layout Page Content
		3.3 Layout Footer
		3.4 Accordians
		3.5 General Classes
    4. Inputs
		4.1 Flex Config
		4.2 Input Default Classes
		4.3 Control Validator
		4.4 Label
		4.5 Checkboxes/Radio Buttons

	5. Buttons
		5.1 Navigation Button Container
		5.2 Primary Button
		5.3 Minor Button
		5.4 Next & Back Button
		5.5 Other Buttons
    6. Control Specific
		6.1 Panel
		6.2 Product Services
		6.3 Address
		6.4 Employment History
		6.5 Income
		6.6 Documents
		6.7 Disclosures
		6.8 Product Relationship
		6.9 Default ACH
		6.10 Credit Card
		6.11 One Time Passcode
		6.12 HMDA
		6.13 ProductFunding
		6.14 Individual Details
		6.15 Individual List
		6.16 IDAuth
		6.17 Progress Bar
		6.18 Beneficial Ownership
		6.19 Phone Control
		6.20 Beneficiaries
		6.21 Account Selection
        6.22 Prove
        6.23 YearsMonthsDuration
		6.99 ID Specific (Always Last)
    7. Specific Pages
		7.1 Default
		7.2 Application Summary
    8. Mobile
		8.1 Tablet & Phone in Landscape (600px to 1200px)
		8.2 8.2 Smallest (<751px)
		8.3 Ultra Wide
    9. IE Only
		9.1 Variable Conversion
		9.2 Always Required
	10. Admin Console/Branch
		10.1  Branch Specific Controls
		10.1a Person Search
*/
/*
    1. Variables
*/
:root {
  --primary-color: #05273f;
  --primary-color-focus: #286090;
  --secondary-color: #dc2626;
  --secondary-color-focus: #b91c1c;
  --box-background-color: #f6f6f6;
  --box-border-color: #3498db;
  --primary-shadow: 0.8rem 1.2rem 1.2rem rgba(0, 0, 0, 0.17);
  --primary-shadow-focus: 0px 5px 40px -5px rgba(0, 0, 0, 0.4);
  --secondary-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  --secondary-shadow-focus: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  --page-width: 86rem;
  --control-width: 400px;
  --control-height: 40px;
  --horizontal-object-spacer: 20px;
  --section-gap: 40px;
  --object-gap: 10px;
  --control-width-half: calc(calc(var(--control-width) - var(--object-gap)) / 2);
  --border-radius: 4px;
  --font-size: 1.6rem;
  --rem-size: 10px;
  --font-control-color: #333333;
  --font-label-color: #333333;
  --font-color: #575757;
  --link-font-color: #286090;
  --link-font-color-hover: #1e77b3;
  /*background colors*/
  --header-background: #fff;
  --layout-background: #fff;
  --footer-background: #606060;
  /* space */
  --space-unit: 0.25rem; /*3.5px at 14px base */
  --space-0: 0;
  --space-1: calc(var(--space-unit) * 1); /* 0.25rem */
  --space-2: calc(var(--space-unit) * 2); /* 0.5rem */
  --space-3: calc(var(--space-unit) * 3); /* 0.75rem */
  --space-4: calc(var(--space-unit) * 4); /* 1rem or 14px*/
  --space-5: calc(var(--space-unit) * 5); /* 1.25rem */
  --space-6: calc(var(--space-unit) * 6); /* 1.5rem */
  --space-7: calc(var(--space-unit) * 7); /* 1.75rem */
  --space-8: calc(var(--space-unit) * 8); /* 2rem */
  --space-10: calc(var(--space-unit) * 10); /* 2.5rem */
  --space-11: calc(var(--space-unit) * 11); /* 2.75rem */
  --space-12: calc(var(--space-unit) * 12); /* 3rem */
  --space-14: calc(var(--space-unit) * 14); /* 3.5rem */
  --space-16: calc(var(--space-unit) * 16); /* 4rem */
  --open-account-width: 66px;
  --open-account-space: 24px;
  --open-account-min-width: calc(calc(var(--open-account-width) * 6) + calc(var(--open-account-space) * 5));
  /*grid structure*/
  --working-page-width: 1056px;
  --grid-container-max: 1200px;
  --grid-container-padding: clamp(10px, 2vw, 20px);
  /*colors*/
  /*gray scale*/
  --color-white-light: #f9fafb;
  --color-white-normal: #fff;
  --color-white-dark: #e5e7eb;
  --color-gray-light: #c2c2c2;
  --color-gray-light2: #e7e7e7;
  --color-gray-normal: #6b7280;
  --color-gray-dark: #4b5563;
  --color-black-light: #1f2937;
  --color-black-normal: #111827;
  --color-black-dark: #030712;
  /*client colors*/
  --color-primary-light: #499bdd;
  --color-primary-normal: #05273f;
  --color-primary-dark: #286090;
  --color-secondary-light: #ef4444;
  --color-secondary-normal: #dc2626;
  --color-secondary-dark: #b91c1c;
  --color-tertiary-light: #10b981;
  --color-tertiary-normal: #059669;
  --color-tertiary-dark: #047857;
  --color-quaternary-light: #fcd34d;
  --color-quaternary-normal: #ffca63;
  --color-quaternary-dark: #f59e0b;
  --color-link-before: #0055b8;
  /*font family*/
  --font-family: "Roboto", sans-serif;
  --font-family-alt: "Playfair", serif;
  /*fonts*/
  /*default font*/
  --font-size: 14px;
  --font-lineheight: 20px;
  --font-color: #333333;
  --font-weight: 400;
  /*input*/
  --input-base-size: 10px;
  --font-size-input: 16px;
  --font-lineheight-input: 20px;
  --font-color-input: var(--color-black-light);
  --font-weight-input: 400;
  --font-family-input: var(--font-family);
  /*input label*/
  --font-size-input-label: 17px;
  --font-lineheight-input-label: 20px;
  --font-color-input-label: var(--font-color);
  --font-weight-input-label: 300;
  --font-family-input-label: var(--font-family);
  /*input label focus*/
  --font-size-input-label-focus: 14px;
  --font-lineheight-input-label-focus: 20px;
  --font-color-input-label-focus: var(--font-color);
  --font-weight-input-label-focus: 300;
  --font-family-input-label-focus: var(--font-family);
  --text-transform-input-label-focus: uppercase;
  /*label font*/
  --font-size-label: 16px;
  --font-lineheight-label: 20px;
  --font-color-label: var(--font-color);
  --font-weight-label: 500;
  --font-family-label: var(--font-family);
  /*page-header | h1 font*/
  --font-size-pageHeader: 30px;
  --font-lineheight-pageHeader: 30px;
  --font-color-pageHeader: #333333;
  --font-weight-pageHeader: 700;
  --font-family-pageHeader: var(--font-family-alt);
  /*page-section-header | h2 font*/
  --font-size-sectionHeader: 24px;
  --font-lineheight-sectionHeader: 24px;
  --font-color-sectionHeader: var(--color-primary-dark);
  --font-weight-sectionHeader: 500;
  /*page-sub-section-header | h3 font*/
  --font-size-subSectionHeader: 20px;
  --font-lineheight-subSectionHeader: 20px;
  --font-color-subSectionHeader: var(--font-color-pageHeader);
  --font-weight-subSectionHeader: 400;
}
/* 2. Responsive Grid */
@media (max-width: 1104px) {
  :root {
    --working-page-width: 900px;
    --grid-container-max: 900px;
  }
}

@media (max-width: 834px) {
  :root {
    --working-page-width: 100%;
    --grid-container-max: 100%;
  }
}

@media (max-width: 540px) {
  :root {
    --open-account-min-width: 100%;
  }
}
@media (max-width: 450px) {
  :root {
    --control-width: 100%;
    --control-width-half: 100%;
  }
}
/*
    2. Defaults & General Elements
*/
html,
body {
  font-size: var(--font-size);
  line-height: var(--font-line-height);
  color: var(--font-color);
  font-weight: var(--font-weight);
  font-family: var(--font-family);
  padding: 0 !important;
  width: 100%;
  height: 100%;
  margin: 0px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
p,
label,
input,
select,
textarea,
form {
  margin-block: 0;
  padding: 0;
  padding-block: 0;
  width: 100%;
}

h1,
.h1 {
  font-size: var(--font-size-pageHeader);
  line-height: var(--font-lineheight-pageHeader);
  color: var(--font-color-pageHeader);
  font-weight: var(--font-weight-pageHeader);
  font-family: var(--font-family-pageHeader);
  margin: 0;
}

h2,
.h2 {
  font-size: var(--font-size-sectionHeader);
  line-height: var(--font-lineheight-sectionHeader);
  color: var(--color-primary-normal);
  font-weight: var(--font-weight-sectionHeader);
  font-family: var(--font-family);
  margin: 0;
}

h3,
.h3 {
  font-size: var(--font-size-subSectionHeader);
  line-height: var(--font-lineheight-subSectionHeader);
  color: var(--font-color-subSectionHeader);
  font-weight: var(--font-weight-subSectionHeader);
  font-family: var(--font-family);
  margin: 0 0 0 0;
}

h4,
.h4 {
  font-size: var(--font-size);
  line-height: var(--font-line-height);
  color: var(--font-color);
  font-weight: var(--font-weight-pageHeader);
  font-family: var(--font-family);
  margin: 0 0 0 0;
}

legend {
  display: none;
}

a {
  display: flex;
  align-items: center;
  color: var(--color-link-before);
  font-weight: 400;
}

a:visited,
a:hover {
  color: var(--color-link-before);
}

label {
  font-size: var(--font-size-label);
  line-height: var(--font-lineheight-label);
  font-weight: var(--font-weight-label);
  font-family: var(--font-family-label);
  color: var(--font-color-label);
}

.tooltip-inner {
  max-width: 500px !important;
  min-width: 150px;
}

.question-text {
  font-size: 16px;
  font-weight: 500;
}

/* 4. Layout Structure */
.layout {
  background-color: var(--layout-background);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* 4a. Header */
header {
  width: 100%;
  display: flex;
  background-color: var(--header-background);
  z-index: 50;
  border-bottom: 2px solid var(--color-gray-light2);
  position: fixed;
  padding: 0 20px;
  box-shadow: none;
}

header > .layout-container {
  width: calc(var(--working-page-width) + 200px);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 100px;
}

.header-logo > img {
  width: 300px;
  padding: 2rem 1rem;
}

.header-item-container {
  flex-grow: 1;
  display: flex;
  gap: var(--object-gap);
  align-items: center;
}

.loader {
  top: 30% !important;
}

/* 4b. Main Content Area */
main {
  width: 100%;
  display: flex;
  flex-grow: 1;
  margin: 12.4em 0 auto 0;
  align-items: flex-start;
  padding: 0 20px;
}

main > .layout-container {
  width: var(--working-page-width);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 100px;
}

main > .layout-container > span {
  /*this is span that start the fivision_PageContent*/
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: var(--section-gap);
}

/* 4c. Footer */
footer {
  width: 100%;
  padding: var(--space-16);
  text-align: left;
  background-color: var(--color-primary-normal);
  color: var(--color-white-normal);
  margin: 0;
}

footer > .layout-container {
  width: calc(var(--working-page-width) + 200px);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 16px;
  align-items: flex-start;
  gap: 20px;
  border: none;
}

#footer__first-row {
  display: grid;
  gap: var(--space-1);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#footer__second-row {
  display: flex;
  width: 100%;
  padding-left: var(--space-12);
  padding-top: var(--space-10);
}

footer p {
  color: inherit;
}

footer ul {
  list-style-type: none;
}

footer .footer_disclosures-menu ul {
  padding-left: 0;
  padding-top: var(--space-8);
}

footer .footer_disclosures-menu li {
  display: inline-flex;
  padding-right: var(--space-3);
}

footer .footer_disclosures-menu li a {
  color: var(--color-white-normal);
  font-weight: 400;
  font-size: 18px;
}

.footer-item__link {
  color: var(--color-white-normal);
  font-size: 18px;
}

.footer-item__link:visited,
.footer-item__link:hover {
  color: var(--color-white-normal);
}

.social-links__img {
  height: auto;
  margin-right: 20px;
  width: 35px;
}

#footer_insured-equal-housing-text {
  display: flex;
  justify-content: left;
  width: 20%;
  font-size: 14px;
  padding-top: 1em;
}

#footer_insured-equal-housing-images img {
  height: 45px;
  margin-right: var(--space-3);
}

#footer_insured-equal-housing-images {
  display: flex;
  justify-content: center;
  width: 14%;
}

#footer_cobrowsing-code-button-container {
  display: flex;
  justify-content: center;
  padding-top: var(--space-8);
  width: 33%;
}

#footer_disclosures-and-copyright-container {
  width: 33%;
}

#footer__copyright-container {
  display: inline-flex;
  font-size: 14px;
}

#footer__copyright-container > div:first-child {
  padding-top: var(--space-2);
  padding-right: var(--space-1);
}
#footer__copyright-container .fiviLabelContainer {
  display: inline-flex;
}
#footer__copyright-container .fiviLabelContainer label {
  position: relative;
  top: 4.5px;
}

#footer__copyright-container span label {
  color: var(--color-white-normal);
  font-size: 14px;
  font-weight: 400;
}

.omnibrowse-code-button {
  color: #fff;
  background-color: #5b5b5b;
  height: 3rem;
  border-radius: 2.75rem;
  border: 0;
  line-height: 1.2rem;
  font-size: 1.125rem;
  padding: 0.5rem 1.5rem;
}

.omnibrowse-code-button:hover {
  border: 0;
  background: #fff;
  color: #003764;
}

/*
    3.1 Layout Header
*/
#LayoutHeader {
  width: 100%;
  background-color: white;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.17);
  z-index: 1;
  position: relative;
  padding-bottom: 1.6rem;
}

#LayoutHeaderContents {
  margin: 0 auto;
  width: var(--page-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}

#HeadContact {
  margin-right: 3rem;
  padding: 30px 0;
}

.iconText {
  padding-left: 0.5rem;
}

.HeaderContactInfo {
  padding-top: 0.5rem;
}

#HeadLogo img {
  width: 200px;
}

#ShoppingCartIcon > .fiviShoppingCartIconSpan {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
/*
    3.2 Layout Page Content
*/
#LayoutPage {
  margin: 0 auto;
  width: calc(var(--page-width) + 6.4rem + 2px);
  background-color: white;
  padding: 4.8rem 3.2rem 1.6rem 3.2rem;
}

.form-section {
  margin: 0 1.6rem;
}

/*
    3.3 Layout Footer
*/
#LayoutFooter {
  width: 100%;
}

#LayoutFooterContents {
  margin: 0 auto;
  padding: 1.6rem 0;
  width: calc(var(--page-width) + 6.4rem + 2px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
}

#LayoutFooterContents > div {
  margin: 0.4rem 0;
}

.copyright label {
  font-size: unset;
  font-weight: unset;
}

.footerBar {
  border-top: 2px solid #515456;
  width: 80px;
  margin: 20px auto;
  display: none;
}

.footer-img img {
  height: unset !important;
  width: 4% !important;
}

/*
    3.5 General Classes
*/
/*
.SectionBox {
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, .075), 0 0 3px rgba(102, 175, 233, .6);
	background-color: var(--box-background-color);
	border-radius: 1.6rem;
	border: 1px solid var(--box-border-color);
	width: calc(100% + 2px) !important;
	padding: 1.6rem 3.2rem !important;
	margin: 3.2rem 0 !important;
}
*/
.PageHeader {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 150%;
  margin: 0 0 1.6rem 0;
  color: #0e4700;
}

.PageDesc {
  margin: 1.6rem 0;
  font-size: 1.6rem;
}

.SectionHeaders {
  border-bottom: 1px solid var(--color-primary-normal);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.SectionDesc {
  margin: 0.8rem 0 0.8rem 0;
  width: 100%;
}

.indentLeft {
  margin: 0 0 0 1.6rem;
}

.LeftFlush {
  margin-left: 0;
}

.flexBreak {
  flex-basis: 100%;
  height: 0;
}

.fiviMultiSeperator {
  margin: 1.6rem auto 0.4rem auto;
  width: 24rem;
  height: 2px;
  background-color: var(--primary-color);
  box-shadow: 0 0 3px rgba(102, 175, 233, 0.6);
}

.fiviNoPadding {
  padding: 0;
}

.fiviLineMargins {
  margin: 1.6rem 0 0.8rem 0 !important;
}

.fiviHide {
  display: none !important;
}

.fiviCenterControl {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.DefaultTooltipClass {
  position: absolute;
  right: 1.6rem;
  top: 3.6rem;
}

.tooltip-arrow {
  display: none;
}

.SectionBox .table-striped > tbody > tr:nth-child(even) > td,
.SectionBox .table-striped > tbody > tr:nth-child(even) > th {
  background-color: white;
}

.SectionBox .table-hover > tbody > tr:not(:first-of-type):hover > td {
  background-color: #e8e8e8;
}

.SectionBox .table-hover > tbody > tr:first-of-type:hover > td {
  background-color: inherit;
}

.SectionBox th {
  border-top: none !important;
}

/*
    4. Inputs
    4.1 Flex Config
*/
.form-flex,
.form-inline {
  width: 100%;
  padding: 0 0 1.6rem 0;
  display: flex;
}

.fiviMultiInput {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.form-flex,
.form-flex .fiviMultiInput {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-inline,
.form-inline .fiviMultiInput {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*
    4.2 Input Default Classes
*/
.fiviInput {
  display: flex;
  position: relative;
  padding-top: 20px;
  width: var(--control-width);
  margin-bottom: 0.8rem;
}

.form-control {
  width: 100% !important;
  height: calc(var(--input-base-size) * 4);
  margin: 5px 0px 5px 0px;
  padding: 0px 1.6rem 0px 1.6rem;
  background-color: white;
  color: var(--font-control-color);
  border: 1px solid #c0c0c0;
  border-radius: 0.4rem;
  border-bottom: 1px solid var(--primary-color);
  box-shadow: 0 4px 6px -6px var(--primary-color);
}

.fiviTransparent {
  color: transparent;
}

.TwoControls {
  margin: 5px 0px 5px 0px;
  padding: 0 1.6rem 0 1.6rem;
  width: 48%;
}

.fiviInput.TwoControls {
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

select.TwoControls {
  padding: 0px 10px 0px 10px;
}

.fiviTwoInput {
  justify-content: space-between;
}

.fiviLongInput {
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
}

.fiviLongInput > .TwoControls {
  width: 19.2rem !important;
  margin-right: 1.6rem;
}

.fiviFullWidth {
  width: 100% !important;
}

.fiviThirdWidth {
  width: 33% !important;
  display: block;
}

.fiviInput.TwoControls > .DefaultTooltipClass,
.fiviCheckBox > .DefaultTooltipClass {
  top: 1.6rem;
}

.fiviParentControl.fiviEmailTextBox .fiviTextBox {
}

.fiviParentControl.fiviEmailTextBox {
  width: var(--control-width) !important;
}

/*
    4.3 Control Validator
*/
.CtlValidator {
  position: absolute;
  top: 3.6rem;
  right: 0.4rem;
  font-weight: 700;
  z-index: 2;
  width: 1rem;
}

.fiviInput.TwoControls > .CtlValidator {
  top: 1.6rem;
}

.fiviProductFundingItem .CtlValidator {
  top: 2.4rem;
}

/*
    4.4 Label
*/
.DefaultLabelClass {
  font-size: var(--font-size-input-label);
  color: var(--font-color);
  font-weight: var(--font-weight-input-label);
  font-family: var(--font-family-input-label);
  line-height: var(--font-lineheight-input-label);
  cursor: text;
  top: 28px;
  left: 16px;
  position: absolute;
  text-align: left;
  width: 100%;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}

.fiviTwoInput > .DefaultLabelClass,
.fiviLongInput > .DefaultLabelClass {
  top: 0;
  left: 0;
  font-size: 1.6rem;
}

.fiviInput.fiviLongInput.fiviPhoneControl > .DefaultLabelClass {
  left: 1.6rem;
  top: 3.4rem;
  font-size: 1.8rem;
}

.FocusLabelClass,
.fiviInput.fiviLongInput.fiviPhoneControl > .FocusLabelClass {
  top: 0;
  left: 0;
}

.fiviOutsideLabel {
  margin: 2.4rem 0 0.8rem 0;
}

label.label-inline {
  font-weight: normal;
  display: inline;
  font-size: 1.4rem;
}

.label-inline input {
  vertical-align: middle;
}

.label-inline span {
  vertical-align: middle;
}

/*
    4.5 Checkboxes/Radio Buttons
*/
.fiviControl.fiviRadioButton {
  display: inline-flex;
  align-items: center;
  /* max-width: 33%; */
}

.fiviControl.fiviRadioButton input {
  width: 22px;
  height: 22px;
  display: flex;
  padding: 0;
  margin: 0;
  align-self: unset;
  cursor: pointer;
}

.fiviControl.fiviRadioButton input:focus {
  outline-color: var(--primary-color);
}

.fiviControl.fiviRadioButton label {
  top: 0px;
  position: relative;
  display: unset;
  width: auto;
}

.fiviradiobutton .fiviCheckboxContainer,
.fiviradiobutton .fiviRadioButtonContainer {
  all: inherit;
  width: 100%;
  margin: 0;
}

.fiviradiobutton .DefaultLabelClass {
  pointer-events: all;
  cursor: pointer;
}

.fiviControl.fiviCheckBox {
  display: inline-flex;
  justify-content: flex-start;
  width: auto;
  flex-direction: row;
  align-items: center;
}

.fiviControl.fiviCheckBox input {
  width: 22px;
  height: 22px;
  margin: 0px;
  margin-right: 14px;
}

.fiviControl.fiviCheckBox input:focus {
  outline-color: var(--primary-color);
}

.fiviCheckBox {
  align-items: center;
  margin: 0.4rem 0px;
  padding: 0;
}

.rbGroupTwoAnswers > .fiviCheckBox {
  margin: 0;
  padding: 0;
  width: 8rem;
}

.cbButtonGroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 0 calc(1.6rem + 5px) 0;
  padding: 0 0 0 32rem;
}

.rbButton {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0.8rem 0 0.8rem 0;
}

.rbButton > .fiviCheckBox {
  width: 3.2rem;
}

.rbLabel {
  font-size: 1.6rem;
  margin: 0 0 0 0;
}

.rbButtonGroup {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 1rem 0 0 0;
}

.rbGroupAnswer {
  min-width: 140px;
  width: 50%;
}

.rbGroupTwoAnswers {
  min-width: 140px;
  width: 30%;
  display: flex;
  width: var(--control-width);
  margin-left: 1rem;
}

.rbGroupTwoAnswers > span > .form-control,
.rbGroupAnswer > span > .form-control {
  width: 90% !important;
}

.rbGroupTwoAnswers > .fiviRadioButton {
  width: 20%;
}

.rbButtonGroup > .cbButtonGroup {
  padding: 0 0 0 3.2rem;
  margin: 1.6rem 0 0 0;
}

.rbButtonGroup label {
  font-weight: 500;
}

.rbGroupAddInfo {
  margin: 0 0 0 3.2rem;
  width: 40rem;
}

.fivicbNoLabel {
  display: inline;
  margin: 0.8rem 0;
  padding: 0;
}

.fiviCheckBox.TwoControls {
  padding: 8px 10px 0px 10px;
}

.icheckbox_square-black,
.icheckbox_square-red,
.icheckbox_square-green,
.icheckbox_square-blue,
.icheckbox_square-aero,
.icheckbox_square-grey,
.icheckbox_square-orange,
.icheckbox_square-yellow,
.icheckbox_square-pink,
.icheckbox_square-purple {
  background-color: white;
}

.iradio_square-black,
.iradio_square-red,
.iradio_square-green,
.iradio_square-blue,
.iradio_square-aero,
.iradio_square-grey,
.iradio_square-orange,
.iradio_square-yellow,
.iradio_square-pink,
.iradio_square-purple {
  background-color: white;
  border-radius: 50%;
}

.fiviParentControl.fiviEmploymentHistory {
  width: 100% !important;
  & > .fiviEmpHistLblContainer label.DefaultLabelClass {
    position: relative;
    top: 0;
    left: 0;
  }
}

.checkbox-seperated-label {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--object-gap);
}

.checkbox-container-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--object-gap);
}

.checkbox-container-row > .fiviCheckBox {
  width: var(--control-width);
}

.checkbox-container-row > .fiviCheckBox label,
.checkbox-container-row-compact > .fiviCheckBox label {
  font-weight: 400;
  text-indent: -3px;
}

.checkbox-container-row-compact,
.obRadioOpts {
  display: flex;
  flex-direction: row;
  gap: var(--object-gap);
}
.fiviRadioButtonContainer label {
  font-size: var(--font-size-label);
  line-height: var(--font-lineheight-label);
  color: var(--font-color-label);
  font-weight: var(--font-weight-label);
  font-family: var(--font-family-label);
  display: inline;
}
.fivi-subtle-seperator {
  width: 100%;
  border-bottom: 1px solid var(--color-gray-normal);
  opacity: 50%;
}
.answer-container.checkbox-container-row-compact span,
.answer-container.obRadioOpts span {
  margin-right: 1.5rem;
}
.content-header-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: var(--object-gap);
}
label.checkbox-label a {
  display: inline;
}

.obRadioOpts {
  justify-content: unset;
  gap: 0;
}

.obRadioOptsGroup {
  display: flex;
  gap: var(--object-gap);
}

/*
    5. Buttons
    5.1 Navigation Button Container
*/

.default-start-new-applicant {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.navigation-container {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  margin-bottom: var(--space-10) !important;
  padding: 0 6rem !important;
}

.disclosures-navigation-container,
.disclosures-navigation-container__decline {
  width: 100%;
  padding: 0 6rem !important;
}

.two-button-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
}

.btn-fit {
  height: fit-content;
}

.pnlDirectionButtons > .fiviPanelContainer,
.pnlDirectionButtons > .fiviHeaderPanelClass,
.pnlASC > .fiviPanelContainer,
.pnlDirectionButtons,
.pnlDirectionButtonsOther {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  margin: 1.6rem 0 1.6rem 0;
  gap: 1.6rem;
}

.pnldirectionbuttons > span,
.pnldirectionbuttonsother > span {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.pnldirectionbuttonsother {
  justify-content: flex-end;
}

.pnlASC > .fiviPanelContainer {
  margin: 1.6rem 0 -1.6rem 0;
}

.fiviControl.fiviPanel.pnlDirectionButtons {
  justify-content: center;
  padding: 0;
  margin: 1.6rem 0;
  width: 100%;
}

.page-Required-docs div.fiviDocumentList > span > div > span.fiviBtnContainer button.btn.btn-default {
  color: var(--color-white-normal);
  background-color: var(--color-link-before);
  line-height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  width: fit-content !important;
  min-width: 175px;
  font-size: 16px;
  border-radius: 2.75rem;
  padding: 0.6em 0.8em;
  text-decoration: none;
  margin-bottom: 1rem;
}

/*
    5.2 Primary Button
*/
.PrimaryButton {
  background-color: var(--color-primary-normal);
  border: 1px solid var(--color-primary-normal);
  color: var(--color-white-normal) !important;
  width: fit-content;
  min-width: 175px;
  font-size: 16px;
  border-radius: var(--space-11);
  display: block;
  text-align: center;
  font-weight: 700;
  line-height: 24px;
  padding: 13.3333px 53.3333px;
}

.PrimaryButton:hover,
.PrimaryButton:active,
.PrimaryButton:focus {
  text-decoration: none;
  background-color: var(--color-gray-light2);
  border: 1px solid #c2c2c2;
  color: var(--color-primary-normal);
}

/*
    5.3 Minor Button
*/
.MinorButton {
  background-color: var(--primary-color);
  border: none;
  color: #fff;
  padding: 1.2rem 0;
  margin: 0.5rem 0 1.6rem 0;
  box-shadow: var(--secondary-shadow);
  width: 25.6rem !important;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.4s ease 0s;
}

.MinorButton:hover,
.MinorButton:active,
.MinorButton:focus {
  background-color: var(--primary-color-focus);
  color: #fff;
  box-shadow: var(--secondary-shadow-focus);
  transition: all 0.4s ease 0s;
  border-radius: 3.2rem;
  outline: none;
}

/*
    5.4 Next & Back Button
*/
.NextButton {
  /* box-shadow: none; */
}

.NextButton:active,
.NextButton:hover,
.NextButton:focus {
}

.BackButton {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.BackButton:active,
.BackButton:focus,
.BackButton:hover {
  background-color: var(--secondary-color-focus);
  border-color: var(--secondary-color-focus);
}

.pnlDirectionButtons > .btnBackButton2 > .BackButton {
  text-align: center;
}

/*
    5.5 Other Buttons
*/
.SaveButton {
  color: var(--primary-color);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-align: center;
  font-size: 1.4rem;
}

.SaveButton:active,
.SaveButton:hover,
.SaveButton:focus {
  background: transparent !important;
  border: none;
  box-shadow: none;
  text-align: center;
  text-decoration: underline;
  transition: all 0.4s ease 0s;
  color: var(--primary-color-focus);
}

.DeclineButton {
  box-shadow: none !important;
}

.DeclineButton:active,
.DeclineButton:hover,
.DeclineButton:focus {
}

.fiviRemoveBtn {
  position: relative;
  left: 48.5%;
  top: -2rem;
  z-index: 2;
  background-color: var(--box-background-color);
  color: var(--primary-color);
}

.fiviRemoveBtn:active,
.fiviRemoveBtn:hover,
.fiviRemoveBtn:hover,
.fiviRemoveBtn:hover,
.fiviRemoveBtn:focus {
  color: var(--primary-color-focus);
}

.fiviCenterBtn {
  display: flex;
  justify-content: space-around;
  margin: 1.6rem 0 1.6rem 0;
}

.StartButton {
  width: calc(100% - 1.6rem) !important;
  margin: 0 0 0.8rem 0;
}

.EditButton {
  border: 0 !important;
  background-color: transparent;
}

/*
    6. Control Specific
    6.1 Panel
*/
.fiviPanel {
  width: 100%;
}

.fiviPanelContainer {
  width: 100%;
}

.fiviPanel .PageDesc {
  margin: 0;
}

.fiviHeaderPanelClass {
  width: 100%;
}

/*
    6.2 Product Services
*/
.ProductGroupTitles {
  margin: 0 0 0.8rem 0;
}

.fiviProdGroup,
.fiviServGroup {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  padding: 0rem 0rem 1.6rem 0rem;
  position: relative;
}

.fiviProductDisplay.fiviProdServ {
  width: var(--control-width);
  margin: 0 0 1.6rem 0;
  padding: 0 !important;
  border-radius: 1.6rem;
  position: relative;
}

.fiviProductServices > div div {
  padding: unset !important;
}

.fiviProductServices .fiviProductServiceDisplay {
  padding: 0.5rem 0 0.5rem 0 !important;
}

.fiviProductDisplay.fiviProdServ > div {
  padding: 0.5rem 0 0.5rem 0.5rem !important;
}

.fiviprodserv .fivicontrol.fivicheckbox,
.fiviprodserv .fivicontrol.fiviradiobutton {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.fiviprodserv .DefaultTooltipClass {
  top: 0;
  right: 0;
  position: relative;
  margin-left: auto;
}

.fiviNoProd {
  padding: 0.8rem 0 1.6rem 2.4rem;
}

.Product_MoreInfo,
.Service_MoreInfo {
  margin: 0.8rem 0 0.4rem 1.6rem;
}

.fiviProdInnerPanel > .Service_MoreInfo {
  margin: 0.8rem 0 0.8rem 3.2rem;
}

.fiviProductFundingItem > .Product_MoreInfo {
  margin: auto;
  width: 80%;
}

.fiviProdPanel {
  padding: 0 0 0 1.6rem;
}

.fiviProdPanel > .fiviInput {
  width: 100%;
}

.fiviProductFundingItem > .fiviProdPanel {
  width: 80%;
  margin: auto;
}

.fiviProductFundingItem > .fiviInput {
  width: 80%;
  justify-content: space-between;
  padding-top: 0.8rem;
  margin: auto;
  align-items: center;
  padding: 0.8rem 0 0 1.6rem;
}

.fiviProductFundingItem > .fiviInput > input {
  order: 1;
}

.fiviProdInnerPanel {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 0;
  position: relative;
}

.fiviProdInnerPanel > .DefaultTooltipClass {
  right: 0rem;
  top: 0.5rem;
}

.fiviProdDesc {
  margin: 0 2.4rem 0 2.4rem;
}

.fiviCDWizardInfo {
  width: 100%;
  justify-content: space-between;
  background-color: white;
  box-shadow: none;
  margin: 0 0rem;
  padding: 1.6rem 0;
}

.fiviCertDesc {
  margin: 0 0.8rem;
}

.fiviMultiInput.fiviCDWizardInfo {
  flex-direction: row;
}

.ProductServiceTitle {
  align-items: center;
  display: flex;
}

.ProductServiceTitle > div {
  margin: 0;
}

.ProductServiceTitle > label {
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 0 0.6rem;
}

.ProductServiceTitle.fiviCheckBox {
  margin: 0.8rem 0 0 0;
}

.fiviProductServices .fiviProductAdditionalOptions {
  padding: 0 0 0 1.6rem !important;
}

/*
    6.3 Address
*/
.DefaultAddressVerifyingClass {
  display: block;
  width: 100%;
  text-align: center;
}

.fiviSameAs {
  width: 100%;
  padding: 0.8rem 0;
  margin: 1.6rem 0 0.8rem 0;
}

.AddressContainer {
  width: var(--control-width);
  position: relative;
  display: inline-flex;
  padding-bottom: 1.6rem;
}

.AddressContainer > .fiviAddress {
  position: static;
}

.AddressContainer .fiviCheckBox {
  position: absolute;
  left: 12rem;
  z-index: 1;
  margin: 0;
  top: -1.6rem;
}

.AddressContainer .fiviSameAs > label {
  font-weight: normal;
}

.fiviAddManual {
  width: 100%;
  margin: 1.6rem 0 0 0;
}

/*
	6.4 Employment History
*/
.fiviEmpHistoryControl {
  width: 100%;
}

.fiviEmpHistHeadText {
  margin: 0.8rem 0 0.8rem 0.4rem;
  display: block;
}

.fiviEmploymentHistory .fiviMultiInput > div {
  width: var(--control-width);
}

/*
	6.5 Income
*/
.fiviIncomeControl {
  width: 100%;
}

/*
	6.6 Documents
*/
.fiviDocumentList {
  width: 100%;
  margin: 1.6rem 1.6rem 0rem 1.6rem;
}

.fiviDocListBtn {
  display: flex;
  justify-content: center;
}

.fiviDocumentList .fiviCenterBtn {
  margin-bottom: 0;
}

.fiviDocumentList td {
  vertical-align: middle !important;
}

.fiviDocumentList tr:nth-of-type(1) > td {
  text-align: left !important;
  border: none;
}

.fiviDocumentList td,
.fiviDocumentList tr {
  border: none;
}

.fiviDocumentList .DefaultTooltipClass {
  position: relative;
  right: unset;
  top: 0.4rem;
}

.fiviDocumentList .DocUploadGridText td > div > span:first-child {
  display: block !important;
  width: 100%;
}

.modal-body-insideItem > div {
  width: 100%;
  display: flex;
  justify-content: center;
}

.modal-body-insideItem .fiviemailtextbox,
.modal-body-insideItem .fivitextbox {
  max-width: 100% !important;
  width: 100% !important;
}

/*
	6.7 Disclosures
*/
.fiviDisclosureList {
  display: flex;
  flex-direction: column;
  margin: 0.8rem 0 1.6rem 0.8rem;
  width: 100%;
  justify-content: flex-start;
}

.fiviDisclosureList button {
  text-decoration: none;
  color: var(--link-font-color);
  font-size: var(--font-size);
}

.fiviDisclosureList button:hover {
  text-decoration: underline;
  color: var(--link-font-color-hover);
}

.pnlIRSDisclosures .SectionBox {
  margin: 0 0 3.2rem 0;
}

.pnlIRSDisclosures > .SectionBox > .SectionDesc,
.pnlBackupWithholding .SectionDesc {
  display: inline-block;
}

.pnlIRSDisclosures .fiviControl.fiviRadioButton {
  margin: 0;
}

.fiviControl.fiviPanel.pnlBackupWithholding {
  max-width: 100%;
}

/*
	6.8 Product Relationship
*/
.fiviProductRelationship {
  width: 100%;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

.fiviProductRelationship td {
  padding: 0.8rem 3.2rem !important;
  margin: 3.2rem 0;
  vertical-align: middle !important;
}

.fiviProductRelationship table {
  overflow-x: auto;
  white-space: nowrap;
  border: none;
}

.fiviProductRelationship tr:nth-of-type(1) > th {
  font-weight: bold;
  text-align: center;
  border: none;
}

.fiviProductRelationship td,
.fiviProductRelationship tr {
  border: none;
}

.fiviProductRelationship td:first-child {
  text-align: left;
}

/*
	6.9 Default ACH
*/
.fiviParentControl.fiviACH {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.fiviABATextBoxContainer {
  width: var(--control-width);
}

.fiviACHStatus {
  width: var(--control-width);
  margin: 0 0 0 1.6rem;
  display: block;
}

.fiviACHStatus > span {
  font-weight: normal !important;
}

.fiviACHcbCont {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.fiviACHControl > .fiviCheckBox {
  width: 100%;
  margin: 5px 0 15px 16.5px;
}

/*
	6.10 Credit Card
*/
.fiviCreditCardControl {
  align-items: center;
  flex-direction: row !important;
  justify-content: space-between;
}

.fiviCCIndInfo,
.fiviCCInfo {
  width: var(--control-width);
  display: flex;
  margin: 0 auto;
}

.fiviCCInfo > .fiviInput,
.fiviCCInfo > .fiviMultiInput > .fiviInput,
.fiviCCInfo > .fiviInput {
  width: 100%;
}

.fiviCCInfo > .fiviControl:first-child {
  width: 100%;
}

.fiviCCInfo > .fiviInput:nth-child(n + 2) {
  width: 33%;
}

.fiviCCInfo > .fiviInput:nth-child(n + 2) > .fivisionpopover {
  left: 0;
  width: calc(40rem / 3);
}

.fiviCCInfo > .fiviInput:nth-child(2) > select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fiviCCInfo > .fiviInput:nth-child(3) > select {
  border-radius: 0;
  border-left: none;
  border-right: none;
}
.fiviCCInfo > .fiviInput:nth-child(4) > input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fiviCCInfo > .DefaultAddressVerifyingClass {
  text-align: right;
  margin: 0 0 0 0;
  padding-right: 1.6rem;
}

/*
	6.11 One Time Passcode
*/
.fiviOTPDest {
  padding: 0;
}

.fiviOTPDest:first-of-type {
  padding: 0;
  margin-top: 1.6rem;
}

.fiviOTPButtonGroup {
  padding: 1.6rem;
  margin: 0 auto;
  width: 100%;
}

.fiviPanelContainer > span > .fiviInput {
  margin: 0 auto;
}

/*
	6.12 HMDA
*/
.fiviHMDA {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#hmdaEthnicityGender {
  width: 50%;
}

.fiviHMDAControl {
  width: 50%;
}

.fiviHMDAControl > .fiviMultiInput {
  padding-left: 1.6rem;
}

.fiviHMDAControl > .fiviMultiInput > .fiviCheckBox,
.fiviHMDAControl > .fiviMultiInput > div > .fiviCheckBox {
  width: 100%;
  margin: 0;
  padding: 0;
}

/*
	6.13 ProductFunding
*/

.fiviFundingInput {
  width: 80%;
  justify-content: space-between;
  align-items: center;
}

.fiviFundingInput .fivisionpopover {
  top: 4.4rem;
}

.fiviProductFunding {
  width: 100%;
  margin: auto;
}

.DefaultProductFundingTextBoxClass {
  width: 33% !important;
}

.fiviFundingAmount {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top: 1px solid var(--primary-color);
  padding: 0.8rem 0 0 0;
  width: 80%;
  margin: 1.6rem 0;
  font-weight: bold;
}

.fiviFundingMethods {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.fiviFundingMethods .fiviMultiInput {
  justify-content: space-around;
}

.fiviFundingMethods .fiviControl {
  max-width: 30rem;
}

.fiviFundingDetails {
  width: 100%;
}

.pnlACHDetails .fiviControl.fiviRadioButton {
  margin-right: 40px;
}

/*
	6.14 Individual Details
*/
.fiviIndDetailTitle {
  font-size: var(--space-6);
  margin: 0.4rem 0;
  color: var(--primary-color);
  display: flex;
  align-items: baseline;
}

.IndDetailSingle,
.IndDetailGroupTitle {
  font-weight: 700;
}

.IndDetailGroup {
  margin: 0 0 0 0.4rem;
}

.fiviIndDetails {
  margin: 0 0 0 0.4rem;
  display: block;
}

.fiviEmptyIndList {
  width: 50%;
}

/*
	6.15 Individual List
*/
.IndividualLists {
  display: flex;
  justify-content: space-around;
}

.IndividualLists > .fiviPanel {
  margin: 1.6rem 3.2rem 0.8rem 3.2rem;
  display: block;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
}

.pnlNewIndividualList > h4,
.pnlExistingIndividualList > h4 {
  margin-top: 0;
}

.pnlNewIndividualList > .fiviIndividualHyperlinkList button,
.pnlExistingIndividualList > .fiviIndividualHyperlinkList button {
  padding: unset;
  font-size: var(--font-size);
  line-height: 150%;
  color: var(--link-font-color);
}

/*
	6.16 IDAuth
*/
.fiviIDAuthentication {
  width: 100%;
  max-width: 100%;
}

.fiviidauthentication > div > div > span {
  display: flex;
  width: 100%;
  justify-content: center;
}

.fiviidauthentication > div > div > span > label {
  width: 100%;
}

.QuestionCSSClass {
  font-weight: normal !important;
  padding-left: 0.4rem;
}

#IDAuthenticationQuestions td {
  padding-bottom: 0.2rem;
}

.AnswerCSS {
  font-weight: normal !important;
  margin-left: 0.5rem;
}

.fiviIDAuthentication .fiviControl.fiviRadioButton {
  margin: 4px;
}

/*
	6.17 Progress Bar
*/
.journey-bar > table {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
}

.journey-bar > table > tr {
  display: flex;
  gap: 10px;
}

/*
	6.18 Beneficial Ownership
*/
.fiviBeneOwnership {
  margin: 1.6rem auto 0 auto;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

.fiviBeneOwnership .fiviCenterBtn {
  margin-bottom: 0;
}

.fiviBeneOwnership table {
  overflow-x: auto;
  white-space: nowrap;
  border: none;
}

.fiviBeneOwnership td {
  padding: 0.8rem 3.2rem !important;
  margin: 3.2rem 0;
  vertical-align: middle !important;
}

.fiviBeneOwnership tr:nth-of-type(1) > td {
  font-weight: bold;
  text-align: left !important;
  border: none;
}

.fiviBeneOwnership td,
.fiviBeneOwnership tr {
  border: none;
}

/*
	6.19 Phone Control
*/

.fiviPhoneControl {
  margin-bottom: 0.8rem;
}

.fiviPhoneControl .DefaultLabelClass.FocusLabelClass {
  top: -1rem;
}

.fiviPhoneControl > .fiviRadioButton > label {
  font-weight: normal;
}

.fiviPhoneControl .fiviControl.fiviRadioButton {
  margin-top: 20px;
}

.fiviPhoneControl .fivisionpopover {
  left: 0;
  top: 4.4rem;
}

.fiviLongInput.fiviPhoneControl > .CtlValidator {
  left: 17.6rem;
}

/*
	6.20 Beneficiaries
*/
.fiviBeneficiaries {
  margin: 1.6rem auto 0 auto;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

.fiviBeneficiaries .fiviCenterBtn {
  margin-bottom: 0;
}

.fiviBeneficiaries table {
  overflow-x: auto;
  white-space: nowrap;
  border: none;
}

.fiviBeneficiaries td {
  padding: 0.8rem 3.2rem !important;
  margin: 3.2rem 0;
  vertical-align: middle !important;
}

.fiviBeneficiaries tr:nth-of-type(1) > td {
  font-weight: bold;
  text-align: left !important;
  border: none;
}

.fiviBeneficiaries td,
.fiviBeneficiaries tr {
  border: none;
}

/*
	6.21 Account Selection
*/
.fiviAccountSelection {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 0 calc(1.6rem + 5px) 0;
  padding: 0 0 0 0;
  align-items: center;
}

#indProdRel div {
  text-align: left !important;
  justify-content: flex-start;
  padding: 0.5rem 0 0.5rem 0;
  flex-direction: row;
}

#indProdRel label:first-child {
  font-size: 1.8rem;
  font-weight: bold;
}

#indProdRel label {
  font-weight: normal;
}

#AccountSelectionCheckboxList label {
  font-weight: normal;
}

/*
    6.22 Camera (TextBox)
*/

.MobileScanButton {
  background-color: var(--primary-color);
  border: 0.4rem solid var(--primary-color);
  color: #fff;
  padding: 1.2rem 0px;
  /* margin: 0rem 1.6rem 0rem 1.6rem; */
  box-shadow: var(--primary-shadow);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  border-radius: 0.8rem;
  transition: all 0.4s ease 0s;
  width: 100% !important;
}

.MobileScanButton:active,
.MobileScanButton:hover,
.MobileScanButton:focus {
  background-color: var(--primary-color-focus);
  border-color: var(--primary-color-focus);
  border-radius: 3.2rem;
  color: #fff;
  box-shadow: var(--primary-shadow-focus);
  transition: all 0.4s ease 0s;
  outline: none;
  cursor: pointer;
}

.fiviControl.fiviInput.fiviTextBox > .fiviFileUpload {
  display: none;
}

/*
    6.99 ID Specific
*/

.fiviIdType {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.fiviControl.fiviPanel.pnlBackupWithholding {
  margin: 0 0 1.6rem 1.6rem;
}

.Comments {
  padding: 0;
}

.pnlTransferFunds,
.pnlTransferFunds2 {
  margin: 1.6rem 0 0 0;
}

.thumbnailGroup {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2.4rem 0 0 0;
}

.thumbnailMiniGroup {
  justify-content: space-around;
}

.thumbnail {
  width: 27.2rem;
  text-align: center;
  /* box-shadow: inset 0 1px 3px rgba(0, 0, 0, .075), 0 0 3px rgba(102, 175, 233, .6); */
  background-color: #0e4700;
  border-radius: 10px;
  border: none;
  padding: 0.8rem 0.8rem 0 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.thumbIcon {
  width: 68px;
  margin: auto;
  font-size: 48px;
  color: #9e8950;
  padding: 10px;
  background-color: none;
  border: none;
  border-radius: 50%;
  text-align: center;
}

.thumbnail p {
  padding: 0 0.8rem 0.8rem 0.8rem;
  text-align: center;
  font-size: 1.4rem;
}

.thumbnail h2,
.thumbnail h2 label {
  color: #e09900;
  font-weight: 600;
  font-size: 2.4rem;
  display: inline;
  text-align: center;
}

div[controlid="IndividualHandler01"] {
  width: 100%;
}

/*
    7. Specific Pages
    7.1 Default
*/
#DefaultContents .ApplicationHeader {
  text-align: center;
  /* padding-top: 1.5rem; */
}

.fa-li {
  color: #0068b3;
  padding-top: 0.2rem;
}

.RequiredList > li {
  font-size: 1.6rem;
  margin: 0.2rem;
}

.thumbnailGroup {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2.4rem 0 0 0;
}

.thumbnailMiniGroup {
  justify-content: space-around;
}

.thumbnail {
  width: 27.2rem;
  text-align: center;
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.075),
    0 0 3px rgba(102, 175, 233, 0.6);
  background-color: #0e4700;
  border-radius: 10px;
  /*border: 1px solid #87CEFA;*/
  /* padding: .8rem .8rem 0 .8rem; */
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.thumbIcon {
  width: 68px;
  margin: auto;
  font-size: 27px;
  color: #e09900;
  padding: 18px 20px;
  background-color: #ffffff;
  /*border: solid 1px #0068B3;*/
  border-radius: 50%;
  text-align: center;
}

.thumbTitle {
  display: flex;
  flex-direction: column;
}

.thumbnail p {
  padding: 0 0.8rem 0.8rem 0.8rem;
  text-align: left;
  font-size: 1.6rem;
}

/*
    7.2 Application Summary
*/
.SumGroup {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  align-items: baseline;
}

.SumGroup > .fiviPanel {
  width: 50%;
}

.SumItem > div,
.SumItem > .fiviPanel,
.SumItem > span,
.SelectedProdGroup > .fiviIndDetailTitle {
  display: block;
  margin-top: 1rem;
  width: 100%;
}

.SumItem {
  width: 45%;
  position: relative;
}

.SumGroup > .fiviPanel .SumItem {
  width: 100%;
}

.SumGroup label {
  font-weight: normal;
}

.SelectedProdGroup {
  position: relative;
  justify-self: right;
}

.SelectedProdGroup .MinorButton {
  width: 10rem !important;
  margin: 1.6rem 0 0 1.6rem;
}

.SelectedProdGroup {
  /* margin: 1.6rem 0 1.6rem 1.6rem; */
}

.SelectedProdGroup li {
  font-weight: bold;
}

.SumItem .MinorButton {
  width: 16rem !important;
}

.IconButton {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-left: 1.6rem;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.2));
  cursor: pointer;
}

.IconButton:active,
.IconButton:hover,
.IconButton:focus {
  color: var(--primary-color-focus);
  filter: none;
}

.fiviIndividualButton {
  width: 100%;
}

.fiviProductsAndServicesSelected div > i {
  padding-left: 2.5rem;
  font-size: 16px;
  color: var(--primary-color);
  font-style: normal;
}

.fiviIDAuthQuestionContainerClass {
  margin-top: var(--space-4);
}

/*
    8. Mobile
    8.1 Tablet & Phone in Landscape (600px to 1200px)
*/

@media (max-width: 860px) {
  .AddressContainer .fiviCheckBox {
    position: absolute;
    left: 16rem;
    z-index: 1;
    margin-bottom: 0rem;
    top: 1rem;
  }
}

@media all and (max-device-width: 900px), all and (max-width: 900px) {
  .centerform {
    margin: 0 auto;
    width: 100%;
  }

  #LayoutHeaderContents {
    margin: 0.8rem 0rem 0 0rem;
    width: 100%;
  }

  #HeadLogo,
  #HeadContact {
    max-width: 50%;
  }

  #LayoutFooterContents {
    width: 100%;
  }

  #LayoutPage {
    width: 100%;
    padding: 3.2rem 1rem 1.6rem 1rem;
  }

  .form-section {
    margin: 0;
  }

  .fiviIdType {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .pnlDirectionButtons,
  .pnldirectionbuttonsother {
    flex-direction: column-reverse;
    justify-content: center !important;
  }

  .fiviPhoneControl {
    display: flex;
    width: 100%;
    align-items: center;
  }

  .fiviControl.fiviRadioButton {
    max-width: 30rem;
  }
}

@media all and (max-device-width: 850px), all and (max-width: 850px) {
  .thumbnailGroup {
    justify-content: space-around;
  }

  .thumbnail {
    margin: 0 1rem 2rem 1rem;
  }
}

@media all and (max-device-width: 825px), all and (max-width: 825px) {
  .fiviMultiInput.fiviCDWizardInfo {
    flex-direction: column;
  }

  .fiviProdServ {
    width: 35rem;
  }

  h3 {
    width: var(--control-width);
  }

  h3.panel-title {
    width: 100%;
  }

  .fiviInput,
  .AddressContainer,
  .fiviACHStatus,
  .fiviEmailTextBox,
  .rbButtonGroup > div {
    width: 35rem;
  }

  .AddressContainer .fiviSameAs {
    left: 15rem;
  }

  .fiviLongInput {
    width: 100%;
  }

  .fiviCheckBox.TwoControls {
    padding: 8px 0 0px 0;
    margin-right: 0;
  }

  .fiviPhoneControl > .fiviCheckBox {
    width: 12.8rem !important;
  }

  .fiviLongInput > .TwoControls {
    width: 17.2rem;
  }

  .fiviPhoneControl {
    overflow-x: visible;
  }

  .cbButtonGroup {
    padding: 0 0 0 28rem;
  }

  .fiviFundingInput,
  .fiviFundingAmount {
    width: 100%;
    margin: 0 0 0 0;
  }

  .fiviFundingAmount {
    margin-top: 1rem;
  }
}

/*
    8.2 Smallest (<751px)
*/
@media (max-width: 425px) {
  .disclosures-navigation-container {
    width: 100%;
    margin-bottom: var(--space-10) !important;
    gap: var(--space-3);
  }
  .disclosures-navigation-container__decline {
    margin-top: 0;
  }
}

@media (max-width: 650px) {
  .navigation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: var(--space-10) !important;
    gap: var(--space-3);
  }
  .fiviFundingInput {
    display: flex;
    flex-direction: column;
    & .fiviMoneyTextBox {
      align-self: start;
    }
  }
}

@media all and (max-device-width: 865px), all and (max-width: 865px) {
  .form-flex,
  .form-flex .fiviMultiInput {
    /* flex-direction: column; */
    justify-content: space-around;
    align-items: center;
  }

  .form-flex .fiviControl,
  .form-flex .fiviParentControl,
  .form-flex .fiviPhoneControl {
    max-width: 30rem;
  }

  .fiviInput > .fivisionpopover {
    left: calc(40rem / 2 - calc(30rem / 2));
  }

  .form-flex .fiviProductFunding,
  .form-flex .pnlYesFundingOptions2,
  .form-flex .pnlACHDetails,
  .form-flex .pnlCreditCardDetails,
  .form-flex .pnlMailDetails {
    max-width: 100%;
  }

  .form-flex .fiviProductFunding .fiviHeaderPanelClass,
  .form-flex .pnlYesFundingOptions2 .fiviHeaderPanelClass,
  .form-flex .pnlACHDetails .fiviHeaderPanelClass,
  .form-flex .pnlCreditCardDetails .fiviHeaderPanelClass,
  .form-flex .pnlMailDetails .fiviHeaderPanelClass {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-flex .pnlMailDetails h4 {
    width: 100%;
  }

  #LayoutHeaderContents {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }

  #HeadLogo {
    max-width: 75%;
    width: 100%;
  }

  #HeadContact {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
  }

  #HeadPhone,
  #HeadEmail {
    margin-left: 1rem;
  }

  #HeadContact > br {
    display: none;
  }

  #progBar {
    width: 100%;
    position: relative;
    bottom: -2rem;
  }

  .fiviParentControl.fiviProdServControl {
    flex-direction: column;
    align-items: center;
  }

  .fiviprodgroup {
    flex-direction: column;
    align-items: center;
  }

  .ProgressBarOuter {
    margin-right: 5px;
  }

  .TextClass {
    font-size: 1.2rem;
  }

  .pnlDirectionButtons > .fiviPanelContainer,
  .pnlDirectionButtons > .fiviheaderpanelclass,
  .pnlASC > .fiviPanelContainer,
  .pnlDirectionButtons,
  .pnlDirectionButtonsOther,
  .fiviControl.fiviPanel.pnlDirectionButtons {
    flex-direction: column-reverse;
    align-items: center;
  }

  .PrimaryButton,
  .MobileScanButton {
    width: 30rem !important;
    margin: 0 0 2rem 0;
  }

  .StartButton {
    width: 100% !important;
  }

  .fiviInput,
  .fiviEmailTextBox,
  .rbButtonGroup > div {
    width: 30rem;
  }

  .fiviLongInput {
    flex-direction: column;
    margin-left: 0;
  }

  .DefaultLabelClass {
    width: calc(100% - 1.6rem);
  }

  .fiviLongInput > .TwoControls {
    width: 30rem;
  }

  .fiviProdServ {
    width: 30rem;
  }

  .AddressContainer .fiviSameAs {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
  }

  .rbButtonGroup {
    flex-direction: column;
    align-items: center;
  }

  .cbButtonGroup {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
  }

  .pnlASC {
    order: -1;
    justify-content: center;
  }

  .pnlASC > .fiviPanelContainer {
    margin-top: 0;
  }

  h4 {
    width: 30rem;
  }

  h3 {
    width: 30rem;
  }

  h3.panel-title {
    width: 100%;
  }

  .AddressContainer {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .AddressContainer .fiviCheckBox {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
  }

  .SumGroup {
    flex-direction: column;
  }

  .SumItem > div,
  .SumItem > span,
  .SelectedProdGroup > .fiviIndDetailTitle {
    margin-left: 0;
  }

  .SumItem,
  .SelectedProdGroup {
    width: 30rem;
  }

  .pnlIRSDisclosures h4 {
    width: 100%;
  }

  .fiviControl.fiviPanel.pnlBackupWithholding {
    margin-left: 0;
  }

  .DefaultProductFundingTextBoxClass {
    width: 50% !important;
  }

  .pnlACHDetails,
  .pnlCreditCardDetails {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }

  .pnlACHDetails h4,
  .pnlYesFundingOptions2 h4,
  .pnlCreditCardDetails h4 {
    width: 100%;
  }

  .fiviPanelContainer > span > .fiviInput {
    margin: 0 0;
  }

  .fiviACHStatus {
    width: 30rem;
  }

  .fiviCCIndInfo > .fiviInput,
  .fiviCCIndInfo > .fiviMultiInput > .fiviInput,
  .fiviCCCardInfo > .fiviInput,
  .fiviCCInfo,
  .fiviCCCardInfo {
    width: 30rem;
  }

  .fiviCCInfo > .fiviInput:nth-child(n + 2) {
    width: 15rem;
  }

  .fiviCCInfo > .fiviInput:nth-child(2) > select {
    border-radius: 0.4rem;
  }
  .fiviCCInfo > .fiviInput:nth-child(3) > select {
    border-radius: 0.4rem;
    border: 1px solid #c0c0c0;
  }
  .fiviCCInfo > .fiviInput:nth-child(4) > input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .fiviDocumentList {
    margin-left: 0;
  }

  .fiviEmploymentHistory span {
    justify-content: center;
    display: flex;
  }

  .cbButtonGroup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }

  .fiviIdType {
    justify-content: center;
  }

  .fiviParentControl.fiviEmailTextBox {
    display: flex;
    justify-content: center;
  }

  .fiviPhoneControl {
    display: flex;
    justify-content: center !important;
    flex-direction: column !important;
    width: 100%;
    align-items: center;
  }

  .fiviPhoneControl .fiviControl.fiviRadioButton {
    margin-top: 8px;
    width: 100%;
  }

  .fiviPhoneControl.fiviLongInput > .fiviInput.TwoControls {
    margin-right: unset;
    width: 30rem !important;
  }

  .fividocumentlist .MinorButton {
    width: 10rem !important;
  }
}

/*
    8.3 Ultra Wide
*/
@media all and (min-device-width: 2400px), all and (min-width: 2400px) {
}

/*
    9. IE Only
    9.1 Variable Conversion
*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html {
    font-size: 10px;
  }

  h1,
  h2,
  h3,
  h4 {
    color: #0e4700;
  }

  a {
    color: #286090;
  }

  a:hover {
    color: #1e77b3;
  }

  #Content {
    width: calc(86rem + 20px);
  }

  #LayoutHeaderContents {
    width: 86rem;
  }

  #LayoutPage {
    width: calc(86rem + 6.4rem + 2px);
  }

  #LayoutFooterContents {
    width: calc(86rem + 6.4rem + 2px);
  }

  .panel-heading.collapsed {
    background-color: #f6f6f6;
  }

  .PageHeader {
    color: #0e4700;
  }

  .fiviMultiSeperator {
    background-color: #286090;
  }

  .fiviInput {
    width: 40rem;
  }

  .form-control {
    color: #303030;
    border-bottom: 1px solid #008000;
    box-shadow: 0 4px 6px -6px #008000;
  }

  .DefaultLabelClass {
    color: #202020;
  }

  .MinorButton {
    background-color: #008000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  }

  .MinorButton:hover,
  .MinorButton:active,
  .MinorButton:focus {
    background-color: #008000;
    box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  }

  .BackButton {
    background-color: #de9700;
    border-color: #de9700;
  }

  .BackButton:active,
  .BackButton:focus,
  .BackButton:hover {
    background-color: #d38d00;
    border-color: #d38d00;
  }

  .SaveButton {
    color: #008000;
  }

  .SaveButton:active,
  .SaveButton:hover,
  .SaveButton:focus {
    color: #007900;
  }

  .fiviRemoveBtn {
    background-color: #f6f6f6;
    color: #008000;
  }

  .fiviRemoveBtn:active,
  .fiviRemoveBtn:hover,
  .fiviRemoveBtn:focus {
    color: #007900;
  }

  .fiviProdServ {
    width: 40rem;
    background-color: #f6f6f6;
  }

  .AddressContainer {
    width: 40rem;
  }

  .fiviACHStatus {
    width: 40rem;
  }

  .fiviCCIndInfo,
  .fiviCCCardInfo {
    width: 40rem;
  }

  .fiviFundingAmount {
    border-top: 1px solid #286090;
    box-shadow: 0 -4px 6px -6px #286090;
  }

  .fiviIndDetailTitle {
    color: #286090;
  }

  #progBar {
    width: 40rem;
  }

  .ProgressBarOuter {
    background-color: #aaa;
    border: 1px #aaa;
  }

  .ProgressBarInner {
    background-color: #008000;
  }

  .IconButton {
    color: #008000;
  }

  .IconButton:active,
  .IconButton:hover,
  .IconButton:focus {
    color: #007900;
  }
}

/*
    9.2 Always Required
*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .fiviTransparent {
    color: white !important;
  }

  .fiviLongInput {
    width: 100%;
  }

  .fiviCreditCardControl {
    flex-direction: row-reverse !important;
  }
}

/*
    10. Admin Console/Branch
*/
.AdminConsole > #LayoutPage {
  padding: 1.6rem 3.2rem 1.6rem 3.2rem;
  width: 96rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.AdminConsole .form-inline,
.AdminConsole .form-flex {
  padding: 0 0 1.6rem 0;
}

.AdminConsole .form-inline > .rbButton,
.AdminConsole .form-flex > .rbButton {
  padding-left: 0.8em;
}

.AdminConsole .form-inline > .rbButton,
.AdminConsole .form-flex > .rbButton {
  padding-left: 0.8em;
}

.AdminConsole .FocusLabelClass,
.AdminConsole .fiviInput.fiviLongInput.fiviPhoneControl > .FocusLabelClass {
  top: 0;
  left: 0;
}

.AdminConsole .fiviPanelContainer > span > .fiviInput {
  margin: 0;
}

.fiviBranchScanner > .pnlDirectionButtons {
  justify-content: center;
  flex-wrap: wrap;
}

.fiviBranchScanner > .pnlDirectionButtons > .btn {
  margin: 0.5rem 4rem 1.6rem 4rem;
}

/*
    10.1  Branch Specific Controls
    10.1a Person Search
*/
.fiviPersonSearch {
  width: 100%;
  display: block;
}

.fiviPersonSearch .form-control {
  width: 30% !important;
}

.fiviPersonSearch .form-inline {
  display: block;
  padding: 0 0 0 0;
}

.fiviPersonSearch .form-inline .form-control {
  width: 30% !important;
}

.fiviPersonSearch td {
  vertical-align: middle !important;
}

.fiviPersonSearch tr:nth-of-type(1) > td {
  text-align: left !important;
  border: none;
}

.fiviPersonSearch td,
.fiviPersonSearch tr {
  border: none;
}

.fiviPersonSearch .fiviCenterBtn {
  display: inline-block;
}

/*
Unused?


@viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
    font-size: 1.6rem !important;
}

*/

/*
	11. V3 Fixes
*/

.fiviProductMoreInfo,
.fiviProductAdditionalOptions {
  margin-top: 0;
  margin-left: 13px;
}

/* #SSNTextBox:focus::placeholder,
#tbSSN:focus::placeholder {
	color: revert;	
} */

.fiviMoneyTextBox {
  & input::placeholder {
    color: transparent;
  }
}

.fiviFundingInput .fiviMoneyTextBox {
  & input::placeholder {
    color: gray;
  }
}

/* Deal with product checkboxes */
.csscheckbox input[type="checkbox"] {
  display: unset;
  opacity: unset;
}

.csscheckbox label {
  padding-left: 0;
}

.csscheckbox label::before {
  height: 0;
  width: 0;
  border: none;
  left: 0;
  top: 0;
}

.csscheckbox input[disabled="disabled"] + label::before {
  background-color: transparent;
}

.csscheckbox label::after {
  height: 0;
  width: 0;
  border-left: none;
  border-bottom: none;
  transform: none;
  left: 0;
  top: 0;
}

.fiviGroupHeader,
.fiviGroupFooter {
  width: 100%;
}

/* Disclosures */

/*
	6.22 fiVISION_ProveIndividualLookup
*/

.prove-start-container .header-container {
  padding-bottom: 1em;
}

#pilProve_divButtons {
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.prove-disclosure {
  margin-bottom: 1rem;
  label {
    display: inline;
  }
}

#pilProve_divButtons .ProveContinue .next-button:hover,
#pilProve_divButtons .ProveContinue .next-button:active,
#pilProve_divButtons .ProveContinue .next-button:focus {
  background-color: var(--primary-color-focus);
  border-color: var(--primary-color-focus);
  border-radius: 3.2rem;
  color: #fff;
  box-shadow: var(--primary-shadow-focus);
  transition: all 0.4s ease 0s;
  outline: none;
}

.page-navigation-container {
  display: flex;
  justify-content: center !important;
  flex-direction: row-reverse;
  width: 100%;
}

.fiviProve input::placeholder {
  color: transparent;
}

.fiviProve {
  display: flex;
  width: 100%;
}

.fiviProve .fiviLongInput > .TwoControls {
  width: 400px !important;
  margin: 0 1em;
}

.fiviProve .fiviControl.fiviInput.fiviTextBox {
  align-items: center;
  width: 400px !important;
  margin: auto;
}

.fiviProve div:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  padding-top: 1em;
}

@media all and (max-device-width: 452px), all and (max-width: 452px) {
  .fiviProve .fiviControl.fiviInput.fiviTextBox {
    width: 100% !important;
  }

  #HeadLogo img {
    width: 200px;
    margin-top: 20px;
  }
}

/*
	6.23 fiVISION_YearsMonthsDurationV2
*/

.fiviYearMonth {
  width: 100vw;
  max-width: var(--control-width);
  position: relative;
  & label.DefaultLabelClass {
    position: absolute;
    height: var(--input-focusLabel-fontSize);
    font-size: var(--input-focusLabel-fontSize);
    color: var(--font-color-input);
    top: 0 !important; /* global.css conflict */
    left: 0;
    font-weight: 500;
    /* text-transform: uppercase; */
  }
  & > .fiviLabelContainer {
    position: absolute;
    height: 100%;
    width: 100%;
  }
}

.fiviYearMonthInputContainer {
  display: flex;
  gap: var(--column-spacer);
  width: 100vw;
  max-width: var(--control-width);
  gap: 10px;
}

.fiviYearMonthInputContainer .fiviInput {
  width: 100vw;
  max-width: calc(var(--control-width) * 0.5 - 5px);
  & > .fiviTextBox {
    max-width: 100%;
  }
}

@media all and (max-device-width: 656px), all and (max-width: 656px) {
  .fiviYearMonthInputContainer,
  .fiviYearMonth {
    width: 100%;
  }

  .fiviYearMonthInputContainer .fiviInput {
    max-width: calc(50% - 5px);
  }
}

/* From CFCU */
.page-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--space-11);
}

/* Error summary */
.open-account__card .fiviErrorSummary {
  display: block;
}
.fiviErrorSummary {
  display: none;
}

.fiviErrorSummary:has(div) {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100vw;
  max-width: 100%;
}

.fiviErrorSummary > div {
  color: red;
  margin-bottom: 0;
  list-style: none;
  text-align: center;
}

/* Accordions */
.panel-group {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--object-gap) / 2);
}

.panel-group .panel.panel-default {
  border: 1px solid var(--color-primary-normal);
  box-shadow: none;
  border: 4px solid var(--color-gray-light2);
  background-color: var(--color-white-normal);
}

.panel-group .panel-heading {
  background-color: transparent;
  background-image: none;
  border-radius: 4px;
}

.panel-heading.collapsed {
  background-color: var(--color-white-normal);
}

.panel-heading.collapsed + .collapsing {
  background-color: var(--color-white-normal);
}

.panel-title {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-family: var(--font-family);
}

.panelArrow {
  color: var(--color-primary-dark);
}

.CursorPointer {
  cursor: pointer;
}

.panel-body {
  display: flex;
  flex-direction: column;
  gap: var(--object-gap);
  padding: 0px 15px 10px 15px;
}
/* Tooltips */
.tooltip-inner {
  max-width: 600px;
  min-width: 250px;
}

.tooltip-arrow {
  display: none;
}

.tooltip.right {
  top: 0px !important;
}

.fiviInput .DefaultTooltipClass,
.fiviMultiInput .DefaultTooltipClass {
  position: absolute;
  right: 16px;
  top: 28px;
  width: fit-content;
}
/*-------- Default Page --------- */
/* Open An Account Section */
.open-account__container {
  padding: 9em 0;
  margin-bottom: -12em;
  background-image: linear-gradient(#eef9ff, #fff 89%);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.open-account__container:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 18em);
  background: radial-gradient(172% 145% at top left, transparent 75%, white 25%);
}

.open-account__container-img {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  max-width: 50%;
  width: 50%;
  height: 484px;
  background-image: url(/_assets/layoutcontent/20024/V3/EverydayWheel.png);
  background-size: 1200px;
  flex-grow: 1;
  margin-bottom: 1px;
}

.default-content-start-img-mobile {
  display: none;
}

.open-account__card-container {
  width: 30%;
  min-width: calc(var(--open-account-min-width) + 76px);
  display: flex;
  justify-content: flex-end;
  align-self: flex-start;
  padding-top: 50px;
}

.open-account__card {
  max-width: 90%;
  background-color: rgb(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border-radius: var(--space-10);
  padding: 10px 26px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--color-gray-light);
  backdrop-filter: blur(4px);
  gap: var(--space-7);

  & h1 {
    font-weight: 600;
    font-size: 42px;
    margin-top: -10px;
  }

  & .fivi-subtle-seperator {
    width: 100%;
    border-bottom: 1px solid var(--color-gray-normal);
    opacity: 50%;
  }

  & .open-account__button-container {
    display: flex;
    gap: var(--space-7);
    /* justify-content: center; */
    & label {
      width: 25%;
    }
    & label:nth-child(2) {
      margin: 0 1em;
    }

    & .open-account__button {
      background-color: #052740;
      color: var(--color-white-normal);
      border: 2px solid var(--color-primary-normal);
      border-radius: var(--space-11);
      padding: 0.3em 0.5em;
      width: 9em;
      line-height: var(--space-10);
      font-size: 15px;
      font-weight: 400;
    }
    & .svg-button button {
      padding-left: 14px;
    }

    & .open-account__button:hover {
      border: 2px solid #c2c2c2;
    }
    & .svg-button {
      position: relative;
      display: inline-block;
      cursor: pointer;
    }

    & .svg-button input {
      padding-left: 24px;
    }

    & .svg-button::before {
      content: "";
      position: absolute;
      left: 15px;
      top: 60%;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
    }

    & .svg-business::before {
      background: url("/_assets/layoutcontent/20024/25/store-solid_white.svg") no-repeat;
      background-size: 20px;
    }

    & .svg-personal::before {
      background: url("/_assets/layoutcontent/20024/25/user-regular_white.svg") no-repeat;
      background-size: 16px;
    }

    & .svg-youth::before {
      background: url("/_assets/layoutcontent/20024/25/family-solid_white.svg") no-repeat;
      background-size: 24px;
    }
  }
}

.IndividualHandlerExisting {
  & .button-link {
    width: fit-content !important;
    color: var(--color-primary-normal);
    font-weight: 600;
    font-size: 16px;
    border: none;
    background: transparent;
    padding: 0;
  }
  & .button-link:hover,
  .button-link:active,
  .button-link:focus {
    text-decoration: underline;
  }
  & .fiviIndividualButton {
    display: block;
  }
}

/* Membership Share Ownership in CFCU Section */

.membership-share__container {
  background-color: var(--color-white-normal);
  color: var(--color-white-normal);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 25px 0;
  width: 100%;
  flex-direction: column;
  & .banner-content {
    max-width: 696px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-7);
    background-color: var(--color-white-normal);
    color: black;
    border-radius: 2.5rem;
    margin-left: -150px;
    z-index: 2;

    & .h2 {
      background-color: var(--color-white-normal);
      line-height: 130%;
      border-radius: 2.5rem;
      padding: 0.5em;
    }
    & p {
      padding: 0 1em;
    }
  }
  & .banner-content-text {
    padding: 1em;
  }
  & .banner-content-img {
    background: #bfd5db;
    background-image: url(/_assets/layoutcontent/20024/V3/YouthLaptopImage.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-position-x: left;
    padding: 165px;
    position: relative;
    width: 100%;
    background-size: cover;
    border-radius: 2.75rem;
  }
}

/* Apply in 5 easy steps */

.card-container {
  width: 240px;
}

.apply-steps__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  padding: 0 20px 60px 20px;
  & .apply-steps__cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-7);
    margin: 0 auto;
    width: 100%;
  }
  & .default-disclosures-link a {
    display: inline;
  }
}

/* ----- Select Account Page ----- */
.page-SelectAccount {
  .fiviGroupCheckboxContainer {
    width: 100%;
    .fiviControl.csscheckbox.fiviCheckBox {
      padding-left: 1.1rem;
    }
  }
}
/* Product Cards */
.product-panel .fiviProductDisplay.fiviProdServ {
  width: var(--control-width);
  border: 1px solid var(--color-primary-normal);
  background-color: var(--color-white-light);
  border-radius: 10px;
  padding: 15px !important;
}

.product-panel .fiviProdGroup {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.product-panel .fiviProdGroup .fiviCheckBox {
  width: 100%;
}

.product-disclosure-text {
  display: flex;
  flex-direction: column;
  gap: var(--object-gap);
}

/* add nothing button */
.fiviProdServ .fiviProductAddAnotherContainer,
.fiviProductAddAnotherContainer .btn.btn-link {
  display: flex;
  padding: 0 !important;
}

/* Applicant New Page */
.personal-information__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--object-gap);
}
.address__row {
  width: var(--control-width);
  display: flex;
  flex-wrap: wrap;
  gap: var(--object-gap);
  position: relative;
}

/* Joint Onwer Prove Page */
.prove-initializing-container {
  .prove-check-phone-image-container {
    align-self: center;
    img {
      width: 400px;
      height: auto;
    }
  }
}
/* 6. Label Classes */

.DefaultLabelClass {
  font-size: var(--font-size-input-label);
  color: var(--font-color);
  font-weight: var(--font-weight-input-label);
  font-family: var(--font-family-input-label);
  line-height: var(--font-lineheight-input-label);
  cursor: text;
  top: 35px;
  left: 16px;
  position: absolute;
  text-align: left;
  width: 100%;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}

.FocusLabelClass,
.LabelClassFocus {
  font-size: var(--font-size-input-label-focus);
  color: var(--font-color-input-label-focus);
  font-weight: var(--font-weight-input-label-focus);
  font-family: var(--font-family-input-label-focus);
  line-height: var(--font-lineheight-input-label-focus);
  text-transform: var(--text-transform-input-label-focus);
  top: 6px;
  left: 0;
}

.fiviPhoneControl .fiviLabelContainer .DefaultLabelClass.FocusLabelClass {
  top: -1rem !important;
}

/* Applicant New */
.page {
  padding: 0 6rem !important;
}
@media (max-width: 1110px) {
  .page {
    padding: 0;
  }
}
.fiviAddressValidation label {
  font-size: inherit;
  font-weight: inherit;
  margin-bottom: var(--space-1);
}

/* 7. Controls*/
/* Journey bar */
.progress-container {
  flex-grow: 1;
}

.journey-bar-icons {
  display: none;
}

.journey-bar {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
}

.journey-bar > tbody > tr {
  display: flex;
  gap: 10px;
}

.journey-bar > tbody > tr > td {
  border-top: none;
  padding: 0;
}

.journey-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.journey-bar-group > span {
  padding: 0 7px;
  font-size: 14px;
}

.journey-bar-group:after {
  content: " ";
  width: 100%;
  height: 10px;
  border-radius: 5px;
}

.journey-bar-group.previous-group:after {
  background-color: var(--color-primary-normal);
}

.journey-bar-group.current-group:after {
  background-color: var(--color-primary-dark);
}

.journey-bar-group.future-group:after {
  background-color: var(--color-primary-light);
}

/* Shopping Cart */
#ShoppingCartIcon > .shoping-cart-icon {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

#ShoppingCartIcon > .shoping-cart-icon > .shopping-cart {
  background-color: transparent;
  padding: 0;
  height: 25px;
}

#shoppingCartModal .modal-header.DefaultModalHeaderClass {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  gap: var(--object-gap);
}

#shoppingCartModal .modal-header.DefaultModalHeaderClass > label {
  width: auto;
  flex-grow: 1;
}

#shoppingcartModal .modal-body.DefaultModalBodyClass {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--section-gap);
}

#shoppingcartModal .modal-body.DefaultModalBodyClass > br,
#shoppingcartModal .modal-body.DefaultModalBodyClass > hr {
  display: none;
}

#shoppingCartModal .modal-body.DefaultModalBodyClass > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 60px;
  height: fit-content !important;
  width: 100%;
}

#shoppingCartModal .modal-body.DefaultModalBodyClass > div > span.pull-right {
  float: none !important;
}

#shoppingCartModal .modal-body.DefaultModalBodyClass > div > span:first-of-type {
  flex-grow: 1;
}

/* Disclosures checkbox */

.checkbox-toggle {
  margin-top: var(--column-spacer-half);
}

.checkbox-toggle > .fiviCheckBox {
  min-height: auto;
  display: flex;
  position: relative;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 0 0;
  width: fit-content;
  height: auto;
  margin: 0 0 0 0;
  & input,
  & > .icheckbox_square-blue {
    display: none;
  }
  & > label {
    display: inline-flex;
    margin: 0px;
    font-weight: normal;
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 10px;
    &:before {
      content: "";
      margin: 0;
      width: 48px;
      border: none;
      border-radius: 40px;
      background-color: #bfbfbf;
      height: 28px;
      order: 2;
      cursor: pointer;
    }
    &:after {
      content: "";
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 3px solid #bfbfbf;
      background-color: white;
      z-index: 2;
      display: inline;
      cursor: pointer;
      position: absolute;
      right: 20px;
      transition: all 120ms transformease-in-out;
    }
  }
}

.checkbox-toggle > .fiviCheckBox:has(input:checked) > label {
  &:before {
    background-color: #0055b8;
  }
  &:after {
    background-color: white;
    border-color: #0055b8;
    right: 0;
    transition: all 120ms transformease-in-out;
  }
}

.checkbox-container-column-single {
  display: flex;
  flex-direction: column;
  gap: var(--horizontal-object-spacer);
}

.checkbox-container-column-single .fiviCheckBox,
.checkbox-seperated-label {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--object-gap);
}

/* Layout Media Queries */
/* 8. Media Queries */

/* Header */
@media (max-width: 750px) {
  header > .layout-container {
    width: 100%;
    flex-direction: column;
    gap: var(--space-3);
    padding-bottom: var(--space-4);
  }
}

/* Footer */
@media (max-width: 768px) {
  #footer__first-row {
    display: flex;
    flex-direction: column;
    justify-content: left;
  }

  #social-links {
    margin-top: var(--space-4);
  }

  #footer__second-row {
    flex-direction: column;
    padding: 0;
  }

  #footer_cobrowsing-code-button-container {
    align-self: center;
    padding-top: var(--space-8);
    width: 100%;
  }

  #footer_insured-equal-housing-text {
    width: 100%;
    justify-content: center;
  }

  #footer_insured-equal-housing-images {
    margin-top: var(--space-6);
    align-self: center;
  }

  #footer_disclosures-and-copyright-container {
    width: 100%;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  footer li {
    margin-bottom: var(--space-3);
  }

  footer ul {
    padding: 0;
    margin: 0;
  }
}

/* Media Queries Pages */
/* Default */
@media (max-width: 1443px) {
  .membership-share__container {
    & .banner-content {
      width: 100%;
      max-width: 426px;
    }
  }
}
@media (max-width: 1335px) {
  .card-container {
    width: 170px;
  }
}
@media (max-width: 1250px) {
  .open-account__container {
    margin-top: 50px;
    background: #f1faff;
    & > div {
      flex-wrap: wrap-reverse;
      margin-top: 100px;
    }
    & .open-account__card-container {
      justify-content: center;
      & .open-account__card {
        margin-top: -9.5rem;
        margin-bottom: 4rem;
      }
    }
    & .open-account__container-img {
      display: none;
    }
  }
  .open-account__container:before {
    background: none;
  }
  .default-content-start-img-mobile {
    display: flex;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    height: 500px;
    background-image: url(/_assets/layoutcontent/20024/V3/EverydayWheel.png);
    background-repeat: no-repeat;
    background-size: 100%;
    flex-grow: 1;
    z-index: 10;
    margin-top: -3.5em;
  }
}
@media (max-width: 1030px) {
  .membership-share__container {
    padding: 0px;
  }
}
@media (max-width: 900px) {
  .membership-share__container {
    margin-top: -90px;
    & .banner-content {
      width: 100%;
      max-width: 516px;
      margin: 0;
      & > .btn-container {
        width: 100%;
      }
    }
    & .banner-content-img {
      z-index: 30;
    }
    & .banner-content-text {
      z-index: 31;
      margin-top: -3.3rem;
      & div {
        display: flex;
        justify-content: center;
        width: 100%;
      }
    }
  }
}
@media (max-width: 834px) {
  .membership-share__container {
    margin-top: -140px;
    padding-top: 20px;
  }
}
@media (max-width: 700px) {
  .membership-share__container {
    margin-top: -200px;
  }
}
@media (max-width: 600px) {
  .membership-share__container {
    margin-top: -230px;
  }
}
@media (max-width: 540px) {
  .open-account__card {
    & .IndividualHandlerNew {
      justify-content: center;
    }
    & .open-account__button-container {
      & .open-account__button {
        width: 8em !important;
        padding: 0.1em 0.2em;
        font-size: 11px;
      }
      & .svg-button::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 50%;
      }
      & .svg-personal::before {
        background-size: 12px;
        width: 12px;
        height: 12px;
      }
      & .svg-business::before {
        background-size: 12px;
        width: 12px;
        height: 12px;
      }
      & .svg-youth::before {
        background-size: 12px;
        width: 12px;
        height: 12px;
      }
    }
  }
  .membership-share__container {
    margin-top: -310px;
  }
}
@media (max-width: 400px) {
  .open-account__card {
    max-width: 80%;
    & h1 {
      font-size: 32px;
      text-wrap: nowrap;
      margin: -5px -10px !important;
    }
  }
}
@media (max-width: 315px) {
  .open-account__card {
    & .open-account__button-container {
      flex-direction: column;
      & label:nth-child(2) {
        margin: 0;
      }
    }
  }
}

/* 9. Utility classes */
.underline {
  text-decoration: underline;
  color: var(--color-white-normal);
}

.font-bold {
  font-weight: 700;
}

.font-size-m {
  font-size: 18px;
}

.font-size {
  font-size: 14px;
}

.font-normal {
  font-weight: 400;
  font-size: 14px;
}

/* Flex Utilities */
.flex {
  display: flex;
}

.no-wrap {
  flex-wrap: nowrap;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--object-gap);
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: var(--horizontal-object-spacer);
}

.justify-content-evenly {
  justify-content: space-evenly;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-start {
  justify-content: flex-start;
}
.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}
.align-items-start {
  align-items: start;
}

.wrap {
  flex-wrap: wrap;
}

/* Grid Utilities */

/* Grid Container */
.grid {
  display: grid;
  gap: var(--space-5);
}

/* Column Templates */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

/* Auto-fit/Auto-fill */
.grid-auto-fit-sm {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-auto-fit-lg {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Gap Utilities */
.gap-0 {
  gap: var(--space-0);
}
.gap-1 {
  gap: var(--space-1);
}
.gap-2 {
  gap: var(--space-2);
}
.gap-3 {
  gap: var(--space-3);
}
.gap-4 {
  gap: var(--space-4);
}
.gap-5 {
  gap: var(--space-5);
}
.gap-6 {
  gap: var(--space-6);
}
.gap-7 {
  gap: var(--space-7);
}
.gap-8 {
  gap: var(--space-8);
}
.gap-10 {
  gap: var(--space-10);
}
.gap-12 {
  gap: var(--space-12);
}
.gap-16 {
  gap: var(--space-16);
}

/* Padding Utiltiies */
.p-0 {
  padding: var(--space-0);
}
.p-1 {
  padding: var(--space-1);
}
.p-2 {
  padding: var(--space-2);
}
.p-3 {
  padding: var(--space-3);
}
.p-4 {
  padding: var(--space-4);
}
.p-5 {
  padding: var(--space-5);
}
.p-6 {
  padding: var(--space-6);
}
.p-8 {
  padding: var(--space-8);
}

.pt-1 {
  padding-top: var(--space-1);
}
.pt-2 {
  padding-top: var(--space-2);
}
.pt-3 {
  padding-top: var(--space-3);
}
.pt-4 {
  padding-top: var(--space-4);
}
.pt-5 {
  padding-top: var(--space-5);
}
.pt-6 {
  padding-top: var(--space-6);
}
.pt-8 {
  padding-top: var(--space-8);
}

.pb-1 {
  padding-bottom: var(--space-1);
}
.pb-2 {
  padding-bottom: var(--space-2);
}
.pb-3 {
  padding-bottom: var(--space-3);
}
.pb-4 {
  padding-bottom: var(--space-4);
}

.py-6 {
  padding: 0 var(--space-6);
}

/* Margin utilities */
.m-0 {
  margin: var(--space-0);
}
.m-1 {
  margin: var(--space-1);
}
.m-2 {
  margin: var(--space-2);
}
.m-3 {
  margin: var(--space-3);
}
.m-4 {
  margin: var(--space-4);
}

.mt-1 {
  margin-top: var(--space-1);
}
.mt-2 {
  margin-top: var(--space-2);
}
.mt-3 {
  margin-top: var(--space-3);
}
.mt-4 {
  margin-top: var(--space-4);
}
.mt-5 {
  margin-top: var(--space-5);
}
.mt-6 {
  margin-top: var(--space-6);
}
.mt-8 {
  margin-top: var(--space-8);
}

.mb-1 {
  margin-bottom: var(--space-1);
}
.mb-2 {
  margin-bottom: var(--space-2);
}
.mb-3 {
  margin-bottom: var(--space-3);
}
.mb-4 {
  margin-bottom: var(--space-4);
}
.mb-8 {
  margin-bottom: var(--space-8);
}

/* Negative margins */
.mt-neg-1 {
  margin-top: calc(var(--space-1) * -1);
}
.mt-neg-2 {
  margin-top: calc(var(--space-2) * -1);
}
.mt-neg-3 {
  margin-top: calc(var(--space-3) * -1);
}
.mt-neg-4 {
  margin-top: calc(var(--space-4) * -1);
}

/* Width */

.w-100 {
  width: 100%;
}

.w-33 {
  width: 33%;
}

/* text */
.disclosure-text {
  font-size: 14px;
}

/* Button */
.button-primary,
.fiviFinicityFundingAccountVerificationContainer button,
.DocUploadGridText .btn.btn-default {
  background-color: var(--color-primary-normal);
  border: 1px solid var(--color-primary-normal);
  color: var(--color-white-normal) !important;
  width: fit-content;
  min-width: 175px;
  font-size: 16px;
  border-radius: var(--space-11);
  display: block;
  text-align: center;
  line-height: 24px;
  padding: 13.3333px 53.3333px;
}

.fiviFinicityFundingAccountVerificationContainer button {
  margin-left: 0;
}

.button-primary:hover,
.DocUploadGridText .btn.btn-default:hover {
  text-decoration: none;
  background-color: var(--color-gray-light2);
  border: 1px solid #c2c2c2;
  color: var(--color-primary-normal);
}

.button-secondary {
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background-color: var(--color-white-normal);
  border: 2px solid #003764;
  color: #003764;
  border-radius: 2rem;
  padding: 0.5rem 2rem;
  line-height: 1.2rem;
  min-height: 50px;
  min-width: 175px;
  text-decoration: none;
}

.button-secondary:hover {
  border: 2px solid var(--color-gray-light);
}

.button-primary[disabled],
.button-secondary[disabled] {
  opacity: 65%;
  cursor: not-allowed;
}

.button-remove {
  background: var(--color-white-normal) !important;
}

.button-outline-round {
  color: var(--color-primary-normal);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  border: 2px solid var(--color-primary-normal);
  border-radius: 2.75rem;
  width: 12em !important;
  padding: 0.3em 0.7em !important;
  line-height: var(--space-10);
}

.button-outline-round:hover {
  border: 2px solid #c2c2c2;
}

.button-link {
  width: fit-content !important;
  color: var(--color-primary-normal);
  font-weight: 600;
  font-size: 16px;
  border: none;
  background: transparent;
  padding: 0;
}

.button-link:hover,
.button-link:active,
.button-link:focus {
  text-decoration: underline;
}

.btnAdd {
  color: var(--color-white-normal);
  background-color: var(--color-link-before);
  font-weight: 700;
  line-height: 2.5rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  width: fit-content !important;
  min-width: 175px;
  font-size: 16px;
  border: none;
  border-radius: 2.75rem;
  padding: 0.6em 0.8em;
  text-decoration: none;
}

.btnAdd:hover {
  background-color: var(--color-gray-light2);
  color: #0d0d0d;
}

/* Headers */
.header-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: var(--space-2);
}

.section-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
}

.employment-section-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
}

.section-header {
  margin-top: var(--space-8);
  border-bottom: 1px solid var(--color-primary-normal);
}

.page-Disclosures .sub-header {
  color: var(--color-primary-dark);
}
.page-EDisclosures {
  .sub-header {
    color: var(--color-primary-dark);
  }
  .fiviLinkHistory {
    padding-top: 0;
  }
  .section-links {
    margin-bottom: 1rem;
  }
}

.edisclosures-navigation-container,
.edisclosures-navigation-container__decline {
  padding: 0 !important;
}

/* Helpers */
.no-margin-padding {
  margin: 0 !important;
  padding: 0 !important;
}

.force-w-100 {
  width: 100% !important;
}

.center {
  margin: 0 auto;
}

.inline {
  display: inline;
}
.block {
  display: block;
}
