/*CSS RESET*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

*:not(dialog) {
    margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

#root,
#__next {
    isolation: isolate;
}

/*CSS RESET*/

/*VARIABLES AND FONTS*/
:root {
    --body-padding: 64px;

    --font-line-height-100: 16px;
    --font-line-height-400: 24px;
    --font-line-height-700: 48px --font-line-height-500: 32px;
    --font-family-special-headline: Publico Headline;
    --font-family-body: Graphik;
    --font-family-component: Graphik;


    /*??????????????????????????*/
    --font-size-body-xs: 12px;
    --font-size-100: 12px;
    --font-size-200: 14px;
    --font-size-300: 16px;
    --font-size-400: 20px;
    --font-size-700: 40px;

    --font-weight-regular: 400;
    --font-weight-400: 400;
    /*??????????????????????????*/

    --spacing-small: 4px;
    --spacing-medium: 8px;
    --spacing-0: 0;
    --spacing-4: 4px;
    --spacing-8: 8px;
    --spacing-12: 12px;
    --spacing-16: 16px;
    --spacing-20: 20px;
    --spacing-32: 32px;
    --spacing-44: 44px;
    --spacing-64: 64px;


    --spacing-form-label-spacing: 4px;


    --common-text-component-label: #303F49;


    --color-text-primary: #1D1E1F;
    --color-text-secondary: #4c4F52;
    --color-text-subtle: #686C72;
    --color-text-feedback-error: #C51013;
    --color-surface-input-field-secondary: #F8F6F4;
    --color-border-focus-fx: #7BC8FE;
    --color-surface-button-text: #ffffff;
    --color-surface-selector-track-on: #0071CB;
    --color-border-hover: #7F8489;
    --color-surface-selector-control-hover: #F5F6F6;
    --color-border-pressed: #686C72;
    --radius-0: 0px;
    --color-border-primary: #ADB1B3;


}

@font-face {
    font-family: "Publico Headline";
    src: url("../fonts/PublicoHeadlineRomanRegular.woff2");
}

@font-face {
    font-family: "Graphik";
    src: url("../fonts/GraphikRegular.woff2");
    font-style: normal;
}

@font-face {
    font-family: "Graphik";
    src: url("../fonts/GraphikMedium.woff2");
    font-style: normal;
    font-weight: 500;
}




/*VARIABLES AND FONTS*/



body {
    height: 100vh;
    width: 100%;
    padding: var(--body-padding) var(--body-padding) 0 var(--body-padding);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.paychex-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.slugline-animation {
    font-family: var(--font-family-special-headline);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--font-weight-400);
    line-height: var(--font-line-height-400);
}

.paychex-footer.LL {
    display: flex;
    height: 24px;
    min-width: 24px;
    padding: var(--spacing-small) var(--spacing-medium);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-small);

    font-family: Graphik;
    font-size: var(--font-size-100);
    font-style: normal;
    font-weight: var(--font-weight-400);
    line-height: var(--font-size-300);
    color: var(--common-text-component-label);
}

.paychex-footer.WF {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-12);
}

@media (max-width: 900px) {
    .paychex-footer.WF {
        display: none;
    }
}

.paychex-footer.link-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.paychex-footer.link-text {
    color: var(--color-text-primary);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-xs);
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: 150%;
    text-decoration: none;
    padding: var(--spacing-small) var(--spacing-medium);
}

.paychex-footer.social-icons {
    color: var(--color-text-primary);
    text-align: center;
    font-family: "Font Awesome 6 Brands";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.paychex-login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-top: unset;
    padding-bottom: var(--spacing-64);
    gap: var(--spacing-64);

    width: 100%;
    max-width: 484px;
    min-width: 0;
}

