
/* V1.0 */

/* INITIALIZATION */

/* initialize fonts */
* {
  font-family: Connections, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.011px;
  font-feature-settings: 'liga' off, 'clig' off;
}

/* ensure that widths of 100% are contained by parent */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* placeholder text color */
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #63666a;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #63666a;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: #63666a;
}


/* BASE CLASSES */

a {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-feature-settings: inherit;
  color: inherit;
  text-decoration: underline;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-size: 12px;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  margin: 30px 0;
}

h1 {
  font-size: 32px;
  line-height: 36px;
}

h2 {
  color: #012169;
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%; /* 50px */
  letter-spacing: 0.008px;
}

h3 {
  font-size: 24px;
  line-height: 28px;
}

h4 {
  font-size: 18px;
  line-height: 22px;
}

h5 {
  font-size: 14px;
  line-height: 18px;
}

label {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

button {
  margin: 48px 0;
  padding: 0 24px;
  font-family: ConnectionsMedium, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #FFF;
  background-color: #0053C2;
  font-size: 18px;
  line-height: 100%; /* 18px */
  font-weight: 500;
  letter-spacing: 0.011px;
  height: 44px;
  border-radius: 44px;
  text-align: center;
  cursor: pointer;
  border: 0;
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], select, textarea {
  display: block;
  padding: 1px 8px;
  border: 1px solid #000000;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  background-color:  #ffffff;
  color: #000000;
  border-radius: 0;
  cursor: text;
  min-width: 100px;
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], select {
  white-space: nowrap;
  text-overflow: ellipsis;
}

input[type="date"], input[type="time"] {
  padding: 0 8px;
}

textarea {
  resize: vertical;
  min-height: 22px;
  padding: 4px 8px;
}

textarea:read-only {
  background-color: #eeeeee;
}

select {
  cursor: pointer;
  height: 26px;
  padding: 1px 4px;
}

select:invalid { /* set placeholder color -- only works for "required" selects */
  color: #63666a;
}

select:invalid option:not(:disabled) { /* set placeholder color -- only works for "required" selects */
  color: #000000;
}

input:read-only {
  background-color: #eeeeee;
}

input:disabled, select:disabled {
  background-color: #eeeeee;
}

option {
  margin: 20px;
}


/* COMPONENTS */

.component {
}

.component > :first-child {
  margin-top: 0 !important;
}

.component > :last-child {
  margin-bottom: 0 !important;
}


/* TABS */

.tabs {
  overflow-x: hidden; /* so we can easily hide the radio inputs */
}

.tab {
  /* hiding the inputs */
  display: none;
}

.tab-buttons, .tab-bookmarks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
  align-items: center;
}

