/* ==========================================================================
    LAYOUTS
    -------------------------------------------------------------------------
    Section
      : Action next to title (Override/complement)
      : Tabs in header (Override/complement)

    ELEMENTS
    -------------------------------------------------------------------------
    Buttons
      : Main
        : Primary (Override/complement)
    Indicators
      : Pills (New)
        : Good (New)
        : Great (New)
        : Skills (New)
        : Strong (New)

    COMPONENTS
    -------------------------------------------------------------------------
    Cards
      : Articles as cards (Override/complement)
    Lists
      : Skills (New)
    Navigation
      : Steps bar (Override/complement)
      : Tabs (Inverting clickable colors - commented and ready to use)

    WIDGETS
    -------------------------------------------------------------------------
    Attachment upload (New)
    Registered
      : Article (Override/complement)
    Search
      : Visible (Override/complement)

    MODULES
    -------------------------------------------------------------------------
    Banner
      : Home (New)
      : Secondary (New)
    Slider (New)

    PAGETYPES
    -------------------------------------------------------------------------
    Search jobs
      : Cards
        : Result (Override/complement)

    UTILITIES
    -------------------------------------------------------------------------
    XXX
========================================================================== */

/*
    LAYOUTS/Section: Action next to title (Override/complement)
*/

.section__header--action-below-title {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section__header.section__header--action-below-title .section__header__actions{
    margin-left: 0rem;
    margin-top: var(--spacer--m2);
}

.section__header.section__header--action-below-title .section__header__actions .button{
    min-width: var(--buttons--width--min);
}

/* Media query to target only mobile */
@media all and (max-width:750px) {

    .section__header--action-below-title .section__header__text + .section__header__actions {
        margin-top: var(--spacer--s2);
    }

    .section__header.section__header--action-below-title .section__header__actions .button{
        min-width: 100%;
    }

    .section__header.section__header--action-below-title .section__header__actions{
        width: 100%;
    }

}

/*
    LAYOUTS/Section: Tabs in header (Override/complement)
*/

.section__header.section__header--tabs + *:not([class*="--narrow"]) {
    margin-top: var(--spacer--xl);
}

/*
    ELEMENTS/Buttons: Main: Primary (Override/complement)
    ↳ to be deleted when we get the Application Flow wizard properly configured
*/

.gotoButton {
    --buttons--border--color: var(--color--buttons);
    --buttons--background--color: var(--color--white);
    --buttons--font--color: var(--color--buttons);
}

.gotoButton:hover {
    --buttons--border--color: var(--color--buttons);
    --buttons--background--color: var(--color--buttons--sub-3);
    --buttons--font--color: var(--color--buttons);
}

.gotoButton:focus,
.gotoButton:active {
    --buttons--outline--width: .2rem;
    --buttons--border--color: var(--color--black);
    --buttons--border--width: .2rem;
    --buttons--background--color: var(--color--buttons--sub-4);
    --buttons--font--color: var(--color--buttons);
}

.gotoButton.button--disabled,
.gotoButton:disabled {
    --buttons--border--color: var(--color--disabled--sub-1);
    --buttons--background--color: var(--color--disabled--sub-1);
    --buttons--font--color: var(--color--disabled);
}

/*
    ELEMENTS/Indicators: Pills (New)
*/

:root {
    --matching--color--strong: var(--color--success);
    --matching--color--great: var(--color--great-match);
    --matching--color--good: var(--color--fair-match);
    --border--color--skills: var(--color--black);
}

.pill, .list--pills .list .list__item span {
    display: inline;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    font-size: 1.4rem;
    padding: var(--spacer--xs) var(--spacer--s);
    background-color: var(--matching--background--color);
    color: var(--color--white);
    font-weight: 700;
    vertical-align: middle;
}

.body--job-detail-recommendations .main__wrapper .main__content .pill {
    width: max-content;
    margin-bottom: 2rem;
}

/*
    ELEMENTS/Indicators: Pills (Within COMPONENTS/Cards: Articles as cards)
*/

/* Inside a card next to title */
.article:not(.article--full-pill) .pill + * {
    margin-left: var(--spacer--s);
}

/* Inside a card but 100% wide */
.article--full-pill .pill {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.article--full-pill .article__header__text__title {
    padding-top: var(--spacer--m);
}

/*
    ELEMENTS/Indicators: Pills: Good (New)
*/

.pill--good {
    --matching--background--color: var(--matching--color--good);
}

/*
    ELEMENTS/Indicators: Pills: Great (New)
*/

.pill--great {
    --matching--background--color: var(--matching--color--great);
}

/*
    ELEMENTS/Indicators: Pills: Skills (New)
*/

.pill--skills, .list--pills .list .list__item span {
    --matching--background--color: var(--color--white);
    color: var(--color--font);
    border: .1rem solid var(--border--color--skills);
}

.pill--skills-b {
    --matching--background--color: var(--color--white);
    color: var(--color--font);
    border: .1rem dashed var(--border--color--skills);
}

.skills .list--skills--active .list__item:first-child {
    margin-top: var(--spacer--s);
}

/*
    ELEMENTS/Indicators: Pills: Strong (New)
*/

.pill--strong {
    --matching--background--color: var(--matching--color--strong);
}

/*
    COMPONENTS/Cards: Articles as cards (Override/complement)
*/

.article--card.article--open{
    border: solid 0.1rem var(--color--grey--dark);
}

.article--card.article--open .article__content{
    color: var(--color--grey--darkest);
}

.article--card .button--secondary,
.article--card .button--tertiary,
.article--card .button--share {
    --buttons--font--size: initial;
}

.article--card .article__footer {
    padding-top: calc(var(--card--padding--inners));
    padding-bottom: calc(var(--card--padding--inners));
}

.article--card .article__footer > * + * {
    margin-left: var(--card--padding--outers);
}

.body--search-jobs .article--card .article__footer .button.visibility--mobile-and-tablet {
    margin-left: 0rem;
}

/*
    COMPONENTS/Lists: Skills (New)
*/

.list--pills .list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing--basis);
}

