@charset "UTF-8";
/*****************************************************/
/* TO COMPILE: (command line from /scss directory) : */
/*     sass --watch BusinessSense:../css             */
/*****************************************************/
.circle {
  border-radius: 50%;
  height: 24px;
  width: 24px;
  border: 1px solid var(--bizSensePrimary);
  margin: 10px;
  float: left;
  cursor: pointer;
}

.filled_circle {
  background-color: var(--bizSensePrimary);
}

.white {
  color: var(--white);
}

.gray {
  color: var(--darkGray);
}

.black {
  color: var(--black);
}

.red, .warn {
  color: var(--warn);
}

.whiteBg {
  background-color: var(--white);
}

.grayBackground {
  background-color: var(--lightBg);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.material-symbols-outlined.thin {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}

.material-symbols-strong {
  font-variation-settings: "FILL" 0, "wght" 700, "GRAD" 0, "opsz" 24;
}

.verticallyCentered {
  display: flex;
  align-items: center;
}

.flexColumn {
  display: flex;
  flex-direction: column;
}

.flexRow {
  display: flex;
  flex-direction: row;
}

.showSmall {
  display: none !important;
}

.noUnderline {
  text-decoration: none !important;
}
.noUnderline:hover {
  text-decoration: none !important;
}

button.lookLikeALink {
  border: none;
  background-color: inherit;
}

.doubleSpaced {
  line-height: 1.6;
}

div.logoImage img {
  width: 200px;
}

.bizSenseLightBg {
  background-color: var(--lightBg);
}

.buttonGroup {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
  justify-content: flex-start;
  flex-direction: row;
}

.darkSection {
  background-color: var(--black);
  color: var(--white);
}
.darkSection h1, .darkSection h2, .darkSection h3, .darkSection h4, .darkSection h5, .darkSection h6, .darkSection .subtitle-1 {
  background-color: var(--black);
  color: var(--white);
}
.darkSection button.primary.outlined:hover {
  color: var(--white);
  background-color: var(--buttonHover);
}

.middleLineEffect {
  width: 100%;
}
.middleLineEffect p {
  text-align: center;
  overflow: hidden;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01rem;
}
.middleLineEffect p::before, .middleLineEffect p::after {
  background-color: var(--lightGray);
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}
.middleLineEffect p::before {
  right: 24px;
  margin-left: -50%;
}
.middleLineEffect p::after {
  left: 24px;
  margin-right: -50%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/*originally in telehealth, also in use by: Cellphone, Accidental Death*/
.teleHealthIcons {
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: var(--sectionSpacing);
  font-size: 1.125rem;
  /*used on DataBreach, LegalServices, AND the class ".teleHealthIcons" */
  /*teleHealthIcons used by: TeleHealth, Cellphone, Accidental Death */
  display: flex;
  flex-wrap: wrap;
  color: var(--darkGray);
}
.teleHealthIcons > div {
  text-align: center;
  width: min(100%, 26rem);
}
.teleHealthIcons > div div:has(> .material-symbols-outlined) {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  color: var(--white);
  background-color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.teleHealthIcons > div .material-symbols-outlined {
  font-size: 3.5rem;
}
.teleHealthIcons > div .svgIcon { /*the svg*/
  display: inline-block;
  width: 64px;
  height: 64px;
}
.teleHealthIcons > div {
  text-align: center;
  width: 19rem;
  padding: 0 1.5rem;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.teleHealthIcons .svgIcon {
  margin-bottom: 0.4rem;
}

:root {
  --black: #0f1f26;
  --white: white;
  --lightBg: #faf8f5;
  --lightGray: #daeaf2;
  --mediumGray: #93a6ad;
  --darkGray: #506773;
  --steel: #CCD9E0;
  --ice: #F0F3F5;
  --night: #132E53;
  --fadeGray: #6B7694;
  --bizSenseBase: #0077b2;
  --bizSensePrimary: #0077b2;
  --bizSenseSecondary: #0077b2;
  --logoMain: #074e74;
  --logoTrim: #0a78b4;
  --buttonHover: color-mix(in srgb, var(--bizSensePrimary), black 15%);
  --linkVisited: #7F4F74;
  --darkTint: color-mix(in srgb, var(--black), transparent 15%);
  --blueTint: color-mix(in srgb, var(--night), transparent 15%);
  --minWidth: 360px;
  --maxWidth: 1320px;
  --minImageHeight: 400px;
  --minSectionHeight: 500px;
  --sectionSpacing: 7rem;
  --outerPadding: 24px;
  --bottomFooterBg: var(--night);
  --warn: #C93C32;
  --success: #218553;
  --moderate50: #fdf2eb;
  --moderate200: #F7C4A5;
  --moderate700:#A85A2A;
  --moderate800: #824620;
  --neutral-100: #DCE0E2;
  --neutral-500: #F4F5F6;
  --neutral-700: #646D72;
  --fontFamily: Mundial, sans-serif;
  --narrowFont: "Arial Narrow", Arial, sans-serif;
  --color-info-background: rgba(230, 241, 247, 1);
  --color-info-border: rgba(138, 192, 220, 1);
  --color-info-text: rgba(0, 84, 126, 1);
  --color-info: #0077b2;
  --color-warning-background: rgba(250, 236, 235, 1);
  --color-warning-border: rgba(230, 165, 161, 1);
  --color-warning-text: rgba(0, 84, 126, 1);
  --color-branding-primary: var(--bizSensePrimary);
  --color-branding-secondary: var(--bizSenseSecondary);
}

html {
  height: 100%;
  font-size: 16px;
  text-rendering: geometricPrecision;
}

body {
  min-height: 100%;
  min-width: var(--minWidth);
  display: flex;
  flex-direction: column;
  margin: auto;
  color: var(--darkGray);
  font-size: 16px;
  font-family: var(--fontFamily);
  background-color: var(--white);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
body > form {
  display: flex;
  flex-direction: column;
}
body #EmpSenseSiteMap, body .empSenseSiteMap {
  display: none;
}
body.accidentaldeath .embeddedSiteMap, body.accidentaldeathbs .embeddedSiteMap, body.telehealth .embeddedSiteMap, body.identitytheftresolutionemp .embeddedSiteMap, body.shoppingrewards .embeddedSiteMap, body.benefitsforemployee .embeddedSiteMap, body.databreach .embeddedSiteMap, body.benefitsforbusiness .embeddedSiteMap, body.benefitsforowner .embeddedSiteMap, body.benefitsforemployee .embeddedSiteMap, body.legalservices .embeddedSiteMap, body.cellphone .embeddedSiteMap, body.home .embeddedSiteMap, body.identitytheftresolution .embeddedSiteMap, body.privatewifi .embeddedSiteMap, body.healthandwellness .embeddedSiteMap, body.map .embeddedSiteMap, body.contactus .embeddedSiteMap, body.identitytheftresolutiononlyemp .embeddedSiteMap, body.financialwellnessbs .embeddedSiteMap {
  display: block;
  font-size: 14px;
  z-index: 200;
  height: 5rem;
}
body.accidentaldeath .embeddedSiteMap a, body.accidentaldeathbs .embeddedSiteMap a, body.telehealth .embeddedSiteMap a, body.identitytheftresolutionemp .embeddedSiteMap a, body.shoppingrewards .embeddedSiteMap a, body.benefitsforemployee .embeddedSiteMap a, body.databreach .embeddedSiteMap a, body.benefitsforbusiness .embeddedSiteMap a, body.benefitsforowner .embeddedSiteMap a, body.benefitsforemployee .embeddedSiteMap a, body.legalservices .embeddedSiteMap a, body.cellphone .embeddedSiteMap a, body.home .embeddedSiteMap a, body.identitytheftresolution .embeddedSiteMap a, body.privatewifi .embeddedSiteMap a, body.healthandwellness .embeddedSiteMap a, body.map .embeddedSiteMap a, body.contactus .embeddedSiteMap a, body.identitytheftresolutiononlyemp .embeddedSiteMap a, body.financialwellnessbs .embeddedSiteMap a {
  text-decoration: underline;
}
body.accidentaldeath .defaultSiteMap, body.accidentaldeathbs .defaultSiteMap, body.telehealth .defaultSiteMap, body.identitytheftresolutionemp .defaultSiteMap, body.shoppingrewards .defaultSiteMap, body.benefitsforemployee .defaultSiteMap, body.databreach .defaultSiteMap, body.benefitsforbusiness .defaultSiteMap, body.benefitsforowner .defaultSiteMap, body.benefitsforemployee .defaultSiteMap, body.legalservices .defaultSiteMap, body.cellphone .defaultSiteMap, body.home .defaultSiteMap, body.identitytheftresolution .defaultSiteMap, body.privatewifi .defaultSiteMap, body.healthandwellness .defaultSiteMap, body.map .defaultSiteMap, body.contactus .defaultSiteMap, body.identitytheftresolutiononlyemp .defaultSiteMap, body.financialwellnessbs .defaultSiteMap {
  display: none;
}

/* MIN-MAX WIDTH and CENTERING (add section to this list or use maxWidth class) */
#bizSenseHome > section > *,
#bizsense_content > *,
#healthAndWellnessPage,
.bizSection,
#smallbizmonitor,
.DiscountApp,
body.GetDeals > form,
.newInsetSection,
.newBenefitSection,
.newHomeSection,
#employeeBenefitsPage,
body.checkprofile .main__middle__container,
body.creditreportview .main__middle__container,
body.creditreportviewtu .main__middle__container,
body.creditreportviewefx .main__middle__container,
body.dashboard .main__middle__container,
body.dashboardtu .main__middle__container,
body.viewalerts .main__middle__container,
body.viewalertstu .main__middle__container,
.maxWidth {
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
}

/* Default.aspx*/
body.default {
  /*    form {  trying this in the body for all pages
          display:flex;
          flex-direction:column;
      }*/
}
body.default .BizSenseSection {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
body.default .BizSenseSection #bizCarousel {
  width: 100%;
  height: 480px;
  position: relative;
}
body.default .BizSenseSection #bizCarousel #carouselInner {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
body.default .BizSenseSection #bizCarousel #carouselInner .backgroundImage {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 100%;
}
body.default .BizSenseSection #bizCarousel #carouselInner .backgroundImage:not(.hide) {
  display: block;
  animation: fadeIn 1.2s ease-out;
}
body.default .BizSenseSection #bizCarousel .textCellContainer {
  width: 100%;
  position: relative;
  height: 100%;
}
body.default .BizSenseSection #bizCarousel .textCellContainer .textCell {
  padding-bottom: 32px;
  padding-top: 32px;
  padding-left: 40px;
  padding-right: 40px;
  position: absolute;
  width: 424px;
  right: 30px;
  top: 10%;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  box-shadow: 0px 8px 16px 0px rgba(15, 31, 38, 0.08), 0px 4px 10px -6px rgba(15, 31, 38, 0.22), 0px 2px 56px 0px rgba(15, 31, 38, 0.26); /*from figma*/
}
body.default .BizSenseSection #bizCarousel .textCellContainer .textCell .textCell_text {
  display: flex;
  flex-direction: column;
}
body.default .BizSenseSection #bizCarousel .textCellContainer .textCell .textCell_text .subtitle-1 {
  font-size: 36px;
}
body.default .BizSenseSection #bizCarousel .textCellContainer .textCell .textCell_text #defaultDescription {
  line-height: 1.4;
}
body.default .BizSenseSection #bizCarousel .textCellContainer .textCell .textCell_buttons {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
body.default .BizSenseSection #bizCarousel .textCellContainer .textCell .textCell_buttons button {
  width: 100%;
}
body.default .BizSenseSection .contentSection {
  display: flex;
  column-gap: 24px;
  row-gap: 24px;
  margin-top: var(--sectionSpacing);
  margin-bottom: calc(2 * var(--sectionSpacing));
  padding: 16px;
  justify-content: center;
}
body.default .BizSenseSection .contentSection .material-symbols-outlined {
  font-size: 46px;
  padding: 5px;
  border-radius: 13px;
}
body.default .BizSenseSection .contentSection > div {
  display: flex;
  flex: 1 1 33%;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 32rem;
}
body.default .BizSenseSection .contentSection > div > :nth-child(2) {
  font-weight: 600;
  text-align: center;
}
body.default .BizSenseSection .contentSection > div > :nth-child(3) {
  color: var(--darkGray);
  text-align: center;
  font-weight: 300;
}

.mobileRibbon {
  color: var(--white);
  background-color: var(--black);
  display: flex;
  height: 332px;
  width: 100%;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
  margin-top: auto;
}
.mobileRibbon .imageCell img {
  height: 380px;
}
.mobileRibbon .textCell {
  padding: 40px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.mobileRibbon .textCell .appBadges {
  display: flex;
  column-gap: 10px;
}

.imageCell {
  background-position: 50% 50%;
}

#bizsenseRegistrationGrid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  max-width: var(--maxWidth);
  margin: 3.5rem auto;
  background: unset;
}
#bizsenseRegistrationGrid .darkSection {
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 300;
  padding: 5rem 3.5rem;
}
#bizsenseRegistrationGrid .darkSection h2 {
  font-size: 2.25rem;
  line-height: 2.65rem;
  font-weight: 700;
}
#bizsenseRegistrationGrid .darkSection .bs-subheader {
  font-weight: 600;
  font-size: large;
  padding-bottom: 2.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--white);
}
#bizsenseRegistrationGrid .bs-registration-form {
  padding: 0 3rem;
  border: 1px solid var(--lightGray);
}
#bizsenseRegistrationGrid .bs-registration-form h3 {
  font-weight: 600;
  font-size: 1.75rem;
}
#bizsenseRegistrationGrid .bs-registration-form > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--lightGray);
  padding: 2.5rem 0;
}
#bizsenseRegistrationGrid .bs-registration-form > div > div {
  display: flex;
  gap: 0.5rem;
}
#bizsenseRegistrationGrid .bs-registration-form > div > div > div, #bizsenseRegistrationGrid .bs-registration-form > div > div > a.btn {
  flex: 1 1 50%;
}
#bizsenseRegistrationGrid .bs-registration-form > div > div > .no-flex-grow {
  flex-grow: 0;
}
#bizsenseRegistrationGrid .bs-registration-form > div > div .bs-registration-input-sm {
  max-width: 4.5rem;
}
#bizsenseRegistrationGrid .bs-registration-form > div > div .bs-registration-input-details {
  color: var(--darkGray);
  font-size: 0.875rem;
  font-weight: 300;
}
#bizsenseRegistrationGrid .bs-registration-form > div .bs-registration-disclosure {
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 300;
}
#bizsenseRegistrationGrid .bs-registration-form > div .bs-registration-actions-row {
  justify-content: stretch;
  gap: 1rem;
}
#bizsenseRegistrationGrid .bs-registration-form #bizsenseSecurityQuestionsForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.5rem;
  row-gap: 1rem;
}

#bsEmailVerification {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 1px solid var(--steel);
  padding: 2.5rem 3rem;
  margin: 4.5rem auto;
  max-width: 650px;
}
#bsEmailVerification a {
  cursor: pointer;
}

body.verify #container {
  flex-grow: 1;
  background-color: var(--lightBg);
}
body.verify #container input {
  white-space: break-spaces;
}

.my-account-page {
  margin: auto;
  float: unset;
}
.my-account-page h1 {
  margin: 2rem 0;
}