.tab-button, .tab-bookmark {
  display: block;
  color: #000000;
  font-size: 12px;
  line-height: 14px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  background-color: #ffffff;
  cursor: pointer;
  border: 0;
  margin: 0;  
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-bookmark {
  border: 1px solid #000000;
  background-color: #ffffff;
  margin: 30px 20px 30px 0;
}

.tab-bookmark:hover {
  background-color: #f2f2f2;
}

.tab-button:hover {
  background-color: #f2f2f2;
}

.tab-bookmark-link {
  color: #096183;
  text-decoration: underline;
  cursor: pointer;
}

.tab-contents {
  margin: 0px 0;
}

.tab-contents > :last-child {
  margin-bottom: 0;
}

.tab-content {
  margin-top: 0;
  margin-bottom: 0;
  display: none;
}

.layout-sidebar > .layout-col > .tab-content {
  margin-bottom: 0;
}

.tabs [type="radio"]:nth-of-type(1):checked ~ .tab-buttons .tab-button:nth-of-type(1),
.tabs [type="radio"]:nth-of-type(2):checked ~ .tab-buttons .tab-button:nth-of-type(2),
.tabs [type="radio"]:nth-of-type(3):checked ~ .tab-buttons .tab-button:nth-of-type(3),
.tabs [type="radio"]:nth-of-type(4):checked ~ .tab-buttons .tab-button:nth-of-type(4),
.tabs [type="radio"]:nth-of-type(5):checked ~ .tab-buttons .tab-button:nth-of-type(5),
.tabs [type="radio"]:nth-of-type(6):checked ~ .tab-buttons .tab-button:nth-of-type(6),
.tabs [type="radio"]:nth-of-type(7):checked ~ .tab-buttons .tab-button:nth-of-type(7),
.tabs [type="radio"]:nth-of-type(8):checked ~ .tab-buttons .tab-button:nth-of-type(8),
.tabs [type="radio"]:nth-of-type(9):checked ~ .tab-buttons .tab-button:nth-of-type(9) {
  background-color: #e0e0e0;
}

.tabs [type="radio"]:nth-of-type(1):checked ~ .tab-contents .tab-content:nth-of-type(1),
.tabs [type="radio"]:nth-of-type(2):checked ~ .tab-contents .tab-content:nth-of-type(2),
.tabs [type="radio"]:nth-of-type(3):checked ~ .tab-contents .tab-content:nth-of-type(3),
.tabs [type="radio"]:nth-of-type(4):checked ~ .tab-contents .tab-content:nth-of-type(4),
.tabs [type="radio"]:nth-of-type(5):checked ~ .tab-contents .tab-content:nth-of-type(5),
.tabs [type="radio"]:nth-of-type(6):checked ~ .tab-contents .tab-content:nth-of-type(6),
.tabs [type="radio"]:nth-of-type(7):checked ~ .tab-contents .tab-content:nth-of-type(7),
.tabs [type="radio"]:nth-of-type(8):checked ~ .tab-contents .tab-content:nth-of-type(8),
.tabs [type="radio"]:nth-of-type(9):checked ~ .tab-contents .tab-content:nth-of-type(9) {
  display: block;
}

.tab-button.hidden, .tab-bookmark.hidden {
  display: none;
}


/* TEXT INPUTS */

.input-text {
  display: block;
  margin: 30px 0;
  padding-top: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-text input {
  font-size: 16px;
  line-height: 20px;
  width: 100%;
  margin-top: 10px;
  height: 36px;
}

.input-textarea {
  display: block;
  margin: 30px 0;
  padding-top: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-textarea textarea {
  font-size: 16px;
  line-height: 20px;
  width: 100%;
  margin-top: 10px;
}


/* SELECT MENUS */

.input-select {
  display: block;
  margin: 30px 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  padding-top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-select select {
  width: 100%;
  margin-top: 10px;
  height: 36px;
  font-size: 16px;
  line-height: 20px;
}

.input-select p {
  margin-top: 5px;
  margin-bottom: 10px;
}


/* BUTTONS */

.button {
  color: #FFFFFF;
  background-color: #000000;
  min-width: 100px;
}

.button.black {
  color: #FFFFFF;
  background-color: #000000;
}

.button.white {
  color: #000000;
  background-color: #FFFFFF;
}

.button.small {
  min-width: 25px;
}

.button.full {
  width: 100%;
}


/* CHECKBOXES */

/* label/container styling */
.checkbox {
  display: block;
  position: relative;
  padding-left: 24px;
  margin: 30px 0;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  padding-top: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* text below the label */
.checkbox p {
  margin-top: 10px;
}

/* box styling */
.checkmark {
  margin-top: 2px;
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #ffffff;
  border: 1px solid #0000aa;
  -moz-transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* background color on mouse-over */
.checkbox:hover input:not([disabled]) ~ .checkmark {
  background-color: #88bbee;
}

/* background color when checked */
.checkbox input:checked ~ .checkmark {
  background-color: #88ccff;
}

/* background color when checked on mouse-over */
.checkbox:hover input:checked:not([disabled]) ~ .checkmark {
  background-color: #88ccff;
}

/* create the checkmark (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* checkmark styles */
.checkbox .checkmark:after {
  left: 4px;
  top: 0px;
  width: 7px;
  height: 12px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}

.input-checkbox {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.input-checkbox h5 {
  margin: 0;
}

.input-checkbox p {
  margin: 0;
}

.input-checkbox > div, .input-checkbox > label {
  margin: 10px 0 0 0;
}

.input-checkbox > :last-child {
  margin-right: 0;
}

.checkbox-label {
  font-weight: normal;
  font-size: 16px;
  vertical-align: top;
}

.checkbox-input {
  width: 15px;
  height: 15px;
}

.input-checkbox {
  padding-top: 2px;
}


/* RADIO BUTTONS */

/* label/container styling */
.radio {
  display: block;
  position: relative;
  padding-left: 24px;
  margin: 20px 0;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding-top: 1px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* text below the label */
.radio p {
  margin-top: 5px;
}

/* radio mark circle */
.radiomark {
  margin-top: 2px;
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 50%;
  -moz-transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* background color on mouse-over */
.radio:hover input:not([disabled]) ~ .radiomark {
  background-color: #88bbee;
}

/* background color when selected */
.radio input:checked ~ .radiomark {
  background-color: #ffffff;
  border-color: #2288e5;
}

/* background color when selected on mouse-over */
.radio:hover input:checked:not([disabled]) ~ .radiomark {
  background-color: #ffffff;
}

/* create the indicator (hidden when not selected) */
.radiomark:after {
  content: "";
  position: absolute;
  display: none;
}

/* show the indicator when selected */
.radio input:checked ~ .radiomark:after {
  display: block;
}

/* indicator styles */
.radio .radiomark:after {
  top: 2px;
  left: 2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #2288e5;
}

.input-radio {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.input-radio h4 {
  margin: 0;
}

.input-radio p {
  margin: 0;
  font-weight: 700;
}

.input-radio > label {
  margin: 10px 0 0 0;
}

.input-radio > :last-child {
  margin-right: 0;
}

.radio-label {
  font-weight: normal;
  font-size: 16px;
  vertical-align: top;
}

.radio-input {
  width: 15px;
  height: 15px;
}

.input-radio-button {
  padding-top: 2px;
}


/* HOVER HELP TIPS */

.help-tip {
  display: inline-block;
  position: relative;
  color: #000000;
  background-color: #d0d0d0;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  cursor: help;
}

.help-tip::before, .help-tip::after {
  display: none;
  position: absolute;
  left: 50%;
  z-index: 50;
}

.help-tip::before {
  content: "";
  border-width: 10px 8px 08px;
  border-style: solid;
  border-color: rgba(0,0,0,0.8) transparent transparent transparent;
  top: -20px;
  margin-left: -8px;
}

.help-tip::after {
  content: attr(data-tooltip);
  background: rgba(0,0,0,0.8);
  top: -20px;
  transform: translateY(-100%);
  font-size: 14px;
  margin-left: -100px;
  width: 200px;
  border-radius: 10px;
  color: #ffffff;
  padding: 14px;
}

.help-tip:hover::before, .help-tip:hover::after{
  display: block;
}


/* HAMBURGER MENU */

.mobile-nav {
  display: none;
}

.mobile-nav-check {
  position: absolute;
  top: -100%;
  left: -100%;
}

.mobile-nav-checkbtn {
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav-menu {
  display: none;
}

.mobile-nav-checkbtn::after {
  content: "☰";
}

.mobile-nav-check:checked ~ .mobile-nav-menu {
  display: block;
}

.mobile-nav-check:checked ~ .mobile-nav-checkbtn::after {
  /* visibility: visible; */
  content: "X";
}

.mobile-nav-menu {
  position: absolute;
  top: 60px;
  left: 0;
  background: #f5f5f5;
  z-index: 1;
  width: 100%;
}

.mobile-nav-menu-items {
  border-bottom: 3px solid #aaaaaa;
}

.mobile-nav-menu a {
  color: #fff;
  padding: 10px 20px;
  display: block;
  border-top: 1px solid #aaaaaa;
  font-size: 18px !important;
  line-height: 22px !important;
}


/* MODAL DIALOG */

.modal-cover {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-popover {
  /* display: none; */ /* Hidden by default */
  position: relative;
  background-color: #fefefe;
  margin: 24px auto; /* 24px from the top and centered */
  padding: 5%;
  border: 2px solid #888;
  width: 90%; /* Could be more or less, depending on screen size */
  max-width: 750px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 200; /* Sit on top */
}

.modal-logo {
  margin-bottom: 20px;
}

.modal-logo img {
  width: 263px;
  max-width: 80%;
}

.modal-title {
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 36px;
  line-height: 40px;
  font-weight: 300;
  letter-spacing: 0.008px;
  color: #012169;
  margin-top: 0;
}

.modal-message {
  display: none;
  margin-top: 20px;
  background-color: #ffeeee;
  border: 1px solid #e00;
  padding: 20px;
}

.modal-instructions {
  margin-top: 20px;
}

#modal-advertising-instructions * {
  font-size: 16px;
}

.modal-content {
  margin-top: 20px;
}

.modal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #7e7e7e;
  /* float: right; */
  font-size: 28px;
  line-height: 28px;
  font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-button {
  margin: 5px 10px 5px 0;
  background-color: #000000; 
  color: #ffffff; 
  width: 150px;
}

.modal-input-left {
  margin: 5px 10px 5px 0;
  width: 150px;
  display: inline-block !important;
}

.modal-popover-cover {
  display: none;
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
  right: 3px;
  color: #000000;
  background: rgba(0,0,0,.5);
  z-index: 110;
  border-radius: 5px;
  border: 2px solid #000;
}

.modal-popover-spinner {
  display: none;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(https://business.bofa.com/content/dam/flagship/hosting-only/seller/spinner.gif);
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 120;
}

.modal-spinner {
  display: none;
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
  right: 3px;
  color: #000000;
  background: rgba(0,0,0,.5) url(https://business.bofa.com/content/dam/flagship/hosting-only/seller/spinner.gif) center center / 50px 50px no-repeat;
  z-index: 110;
  border-radius: 5px;
  border: 2px solid #000;
}


/* FORM LAYOUT */

.form-section {
  margin: 30px 0;
  /*
  border-radius: 5px;
  border: 1px solid #000000;
  */
}

.form-row {
  margin: 30px 0;
  display: flex;
  flex-flow: row wrap;
  column-gap: 20px;
  row-gap: 15px; /* vertical space between rows when wrapping */
  align-content: stretch;
  align-items: flex-start;
}

.form-item {
  flex: 1 1 200px; /* minimum width of items */
  min-width: 0;
}

.form-item > * {
  margin: 0;
}

.form-item.max-width-300 {
  flex: 0 1 300px; /* minimum width of items */
}

.form-item.grouped-button {
  flex: 0 1 auto;
}

.form-item.valign-bottom {
  align-self: flex-end;
}

.form-item.valign-middle {
  align-self: center;
}

.form-item.align-right {
  margin-left: auto;
}

.form-item.align-along {
  margin-top: 28px;
}

.form-item.width-fit {
  flex: 0 1 auto;
}

.form-item.width-fill {
  flex: 1 1 auto;
  min-width: 150px;
}

.form-item.grouped-button button {
  margin: 0;
}

.form-item p {
  margin: 0;
  font-weight: 700;
}

.form-cancel {
  color: #0053C2;
  background-color: #ffffff;
  border: 2px solid #0053C2;
}

p.form-legal {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

/* MAIN SECTIONS */

.header {
  border-bottom: 32px solid #F5F5F5;
}

.page {
}

.footer {
}

.container {
  min-width: 300px;
  width:  100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  /* box-sizing: border-box; */
}

.content {
  margin: 0 44px;
}

@media only screen and (max-device-width: 640px), screen and (max-width: 640px) {
  .content {
    margin: 0 0;
  }
}


/* HEADER-SPECIFIC COMPONENTS */

.header a {
  /* text-decoration: none; */
  color: #012169;
  font-size: 14px;
  line-height: 21px; /* 150% */
  letter-spacing: 0.009px;
}

.header a:hover {
  text-decoration: underline;
}

#header-logo img {
  width: 263px;
  max-width: 100%;
}

#header-nav {
  background-color: #F5F5F5;
}

#header-nav-menu {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 80px;
  justify-content: space-between;
}

.header-nav-menu-flex {
  flex: 0 1 auto;
}

.header-nav-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}

.header-nav-item {
  flex: 0 0 auto;
}

#header-nav-second-items {
  display: flex;
  gap: 0 40px;
}

.header-nav-second-item {
  flex: 0 0 auto;
}

#header-main {
  padding: 16px 0;
}

#header-main-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  justify-content: space-between;
}

#header-main-items-mobile {
  align-self: center;
}

.header-main-item {
  flex: 0 1 auto;  
  align-self: end;
}

#header-main-nav-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}

.header-main-nav-item {
  flex: 0 1 auto;
}

.header-main-nav-item a {
  font-size: 18px;
}

#header-main-search a {
  color: #000;
  font-size: 14px;
  line-height: 21px; /* 150% */
  letter-spacing: 0.009px;
  background-image: url(https://business.bofa.com/content/dam/flagship/hosting-only/seller/search.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 20px auto;
  padding-right: 25px;
}

/* FOOTER-SPECIFIC COMPONENTS */

#legal {
  background-color: #F5F5F5;
  padding: 32px 0;
}

#legal-text p {
  color: #000;
  font-size: 14px;
  line-height: 21px; /* 150% */
  letter-spacing: 0.01px;  
}

#legal-products {
  font-weight: 700;
}

#legal-table {
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 0;
}

.legal-table-row {
  flex: 1 1 0;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: center;
  padding: 16px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px; /* 150% */
  letter-spacing: 0.01px;
}

#legal-table > :first-child {
  border-left: 1px solid #000;;
}

#legal-info p {
  color: #000;
  font-size: 14px;
  line-height: 21px; /* 150% */
  letter-spacing: 0.01px;  
}