.list--skills .list__item, .list--pills .list .list__item {
    display: inline-flex;
}

/*
    COMPONENTS/Lists: Skills (Within WIDGETS/Details)
*/

.article--details .article__content__view__field__value .list--pills .list {
    margin-left: 0;
    padding-left: 0;
}

.article--details .article__content__view__field__value .list--pills .list li + li {
    margin-top: 0;
}

/*
    COMPONENTS/Lists: Skills (Within WIDGETS/Skills)
*/

.skills .list--skills:not(.list--skills--active) {
    display: none;
}

.skills .list--skills .list__item {
    margin-bottom: var(--spacer--s);
}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .skills .list--skills {
        overflow-x: scroll;
        white-space: nowrap;
    }

    .skills .list--skills::-webkit-scrollbar {
        display: none;
    }
}

/*
    COMPONENTS/Navigation: Steps bar (Override/complement)
*/

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .list--steps .list__item__text__subtitle {
        margin-bottom: -.6rem;
        width: 1.6rem;
        height: 1.6rem;
        text-indent: -999.9rem;
        overflow: hidden;
    }

}

/*
    COMPONENTS/Navigation: Tabs (Inverting clickable colors - commented and ready to use)
*/

/*
.tabs__list__item:not(.tabs__list__item--active),
.tabs__list__item:not(.tabs__list__item--active):link,
.tabs__list__item:not(.tabs__list__item--active):visited {
    color: inherit;
}

.tabs__list__item:not(.tabs__list__item--active):hover,
.tabs__list__item:not(.tabs__list__item--active):focus,
.tabs__list__item:not(.tabs__list__item--active):active {
    color: var(--color--clickeable);
}

.tabs__list__item--active,
.tabs__list__item--active:link,
.tabs__list__item--active:visited,
.tabs__list__item--active:hover,
.tabs__list__item--active:focus,
.tabs__list__item--active:active {
    color: var(--color--clickeable);
}

+TBD+
*/

/*
    WIDGETS/Attachment upload (New)
*/

.article--attachments-upload {
    border-radius: var(--boxes--border--radius);
    border-width: .1rem;
    border-style: dashed;
    border-color: var(--boxes--border--color);
    background-color: var(--boxes--background--color);
    padding: var(--boxes--padding--outers) var(--boxes--padding--outers);
}

.article--attachments-upload .article__header {
    margin-bottom: var(--boxes--padding--outers);
    border-bottom-width: .1rem;
    border-bottom-style: solid;
    border-bottom-color: var(--dividers--border--color);
    padding-bottom: var(--boxes--padding--outers);
}

.article--attachments-upload .article__header .fv {
    vertical-align: middle;
}

/*
    WIDGETS/Registered: Article (Override/complement)
*/

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .article--registered {
        margin: 0;
        background-color: unset;
        padding: 0;
    }

}

/*
    WIDGETS/Search: Visible (Override/complement)
*/

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .section[search-type="visible"] .section__header__text {
        display: flex;
        margin-bottom: var(--spacer--l);
    }

}

/*
    MODULES/Banner: Home (New)
*/

.banner__wrapper .banner__text__title{
    font-size: var(--font--size--11);
}

.banner--main {
    --banner--height: 37.2rem;
    min-height: var(--banner--height);
    background-position: right top;
    color: var(--color--white);
}

.banner--main--home {
    --banner--height: 30rem;
    min-height: var(--banner--height);
    background-image: var(--home__banner--background--image);
    background-position: left top;
    background-size: cover;
}

.banner--main--home .banner__wrapper {
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.banner--main--home .banner__wrapper > * {
    width: 100%;
}

.banner--main--home .banner__form {
    margin-top: var(--spacer--l);
}

.banner__text__subtitle {
    text-transform: none;
}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .banner {
        border-top: var(--spacer--l) solid var(--color--white);
    }

    .title--banner {
        font-size: 4rem;
    }
}

