/*!
Theme Name: GEHC Benefits
Theme URI: https://www.ajg.com/employeeexperience/
Author: AJG | Ian Israel
Description: Communicating employee benefits digitally.
Version: 1.0.0
Text Domain: quartz
*/

/** Font Libraries **/

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  /* Colors */
  --turquoise: #45b2c5;
  --green: #19bb7c;
  --yellow: #f8d754;
  --coral: #f37f63;

  --primary-color: #6022a6;
  --secondary-color: #fbf9fd;
  --tertiary-color: #f8d754;
  --accent-one: #f0f1f2;
  --accent-two: #f0f1f2;
  --accent-three: #eeeeee;
  --accent-four: #f0f1f2;
  --accent-five: #f0f1f2;
  --accent-six: #f0f1f2;

  /* Hovers */
  --primary-hover: #512286;
  --secondary-hover: #eae8eb;

  /* Backgrounds */
  --bg-neutral-1: #f4f1f8; /* Neutral 250 */
  --bg-neutral-2: #fbf9fd; /* Neutral 100 */
  --bg-turquoise: #e3f4f6; /* Turquoise 150 */
  --bg-green: #ddf5eb; /* Green 150 */
  --bg-yellow: #fef9e5; /* Yellow 150 */
  --bg-coral: #fdece8; /* Coral 150 */

  /* Typography Colors */
  --white: #ffffff;
  --black: #222222; /* Neutral 1000 - Typography Black */
  --dark-grey: #5b5b67; /* Neutral 750 */
  --medium-grey: #c7c8cf; /* Neutral 500 */

  /* Status Colors */
  --error: #a32940; /* Red */
  --warning: #edc50c; /* Yellow */
  --success: #68b76f; /* Green */

  /* Fonts */
  --heading-font: "Source Sans 3", sans-serif;
  --primary-font: "Source Sans 3", sans-serif;
  --font-awesome: "Font Awesome 5 Free", sans-serif;

  --primary-text-color: var(--black);
}

/* Utility */
.bg-neutral-1 {
  background-color: var(--bg-neutral-1);
}
.bg-neutral-2 {
  background-color: var(--bg-neutral-2);
}
.bg-white {
  background-color: white;
}
.bg-turquoise {
  background-color: var(--bg-turquoise);
}
.bg-green {
  background-color: var(--bg-green);
}
.bg-yellow {
  background-color: var(--bg-yellow);
}
.bg-coral {
  background-color: var(--bg-coral);
}
.nowrap {
  white-space: nowrap;
}
.left-align {
  text-align: left;
}
.primary-color {
  color: var(--primary-color);
}

/* Page Layout */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 12.125rem;
}

body {
  margin: 0;
  font-family: var(--primary-font);
  color: var(--black);
}

.page-inner {
  width: 80%;
  margin: 0 auto;
}

.print {
  display: none;
}

img.print {
  display: none;
}

.search-keywords {
  display: none;
}

/* GEHC Design System Variable Mapping
*  The following variables map to the GEHC Design System typography scale:
*  H1 - Title M
*  H2 - Title S
*  H3 - Title XS
*  H4 - Title XS
*  H5 - Eyebrow
*  p - Paragraph S
*  p.footnote - Caption
*/

/* Typography */
h3,
h4,
h5,
h6 {
  color: var(--black);
  font-family: var(--heading-font);
}

h1 {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 3rem;
  margin-bottom: 0.5rem;
  line-height: 3.5rem;
  letter-spacing: -1.25px;
  font-weight: 400;
}

h1.page-title {
  padding: 2rem 2rem 0 4rem;
  margin: auto;
}

/* .postid-2800 is 2026 payroll contributions page */
#contacts h1.page-title,
#disclaimer h1.page-title,
#forms-notices h1.page-title {
  text-align: center;
  padding-bottom: 2rem;
}

.editor-styles-wrapper .wp-block {
  margin-left: auto;
  margin-right: auto;
  color: black;
}

h2 {
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: 2.25rem;
  line-height: 3rem;
  letter-spacing: -1.25px;
  margin: 1rem 0 0 0;
  font-weight: 400;
}

h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}

.secondary-column h3 {
  margin-top: 0;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.125rem;
}

p {
  color: var(--dark-grey);
  font-family: var(--primary-font);
  font-size: 1.125rem;
}

p.footnote {
  font-size: 1rem;
  margin: 0;
  line-height: 1.5rem;
}

p.footnote:not(:first-child) {
  margin-top: 1rem;
}

.login-container .footnote {
  color: white;
}

strong {
  font-weight: 600;
}

.login-container strong {
  color: white;
}

li {
  font-family: var(--primary-font);
  padding: 0.5rem;
  margin: 0;
  font-size: 1.125rem;
  color: var(--dark-grey);
}

ul li > ul {
  padding: 0 0 0 1rem;
  font-size: 1.125rem;
}

ul li > ul li {
  list-style: "—";
}

li p:last-child {
  margin-bottom: 0;
}

ol li::marker {
  font-weight: 700;
}

