
.searchBtn {
	padding: 15px !important;
    transition: 
        background-color 0.3s ease-in-out,
        color 0.3s ease-in-out,
        border-color 0.3s ease-in-out
    ;
    font-size: inherit;
	background-color: #005988;
    border: 1px solid #005988;
    color: white;
    width: max-content;
	border-radius: 5px;
}

.searchBtn:hover {
	background-color: white !important;
    color: #005988 !important;
    border-color: #005988 !important;
    cursor: pointer;
}

.padding10 {
    padding: 10px;
    box-sizing: border-box;
}

.padding12 {
    padding: 0px 12%;
    box-sizing: border-box;
}

.padding20 {
	padding: 0px 20%;
    box-sizing: border-box;
}

.padding22 {
	padding: 0px 22%;
    box-sizing: border-box;
}

.fixed-menu {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.15), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
	z-index: 9000;
}

/*
	.header-top-bar {
		width: 100%;
		margin: 0 auto;
		background-color: #00549E;
		color: white;
	}

	header {
		display: grid;
		grid-template-columns: 1fr 1fr;
		background-color: #00549E;
		color: white;
		height: 40px;
		align-items: center;
		justify-content: center;
		font-size: 14px;
	}

	.header-left {
		justify-content:left;
		display: flex;
		flex-direction: row;
		gap: 3px;
		align-items: center;
		max-height: 100%;
	}

	.header-right {
		justify-content:right;
		display: flex;
		flex-direction: row;
		gap: 3px;
		align-items: center;
		max-height: 100%;
	}

	.header-group {
		display: flex;
		flex-direction: row; 
		gap: 8px;
		align-items: center;
		font-size: 15px;
		font-weight: 600;
	}
*/

.login-box {
    padding: 5px 10px;
    background-color: white;
    color: #005988;
    border-radius: 5px;
    border: none;
    outline: none;
}

.login-box:hover {
    cursor: pointer;
}

.progressArea {
	display: none;
}

.hide {
	display: none;
}

.progressAreaShow {
	display: block;
	position: fixed; 
	top: calc((100% - 100px)/2); 
	left: calc((100% - 100px)/2);
	z-index: 15000; 
	width: 100px; 
	height: 100px;
	color: #005988; 
	background: transparent;
	text-align: center; 
}

.processingImage {
	width: 75px;
	background: transparent;
}

body.parentDisabled {
	overflow: hidden;
}

.parentDisabled {
	position: fixed;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.7;
	z-index:9800;
	height: 100%;
	width: 100%;
}

.confirmbox {
	text-align: center;
	position: fixed;
	background-color: white;
	color: #333;
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.15), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
	padding: 10px;
	font-size: 16px;
	border: 2px solid black; 
	border-radius: 6px;
    box-sizing: border-box;
	width: 80%;
	max-width: 600px;
	top: 30%; 
	left: 50%;
	transform: translateX(-50%);
	z-index: 10000;
}

.confirmbox h2 {
	color: #b51b1f;
	margin: 10px auto 20px auto;
}

.newEmailInput {
	width: 250px;
	height: 30px;
}

.modalWindowBox {
	display: none;
}

.requestInfoBox {
	display: none;
}

.modalWindowBoxShow {
	display: block !important;
	position: fixed;
	top: 30%;
	width: 40%;
	left: 30%;
	background: transparent;
	z-index: 10000;
}

.requestInfoShow {
	display: block !important;
}

.contactBox {
	text-align: center;
	position: fixed;
	background-color: white;
	color: #333;
	font-size: 14px;
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.15), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	padding: 20px; 
	border: 2px solid black;
    box-sizing: border-box;
	top: 20%; 
	left: 35%;
	z-index: 5000; 
	width: 30%;
	overflow-y: auto;
}

/* Page lock when modal open */
body.modal-open { overflow: hidden; }

/* Modal root */
.modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 24px;
	font-family: 'Source Sans 3', sans-serif;
	padding: 16px;
	align-items: center;
}

/* Dimmed overlay */
.modal__overlay {
  /* position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45); */
}

/* Dialog */
.modal__dialog {
  position: fixed;
  top: 50px;
  width: min(560px, 100%);
 /* max-height: calc(100vh - 200px); */ /* leaves padding room */
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  overflow: hidden;
  /*overflow-y: auto; */
  border: 1px solid rgba(0,0,0,.15);
}

/* Header bar */
.modal__header {
  flex: 0 0 auto;
  background: #005988;
  color: #fff !important;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
}

/* Close button */
.modal__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 3px;
}
.modal__close:hover { background: rgba(255,255,255,.15); }
.modal__close:focus { outline: 2px solid rgba(255,255,255,.6); outline-offset: 2px; }

/* Body copy */
.modal__body {
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 14px;
  color: #1e2a36;
  font-size: 12px;
  max-height: calc(100vh - 175px);
}

.modal__hint, .modal__subhint {
  margin: 0 0 10px 0;
  line-height: 1.35;
}
.modal__subhint { font-size: 11px; }

/* Scrollable list box */
.modal__list {
  border: 1px solid #d7dde6;
  border-radius: 3px;
  padding: 10px 10px 8px;
  height: 120px;                 /* scroll like screenshot */
  overflow: auto;
  overscroll-behavior: contain;
  background: #fff;
  margin: 10px 0 12px;
}

.modal__list2 {
  border: 1px solid #d7dde6;
  border-radius: 3px;
  padding: 10px 10px 8px;
  /* max-height: 450px; */                 /* scroll like screenshot */
  /* overflow: auto;
  overscroll-behavior: contain; */
  background: #fff;
  margin: 10px 0 12px;
}

/* Checkbox rows */
.check {
  display: flex;
  gap: 2px;
  align-items: center;
  padding: 2px 0;
  user-select: none;
  cursor: pointer;
}
.check input {
  width: 12px;
  height: 12px;
  accent-color: #0b4a8b;
}
.check span {
  font-size: 11px;
  color: #0b4a8b;                /* link-like blue labels */
}

/* Form fields */
.modal__form {
  border-top: 1px solid #e8edf4;
  padding-top: 10px;
}