/* Media query to target only desktop */
@media all and (min-width:1440px) {
    .banner--main--home {
        --banner--height: 32rem;
    }
}

.body--job-detail-general-government .banner--main,
.body--application-methods-government .banner--main,
.body--register--general-government .banner--main,
.success--general-government .banner--main,
.body--application-confirmation-general-government .banner--main {
    background-image: var(--banner--background--image--secondary-general-government);
}

.body--job-detail-public-schools .banner--main,
.body--application-methods-public-schools .banner--main,
.body--register--public-schools .banner--main,
.success--public-schools .banner--main,
.body--application-confirmation-public-schools .banner--main {
    background-image: var(--banner--background--image--secondary-public-schools);
}

.body--job-detail-public-safety .banner--main,
.body--application-methods-public-safety .banner--main,
.body--register--public-safety .banner--main,
.success--public-safety .banner--main,
.body--application-confirmation-public-safety .banner--main {
    background-image: var(--banner--background--image--secondary-public-safety);
}

/* Media query to target only tablet */

@media all and (min-width: 750px) and (max-width:1024px) {
    .banner--main {
        --banner--height: 21.5rem;
    }
}

@media all and (max-width:1024px) {
    .banner--main {
        background: var(--color--brand--sub-1);
    }

    .banner--main--home {
        background: none;
        background-image: var(--home__banner--background--image);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
    }

    .body--general-government .banner--main,
    .body--job-detail-general-government .banner--main,
    .body--application-methods-government .banner--main,
    .body--register--general-government .banner--main,
    .success--general-government .banner--main,
    .body--application-confirmation-general-government .banner--main {
        background: var(--color--success);
    }

    .body--public-schools .banner--main,
    .body--job-detail-public-schools .banner--main,
    .body--application-methods-public-schools .banner--main,
    .body--register--public-schools .banner--main,
    .success--public-schools .banner--main,
    .body--application-confirmation-public-schools .banner--main {
        background: var(--color--public--schools);
    }

    .body--public-safety .banner--main,
    .body--job-detail-public-safety .banner--main,
    .body--application-methods-public-safety .banner--main,
    .body--register--public-safety .banner--main,
    .success--public-safety .banner--main,
    .body--application-confirmation-public-safety .banner--main {
        background: var(--color--error);
    }
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .banner--main {
        --banner--height: 18rem;
    }
}

/*
    MODULES/Banner: Secondary (New)
*/

.banner--secondary {
    background-color: var(--color--grey--lighter);
}

.banner--secondary .banner__wrapper {
    height: auto;
    justify-content: center;
}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .banner--secondary .banner__wrapper {
        padding-top: var(--spacer--xxxl);
        padding-bottom: var(--spacer--xxxl);
    }

    .banner--secondary--top + * {
        margin-top: var(--spacer--xl);
    }

    .banner--secondary .banner__text__title * + * {
        margin-left: var(--spacer--m);
    }

}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .banner--secondary .banner__text__title * + * {
        margin-left: var(--spacer--m);
    }

}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .banner--secondary .banner__wrapper {
        padding-top: var(--spacer--xl);
    }

    .banner--secondary .banner__text__title {
        text-align: center;
    }

    .banner--secondary .banner__text__title .banner__text__title__phrase {
        display: block;
        margin-bottom: var(--spacer--l);
    }

    .banner--secondary--top + * {
        margin-top: var(--spacer--s2);
    }

}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .banner--secondary .banner__text__title .button + .banner__text__title__conjunction,
    .banner--secondary .banner__text__title .banner__text__title__conjunction + .button {
        margin-left: var(--spacer--m);
    }

    .banner--secondary .banner__wrapper {
        padding-bottom: var(--spacer--xl);
    }

}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .banner--secondary .banner__wrapper {
        padding-bottom: var(--spacer--xxxl);
    }

    .banner--secondary .banner__text__title .button {
        width: 100%;
    }

    .banner--secondary .banner__text__title .button:nth-of-type(2) {
        margin-top: var(--spacer--l);
    }

    .banner--secondary .banner__text__title .banner__text__title__conjunction {
        display: none;
    }

}

/*
    MODULES/Slider (New)
*/

.slider {
    position: relative;
    z-index: 1;
}

.swiper-container {
    width: calc(100% - (var(--swiper__slide--gap) * 2) - var(--swiper-navigation-size));
}

.swiper-button-next, .swiper-button-prev {
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
    z-index: 3;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 0;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 0;
}

.swiper-slide {
    height: auto;
    padding-bottom: 0.1rem;
}

.swiper-slide .article--card {
    box-sizing: border-box;
    height: 100%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: calc(var(--swiper-navigation-size) / 2);
}

.slider .swiper-slide .article__footer .button--secondary:hover{
    --buttons--background--color: transparent;
}

/*
    PAGETYPES/Search jobs: Cards: Result (Override/complement)
*/

.section--search-jobs .article--result {
    --result--border--radius: 0;
    --result--padding--outers--h: 0;
}