ol li > ul li {
  list-style-type: disc;
}

ol > ul {
  list-style-type: disc;
}

::marker {
  color: var(--dark-grey);
}

.secondary-column li {
  padding: 0;
  font-size: 1.125rem;
}

a {
  color: var(--primary-color);
}

/*** Header ***/
header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  color: white;
  background-color: white;
  border-bottom: 1px solid var(--medium-grey);
}

header a {
  color: var(--black);
  font-family: var(--heading-font);
  text-decoration: none;
}

header li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header-upper-wrapper {
  background-color: var(--medium-grey);
}

.header-upper {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 80%;
  margin: 0 auto;
  padding: 0.5rem 0;
}
.header-lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  height: 5.625rem;
  margin: 0 auto;
  background-color: white;
}

.header-lower-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header-right {
  display: flex;
  gap: 2.5rem;
}

.emp-selection-btn {
  display: flex;
  border-radius: 5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

.emp-selection-text-wrapper p {
  margin: 0;
  padding: 0;
  line-height: 1.5rem;
  font-size: 1rem;
  color: var(--black);
  text-transform: capitalize;
}

.emp-selection-btn .change-container {
  display: flex;
}

.change-container a:not(:first-child) {
  padding-left: 1rem;
  border-left: 1px solid var(--black);
}
.change-container a:first-child {
  padding-right: 1rem;
  border: none;
}

.header-right i.fas.fa-search {
  color: black;
  font-size: 1.5rem;
}

button.search-submit {
  background: none;
  border: 0;
  cursor: pointer;
}

button.search-submit::before {
  content: "";
  background-image: url("/wp-content/uploads/magnifying-glass-solid.svg");
  height: 1.5rem;
  width: 1.5rem;
  display: inline-block;
}

form#searchform {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.search-container {
  display: flex;
  justify-content: space-between;
  background-color: var(--accent-one);
  /* padding: 1rem 1.5rem; */
  border-radius: 0.25rem;
  align-items: center;
}

.search-container input[type="text"] {
  border: 0;
  color: black;
  background: none;
  font-family: var(--primary-font);
  padding: 0.5rem;
}

.home input.search-field,
.benefit-template-default input.search-field,
#searchform input.search-field {
  margin-bottom: 0;
  text-transform: none;
}

#search .search-wrapper input.search-field {
  width: calc(100% - 3rem);
  margin-bottom: 0;
}

.logo-container {
  height: 2rem;
}

img.custom-logo {
  height: 100%;
  width: auto;
}

.menu-wrapper {
  color: black;
}

ul#primary-menu {
  display: flex;
  gap: 1.5rem;
  /* margin: auto; */
  /* width: 80%; */
  padding: 0;
  margin: 0;
}

#primary-menu .menu-item {
  position: relative;
  border-bottom: 0.25rem solid transparent;
  color: var(--black);
}

#primary-menu > .menu-item:hover {
  border-bottom-color: var(--primary-color);
  cursor: pointer;
}

ul.sub-menu {
  display: none;
  transition: 0.2s;
  background-color: white;
  /* border-top: 0.25rem var(--primary-color) solid; */
  padding: 1.875rem 1.25rem;
  margin-top: 0.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: max-content;
}

.last-menu-item ul.sub-menu {
  left: unset;
  right: 0;
}

.sub-menu {
  display: none;
}

ul.sub-menu li {
  margin-bottom: 1rem;
  /* text-decoration: underline; */
  list-style-type: none;
}

ul.sub-menu li:last-child {
  margin-bottom: 0;
}

header li a:hover,
header li:hover {
  color: var(--primary-color);
  transition: 0.2s;
}

/* #primary-menu li > ul li {
    padding: .5rem 1rem; 
    background-color: white; 
    text-decoration: underline; 
    list-style-type: none; 
} */

/* .menu-item-has-children::before {
  content: "";
  background-image: url("/wp-content/uploads/chevron-down-regular.svg");
  background-repeat: no-repeat;
  height: 1.1875rem;
  width: 1.25rem;
  float: right;
  margin: 9px 0 0 0.25rem;
  font-family: var(--fa-style-family-classic);
} */

li.indented {
  padding: 0 0 0 2rem;
}

#primary-menu li > ul li a:hover {
  color: var(--primary-color);
  transition: 0.2s;
}

.menu-toggle {
  display: none;
}

/* .additional-benefits {
    display: revert;
} */

/* Employee Selection */
.emp-selection-banner {
  display: flex;
  justify-content: center;
  background-color: var(--secondary-color);
}

.emp-selection-banner p {
  color: black;
  margin: 0.5rem;
}

.emp-selection-banner a {
  font-weight: 700;
  font-family: var(--primary-font);
}

/* Search Modal */
.search-modal {
  display: none;
}

/* General Modal */
.modal-open {
  cursor: pointer;
  text-decoration: underline;
}

.modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 15;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.modal-container.active {
  display: flex;
}

.modal-wrapper {
  width: 80vw;
  max-height: 80vh;
  position: relative;
}