#footer-banner {
  background-color: #012169;
  color: #ffffff;
  padding: 56px 0;
}

#footer-banner a {
  color: #ffffff;
  /* text-decoration: none; */
}

#footer-banner a:hover {
  text-decoration: underline;
}

#footer-menu-flex {
  margin: 50px 0;
  flex: 0 1 auto;
}

#footer-menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 70px;
}

.footer-menu-item {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 22px;
}

#footer-logo {
  margin: 50px 0;
}

#footer-logo img {
  max-width: 100%;
}

#footer-links-flex {
  margin: 50px 0;
  overflow: hidden; /* to make the border fall off the first item per row */
}

#footer-links-items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 0;
  margin-left: -17px; /* padding + border width on item */
  padding: 4px 0;
}

.footer-links-item {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 22px;
  padding: 0 15px;
  border-left: 2px solid #ccc;
}

.footer-links-item img {
  vertical-align: middle;
  height: 15px;
  margin-bottom: 2px;
}

#footer-links-copyright {
}

#footer-links-copyright img {
  vertical-align: middle;
  height: 15px;
  margin-bottom: 5px;
}

#footer-social-flex {
  margin: 50px 0;
}

#footer-social-items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 20px;
}

.footer-social-item {
  flex: 0 0 auto;
}

/* PAGE-SPECIFIC COMPONENTS */