.section--search-jobs .article--result + .article--result {
    margin-top: 0;
}

.section--search-jobs .article--result + .article--result:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    border-top-width: 0.1rem;
    border-top-style: solid;
    border-top-color: var(--dividers--border--color);
}

/* PAGETYPES: Open positions: Results without toggle (Override/complement)
   -------------------------------------------------------------------------- */

.no-symbol .no-symbol label {
    display: none;
}

.CurrencyField .tc_formField input[type=text].no-symbol {
    width: 100%;
}

/* Media query to target only desktop */
@media all and (min-width:750px) {
    .article--result.article--non-toggle .article__content {
        max-height: unset;
        visibility: visible;
        margin-top: var(--result--padding--inners--v);
    }

    .article--non-toggle .article__header__actions {
        display: none;
    }
 }

/* PAGETYPES: Reg/App methods: Article
   -------------------------------------------------------------------------- */

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .article--registered {
        margin: 0;
        background-color: unset;
        padding: 0;
    }

}

/* UTILITIES: XXX
   -------------------------------------------------------------------------- */
.article--view-more--content-box{
    border-radius: 1.60rem;
    box-shadow: 0.00rem 0.00rem 1rem 0.20rem rgba(0, 0, 0, 0.1);
    background-color: var(--color--grey--lighter);
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-top: var(--spacer--xxl);
    padding-right: var(--grid--laterals);
    padding-left: var(--grid--laterals);
    padding-bottom: var(--spacer--l);
    text-align: left;
}

/* Media query to target only desktop */
@media (min-width: 1025px) {
    .article--view-more--content-box{
        --article--width--max: var(--content--w--narrower);
    }
}

/* Section: Learn More Menu */
.section.section--learn-more {
    display: flex;
    justify-content: flex-end;
}

/* Hide all submenu lists by default */
.submenu__list {
    display: none;
  }

@media all and (min-width:1025px) {
    /* Show the submenu list only when hovering over its parent menu item / Public Safety Section / */
    .menu__item:hover > .submenu__list,
    .submenu__item:hover > .extrasubmenu__list {
        display: block;
    }

    /* Ensure the parent item remains visible during hover */
    .menu__item:hover,
    .submenu__item:hover {
        position: relative;
    }

    .menu__item:hover > .submenu__list,
    .submenu__item:hover > .extrasubmenu__list {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Add a smooth transition effect */

@media all and (min-width:1025px) {
    .submenu__list, .extrasubmenu__list {
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
        pointer-events: none;
    }
}

.extrasubmenu__link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacer--xs);
    background-color: var(--submenu__link--background--color);
    padding-top: var(--submenu__link--padding--v);
    padding-right: var(--submenu__link--padding--h);
    padding-bottom: var(--submenu__link--padding--v);
    padding-left: var(--submenu__link--padding--h);
    font-size: var(--submenu__link--font--size);
    font-weight: var(--submenu__link--font--weight);
    color: var(--submenu__link--font--color);
    cursor: pointer;
}

@media all and (min-width:1025px) {
    .extrasubmenu__link:hover {
        background-color: var(--color--white);
        color: var(--color--font);
    }

    .extrasubmenu__item:hover {
        background-color: var(--color--clickeable);
        color: var(--color--white);
    }
}

.extrasubmenu__list.extrasubmenu__list--overflows-right {
    display: none;
}

.submenu__item.--withExtramenu .submenu__text:after {
    content: "\f107";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: var(--toggle__icon--width);
    height: var(--toggle__icon--height);
    font-family: FontAwesome;
    font-size: 2.2rem;
    line-height: inherit;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    padding-top: 0.4rem;
    position: relative;
    top: 0.2rem;
    left: 6.5rem;
}

@media all and (max-width:1024px) {
    .submenu__item.--withExtramenu .submenu__text:after {
        left: 9.8rem;
    }
    /* Sub Menu Public Safety */
    .submenu__item.--withExtramenu .submenu--public-safety--isUpArrow:after {
        content: '\f106';
    }
}

.submenu__link {
    padding-right: 0;
}

.submenu__item.--withExtramenu .submenu__link {
    --submenu__link--background--color: var(--color--white);
    --submenu__link--font--color: var(--color--clickeable);
}

.submenu__item.--withExtramenu .submenu__link:active {
    --submenu__link--background--color: var(--color--white);
    --submenu__link--font--color: var(--color--clickeable);
}

@media all and (min-width: 1025px) {
    .menu--item .submenu__item.--withExtramenu .submenu__link:hover {
        --submenu__link--background--color: var(--color--clickeable);
        --submenu__link--font--color: var(--color--white);
    }

    .submenu__item.--withExtramenu .submenu__text:hover,
    .submenu__item.--withExtramenu .submenu__text:hover:after {
        --submenu__link--font--color: var(--color--white);
    }
}

/* General Styles */

/* Header */

.header {
    color: var(--color--white);
    background-color: var(--color--brand);
    margin-bottom: 1rem;
}

@media all and (min-width: 1400px) {
    .header {
        margin-bottom: 2rem;
    }
}