/*HOME, CONTENT SECTIONS*/
.top-section {
  width: 100%;
  display: flex;
}
.top-section h1.hero {
  line-height: 1;
  text-indent: -4px;
}
.top-section .textCell {
  flex: 7 1 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.top-section .textCell .subtitle-1 {
  margin-top: 40px;
}
.top-section .imageCell {
  flex: 6 1 0;
  min-height: 620px;
  background-size: cover;
  background-repeat: no-repeat;
}
.top-section .top-section-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}
.top-section .embeddedSiteMap {
  padding: 20px;
  padding-left: 0px;
}

#bizSenseHome > section:not(:last-child) {
  margin-bottom: var(--sectionSpacing);
}
#bizSenseHome > .section {
  width: 100%;
}
#bizSenseHome .top-section {
  height: 579px;
  overflow: visible;
}
#bizSenseHome .top-section .textCell {
  padding-right: 100px;
}
#bizSenseHome .top-section .textCell > div:first-child {
  margin-top: 90px;
}
#bizSenseHome .top-section .dualImageContainer {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 20px;
  row-gap: 20px;
  height: 634px;
}
#bizSenseHome .top-section .dualImageContainer > * {
  min-height: var(--minImageHeight);
  background-size: cover;
  flex: 1 1 auto;
}
#bizSenseHome .top-section .dualImageContainer .left {
  background-position: 60% 15%;
}
#bizSenseHome .top-section .dualImageContainer .right {
  background-position: 60% 15%;
}
#bizSenseHome .top-section .welcomePackageButtonGroup {
  display: flex;
  row-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
#bizSenseHome .customInsetSection {
  display: block;
}
#bizSenseHome .customInsetSection .textCell {
  position: absolute;
  width: 70%;
}
#bizSenseHome .customInsetSection .imageCell {
  position: absolute;
  width: 42%;
}
#bizSenseHome #HomeBusinessSection .imageCell {
  left: 5px;
  bottom: 0;
}
#bizSenseHome #HomeBusinessSection .textCell {
  left: 30%;
  bottom: 0px;
}
#bizSenseHome #HomeOwnerSection .imageCell {
  right: 0;
  bottom: 0;
}
#bizSenseHome #HomeOwnerSection .textCell {
  left: 5px;
  bottom: 0px;
}
#bizSenseHome #HomeEmployeeSection {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 30px;
  justify-content: space-between;
}
#bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc {
  margin-left: 5px;
  width: 700px;
}
#bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc > * {
  padding-top: 0;
  padding-bottom: 0;
}
#bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection {
  position: relative;
  padding: 15px;
  padding-left: 50px;
  padding-top: 50px;
}
#bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection .imageCell {
  display: flex;
  flex: 1 1 700px;
  column-gap: 10px;
}
#bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection .imageCell .largeButtons {
  flex: 1 1 auto;
}
#bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection .imageCell .backgroundImage {
  width: 330px;
  height: 290px;
  flex: 2 0 auto;
}
#bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection .textCell {
  position: relative;
}
#bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection .textCell .smallButtons {
  display: none;
}
#bizSenseHome #HomeEmployeeSection .employeeBenefitsList a.benefitLink {
  max-width: 500px;
}

.imageCell {
  background-size: cover;
  background-repeat: no-repeat;
}

.textCell {
  display: flex;
  flex-direction: column;
}

#BenefitsList {
  padding: 5px;
}

.newBenefitSection {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  column-gap: 70px;
  margin-bottom: 70px;
  position: relative;
}
.newBenefitSection a:not([href]) {
  /* internal page links*/
  color: var(--black);
  text-decoration: none;
}
.newBenefitSection .imageCell {
  width: 100%;
  height: 275px;
  flex: 0 0 400px;
}
.newBenefitSection .textCell {
  row-gap: 20px;
  padding: 70px;
  width: 100%;
}
.newBenefitSection .textCell > :nth-child(1) { /*type*/
  color: var(--darkGray);
  font-size: 95%;
  font-weight: bold;
}
.newBenefitSection .textCell > :nth-child(2) { /*name*/ }
.newBenefitSection .textCell > :nth-child(3) { /*tagline*/ }
.newBenefitSection .textCell > :nth-child(3) h2 {
  line-height: 1.6;
}
.newBenefitSection .textCell > :nth-child(4) { /*desc*/
  color: var(--darkGray);
}
.newBenefitSection .textCell > :nth-child(5) { /*buttons*/ }

.newInsetSection {
  position: relative;
  width: 100%;
  min-height: var(--minSectionHeight);
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 70fr 42fr;
}
.newInsetSection .imageCell {
  grid-row: 1/3;
  grid-column: 2/3;
  min-height: var(--minSectionHeight);
}
.newInsetSection .textCell {
  grid-column: 1/2;
  margin-right: -100px;
  display: flex;
  flex-direction: column;
  z-index: 200;
  background-color: var(--white);
  padding: 56px 72px;
  row-gap: 24px;
  height: auto;
  min-height: 400px;
}

.quickLinks {
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
  min-height: 0px;
  display: flex;
  column-gap: 30px;
  margin-bottom: 70px;
  font-size: 1.1em;
  padding-left: 70px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.quickLinks #theSummary {
  display: flex;
  column-gap: 30px;
  flex-wrap: wrap;
  flex-direction: column;
}
.quickLinks #theSummary a {
  text-decoration: underline;
}

/* older bizSection class that is still in: health&wellness, smallbizmonitor */
.bizSection {
  display: flex;
}
.bizSection .imageCell {
  flex: 6 1 0;
}
.bizSection .textCell {
  flex: 7 1 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
  row-gap: 35px;
}
.bizSection .biggerText {
  font-size: 1.125em;
  font-weight: 500;
  margin-top: 10px;
}

.benefitsList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: 1.5rem;
}

a.benefitLink {
  text-decoration: none;
  padding: 1.25rem 2rem 2rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  color: var(--black);
  flex: 1 1 300px;
  min-width: 200px;
  max-width: 400px;
  border: 1px solid transparent;
}
a.benefitLink .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a.benefitLink .title .arrows {
  height: 100%;
  display: flex;
  align-items: center;
}
a.benefitLink:hover {
  border: 1px solid var(--lightBg);
}
a.benefitLink:hover .arrowForward {
  display: none;
}
a.benefitLink:hover .arrowOutward {
  display: inline-block !important;
}

/*  add .BorderEffect plus a positional class 'BorderEffect top-left' to get the borders.*/
.BorderEffect:after {
  content: "";
  display: block;
  width: 135px;
  height: 100px;
  position: absolute;
  pointer-events: none;
}
.BorderEffect.bottom-right:after {
  bottom: 0;
  right: 0;
  border-right: 2px solid var(--bizSenseSecondary);
  border-bottom: 2px solid var(--bizSenseSecondary);
}
.BorderEffect.top-right:after {
  top: 0;
  right: 0;
  border-right: 2px solid var(--bizSenseSecondary);
  border-top: 2px solid var(--bizSenseSecondary);
}
.BorderEffect.bottom-left:after {
  bottom: 0;
  left: 0;
  border-left: 2px solid var(--bizSenseSecondary);
  border-bottom: 2px solid var(--bizSenseSecondary);
}
.BorderEffect.top-left:after {
  top: 0;
  left: 0;
  border-left: 2px solid var(--bizSenseSecondary);
  border-top: 2px solid var(--bizSenseSecondary);
}

.alternating > *:nth-child(odd) {
  flex-direction: row-reverse;
}

#bizsense_welcomepackage .imageBackground {
  background-size: cover;
  background-position: 50% 50%;
  background-image: url("/images/businesssense/welcome-kit.jpg");
}
#bizsense_welcomepackage .blueTint {
  min-height: 425px;
  background-color: var(--blueTint);
  color: var(--white);
  padding: 10vmin;
}
#bizsense_welcomepackage .blueTint .empSenseLogo {
  max-height: 150px;
}
#bizsense_welcomepackage .blueTint .btnWelcomePack {
  margin-top: 40px;
}
#bizsense_welcomepackage .blueTint h2 {
  color: var(--white);
  margin-bottom: 20px;
}
#bizsense_welcomepackage .blueTint p {
  color: var(--white);
}
#bizsense_welcomepackage .description {
  width: clamp(320px, 66%, 651px);
  margin-left: auto;
  margin-right: auto;
}
#bizsense_welcomepackage .description p:first-child {
  margin-bottom: 24px;
}

/* HEADER & FOOTER */
/*HEADERS and FOOTER NAV ELEMENTS*/
#BS_basic_header {
  width: 100%;
  display: flex;
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  padding-left: 40px;
  padding-right: 40px;
}
#BS_basic_header #basicSignInLinks {
  display: flex;
  column-gap: 24px;
  align-items: center;
}
#BS_basic_header #basicSignInLinks a {
  color: var(--black) !important;
  text-decoration: underline;
}
#BS_basic_header #hamburger_button {
  display: none;
  border-radius: 50%;
}

#BS_logged_in_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--maxWidth);
  column-gap: 20px;
  font-size: 1.1em;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 40px;
}
#BS_logged_in_header div.logoImages svg {
  padding-right: 1rem;
  border-right: 1px solid var(--mediumGray) !important;
}
#BS_logged_in_header .accountAndIcons, #BS_logged_in_header iconsForLarge {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
#BS_logged_in_header .accountAndIcons #hamburger_button {
  display: none;
  border-radius: 50%;
}
#BS_logged_in_header #main_menu_container {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 20px;
  align-items: center;
}
#BS_logged_in_header #main_menu_container #BS_header_links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  z-index: 300;
  margin-top: 0px;
  margin-bottom: 0px;
  position: relative;
  /* PURE CSS Drop Down Menu */
  /*top level list*/
}
#BS_logged_in_header #main_menu_container #BS_header_links a {
  color: var(--black);
  text-decoration: none;
}
#BS_logged_in_header #main_menu_container #BS_header_links a[href="Home.aspx"] {
  padding-right: 10px;
}
#BS_logged_in_header #main_menu_container #BS_header_links .arrow_drop_down {
  margin-left: 5px;
}
#BS_logged_in_header #main_menu_container #BS_header_links .arrow_drop_down:hover {
  cursor: pointer;
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul {
  display: inline-flex;
  column-gap: 15px;
  margin-bottom: 0px;
  padding: 0px;
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul li { /* (ALL LI'S) */
  line-height: inherit;
  list-style-type: none;
  padding: 5px;
  padding-left: 10px;
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul li ul { /* (sub-level menus) */
  position: absolute;
  z-index: 300;
  left: 0px;
  padding: 0px;
  border-bottom: 1px solid var(--lightGray);
  border-left: 1px solid var(--lightGray);
  border-right: 1px solid var(--lightGray);
  display: none;
  width: 294px;
  background-color: var(--white);
  /* SUBLEVEL LI'S (leaf nodes)*/
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul li ul li {
  border-left: 4px solid transparent;
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul li ul li:first-child {
  border-top: 1px solid #efefef;
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul li ul li:has(a.active) {
  border-left: 4px solid var(--bizSenseSecondary);
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul li ul li:hover {
  border-left: 4px solid var(--bizSenseSecondary);
  background-color: var(--lightBg);
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul > li { /* top level list elements */
  display: inline-block;
  margin: 5px;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 4px solid transparent;
  position: relative;
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul > li:has(a.active) {
  border-bottom: 4px solid var(--bizSenseSecondary);
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul > li:hover {
  border-bottom: 4px solid var(--bizSenseSecondary);
  backdrop-filter: brightness(97%);
  z-index: 200;
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul > li:hover ul {
  display: block;
}
#BS_logged_in_header #main_menu_container #BS_header_links > ul > li:hover ul:before { /*spacer element to push menu down some (desktop mode)*/
  content: "";
  height: 5px;
  width: 296px;
  display: list-item;
  list-style: none;
  background-color: transparent;
  pointer-events: none;
}
#BS_logged_in_header #main_menu_container div.accountAndIcons #BS_account_menu {
  border: 1px solid #ededed;
  text-align: center;
  padding: 1rem;
  position: absolute;
  width: 300px;
  background-color: var(--white);
  z-index: 300;
  left: -260px;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
#BS_logged_in_header #main_menu_container div.accountAndIcons #BS_account_menu > * {
  width: 300px;
  word-wrap: break-word;
  overflow: hidden;
}
#BS_logged_in_header #main_menu_container .mobile-widget-container {
  display: flex;
  flex-direction: column;
}
#BS_logged_in_header #main_menu_container .mobile-widget-container .alert-widget-close-btn {
  display: none;
}
#BS_logged_in_header #alertWidget {
  display: flex;
  flex-direction: column;
}
#BS_logged_in_header #alertWidget > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid lightgrey;
}
#BS_logged_in_header #alertWidget > div > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--black);
}
#BS_logged_in_header #alertWidget h4 {
  font-weight: 600;
}
#BS_logged_in_header #alertWidget > div:last-child {
  border-bottom: none;
}
#BS_logged_in_header #alertWidget .widget-alert-count {
  font-size: x-small;
  font-weight: 600;
  padding: 0 0.25rem;
  border-radius: 4px;
  border: 2px solid var(--color-warning-border);
  color: var(--warn);
  background: var(--color-warning-background);
}
#BS_logged_in_header #alertWidget .alert-widget-close-btn:hover {
  cursor: pointer;
}
#BS_logged_in_header #alertWidget .warning.btn-sm {
  border: 1px solid var(--warn);
}
#BS_logged_in_header .popover {
  width: 400px;
  max-width: 400px;
}
#BS_logged_in_header .arrow {
  left: 90%;
}
#BS_logged_in_header .bell-loading-indicator {
  display: inline-block;
  position: absolute;
  height: 0.875em;
  width: 0.875em;
  left: 1.5em;
  bottom: 1.5em;
}

/*elements on both logged and in not logged in menus (may or may not contain branding image) */
div.headerLogo {
  display: flex;
  justify-content: space-between;
}

div.logoImages {
  width: clamp(13.75rem, 10.733rem + 12.376vw, 21.563rem);
  display: flex;
  align-items: center;
}
div.logoImages #FI_SiteLink {
  margin-left: 0.5rem;
}
div.logoImages #FI_SiteLink #bizCoBranding {
  padding-left: 0.5rem;
  width: 100%;
}

#hamburger_button span.material-symbols-outlined {
  font-size: 48px;
}

.numberCircle {
  position: absolute;
  display: inline-block;
  line-height: 0px;
  border-radius: 50%;
  font-size: 0.875em;
  background-color: var(--warn);
  color: var(--white);
  left: 1.5em;
  bottom: 1.5em;
}
.numberCircle span {
  display: inline-block;
  padding-top: 50%;
  padding-bottom: 50%;
  margin-left: 6px;
  margin-right: 6px;
}

#BS_footer {
  background-color: var(--lightBg);
  width: 100%;
  font-size: 0.9em;
}
#BS_footer #BenefitsFooter {
  column-gap: 2rem;
}
#BS_footer > section {
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3.5rem;
  column-gap: 10px;
  row-gap: 20px;
  font-size: 0.9375em;
}
#BS_footer div.footerMenu h6 {
  margin-bottom: 1rem;
}
#BS_footer div.footerMenu h6 a {
  font-weight: 700;
}
#BS_footer div.footerMenu a {
  color: var(--black);
}
#BS_footer div.footerMenu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#BS_footer div.footerMenu ul a {
  color: var(--darkGray);
  font-weight: 300;
  font-size: 0.875rem;
}
#BS_footer .footerLogo {
  width: 200px;
}
#BS_footer .footerNav {
  display: flex;
  justify-content: space-around;
  text-align: left;
  column-gap: 2rem;
}
#BS_footer .footerNav ul {
  list-style: none;
  padding: 0;
}
#BS_footer .footerNav li {
  margin-bottom: 5px;
}
#BS_footer .footerMenu {
  margin: 10px;
}
#BS_footer .footerMenu div:first-child {
  font-weight: 600;
}
#BS_footer .socialLinks {
  white-space: nowrap;
}
#BS_footer .socialLinks img {
  margin: 5px;
}