.eyebrow {
  color: #012169;
  font-variant: all-small-caps;
  letter-spacing: 1.35px;
  font-size: 18px;
  margin-top: 0;
  font-family: Connections, Helvetica Neue, Helvetica, Arial, sans-serif;
}

#seller {
  margin: 64px 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

#seller-info {
  flex: 1 1 200px;
}

#seller-image {
  margin: 33px 0;
  width: 193px;
  height: 193px;
  border-radius: 151.5px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: lightgrey;
  background-position: 50%;
  /*
  background-size: 60px 60px;
  */
}

#seller-name {
  margin: 12px 0;
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #012169;
  font-size: 40px;
  font-weight: 300;
  line-height: 125%;
  letter-spacing: 0.008px;
}

#seller-pronouns {
  color: #646464;
}

#seller-title {
  margin: 12px 0 0;
  color: #000;
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%; /* 30px */
  letter-spacing: 0.012px;
}

#seller-title2 {
  margin: 0 0 12px;
  color: #646464;
}

#seller-chat {
  margin: 32px 0;
  vertical-align: top;
  display: flex;
  align-items: top;
  gap: 10px;
  border: 2px solid #E31837;
  position: relative;
  margin-bottom: 40px;
  padding: 15px 20px 20px;
}

#seller-chat:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 10px solid #E31837;
  border-right: 10px solid transparent;
  border-top: 10px solid #E31837;
  border-bottom: 10px solid transparent;
  left: 21px;
  bottom: -20px;
}