.field { margin-bottom: 10px; }
.field__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #51606f;
  margin-bottom: 4px;
}

.field__input {
  width: 97%;
  height: 30px;
  border: 1px solid #d7dde6;
  border-radius: 2px;
  padding: 6px 8px;
  font-size: 12px;
  background: #fff;
}
.field__input:focus {
  outline: none;
  border-color: #0b4a8b;
  box-shadow: 0 0 0 3px rgba(11,74,139,.12);
}

/* Phone + OR + Email layout */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  gap: 3px;
  align-items: end;
}

.grid2 .field .field__input {
	width: 93%;
}

.field--or { display: grid; place-items: center; }
.field__or {
  font-size: 11px;
  color: #6b7b8c;
  padding-bottom: 6px;
}

/* Disclaimer */
.modal__legal {
  margin: 6px 0 12px;
  font-size: 10px;
  color: #c3342b;                /* red warning text */
  font-style: italic;
  text-align: center;
}

/* Actions */
.modal__actions {
  display: flex;
  justify-content: center;
  padding-bottom: 6px;
}

.modal__actions .btn--primary {
	background-color: #005988;
    border-color: #005988;
    color: #FFFFFF;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 0.625rem 1.5rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    width: fit-content;
}

.modal__actions .btn--primary:hover {
	background-color: #004366;
    border-color: #004366;
    color: #FFFFFF;
    text-decoration: none;
}

.modal__actions .btn--primary:disabled,
.modal__actions .btn--primary.is-disabled {
    background-color: rgba(30, 124, 164, 0.5);
    border-color: rgba(30, 124, 164, 0.5);
    color: #FFFFFF;
    cursor: not-allowed;
    pointer-events: none;
}

.modal__submitResult {
	font-size: 15px;
	text-align: center;
	padding: 25px 0px 15px 0px;
	margin: 15px auto;
}

.infoRequestArea {
	display: none;
}

.show {
	display: block !important;
}

.modalSectionHide {
	display: none !important;
}

.btn {
  border: 1px solid #b9c3d1;
  background: #f7f9fc;
  color: #243241;
  border-radius: 2px;
  padding: 7px 18px;
  font-size: 12px;
  cursor: pointer;
}

.btn:hover { 
	background: #eef3fb;
}

.btn--primary {
  background: #ffffff;
  background: #e8e8e8;
  border-color: #9aa7b7;
  min-width: 100px;
}

.vpadding10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.vpadding20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.imp-news-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #005988;
    color: white;
    margin-top: 0;
}

.about-section {
    padding-top: 60px;
	position: relative;
}

.about-section2 {
    /* padding-top: 20px; */
	position: relative;
	padding: 20px 70px 0px 70px;
}

.section-title {
    font-size: 20px;
    text-align: center;
    color: rgb(31, 31, 31) !important;
    line-height: 26px;
}

.divider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 20px 0px;
}

.main-divider {
    padding: 0.5px;
    border-top: 1px solid none;
    border-bottom: 1px solid #a30505;
    background-color: #a30505;
    width: 100px;
}

.center-text {
    text-align: center;
}

.hpadding100 {
    padding: 0px 100px;
}

.body-content {
    line-height: 28px;
    font-weight: 500;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

.subheading {
    text-align: center;
    padding: 0px 100px;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 40px;
}

.pd-container {
	display: grid;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.two-column2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
	justify-items: stretch;
}

.mb50 {
	margin-bottom: 50px;
}

.marginX30 {
	margin-top: 30px;
	margin-bottom: 30px;
}

.paddingT10,
.padT10 {
	padding-top: 10px;
}

.paddingY30 {
	padding-top: 30px;
	padding-bottom: 30px;
}


.text-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
}