.modal-container .modal-wrapper .callout-block-container.wire {
  max-height: 80vh;
  overflow: auto;
}

.close {
  position: absolute;
  top: -3rem;
  right: 1rem;
  background-color: white;
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  transform: rotate(45deg);
  cursor: pointer;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  padding: 1px 5px 8px 5px;
}

/* Login Page */
#login footer {
  border: none;
}

#login footer a {
  color: var(--primary-color);
}

.login-container-grid {
  display: grid;
  grid-template-columns: 32% 1fr;
  min-height: calc(100vh - 208px);
}

.login-container {
  background-color: var(--primary-color);
  padding: 2rem 2rem 2rem 10rem;
}

.login-container > * {
  color: white;
}

.login-container h2 {
  line-height: 1;
  margin-bottom: 1rem;
}

#user-group-selection,
.question-tile {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
}

#user-group-selection > p:first-child {
  margin-top: 0;
}

.img-container img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

input[type="text"],
.union-selection-btn {
  text-align: center;
  font-family: var(--primary-font);
  padding: 10px 20px;
  border-radius: 8px;
  background-color: var(--accent-three);
  color: black;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  margin-bottom: 1rem;
  display: block;
  border: 2px solid transparent;
}

.union-selection-btn input[type="radio"] {
  display: none;
}

.union-selection-btn.selected {
  background-color: white;
  border: 2px solid var(--primary-color);
}

input[type="text"] {
  width: calc(100% - 3rem + 2px);
  text-align: left;
  font-size: 1rem;
}

input[type="text"]:focus,
input[type="text"]:active,
input[type="text"]:focus-visible {
  border-color: var(--primary-color);
  outline: var(--primary-color);
}

.zip-input-wrapper {
  position: relative;
}

.zip-input-wrapper:after {
  content: "";
  background-image: url("/wp-content/uploads/GE.checkmark.circle.fill-1.svg");
  position: absolute;
  right: 1rem;
  top: 30%;
  color: green;
  font-size: 1.25rem;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20px;
  width: 20px;
  display: none;
}

.zip-input-wrapper.complete:after {
  display: revert;
}

.question-tile-wrapper {
  display: none;
}

.q-link {
  color: white;
  font-family: var(--primary-font);
  margin-top: 1rem;
  text-decoration: underline;
  display: inline-block;
  cursor: pointer;
  font-size: 1.125rem;
}

.question-tile h4 {
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

.question-tile .q-link {
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.question-tile .q-link:before {
  content: "\f060";
  font-family: var(--fa-style-family-classic);
}

/* Home */
.home .classic-content-wrapper {
  width: 80%;
  margin: auto;
}

h2#get-ready {
  text-align: left;
  /* margin-left: 3.25rem; */
  width: 90%;
  margin: auto auto 2rem;
}

.get-ready-block {
  width: 80%;
  margin: auto;
  background-color: var(--accent-one);
  border-radius: 0.5rem;
}

.dark-get-ready-block {
  width: 80%;
  margin: 1rem auto;
  border-radius: 0.5rem;
  background-color: var(--primary-color);
  padding: 2rem 0 1rem 0;
}

.get-ready-block h2 {
  text-align: center;
  padding: 2rem 0 0 0;
  margin: 0 0 2rem;
}

.dark-get-ready-block .get-ready-step h3 {
  color: white;
}

.get-ready-block p:first-of-type {
  text-align: center;
}

.get-ready-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  width: 90%;
  margin: auto;
}

.get-ready-step h3 {
  color: var(--primary-color);
  text-wrap: nowrap;
  margin: 0;
}

.dark-get-ready-block .step-content-wrapper h3 {
  color: white;
}

.get-ready-step h4 {
  margin: 0 0 2rem;
}

.dark-get-ready-block p,
.dark-get-ready-block strong,
.dark-get-ready-block .step-content-wrapper h4 {
  color: white;
}

.step-content-wrapper h4 {
  margin-bottom: 1rem;
}

.get-ready-block .step-content-wrapper p {
  text-align: left;
  width: 90%;
}

.get-ready-block .step-content-wrapper p:last-of-type {
  padding-bottom: 2rem;
}

.dark-get-ready-block p {
  padding-bottom: 1rem;
}

.step-tile-wrapper {
  display: grid;
  width: 75%;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 auto 2rem;
}

.step-tile {
  display: flex;
  background-color: white;
  padding: 1rem;
  flex-direction: column;
  align-items: flex-start;
}

.step-tile h5 {
  margin: 1rem 0;
  line-height: 2rem;
  font-size: 1.5rem;
}

.step-tile h5 a {
  text-decoration: none;
}

i.fa-regular.fa-circle-check {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.get-ready-block .step-tile > p {
  text-align: left;
  margin: 0;
  font-size: 1.25rem;
}

/* Hero */
#index .hero-container {
  background-position: top;
  position: relative;
}