#seller-chat:after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 10px solid #fff;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  border-bottom: 10px solid transparent;
  left: 23px;
  bottom: -15px;
}

#seller-chat-icon {
  flex: 0 0 0px;
  width: 24px;
  height: 24px;
}

#seller-chat-icon img {
  width: 24px;
  height: 24px;
}

#seller-chat-info {
  flex: 1 1 0;
}

#seller-chat-header {
  color: #012169;
  font-variant: all-small-caps;
  font-size: 20px;
  margin-bottom: 10px;
}

#seller-chat-text {
  color: #000;
}

#seller-phone {
  margin: 16px 0;
  vertical-align: top;
  display: flex;
  align-items: top;
  gap: 10px;
}

#seller-phone-icon {
  flex: 0 0 0px;
  width: 24px;
  height: 24px;
}

#seller-phone-icon img {
  width: 24px;
  height: 24px;
}

#seller-phone-text {
  flex: 1 1 0px;
  color: #0053C2;
}

#seller-loc {
  margin: 16px 0;
  vertical-align: top;
  display: flex;
  align-items: top;
  gap: 10px;
}

#seller-loc-icon {
  flex: 0 0 0px;
  width: 24px;
  height: 24px;
}

#seller-loc-icon img {
  width: 24px;
  height: 24px;
}