#BS_basic_footer {
  background-color: var(--bottomFooterBg);
  padding: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.875em;
  margin-top: auto;
}
#BS_basic_footer > section {
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  padding: 0px;
  display: flex;
  justify-content: space-between;
}
#BS_basic_footer > section a {
  color: var(--white);
  text-decoration: underline;
}
#BS_basic_footer > section .basicFooterLinks {
  display: flex;
  column-gap: 20px;
}

/******* THE PAGES  *******/
#employeeBenefitsPage #bsSubHeading {
  margin: 7rem auto;
}
#employeeBenefitsPage #EmployeeBenefitsSection {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 1.5rem;
  margin: 7rem auto;
  row-gap: 1.5rem;
}
#employeeBenefitsPage #EmployeeBenefitsSection > * {
  flex-wrap: nowrap;
  column-gap: 20px;
  flex: 0 1 calc(50% - 0.75rem);
}
#employeeBenefitsPage #EmployeeBenefitsSection .newEmployeeBenefitSection {
  padding: 1rem;
  border: 1px solid var(--lightGray);
  margin-left: unset;
  margin-bottom: 0px;
  justify-content: flex-start;
}
#employeeBenefitsPage #EmployeeBenefitsSection .newEmployeeBenefitSection .imageCell {
  height: 12rem;
  flex: 0 0 12rem;
  row-gap: 1rem;
  margin-bottom: 0px;
}
#employeeBenefitsPage #EmployeeBenefitsSection .newEmployeeBenefitSection .textCell {
  height: 100%;
  padding: 0.9rem 0;
  justify-content: space-between;
}
#employeeBenefitsPage #EmployeeBenefitsSection .newEmployeeBenefitSection .textCell h4 {
  color: var(--black);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
#employeeBenefitsPage #EmployeeBenefitsSection .newEmployeeBenefitSection .textCell p {
  font-size: 0.875rem;
  font-weight: 300;
}
#employeeBenefitsPage #EmployeeBenefitsSection .newEmployeeBenefitSection .textCell div:last-child {
  display: flex;
  gap: 0.5rem;
}

/** this file includes the Viewer page, .viewsbmalert **/
body.smallbusinessmonitor #smallbizmonitor {
  padding: var(--outerPadding);
}
body.smallbusinessmonitor #smallbizmonitor .accordionButton .glyphicon {
  color: var(--black);
  font-size: 13px;
  margin-right: 20px;
  display: inline-block;
  font-weight: 400;
}
body.smallbusinessmonitor #smallbizmonitor .accordionButton.collapsed .glyphicon:before {
  content: "+" !important;
}
body.smallbusinessmonitor #smallbizmonitor .accordionButton:not(.collapsed) .glyphicon {
  color: var(--darkGray);
}
body.smallbusinessmonitor #smallbizmonitor .accordionButton:not(.collapsed) .glyphicon:before {
  content: "−" !important;
}
body.smallbusinessmonitor #smallbizmonitor #NoAlertSection {
  display: flex;
  flex: 5 1 0;
  margin-bottom: 20px;
}
body.smallbusinessmonitor #smallbizmonitor #NoAlertSection > div {
  display: flex;
}
body.smallbusinessmonitor #smallbizmonitor #alertsSection {
  margin-bottom: 48px;
}
body.smallbusinessmonitor #smallbizmonitor #alertsSection input[type=checkbox] {
  margin-right: 8px;
}
body.smallbusinessmonitor #smallbizmonitor .notBold label {
  font-weight: 300;
}
body.smallbusinessmonitor #smallbizmonitor .monitoredsection {
  margin-bottom: 48px;
}
body.smallbusinessmonitor #smallbizmonitor .GridViewHeaderStyle th {
  padding: 8px 12px;
  text-align: left;
  background-color: #F4F5F6;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--black);
}
body.smallbusinessmonitor #smallbizmonitor .GridViewHeaderStyle td:not(:last-child) {
  padding: 8px 12px;
  border-bottom: 1px solid var(--neutral-100);
}
body.smallbusinessmonitor #smallbizmonitor .ActionButton {
  padding-left: 40px;
}
body.smallbusinessmonitor #smallbizmonitor .monitoredEntryTitle {
  font-size: 19px;
  color: #0F1F26;
}
body.smallbusinessmonitor #smallbizmonitor .monitoredEntryTitle > span {
  margin-right: 8px;
}
body.smallbusinessmonitor #smallbizmonitor .monitoredEntryTitle > * {
  line-height: 1.2;
}
body.smallbusinessmonitor #smallbizmonitor .alertListItem {
  border: 1px solid #eeeeee;
  border-radius: 5px;
  background-color: var(--white);
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 14px;
}
body.smallbusinessmonitor #smallbizmonitor .sideAccordion:hover {
  background-color: var(--lightBg);
}
body.smallbusinessmonitor #smallbizmonitor .sideAccordion:hover button:hover {
  filter: none;
}
body.smallbusinessmonitor #smallbizmonitor .brownButton {
  color: var(--white);
  background-color: var(--moderate700);
  border-color: var(--moderate700);
}
body.smallbusinessmonitor #smallbizmonitor #alertList {
  color: var(--black);
}
body.smallbusinessmonitor #smallbizmonitor #alertList label {
  font-weight: 300 !important;
}
body.smallbusinessmonitor #smallbizmonitor #alertList .pagerButtons {
  background-color: var(--white);
  margin-top: 18px;
}
body.smallbusinessmonitor #smallbizmonitor #alertList .pagerButtons a {
  border: 1px solid #DAEAF2;
  padding: 8px 12px;
  color: var(--black);
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  margin: 0px 4px;
}
body.smallbusinessmonitor #smallbizmonitor #alertList .pagerButtons a.selected {
  background-color: #0A8BCC;
  color: var(--white);
  cursor: default;
}
body.smallbusinessmonitor #smallbizmonitor #alertList .unread {
  font-weight: bold;
  background-color: #FAECEB;
}
body.smallbusinessmonitor #smallbizmonitor #alertPagination {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  padding: 10px;
  border-radius: 3px;
}
body.smallbusinessmonitor #smallbizmonitor #alertPagination .paginationLinks {
  font-weight: bold;
  display: flex;
  text-decoration: none;
  column-gap: 20px;
}
body.smallbusinessmonitor #smallbizmonitor #alertPagination .paginationLinks a {
  text-decoration: none;
  color: var(--black);
}
body.smallbusinessmonitor #smallbizmonitor #alertPagination .paginationLinks a:hover:not(.disabled) {
  background-color: var(--lightBg);
}
body.smallbusinessmonitor #smallbizmonitor #alertPagination .paginationLinks > * {
  width: 70px;
  display: inline-block;
  text-align: center;
}
body.smallbusinessmonitor #smallbizmonitor #alertPagination .paginationLabels {
  font-weight: bold;
}
body.smallbusinessmonitor #smallbizmonitor .notification-record {
  padding: 20px;
  background-color: var(--white);
}
body.smallbusinessmonitor #smallbizmonitor .notification-explanation {
  font-weight: 400;
}
body.smallbusinessmonitor #smallbizmonitor .notification-supplemental {
  font-size: 0.875em;
  font-weight: 500;
}
body.smallbusinessmonitor #smallbizmonitor .notification-items > div {
  display: flex;
  column-gap: 20px;
}
body.smallbusinessmonitor #smallbizmonitor #MonitoredList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 750px) {
  body.smallbusinessmonitor #smallbizmonitor #MonitoredList {
    grid-template-columns: 1fr;
  }
}
body.smallbusinessmonitor #smallbizmonitor #MonitoredList .monitoring-section {
  background-color: var(--white);
  border: 1px solid #CCD9E0;
}
body.smallbusinessmonitor #smallbizmonitor #MonitoredList .monitoring-section .collapseSectionIcon {
  border-radius: 3px;
  padding: 5px;
  font-size: 1.5em;
  color: var(--black);
  margin: 10px;
}
body.smallbusinessmonitor #smallbizmonitor #MonitoredList .monitoring-section .addRecordIcon {
  font-size: 2em;
  color: var(--bizSensePrimary);
}
body.smallbusinessmonitor #smallbizmonitor #MonitoredList .monitoring-section .infoIcon {
  color: var(--darkGray);
  margin: 5px;
}
body.smallbusinessmonitor #smallbizmonitor #MonitoredList .monitoring-section:has(.monitoring-section-content:not(.hide)) .monitoring-section-header {
  margin-bottom: 5px;
  cursor: pointer;
}
body.smallbusinessmonitor #smallbizmonitor #MonitoredList .monitoring-section .addMonitoringButtons {
  display: flex;
  margin: 0px 16px;
  gap: 0px 16px;
}
body.smallbusinessmonitor #smallbizmonitor #MonitoredList .monitoring-section .addMonitoringButtons > a {
  display: flex;
  flex-flow: row wrap;
  gap: 0px 16px;
  flex: 1 0 auto;
  justify-content: center;
}
body.smallbusinessmonitor #smallbizmonitor #MonitoredList .monitoring-section .addMonitoringButtons .thm-btn {
  padding: 15px;
  line-height: 10px;
  border-radius: 4px;
}
body.smallbusinessmonitor #smallbizmonitor #MonitoredList .monitoring-section .addMonitoringButtons .cancelButton {
  background-color: var(--white);
  color: var(--bizSensePrimary);
}
body.smallbusinessmonitor #smallbizmonitor #MonitoredList .monitoring-section .messageLabel {
  color: var(--warn);
  display: inline-block;
  margin: 3px;
}
body.smallbusinessmonitor #smallbizmonitor .alert-section-header {
  justify-content: space-between;
  color: var(--black);
  margin-bottom: 12px;
  border-radius: 1px;
}
body.smallbusinessmonitor #smallbizmonitor .alert-section-header .right {
  column-gap: 10px;
}
body.smallbusinessmonitor #smallbizmonitor .alert-section-header > * {
  height: 36px;
}
body.smallbusinessmonitor #smallbizmonitor .monitoring-section-header {
  justify-content: space-between;
  padding: 0px 10px;
  color: var(--black);
  margin: 8px;
  border-radius: 1px;
}
body.smallbusinessmonitor #smallbizmonitor .monitoring-section-header .right {
  column-gap: 10px;
}
body.smallbusinessmonitor #smallbizmonitor .monitoring-section-header > * {
  height: 36px;
}
body.smallbusinessmonitor #smallbizmonitor .monitoring-section-add {
  margin-top: 10px;
}
body.smallbusinessmonitor #smallbizmonitor .monitoring-section-add > * {
  margin-bottom: 5px;
}
body.smallbusinessmonitor #smallbizmonitor .faqdetail {
  font-size: 0.875em;
  line-height: 26px;
  padding: 7px;
}
body.smallbusinessmonitor #smallbizmonitor .faqdetail p {
  margin-left: 20px;
}
body.smallbusinessmonitor #smallbizmonitor .faqitem {
  border: 1px solid black;
  border-style: solid;
  border-color: var(--steel);
  padding: 10px;
  color: var(--black);
  font-size: 18px;
  text-align: left;
}
body.smallbusinessmonitor #smallbizmonitor .faqheader {
  border: none;
  outline: none;
  box-shadow: none;
  display: block;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}
body.smallbusinessmonitor #smallbizmonitor .recommended-actions {
  min-height: 20px;
  font-size: 0.875em;
  font-weight: 500;
}
body.smallbusinessmonitor #smallbizmonitor .recommended-action {
  font-size: 0.75em;
  font-weight: 400;
}
body.smallbusinessmonitor #smallbizmonitor .loadingOverlay {
  position: fixed;
  text-align: center;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999999;
  background-color: #000000;
  opacity: 0.8;
}
body.smallbusinessmonitor #smallbizmonitor .loadingOverlay #divThatSaysLoading {
  border-width: 0px;
  position: fixed;
  width: 260px;
  height: 140px;
  padding: 40px;
  background-color: #FFFFFF;
  font-size: 36px;
  left: calc(50% - 130px);
  top: calc(50% - 70px);
}

body.viewsbmalert #smallbizalerts {
  padding: var(--outerPadding);
  color: #394952;
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
}
body.viewsbmalert #smallbizalerts #goBackSection {
  display: flex;
  align-items: center;
  margin: 10px;
}
body.viewsbmalert #smallbizalerts #goBackSection a {
  font-weight: 300;
  font-size: 16px;
  color: var(--black);
}
body.viewsbmalert #smallbizalerts .text-break {
  overflow-wrap: break-word;
}
body.viewsbmalert #smallbizalerts .alertSubtext {
  font-size: 14px;
  font-weight: 600;
}
body.viewsbmalert #smallbizalerts .alertDetailsList {
  display: grid;
  grid-template-columns: auto 1fr;
  flex-direction: row;
  font-size: 18px;
}
body.viewsbmalert #smallbizalerts .alertDetailsList label {
  font-weight: 600;
  color: #0F1F26;
  gap: 8px;
}
body.viewsbmalert #smallbizalerts .alertDetailsList input {
  font-weight: 300;
}
body.viewsbmalert #smallbizalerts .alertDetailsList span {
  border-bottom: 1px solid var(--lightGray);
  padding: 8px 0px 4px 0px;
}
body.viewsbmalert #smallbizalerts .alertDetailsList span:not(.text-break) {
  padding-right: 60px;
}
body.viewsbmalert #smallbizalerts a:has(.material-symbols-outlined):hover, body.viewsbmalert #smallbizalerts a:has(.material-symbols-outlined):active {
  text-decoration: none;
}
body.viewsbmalert #smallbizalerts a:has(.material-symbols-outlined):hover > *, body.viewsbmalert #smallbizalerts a:has(.material-symbols-outlined):active > * {
  text-decoration: underline;
}
body.viewsbmalert #smallbizalerts a:has(.material-symbols-outlined):hover .material-symbols-outlined, body.viewsbmalert #smallbizalerts a:has(.material-symbols-outlined):active .material-symbols-outlined {
  text-decoration: none;
}