/* Homepage Hero */
#index .hero-container {
  display: flex;
  align-items: center;
  height: 38.5rem;
}
#index .title-box {
  margin-left: 10%;
  border-radius: 1rem;
}
#index .title-box-inner * {
  margin: 0;
}
#index .title-box-inner h1,
#index .title-box-inner p:not(:last-child) {
  margin-bottom: 1.88rem;
}
#index .title-box-inner h1,
#index .title-box-inner h3 {
  font-weight: 400;
}
#index .title-box-inner h3 {
  color: white;
  margin-bottom: 1.25rem;
}
#index .title-box-inner {
  max-width: 36.5rem;
  padding: 3.125rem 2.5rem;
}

.page-title-bar {
  display: grid;
  grid-template-columns: repeat(2, 40% 60%);
}

.page-title-full-bar {
  background-color: var(--primary-color);
}

.title-box {
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.title-box-inner {
  padding: 0 5rem;
  margin: auto;
}

.title-box p {
  color: var(--white);
  margin: 0;
}

.title-box-inner strong {
  color: var(--white);
}

.hero-container {
  height: 29.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*** Page Layout ***/
.page-content-wrapper {
  width: 80%;
  margin: 3rem auto;
}

/*** Benefit Post Layout ***/
.breadcrumbs {
  display: block;
  gap: 1rem;
  font-family: var(--primary-font);
  font-size: 14px;
  margin-bottom: 3rem;
}

.breadcrumbs p {
  font-size: 14px;
  margin: 0;
}

.breadcrumbs strong {
  color: var(--primary-color);
  font-weight: 400;
}

.two-column-container {
  display: grid;
  grid-template-columns: 65% 25%;
  gap: 6.5rem;
  width: 80%;
  margin: 3rem auto;
  justify-content: space-between;
}

.secondary-column {
  position: relative;
}

.secondary-column-inner {
  position: sticky;
  top: 200px;
  max-height: calc(100vh - 200px);
  overflow: auto;
}

.downloads-block h2 {
  color: var(--black);
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

.downloads-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.single-download-container {
  display: flex;
  font-family: var(--primary-font);
  background-color: var(--accent-one);
  padding: 1rem;
  align-items: center;
  gap: 1rem;
}

i.fa-regular.fa-file-arrow-down {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/*** Search Results Page ***/
#search .title-box {
  display: block;
}

#search .title-box-inner {
  width: 80%;
  margin: 0 auto;
  padding: 2rem 0;
}

#search h1.page-title {
  padding: 0;
  margin: 0 0 1rem;
}

#search .title-box-inner h2 {
  color: white;
}

.search-pill {
  background-color: var(--accent-one);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
}

.search-pill button.search-submit {
  font-size: 1.5rem;
}

.search-wrapper {
  width: 100%;
}

.search-wrapper input.search-field {
  width: calc(100% - 1rem);
}

#search .page-inner {
  min-height: calc(100vh - 162px - 195px - 200px);
}

.search-grid {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 2rem;
  width: 80%;
  margin: auto;
  padding: 3rem 0;
  font-family: var(--primary-font);
}

.search-result-container:first-child h3:first-child {
  margin-top: 0;
}

.sidebar-callout.documents h3:first-child {
  margin-top: 0;
}

/*** Accordions ***/
.home .accordion-block-container {
  width: 70%;
  margin: auto;
}

.examples-toggle {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--medium-grey);
  margin: 1rem 0;
}

.examples-toggle:last-child {
  border-bottom: 2px solid var(--medium-grey);
  padding-bottom: 1rem;
}

.examples-label {
  position: relative;
  color: var(--black);
  font-size: 24px;
  font-family: var(--heading-font);
  cursor: pointer;
  padding: 1.5rem 0 0.5rem 0;
  margin: 0;
}

#index .examples-label {
  display: flex;
  gap: 2rem;
}

.examples-label:after {
  color: var(--primary-color);
  font-family: var(--fa-style-family-classic);
  content: "\f077";
  position: absolute;
  right: 0;
  transition: 0.3s;
  top: 32%;
  transform: rotate(90deg);
}

#index .examples-label:after {
  position: revert;
}

.examples-label.active:after {
  transform: rotate(180deg);
}

.examples-content {
  display: none;
  border-top: 1px solid white;
}

.examples-content p {
  color: var(--dark-grey);
}

/*** Buttons ***/
/* Button Options:
* square-btn/primary-btn - purple button
* secondary-btn - light grey button
* text-btn - text button
* text-btn-primary - purple text button
* text-btn-white - white text button
*/

.square-btn,
.primary-btn,
.secondary-btn {
  display: inline-block;
  font-size: 1rem;
  font-family: var(--primary-font);
  font-weight: 600;
  line-height: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
}

.square-btn,
.primary-btn {
  background-color: var(--primary-color);
  color: var(--white);
}

.secondary-btn {
  background-color: var(--secondary-color);
  color: var(--black);
}

.text-btn {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration: none;
  cursor: pointer;
}
.text-btn-primary {
  color: var(--primary-color);
}
.text-btn-white {
  color: var(--white);
}