#seller-loc-text {
  flex: 1 1 0px;
  color: #0053C2;
}

#seller-linkedin {
  margin: 16px 0;
  vertical-align: top;
  display: flex;
  align-items: top;
  gap: 10px;
}

#seller-linkedin-icon {
  flex: 0 0 0px;
  width: 24px;
  height: 24px;
}

#seller-linkedin-icon img {
  width: 24px;
  height: 24px;
}

#seller-linkedin-text {
  flex: 1 1 0px;
  color: #0053C2;
}

#seller-contact {
  margin: 48px 0;
}

#seller-contact button {
  margin: 0;
}

#seller-bio {
  flex: 2 1 400px;
}

#seller-quote {
  margin: 64px 0;
  padding: 41px 0 0 59px;
  color: #344E87;
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 125%; /* 50px */
  letter-spacing: 0.008px;

  background-image: url('https://business.bofa.com/content/dam/flagship/hosting-only/seller/quotes.png');
  background-repeat: no-repeat;
  background-size 58px 48px;
}

#seller-about {
  margin: 64px 0;
}

#seller-about-header {
  margin: 12px 0;
}

#seller-about-text {
  margin: 12px 0;
}

#seller-focus {
  margin: 32px 0;
  border: 1px solid #D5D5D5;
  padding: 24px 32px;
}

#seller-lc {
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

#seller-languages {
  flex: 1 1 300px;
  border: 1px solid #D5D5D5;
  padding: 24px 32px;
}

#seller-community {
  flex: 1 1 300px;
  border: 1px solid #D5D5D5;
  padding: 24px 32px;
}

#team {
  /* padding: 96px 64px; */
  padding: 96px 0;
  text-align: center;
  background-color: #012169;
  color: #ffffff;
}

#team-header {
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 125%; /* 50px */
  letter-spacing: 0.008px;
  color: #fff;
}

#team-members {
  margin: 80px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px 64px;
}

.team-member {
  margin: 0 12px;
  flex: 0 1 300px;
  width: 100%;
  max-width: 300px;
}

.team-member-image {
  margin: 24px 0;
}

.team-member-image img {
  width: 48px;
  height: 48px;
}

.team-member-name {
  margin: 12px 0;
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 125%; /* 50px */
  letter-spacing: 0.012px;
}

.team-member-title {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.011px;
}

.team-member-title2 {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.011px;
}

#solutions {
  /* padding: 96px 64px; */
  padding: 96px 0;
  text-align: center;
  background-color: #F5F5F5;
  color: #000000;
}