.paychex-login-title {
    color: var(--color-text-primary, #1D1E1F);
    text-align: center;
    font-family: var(--font-family-special-headline, "Publico Headline");
    font-size: clamp(1rem, 3.556vw, 2rem);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: clamp(1.5rem, 4.444vw, 2.5rem);
    white-space: nowrap;
}

.paychex-supporting-text {
    color: var(--color-text-secondary, #4C4F52);
    text-align: center;
    font-family: var(--font-family-body, Graphik);
    font-size: var(--font-size-body-md, clamp(0.75rem, 1.5vw + 0.25rem, 1rem));
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 150%;
    padding: var(--spacing-12) 0;
}

.paychex-form-wrapper {
    max-width: 484px;
    margin: auto;
}

.paychex-button {
    display: flex;
    width: 100%;
    min-width: 96px;
    text-align: center;
    border: none;
    cursor: pointer;
    padding: var(--spacing-12, 12px) var(--spacing-content-padding-sm, 12px);
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    background: var(--color-surface-button-primary, #0059A2);
    text-decoration: none;
}

.paychex-button:hover {
    background: var(--color-surface-button-primary-hover, #0071CB);
}

.paychex-button:active {
    background: var(--color-surface-button-primary-pressed, #0A91ED);
}

.paychex-button:focus-visible {
    border-radius: var(--radius-0, 0);
    outline: none;
    box-shadow: 0 0 0 2px var(--color-border-focus-fx, #7BC8FE);
    background: var(--color-surface-button-primary, #0059A2);
}

.paychex-button:disabled {
    border-radius: var(--radius-0, 0);
    cursor: not-allowed;
    background: var(--color-surface-button-primary-disabled, #F5F6F6);

}

.paychex-button:disabled .button-text {
    color: var(--color-text-disabled, #7F8489);
}

.paychex-button:disabled .paychex-input-icon {
    color: var(--color-text-primary, #1D1E1F);
}

/* Secondary variant */
.paychex-button.secondary {
    border: 1px solid var(--color-border-action-secondary, #ADB1B3);
    background: var(--color-surface-button-secondary, #F8F6F4);
}

.paychex-button.secondary:hover {
    border-color: var(--color-border-hover, #7F8489);
    background: var(--color-surface-button-secondary-hover, #EFEBE5);
}

.paychex-button.secondary:active {
    border: 1px solid var(--color-border-pressed, #686C72);
    background: var(--color-surface-button-secondary-pressed, #DED6CA);
}

.paychex-button.secondary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-border-focus-fx, #7BC8FE);
}

.paychex-button.secondary .paychex-button-text {
    color: var(--color-surface-button-primary, #0059A2);
}

.paychex-button.tertiary {
    padding: var(--spacing-6, 6px);
    background-color: transparent;
}

.paychex-button.tertiary:active {
    background: var(--color-surface-button-secondary-pressed, #DED6CA);
}

.paychex-button.tertiary.small {
    width: 32px;
    min-width: unset;
}

.paychex-button.tertiary:hover {
    background: var(--color-surface-button-secondary-hover, #EFEBE5);
}

.paychex-button.icon {
    min-width: unset;
    width: min-content;
    aspect-ratio: 1;
}


.button-text {
    color: var(--color-text-action-primary, #FFF);
    font-family: var(--font-family-component, Graphik);
    font-size: var(--font-size-200, 14px);
    font-style: normal;
    text-decoration: none;
    font-weight: var(--font-weight-400, 400);
    line-height: var(--font-line-height-300, 20px);
}

.paychex-button.text {
    background-color: var(--color-surface-button-text);
}

.paychex-button.text:hover .button-text {
    text-decoration: underline;
    text-underline-offset: var(--spacing-4);
}

.paychex-button.text:active .button-text {
    color: var(--color-surface-button-primary-pressed, #0A91ED);

}

.button-text.text {
    color: var(--color-surface-button-primary, #0059A2);
    font-family: var(--font-family-component, Graphik);
    font-size: var(--font-size-200, 14px);
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
    line-height: var(--font-line-height-300, 20px);
    text-decoration: none;
    padding: 0 var(--spacing-4);
}



.input-group {
    display: flex;
    padding: var(--spacing-0, 0);
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-16, 16px);
    align-self: stretch;
}



.paychex-input-field {
    color: var(--color-text-placeholder, #595C61);
    font-family: var(--font-family-body, Graphik);
    font-size: var(--font-size-200, 14px);
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
    line-height: var(--font-size-400, 20px);
    border: unset;
    width: 100%;
    background-color: transparent;
}

.paychex-input-label-text {
    color: var(--color-text-subtle);
    font-family: var(--font-family-component);
    font-size: var(--font-size-200, 14px);
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
    line-height: var(--font-line-height-100, 16px);
    display: flex;
    align-items: center;
    overflow-wrap: anywhere;
    gap: 2px;
    text-transform: capitalize;
}

.required-indicator {
    color: var(--color-text-feedback-error);

    font-family: Graphik;
    font-size: var(--font-size-100);
    font-style: normal;
    font-weight: var(--font-weight-400);
    line-height: var(--font-size-300);

}

.paychex-input-label-wrapper.secondary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-form-label-spacing, 4px);
    align-self: stretch;
}

.paychex-input-icon .kc-input-icon i img {
    height: 16px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}


.paychex-input-wrapper {
    display: flex;
    height: var(--spacing-44);
    min-width: 80px;
    padding: var(--spacing-12);
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-8);
    align-self: stretch;
    border-radius: var(--radius-0);
    background: var(--color-surface-input-field-secondary);
    border: 1px solid transparent;
}

.paychex-input-wrapper.error {
    border: 1px solid var(--color-border-feedback-error, #FC4E51);
}

.error.text {
    color: var(--color-text-feedback-error, #C51013);
    font-family: var(--font-family-component, Graphik);
    font-size: var(--font-size-component-sm, 12px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: var(--font-line-height-component-sm, 16px);
    display: none;
}

.paychex-input-wrapper.error+.error.text {
    display: block;
}



.paychex-input-field:focus-visible {
    outline: none;

}

.paychex-input-label-wrapper:focus-within .paychex-input-wrapper {
    box-shadow: 0 0 0 2px var(--color-border-focus-fx);
}

.paychex-input-wrapper {
    --input-bg: var(--color-surface-input-field-primary, #F8F6F4);
    background: var(--input-bg);
    transition: background 0s ease;
}

.paychex-input-wrapper:hover {
    --input-bg: var(--color-surface-input-field-primary-hover, #EFEBE5);
    background: var(--input-bg);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--input-bg) inset !important;
    -webkit-text-fill-color: inherit !important;
    transition: background-color 5000s ease-in-out 0s;
}

.paychex-inputs-container {
    margin: 12px 0px 32px 0px;
    display: flex;
    padding: var(--spacing-0);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-20);
}

.google-recaptcha {
    margin-bottom: 32px;
}

.idp-button {
    display: flex;
    width: 32px;
    height: 32px;
    max-width: 32px;
    padding: var(--spacing-6, 6px);
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--color-border-action-secondary, #ADB1B3);
    background: var(--color-surface-button-secondary, #F8F6F4);
}

.social-divider-text {
    color: var(--color-text-tertiary, #686C72);
    font-family: var(--font-family-body, Graphik);
    font-size: var(--font-size-body-xs, 12px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 150%;
    background-color: white;
    text-align: center;
}

.fa-icon.white {
    color: white;
}

.social-divider {
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-divider::before,
.social-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--color-border-tertiary, #E7E7E7);

}

.idp-section {
    margin-top: 32px;
    display: grid;
    padding: var(--spacing-0, 0);
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-16, 16px);
    align-self: stretch;
}

.idp-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.placeholder-for-app {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-20);
}

.authenticator-logo {
    display: flex;
    gap: var(--spacing-8);
    align-self: center;
    justify-self: center;
}

.hide {
    display: none !important;
}

#switchType {
    width: 100%;
}

.paychex-text.default {
    color: var(--color-text-secondary, #4C4F52);

    font-family: var(--font-family-body, Graphik);
    font-size: var(--font-size-body-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 150%;
}

.paychex-text.small {
    color: var(--color-text-subtle, #686C72);
    font-family: var(--font-family-component, Graphik);
    font-size: var(--font-size-200, 14px);
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
    line-height: var(--font-line-height-100, 16px);
}

.recovery-code-list {
    list-style-type: none;
    padding: 0;
    padding-top: var(--spacing-16);
    padding-bottom: var(--spacing-8);

}

.recovery-code-actions {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-4);
    padding: var(--spacing-4);
    margin-bottom: var(--spacing-16);
}

.recovery-codes-confirmation {
    padding-bottom: var(--spacing-32);
}

.button.icon {
    padding: var(--spacing-6);
}

.paychex-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.paychex-checkbox-input {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.paychex-checkbox-custom {
    height: 20px;
    width: 20px;
    border: 2px solid var(--color-border-tertiary, #ADB1B3);
    background: #FFFFFF;
    display: inline-block;
    position: relative;
    transition: background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.paychex-checkbox-label:has(.paychex-checkbox-input:focus-visible) .paychex-checkbox-custom {
    box-shadow: 0 0 0 4px var(--color-border-focus-fx, #7BC8FE);
}

.paychex-checkbox-input:checked+.paychex-checkbox-custom {
    background: var(--color-surface-button-primary, #0071cb);
    border-color: var(--color-surface-button-primary, #0071cb);
}

.paychex-checkbox-input:checked+.paychex-checkbox-custom::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 13px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg);
}

.paychex-checkbox-input:checked+.paychex-checkbox-custom:hover {
    background: var(--color-surface-button-primary-hover, #0a91ed);
    border-color: var(--color-surface-button-primary-hover, #0a91ed);
}

.paychex-checkbox-input:checked+.paychex-checkbox-custom:active {
    background: var(--color-surface-button-primary-active, #0059a2);
    border-color: var(--color-surface-button-primary-active, #0059a2);
}

.paychex-checkbox-text {
    color: var(--color-text-primary, #1D1E1F);
    font-family: var(--font-family-component, Graphik);
    font-size: var(--font-size-component-md, 14px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: var(--font-line-height-component-md-plus, 20px);
}

.paychex-checkbox-label.large .paychex-checkbox-custom {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
}

.keycloak-message-box {
    display: flex;
    padding: var(--spacing-16, 16px) var(--spacing-20, 20px);
    align-items: center;
    gap: var(--spacing-8, 8px);
    align-self: stretch;
    border-radius: var(--radius-0, 0);
    font-family: var(--font-family-component, Graphik);
    font-size: var(--font-size-component-md, 14px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: var(--font-line-height-component-md-plus, 20px);
}

.keycloak-message-box.error {
    background: var(--color-surface-feedback-error, #FFE9E9);
    color: var(--color-text-feedback-error, #C51013);

}

.keycloak-message-box.success {
    background: var(--color-surface-feedback-success, #E2F8E9);
    color: var(--color-text-feedback-success, #13693E);
}

.keycloak-message-box.warning {
    background: var(--color-surface-feedback-warning-1, #FFFBC1);
    color: var(--color-text-feedback-warning-1, #A56203);
}

.paychex-alert-boxes {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-12);
    max-width: 484px;
    margin: auto;
    margin-top: var(--spacing-12);
}

#kc-totp-settings {
    margin-top: var(--spacing-12);
}

.copy-feedback {
    position: fixed;
    bottom: var(--spacing-16);
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    white-space: nowrap;
    z-index: 9999;
    display: flex;
    height: 64px;
    padding: var(--spacing-16, 16px) var(--spacing-20, 20px);
    align-items: center;
    gap: 12px;
    border-radius: var(--radius-0, 0);
    background: var(--color-surface-accent-accent-4, #E7F3FF);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    color: var(--color-text-primary, #1D1E1F);
    font-family: var(--font-family-component, Graphik);
    font-size: var(--font-size-component-md, 14px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: var(--font-line-height-component-md, 16px);
}

.figure {
    --font-size-slugline: 20px;
    display: grid;
    width: max-content;
    overflow: hidden;
    grid-template-areas: "work better together";
    color: #000;
    font-family: var(--font-family-special-headline, "Publico Headline"), serif;
    font-size: var(--font-size-slugline);
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
    line-height: var(--font-line-height-400, 24px);
    user-select: none;
}

.figure:hover .figure-layer {
    transform: translateX(0%);
    color: black;
}

.figure-layer {
    color: transparent;
    transition: all 1s;
    padding-left: calc(var(--font-size-slugline) / 4);

}

.figure-together {
    grid-area: together;
    padding-left: calc(var(--font-size-slugline) / 4);
    background-color: white;
    z-index: 1;
}

.figure-work {
    grid-area: work;
    transform: translateX(200%);
}

.figure-better {
    grid-area: better;
    transform: translateX(100%);
}

.paychex-input-radio-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    margin: 8px 0;
    position: relative;
}

/* Hide native input */
.paychex-input-radio-wrapper input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Visual control */
.paychex-input-radio-wrapper .radio-control {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border: 1px solid var(--color-border-primary);
    border-radius: 68%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    align-self: flex-start;
}

/* Checkbox variant */
.paychex-input-radio-wrapper .radio-control.checkbox {
    border-radius: 4px;
}

/* Inner indicator */
.paychex-input-radio-wrapper .radio-control::after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--color-surface-selector-track-on);
    border-radius: 50%;
    transform: scale(0);
    border: 2px solid var(--color-surface-selector-track-on);
    transition: transform 0.15s ease;
}

/* Checkbox indicator */
.paychex-input-radio-wrapper .radio-control.checkbox::after {
    border-radius: 2px;
}

/* Checked state */
.paychex-input-radio-wrapper input:checked~.radio-control {
    border-color: var(--color-surface-selector-track-on);
    border-width: 2px;
}


.paychex-input-radio-wrapper input:checked~.radio-control::after {
    transform: scale(1);
}

/* Hover */
.paychex-input-radio-wrapper:hover .radio-control {
    border-color: var(--color-border-hover);
    background: var(--color-surface-selector-control-hover);
}

/* Focus (keyboard accessibility) */
.paychex-input-radio-wrapper input:focus-visible~.radio-control {
    outline: 2px solid #4c9ffe;
    outline-offset: 2px;
}

.paychex-input-radio-wrapper:active .radio-control {
    border-color: var(--color-border-pressed, #686C72);
}

.padlock-wrapper {
    margin: auto;
    width: fit-content;
    margin-bottom: var(--spacing-32);
}

.authenticator-placeholder {
    height: 64px;
    justify-content: center;
    display: flex;
    margin: auto;
}

.app-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

}

.app-placeholder i {
    font-size: 18px;
    padding-right: 8px;
    vertical-align: sub;
}

.app-placeholder i.fa-circle-check {
    color: #139D4D;
}

.hide {
    display: none !important;
}


.workforce-message-container {
    background: #fff;
    border-left: 4px solid var(--color-product-category-specific-product-cat-primary, #AA93F5);
    padding: var(--spacing-16);
    margin: 1rem 0;
    max-width: 280px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    bottom: 15%;
    gap: var(--spacing-12);
}

.workforce-message-container.hidden .workforce-message-content,
.workforce-message-container.hidden .workforce-message-title,
.workforce-message-container.hidden .workforce-message-link {
    display: none;
}

.workforce-message-container.hidden {
    border-right: 4px solid var(--color-product-category-specific-product-cat-primary, #AA93F5);
    border-left: unset;
}

.workforce-message-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.workforce-message-title {
    color: var(--color-text-primary, #1D1E1F);
    font-family: var(--font-family-title, Graphik);
    font-size: var(--font-size-title-sm, 16px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: var(--font-line-height-title-sm, 20px);
}

.workforce-message-content {
    color: var(--color-text-primary, #1D1E1F);
    font-family: var(--font-family-body, Graphik);
    font-size: var(--font-size-body-sm, 14px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 150%;
}

.workforce-message-link {
    display: inline-block;
    text-decoration: underline;
    font-family: var(--font-family-body);
    font-size: var(--font-size-sm);
}

@media screen and (max-width: 1100px) {
    .workforce-message-container {
        display: none;
    }
}