.header__wrapper {
    padding-top: 0;
    padding-bottom: 0;
}

/* Menu States */

.menu__link::after {
    color: unset;
}

.menu--visible .menu__list--separator-left {
    border-left-width: 0;
    border-left-style: none;
    margin-left: 0;
    padding-left: 0;
}

.menu .menu--toggleable .toggle {
    background-color: var(--color--brand);
}

.toggle--menu .toggle__icon,
.toggle--menu .toggle__icon::after,
.toggle--menu .toggle__icon::before {
    background-color: var(--color--white);
}

.menu--toggleable .menu__panel {
    z-index: 15;
}

@media all and (min-width:1025px) {
    .menu__link[aria-haspopup="true"][aria-expanded="true"] {
        background-color: var(--color--brand);
        border: none;
    }

    .menu--visible .menu__item:hover:first-child .menu__link .menu__text,
    .menu--visible .menu__list--separator-left .menu__item .menu__link:hover {
        color: var(--color--white);
    }

    .menu--visible .menu__item:hover .menu__link[aria-haspopup="true"] {
        background-color: var(--color--brand);
        border: none;
        box-shadow: none;
    }

    .menu--visible .menu__item:hover .menu__link[aria-haspopup="true"] + .submenu__list {
        width: 20rem;
    }

    .menu--visible .menu__item .menu__link[aria-haspopup="true"] + .submenu__list {
        width: 18rem;
    }

    .menu--visible .menu__item:hover.menu__item:after {
        content: "";
        position: absolute;
        width: 100%;
        height: .3rem;
        background-color: var(--color--white);
        top: 6.65rem;
    }
}

/* Footer */

.footer {
    height: 9rem;
    color: var(--color--white);
    background-color: var(--color--brand);
    align-content: center;
}

.footer__wrapper {
    padding-top: 0;
}

.footer .footer__wrapper .footer__content {
    justify-content: center;
}

.footer .footer__wrapper .footer__content .footer__links__item {
    color: var(--color--white);
    font-weight: 400;
    text-decoration-color: var(--color--white);
}

/* Home */

.body--home .banner__text {
    text-align: center;
    margin: 3rem 0;
}

@media all and (max-width: 750px) {
    .body--home .banner__form--buttons .button {
        margin-top: 2rem;
    }
}

.body--home .banner--secondary.banner--secondary--top {
    margin-top: 2rem;
    text-align: center;
}

.body--home .banner--secondary .banner__secondary__title {
    color: var(--color--brand);
    font-size: 4rem;
    margin: 2.5rem 0;
}