#solutions-header {
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 125%; /* 50px */
  letter-spacing: 0.008px;
  color: #344E87;
}

#solutions-subheader {
  margin-top: 36px;
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 125%; /* 50px */
  letter-spacing: 0.008px;
}

#solutions-details {
  margin: 80px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px 64px;
}

.solutions-info {
  margin: 0 12px;
  flex: 0 1 300px;
  width: 100%;
  max-width: 300px;
}

.solutions-info-image {
  margin: 24px 0;
}

.solutions-info-image img {
  width: 48px;
  height: 48px;
}

.solutions-info-text {
  margin: 12px 0;
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.012px;
}

#resources {
  padding: 96px 0;
  text-align: center;
  background-color: #F5F5F5;
  color: #000;
}

#resources-header {
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 125%; /* 50px */
  letter-spacing: 0.008px;
}

#resources-tiles {
  margin: 80px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.resources-tile {
  background-color: #fff;
  flex: 0 1 416px;
  width: 300px;
  text-align: left;
  text-decoration: none;
}

.resources-tile-image {
}

.resources-tile-image img {
  width: 100%;
  max-width: 416px;
  height: auto;
}

.resources-tile-text {
  padding: 32px 32px;
}

.resources-tile-title {
  margin: 12px 0;
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 125%; /* 50px */
  letter-spacing: 0.012px;
  color: #000000;
}

.resources-tile-body {
  margin: 12px 0;
  color: #646464;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.011px;
}

.resources-tile-link {
  margin: 32px 0;
  vertical-align: top;
  display: flex;
  align-items: top;
  gap: 10px;
}

.resources-tile-link-icon {
  margin-top: -3px;
  flex: 0 0 0px;
  width: 18px;
  height: 18px;
}

.resources-tile-link-icon img {
  width: 18px;
  height: 18px;
}

.resources-tile-link-text {
  flex: 1 1 0px;
  color: #646464;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.011px;
}

.resources-tile-link img {
  width: 18px;
  height: 18px;
}

#help {
  padding: 96px 0;
}

#help-info {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  justify-content: center;
}

#help-text {
  flex: 1 1 450px;
}

#help-title {
  margin: 16px 0;
  color: #082365;
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 125%; /* 50px */
  letter-spacing: 0.008px;
}

#help-body {
  margin: 16px 0;
  color: #000;
  font-family: ConnectionsLight, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 150%; /* 27px */
  letter-spacing: 0.011px;
}

#help-button {
  margin: 32px 0;
}

#help-button button {
  margin: 0;
  background-color: #012169;
}

#help-image {
  flex: 0 1 344px;
  width: 100%;
  max-width: 344px;
}

#help-image img {
  width: 100%;
  max-width: 344px;
  height: auto;
}

@media only screen and (max-device-width: 1024px), screen and (max-width: 1024px) {
  #seller {
    margin: 32px 0;
  }

  #seller-name {
    font-size: 32px;
  }

  #seller-quote {
    margin: 32px 0;
    font-size: 24px;
    letter-spacing: 0.005px;
  }

  #seller-about {
    margin: 32px 0;
  }

  #team {
    padding: 64px 0;
  }

  #team-members {
    margin: 32px 0;
    gap: 32px 32px;
  }

  #resources {
    padding: 64px 0;
  }

  #resources-tiles {
    margin: 32px 0;
    gap: 32px 64px;
  }

  #help {
    padding: 64px 0;
  }

  #help-title {
    font-size: 32px;
  }

  .legal-table-row {
    flex: 1 1 500px;
    border-left: 1px solid #000;;
  }
}

@media only screen and (max-device-width: 480px), screen and (max-width: 480px) {
  .header {
    border-bottom: 0;
  }

  #header-nav-menu, .header-hide {
    display: none;
  }

  #header-main-items {
    flex-wrap: nowrap;
  }

  .mobile-nav {
    display: block;
  }

  .form-item.max-width-300 {
    flex: 1 1 200px; /* minimum width of items */
  }

  .form-item.grouped-button {
    flex: 1 0 100%;
  }

  button {
    width: 100%;
  }
}