/* Button :after Icons */
/* Adds Arrow to text-btn */
.text-btn:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-left: 0.625rem;
  background-color: currentColor; /* Inherit text color */
  mask-image: url("/wp-content/uploads/ico-chevron.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  /* vertical-align: middle; */
}
.text-btn.noicon:after {
  display: none;
}

/* Adds external link icon to buttons */
a[href^="http"].text-btn:after,
a[href^="http"].primary-btn:after,
a[href^="http"].secondary-btn:after,
a[href^="http"].square-btn:after {
  content: "";
  display: inline-block;
  width: 0.6875rem;
  height: 0.6875rem;
  margin-left: 0.6255rem;
  margin-bottom: 3px;
  background-color: currentColor; /* Inherit text color */
  mask-image: url("/wp-content/uploads/ico-external-link.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  vertical-align: middle;
}

/* Adds PDF icon to buttons */
a[href$="pdf"].text-btn:after,
a[href$="pdf"].primary-btn:after,
a[href$="pdf"].secondary-btn:after,
a[href$="pdf"].square-btn:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 15px;
  margin-left: 0.625rem;
  margin-bottom: 2px;
  background-color: currentColor; /* Inherit text color */
  mask-image: url("/wp-content/uploads/ico-pdf.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  vertical-align: middle;
}

/* Hovers */
.square-btn:hover,
.primary-btn:hover {
  background-color: var(--primary-hover);
  text-decoration: none;
}

.secondary-btn:hover {
  background-color: var(--secondary-hover);
  text-decoration: none;
}
.text-btn:hover {
  text-decoration: underline;
}

input.square-btn {
  background-color: var(--tertiary-color);
  color: black;
  border: none;
  cursor: pointer;
}
input.square-btn:hover {
  color: white;
}

.second-square-btn {
  display: inline-block;
  font-size: 1rem;
  font-family: var(--primary-font);
  background-color: var(--tertiary-color);
  color: var(--black);
  padding: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: 0.2s;
  margin: 0 0 2rem;
}

.secondary-column-inner a.second-square-btn {
  position: relative;
}

.secondary-column-inner a.second-square-btn:after {
  content: "";
  display: inline-block;
  position: relative;
  background-image: url(/wp-content/uploads/ico-external-link.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 0.85rem;
  width: 0.85rem;
  top: 0;
  margin-left: 0.5rem;
}

a.second-square-btn:hover {
  color: var(--black);
  transition: 0.2s;
}

i.fa-regular.fa-calendar-circle-exclamation {
  font-size: 1.25rem;
  padding-left: 0.5rem;
}

/* Jump to Top Button */
#jump-to-top {
  position: fixed;
  color: var(--color-white);
  background-color: var(--primary-color);
  height: 3rem;
  width: 3rem;
  border-radius: 3rem;
  right: 5%;
  bottom: 10%;
  z-index: 9;
  text-align: center;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

#jump-to-top:hover {
  background-color: var(--primary-hover);
  transition: 0.2s;
}

#jump-to-top img {
  position: relative;
  color: var(--color-white);
  stroke: white;
  font-size: 2rem;
  font-weight: 700;
  top: 30%;
}

#jump-to-top:hover {
  cursor: pointer;
}

/*** Callouts ***/
.sidebar-callout {
  background-color: var(--accent-one);
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 0 0 2rem;
}

/*** Contacts ***/
.related-links-wrapper,
.contacts-wrapper {
  padding: 1rem;
  border-top: 0.75rem solid var(--primary-color);
  background-color: var(--accent-one);
  margin: 0 0 2rem;
}

.related-links-wrapper h2,
.contacts-wrapper h2 {
  font-size: 1.5rem;
  color: var(--black);
}

.related-links-wrapper h2:first-child,
.contacts-wrapper h2:first-child {
  margin-top: 0;
}

.related-links-inner-wrapper,
.contacts-inner-wrapper {
  background-color: var(--accent-one);
  padding: 1rem;
}

.related-links-inner-wrapper p,
.contacts-inner-wrapper p {
  margin: 0.5rem 0;
}

.related-links-inner-wrapper a.square-btn,
.contacts-inner-wrapper a.square-btn {
  margin: 1rem 0 0;
  padding: 0.5rem 1.5rem;
}

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

table {
  width: 80%;
  margin: auto;
  font-family: var(--primary-font);
  border-spacing: 0;
  font-size: 1.125rem;
  padding: 1rem 0;
  color: var(--black);
  border-collapse: collapse;
}

table tbody *:not(a) {
  color: var(--dark-grey) !important;
}
table tbody .primary-color,
table tbody .primary-color * {
  color: var(--primary-color) !important;
}

.page table {
  width: 70%;
}

.benefit-template-default table {
  width: 100%;
}

thead {
  font-family: var(--heading-font);
  font-size: 1.125rem;
  color: var(--white);
}

thead tr th {
  padding: 1rem 0.5rem;
  border: 2px;
  vertical-align: top;
  font-weight: 600;
}