.body--home .banner--secondary .banner__secondary__text {
    line-height: 2.2rem;
    min-width: 30rem;
    max-width: 45rem;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.body--home .banner--secondary .button {
    margin-bottom: 2rem;
}

.body--home .banner__form.banner__form__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.body--home .section--jobs-slider .section__header__text .section__header__text__title {
    font-size: var(--font--size--11);
}

.body--home .form--grid--2 .fieldSpec.TextField .TextField {
    background-image: var(--icon--background--image--search);
    background-position: center right;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-size: 2% 100%;
}

.body--home .form--grid:not(.form--grid--1) .Section:not(.Section--collapsible--bottom) .button-bar::before {
    display: none;
}

.form--grid--2 .fieldSpec.button-home-search {
    width: 100%;
}

.body--home .button.button-view-open-positions {
    white-space: nowrap;
}

.body--home .form--search .field--align{
    padding-top: 2.7rem;
}

@media all and (max-width: 1024px){
    .body--home .form--search .field--align{
        padding-top: 3rem;
    }
}

@media all and (max-width: 1160px) {
    .body--home .banner__form.banner__form__wrapper {
        flex-direction: column;
        gap: 2rem;
    }
}

@media all and (max-width: 750px) {

    .body--home .form--grid--2 .fieldSpec.TextField {
        width: 100%;
    }

    .body--home .form--grid--2 .fieldSpec.TextField .TextField {
        background-size: 3%;
    }

    .form--grid--2 .fieldSpec.button-home-search {
        width: 100%;
    }

    .body--home .button.button-view-open-positions {
        background-color: var(--color--white);
        color: var(--color--clickeable);
        text-decoration-line: underline;
        text-decoration-color: var(--color--clickeable);
        text-decoration-thickness: 0.05rem;
    }

    .body--home .banner__form--buttons {
        margin: 0 1.6rem;
    }

    .body--home .banner__form--buttons .button.button--primary {
        width: 100%;
    }

    .body--home .form--search .field--align{
        padding-top: 0;
    }

    .body--home .section--jobs-slider .section__header__text .section__header__text__title {
        text-align: center;
    }
}

@media all and (max-width: 550px) {
    .body--home .form--grid--2 .fieldSpec.TextField .TextField {
        background-size: 4%;
    }
}

/* Search Jobs */

@media (min-width: 1025px) {
    .body--search-jobs .grid--2--sidebar--filters > .grid__item--filters,
    .body--general-government .grid--2--sidebar--filters > .grid__item--filters,
    .body--public-schools .grid--2--sidebar--filters > .grid__item--filters,
    .body--public-safety .grid--2--sidebar--filters > .grid__item--filters {
        margin-right: 8rem;
    }
}

.section__content__results .results .article__footer .button--primary {
    width: 11rem;
}

.section--search-jobs .toggle.toggle--search {
    background-color: var(--color--white);
}

/* Profiles */

.table__wrap .table {
    border-collapse: collapse;
}

.table__wrap .table tr,
.table__wrap .table th,
.table__wrap .table td {
    border: solid 0.1rem var(--color--grey--dark);
}

.table--default thead tr th {
    background-color: var(--color--brand--sub-1);
    color: var(--color--white);
}

.table--default thead tr th:hover {
    color: var(--color--white);
}

.section__header--tabs .tabs__list__item {
    text-transform: none;
}

.body--profile .tf_attachments .downloadAttachmentsButton {
    padding-left: 0rem;
    border-left-width: 0rem;
}

.body--profile .tf_skills .list--pills .list__item span {
    color: var(--color--white);
    background-color: var(--color--brand--sub-1);
    border: none;
}

.body--profile .banner__text__title.title.title--banner {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.body--profile .section__header__text__title.title,
.body--profile-job-applications .banner__text__title.title,
.body--profile-job-alerts .banner__text__title.title {
    font-size: 4rem;
    font-weight: 700;
}

.body--profile-job-alerts .banner__text__subtitle.profile-banner-subtitle,
.body--profile-job-applications .banner__text__subtitle.profile-banner-subtitle {
    text-transform: none;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

@media screen and (max-width: 750px) {
    .body--profile .section__header__text__title.title,
    .body--profile-job-applications .banner__text__title.title,
    .body--profile-job-alerts .banner__text__title.title {
        font-size: var(--spacer--xl);
    }
}

/* Profile Job Alerts */

.body--profile-job-alerts .table--default tbody tr td:last-child {
    display: flex;
    align-items: center;
    align-content: center;
    width: 100%;
}

.body--profile-job-alerts .table--jobs .profile-edit-icon {
    width: 1.8rem;
    height: 1.8rem;
    background-image: var(--icon--background--image--edit);
    background-repeat: no-repeat;
    margin-right: 1rem;
}

.body--profile-job-alerts .table--jobs .profile-delete-icon {
    width: 1.8rem;
    height: 1.8rem;
    background-image: var(--icon--background--image--delete);
    background-repeat: no-repeat;
}

.table .action{
    --action__icon--width: var(--spacer--l);
    --action__icon--height: var(--spacer--l);
}

/* Links States */

.job-results-name-link {
    color: var(--color--clickeable);
}

/* Job Details */

.body--job-detail .banner__text__subtitle,
.body--job-detail-general-government .banner__text__subtitle,
.body--job-detail-public-safety .banner__text__subtitle,
.body--job-detail-public-schools .banner__text__subtitle {
    text-transform: none;
    font-weight: 400;
    padding-bottom: 1rem;
    font-size: 1.6rem;
}

.body--job-detail .main-panel .grid__item--main,
.body--job-detail-general-government .main-panel .grid__item--main,
.body--job-detail-public-safety .main-panel .grid__item--main,
.body--job-detail-public-schools .main-panel .grid__item--main {
    margin-right: 10rem;
}

.body--job-detail .main-panel .grid__item--main .article__header__text__title,
.body--job-detail-general-government .main-panel .grid__item--main .article__header__text__title,
.body--job-detail-public-safety .main-panel .grid__item--main .article__header__text__title,
.body--job-detail-public-schools .main-panel .grid__item--main .article__header__text__title {
    font-size: var(--spacer--l2);
}

@media all and (max-width: 750px) {
    .body--job-detail .banner__text__title,
    .body--job-detail-general-government .banner__text__title,
    .body--job-detail-public-safety .banner__text__title,
    .body--job-detail-public-schools .banner__text__title {
        font-size: var(--spacer--xl);
    }

    .body--job-detail .main-panel .grid__item--main .article__header__text__title,
    .body--job-detail-general-government .main-panel .grid__item--main .article__header__text__title,
    .body--job-detail-public-safety .main-panel .grid__item--main .article__header__text__title,
    .body--job-detail-public-schools .main-panel .grid__item--main .article__header__text__title {
        font-size: var(--spacer--l);
    }
}

/* Job Details Asides */

.job-detail-share-title.article__header__text__title.title {
    font-weight: 400;
    font-size: 1.6rem;
}

.list--share .shareButton {
    width: 3.9rem;
}

#widgetRelatedJobs .article__header__text__title {
    border-bottom: solid 0.1rem var(--color--grey--dark);
    font-size: 1.6rem;
    padding-bottom: 1rem;
}

#widgetRelatedJobs .list__item__text__title {
    text-decoration: underline;
    text-decoration-color: var(--color--clickeable);
    text-decoration-thickness: 0.1rem;
    font-size: 1.6rem;
}

#widgetRelatedJobs .article__footer {
    margin-top: var(--spacer--l);
}