.learnMoreButton {
    padding: 10px;
    outline: none;
    border: 1px solid #005988;
    font-size: 16px;
    color: #005988;
    background-color: white;
    max-width: 125px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.learnMoreButton:hover {
    color: white;
    background-color: #005988;
}

button:hover {
    cursor: pointer;
}

.grid-text-container {
    display: flex; 
    flex-direction: column;
    gap: 5px;
    line-height: 24px;
}

.column-image {
    max-width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

.dark-section {
    background-color: rgb(245, 245, 245) !important;
    /* padding: 20px 22%;
    padding-top: 60px; */
	padding: 60px 22% 5px 22%;
    box-sizing: border-box;
}

.light-section {
    background-color: white;
    padding: 20px 12%;
    padding-top: 60px;
    box-sizing: border-box;
}

.three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    box-sizing: border-box;
    max-width: 100%;
}

.newsGridItem {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-headline {
    color: #005988; 
    font-size: 18px;
}

.newsGridImage {
    max-width: 100%;
}

.wellness-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: left;
    justify-content: center;
    background-image: url('../Images/main-page-image2.jpg');
    background-size: auto 600px;
    height: 300px;
    color: white;
}

.wellness-section p {
    font-size: 26px;
    font-weight: 200;
}

.wellness-section button {
    color: white;
    border-color: white;
    background-color: transparent;
    font-size: 18px
} 

.noHighlight {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.map-section-grid {
    grid-template-columns: 33% 67%;
}

.location-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-column p {
    line-height: 1.5em;
}

.map-section-location {
    font-size: 30px;
    font-weight: 500;
    color: black;
}

.map-section-business {
    font-size: 18px;
    font-weight: 500;
    color: black;
}

.map-section-address {
    font-size: 14px;
}

.center-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.employerLogoArea {
	width: 100%;
	margin: 10px auto;
	text-align: left;
}

.employerLogoArea img {
	max-width: 200px;
	height: auto;
}

.employerContactArea {
	font-size: 18px;
	color: #3A3A3A;
}

.contact_name {
	font-size: 18px;
	font-weight: 600;
}

.employerContactSection,
.employerContactSection p,
.employerContactInnerArea,
.employerContactInnerArea p {
	line-height: 1.5;
}

.employerContactInnerArea {
	width: 100%;
	border: 1px solid #eee;
	padding: 20px 30px;
	border-radius: 12px;
}

.employerContactSection p,
.employerContactInnerArea p {
	margin: 0px;
}

.formsSection {
	margin-top: 30px;
}

.partProviderContact {
	width: 98%;
	margin: 5px auto 10px auto;
	border-bottom: 2px solid #9aa7b7;
}

.partProviderContact ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px 0px 15px 0px;
}

.partProviderContact ul li a {
	color: #005988;
}

.grandfatheredSection {
	margin-top: 30px;
}

.grandfatheredSection a {
	color: #005988;
	text-decoration: none;
}

.agent_name {
	font-size: 16px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr 1fr auto;
    gap: 10px !important;
    width: 75%;
}

.contact-form-comments {
    grid-column: span 2;
    width: 100%;
    height: 100%;
    min-height: 50px;
    max-height: 200px;
    min-width: 100%;
    resize: vertical;
}

.contact-form-box {
    padding: 10px;
    border-radius: 0px;
    border: 1px solid lightgray;
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
}

.submit-button {
    background-color: white;
    color: #005988;
    border: 1px solid #005988;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 25px !important;
}

.align-left {
    align-self: baseline;
}

.partners-columns {
    display: flex;
    flex-direction: row;
    gap: 50px;
    width: 100%;
}

.partners-panel {
    flex: 1;
    background-color:#f5f5f5;
    text-align: center;
    color:#666;
    padding:50px 75px;
    border-radius: 5px;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.partners-panel:hover {
    transform: scale(105%);
}

.partners-panel-title {
    color:#005988;
    font-weight: 500;
    line-height: 1.5em;
}

.partners-panel-description {
    color:#666;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5em;
    margin: 20px 0px;
}

.news-search {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.search-bar {
    border-radius: 5px 0px 0px 5px;
}

input:focus {
    border: 1px solid #005988;
    outline: none;
}

select:focus {
    border: 1px solid #005988;
    outline: none;
}

textarea:focus {
    border: 1px solid #005988;
    outline: none;
}

.search-button {
    background-color:#005988;
    color: white;
    border-radius: 0px 5px 5px 0px;
}

.span-2-rows {
    grid-row: span 2;
}

.newsGridItem h2 {
    line-height: 1em;
    margin-top: 10px;
}

.socials-list {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.bluetext {
    color: #005988;
}

.lightbluetext {
	color: #1E7CA4;
}

.mainSectionHeading,
.trackerHeading {
	font-size: 36px !important;
	color: #005988;
	text-align: center;
	padding-bottom: 25px;
}

.text_heading {
	font-size: 36px !important;
	color: #005988;
	text-align: center;
}

.trackOptHeading {
	font-size: 28px !important;
	color: #005988;
	text-align: center;
}

.trackFormLabel {
	font-size: 22px !important;
	color: #3A3A3A;
	padding: 25px 0px 5px 0px;
}

.text_eyebrow {
	color: #0086C4;
	font-size: 22px;
	font-weight: bold;
}

.text_body_section {
	margin: 0px auto 30px auto;
}

.text_body {
	font-size: 22px !important;
	color: #3A3A3A;
}

@media screen and (max-width: 700px) {
	.text_eyebrow {
		font-size: 16px !important;
	}
	
	.trackFormLabel,
	.text_body {
		font-size: 16px !important;
	}
	
	.trackOptHeading {
		font-size: 20px !important;
	}
	
	.mainSectionHeading,
	.trackerHeading,
	.text_heading {
		font-size: 32px !important;
	}
}

.partner-item {
    display: flex;
    flex-direction: column;
}

.retirement-panel {
    flex: 1;
    background-color:none;
    text-align: center;
    color:white;
    padding:50px 75px;
    border-radius: 5px;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
    z-index: 1;

    background-size: cover; /* Lock height */
    background-position: center center;
    background-position-y: 0px;
    background-repeat:no-repeat;

    overflow: hidden;
    box-shadow: black 0px 0px 20px -10px;
}

.retirement-panel:hover {
    transform: scale(105%);
}

.ee-rp {
    background-image: url('../Images/Employees-2.jpg');

    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;

    color: white;
}

.er-rp {
    background-image: url('../Images/Employers.jpg');

    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;

    color: white;
}

.retirement-panel h2 {
    font-size: 36px;
}

.retirement-panel button {
    width: max-content;
    align-self: center;
    margin-top: 20px;
    border-radius: 5px;
}

.advisors-news-panel {
    flex: 1;
    background-color:#f5f5f5;
    text-align: center;
    color:#666;
    padding:50px 60px;
    border-radius: 5px;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
    border: 1px solid lightgray;
}

.advisors-news-panel:hover {
    /* transform: scale(105%); */
}

.advisors-news-columns {
    display: flex;
    flex-direction: row;
    gap: 50px;
    width: 100%;
    box-sizing: border-box;
}

.advisors-panel-title {
    color:#005988;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 26px;
}

.advisors-panel-image {
    max-width: auto;
    height: 125px;
    box-sizing: border-box;
    margin-bottom: 1em;
}

.advisors-news-panel p {
    line-height: 1.5em;
    margin-bottom: 1.5em;
}

.callout {
    box-shadow: lightgray 0px 0px 15px 0px;
    background-color: inherit;
    padding: 25px;
}

#P3-section-title {
    color:#005988;
    font-weight: 500;
}

.p3-dropdown {
    background-color: #f3f3f3;
    color: #666;
    padding: 10px 20px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 95% 5%;
    border: 1px solid lightgray;
    transition: background-color 0.3s ease;
    width: 80%;
    align-self: center;
}

.p3-dropdown-title-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin-top: auto;
    margin-bottom: auto;
}

.p3-dropdown-title {
    text-align: left;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.dropdown-arrow-container {
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-right: 0;
    max-width: 15px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    justify-content: center;
}

.p3-dropdown-arrow {
    text-align: right;
    max-width: 25px;
}

.p3-dropdown-text {
    grid-column: span 2;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.vertical-spacing {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.horizontal-spacing {
    display: flex;
    flex-direction: row;
    gap: 20px;
    /* margin-bottom: 20px; */
}

.p3-dropdown-arrow.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.iframe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* keeps the video proportional */
    overflow: hidden;
    border-radius: 10px; /* optional */
}

.why-me-vid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.left-education-text p h2 {
    margin-bottom: 15px;
}

.image-container-column {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;   
}

.fit-image {
    max-width: 100%;
}

#whatis403b-image {
    margin-top: 20px;
}

.hr-comp-panel {
    border: 0.5px solid lightgray;
    padding: 20px;
    background-color: white;
}

.hr-comp-panel li {
    margin-bottom: 10px;
}

.form-heading {
	text-align: center;
	color: #333;
	width: 100%;
	margin: 30px auto;
	font-size: 24px;
}

.employer-grid {
    display: grid;
    grid-template-columns: 1fr 450px 1fr;
    gap: 25px;
	justify-content: center; 
	align-content: center;
	padding-bottom: 25px;
}

.employer-panel {
    padding: 20px;
    display: flex;
    flex-direction: column;
	align-self: center;
    gap: 10px;
	text-align: center;
}

.employer-panel select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
	background: #fff;
    background-image: url('../img/down-caret-drk-gray.png');
	background-repeat: no-repeat;
	background-position: calc(100% - 12px) center;
	background-size: 12px 12px;
	border: 1px solid #ccc;
    border-radius: 4px;
    padding: 15px 35px 15px 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 75px;
	max-width: 225px;
	width: 96%;
	margin: 0px auto;
}

.employer-center-panel {
	text-align: center;
	padding: 20px 0px;
	display: flex;
    flex-direction: column;
	align-self: center;
	font-size: 24px;
	color: #333;
	color: #666666;
	font-weight: 800;
}

.employer-center-panel select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    background-image: url('../img/down-caret-drk-gray.png');
	background-repeat: no-repeat;
	background-position: calc(100% - 12px) center;
	background-size: 12px 12px;
	border: 1px solid #ccc;
    border-radius: 4px;
    padding: 15px 35px 15px 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 120px;
	width: 98%;
	margin: 0px auto;
}

.form-track-grid {
    display: grid;
    grid-template-columns: 1fr 125px 1fr;
    gap: 25px;
	justify-content: stretch; 
	align-content: stretch;
	padding-bottom: 25px;
	/* border-bottom: 3px solid lightgray; */
}

.track-form-results {
	padding-top: 25px;
	border-top: 4px solid #666666;
}

.search-flex {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.form-search-bar {
    border: 1px solid lightgray;
    border-radius: 5px 0px 0px 5px;
    font-size: 18px;
    padding: 0px 10px;
}

.form-search-bar2 {
    border: 1px solid lightgray;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
	color: #3A3A3A;
}

.form-search-button {
    border-radius: 0px 5px 5px 0px;
}

.tracking-panel {
    padding: 20px;
    box-shadow: lightgray 0px 0px 5px 0px;
    display: flex;
    flex-direction: column;
	align-self: stretch;
    gap: 10px;
}

.tracking-center-panel {
	text-align: center;
	padding: 20px 0px;
	display: flex;
    flex-direction: column;
	align-self: center;
	font-size: 24px;
	color: #005988;
	color: #333;
	font-weight: 800;
}

#opt2-s {
    border-radius: 5px;
}

.support-contact {
    line-height: 1.5em;
    margin-top: 0;
}

.support-contact h2 {
    line-height: 1em;
}

.resource-panel {
    flex: 1;
    background-color:#f5f5f5;
    text-align: left;
    color:#666;
    padding:30px;
    border-radius: 5px;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
    border: 1px solid lightgray;
}

.vpadding50 {
    padding-top: 50px;
}

@font-face {
    font-family: "ETfonts";
    src: url("ElegantIcons.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;

}

.heading-search {
    font-family: "ETfonts";
}

.er-p1 {
    background-image: url('../Images/Employees12.jpg');

    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;

    color: white;
}

.er-p2 {
    background-image: url('../Images/Employers1.jpg');

    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;

    color: white;
}

#empInfoSection {
    background-image: linear-gradient(
    to bottom, 
    transparent 60%, 
    #005988 60%)   
}

#empCol1 {
    color: white;
}

.vstack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#empCol2 h1 {
    font-size: 32px;
    line-height: 0em;
}