thead th:not(:first-child),
thead tr.show-first th:first-child {
  background-color: var(--primary-color);
  text-align: left;
  border-left: 1px solid var(--white);
}

thead tr:not(:first-of-type) {
  border-top: 1px solid white;
}
tr.border-bottom-white th,
tr.border-bottom-white td {
  border-bottom: 1px solid white;
}

tr.primary-highlight-row {
  background-color: var(--primary-color);
  color: var(--black);
  font-weight: 700;
}

.primary-highlight-row td {
  border-bottom: 1px solid var(--primary-color);
  font-weight: 600;
}

.primary-highlight-row td,
.primary-highlight-row td p,
.primary-highlight-row td p * {
  color: white !important;
}

.primary-highlight-row td:not(:first-child) {
  border-left: 1px solid var(--white);
}

tr.secondary-highlight-row {
  background-color: var(--bg-neutral-1);
  color: var(--black);
  font-weight: 600;
}

tr.secondary-highlight-row td:nth-child(2) {
  /*text-align: center;*/
}

.secondary-highlight-row td {
  border: none;
}

#medical-comparison .secondary-highlight-row td,
#prescription-drug .secondary-highlight-row td {
  border: 1px solid var(--primary-color);
}
#medical-comparison .primary-highlight-row td {
  text-align: center;
}

#medical-comparison .secondary-highlight-row td {
  text-align: left;
}

#prescription-drug .secondary-highlight-row td {
  text-align: center;
}
#prescription-drug .primary-highlight-row td {
  text-align: left;
}

/* 2026-payrolll-contributions tables in accordions */
.postid-2800 .accordion-block-container .secondary-highlight-row td {
  border: 1px solid var(--primary-color);
}

.secondary-highlight-row td:first-child {
  border-left: 1px solid var(--primary-color);
}

tr.secondary-highlight-row.fifty-25-25 td:first-of-type {
  width: 50%;
}
tr.secondary-highlight-row.fifty-25-25 td:not(:first-of-type) {
  width: 25%;
}
.secondary-highlight-row td:last-child {
  border-right: 1px solid var(--primary-color);
}

tbody tr:first-child.secondary-highlight-row td {
  border-top: 1px solid var(--primary-color);
}

td {
  /*border-left: 1px solid var(--primary-color);*/
  /*border-bottom: 1px solid var(--primary-color);*/
  border: 1px solid var(--primary-color);
  padding: 1rem 0.5rem;
  vertical-align: top;
}

td p:last-child {
  margin-bottom: 0;
}

/*tr:first-child td {*/
/*  border-top: 1px solid var(--primary-color);*/
/*}*/

/*tr:first-child {*/
/*  border-top: 1px solid var(--primary-color);*/
/*}*/

/*td:last-child {*/
/*  border-right: 1px solid var(--primary-color);*/
/*}*/

/*table p {*/
/*  font-size: 1rem;*/
/*}*/

table tr td p:first-child {
  margin-top: 0;
}

table tr td p:last-child {
  margin-bottom: 0;
}

table ul {
  margin: 0 0 0 0.25rem;
  padding-left: 1rem;
}

table ul li {
  padding: 0;
  font-size: 1.125rem;
  text-align: left;
}

.contacts-table thead tr,
.two-column-table thead tr {
  background-color: var(--primary-color);
  color: white;
  text-align: left;
}

.two-column-table td:first-child {
  width: 33%;
}

.two-column-table .contacts-table thead tr th:first-child {
  width: 50%;
}

/* Tabbed Tables */
table.tab thead {
  display: none;
}

.table-tab-container {
  display: flex;
  border-bottom: 4px solid var(--primary-color);
}

.table-tab {
  padding: 1rem 0.625rem;
  cursor: pointer;
  transition: 0.2s;
  color: var(--primary-color);
  font-weight: 600;
  background-color: var(--secondary-color);
}

.table-tab:hover,
.table-tab.active {
  background-color: var(--primary-color);
  color: var(--white);
}

table.tab
  tbody
  tr:not(.primary-highlight-row):not(.secondary-highlight-row)
  td:first-child {
  text-align: left;
}

/*.tab.col_1-2 tr > :nth-child(2),*/
/*.tab.col_1-2 tr > :nth-child(3) {*/
/*    width: 25%;*/
/*}*/

table.col_5 tbody tr:first-child td {
  width: 20%;
}

table.col_1-2-2 tbody tr:first-child td {
  width: 20%;
}
table.col_1-2-2 tbody tr:first-child td:not(:first-child) {
  width: 40%;
}

/*** Footer ***/
footer {
  color: var(--dark-grey);
  font-family: var(--primary-font);
  background-color: var(--bg-neutral-1);
  border-top: 1px solid var(--medium-grey);
  /* padding: 3rem 0 2rem; */
}

/* footer a {
  color: var(--black);
  text-decoration: none;
} */

/* footer a:hover {
  text-decoration: underline;
} */

footer a.square-btn {
  font-size: 1rem;
}

footer p {
  color: var(--black);
  font-size: 1rem;
}