/* Application Methods */

.list--steps .list__item__text__subtitle {
    background-color: var(--color--grey--dark);
}

.list--steps::after {
    border-bottom-color: var(--color--grey--dark);
}

.form--login .comment {
    padding-top: 2rem;
}

.form--login .comment .link {
    font-size: 1.6rem;
    margin-top: 1rem;
}

/* Application Confirmation */

.list--steps .list__item--filled .list__item__text__subtitle,
.list--steps .list__item--current .list__item__text__subtitle {
    background-color: var(--color--brand--sub-1);
    color: var(--color--white);
}

.list--steps .list__item .list__item__text::after {
    border-bottom-color: var(--color--brand--sub-1);
}

/* Fix for collapsible tables in jobApplications and jobAlerts in Profile */
@media all and (max-width:750px) {
    .table--cards:not(.table--cards--with-no-toggle).table--cards--with-no-actions tbody tr:not(.table__row--open) [colspan] {
        display: block !important; /* needs !important to override core.css*/
    }
    .table--cards:not(.table--cards--with-no-toggle).table--cards--with-no-actions tbody tr:not(.table__row--open) [colspan]:before {
        display: none;
    }
}

/* Success Pages */

.article.article--success .article__header__text__title .title {
    font-size: var(--spacer--xl);
}

/* Search Jobs Learn More Dropdown */

.section.section--learn-more .dropdown {
    text-align: center;
    width: 20.7rem;
}

.section.section--learn-more .dropdown-learn-more-button.dropdown__placeholder {
    border: none;
    border-radius: 0;
    background-image: none;
    background-color: var(--color--buttons--sub-1);
    color: var(--color--white);
    padding-left: 6rem;
    font-weight: 700;
}

.section.section--learn-more .dropdown-learn-more-button.dropdown__placeholder:hover,
.section.section--learn-more .dropdown-learn-more-button.dropdown__placeholder:active {
    border: none;
    border-radius: 0;
    background-color: var(--color--buttons);
    color: var(--color--white);
    text-decoration-line: underline;
    text-decoration-color: var(--color--white);
    text-decoration-thickness: 0.1rem;
}

.section.section--learn-more .dropdown-learn-more-button.dropdown__placeholder:focus {
    outline: none;
    background-color: var(--color--buttons);
    color: var(--color--white);
    text-decoration-line: underline;
    text-decoration-color: var(--color--white);
    text-decoration-thickness: 0.1rem;
}

.section.section--learn-more .dropdown:focus {
    outline-color: var(--color--black);
    outline-width: 0.1rem;
    outline-style: solid;
}

.section.section--learn-more .dropdown-learn-more-button.dropdown__placeholder:disabled {
    border-color: var(--color--disabled);
    background-color: var(--color--disabled--sub-1);
    color: var(--color--disabled);
}

.section.section--learn-more .dropdown .dropdown-learn-more-list {
    text-align: left;
}

.section.section--learn-more .dropdown .dropdown-learn-more-list .dropdown__item {
    color: var(--color--brand);
}

.section.section--learn-more .dropdown .dropdown-learn-more-list .dropdown__item:hover {
    background-color: var(--color--white);
    color: var(--color--font);
}

.section.section--learn-more .dropdown .dropdown-learn-more-list .dropdown__text {
    text-align: left;
    justify-content: flex-start;
    font-size: 1.4rem;
    font-weight: 700;
}

.methodButton--later,
.methodButton--file,
.methodButton--paste,
.methodButton--dropbox {
    justify-content: center;
}

.alert--info {
    --alert--background--color: var(--color--white);
}

/*
    PAGETYPES/Login: login box
*/

.body--login .article{
    border: solid 0.1rem var(--boxes--border--color);
}

.body--login .article .article__header{
    background-color: #01619d;
    padding: 0 var(--login__box--padding--outers);
}

.body--login .article .article__header .article__header__logo .logo{
    height: 8.2rem;
}

.body--login .article .button{
    width: 100%;
}

/*
    ELEMENTS/Login: login box
*/

.body--home .embed-container {
    position: relative;
    max-width: 50%;
    height: 0;
    padding-bottom: 27%;
    overflow: hidden;
    margin: auto;
}

.body--login .article__content {
    /* Widget variables to hide Login with SSO message */
    --a-ssoRedirector-form-heading-margin-bottom: 0;
    --a-ssoRedirector-form-heading-font-size: 0;
    /* Widget variables to hoverride default widget styles */
    --a-ssoRedirector-form-font-family: var(--font-family--primary);
    --a-ssoRedirector-form-color: var(--color--white);
    --a-ssoRedirector-widget-width: 100%;
    --a-ssoRedirector-widget-padding: 0;
}

.body--login .article__content h3 {
   display: none;
}

.body--login .article__content div {
    width: auto;
    padding: 0rem;
}