.four-column {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 50px;
    box-sizing: border-box;
}

.empStatPanel {
    background-color: white;
    padding: 40px 10px;
    box-sizing: border-box;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: lightgray 0px 0px 20px -5px;
}

.empStatPanel h2 {
    color: #005988;
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 0em;
    line-height: 1em;
}

.empStatPanel h3 {
    color: #B51B1F;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1em;
}

.ap-grid {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    align-items: center;
    box-sizing: border-box;
    gap: 50px 25px;
}

.ap-grid-item {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    box-sizing: border-box;
    gap: 5px;
    max-width: 100%;
}

.ap-grid-item img {
    max-width: 80%;
    box-sizing: border-box;
}

#ec-text p {
    margin-bottom: 10px;
}

.adv-rp {
    background-image: url('../Images/Employees12.jpg')
}

.adv-np {
    background-image: url('../Images/newsletter-600x380-1.jpg')
}

.adv-bgs {
    background: url('../Images/Background-section-7.jpg');
    color: white;
    height: 400px;
    background-position-x: -150px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advBgsDvd {
    padding: 0.5px;
    border-top: 1px solid none;
    border-bottom: 1px solid white;
    background-color: white;
    width: 150px;
}

.adv-rp h2, .adv-np h2 {
    line-height: 1em;
    font-size: 28px;
}

.adv-rp, .adv-np {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.p3Icon {
    background-color: rgb(226, 226, 226) !important;
    border-radius: 9999px;
    padding: 4px; 
    color: #005988;
    font-weight: 800;
    font-size: 12px;
}

.instructions-notice {
    color: #a30505;
}

#instructions-list .p3-dropdown {
    width: 100%;
}

.transaction-panel {
    border: 1px solid #eeeeee;
    background-color: #FFFFFF;
    color: black;
    padding: 50px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.noLH {
    line-height: 1em;
}

.about-panel {
    background-color: #f5f5f5;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    border-radius: 5px;
    box-shadow: lightgray 0px 0px 10px 0px;
}

.about-panel h2 {
    font-size: 24px;
}

.about-panel p {
    font-size: 14px;
    font-weight: 500;
}

.about-icon {
    max-width: 50px;
}

.abt-profile-panel {
    padding: 20px;
    border-radius: 5px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: left;
    border-radius: 5px;
    box-shadow: lightgray 0px 0px 10px 0px;
    box-sizing: border-box;
}

.abt-profile-panel h2 {
    line-height: 1em;
    color: black;
}

.abt-profile-panel img {
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
}

.abt-profile-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    box-sizing: border-box; 
    padding-top: 10px;
}

.rpSearch {
    display: grid;
    grid-template-columns: auto auto max-content;
    
    max-width: 100%;
    gap: 20px;
    box-sizing: border-box;
}

.rpGridItem {
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.rpSearchFrame {
    height: 100%;
    width: 100%;
    font-size: 14px;
}

.radius5 {
    border-radius: 5px;
}

.emp-p1 h2, .emp-p2 h2, .emp-p3 h2, .emp-p4 h2 {
    line-height: 1em;
    font-size: 28px;
    margin-bottom: 10px;
}

.emp-p1 {
    background-image: url('../Images/Employees2.jpg')
}

.emp-p2 {
    background-image: url('../Images/Employees11.jpg')
}
.emp-p3 {
    background-image: url('../Images/Employees12.jpg')
}

.emp-p4 {
    background-image: url('../Images/Employees-1.jpg')
}


.emp-bgs {
    background: url('../Images/Background-section-1.jpg');
    color: white;
    height: 400px;
    background-position-x: -150px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
}

.emp-bgs ul {
    width: 50%;
}

.calc-panel {
    border: 0.5px solid lightgray;
    padding: 75px;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
}

.calc-panel h2 {
    color:#a30505;
    font-size: 20px;
    font-weight: 400;
    line-height: 1em;
}

.redtext {
    color: #a30505;
}

.providersContactListBox {
	display: none;
}

.partProviderContactList {
	display: none;
}

.providersContactListShow {
	display: block;
}

.contactListShow {
	display: block;
}

#pd-body .about-section {
    padding: 50px;
}

#pd-grid {
    grid-template-columns: 2fr 1fr;
    box-sizing: border-box;
    max-width: 100%;
}