#healthAndWellnessPage .top-section {
  margin-bottom: 100px;
}
#healthAndWellnessPage .expandoSection {
  overflow: hidden;
}
#healthAndWellnessPage .expandoSection:hover {
  cursor: pointer;
}
#healthAndWellnessPage .expandoSection .iconSection {
  margin-bottom: 16px;
}
#healthAndWellnessPage .expandoSection .iconSection h6 {
  margin-left: 16px;
  margin-bottom: 0px;
}
#healthAndWellnessPage .expandoSection.expanded {
  margin-bottom: 16px;
}
#healthAndWellnessPage .expandoSection.expanded .add {
  display: none;
}
#healthAndWellnessPage .expandoSection:not(.expanded) .remove {
  display: none;
}
#healthAndWellnessPage .expandoSection .expandoDetails {
  box-sizing: content-box;
  transition: height 1s;
}
#healthAndWellnessPage .expandoSection .expandoDetails > ul, #healthAndWellnessPage .expandoSection .expandoDetails > ol {
  margin-left: 40px;
}
#healthAndWellnessPage .prescriptionDrugSavings {
  flex-direction: column;
}
#healthAndWellnessPage .prescriptionDrugSavings .prescriptionDrugSavingsContainer {
  display: grid;
  padding-left: var(--outerPadding);
  padding-right: var(--outerPadding);
}
#healthAndWellnessPage .prescriptionDrugSavings .prescriptionDrugSavingsContainer h2 {
  margin: 20px;
  grid-row: 1/2;
  grid-column: 1/2;
}
#healthAndWellnessPage .prescriptionDrugSavings .prescriptionDrugSavingsContainer .text {
  margin: 20px;
  grid-row: 2/3;
  grid-column: 1/2;
}
#healthAndWellnessPage .prescriptionDrugSavings .prescriptionDrugSavingsContainer .text > * {
  margin: 20px;
}
#healthAndWellnessPage .prescriptionDrugSavings .prescriptionDrugSavingsContainer .image {
  background-size: cover;
  height: 409px;
  width: 536px;
  grid-column: 2/3;
  grid-row: 1/3;
}
#healthAndWellnessPage .dentalSavings {
  flex-direction: column;
  width: 80%;
}
#healthAndWellnessPage .dentalSavings div:has(> .material-symbols-outlined) {
  background-color: var(--black);
  color: var(--white);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 26px;
  height: 26px;
}
#healthAndWellnessPage .dentalSavings div:has(> .material-symbols-outlined) .material-symbols-outlined {
  font-size: 24px;
}
#healthAndWellnessPage .dentalSavings .dentalTop {
  text-align: center;
  padding: 20px;
  padding-top: var(--sectionSpacing);
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
#healthAndWellnessPage .dentalSavings .howDentalWorks {
  width: 100%;
}
#healthAndWellnessPage .dentalSavings ol li {
  margin-bottom: 5px;
}
#healthAndWellnessPage .dentalSavings ol > li::marker {
  font-size: 1em;
  font-weight: normal;
}
#healthAndWellnessPage .visionSavings {
  margin-top: var(--sectionSpacing);
}
#healthAndWellnessPage .visionSavings .bizSection .imageCell {
  height: 653px;
  max-height: 653px;
  width: 536px;
  max-width: 536px;
}
#healthAndWellnessPage .visionSavings ol li {
  margin-bottom: 5px;
}
#healthAndWellnessPage .visionSavings ol ol {
  list-style-type: lower-alpha;
}
#healthAndWellnessPage .visionSavings ol > li::marker {
  font-size: 1em;
  font-weight: normal;
}
#healthAndWellnessPage .visionSavings .lowPriceGuarantee {
  width: 80%;
  padding-top: var(--sectionSpacing);
}
#healthAndWellnessPage .visionSavings .lowPriceGuarantee .bizSection {
  max-height: 258px;
}
#healthAndWellnessPage .visionSavings .lowPriceGuarantee .bizSection .imageCell {
  height: 258px;
  max-height: 258px;
  width: 336px;
  max-width: 336px;
}
#healthAndWellnessPage .visionSavings .lowPriceGuarantee .bizSection .textCell {
  border: 1px solid var(--black);
  padding: 40px;
}
#healthAndWellnessPage .visionSavings .lowPriceGuarantee .bizSection .textCell .description {
  margin-left: 80px;
}
#healthAndWellnessPage .visionSavings .lowPriceGuarantee .bizSection .textCell .eyeglasses {
  font-size: 64px;
}
#healthAndWellnessPage .disclosureSection { /*inner disclosures*/
  padding-top: 30px;
}
#healthAndWellnessPage > .disclosureSection { /*bottom of page disclosures*/
  padding-top: 50px;
  padding-bottom: 50px;
}
#healthAndWellnessPage li {
  margin-bottom: 8px;
}

body.GetDeals .headerMenu {
  display: none;
}

.findProviders .form-control {
  width: min(80vw, 400px);
}
.findProviders .GridPager a {
  display: block;
  height: 28px;
  width: 30px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: var(--lightGray);
  border: 1px solid #969696;
}
.findProviders .GridPager span {
  display: block;
  height: 28px;
  width: 30px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: var(--lightBg);
  color: var(--black);
  border: 1px solid #3AC0F2;
}

.teleHealthPage > * {
  margin-bottom: var(--sectionSpacing);
}
.teleHealthPage .th-mobile-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 7rem 0;
  padding: 2.5rem 0;
}
.teleHealthPage .th-mobile-info > div {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  font-size: 1.125rem;
}
.teleHealthPage .th-mobile-info > div li::marker {
  font-size: 1.125rem;
  font-weight: 300;
  font-family: monospace;
}
.teleHealthPage .th-mobile-info > div a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.teleHealthPage .th-mobile-info .th-mobile-ui-image {
  height: 632px;
  margin-top: -8.5rem;
  margin-bottom: -15rem;
}
.teleHealthPage .th-mobile-info .th-mobile-store-links {
  display: flex;
  gap: 1rem;
}
.teleHealthPage .th-mobile-info .th-mobile-store-links > * {
  height: 2.5rem;
}
.teleHealthPage .docTegrity {
  text-align: center;
  padding-top: var(--sectionSpacing);
}
.teleHealthPage .docTegrity > * {
  margin-bottom: 20px;
}
.teleHealthPage .docTegrity .thirdParty {
  display: inline-block;
  max-width: 700px;
  font-size: 0.9em;
  color: var(--darkGray);
}

#dataBreachPage {
  display: flex;
  flex-direction: column;
  gap: var(--sectionSpacing);
}
#dataBreachPage .newInsetSection {
  margin: auto;
}
#dataBreachPage .knowledgeTabs {
  width: 100%;
}
#dataBreachPage .knowledgeTabs h2 {
  padding-bottom: 1rem;
  margin-bottom: 3.25rem;
  border-bottom: 2px solid var(--bizSenseSecondary);
  max-width: fit-content;
}
#dataBreachPage .knowledgeTabs .tabButtons {
  display: flex;
  flex-wrap: nowrap;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--lightGray);
}
#dataBreachPage .knowledgeTabs .tabButtons button {
  padding: 7px 25px;
  border: none;
  background-color: var(--white);
  font-weight: 300;
  letter-spacing: 0.015rem;
}
#dataBreachPage .knowledgeTabs .tabButtons button.active, #dataBreachPage .knowledgeTabs .tabButtons button:hover {
  background-color: var(--black);
  color: var(--white);
  font-weight: 700;
}
#dataBreachPage .knowledgeTabs .knowledgeDetails .knowledgeSection {
  margin-top: 2.5rem;
  line-height: 1.75rem;
  display: grid;
  gap: 2rem;
  font-weight: 300;
}
#dataBreachPage .knowledgeTabs .knowledgeDetails .knowledgeSection.db-prepare-grid {
  grid-template-columns: 3fr 2fr;
}
#dataBreachPage .knowledgeTabs .knowledgeDetails .knowledgeSection.db-resolve-grid {
  grid-template-columns: 1fr 1fr;
}
#dataBreachPage .knowledgeTabs .knowledgeDetails .knowledgeSection .db-dark-knowledge-section {
  padding: 2.5rem 3rem;
  background-color: var(--black);
  color: var(--white);
}
#dataBreachPage .knowledgeTabs .knowledgeDetails .knowledgeSection h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#dataBreachPage .knowledgeTabs .knowledgeDetails .knowledgeSection > div {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
#dataBreachPage .knowledgeTabs .knowledgeDetails .knowledgeSection > div:first-child {
  font-size: large;
}
#dataBreachPage .knowledgeTabs .knowledgeDetails .knowledgeSection .db-knowledge-heading-sm {
  font-weight: 600;
  font-size: large;
}
#dataBreachPage .knowledgeTabs .knowledgeDetails .knowledgeSection .db-knowledge-links-container {
  gap: 0;
}
#dataBreachPage .knowledgeTabs .knowledgeDetails .knowledgeSection .db-knowledge-links-container a {
  text-decoration: underline;
  font-weight: 400;
}
#dataBreachPage .knowledgeTabs .knowledgeDetails .knowledgeSection .db-knowledge-links-container .db-knowledge-heading-sm {
  color: var(--black);
}
#dataBreachPage section.dataBreachIcons {
  /*used on DataBreach, LegalServices, AND the class ".teleHealthIcons" */
  /*teleHealthIcons used by: TeleHealth, Cellphone, Accidental Death */
  display: flex;
  flex-wrap: wrap;
  color: var(--darkGray);
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.125rem;
}
#dataBreachPage section.dataBreachIcons > div {
  text-align: center;
  width: min(100%, 26rem);
}
#dataBreachPage section.dataBreachIcons > div div:has(> .material-symbols-outlined) {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  color: var(--white);
  background-color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#dataBreachPage section.dataBreachIcons > div .material-symbols-outlined {
  font-size: 3.5rem;
}
#dataBreachPage section.dataBreachIcons > div .svgIcon { /*the svg*/
  display: inline-block;
  width: 64px;
  height: 64px;
}
#dataBreachPage section.dataBreachIcons div:has(> .material-symbols-outlined) {
  margin-bottom: 10px;
}
#dataBreachPage section.dataBreachIcons .dbs-card-title {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0;
}
#dataBreachPage .ifBreached {
  padding: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
#dataBreachPage .ifBreached h4 {
  margin: 0 auto 1.5rem auto;
  max-width: 25rem;
}