.body--login .article__content form label {
    --a-portalcorecomponent-label-font-size: 1.6rem;
    --a-portalcorecomponent-label-color: var(--labels--font--color);
    --a-portalcorecomponent-label-font-family: var(--font), Arial, Helvetica, sans-serif;
}

.body--login .article__content form input {
    --a-portalcorecomponent-input-background-color: var(--a-portalcorecomponent-widget-background-color);
    --a-portalcorecomponent-input-border-color: var(--fields--border--color);
    --a-portalcorecomponent-input-border-top-left-radius: 0rem;
    --a-portalcorecomponent-input-border-top-right-radius: 0rem;
    --a-portalcorecomponent-input-border-bottom-right-radius: 0rem;
    --a-portalcorecomponent-input-border-bottom-left-radius: 0rem;
    --a-portalcorecomponent-input-border-top-style: var(--a-portalcorecomponent-field-value-container-border-top-style);
    --a-portalcorecomponent-input-border-right-style: var(--a-portalcorecomponent-field-value-container-border-right-style);
    --a-portalcorecomponent-input-border-bottom-style: var(--a-portalcorecomponent-field-value-container-border-bottom-style);
    --a-portalcorecomponent-input-border-left-style: var(--a-portalcorecomponent-field-value-container-border-left-style);
    --a-portalcorecomponent-input-border-width: var(--a-portalcorecomponent-field-value-container-border-width);
    --a-portalcorecomponent-input-color: var(--fields--font--color);
    --a-portalcorecomponent-input-font-family: var(--fields--font);
    --a-portalcorecomponent-input-font-size: 1.6rem;
    --a-portalcorecomponent-input-font-weight: var(--a-portalcorecomponent-field-value-font-weight);
    --a-portalcorecomponent-input-placeholder-color: var(--a-portalcorecomponent-widget-secondary-color);
    --a-portalcorecomponent-input-focus-border-color: #000;
    --a-portalcorecomponent-input-disabled-border-color: var(--a-portalcorecomponent-widget-disabled-primary-color);
    --a-portalcorecomponent-input-disabled-background-color: var(--a-portalcorecomponent-widget-disabled-primary-color);
    --a-portalcorecomponent-input-disabled-color: var(--a-portalcorecomponent-widget-disabled-color);
}

.body--login .article__content form button {
    width: 100%;
    --a-gs--button--font--size: 1.6rem;
    border-radius: 0rem;
    background-color: var(--buttons--background--color);
    --a-portalcorecomponent-button-background-color: var(--buttons--background--color);
    --a-portalcorecomponent-button-border-top-left-radius: 0rem;
    --a-portalcorecomponent-button-border-top-right-radius: 0rem;
    --a-portalcorecomponent-button-border-bottom-right-radius: 0rem;
    --a-portalcorecomponent-button-border-bottom-left-radius: 0rem;
    --a-portalcorecomponent-button-color: var(--a-gs--color--text--on--fill--primary, var(--a-portalcorecomponent-widget-background-color-selected));
    --a-portalcorecomponent-button-font-family: var(--a-gs--button--font--family, var(--a-portalcorecomponent-widget-font-family));
    --a-portalcorecomponent-button-font-size: var(--a-gs--button--font--size, var(--a-portalcorecomponent-widget-font-size));
    --a-portalcorecomponent-button-font-weight: bold;
    --a-portalcorecomponent-button-line-height: var(--a-portalcorecomponent-widget-line-height);
    --a-portalcorecomponent-button-text-align: center;
    --a-portalcorecomponent-button-hover-background-color: var(--color--buttons--sub-1);
    --a-portalcorecomponent-button-hover-color: var(--a-portalcorecomponent-widget-background-color);
    --a-portalcorecomponent-button-margin-top: 0;
    --a-portalcorecomponent-button-margin-bottom: 0;
    --a-portalcorecomponent-button-margin-left: 0;
    --a-portalcorecomponent-button-margin-right: 0;
    --a-portalcorecomponent-button-box-sizing: border-box;
    --a-portalcorecomponent-button-box-shadow: initial;
    --a-portalcorecomponent-button-disabled-border-color: var(--a-portalcorecomponent-widget-disabled-primary-color);
    --a-portalcorecomponent-button-disabled-background-color: var(--a-portalcorecomponent-widget-disabled-primary-color);
    --a-portalcorecomponent-button-disabled-color: var(--a-portalcorecomponent-widget-disabled-color);
}

.body--login .article__content form button:hover{
    background-color: var(--color--buttons--sub-1);
}

/* Create new arrows for dropdown inputs */

.select2-container--default .select2-selection--multiple .select2-search:first-child:after {
    display: none !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered:not(:has(.select2-selection__choice)) {
    background-image: var(--fields--icon--caret--down);
    background-position: right center;
}

.select2-container--default.select2-container--open .select2-selection--multiple .select2-selection__rendered:not(:has(.select2-selection__choice)) {
    background-image: var(--fields--icon--caret--up);
}