.pd-heading2 {
    /* border-bottom: 2px solid #a30505; */
    padding: 5px 0px;
    width: 100%;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
	color: #005988;
}

.pd-callout {
    border: 1px solid #BAD2E9;
	background-color: #E6EEF6;
	/* border: 1px solid #eaeaea;
	background-color: #f5f5f5; */
    padding: 25px 15px;
	height: auto;
	border-radius: 12px;
}

.pd-panel {
   /* border: solid 1px #eaeaea;
    background-color: #fafafa;
    padding: 1em; */
	border: 1px solid #BAD2E9;
	background-color: #E6EEF6;
	/* border: 1px solid #eaeaea;
	background-color: #f5f5f5; */
    padding: 25px 15px;
	height: auto;
	border-radius: 12px;
}

.pd-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.form-line {
    display: flex;
    flex-direction: row; 
    gap: 5px;
    align-items: center;
    margin-left: 10px;
}

.form-line2 {
    display: flex;
    flex-direction: row; 
    gap: 5px;
    align-items: center;
}

.pf-heading {
	width: 100%;
	margin-top: 50px;
}

@media screen and (max-width: 1200px) {
	.two-column {
		display: block;
		box-sizing: border-box;
		width: 100%;
		max-width: 100%;
	}
	
	#pd-grid {
		display: block;
		box-sizing: border-box;
		max-width: 100%;
	}
	
	.employerContactInnerArea {
		width: 100%;
		border: 0px solid #eee;
		padding: 20px 0px;
		border-radius: 0px;
		text-align: center;
	}
	
	.employerLogoArea {
		text-align: center;
	}
	
	.employerLogoArea img {
		margin: 0px auto;
	}
	
	.pd-heading2 {
		text-align: center;
	}
	
	.lausd-contactSection .pd-heading2 {
		text-align: left;
	}
	
	.pd-list {
		text-align: center;
		margin: 10px auto 5px auto;
	}
	
	.form-line {
		justify-content: center;
	}
}

.pdf-icon {
    background: url('https://otcgdev.wpengine.com/wp-content/themes/omni/assets/images/pdf17.svg');
    width: 20px;
    content: "";
    height: 20px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

#mobileProviderTable {
	display: none;
}

.table {
    border-collapse: collapse;
    border-spacing: 0;
    display: table;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-color: gray;
}

.table-bordered {

}

.table-hover {

}

.table-shadow {

}

.customEmployerText {
	font-family: 'Source Sans 3', sans-serif;
	color: #333 !important;
	font-size: 14px !important;
	font-weight: normal !important;
	margin-bottom: 10px;
}

.customEmployerText a,
.customEmployerText h1 a,
.customEmployerText h2 a {
	color: #005988;
	text-decoration: none;
}

.customEmployerTextArea {
	width: 100%;
	margin: 0px auto;
	text-align: left;
}

.customEmployerText a.goToBtn,
.customEmployerTextArea a.goToBtn,
.goToBtn {
	background-color: #005988;
    border-color: #005988;
    color: #FFFFFF;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 0.625rem 1.5rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    width: fit-content;
	text-align: center;
	margin: 5px;
}

.customEmployerText a.goBtn:hover,
.customEmployerText a.goBtn:focus,
.customEmployerText a.goBtn:focus-visible,
.customEmployerTextArea a.goToBtn:hover,
.customEmployerTextArea a.goToBtn:focus,
.customEmployerTextArea a.goToBtn:focus-visible,
.goToBtn:hover,
.goToBtn:focus,
.goToBtn:focus-visible {
	background-color: #004366;
    border-color: #004366;
    color: #FFFFFF;
    text-decoration: none;
}

.mobile-header {
    display: none;
}

.plan-details table.table {
    margin-bottom: 30px;
    border: 1px solid #eee;
	font-size: 14px !important;
}

.plan-details2 table.table {
    margin-bottom: 30px;
    border: 1px solid #eee;
	font-size: 16px !important;
	font-weight: 600;
}