footer .footer-content {
  display: flex;
}

footer .footer-content > div {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

footer .footer-left-container {
  flex: 2;
  padding-right: 2.5rem;
}

footer .footer-right-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2.5rem;
  border-left: 1px solid var(--medium-grey);
}

footer .footer-right-container * {
  margin: 0;
}
footer .footer-right-container h3 {
  margin-bottom: 1.875rem;
}
footer .footer-right-container p:not(:last-child) {
  margin-bottom: 1rem;
}

footer .logo-usergroup-wrapper {
  margin-bottom: 3.75rem;
  display: flex;
  align-items: center;
}

footer .logo-container {
  padding-right: 1.5rem;
}

footer .usergroup-container {
  padding-left: 1.5rem;
  border-left: 1px solid var(--medium-grey);
}

footer .footer-links {
  display: flex;
  gap: 1.25rem;
}

footer .footer-copyright {
  margin: 0;
  margin-top: 1.875rem;
  color: var(--black);
}

/* #top-footer-menu ul {
  padding: 0;
}

#top-footer-menu li {
  list-style-type: none;
} */

.footer-login-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: flex-end;
  padding: 3rem 0 2rem;
}

/* .footer-bottom-container {
  display: flex;
  width: 90%;
  margin: auto;
  justify-content: space-between;
  align-items: flex-end;
} */

footer p.copyright {
  margin: 0;
}

/*** Small Desktop ***/
@media (max-width: 1269px) {
  .menu-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    align-items: flex-end;
  }

  .menu-toggle {
    display: block;
    padding: 0.5rem;
  }

  ul.sub-menu:before {
    content: "";
    width: 100%;
    height: 0.7rem;
    background-color: var(--tertiary-color);
    display: block;
    margin: 1rem 0;
  }

  .fa-solid,
  .fass {
    font-size: 1.5rem;
  }

  .menu-header-menu-container {
    display: none;
    position: absolute;
    width: 100%;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 5px 5px lightgrey;
    max-height: calc(80vh - 150px);
    overflow: auto;
  }

  .menu-header-menu-container.active {
    display: block;
    transition: 0.2s;
  }

  nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  ul#primary-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
    width: 95%;
  }

  ul.sub-menu {
    border: none;
  }

  .menu-item .sub-menu,
  .menu-item.active .sub-menu {
    position: relative;
    padding: 0;
  }

  header li:hover {
    color: var(--black);
  }

  .login-container-grid {
    grid-template-columns: 50% 1fr;
  }

  .login-container {
    padding: 2rem;
  }

  #login .footer-login-container {
    padding: 1rem;
  }
}

/*** Tablet ***/
@media (max-width: 1024px) {
  .page-inner {
    width: 90%;
  }

  .header-upper {
    width: 90%;
  }

  .logo-container {
    height: 2rem;
  }

  footer .footer-content {
    flex-direction: column-reverse;
    width: 100%;
  }
  footer .footer-content > div {
    padding: 2.5rem 5%;
  }
  footer .footer-right-container {
    border: none;
    border-bottom: 1px solid var(--medium-grey);
    align-items: center;
  }

  footer .footer-left-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .footer-links-container {
    text-align: center;
  }
  footer .footer-links {
    justify-content: center;
  }

  .page-title-bar {
    grid-template-columns: 1fr;
  }

  #index {
    .title-box {
      position: absolute;
      left: 5%;
      top: 100%;
      margin: 0 auto;
      width: 90%;
    }
    .title-box-inner {
      max-width: unset;
    }
    .hero-container {
      height: 25rem;
    }
  }
  .title-box-inner {
    padding: 0 5rem 2.5rem;
  }

  .hero-container {
    height: 18.5rem;
  }

  .two-column-container {
    grid-template-columns: 1fr;
    gap: 0;
    width: 90%;
  }

  .breadcrumbs {
    margin-bottom: 1rem;
  }

  .secondary-column a.second-square-btn {
    display: block;
    text-align: center;
  }

  .search-grid {
    grid-template-columns: 100%;
  }
}

@media only screen and (max-width: 900px) {
  /* Modal */
  .modal-container {
    padding: 4rem 0;
    height: 100vh;
  }

  .modal-container.active {
    display: block;
  }

  .modal-wrapper {
    max-height: 60vh;
    margin: 0 auto;
  }

  .modal-container .modal-wrapper .callout-block-container.wire {
    max-height: 50vh;
  }
}

@media only screen and (max-width: 479px) {
  .modal-container .modal-wrapper .callout-block-container.wire {
    max-height: 75vh;
  }
  .emp-selection-btn {
    display: block;
  }
}