.legalServicesPage .top-section {
  margin-bottom: var(--sectionSpacing);
}
.legalServicesPage .legalServicesSection > :first-child {
  margin-bottom: 48px;
  padding: 16px;
}
.legalServicesPage .legalServicesSection > div {
  display: flex;
  padding: 16px;
  flex-direction: row;
  column-gap: 24px;
}
.legalServicesPage .legalServicesSection .textCell {
  flex: 1 1 50%;
  row-gap: 24px;
}
.legalServicesPage .legalServicesSection .textCell h3 {
  margin-bottom: 24px;
}
.legalServicesPage .legalServicesSection .textCell span:last-child {
  font-size: 0.875em;
  line-height: 2;
}
.legalServicesPage .legalServicesSection .iconsContainer {
  flex: 1 1 50%;
}
.legalServicesPage .legalServicesSection .iconsContainer h6 {
  white-space: pre;
}
.legalServicesPage .legalServicesSection .iconsContainer .iconCell {
  row-gap: 16px;
  justify-content: flex-start;
  /*used on DataBreach, LegalServices, AND the class ".teleHealthIcons" */
  /*teleHealthIcons used by: TeleHealth, Cellphone, Accidental Death */
  display: flex;
  flex-wrap: wrap;
  color: var(--darkGray);
}
.legalServicesPage .legalServicesSection .iconsContainer .iconCell:first-child {
  margin-bottom: 24px;
}
.legalServicesPage .legalServicesSection .iconsContainer .iconCell .legalServicesIcon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 5px !important;
}
.legalServicesPage .legalServicesSection .iconsContainer .iconCell .legalServicesIcon .material-symbols-outlined {
  font-size: 1.5em;
}
.legalServicesPage .legalServicesSection .iconsContainer .iconCell ul {
  text-align: left;
  padding-inline-start: 30px;
  line-height: 1.7;
}
.legalServicesPage .legalServicesSection .iconsContainer .iconCell ul > li::marker {
  font-size: 0.75rem;
}
.legalServicesPage .legalServicesSection .iconsContainer .iconCell > div {
  text-align: center;
  width: min(100%, 26rem);
}
.legalServicesPage .legalServicesSection .iconsContainer .iconCell > div div:has(> .material-symbols-outlined) {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  color: var(--white);
  background-color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.legalServicesPage .legalServicesSection .iconsContainer .iconCell > div .material-symbols-outlined {
  font-size: 3.5rem;
}
.legalServicesPage .legalServicesSection .iconsContainer .iconCell > div .svgIcon { /*the svg*/
  display: inline-block;
  width: 64px;
  height: 64px;
}
.legalServicesPage .needLegalSection {
  display: flex;
  padding: 16px;
  margin-bottom: 100px;
  margin-left: 112px;
  margin-right: 112px;
  border: 1px solid var(--black);
  column-gap: 0px;
}
.legalServicesPage .needLegalSection .needLegalLeft {
  flex: 0 1 71%;
  display: flex;
  padding: 40px;
  flex-direction: column;
  row-gap: 32px;
}
.legalServicesPage .needLegalSection .needLegalLeft .needLegalPhoneSchedule {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-left: 80px;
}
.legalServicesPage .needLegalSection .needLegalLeft .needLegalPhoneSchedule .daysAndTimes .MonFri {
  display: flex;
  column-gap: 16px;
}
.legalServicesPage .needLegalSection .needLegalLeft .needLegalPhoneSchedule b {
  font-weight: 700;
}
.legalServicesPage .needLegalSection .needLegalRight {
  font-size: 1.2em;
  padding: 24px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  flex: 0 1 33%;
}
.legalServicesPage .needLegalSection .needLegalRight .material-symbols-outlined {
  margin-right: 10px;
}
.legalServicesPage .needLegalSection .needLegalRight a {
  color: var(--white);
}
.legalServicesPage .needLegalSection .needLegalRight a:hover {
  color: var(--white);
}
.legalServicesPage hr {
  border-color: var(--ice);
  margin-top: calc(var(--sectionSpacing) / 2);
  margin-bottom: calc(var(--sectionSpacing) / 2);
}
.legalServicesPage .disclosureSection {
  margin-bottom: 60px;
}
.legalServicesPage .disclosureSection > div {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

/* PRIVATE WIFI PAGE */
body.privatewifi .PrivateWifiPage {
  font-weight: 300;
}
body.privatewifi .PrivateWifiPage #bizsense_content > * {
  margin-bottom: var(--sectionSpacing);
}
body.privatewifi .PrivateWifiPage .bs-pw-interface {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface h3 {
  margin-bottom: 0.5rem;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface h6 {
  font-weight: 700;
  font-size: 1.1875rem;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-license-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-license-container .bs-pw-loading-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-license-container .bs-pw-loading-overlay .loadingSpinner {
  height: 2rem;
  width: 2rem;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-license-table {
  width: 100%;
  border: none;
  position: relative;
  color: var(--black);
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-license-table.loading::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
  justify-content: center;
  align-items: center;
  z-index: 9;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-license-table th {
  background-color: var(--neutral-500);
  font-weight: 600;
  border: none;
  border-bottom: 1px solid var(--black);
  height: 2.75rem;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-license-table td {
  border: none;
  border-bottom: 1px solid var(--neutral-100);
  height: 2.75rem;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-license-table .fa-trash-can {
  color: var(--warn);
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-no-data-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-no-data-indicator > p {
  margin: 0;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-control-add {
  max-width: 500px;
}
body.privatewifi .PrivateWifiPage .bs-pw-interface .bs-pw-control-add .bs-pw-control-add-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: var(--sectionSpacing);
  border-top: 1px solid var(--steel);
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection {
  display: flex;
  column-gap: 1.5rem;
  row-gap: 3.5rem;
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .subtitle-1 {
  line-height: 1.6;
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .textCell {
  flex: 1 1 50%;
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .iconsContainer {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .iconsContainer .icon-header {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0 !important;
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .iconsContainer h5 {
  font-weight: 300;
  font-size: 1.5rem;
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .iconsContainer .iconCell {
  row-gap: 24px;
  justify-content: flex-start;
  /*used on DataBreach, LegalServices, AND the class ".teleHealthIcons" */
  /*teleHealthIcons used by: TeleHealth, Cellphone, Accidental Death */
  display: flex;
  flex-wrap: wrap;
  color: var(--darkGray);
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .iconsContainer .iconCell .privateWifiIcon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 5px !important;
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .iconsContainer .iconCell .privateWifiIcon .material-symbols-outlined {
  font-size: 1.5em;
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .iconsContainer .iconCell > div {
  text-align: center;
  width: min(100%, 26rem);
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .iconsContainer .iconCell > div div:has(> .material-symbols-outlined) {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  color: var(--white);
  background-color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .iconsContainer .iconCell > div .material-symbols-outlined {
  font-size: 3.5rem;
}
body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection .iconsContainer .iconCell > div .svgIcon { /*the svg*/
  display: inline-block;
  width: 64px;
  height: 64px;
}
body.privatewifi .PrivateWifiPage .topSection .embeddedSiteMap {
  background-color: var(--white);
}
body.privatewifi .PrivateWifiPage section.darkSection {
  width: 100vw;
  max-width: unset !important;
  padding: 2.5rem 1.5rem;
}
body.privatewifi .PrivateWifiPage section.darkSection a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
body.privatewifi .PrivateWifiPage .pw-instructions {
  max-width: var(--maxWidth);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  font-size: 1.125rem;
}
body.privatewifi .PrivateWifiPage .pw-instructions .subtitle-1 {
  margin: 1rem 0;
}
body.privatewifi .PrivateWifiPage .pw-instructions > div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}
body.privatewifi .PrivateWifiPage .providedBy {
  max-width: 47rem !important;
  text-align: center;
  flex-direction: column;
  display: flex;
  padding-left: 1rem;
  padding-right: 1rem;
}
body.privatewifi .PrivateWifiPage .providedBy .imageContainer {
  margin-bottom: 1.5rem;
}
body.privatewifi .PrivateWifiPage .providedBy .imageContainer p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
body.privatewifi .PrivateWifiPage .providedBy .imageContainer img {
  width: 33%;
  height: auto;
}
body.privatewifi .PrivateWifiPage .providedBy .thirdParty {
  font-size: 0.75rem;
  line-height: 1.275rem;
}

/* IDENTITY THEFT PROTECTION */
.identityTheftPage .newInsetSection {
  margin-bottom: 0px;
}
.identityTheftPage > div:not(:first-child) {
  margin-top: var(--sectionSpacing);
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: var(--maxWidth);
}
.identityTheftPage > div:last-child {
  margin-bottom: var(--sectionSpacing);
}
.identityTheftPage .iconContainer {
  display: flex;
  justify-content: center;
  color: var(--black);
}
.identityTheftPage .bs-pit-section-narrow {
  max-width: 63rem !important;
}
.identityTheftPage .bs-pit-section-disclosure {
  font-size: 0.75rem;
  margin-top: 1.5rem;
}
.identityTheftPage .shadow-div {
  width: 40%;
  max-width: 424px; /* Set the width of the container */
  height: auto; /* Set the height of the container */
  border-radius: 2px;
  box-shadow: 0px 3px 20px 0px rgba(10, 31, 41, 0.05), 0px 1px 10px 0px rgba(10, 31, 41, 0.02);
  margin: 20px; /* Add margin for spacing */
}
.identityTheftPage .shadow-div > div {
  font-size: 1.125rem;
  gap: 0.75rem;
  padding: 16px;
  align-items: flex-start;
}
.identityTheftPage .shadow-div > div span {
  background-color: green;
  color: var(--white);
  margin-top: 0.3rem;
}
.identityTheftPage .flex-container {
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: space-between; /* Space evenly between children */
  gap: 1.5rem;
}
.identityTheftPage .theft-services {
  align-items: flex-start;
  flex-direction: column;
}
.identityTheftPage .left-content {
  flex: 1 1 70%; /* Take up 60% of the container's width */
  padding: 5.5rem 0;
}
.identityTheftPage .bullet-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.identityTheftPage .bullet-list ul li::marker {
  font-size: 12px;
}
.identityTheftPage .right-image {
  flex: 1 1 30%; /* Take up 40% of the container's width */
  background-image: url("/images/businesssense/businesswoman.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  text-align: right; /* Align content to the right */
  min-height: var(--minImageHeight);
  align-self: stretch;
}
.identityTheftPage .programNotes {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  padding: 40px;
  font-size: 1.125rem;
  letter-spacing: 0.01rem;
  font-weight: 300;
}
.identityTheftPage .programNotes > * {
  text-align: center;
  max-width: 510px;
}
.identityTheftPage .programNotes h4 {
  color: var(--white);
  margin-bottom: 1.625rem;
}
.identityTheftPage h2 sup {
  font-size: 60%;
}

/* IDENTITY MONITORING */
body.monitoring #SiteMapPath1 {
  display: none;
}
body.monitoring .idm-main-section {
  max-width: var(--maxWidth);
  margin: auto;
  float: unset;
}
body.monitoring .idm-app-container {
  padding: clamp(1em, 0.5em + 2vw, 2em);
}
body.monitoring .idm-app-container h1, body.monitoring .idm-app-container h2, body.monitoring .idm-app-container h3, body.monitoring .idm-app-container h4, body.monitoring .idm-app-container h5, body.monitoring .idm-app-container h6 {
  margin: 1rem 0;
}

/* PRE AUTH Login.aspx & Register.aspx*/
.newLandingPage {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--sectionSpacing);
}
.newLandingPage .landing_main {
  position: relative;
  width: 100%;
  min-height: 600px;
  margin-bottom: 50px;
  color: var(--black);
  display: grid;
  grid-template-columns: 40fr 62fr;
}
.newLandingPage .landing_main .imageCell {
  min-height: 600px;
}
.newLandingPage .landing_main .textCell {
  margin-right: -100px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  z-index: 200;
  background-color: var(--white);
  padding: 40px 48px;
  row-gap: 24px;
  min-width: 550px;
  min-height: 430px;
}
.newLandingPage .landing_main .textCell hr {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  border-color: var(--steel);
}
.newLandingPage .landing_main .textCell .backButton {
  justify-content: center;
  text-decoration: none;
  padding: 16px 24px 16px 24px;
  color: var(--black);
  font-weight: 600;
}
.newLandingPage .landing_main .textCell .backButton span {
  font-weight: normal;
  font-size: 16px;
  padding: 4px, 0px, 4px, 0px;
}
.newLandingPage .landing_main .textCell .backButton:hover {
  outline: 1px solid var(--lightGray);
}
.newLandingPage .landing_main .textCell a:not(.primary):not(.backButton) {
  text-decoration: underline;
}
.newLandingPage .landing_main .textCell .inputSection {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.newLandingPage .landing_main .roleName {
  font-size: 14px;
}
.newLandingPage .loginSection {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.newLandingPage a {
  cursor: pointer;
}

/* Login.aspx */
.bsModalBackdrop {
  color: var(--darkGray);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 300;
}
.bsModalBackdrop .bsModal {
  position: absolute;
  background-color: var(--white);
  width: min(100%, 400px);
  min-width: var(--minWidth);
  top: calc(40% - 210px);
  left: calc(50% - 200px);
}
.bsModalBackdrop .bsModal .textCell {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 24px;
}
.bsModalBackdrop .bsModal .textCell > div {
  line-height: 1.2;
}
.bsModalBackdrop .bsModal .textCell > :first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bsModalBackdrop .bsModal .textCell > :first-child .closeBtn {
  background-color: transparent;
  border: none;
}
.bsModalBackdrop .bsModal .textCell > :first-child .closeBtn .icon {
  border: 1px solid var(--ice);
}
.bsModalBackdrop .bsModal hr {
  margin-top: 0px;
  margin-bottom: 0px;
}
.bsModalBackdrop .bsModal .bottomButton {
  padding: 16px 24px 16px 24px;
}
.bsModalBackdrop .bsModal .bottomButton button {
  width: 100%;
}
@media (max-width: 600px), (max-height: 600px) {
  .bsModalBackdrop .bsModal {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 20px;
  }
}
.bsModalBackdrop .tel {
  text-decoration: underline;
}
.bsModalBackdrop p {
  margin-bottom: 0.25rem;
}

/* Register.aspx */
.cellphoneclaim {
  /*Help Tip */
  /*Cellphone Buttons*/
}
.cellphoneclaim .icon-scale {
  max-width: 100%;
  max-height: 64px;
  height: 100%;
  margin-top: 18px;
  margin-bottom: 5px;
}
.cellphoneclaim input[type=checkbox] {
  margin-left: -30px !important;
  display: grid;
}
.cellphoneclaim .help-tip {
  position: absolute;
  bottom: 64px;
  right: 18px;
  text-align: center;
  background-color: #BCDBEA;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 26px;
  cursor: default;
}
.cellphoneclaim .help-tip:before {
  content: "?";
  font-weight: bold;
  color: #fff;
}
.cellphoneclaim .help-tip:hover p {
  display: block;
  transform-origin: 100% 0%;
  -webkit-animation: fadeIn 0.3s ease-in-out;
  animation: fadeIn 0.3s ease-in-out;
}
.cellphoneclaim .help-tip p { /* The tooltip */
  display: none;
  text-align: left;
  background-color: #1E2021;
  padding: 20px;
  width: 300px;
  position: absolute;
  z-index: 10;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  right: -4px;
  color: #FFF;
  font-size: 13px;
  line-height: 1.4;
}
.cellphoneclaim .help-tip p:before { /* The pointer of the tooltip */
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom-color: #1E2021;
  right: 10px;
  top: -12px;
}
.cellphoneclaim .help-tip p:after { /* Prevents the tooltip from being hidden */
  width: 100%;
  height: 40px;
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
}
.cellphoneclaim select.error, .cellphoneclaim textarea.error, .cellphoneclaim input.error {
  outline: max(2px, 0.15em) solid red !important;
  outline-offset: max(2px, 0.15em);
  box-shadow: none;
}
.cellphoneclaim select:focus, .cellphoneclaim textarea:focus, .cellphoneclaim input:focus {
  border-color: #2d6cb1 !important;
  outline: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.cellphoneclaim input[type=file]::file-selector-button {
  -webkit-appearance: none;
}
.cellphoneclaim input[type=file]::file-selector-button:hover, .cellphoneclaim input[type=file]::file-selector-button:focus {
  color: #2d6cb1 !important;
  border: 1px solid #2d6cb1;
}
.cellphoneclaim input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin-left: -30px !important;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
.cellphoneclaim input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: currentColor;
}
.cellphoneclaim input[type=checkbox]:checked:before {
  transform: scale(1);
}
.cellphoneclaim input[type=checkbox]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed;
}
.cellphoneclaim label.checkbox {
  margin-left: 20px;
}
.cellphoneclaim a.btn, .cellphoneclaim .btn, .cellphoneclaim a.btn-primary,
.cellphoneclaim .btn-primary, .cellphoneclaim a.btn-secondary,
.cellphoneclaim .btn-secondary, .cellphoneclaim input[type=file]::file-selector-button {
  display: inline-block;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-family: "Open Sans", sans-serif;
  color: #2b2b2b;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  background: #eeeeee;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 300;
}
.cellphoneclaim a.btn-primary,
.cellphoneclaim .btn-primary, .cellphoneclaim input[type=file]::file-selector-button {
  padding: 16px 24px 16px 24px;
  line-height: 1.2em;
  text-transform: none;
  border-radius: 4px;
  color: var(--white);
  background-color: var(--bizSensePrimary);
  border: 2px solid var(--bizSensePrimary);
  font-weight: bold;
  display: inline-block;
  text-align: center;
}
.cellphoneclaim .btn-primary:hover, .cellphoneclaim input[type=file]:hover::file-selector-button,
.cellphoneclaim .btn-primary:focus, .cellphoneclaim input[type=file]:focus::file-selector-button {
  color: #fff !important;
  border: 2px solid var(--buttonHover);
  background: var(--buttonHover);
}
.cellphoneclaim #btnSubmit {
  margin-bottom: 30px;
}
.cellphoneclaim .box2, .cellphoneclaim .box2_rightbar {
  margin: 0px;
  padding: 10px;
  border-radius: 10px;
}
.cellphoneclaim .box2_rightbar {
  margin: 0px;
  padding: 8px;
}
.cellphoneclaim .box2, .cellphoneclaim .box2 p, .cellphoneclaim .box2 label, .cellphoneclaim .box2_rightbar p {
  font-size: 12px;
  color: #555;
}
.cellphoneclaim .box2.halfright {
  width: 670px;
  min-height: 300px;
  float: right;
}
.cellphoneclaim .box2.columnLeft {
  width: 220px;
  margin-right: 2px;
  margin-bottom: 0;
  float: left;
  clear: left;
  padding-left: 10px;
  /*min-height:420px;*/
}
.cellphoneclaim .print {
  background-color: #589209;
  background-image: -moz-linear-gradient(top, #9ACF30 0%, #589209 100%);
  background-image: -o-linear-gradient(top, #9ACF30 0%, #589209 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #9ACF30), color-stop(1, #589209));
  background-image: -webkit-linear-gradient(top, #9ACF30 0%, #589209 100%);
  background-image: -ms-linear-gradient(top, #9ACF30 0%, #589209 100%);
  background-image: linear-gradient(to bottom, #9ACF30 0%, #589209 100%);
  border-color: #427F00;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 15px;
  padding-left: 10px;
  color: #fff;
}
.cellphoneclaim div.box {
  margin-bottom: 40px;
}
.cellphoneclaim .row {
  margin-bottom: 20px;
}
.cellphoneclaim h3 {
  margin-bottom: 10px;
}
.cellphoneclaim h4 {
  margin-bottom: 7px;
}

/*CellPhone.aspx*/
.cellPhonePage .needFileClaim, .accidentaldeath .needFileClaim {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: var(--outerPadding);
  margin-bottom: var(--sectionSpacing);
}

.contactUsPage .contactUsContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: var(--sectionSpacing);
  padding: 50px;
}
.contactUsPage .contactUsContent .material-symbols-outlined {
  font-size: 36px;
}
.contactUsPage .contactUsContent > div {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: flex-start;
}

body.financialwellnessbs .newInsetSection {
  margin-bottom: var(--sectionSpacing);
}

/*(mostly pages with no BizSense-specific version after this) */
body.Error, body.error {
  font-family: Mundial, sans-serif;
}
body.Error h2, body.error h2 {
  font-family: Mundial, sans-serif;
  font-size: 150%;
}
body.Error div.box, body.error div.box {
  padding: 50px;
  display: flex;
  flex-direction: column;
}

body.autoauthmapper label {
  font-weight: normal;
}
body.autoauthmapper .input-group p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
  row-gap: 5px;
}
body.autoauthmapper .input-group p label {
  line-height: 1.2;
  font-weight: bold;
  margin: 0 !important;
}
body.autoauthmapper .main__header {
  display: none;
}
body.autoauthmapper #ctl00_ContentPlaceHolder1_pnlLastFourSsn .col-md-12 {
  padding: 0;
}
body.autoauthmapper .grayBackground {
  background-color: var(--white);
}

body.interim br {
  display: none;
}
body.interim h1, body.interim h2, body.interim p {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0px;
}
body.interim .main__middle__container > * {
  padding: 10px;
}
body.interim .forgotUsernameLink {
  display: none;
}
body.interim .primaryBackground {
  background-color: var(--bizSenseBase);
}
body.interim .primaryBackground * {
  color: var(--white);
}
body.interim .primaryBackground .btn {
  border: 1px solid var(--white);
}

body.ssospentry .container, body.ssospentry .box, body.ssospentry .row, body.ssospentry .col-md-12, body.ssospentry .col-md-8, body.ssospentry .col-md-6, body.ssospentry .col-md-4, body.ssospentry .pin-area, body.ssospentry .continue-container, body.secondarysec .container, body.secondarysec .box, body.secondarysec .row, body.secondarysec .col-md-12, body.secondarysec .col-md-8, body.secondarysec .col-md-6, body.secondarysec .col-md-4, body.secondarysec .pin-area, body.secondarysec .continue-container, body.onboarding .container, body.onboarding .box, body.onboarding .row, body.onboarding .col-md-12, body.onboarding .col-md-8, body.onboarding .col-md-6, body.onboarding .col-md-4, body.onboarding .pin-area, body.onboarding .continue-container {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  background-color: transparent !important;
  max-width: unset !important;
}
body.ssospentry .grayBackground, body.secondarysec .grayBackground, body.onboarding .grayBackground {
  background-color: transparent;
}
body.ssospentry header.main__header, body.secondarysec header.main__header, body.onboarding header.main__header {
  display: none;
}
body.ssospentry .welcome-container, body.secondarysec .welcome-container, body.onboarding .welcome-container {
  margin-bottom: 20px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 600px;
  padding: 16px 48px;
  border: 1px solid var(--lightGray);
}
body.ssospentry .top-area #PrimaryOnlyGreeting, body.secondarysec .top-area #PrimaryOnlyGreeting, body.onboarding .top-area #PrimaryOnlyGreeting {
  display: block;
  font-weight: 500;
}
body.ssospentry .bottom-area, body.ssospentry .pin-area, body.secondarysec .bottom-area, body.secondarysec .pin-area, body.onboarding .bottom-area, body.onboarding .pin-area {
  text-align: left;
}
body.ssospentry .bottom-area .disclaimer-text, body.ssospentry .pin-area .disclaimer-text, body.secondarysec .bottom-area .disclaimer-text, body.secondarysec .pin-area .disclaimer-text, body.onboarding .bottom-area .disclaimer-text, body.onboarding .pin-area .disclaimer-text {
  text-align: center;
  font-size: 12px;
}
body.ssospentry .bottom-area, body.ssospentry .top-area, body.ssospentry .pin-area, body.secondarysec .bottom-area, body.secondarysec .top-area, body.secondarysec .pin-area, body.onboarding .bottom-area, body.onboarding .top-area, body.onboarding .pin-area {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
body.ssospentry p, body.secondarysec p, body.onboarding p {
  margin-top: 0px;
  margin-bottom: 0px;
}
body.ssospentry .btn, body.secondarysec .btn, body.onboarding .btn {
  margin-bottom: 10px;
  text-transform: uppercase;
  width: 100%;
}
body.ssospentry h2, body.secondarysec h2, body.onboarding h2 {
  font-size: 24px;
  color: var(--bizSensePrimary);
}

body.secondarysec {
  /* additional overrides to overcome SSOEntryStyles.css */
}
body.secondarysec .container .welcome-container .top-area h1.welcome-text {
  font-size: clamp(2.375rem, 2.042rem + 1.667vw, 3.5rem) !important; /* from typeography.scss:h1 */
}

body.onboarding .welcome-container .disclosures {
  text-align: left;
}
body.onboarding .welcome-container .disclosures > p {
  margin-bottom: 10px;
}
body.onboarding .welcome-container .acceptTerms {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 5px;
  justify-content: center;
}
body.onboarding .welcome-container .acceptTerms input[type=checkbox] {
  transform: scale(1.5);
}

body.setpassword .main__middle__container, body.setpin .main__middle__container {
  margin-bottom: 20px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 550px;
  border: 1px solid var(--lightGray);
  padding: 16px 48px;
}
body.setpassword .main__middle__container .container, body.setpassword .main__middle__container .box, body.setpassword .main__middle__container .row, body.setpassword .main__middle__container .col-md-12, body.setpassword .main__middle__container .col-md-8, body.setpassword .main__middle__container .col-md-6, body.setpassword .main__middle__container .col-md-4, body.setpin .main__middle__container .container, body.setpin .main__middle__container .box, body.setpin .main__middle__container .row, body.setpin .main__middle__container .col-md-12, body.setpin .main__middle__container .col-md-8, body.setpin .main__middle__container .col-md-6, body.setpin .main__middle__container .col-md-4 {
  width: 100%;
  padding: 0;
  margin: 0;
  float: none;
}
body.setpassword .main__middle__container .row, body.setpin .main__middle__container .row {
  display: flex;
  flex-direction: column;
}
body.setpassword .main__middle__container .row .col-md-6, body.setpin .main__middle__container .row .col-md-6 {
  width: 100%;
}
body.setpassword .main__middle__container h1, body.setpin .main__middle__container h1 {
  text-align: center;
}
body.setpassword .main__middle__container .infoLabel, body.setpin .main__middle__container .infoLabel {
  margin-top: 30px;
  margin-bottom: 30px;
  color: var(--darkGray);
  text-align: center;
}
body.setpassword .main__middle__container .infoLabel label, body.setpin .main__middle__container .infoLabel label {
  font-weight: 400;
}
body.setpassword .main__header, body.setpin .main__header {
  display: none;
}
body.setpassword label, body.setpin label {
  font-size: 1rem !important;
  font-weight: 600;
}
body.setpassword .grayBackground, body.setpin .grayBackground {
  background-color: var(--white);
}
body.setpassword .btn, body.setpin .btn {
  margin-top: 24px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body.socialmediamonitoring {
  /*
      eclub page, styles come from external url (https://lively-cliff-0fb296610.3.azurestaticapps.net/style.css)
  */
}
body.socialmediamonitoring div.box {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--maxWidth);
  padding: 10px;
}
body.socialmediamonitoring div.box .container {
  width: auto;
}
body.socialmediamonitoring div.box ._rowCol_slznw_35 {
  gap: 5px;
  padding: var(--outerPadding);
  margin-bottom: 1em;
  border-radius: 10px;
}
@media (width <= 700px) {
  body.socialmediamonitoring div.box ._rowCol_slznw_35 {
    background-color: var(--ice);
  }
}
body.socialmediamonitoring div.box .cardIcon {
  margin-right: 0 !important;
}
body.socialmediamonitoring div.box ._container_slznw_13 {
  margin: 0 !important;
}

body.messagecenter header.main__header {
  display: none;
}

body.accidentaldeath .accidentalDeathPage, body.accidentaldeath .accidentalDeathFamilyPage, body.accidentaldeathbs .accidentalDeathPage, body.accidentaldeathbs .accidentalDeathFamilyPage, body.accidentaldeathfamily .accidentalDeathPage, body.accidentaldeathfamily .accidentalDeathFamilyPage {
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
}
body.accidentaldeath .accidentalDeathPage .programNotes, body.accidentaldeath .accidentalDeathFamilyPage .programNotes, body.accidentaldeathbs .accidentalDeathPage .programNotes, body.accidentaldeathbs .accidentalDeathFamilyPage .programNotes, body.accidentaldeathfamily .accidentalDeathPage .programNotes, body.accidentaldeathfamily .accidentalDeathFamilyPage .programNotes {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  padding: 40px;
  font-size: 1.125rem;
  letter-spacing: 0.01rem;
  font-weight: 300;
}
body.accidentaldeath .accidentalDeathPage .programNotes > *, body.accidentaldeath .accidentalDeathFamilyPage .programNotes > *, body.accidentaldeathbs .accidentalDeathPage .programNotes > *, body.accidentaldeathbs .accidentalDeathFamilyPage .programNotes > *, body.accidentaldeathfamily .accidentalDeathPage .programNotes > *, body.accidentaldeathfamily .accidentalDeathFamilyPage .programNotes > * {
  text-align: center;
  max-width: 510px;
}
body.accidentaldeath .accidentalDeathPage .programNotes h4, body.accidentaldeath .accidentalDeathFamilyPage .programNotes h4, body.accidentaldeathbs .accidentalDeathPage .programNotes h4, body.accidentaldeathbs .accidentalDeathFamilyPage .programNotes h4, body.accidentaldeathfamily .accidentalDeathPage .programNotes h4, body.accidentaldeathfamily .accidentalDeathFamilyPage .programNotes h4 {
  color: var(--white);
  margin-bottom: 1.625rem;
}
body.accidentaldeath .accidentalDeathPage .disclosureSection, body.accidentaldeath .accidentalDeathFamilyPage .disclosureSection, body.accidentaldeathbs .accidentalDeathPage .disclosureSection, body.accidentaldeathbs .accidentalDeathFamilyPage .disclosureSection, body.accidentaldeathfamily .accidentalDeathPage .disclosureSection, body.accidentaldeathfamily .accidentalDeathFamilyPage .disclosureSection {
  margin-bottom: 5rem;
}

/*Credit Monitoring overrides: in general, these pages are not really kitted out for BizSense*/
body.checkprofile .main__middle__container div.box,
body.creditreportview .main__middle__container div.box,
body.creditreportviewtu .main__middle__container div.box,
body.creditreportviewefx .main__middle__container div.box {
  text-align: center;
}
body.checkprofile .main__middle__container div.box h1, body.checkprofile .main__middle__container p,
body.creditreportview .main__middle__container div.box h1,
body.creditreportview .main__middle__container p,
body.creditreportviewtu .main__middle__container div.box h1,
body.creditreportviewtu .main__middle__container p,
body.creditreportviewefx .main__middle__container div.box h1,
body.creditreportviewefx .main__middle__container p {
  text-align: left;
}

body.dashboard .main-content {
  max-width: var(--maxWidth);
  margin: auto;
  float: unset;
}
body.dashboard .main-content h1 {
  margin: 1rem;
  margin-left: 0 !important;
}
body.dashboard .main-content .divReport {
  margin-left: clamp(0rem, 100vw - 900px, 1.5rem) !important;
}
body.dashboard .cm-monitoring-actions p {
  margin-top: 1rem;
}

body.dashboardtu [id$=pnlCFM] h3 {
  margin-bottom: 10px;
}

body.creditreportview .box,
body.viewalerts .box {
  max-width: var(--maxWidth);
  margin: auto;
  margin-left: auto !important;
}
body.creditreportview .box h1,
body.viewalerts .box h1 {
  margin: 1rem;
  margin-left: 0 !important;
}

/*MISCELLANEOUS*/
.defaultSiteMap {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: var(--outerPadding);
  border-top: 1px solid var(--ice);
  border-bottom: 1px solid var(--ice);
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}
.defaultSiteMap a {
  text-decoration: underline;
}

.eclubSiteMap {
  display: none;
}

.disclosureSection,
#bizsense_content > .disclosureSection {
  color: var(--black);
  font-size: 12px;
  line-height: 20.4px;
  max-width: 872px;
  padding-left: 20px;
  padding-right: 20px;
}
.disclosureSection > *,
#bizsense_content > .disclosureSection > * {
  margin: 5px;
  margin-bottom: 10px;
}

.disclosure-entry {
  display: flex;
  gap: 1rem;
}

sup.disclosure-symbol {
  font-size: 0.5em !important;
  vertical-align: super;
  top: unset;
}

.bs-benefit-card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bs-notification-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-grow: 1;
  background: var(--color-info-background);
  border: 1px solid var(--color-info-border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--color-info-text);
}
.bs-notification-banner.warning {
  background: var(--color-warning-background);
  border: 1px solid var(--color-warning-border);
  color: var(--warn);
}
.bs-notification-banner.moderate {
  background-color: var(--moderate50);
  border: 1px solid var(--moderate200);
  color: var(--moderate800);
}
.bs-notification-banner p {
  flex-grow: 1;
  margin: 0;
}

.loadingSpinner {
  display: inline-block;
  position: relative;
  top: 0.5rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--color-info-text);
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}

ol > li::marker {
  font-weight: bold;
  font-size: 1.75rem;
}

a, .tel {
  color: var(--bizSenseBase);
}
a:not([name]), .tel:not([name]) {
  font-weight: 400;
}
a :visited, .tel :visited {
  color: var(--linkVisited);
}

/* HEADER system (dynamic font sizing for larger text elements)*/
h1, h2, h3, h4, h5, h6, .subtitle-1 {
  display: block;
  font-family: inherit;
  margin: 0;
  padding: 0;
  color: var(--black);
  line-height: 1.2;
}

/*screen width parameters are 320px to 1440px (we vary the font size throughout our min/max width*/
/*min/max font-sizes from Figma*/
/*the resulting clamp rules can be calculated using any clamp calculator, note we are using em units */
/* note: for purely semantically correct HTML, use header tags in order 1-2-3-4 but class them with the included .hN style class, like so: <h3 class="h2"></h3> */
h1.hero, .hero {
  font-size: 4.9rem;
  font-size: clamp(2.625rem, 1.94rem + 3.426vw, 4.938rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h1, .h1 {
  font-size: 3.5rem;
  font-size: clamp(2.375rem, 2.042rem + 1.667vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h2, .h2 {
  font-size: 3.25rem;
  font-size: clamp(2.25rem, 1.954rem + 1.481vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}
h2 a, .h2 a {
  color: var(--bizSensePrimary);
}
h2 a:hover, .h2 a:hover {
  color: var(--black);
}

h3, .h3 {
  font-size: 2.25rem;
  font-size: clamp(1.75rem, 1.602rem + 0.741vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.subtitle-1 {
  /*bigger size, but lighter weight subtitles*/
  font-size: 2.125rem;
  font-size: clamp(1.375rem, 1.153rem + 1.111vw, 2.125rem);
  font-weight: 200;
  color: var(--darkGray);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

h4, .h4 {
  font-size: 1.75rem;
  font-size: clamp(1.5rem, 1.426rem + 0.37vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h5, .h5 {
  font-size: 1.5rem;
  font-size: clamp(1.313rem, 1.257rem + 0.278vw, 1.5rem);
  font-weight: 300;
}

h6, .h6 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brandedSubHeader {
  color: var(--bizSensePrimary);
  font-size: min(40px, 8vw);
}

.highlightText {
  color: var(--bizSensePrimary);
}

.MessageHandlerBox .MessageHandlerBox[style*="display:inline"] {
  display: inline-block !important;
  margin-bottom: 10px;
}
.MessageHandlerBox.Red {
  color: var(--warn);
  background-color: transparent;
}
.MessageHandlerBox.Green {
  color: var(--success);
}

/* font variations */
.larger, .body-0 {
  font-size: 18px;
  line-height: 27.2px;
  letter-spacing: 0.01em;
}

.smaller, .body-2 {
  font-size: 14px;
  line-height: 27.2px;
  letter-spacing: 0.01em;
}

.smallest {
  font-size: 12px;
  line-height: 20.4px;
  letter-spacing: 0.02em;
}

.bold {
  font-weight: 600;
  color: var(--black);
}

sup {
  font-size: 0.5em;
  top: -0.7em;
}

button.primary, a.primary, .btn-primary {
  padding: 16px 24px 16px 24px;
  line-height: 1.2em;
  text-transform: none;
  border-radius: 4px;
  color: var(--white);
  background-color: var(--bizSensePrimary);
  border: 2px solid var(--bizSensePrimary);
  font-weight: bold;
  display: inline-block;
  text-align: center;
}
button.primary:hover, a.primary:hover, .btn-primary:hover {
  text-decoration: none;
  background-color: var(--buttonHover);
}
button.primary.warning, a.primary.warning, .btn-primary.warning {
  background-color: var(--warn);
  border: none;
}
button.primary.warning:hover, a.primary.warning:hover, .btn-primary.warning:hover {
  text-decoration: none;
  filter: brightness(0.85);
}
button.primary.info, a.primary.info, .btn-primary.info {
  background-color: var(--color-info);
  border-color: var(--color-info);
}
button.primary.btn-sm, a.primary.btn-sm, .btn-primary.btn-sm {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 0.875rem;
  padding: 10px 16px;
}
button.primary.btn-neutral, a.primary.btn-neutral, .btn-primary.btn-neutral {
  background-color: var(--neutral-700);
  border-color: var(--neutral-700);
}

input[type=button].primary, input[type=submit].primary {
  padding: 16px 24px 16px 24px;
  line-height: 1.2em;
  text-transform: none;
  border-radius: 4px;
  color: var(--white);
  background-color: var(--bizSensePrimary);
  border: 2px solid var(--bizSensePrimary);
  font-weight: bold;
}
input[type=button].primary:hover, input[type=submit].primary:hover {
  background-color: var(--buttonHover);
}

button.outlined, a.outlined {
  /*use in concert with .primary*/
  background-color: var(--white);
  border-color: var(--black);
  color: var(--black);
  display: inline-block;
}
button.outlined:hover, a.outlined:hover {
  text-decoration: none;
  color: var(--white);
  background-color: var(--black);
}
button.outlined.btn-sm, a.outlined.btn-sm {
  border: 1px solid var(--black);
}
button.outlined.accent, a.outlined.accent {
  border: 1px solid var(--bizSensePrimary);
  color: var(--bizSensePrimary);
}
button.outlined.accent:hover, a.outlined.accent:hover {
  text-decoration: none;
  color: var(--white);
  background-color: var(--bizSensePrimary);
}

input[type=button].outlined, input[type=submit].outlined {
  background-color: var(--white);
  border-color: var(--black);
  color: var(--black);
}
input[type=button].outlined:hover, input[type=submit].outlined:hover {
  text-decoration: none;
  color: var(--white);
  background-color: var(--black);
}

.modal .modal-header {
  border: none;
  padding-bottom: 0;
}
.modal .modal-body {
  font-weight: 300;
}
.modal .modal-footer {
  display: flex;
}
.modal .modal-footer > * {
  flex-grow: 1;
}

.form-select,
.form-control {
  border-radius: 0;
  border: 1px solid var(--steel);
  height: 2.75rem;
  padding: 0.5rem 0.75rem;
}
.form-select::placeholder,
.form-control::placeholder {
  color: var(--fadeGray);
}
.form-select:hover, .form-select:focus,
.form-control:hover,
.form-control:focus {
  border: 1px solid var(--color-info);
  box-shadow: 0 0 0 1px var(--color-info);
}

input[type=checkbox]:checked {
  accent-color: var(--color-info);
}

/*input:invalid {
    border: 1px solid var(--warn);
    box-shadow: 0 0 0 1px var(--warn);
}

input[type=checkbox]:invalid {
    box-shadow: none;
}*/
.form-label {
  color: var(--black);
  font-weight: 600;
}

.form-control-error-msg {
  color: var(--warn) !important;
  font-weight: 300;
  font-size: 0.875rem;
}

.checkbox-group .form-label {
  font-weight: 300;
}

/* General screen-width MEDIA QUERIES*/
@media (width >= 1368px) { /* 1320 (minwidth) + 24*2 (outer padding) */
  .navbar {
    display: none;
  }
}
/*MOBILE LAYOUT MODE THIS AND UNDER*/
@media (width < 1368px) {
  .BorderEffect:after {
    width: 0;
    height: 0;
  }
  .newInsetSection:not(.top-section) {
    min-height: auto;
  }
  .newInsetSection:not(.top-section) .imageCell {
    width: 600px;
    min-height: var(--minSectionHeight);
  }
  .newInsetSection:not(.top-section) .textCell {
    width: 80%;
  }
  .newInsetSection:not(.top-section) .textCell button {
    width: min(500px, 100%);
  }
  /* general top sections of pages 'compact mode'*/
  .top-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: initial;
  }
  .top-section .primary.outlined {
    color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
  }
  .top-section .primary.outlined:hover {
    color: var(--black);
    background-color: var(--white);
  }
  .top-section .top-section-buttons {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
  }
  .top-section .top-section-buttons > * {
    width: min(500px, 100%);
    white-space: normal;
  }
  .top-section .imageCell {
    display: none;
  }
  .top-section .textCell {
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
    min-height: initial;
    padding-bottom: var(--sectionSpacing);
    background-color: var(--darkTint);
    position: static;
    width: 100%;
  }
  .top-section .textCell > * {
    /*tablet mode (which is compact mode) rule that prevents super long text labels*/
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-section .textCell h1, .top-section .textCell h2, .top-section .textCell h3, .top-section .textCell h4, .top-section .textCell h5, .top-section .textCell h6, .top-section .textCell .subtitle-1 {
    color: var(--white);
  }
  .top-section a:not(.primary) {
    filter: brightness(150%);
  }
  .top-section a:not(.primary):hover {
    color: var(--white);
  }
  .top-section .embeddedSiteMap {
    background-color: var(--darkTint);
  }
  #bizsenseRegistrationGrid {
    margin: 1rem;
    grid-template-columns: 1fr;
  }
  #bizsenseRegistrationGrid .bs-registration-form {
    order: 2;
  }
  #bizSenseHome {
    padding: 0;
  }
  #bizSenseHome a.benefitLink, #bizSenseHome #HomeEmployeeSection .employeeBenefitsList a.benefitLink {
    max-width: none;
  }
  #bizSenseHome > section:first-child {
    margin-bottom: 0;
  }
  #bizSenseHome .top-section {
    background-image: url(/images/businesssense/woman-home-office.jpg);
    background-position: 50% 50%;
    height: auto;
  }
  #bizSenseHome .top-section .textCell {
    padding-bottom: 170px;
    padding-right: var(--outerPadding);
    padding-left: var(--outerPadding);
  }
  #bizSenseHome .top-section .dualImageContainer {
    display: none;
  }
  #bizSenseHome .top-section .welcomePackageButtonGroup {
    font-size: 85%;
  }
  #bizSenseHome #BusinessBenefits, #bizSenseHome #OwnerBenefits, #bizSenseHome #EmployeeBenefits {
    padding: 1.25rem 1.5rem;
  }
  #bizSenseHome .customInsetSection .textCell {
    width: 90%;
  }
  #bizSenseHome #HomeBusinessSection .imageCell {
    display: none;
  }
  #bizSenseHome #HomeBusinessSection .textCell {
    margin-top: -80px;
    position: static;
    padding: 25px 40px;
  }
  #bizSenseHome #HomeOwnerSection {
    display: flex;
    flex-direction: column;
  }
  #bizSenseHome #HomeOwnerSection .imageCell {
    top: 0;
    left: 0;
    width: 100%;
    height: 270px;
    min-height: min-content;
    position: static;
    background-position: 50% 20%;
  }
  #bizSenseHome #HomeOwnerSection .textCell {
    margin-top: -80px;
    top: 190px;
    left: 0;
    position: static;
    padding: 25px 40px;
  }
  #bizSenseHome #HomeEmployeeSection {
    display: flex;
    flex-direction: column;
  }
  #bizSenseHome #HomeEmployeeSection .BorderEffect:after {
    width: 0;
    height: 0;
  }
  #bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc {
    width: 100%;
    padding-left: 0px;
    margin-left: 0px;
  }
  #bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
  }
  #bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection .imageCell {
    flex: 0 1 auto;
  }
  #bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection .imageCell .largeButtons {
    /*button that we are hiding on small*/
    display: none;
  }
  #bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection .imageCell .backgroundImage {
    /*that actuall image cell*/
    flex: 1 1 auto;
  }
  #bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection .textCell {
    background-color: var(--white);
    width: 90%;
    margin-top: -80px;
    padding: 25px 40px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  #bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection .textCell .smallButtons {
    display: flex;
  }
  #bizSenseHome #HomeEmployeeSection .employeeBenefitsDesc .twoCellSection .textCell .smallButtons button {
    width: min(500px, 100%);
  }
  #benefitsForBusiness .top-section {
    background-image: url(/images/businesssense/for-the-business.jpg);
    background-position: 50% 50%;
  }
  #benefitsForOwner .top-section {
    background-image: url(/images/businesssense/for-the-business-owner.jpg);
  }
  #BenefitsList {
    padding: 0px;
  }
  #BenefitsList .newBenefitSection {
    flex-direction: column;
    margin-bottom: 20px;
  }
  #BenefitsList .newBenefitSection .imageCell {
    flex: 0 0 233px;
  }
  #employeeBenefitsPage .top-section {
    background-image: url(/images/businesssense/for-the-employee.jpg);
  }
  #employeeBenefitsPage #EmployeeBenefitsSection {
    padding-left: 5px;
    padding-right: 5px;
    flex-direction: column;
  }
  #employeeBenefitsPage #EmployeeBenefitsSection .newEmployeeBenefitSection {
    width: 100%;
  }
  #dataBreachPage .top-section {
    background-image: url(/images/businesssense/data-breach-solutions.jpg);
  }
  #dataBreachPage .knowledgeTabs > *:not(.tabButtons) {
    padding: 0 var(--outerPadding);
  }
  #dataBreachPage .knowledgeTabs .knowledgeSection {
    grid-template-columns: 1fr !important;
  }
  .teleHealthPage .top-section {
    background-image: url(/images/businesssense/teleHealthDoctor.jpg);
  }
  .cellPhonePage .top-section {
    background-image: url("/images/businesssense/CellphoneProtection.jpg");
  }
  #healthAndWellnessPage {
    flex-direction: column;
  }
  #healthAndWellnessPage .top-section {
    background-image: url(/images/businesssense/health-discount-savings.jpg);
  }
  #healthAndWellnessPage .imageCell {
    min-height: 300px;
  }
  #healthAndWellnessPage .prescriptionDrugSavings .prescriptionDrugSavingsContainer h2 {
    grid-row: 1/2;
    grid-column: 1/2;
  }
  #healthAndWellnessPage .prescriptionDrugSavings .prescriptionDrugSavingsContainer .text {
    grid-row: 2/3;
    grid-column: 1/3;
  }
  #healthAndWellnessPage .prescriptionDrugSavings .prescriptionDrugSavingsContainer .image {
    height: 200px;
    width: 300px;
    grid-column: 2/3;
    grid-row: 1/2;
  }
  #healthAndWellnessPage .dentalSavings .howDentalWorks {
    flex-direction: column-reverse;
  }
  #healthAndWellnessPage .visionSavings .visionSavingsTop .imageCell {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: unset;
    min-height: 200px;
  }
  #healthAndWellnessPage .visionSavings .lowPriceGuarantee .bizSection {
    flex-direction: column-reverse;
    max-height: unset;
  }
  #healthAndWellnessPage .visionSavings .lowPriceGuarantee .bizSection .imageCell {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: unset;
  }
  /*map.aspx*/
  .findProviders .top-section {
    background-image: url("/images/businesssense/find-providers.jpg");
  }
  .legalServicesPage .top-section {
    background-image: url(/images/businesssense/legal_services.jpg);
  }
  .legalServicesPage .needLegalSection {
    margin-left: 10%;
    margin-right: 10%;
  }
  .legalServicesPage .needLegalSection .needLegalLeft .needLegalPhoneSchedule .daysAndTimes .MonFri {
    flex-direction: column;
  }
  .PrivateWifiPage .top-section {
    background-image: url(/images/businesssense/privateWifi.jpg);
  }
  .PrivateWifiPage .newInsetSection {
    padding-left: 0px;
    padding-right: 0px;
  }
  .identityTheftPage .image-container {
    flex-direction: column-reverse;
  }
  .identityTheftPage .image-container .left-content {
    flex: 1 1 auto;
    width: 100%;
  }
  .identityTheftPage .image-container .right-image {
    flex: 1 1 100%;
    width: 100%;
    text-align: right; /* Align content to the right */
    min-height: 370px;
  }
  .identityTheftPage .shadow-div {
    width: 80%;
  }
  .identityTheftPage .top-section {
    background-image: url(/images/businesssense/identity-theft-protection.jpg);
  }
  .identityTheftPage .newInsetSection {
    padding-left: 0px;
    padding-right: 0px;
  }
  .shoppingRewardsPage .top-section {
    background-image: url(/images/businesssense/Shopping_Benefit.jpg);
  }
  .accidentalDeathPage .top-section {
    background-image: url(/images/businesssense/accidental-death.jpg);
  }
  #content_header_menu img {
    width: 120px;
  }
  .navbar {
    display: none;
  }
  .buttonGroup {
    justify-content: center;
  }
  #BS_footer .footerNav {
    column-gap: 20px;
  }
  #BS_footer > section {
    flex-direction: column;
    align-items: center;
  }
  .teleHealthIcons {
    margin-bottom: 0;
  }
  .teleHealthPage .th-mobile-info {
    padding: 2.5rem 1.5rem;
    margin: 0;
  }
  .teleHealthPage .th-mobile-info > img {
    display: none;
  }
  body.privatewifi .PrivateWifiPage .pw-instructions {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contactUsPage .contactUsContent {
    align-items: center;
    padding: var(--outerPadding);
  }
  .contactUsPage .top-section {
    background-image: url("/images/businesssense/contact_us.png");
  }
  body.financialwellnessbs .top-section {
    background-image: url("/images/businesssense/financial-wellness.jpg");
  }
  /* MISCELLANEOUS */
  body.accidentaldeath .embeddedSiteMap, body.telehealth .embeddedSiteMap, body.identitytheftresolutionemp .embeddedSiteMap, body.shoppingrewards .embeddedSiteMap, body.benefitsforemployee .embeddedSiteMap, body.databreach .embeddedSiteMap, body.benefitsforbusiness .embeddedSiteMap, body.benefitsforowner .embeddedSiteMap, body.benefitsforemployee .embeddedSiteMap, body.legalservices .embeddedSiteMap, body.cellphone .embeddedSiteMap, body.identitytheftresolution .embeddedSiteMap, body.privatewifi .embeddedSiteMap, body.healthandwellness .embeddedSiteMap, body.map .embeddedSiteMap, body.contactus .embeddedSiteMap, body.financialwellnessbs .embeddedSiteMap {
    display: none;
  }
  body.accidentaldeath .defaultSiteMap, body.telehealth .defaultSiteMap, body.identitytheftresolutionemp .defaultSiteMap, body.shoppingrewards .defaultSiteMap, body.benefitsforemployee .defaultSiteMap, body.databreach .defaultSiteMap, body.benefitsforbusiness .defaultSiteMap, body.benefitsforowner .defaultSiteMap, body.benefitsforemployee .defaultSiteMap, body.legalservices .defaultSiteMap, body.cellphone .defaultSiteMap, body.identitytheftresolution .defaultSiteMap, body.privatewifi .defaultSiteMap, body.healthandwellness .defaultSiteMap, body.map .defaultSiteMap, body.contactus .defaultSiteMap, body.financialwellnessbs .defaultSiteMap {
    display: block;
  }
  #BS_basic_header {
    width: 100%;
    background-color: var(--white);
    padding: 10px;
    padding-left: var(--outerPadding);
    padding-right: var(--outerPadding);
  }
  #BS_basic_header #hamburger_button {
    display: flex;
  }
  #BS_basic_header.fullScreen {
    display: block;
    flex-direction: column;
    height: 100%;
    width: 100%;
    font-size: 1.1em;
  }
  #BS_basic_header.fullScreen #hamburger_button {
    display: none;
  }
  #BS_basic_header.fullScreen #main_menu_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10vh;
  }
  #BS_basic_header.fullScreen #main_menu_container #basicSignInLinks {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  #BS_basic_header #main_menu_container #basicSignInLinks {
    display: none;
  }
  #BS_logged_in_header {
    width: 100%;
    background-color: var(--white);
    padding-left: var(--outerPadding);
    padding-right: var(--outerPadding);
  }
  #BS_logged_in_header .accountAndIcons #hamburger_button {
    display: flex;
  }
  #BS_logged_in_header.fullScreen {
    display: block;
    height: 100%;
    width: 100%;
  }
  #BS_logged_in_header.fullScreen .accountAndIcons #hamburger_button {
    display: none;
  }
  #BS_logged_in_header.fullScreen #main_menu_container {
    flex-wrap: wrap;
  }
  #BS_logged_in_header.fullScreen #main_menu_container div.accountAndIcons #BS_account_menu {
    position: static;
    display: flex !important;
  }
  #BS_logged_in_header.fullScreen #main_menu_container #BS_header_links {
    display: block;
  }
  #BS_logged_in_header .iconsForLarge {
    display: none;
  }
  #BS_logged_in_header #main_menu_container {
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
  }
  #BS_logged_in_header #main_menu_container #BS_header_links {
    display: none;
    /*PURE CSS MENU, SMALL REDUX*/
  }
  #BS_logged_in_header #main_menu_container #BS_header_links .arrow_drop_down {
    display: none;
  }
  #BS_logged_in_header #main_menu_container #BS_header_links > ul {
    flex-direction: column;
  }
  #BS_logged_in_header #main_menu_container #BS_header_links > ul a:hover {
    text-decoration: underline;
  }
  #BS_logged_in_header #main_menu_container #BS_header_links > ul > li:has(a.active) { /*active 'section' menus: biz/owner/emp */
    background-color: var(--lightBg);
  }
  #BS_logged_in_header #main_menu_container #BS_header_links > ul > li { /*the 'section' menus: biz/owner/emp */
    border-bottom: none !important;
    display: list-item;
    height: auto;
  }
  #BS_logged_in_header #main_menu_container #BS_header_links > ul > li:has(a.active) {
    border-bottom: none;
  }
  #BS_logged_in_header #main_menu_container #BS_header_links > ul > li:hover {
    backdrop-filter: none;
    border-bottom: none !important;
  }
  #BS_logged_in_header #main_menu_container #BS_header_links > ul > li:hover ul:before {
    width: 0px;
    height: 0px; /*DO NOT CAUSE SHIFT DOWN EFFECT WHEN IN SMALL MODE*/
  }
  #BS_logged_in_header #main_menu_container #BS_header_links > ul li { /* (ALL LI'S) */ }
  #BS_logged_in_header #main_menu_container #BS_header_links > ul li ul { /* (sub-level menus) */
    border: none;
    width: auto;
    position: static;
    overflow: hidden;
    display: block;
    /* SUBLEVEL LI'S (leaf nodes)*/
  }
  #BS_logged_in_header #main_menu_container div.accountAndIcons #BS_account_menu {
    border: none;
  }
  #BS_logged_in_header div.alert-widget-close-btn {
    display: none;
  }
  .defaultSiteMap {
    padding-left: var(--outerPadding);
  }
  .mobileRibbon {
    height: auto;
    flex-direction: column;
    align-items: center;
  }
  .mobileRibbon .imageCell img {
    margin-top: -80px;
    width: 244px;
    height: 244px;
  }
  .mobileRibbon .textCell {
    padding: 20px;
    text-align: center;
  }
  .mobileRibbon .appBadges {
    justify-content: center;
  }
}
@media (width <= 768px) {
  body {
    padding-left: 0;
    padding-right: 0;
  }
  body.default .BizSenseSection .contentSection {
    flex-direction: column;
    align-items: center;
  }
  .mobileRibbon {
    flex-direction: column;
    align-items: center;
  }
  .mobileRibbon .imageCell img {
    width: 244px;
  }
  .top-section {
    flex-direction: column;
    background-position: 50% 50%;
  }
  .top-section .imageCell {
    min-height: var(--minImageHeight);
  }
  .top-section .textCell {
    padding-left: 20px;
    padding-right: 20px;
  }
  .newInsetSection .textCell {
    row-gap: 40px;
  }
  .newInsetSection:not(.top-section) .textCell {
    width: 90%;
  }
  #BenefitsList .newBenefitSection .textCell {
    padding: 2rem;
  }
  #BenefitsList .newBenefitSection .bs-benefit-card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .benefitsList {
    grid-template-columns: 1fr;
  }
  #bizSenseHome {
    padding: 0;
  }
  #bizsense_welcomepackage .primary {
    width: 100%;
  }
  #BS_logged_in_header #main_menu_container {
    align-items: center;
    flex-direction: column-reverse;
  }
  #BS_logged_in_header #main_menu_container div.accountAndIcons {
    width: 100%;
  }
  #BS_logged_in_header #main_menu_container div.accountAndIcons #BS_account_menu {
    width: 100%;
    border-bottom: 1px solid var(--bizSenseSecondary);
  }
  #BS_logged_in_header #alertWidget {
    margin: 2rem 0;
  }
  #BS_logged_in_header .mobile-widget-container {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--bizSenseSecondary);
  }
  .newLandingPage {
    margin-bottom: 0px;
    min-height: auto;
    width: 100%;
    padding: 20px;
  }
  .newLandingPage .landing_main {
    height: min-content;
    display: block;
    width: 100%;
    padding: 10px;
  }
  .newLandingPage .landing_main .imageCell {
    display: none;
  }
  .newLandingPage .landing_main .textCell {
    margin-right: 0px;
    position: static;
    min-width: unset;
    padding: 10px;
  }
  #BS_basic_header {
    padding-left: 25px;
    padding-right: 25px;
  }
  .bizSection {
    flex-direction: column;
  }
  .bizSection .imageCell {
    min-height: var(--minImageHeight);
  }
  .alternating .bizSection:nth-child(odd) {
    flex-direction: column;
  }
  .colReverse {
    flex-direction: column-reverse;
  }
  #bsEmailVerification {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  #bizsenseRegistrationGrid .bs-registration-form > div > div {
    flex-direction: column;
    gap: 1rem;
  }
  #bizsenseRegistrationGrid .bs-registration-form > div > div .bs-registration-input-sm {
    max-width: unset;
  }
  #bizsenseRegistrationGrid .bs-registration-form #bizsenseSecurityQuestionsForm {
    grid-template-columns: 1fr;
  }
  #bizsenseRegistrationGrid .bs-registration-form .checkbox-group {
    flex-direction: row;
  }
  #BS_footer .footerNav {
    flex-direction: column;
    text-align: center;
  }
  #BS_footer > section {
    flex-direction: column;
    align-items: center;
  }
  #BS_footer #BenefitsFooter {
    flex-direction: column;
  }
  .identity_theft { /*is this still a thing*/ }
  .identity_theft .content {
    flex-wrap: wrap;
  }
  .identityTheftPage .iconContainer {
    flex-direction: column;
    align-items: center;
  }
  .identityTheftPage .left-content {
    padding: 0;
  }
  .identityTheftPage .bullet-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .identityTheftPage .bullet-list ul {
    margin-bottom: 0;
  }
  #healthAndWellnessPage .imageCell {
    min-height: 200px;
  }
  #healthAndWellnessPage .dentalSavings {
    width: 100%;
  }
  #healthAndWellnessPage .visionSavings .lowPriceGuarantee .bizSection .textCell .description {
    margin-left: 0px;
  }
  #smallbizmonitor #alertPagination {
    flex-direction: column;
    row-gap: 10px;
    margin: 0px;
  }
  #smallbizmonitor #alertPagination .paginationLinks > * {
    width: 50px;
  }
  #smallbizmonitor #alertPagination .paginationLabel {
    font-size: 0.875em;
  }
  #smallbizmonitor .notification-items > div {
    flex-wrap: wrap;
  }
  .legalServicesPage .legalServicesSection, .legalServicesPage .needLegalSection {
    margin-left: 16px;
    margin-right: 16px;
  }
  .legalServicesPage .legalServicesSection > div {
    flex-direction: column;
  }
  .legalServicesPage .legalServicesSection .textCell {
    margin-bottom: 50px;
  }
  .legalServicesPage .needLegalSection {
    flex-direction: column;
  }
  .legalServicesPage .needLegalSection .needLegalLeft > :first-child {
    flex-direction: column;
    align-items: flex-start;
  }
  .legalServicesPage .needLegalSection .needLegalLeft .needLegalPhoneSchedule {
    margin-left: 0px;
  }
  .legalServicesPage .needLegalSection .needLegalRight {
    padding: 24px 40px 24px 40px;
  }
  body.privatewifi .PrivateWifiPage #bizsense_content > * {
    margin-bottom: 6rem;
  }
  body.privatewifi .PrivateWifiPage .privateWifiSectionContainer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  body.privatewifi .PrivateWifiPage .privateWifiSectionContainer .PrivateWifiSection {
    flex-direction: column;
  }
  body.privatewifi .PrivateWifiPage #bsBtnAddNew,
  body.privatewifi .PrivateWifiPage .bs-pw-control-add-actions {
    width: 100%;
  }
  body.privatewifi .PrivateWifiPage #bsBtnAddNew > *,
  body.privatewifi .PrivateWifiPage .bs-pw-control-add-actions > * {
    flex-grow: 1;
  }
  .navbar {
    display: block;
  }
  .showSmall {
    display: block !important;
  }
  .hideSmall {
    display: none !important;
  }
  #autoDisclosures {
    padding-left: 25px;
    padding-right: 25px;
  }
  .cellphoneclaim a.btn-primary,
  .cellphoneclaim .btn-primary, .cellphoneclaim input[type=file]::file-selector-button {
    white-space: normal !important;
  }
  .teleHealthIcons > div {
    width: unset;
  }
  body.viewsbmalert #smallbizalerts .alertDetailsList {
    display: block;
  }
  body.viewsbmalert #smallbizalerts .alertDetailsList span {
    display: block;
  }
  body.viewsbmalert #smallbizalerts .alertDetailsList span:not(.text-break) {
    padding-right: 0px;
    padding-bottom: 0px;
  }
  body.viewsbmalert #smallbizalerts .alertDetailsList span.text-break {
    margin-bottom: 24px;
    border-bottom: none;
  }
}
@media (width <= 576px) {
  body.default .BizSenseSection #bizCarousel .textCellContainer {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  body.default .BizSenseSection #bizCarousel .textCellContainer .textCell {
    height: unset;
    width: unset;
    margin-left: 15px;
    margin-right: 15px;
    position: static;
  }
  body.default .BizSenseSection #bizCarousel .textCellContainer .textCell .textCell_text {
    row-gap: 10px;
  }
  .quickLinks {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
  }
  #employeeBenefitsPage #EmployeeBenefitsSection {
    flex-direction: column;
  }
  #employeeBenefitsPage #EmployeeBenefitsSection .newEmployeeBenefitSection {
    flex-direction: column;
    align-items: center;
  }
  #employeeBenefitsPage #EmployeeBenefitsSection .newEmployeeBenefitSection .imageCell {
    width: 100%;
  }
  #employeeBenefitsPage #EmployeeBenefitsSection .newEmployeeBenefitSection .textCell {
    width: 100%;
  }
  .bizSection .textCell {
    padding: 20px;
  }
  #healthAndWellnessPage .prescriptionDrugSavings .expandoSection .expandoDetails > ul, #healthAndWellnessPage .prescriptionDrugSavings .expandoSection .expandoDetails > ol {
    margin-left: 5px;
  }
  #healthAndWellnessPage .prescriptionDrugSavings .prescriptionDrugSavingsContainer h2 {
    text-align: center;
    grid-row: 1/2;
    grid-column: 1/2;
  }
  #healthAndWellnessPage .prescriptionDrugSavings .prescriptionDrugSavingsContainer .text {
    grid-row: 3/4;
    grid-column: 1/2;
  }
  #healthAndWellnessPage .prescriptionDrugSavings .prescriptionDrugSavingsContainer .image {
    margin-left: auto;
    margin-right: auto;
    height: 200px;
    width: 300px;
    grid-column: 1/2;
    grid-row: 2/3;
  }
  body.smallbusinessmonitor #smallbizmonitor {
    padding: 10px;
  }
  body.smallbusinessmonitor #smallbizmonitor #alertList {
    padding: 5px;
  }
  body.smallbusinessmonitor #smallbizmonitor #alertPagination .paginationLinks {
    column-gap: 10px;
  }
  body.smallbusinessmonitor #smallbizmonitor #alertsSection {
    padding: 5px;
  }
  body.smallbusinessmonitor #smallbizmonitor .monitoring-section {
    padding: 5px;
    margin: 5px;
    margin-bottom: 10px;
  }
  body.smallbusinessmonitor #smallbizmonitor .monitoring-section .whyMonitor {
    display: none;
  }
  body.smallbusinessmonitor #smallbizmonitor .monitoring-section-header > * {
    height: auto;
  }
  body.privatewifi .PrivateWifiPage .privateWifiSectionContainer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .legalServicesPage .disclosureSection > div {
    width: unset;
    margin: 16px;
  }
  #hamburger_button span.material-symbols-outlined {
    font-size: 36px;
  }
  .newLandingPage .landing_main .textCell {
    min-width: unset;
    padding: var(--outerPadding);
  }
  #BS_basic_footer > section {
    display: flex;
    flex-direction: column;
    padding: 16px 24px 32px 24px;
    row-gap: 16px;
    align-items: center;
  }
  #dataBreachPage .knowledgeTabs > *:not(.tabButtons) {
    padding: 0 10px;
  }
  #dataBreachPage .knowledgeTabs .tabButtons button {
    padding: 5px 15px;
  }
  body.autoauthmapper .input-group {
    margin-bottom: 20px;
  }
  body.autoauthmapper .input-group label {
    width: 200px !important;
  }
}
/* common font weight mappings:
100	Thin (Hairline)
200	Extra Light (Ultra Light)
300	Light
400	Normal (Regular)
500	Medium
600	Semi Bold (Demi Bold)
700	Bold
800	Extra Bold (Ultra Bold)
900	Black (Heavy)
950	Extra Black (Ultra Black)*/
/* we have Extra-Light through Bold here, plus Regular Italic. */
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/1-mundial-hair-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/1-mundial-hair-tty-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/1-mundial-hair-italic-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/1-mundial-hair-italic-tty-webfont.woff") format("woff");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/2-mundial-thin-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/2-mundial-thin-tty-webfont.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/2-mundial-thin-italic-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/2-mundial-thin-italic-tty-webfont.woff") format("woff");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/3-mundial-light-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/3-mundial-light-tty-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/3-mundial-light-italic-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/3-mundial-light-italic-tty-webfont.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/4-mundial-regular-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/4-mundial-regular-tty-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/4-mundial-regular-italic-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/4-mundial-regular-italic-tty-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/5-mundial-demibold-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/5-mundial-demibold-tty-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/5-mundial-demibold-italic-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/5-mundial-demibold-italic-tty-webfont.woff") format("woff");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/6-mundial-bold-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/6-mundial-bold-tty-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/6-mundial-bold-italic-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/6-mundial-bold-italic-tty-webfont.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/7-mundial-black-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/7-mundial-black-tty-webfont.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Mundial";
  src: url("/fonts/Mundial/7-mundial-black-italic-tty-webfont.woff2") format("woff2"), url("/fonts/Mundial/7-mundial-black-italic-tty-webfont.woff") format("woff");
  font-weight: 900;
  font-style: italic;
}

/*# sourceMappingURL=bizsense_styles.css.map */