.lausd-reps-detail table.table {
	margin-bottom: 30px;
    /* border: 1px solid #eee; */
	font-size: 16px !important;
	font-weight: 600;
}

.plan-details thead,
.plan-details2 thead {
    background: #005988;
    border: 1px solid #005988;
}

.lausd-reps-detail thead {
    background: #005988;
    /* border: 1px solid #005988; */
}

thead {
    display: table-header-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
    border: 1px solid #eee;
}

.plan-details thead th {
    color: #ffffff;
    padding: 7px;
	border: 1px solid #BAD2E9;
	text-transform: uppercase;
	font-size: 14px;
}

.plan-details2 thead th {
    color: #ffffff;
    padding: 20px 3px;
	border: 1px solid #BAD2E9;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
}

.lausd-reps-detail thead th {
    color: #ffffff;
    padding: 20px 3px;
	/* border: 1px solid #BAD2E9; */
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
}

th {
    display: table-cell;
    vertical-align: inherit;
    font-weight: bold;
    text-align: -internal-center;
    unicode-bidi: isolate;
}

.check-icon img {
	margin-top: 8px;
}

.table-image2 {
    max-width: 16px;
    align-self: center;
    justify-self: center;
}

.plan-details table .et_pb_icon_1.check-icon,
.plan-details table .text-center {
    text-align: center;
}

tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

.plan-details tr td {
    padding: 2px 3px;
    /* border-right: 1px solid #eee; */
	color: #3A3A3A;
	font-size: 14px;
}

.plan-details2 tr td {
    padding: 15px 3px;
    border-right: 1px solid #eee;
	color: #3A3A3A;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.lausd-reps-detail tr td {
    padding: 15px 3px;
   /*  border-right: 1px solid #eee; */
	color: #3A3A3A;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
}

.plan-details2 tr td p {
	margin: 0px 0px 5px 0px;
}

@media screen and (max-width: 900px) {
	.about-section2 {
		position: relative;
		padding: 20px 30px 0px 30px;
	}
	
	#mainProviderTable {
		display: none;
	}
	
	#mobileProviderTable {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	
	#mobileProviderTable table{
		width: 100%;
	}
	
	.plan-details thead th {
		color: #ffffff;
		padding: 7px;
		border: 1px solid #BAD2E9;
		text-transform: uppercase;
		font-size: 12px;
		text-align: center;
	}
	
	.plan-details thead th a {
		color: #ffffff;
		text-decoration: none;
	}

	.plan-details tr td {
		padding: 2px 3px;
		/* border-right: 1px solid #eee; */
		color: #3A3A3A;
		font-size: 12px;
	}
	
	.plan-details2 thead th {
		color: #ffffff;
		padding: 15px 3px;
		border: 1px solid #BAD2E9;
		text-transform: uppercase;
		font-size: 14px;
		text-align: center;
	}
	
	.plan-details2 thead th a {
		color: #ffffff;
		text-decoration: none;
	}

	.plan-details2 tr td {
		padding: 15px 3px;
		/* border-right: 1px solid #eee; */
		color: #3A3A3A;
		font-size: 14px;
		font-weight: 600;
	}
	
	.mobile-header {
		display: table-cell;
		font-weight: 600;
		font-size: 12px;
		color: #3A3A3A;
		text-align: center;
	}
	
	.table-image2 {
		max-width: 14px;
		align-self: center;
		justify-self: center;
	}
}

@media screen and (max-width: 600px) {
	#mobileProviderTable table{
		width: 100%;
		max-width: 100%;
	}
	
	.plan-details thead th {
		color: #ffffff;
		padding: 7px 2px;
		border: 1px solid #BAD2E9;
		text-transform: uppercase;
		font-size: 11px !important;
		text-align: center;
	}

	.plan-details tr td {
		padding: 2px 2px;
		/* border-right: 1px solid #eee; */
		color: #3A3A3A;
		font-size: 11 !important;
	}
	
	.table-image2 {
		max-width: 12px;
		align-self: center;
		justify-self: center;
	}
}

.provider-name,
.provider-name a {
	color: #3A3A3A;
	text-decoration: none;
}

.provider-name a:hover {
	opacity: .7;
}

.entry-content tr td {
    border-top: 1px solid #eee;
    padding: 6px 24px;
}

td {
    display: table-cell;
    vertical-align: inherit;
    unicode-bidi: isolate;
}

.entry-content table:not(.variations) {
    border: 1px solid #eee;
    margin: 0 0 15px;
    text-align: left;
    width: 100%;
}

.link_icon {
	min-width: 35px;
}

.link_icon a img {
	margin-top: 8px;
}

.et_pb_text {
    word-wrap: break-word;
}

.et_pb_module.et_pb_text_align_left {
    text-align: left;
}

.et-pb-icon {
    line-height: 1;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.plan-details .et_pb_icon_1 .et_pb_icon_wrap .et-pb-icon {
    /* font-family: FontAwesome!important;
    font-weight: 900!important; */
    font-size: 16px;
}

/* 
.et-pb-icon, .et_pb_custom_button_icon.et_pb_button:after, 
.et_pb_login .et_pb_custom_button_icon.et_pb_button:after, 
.et_pb_woo_custom_button_icon .button.et_pb_custom_button_icon.et_pb_button:after, 
.et_pb_woo_custom_button_icon .button.et_pb_custom_button_icon.et_pb_button:hover:after {
    content: attr(data-icon);
}
*/

#partProviderGridLegendRow {
	border: 1px solid #fff;
	background-color: #fff;
}

#partProviderGridLegendRow2 {
	
}

.partProviderGridLegend {
	width: 100%;
	padding: 15px 0px 0px 0px!important;
	border-left: none !important;
	border-right: none !important;
	border-bottom: none !important;
	font-size: 12px;
	color: #666666;
}

.partProviderGridLegend img,
.partProviderGridLegend2 img {
	width: 25px;
	vertical-align: middle;
	display: inline-block;
}

.partProviderGridLegend2 {
	width: 100%;
	font-size: 12px;
	color: #666666;
}