/*** Mobile ***/
@media (max-width: 767px) {
  h1.page-title {
    padding: 2rem 0;
    margin: auto;
  }

  /* .header-upper {
    flex-direction: column;
    width: 95%;
    gap: 1rem;
  } */

  .header-right {
    gap: 1rem;
  }

  .logo-container {
    height: 2rem;
  }

  .emp-selection-btn {
    padding: 0.25rem;
  }

  .search-container {
    padding: 0.25rem;
    margin-right: 1rem;
    flex: 1;
  }

  .page-title-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  #index .title-box-inner {
    text-align: unset;
    width: 80%;
  }
  #index .title-box {
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    width: 100%;
    border-radius: 0;
  }

  .title-box {
    padding: 0 0 2rem;
  }

  .title-box-inner {
    padding: 0;
    width: 90%;
    margin: auto;
    text-align: center;
  }

  .hero-container {
    height: 15rem;
  }

  /* Login */
  .login-container-grid {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 150px);
  }

  .login-container {
    padding: 2rem;
    text-align: center;
  }

  .login-container-grid .img-container {
    display: none;
  }

  /* Home */
  .get-ready-block {
    width: 90%;
  }

  .get-ready-step {
    flex-direction: column;
    gap: 1rem;
    width: 90%;
  }

  .step-tile-wrapper {
    width: 90%;
    grid-template-columns: 1fr;
  }

  .dark-get-ready-block {
    width: 90%;
  }

  /* Benefit Page */

  .two-column-container {
    grid-template-columns: 100%;
    gap: 1rem;
    width: 90%;
  }

  .breadcrumbs {
    display: none;
  }

  .page table {
    width: 100%;
  }

  .contacts-table {
    width: 100%;
  }

  .second-square-btn {
    display: block;
    margin: 0 auto 2rem;
    text-align: center;
  }

  footer .logo-usergroup-wrapper {
    flex-direction: column;
    gap: 1.56rem;
  }
  footer .logo-usergroup-wrapper * {
    padding: 0;
    border: none;
    text-align: center;
  }

  .table-tab-container {
    flex-direction: column;
  }

  /* footer {
    padding: 2rem 0 2rem;
  } */

  /* .footer-top-container {
    justify-content: center;
  }

  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  } */
}

/*** Well-being Page ***/
#well-being .page-content-wrapper {
  width: 100%;
  margin: revert;
  padding-top: 3rem;
}
#well-being .imgContentRow-block-container img {
  max-height: 28rem;
}
#well-being .imgContentRow-block-container .column-left {
  display: flex;
  align-items: center;
}
#well-being .imgContentRow-block-container h2 {
  color: var(--black);
  font-weight: 400;
  margin-bottom: 2.5rem;
}
#well-being .imgContentRow-block-container h3 {
  margin: 0;
  margin-top: 2.5rem;
}
#well-being .imgContentRow-block-container p {
  color: var(--dark-grey);
  margin: 0;
}

/*** Print ***/
@media print {
  html {
    font-size: 0.8rem;
  }

  /* don't print */
  header,
  nav,
  .no-print,
  .hero-container,
  .secondary-column a.second-square-btn,
  .related-links-wrapper,
  .contacts-wrapper,
  footer,
  .column-left.image,
  .column-right.image,
  .examples-label:after,
  .breadcrumbs {
    display: none !important;
  }

  .print {
    display: revert !important;
  }

  img.print {
    display: block;
    max-width: 100%;
  }

  .hero-container {
    height: 0;
    margin: 0;
    padding: 0;
  }

  .title-box-inner {
    text-align: left;
  }

  #index .title-box-inner {
    text-align: center;
  }

  .page-title-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-title-full-bar {
    background-color: white;
  }

  .title-box {
    background-color: white;
    display: flex;
    justify-content: center;
    color: black;
  }

  .title-box-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .title-box p {
    margin: auto;
  }

  h1 {
    margin: 0;
  }

  h1.page-title {
    padding: 0;
    margin: 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    color: black !important;
  }

  .breadcrumbs {
    display: block;
    margin-bottom: 1rem;
  }

  .two-column-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 1rem;
    margin: 1rem auto;
    justify-content: space-between;
  }

  div.callout-block-container.wire {
    margin: 0 auto;
    padding: 0;
  }

  .callout-block-container.full-width {
    text-align: center;
  }

  .callout-block-container.full-width > * {
    width: 100%;
  }

  .sidebar-callout {
    padding: 0;
    margin: 0;
  }

  table tr.page-break {
    page-break-after: always;
  }

  .break-before {
    page-break-before: always;
  }

  #contacts h1.page-title,
  #disclaimer h1.page-title,
  #forms-notices h1.page-title {
    padding-bottom: 0;
  }

  /* Modal */
  .modal-container {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background-color: white;
  }

  .modal-wrapper {
    width: auto;
    height: auto;
  }

  .close {
    display: none;
  }

  .modal-container .modal-wrapper .callout-block-container.wire {
    max-height: 80vh;
    overflow: none;
  }

  /* Print Accordion */
  .examples-content {
    display: block;
  }

  /* Page Level Adjustments */
  #income-protection table,
  #prescription-drug table {
    margin: 0;
    padding: 0;
  }

  #income-protection .main-column,
  #income-protection .secondary-column,
  #prescription-drug .main-column,
  #prescription-drug .secondary-column {
    margin: 0;
    min-height: auto;
  }
}