.partProviderGridLegend3 {
	width: 100%;
	padding: 15px 0px!important;
	border-left: none !important;
	border-right: none !important;
	border-bottom: none !important;
	font-size: 12px;
	color: #666666;
}

.entry-content table:not(.variations) {
    border: 1px solid #eee;
    margin: 0 0 15px;
    text-align: left;
    width: 100%;
	/* border-radius: 12px;
	overflow: hidden;
	border-collapse: separate;
    border-spacing: 0; */
}

.table-image {
    max-width: 22px;
    align-self: center;
    justify-self: center;
}

.padLft5 {
	padding-left: 5px;
}

.pd-subtext {
    line-height: 1em;
    font-weight: 600;
	font-size: 18px;
    color: #0086C4;
}

.customInfoArea {
	width: 100%;
	/* padding-bottom: 20px;*/
	margin-top: 10px;
	margin-bottom: 10px;
	/* border-bottom: 1px solid #eee; */
}

.customInfoImageContainer {
	display: flow-root;
	width: 100%;
}

.customInfoImage {
	float: left;
	width: 165px;
	height: auto;
	margin: 0px 25px 10px 0px;
	/* border: 1px solid #E6EEF6; */
}

.lowercase {
	text-transform: lowercase !important;
}

.track-forms-results {
	width: 100%;
	margin: 20px auto;
	padding: 20px 0px;
	text-align: center !important;
}

.searchFormBtnArea {
	width: 90%;
	margin: 30px auto;
	text-align: center;
}

.tracking-panel input[type=button] {
	margin-top: 30px;
}

.tracking-panel input[type=button],
.searchFormBtnArea input[type=button],
.searchBtn {
	background-color: #005988;
    border-color: #005988;
    color: #FFFFFF;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 0.625rem 1.5rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    width: fit-content;
}

.tracking-panel input[type=button]:hover,
.tracking-panel input[type=button]:focus,
.tracking-panel input[type=button]:focus-visible,
.searchFormBtnArea input[type=button]:hover,
.searchFormBtnArea input[type=button]:focus,
.searchFormBtnArea input[type=button]:focus-visible,
.searchBtn:hover,
.searchBtn:focus,
.searchBtn:focus-visible {
	background-color: #004366;
    border-color: #004366;
    color: #FFFFFF;
    text-decoration: none;
}

.tracking-panel input[type=button]:disabled,
.tracking-panel input[type=button].is-disabled,
.searchFormBtnArea input[type=button]:disabled,
.searchFormBtnArea input[type=button].is-disabled,
.searchBtn:disabled,
.searchBtn.is-disabled {
    background-color: rgba(30, 124, 164, 0.5);
    border-color: rgba(30, 124, 164, 0.5);
    color: #FFFFFF;
    cursor: not-allowed;
    pointer-events: none;
}

.tracking-list-item {
	width: 98%;
	margin: 10px auto 5px auto;
	padding-bottom: 30px;
	border-bottom: 2px solid #e0e0e0;;
}

.tracking-list-header-row {
	width: 100%;
	margin: 0px auto;
	padding: 3px 0px;
	font-size: 18px;
	text-align: left;
	/* border-bottom: 3px solid #005988; */
}

.tracking-list-header-row h3 {
	font-size: 18px;
}

.tracking-list-heading-label {
	color: #333;
}

.tracking-list-header {
	color: #005988;
}

.statbar-red {
	background-color: #B51B1F;
}

.statbar-yellow {
	background-color: #f2c83f;
}

.statbar-blue {
	background-color: #005988;
}

.statbar-green {
	background-color: #1e8f3c;
}

.stat100 {
	width: 100% !important;
}

.stat70 {
	width: 70% !important;
}

.stat50 {
	width: 50% !important;
}

.stat30 {
	width: 30% !important;
}

.stat0 {
	width: 0% !important;
}

.tracking-status-container {
	width: 100%;
	background-color: #e0e0e0;
	border-radius: 8px;
}

.tracking-status-bar {
	width: 0;
	height: 10px;
	text-align: center;
	line-height: 10px;
	color: white;
	border-radius: 8px;
	transition: width: 0.4s ease;
}

.tracking-list-detail-row {
	display: grid;
    grid-template-columns: 1fr 1fr;
	justify-items: stretch;
	align-items: start;
	justify-content: stretch;
	align-content: start;
	width: 100%;
	margin: 0px auto;
	padding: 10px 0px 20px 0px;
	font-size: 14px;
	background-color: white;
    color: #333;
}

.tracking-list-detail-left,
.tracking-list-detail-right  {
	justify-self: start;
	align-self: stretch;
	text-align: left;
	font-size: 14px;
	color: #333;
}

.tracking-list-detail-left p,
.tracking-list-detail-right p {
	text-align: left;
	font-size: 14px;
	color: #333;
}

.tracking-list-result {
	color: #005988;
	text-transform: uppercase;
}

.goButton {
	padding: 15px 35px 15px 15px !important;
	transition: 
		background-color 0.3s ease-in-out,
		color 0.3s ease-in-out,
		border-color 0.3s ease-in-out
	;
	font-size: inherit;
	background-color: #005988;
	border: 1px solid #005988;
	background-image: url('../img/right_chevron_white.png');
	background-repeat: no-repeat;
	background-position: calc(100% - 12px) center;
	background-size: 12px 12px;
	color: white;
	border-radius: 30px;
	width: max-content;
	font-size: 14px;
	font-weight: 700;
	margin: 0px auto;
}

.goButton:hover,
.goButton:focus,
.goButton:focus-visible {
	background-color: white !important;
	background-image: url('../img/right_chevron_blue.png');
	background-repeat: no-repeat;
	background-position: calc(100% - 12px) center;
	background-size: 12px 12px;
	color: #005988 !important;
	border-color: #005988 !important;
	cursor: pointer;
}

.requestFormBtn {
	background-color: #005988;
    border-color: #005988;
    color: #FFFFFF;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 0.625rem 1.5rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    width: fit-content;
}

.requestFormBtn:hover,
.requestFormBtn:focus,
.requestFormBtn:focus-visible {
	background-color: #006593;
    border-color: #006593;
    color: #FFFFFF;
    text-decoration: none;
}

.requestFormBtn:disabled,
.requestFormBtn.is-disabled {
    background-color: rgba(30, 124, 164, 0.5);
    border-color: rgba(30, 124, 164, 0.5);
    color: #FFFFFF;
    cursor: not-allowed;
    pointer-events: none;
}

.requestFormBtn2 {
	background-color: #005988;
    border-color: #005988;
    color: #FFFFFF;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 0.625rem 1.5rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    width: fit-content;
	margin: 10px;
}

.requestFormBtn2:hover,
.requestFormBtn2:focus,
.requestFormBtn2:focus-visible {
	background-color: #006593;
    border-color: #006593;
    color: #FFFFFF;
    text-decoration: none;
}

.requestFormBtn2:disabled,
.requestFormBtn2.is-disabled {
    background-color: rgba(30, 124, 164, 0.5);
    border-color: rgba(30, 124, 164, 0.5);
    color: #FFFFFF;
    cursor: not-allowed;
    pointer-events: none;
}

.requestFormResult {
	color: #005988;
	font-size: 16px;
	text-align: center; 
	margin: 15px auto;
}

.employerContactInnerArea2,
.employerContactInnerArea2 p {
	line-height: 1.5;
}

.employerContactInnerArea2 {
	width: 100%;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding: 20px 30px;
	border-radius: 12px;
	margin: 15px auto;
}

.employerContactInnerArea2 p {
	margin: 0px;
}

.lausd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
	margin: 25px auto;
}

.lausd-reps-grid {
	width: 100%;
	max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
	margin: 25px auto;
}

.lausd-reps-grid div {
	width: 100%;
	padding: 0px;
	margin: 0px;
	justify-self: start;
	align-self: start;
}

.lausd-reps-grid div ul {
	width: 100%;
	list-style-position: inside;
	padding: 0px;
	margin: 0px;
}

.lausd-reps-grid div ul li {
	width: 100%;
}

.lausd-reps-grid div ul li.listHeading {
	list-style-type: none;
	background: #005988;
	color: #ffffff;
    padding: 20px 3px;
	border: 1px solid #BAD2E9;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
}

.lausd-contactSection {
	width: 100%;
	justify-self: center;
}

.lausd-contactImageSection,
.lausd-contactImageSection2 {
	width: 100%;
	text-align: center;
	justify-self: center;
	align-self: center;
}

.lausd-contactImageSection img {
	width: 100%;
	max-width: 325px;
	margin: 10px auto;
	align-self: center;
}

.lausd-contactImageSection2 img {
	width: 100%;
	max-width: 235px;
	margin: 10px auto;
	align-self: center;
}

.lausd-employerLogoArea {
	width: 100%;
	margin: 5px auto;
	text-align: left;
}

.lausd-employerLogoArea img {
	max-width: 150px;
	height: auto;
}

.lausd-employerContactInnerArea {
	display: grid;
    grid-template-columns: 200px 1fr;
    gap: 10px;
	width: 550px;
	margin: 0px auto;
	padding: 20px 30px;
	/* border-radius: 12px;
	border: 1px solid #eee; */
}

.lausd-employerContactInnerArea p {
	margin: 0px;
}

.lausd-contactSection {
	text-align: left !important;
	text-decoration: none;
}

.lausd-websiteArea a,
.lausd-contactSection a {
	text-decoration: none;
}

.lausd-websiteArea {
	width: 700px;
	margin: 10px auto;
	text-align: left;
	padding-left: 60px;
}

.lausd-employerSection {
	width: 100%;
	text-align: left !important;
	padding: 0px 30px 30px 30px;
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
}

.lausdList-grid-columns {
	column-count: 2;
	column-gap: 20px;
	list-style-position: inside;
	/* display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 20px; */
}

.lausdList-grid-columns li {
	margin-top: 10px;
	margin-bottom: 10px;
}

.lausd-employerSection2 {
	width: 100%;
	text-align: right !important;
	padding: 0px 30px 30px 30px;
}

.lausd-employerSection3 {
	width: 100%;
	text-align: left !important;
	padding: 30px;
}

.lausd-ip-notice {
	margin: 15px 0px;
}

.gfProviderTable {
	margin-top: 50px !important;
	margin-bottom: 50px !important;
}

.lausd-gf-Notice {
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
	margin-top: 5px;
}

.lausd-reps-section {
	width: 100%;
	max-width: 1000px;
	margin: 30px auto;
}

.lausd-reps-section ul,
.lausd-reps-section ul li {
	width: 100%;
}

.stateRetirementSection {
	width: 300px;
	margin: 0px auto;
	padding: 20px 0px;
	text-align: center;
	border-bottom: 1px solid #eee;
}

.stateRetirementSection2 {
	width: 300px;
	margin: 0px auto;
	padding: 20px 0px;
	text-align: center;
}

.stateRetirementSection div,
.stateRetirementSection2 div {
	line-height: 1;
	margin: 15px 0px;
}

@media screen and (max-width: 1100px) {
	.lausd-grid {
		display: block;
		width: 100%;
	}
	
	.lausd-contactSection {
		margin-bottom: 30px;
	}
	
	.lausd-websiteArea {
		text-align: center;
	}
}

.pdfLinkArea {
	margin-top: 25px;
}

.pdfLinkArea a {
	margin-left: 25px;
}

.pdfLinkArea img{
	display: inline-block;
	vertical-align: middle;
}

.cards-grid-none {
	display: none;
}

.cards-grid1 {
	width: 100%;
}

.cards-grid1 .info-card {
	background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px 0px 20px 0px;
	padding: 20px 30px;
    /* min-height: 320px; */
    /* position: relative; */
    box-sizing: border-box;
	border-bottom: 1px solid #eee;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1050px;
}

.cards-grid .info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 30px;
    /* min-height: 320px; */
    position: relative;
    box-sizing: border-box;
}

.info-card p {
    color: #3A3A3A;
    margin-bottom: 15px;
}

.planNumberArea {
	font-size: 12px;
	line-height: 1;
}

@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
		min-height: auto !important;
    }

    .two-column-content {
        flex-direction: column;
    }
}
