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

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

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

    WIDGETS
    -------------------------------------------------------------------------
    Attachment upload (New)
    Registered
      : Article (Override/complement)
    Search
      : Visible (Override/complement)
    Job Slider
    Cookies Banner

    MODULES
    -------------------------------------------------------------------------
    Header
    Banner
      : Home (New)
      : Secondary (New)
      : Bottom
    Search Wizard
    Slider (New)
    Footer
      : Links
      : Brands
    Aside

    PAGETYPES
    -------------------------------------------------------------------------
    Search jobs
      : Cards
        : Result (Override/complement)
    Job Detail
    Profile
    Talent Community
    Login
    Reset Password
    Register
    Success

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

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

.section__header--action-next-to-title {
    align-items: baseline;
}

.section__header--action-next-to-title .section__header__text {
    flex-grow: 0;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .section__header--action-next-to-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .section__header--action-next-to-title .section__header__text + .section__header__actions {
        margin-block-start: var(--t-gs--space--s2);
    }

}

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

.section__header.section__header--tabs + *:not([class*="--narrow"]) {
    margin-block-start: 5rem;
}

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

.gotoButton {
    --t-tc--buttons--border--color: var(--t-gs--color--border--on--fill--primary);
    --t-tc--buttons--background--color: var(--t-gs--color--fill--primary);
    --t-tc--buttons--font--color: var(--t-gs--color--text--on--fill--primary);
}

.gotoButton:hover {
    --t-tc--buttons--border--color: var(--t-gs--color--border--on--fill--primary--hover);
    --t-tc--buttons--background--color: var(--t-gs--color--fill--primary--hover);
    --t-tc--buttons--font--color: var(--t-gs--color--text--on--fill--primary--hover);
}

.gotoButton:focus,
.gotoButton:active {
    --t-tc--buttons--outline--width: var(--t-gs--border--width--m);
    --t-tc--buttons--border--color: var(--t-gs--color--border--on--fill--primary--focus);
    --t-tc--buttons--border--width: var(--t-gs--border--width--m);
    --t-tc--buttons--background--color: var(--t-gs--color--fill--primary--focus);
    --t-tc--buttons--font--color: var(--t-gs--color--text--on--fill--primary--focus);
}

.gotoButton.button--disabled,
.gotoButton:disabled {
    --t-tc--buttons--border--color: var(--t-gs--color--border--on--fill--primary--disabled);
    --t-tc--buttons--background--color: var(--t-gs--color--fill--primary--disabled);
    --t-tc--buttons--font--color: var(--t-gs--color--text--on--fill--primary--disabled);
}

.body:not(.body--search-jobs, .body--jobDetail) .link:not(.button--secondary){
    text-decoration-color: var(--t-gs--swatch--neutral--000);
    text-underline-offset: .3rem;
}

/* Edit/Delete Agent buttons fix */
.table--default tbody tr td:last-child .action+.action{
    margin-inline-start: 0;
}

/*
    ELEMENTS/Buttons: Main: Tertiary
*/

.button.button--tertiary {
    text-decoration-color: var(--t-gs--swatch--neutral--000);
    text-underline-offset: .3rem;
}

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

:root {
    --t-gs--swatch--matching--hue: 160;
    --t-gs--swatch--matching--sat: 70%;
    --t-gs--swatch--matching--100: hsl(var(--t-gs--swatch--matching--hue) var(--t-gs--swatch--matching--sat) 100%);
    --t-gs--swatch--matching--095: hsl(var(--t-gs--swatch--matching--hue) var(--t-gs--swatch--matching--sat) 95%);
    --t-gs--swatch--matching--090: hsl(var(--t-gs--swatch--matching--hue) var(--t-gs--swatch--matching--sat) 90%);
    --t-gs--swatch--matching--070: hsl(var(--t-gs--swatch--matching--hue) var(--t-gs--swatch--matching--sat) 70%);

    --t-gs--color--fill--matching: var(--t-gs--swatch--matching--100);
    --t-gs--color--fill--matching--good: var(--t-gs--swatch--matching--095);
    --t-gs--color--fill--matching--great: var(--t-gs--swatch--matching--090);
    --t-gs--color--fill--matching--strong: var(--t-gs--swatch--matching--070);

    --t-tc--pill--border--color: var(--t-gs--swatch--neutral--000);
    --t-tc--pill--background--color: var(--t-gs--color--fill--matching);
}

.pill,
.list--pills .list .list__item span {
    display: inline;
    border-start-start-radius: var(--t-gs--border--radius--l);
    border-start-end-radius: var(--t-gs--border--radius--l);
    border-end-start-radius: var(--t-gs--border--radius--l);
    border-end-end-radius: var(--t-gs--border--radius--l);
    font-size: var(--t-gs--font--size--02);
    padding-block: var(--t-gs--space--xs);
    padding-inline: var(--t-gs--space--s);
    background-color: var(--t-tc--pill--background--color);
    font-weight: 400;
    vertical-align: middle;
}

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

/* Inside a card but 100% wide */
.article--full-pill .pill {
    position: absolute;
    inline-size: 100%;
    inset-inline-start: 0;
    inset-block-start: 0;
    border-start-end-radius: var(--t-tc--card--border--radius);
    border-start-start-radius: var(--t-tc--card--border--radius);
    border-end-start-radius: var(--t-gs--border--radius--0);
    border-end-end-radius: var(--t-gs--border--radius--0);
}

.article--full-pill .article__header__text__title {
    padding-block-start: var(--t-gs--space--m);
}

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

.pill--good {
    --t-tc--pill--background--color: var(--t-gs--color--fill--matching--good);
}

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

.pill--great {
    --t-tc--pill--background--color: var(--t-gs--color--fill--matching--great);
}

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

.pill--strong {
    --t-tc--pill--background--color: var(--t-gs--color--fill--matching--strong);
}

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

.pill--skills,
.list--pills .list .list__item span {
    border-width: var(--t-gs--border--width--s);
    border-style: solid;
    border-color: var(--t-tc--pill--border--color);
}

.pill--skills-b {
    border-width: var(--t-gs--border--width--s);
    border-style: dashed;
    border-color: var(--t-tc--pill--border--color);
}

/*
    ELEMENTS/Fields:
*/

.dropdown__placeholder,
.form select:not([multiple]){
    background-position: calc(100% - 1.2rem) center;
}

.dropdown__placeholder:active,
.form select:not([multiple]):active{
    background-image: var(--t-tc--fields__icon--caret--up);
}

.fieldSpec+.AcceptanceCheckboxField{
    margin-block-start: 0;
}

.ICO_components_input_CheckboxList .checkboxList .labeledCheckbox input[type=checkbox],
.CheckBoxListFormField .tc_formField .cb-a11y input[type=checkbox]{
    margin-inline: 0;
}

.article--details .article__content__view__field__value a{
    color: var(--t-gs--color--border--brand);
    font-weight: var(--t-gs--font--size--default);
    text-decoration: underline;
}

.tc_formField a{
    font-weight: var(--t-gs--font--weight--bold);
    text-decoration: underline;
    text-underline-offset: var(--t-gs--space--xxs);
}

.body--profile .article--details .article__content__view__field__value [data-tc-icon="download"]::before{
    place-content: end center;
}

.body--profile .article--details .article__content__view__field__value [data-tc-icon="download"]+a{
    color: var(--t-gs--swatch--neutral--000);
    font-weight: var(--t-gs--font--weight--bold);
}

.field--required .tc_formLabel::after{
    content: "*";
    font-family: helvetica;
    margin-left: .4rem;
    color: var(--t-gs--color--text--error);
    vertical-align: top;
}

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

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

.article--card .article__footer {
    padding-block-start: calc(var(--t-tc--card--padding--inners));
    padding-block-end: calc(var(--t-tc--card--padding--inners));
}

.article--card .article__footer * {
    white-space: nowrap;
}

.article--card .article__footer *:first-child {
    text-overflow: ellipsis;
    overflow: hidden;
}

.article--card .article__footer > * + * {
    margin-inline-start: var(--t-tc--card--padding--outers);
}

/*
    COMPONENTS/Lists
*/

.list-controls--top .list-controls__text__legend {
    font-size: 2rem;
    font-weight: var(--t-gs--font--weight--bold);
}

.list-controls--top .list-controls__text__reset{
    font-style: normal
}

.list-controls--top .list-controls__text__reset .link{
    text-decoration: underline;
    margin: 0 0.6rem;
}

.list-controls--bottom .list-controls__text__legend{
    font-size: 1.6rem;
}

.body .article--details .article__content__view__field__value:has(.table__wrap){
    margin-block-start: 2.4rem
}

.body .article--details .article__content__view__field__value .table__wrap{
    margin-block-end: var(--t-gs--space--xl);
}

.table--cards tbody tr>:first-child{
    font-size: var(--t-gs--font--size--06);
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .table--cards tbody tr>:first-child{
        block-size: initial;
        padding-block-end: 1rem;
    }
    .table--cards tbody tr>:first-child .link{
        white-space: normal;
    }
}

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

.list--pills .list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--t-gs--space--xs);
}

.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-inline-start: var(--t-gs--space--0);
    padding-inline-start: var(--t-gs--space--0);
}

.article--details .article__content__view__field__value .list--pills .list li + li {
    margin-block-start: var(--t-gs--space--0);
}

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

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

.skills .list--skills .list__item {
    margin-block-end: var(--t-gs--space--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-block-end: -.6rem;
        inline-size: calc(var(--t-gs--size--base) * 4);
        block-size: calc(var(--t-gs--size--base) * 4);
        text-indent: -999.9rem;
        overflow: hidden;
    }

}

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

.tabs__list__item{
    text-transform: none;
}

/*
.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(--t-gs--color--text--link);
}

.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(--t-gs--color--text--link);
}

+TBD+
*/

/*
    COMPONENTS/Navigation: Popups
*/

.glightbox-clean .gslide-media{
    box-shadow: none;
    border-radius: 1.6rem;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext{
    display: none;
    pointer-events: none;
}

.gslide-external{
    max-height: unset;
}

.gclose{
    --t-tc--icon--font--size: 2rem;
    margin-top: 1rem;
}

.gclose:before{
    color: var(--t-gs--swatch--neutral--000);
    font-size: 1.5rem;
    font-weight: 800;
}

.body--popup .article__header__text__title{
    text-align: center;
}

.body--popup .main__wrapper{
    padding: 3.2rem 2.4rem;
}

.body--popup.popup--recomendations .body__content{
    justify-content: center;
}

.body--popup.popup--recomendations .main__wrapper{
    padding: 6.2rem 3.2rem 3.2rem 3.2rem;
}

.body--popup.popup--recomendations .article__header__text__title{
    margin: auto;
}

.body--popup.body--application .article__header__text__title,
.body--popup.body--registration .article__header__text__title{
    margin-bottom: 2.5rem;
}

.body--popup .form--methods .button{
    margin: 0.5rem;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .body--popup .form--methods .button{
        width: 100%;
        margin: 1rem 0 0 0;
    }
}

/* Media query to target mobile and tablet */
@media (max-width: 1024px) {
    .gclose:before{
        color: var(--t-gs--swatch--neutral--000);
        font-size: 2rem;
        margin: 1rem;
    }
}

/* Clearfix to center popup content vertically */
.body--popup.body--h-full,
.body--popup.body--h-full .body__content,
.body--popup.body--h-full main,
.body--popup.body--h-full .section,
.body--popup.body--h-full [class*="main"]{
    height: 100%;
}
.body--popup.body--h-full .section__content{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agent-success::backdrop,
.goverlay,
.glightbox-mobile .goverlay{
    background-color: hsla(0, 0%, 0%, 0.314);
}

/* styles for modals for create and edit alert */
.agent-success {
    width: var(--popup--w--profile-create-alert);
    height: 28rem;
    padding: 3.2rem 2.4rem;
    border: none;
    border-radius: 1.6rem;
    background: var(--t-gs--swatch--neutral--100);
    position: fixed;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
}

.agent-success .title {
    font-size: var(--t-gs--font--size--08);
}

.agent-success .button-bar__wrap {
    flex-wrap: nowrap;
}

.agent-success .close-btn {
    content: "";
    background: none;
    border: 0;
    background-image: var(--t-tc--fields__icon--clear);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1rem;
    height: 1.8rem;
    width: 1.8rem;
    padding: 0;
    position: absolute;
    top: 10%;
    right: 2.5rem;
    cursor: pointer;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .body--profile.body--alert .button-bar__wrap{
        flex-direction: column;
        margin-top: 2rem;
    }
}

/*
    WIDGETS/Attachment upload (New)
*/

.article--attachments-upload {
    border-radius: var(--t-tc--boxes--border--radius);
    border-width: var(--t-gs--border--width--s);
    border-style: dashed;
    border-color: var(--t-tc--boxes--border--color);
    background-color: var(--t-tc--boxes--background--color);
    padding-block: var(--t-tc--boxes--padding--outers);
    padding-inline: var(--t-tc--boxes--padding--outers);
}

.article--attachments-upload .article__header {
    margin-block-end: var(--t-tc--boxes--padding--outers);
    border-block-end-width: var(--t-gs--border--width--s);
    border-block-end-style: solid;
    border-block-end-color: var(--t-gs--color--border--default);
    padding-block-end: var(--t-tc--boxes--padding--outers);
}

.article--attachments-upload .article__header [data-tc-icon] {
    vertical-align: middle;
}

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

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

}

/*
    WIDGETS/Job Slider
*/

.job__slider{
    display: flex;
    column-gap: 2.4rem;
}

.job__slider .list__item{
    flex: 1 1 0;
    max-width: calc(100%/3);
    padding: 2.4rem;
    border: .1rem solid var(--t-gs--swatch--neutral--000);
    border-radius: .4rem;
}

.job__slider .list__item--heading{
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
}

.job__slider .list__item__text__title{
    font-size: 2rem;
}

.job__slider .list__item--link .list__item__text__title {
    font-weight: var(--t-gs--font--weight--regular);
    text-decoration: underline;
    text-underline-offset: 0.3rem;
    font-size: 1.6rem;
    white-space: inherit;
}

.job__slider a{
    padding: 0;
    width: fit-content;
}

.job__slider a:first-of-type{
    padding: 1.6rem 0 2.4rem;
}
.job__slider a:first-of-type .list__item__text__title{
    white-space: normal;
}

.article--related-jobs .article__header{
    border-block-end-width: 0;
    padding-block-start: 0;
}
.article--related-jobs{
    border-block-start: .1rem solid var(--t-gs--swatch--neutral--000);
    padding-block-start: 7.5rem;
    margin-block-start: 4.8rem;
}

/* Media query to target mobile and tablet */
@media (max-width: 1024px) {
    .article--related-jobs{
        background-color: initial;
        margin-inline-start: auto;
        margin-inline-end: auto;
    }
    .job__slider{
        flex-direction: column;
        flex-wrap: wrap;
        row-gap: 2.4rem;
    }
    .job__slider .list__item{
        max-width: unset;
        width: 100%;
    }
    .article--related-jobs .article__header{
        flex-direction: column;
        row-gap: 3.2rem;
    }
    .article--related-jobs .article__header__text,
    .article--related-jobs .article__header .button{
        width: 100%;
    }
    .article--related-jobs .article__content .button{
        margin-block-start: 3rem;
    }

}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .job__slider{
        margin-inline-start: 0;
    }
    .article--related-jobs .article__content{
        margin-block-start: 5rem;
    }
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .job__slider .list__item__text__title{
        white-space: normal;
    }
    .article--related-jobs .article__content{
        margin-block-start: 3rem;
    }
}

/*
    WIDGETS/Cookies Banner
*/

.cookiesButton {
    border-radius: var(--t-tc--buttons--border--radius);
    border-radius: var(--t-tc--buttons--border--radius);
    border-color: var(--a-cookieBannerWidget-secondaryButton-border-color);
    border-width: .1rem;
    border-style: solid;
}

.cookiesButton i::before{
    color: var(--a-cookieBannerWidget-text-color);
}

.cookies__settings__option__switch span{
    background-color: #C3CAD5;
}

.cookies__settings__option__switch input:checked+span{
    background-color: var(--t-gs--color--border--brand);
}

/*
    MODULES/Header:
*/

.header{
    border-bottom: .1rem solid var(--medium-gray-custom);
}

.menu--visible .submenu__list, .menu--visible .menu__item--open:hover .menu__link[aria-haspopup=true]{
    border-bottom-width: .1rem;
    border-bottom-style: dashed;
    border-bottom-color: var(--t-gs--swatch--neutral--000);
}
.menu__item--open .submenu__list{
    margin-top: .1rem;
}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .header__menu{
        flex-grow: 1;
    }

    .header--scrolling .header {
        box-shadow: var(--t-gs--shadow--m);
    }

    .menu--visible .menu__panel .menu__list:first-of-type{
        margin: auto;
    }

    .menu--visible .menu__list:first-of-type .menu__item:last-child .menu__link{
        background-color: var(--t-gs--swatch--neutral--000);
        color: var(--t-gs--swatch--neutral--100);
        border-radius: var(--t-gs--border--radius--full);
        padding-block-start: .5rem;
        padding-block-end: .5rem;
        font-size: 1.3rem;
        cursor: pointer;
    }
    .menu--visible .menu__list:first-of-type .menu__item:last-child .menu__link:hover{
        font-family: var(--t-gs--font--family--default);
        background-color: #747373;
        font-style: normal;
    }
    .menu--visible .submenu__list,
    .menu--visible .menu__item:hover .menu__link[aria-haspopup=true]{
        box-shadow: none;
    }

    .menu--visible .submenu__item+.submenu__item,
    .menu--visible .portalLanguages__item+.portalLanguages__item,
    .menu--visible .submenu__list{
        border-block-start-width: 0;
        border-width: 0;
    }
    .menu--visible .submenu__item:not([aria-current="page"]):hover .submenu__link,
    .menu--visible .portalLanguages__item:not(.portalLanguages__item--selected):hover .portalLanguages__link,
    .menu .menu__link:hover{
        font-family: var(--t-gs--font--family--secondary);
        font-style: italic;
        font-size: 1.2rem;
    }
}

.menu--toggleable .menu__panel{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    border-block-start-width: 0;
    box-shadow: none;
}

.menu--toggleable .menu__item{
    border-block-end-width: 0;
    text-align: center;
}

.menu--toggleable .menu__link{
    font-size: 2.4rem;
    font-weight: var(--t-gs--font--weight--bold);
    justify-content: center;
}

.menu--toggleable .menu__list:last-child .menu__link[aria-expanded="true"]{
    font-family: var(--t-gs--font--family--secondary);
    font-style: italic;
    font-weight: var(--t-gs--font--weight--regular);
    justify-content: center;
}
.menu--toggleable .menu__list:last-child .menu__text{
    flex-grow: unset;
    text-align: center;
}

.menu--toggleable .submenu__item+.submenu__item {
    margin-top: 1rem;
}

.toggle--menu:focus{
    border-width: var(--t-gs--border--width--s);
    border-style: dotted;
    border-color: var(--t-tc--focus--outline--color, var(--t-gs--color--outline--link));
    outline-width: 0;
}

.toggle--menu .toggle__icon,
.toggle--menu .toggle__icon:before,
.toggle--menu .toggle__icon:after {
    block-size: calc(var(--t-gs--size--base) * 0.5);
    inline-size: calc(var(--t-gs--size--base) * 4);
}

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

.banner--main--home {
    background-image: var(--t-tc--home__banner--background--image);
}

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

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

.banner--main--home .banner__form {
    margin-block-start: var(--t-gs--space--l);
}

.body--jobDetail .banner{
    --t-tc--banner--height: 32.4rem;
}

.body--jobDetail .banner__text{
    display: flex;
    flex-direction: column;
    row-gap: 2.4rem;
}

.banner .banner__text__heading{
    font-size: 1.8rem;
    font-weight: var(--t-gs--font--weight--bold);
}

.banner .banner__text__subtitle{
    font-size: 1.8rem;
    font-weight: var(--t-gs--font--weight--regular);
    text-transform: none;
}

.banner .banner__text__subtitle.material--icon[data-tc-icon]::before {
    inset: 0.2rem;
}

.body.body--no-banner .main{
    height: 60vh;
}

.body.body--no-banner .section__content{
    transform: translateY(50%);
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .banner--main--home {
        --t-tc--banner--height: 20rem;
        background-position: center;
    }
    .body--jobDetail .banner{
        background-position: 12%;
    }
    .banner .banner__text__subtitle{
        font-size: 1.6rem;
    }
}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .banner--main--home {
        --t-tc--banner--height: 30rem;
    }
}

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

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

.banner--secondary {
    --t-tc--banner--background--color: var(--t-gs--color--surface--tertiary);
}

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

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .banner--secondary .banner__wrapper {
        padding-block-start: var(--t-gs--space--xxxl);
        padding-block-end: var(--t-gs--space--xxxl);
    }

    .banner--secondary--top + * {
        margin-block-start: var(--t-gs--space--xl);
    }

    .banner--secondary .banner__text__title * + * {
        margin-inline-start: var(--t-gs--space--m);
    }

}

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

}

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

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

    .banner--secondary .banner__text__title .banner__text__title__phrase {
        display: block;
        margin-block-end: var(--t-gs--space--l);
    }

    .banner--secondary--top + * {
        margin-block-start: var(--t-gs--space--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-inline-start: var(--t-gs--space--m);
    }

    .banner--secondary .banner__wrapper {
        padding-block-end: var(--t-gs--space--xl);
    }

}

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

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

    .banner--secondary .banner__text__title .button:nth-of-type(2) {
        margin-block-start: var(--t-gs--space--l);
    }

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

}

/*
    MODULES/Banner: Bottom
*/

.banner.banner--secondary{
    background-color: var(--custom--navbar--bg);
    font-family: var(--t-gs--font--family--default);
}

.banner.banner--secondary .banner__text__title {
    color: var(--custom--navbar--link);
    font-size: 3rem;
    font-weight: 600;
}

.banner.banner--secondary .button--banner{
    background-color:#5CD6D6;
    color: #145252;
    width: 40rem;
    padding: 1.05rem 0;
    font-size: var(--t-gs--font--size--default);
    font-weight: var(--t-gs--font--weight--bold);
    border-radius: 5rem;
    font-size: 1.6rem;
    border-width: 0;
    text-decoration: none;
}

.banner--secondary .banner__wrapper{
    flex-direction: column;
    justify-content: center;
    row-gap: 2rem;
    padding-block-end: 12rem;
    padding-block-start: 12rem;
}

.banner--secondary img{
    width: 86.4rem;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .banner.banner--secondary .banner__text__title {
        font-size: 2rem;
    }
    .banner--secondary .banner__wrapper{
        padding-block-start: 11.2rem;
        padding-block-end: 5.6rem;
    }
    .banner--secondary img{
        width: 33.7rem;
    }
    .banner.banner--secondary .button--banner{
        width: 21rem;
    }
}

/*
    MODULES/Search Wizard
*/

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .body--search-jobs .section__header{
        margin-top: -15rem;
    }

    .body--search-jobs .section__header__search .Section{
        display: flex;
        flex-wrap: wrap;
    }

    .body--search-jobs .section__header__search .search__panel{
        background-color: var(--custom--client-onSurface-040);
        padding: 4.8rem 2.4rem;
        border-radius: 1.2rem;
    }

    .body--search-jobs .section__header__search .Section .fieldSpec:nth-child(1){
        width: 80%;
    }
    .body--search-jobs .section__header__search .Section .fieldSpec:nth-child(2){
        width: 20%;
        padding-left: 0.8rem;
        padding-right: 0;
    }
    .body--search-jobs .section__header__search .Section .fieldSpec:nth-child(2) .tc_formLabel{
        padding-block-start: 1.5rem;
    }
    .body--search-jobs .section__header__search .Section .fieldSpec.SelectFormField:nth-child(3){
        padding-left: 0;
    }
    .body--search-jobs .section__header__search .Section .fieldSpec:nth-child(n+3){
        width: 20%;
        padding: 0 0.8rem;
    }
    .body--search-jobs .section__header__search .Section .fieldSpec.SelectFormField:last-child{
        padding-right: 0;
    }

    .body--search-jobs .section__header__search .Section .submitButton{
        width: 100%;
    }
    .body--search-jobs .aside .article--actions{
        margin-top: 3.6rem;
    }
}

/* Media query to target mobile and tablet */
@media (max-width: 1024px) {
    .section[search-type=toggleable] .section__header__text__title{
        font-weight: var(--t-gs--font--weight--bold);
    }

    .section[search-type=toggleable] .section__header__actions{
        background-color: var(--t-gs--swatch--neutral--000);
    }

    .section[search-type=toggleable] .section__header__actions:has(.toggle--search[aria-expanded=true]){
        background-color: var(--t-gs--swatch--neutral--100);
    }

    .section[search-type=toggleable] .section__header__actions .toggle--search{
        color: var(--t-gs--swatch--neutral--100);
    }

    .section[search-type=toggleable] .section__header__actions .toggle--search[aria-expanded=true]{
        color: var(--t-gs--swatch--neutral--000);
        border-radius: var(--t-gs--border--radius--0);
    }

    .body--search-jobs .section__header__search .Section{
        display: flex;
        flex-direction: column;
    }

    .body--search-jobs .section__header__search .Section .ButtonBarField{
        order: 1;
    }

    .body--search-jobs .section__header__search .Section .section__header__text__title{
        font-size: 2rem;
        font-weight: var(--t-gs--font--weight--bold);
    }
}

/*
    MODULES/Slider (New)
*/

:root {
    --swiper__slide--gap: var(--t-tc--grid--columns--gap);
    --swiper-navigation-size: calc(var(--t-gs--size--base) * 11);
    --swiper-navigation-color: var(--t-tc--toggle--font--color);
}

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

.swiper-container {
    position: static;
    inline-size: calc(100% - (var(--swiper__slide--gap)) - var(--swiper-navigation-size) * 2);
    scroll-behavior: smooth;
}

.swiper-slide {
    block-size: auto;
    padding-block-end: .1rem;
}

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

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    --swiper-theme-color: var(--t-gs--swatch--neutral--000);
}

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

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

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    inset-inline-end: 0;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    inset-inline-start: 0;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .swiper-container {
        inline-size: calc(100% - (var(--swiper__slide--gap)*3) - var(--swiper-navigation-size));
    }

}

/*
    MODULES/Footer: Links
*/

.footer{
    background-color: var(--custom--navbar--bg);
    color: var(--custom--navbar--link);
    border-block-start-width: 0;
}

.footer .footer__content{
    flex-direction: column;
}

.footer .footer__links{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    font-size: var(--t-gs--font--size--02);
    padding: 0 1rem;
}

.footer .footer__links__column{
    display: flex;
    flex-direction: column;
    width: 10rem;
    margin: 0 1rem;
    text-align: right;
}

.footer .footer__links__column:first-child{
    width: 19rem;
    text-align: left;
}

.footer .footer__links__column a {
    width: fit-content;
    margin-left: auto;
}

.footer .footer__brands{
    height: 10rem;
    width: 100%;
    background-image: var(--t-tc--footer--vectors--background--image);
    background-size: cover;
    margin: 2.4rem 0;
    background-size: 100%;
}

.footer .footer__brands__container{
    width: 65%;
    display: flex;
    justify-content: space-between;
    margin-left: 2rem;
}

.footer .footer__brands__container .footer__brand{
    margin: 0 0.4rem;
    height: 9.2rem;
    height: min-content;
}

.footer .footer__brands__container .footer__brand img{
    width: 100%;
}

/* Media query to target only XXL desktop */
@media all and (min-width:1400px) {
    .footer .footer__brands{
        background-size: contain;
        background-position: right;
    }
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .footer .footer__links__column.visibility--hidden-mobile{
        display: none;
    }
    .footer .footer__brands{
        height: 13.5rem;
        display: flex;
        align-items: flex-end;
        background-size: 200%;
        background-position: 86% top;
    }
    .footer .footer__brands__container{
        width: 100%;
        margin-left: 0;
        padding: 0 1rem;
        justify-content: center;
    }
    .footer .footer__brands__container .footer__brand{
        height: 3rem;
        margin: 0 0.2rem;
    }
    .footer .footer__links__column .legal{
        order: 1;
    }
}

/*
    MODULES/Aside
*/

.body--aside-fixed-on-scroll .aside{
    position: sticky;
    top: 12%;
    inline-size: unset;
    padding-right: 0;
}

/*
    PAGETYPES/Search jobs
*/

.body--search-jobs .banner:not(.banner--secondary) .banner__text{
    margin-bottom: 11rem;
}

.body--search-jobs .banner__text .title{
    color: var(--t-gs--color--text--on--fill--default);
    text-align: center;
}

.body--search-jobs .banner__text .title--hero{
    margin-bottom: .8rem;
}

.body--search-jobs .banner__text .banner__text__subtitle{
    font-size: 2rem;
}

.section--attachCV{
    width: fit-content;
    margin: 4.8rem 0 2.3rem;
    padding: 2rem 2.4rem;
    color: var(--t-gs--swatch--neutral--100);
    background-color: #4D4D4D;
    font-size: 1.6rem;
    border-radius: .8rem;
    font-weight: 400;
}

.section--attachCV .link strong{
    color: var(--t-gs--swatch--neutral--100);
    text-decoration: underline;
}
.button-bar .tc_formLabel{
    display: block;
    padding-block-start: 2rem;
}

.section--search-jobs .article__header{
    inline-size: 75%;
    align-items: center;
}

.section--search-jobs .article__header__text__subtitle .subtitle__item{
    font-size: 1.6rem;
    margin-right: 1.4rem;
}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .section--search-jobs .article__footer strong{
        padding-block-start: calc(var(--t-tc--buttons--padding--v) - var(--t-tc--buttons--border--width));
        padding-block-end: calc(var(--t-tc--buttons--padding--v) - var(--t-tc--buttons--border--width));
        padding-inline-start: calc(var(--t-tc--buttons--padding--h) - var(--t-tc--buttons--border--width));
        padding-inline-end: calc(var(--t-tc--buttons--padding--h) - var(--t-tc--buttons--border--width));
    }
}

/* Media query to target specific viewport */
@media all and (min-width:751px) and (max-width:1300px) {
    .section--search-jobs .article__header{
        inline-size: 65%;
    }
}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .body--search-jobs .banner:not(.banner--secondary) .banner__text{
        margin-bottom: unset;
    }
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .body--search-jobs .banner:not(.banner--secondary) .banner__text {
        margin-bottom: unset;
    }

    .body--search-jobs .banner__text .title--hero{
        font-size: 3.2rem;
    }

    .body--search-jobs .banner__text .banner__text__subtitle{
        font-size: 1.8rem;
    }

    .section--search-jobs .article--card{
        border-width: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-block-end: 1.8rem;
    }

    .section--search-jobs .article__header{
        inline-size: 100%;
    }

    .section--search-jobs .article__footer{
        inline-size: 100%;
        border-width: .1rem 0;
        border-style: solid;
        border-color: var(--medium-gray-custom);
    }

    .section--search-jobs .article__header__text__title{
        font-size: 2.4rem;
    }

    .section--search-jobs .article__footer{
        border-block-start-width: 0;
        flex-grow: 1;
        padding-bottom: 3.4rem;
    }

    .section--search-jobs .article__footer .button{
        width: 100%;
        height: 4.4rem;
    }

    .section--search-jobs .article__footer strong{
        margin: auto;
    }
}

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

.section--search-jobs .article--result {
    --t-tc--result--border--radius: var(--t-gs--border--radius--0);
    --t-tc--result--padding--outers--h: var(--t-gs--space--0);
    padding-block-start: 2.4rem;
    padding-block-end: 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article--result .article__header__text__subtitle{
    margin-block-start: 1.2rem;
}

.section--search-jobs .article--result + .article--result {
    margin-block-start: var(--t-gs--space--0);
}

.section--search-jobs .article--result + .article--result:before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline-end: 0;
    inset-inline-start: 0;
    border-block-start-width: var(--t-gs--border--width--s);
    border-block-start-style: solid;
    border-block-start-color: var(--t-gs--color--border--default);
}

.section--search-jobs .article--result .article__header__image{
    max-width: 12.8rem;
    width: 12.8rem;
}

.section--search-jobs .article__header__text{
    width: 100%;
}

.section--search-jobs .article--card .article__header .link:focus:focus-visible,
.section--search-jobs .article--result .article__header .link:focus:focus-visible{
    outline-width: var(--t-gs--border--width--s);
    outline-style: dotted;
    outline-color: var(--t-tc--focus--outline--color, var(--t-gs--color--outline--link));
    text-decoration-color: currentColor;
    text-decoration: underline;
    text-decoration-thickness: .1rem;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .article--card .article__header__text__subtitle{
        margin-block-start: 1rem;
    }
    .section--search-jobs .article--card .article__header__image{
        max-width: 25%;
        width: 25%;
    }
}

/*
    PAGETYPES/Job Detail
*/

.body--jobDetail .grid--2--sidebar--aside-right>.grid__item--aside-right{
    margin-top: 4rem;
}

.body--jobDetail .article--matching{
    margin-bottom: 2.4rem;
}

.body--jobDetail .article__aside__content{
    padding: 2.4rem 2.4rem 4rem;
    background-color: var(--light-gray-custom);
    border-radius: 1.6rem;
}

.body--jobDetail .article__aside__item{
    padding: 1.6rem 0 1.2rem;
}

.body--jobDetail .article__aside__item:not(:last-child){
    border-bottom: .1rem solid var(--medium-gray-custom);
}

.body--jobDetail .article__aside__item:last-of-type{
    border-bottom-width: 0;
}

.body--jobDetail .aside .article--actions-mobile,
.body--jobDetail .aside .article--actions{
    margin-top: 3.5rem;
}

.body--jobDetail .aside .article--actions:has(.already--applied){
    margin-top: -1rem;
}

.body--jobDetail .aside .article--actions,
.body--jobDetail .list__item__title,
.body--jobDetail .list__item__subtitle{
    margin-left: 2rem;
}

.body--jobDetail .list__item__title{
    font-size: 2rem;
    font-weight: var(--t-gs--font--weight--bold);
    padding-left: 3rem;
}

.body--jobDetail .article--details+.article--details{
    border-block-start-width: 0;
    padding-block-start: var(--t-gs--space--m);
}

.body--jobDetail .article--details:not(:last-of-type){
    padding-block-end: var(--t-gs--space--s);
}

.body--jobDetail .list__item__subtitle{
    font-size: 1.6rem;
    padding-left: 3.1rem;
}

.body--jobDetail .banner .button,
.body--jobDetail .article__aside__content .button{
    flex-basis: unset;
}

.body--jobDetail .banner .button-bar .tc_formLabel:empty,
.body--jobDetail .aside .button-bar .tc_formLabel:empty {
    display: none;
}

.body--success .list--bullet li::marker,
.body--jobDetail .article__content .article__content__view__field__value>ul li::marker{
    color: #F5A3D8;
    font-size: 2.4rem
}

.body--jobDetail [class*="__content"] [class*="__value"] *{
    line-height: 150%;
}

.body--applicationMethods .grid--dividers>.grid__item:nth-child(2){
    pointer-events: none;
    margin-top: 1.5rem;
}

.body--applicationMethods .article,
.body--applicationMethods .article--registered .article__header__text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.body--applicationMethods .article .button{
    width: 21.4rem;
    margin: 2.8rem 0 var(--t-gs--space--l);
}

.body--applicationMethods .article .link{
    display: block;
    width: fit-content;
    margin-top: 1.6rem;
    pointer-events: all;
}

.body--applicationMethods .article--methods .list--methods {
    position: absolute;
    width: 100%;
    left: 2.2rem;
}

.body--applicationMethods .list--methods>.list__item--file{
    pointer-events: none;
    padding-block: 0;
}

.body--application .form--methods .selectedFile{
    display: none;
}

.body--applicationMethods .errorMessage{
    padding-block-start: 0;
}

.list--links--bottom .link{
    text-decoration-color: var(--t-gs--swatch--neutral--000);
}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .body--jobDetail .grid--2--sidebar--aside-right>.grid__item--aside-right {
        flex: 0 0 calc(35rem + var(--t-tc--grid--columns--gap));
        max-inline-size: unset;
    }
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .body--jobDetail .article__content,
    .body--jobDetail .article__content .button{
        width: 100%;
    }
    .body--jobDetail .aside .article--actions:has(.already--applied) .alert{
        margin-bottom: 0;
    }

    .body--jobDetail .article:not(.article--actions) .saveButton{
        flex-basis: var(--t-tc--button-bar__buttons--width);
        margin-top: 4rem;
    }

    .body--jobDetail .banner .article__content .saveButton{
        flex-basis: unset;
        margin-top: 0;
    }

    .body--jobDetail .article--actions .saveButton{
        flex-basis: var(--t-tc--button-bar__buttons--width);
    }
}

/* Media query to target mobile and tablet */
@media (max-width: 1024px) {
    .body--jobDetail .aside .article--actions{
        margin-left: 0;
    }
}

/* Job Detail & Profile Columns Spacing fix */
@media all and (min-width:1025px) and (max-width:1280px){
    .body--jobDetail .grid.grid--2--sidebar > .grid__item--main:first-child{
        max-width: var(--t-tc--content--w--7-12);
        padding-right: 3rem;
    }
    .body--jobDetail .grid.grid--2--sidebar{
        justify-content: space-between;
    }
}

/* Media query to target only tablet */
@media all and (min-width:1281px) {
    .body--jobDetail .grid.grid--2--sidebar{
        justify-content: space-between;
    }
    .body--jobDetail .grid.grid--2--sidebar > .grid__item--main:first-child {
        max-width: var(--t-tc--content--w--7-12);
        padding-right: 0;
    }
}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .body--jobDetail .grid.grid--2--sidebar > .grid__item--main:first-child {
        max-width: unset;
    }
}
@media all and (min-width:1025px) {
    .body--register .grid.grid--2--sidebar > .grid__item--main:first-child {
        max-width: var(--t-tc--content--w--6-12);
    }
}

/*
    PAGETYPES/Profile
*/

.body--profile .banner.banner--main{
    background-image: var(--t-tc--profile__banner--background--image);
    background-color: var(--t-gs--swatch--neutral--100);
    background-position: bottom center;
}

.body.body--profile .list--attachments .link--error{
    text-decoration-color: var(--t-gs--color--text--error);
}

.body--profile .aside .button-bar__wrap{
    row-gap: 2.4rem;
}

.body--profile .aside .article--actions{
    margin-top: 0.1rem;
}

.body--profile .list--attachments .link{
    font-size: 1.4rem;
}

.body--profile .list--attachments .link:first-child{
    margin-right: 0.6rem;
}

.body--profile .list--attachments .link:nth-child(n+2){
    margin: 0 0.6rem;
}

.body--profile.body--alert .body__content{
    justify-content: center;
}

.body--profile.body--alert .main__wrapper{
    padding-inline-start: 2.4rem;
    padding-inline-end: 2.4rem;
}

.body--profile.body--alert .button-bar__wrap{
    display: flex;
    flex-wrap: nowrap;
}

.body--profile.body--alert .tabs__list__item:nth-child(3){
    border-block-end-color: var(--t-gs--color--border--brand);
}

.body--profile .Separator{
    --t-tc--title--font--size: 2rem;
    margin-block-start: var(--t-gs--space--0);
    padding-block-start: var(--t-gs--space--l);
}

.body--profile .Separator:not(:first-of-type) {
    border-block-start-style: solid;
    border-block-start-width: .1rem;
    border-block-start-color: var(--t-gs--color--border--default);
}

.body--profile.body--jobApplications .table--default th,
.body--profile.body--jobApplications .table--default td{
    inline-size: 40.8rem;
}

.body--profile.body--jobApplications .table--default tbody tr>:first-child .link{
    white-space: normal;
}

.body--profile .datasetField>.tc_formLabel{
    font-size: 1.8rem;
    padding-block-end: 2.4rem;
}

.body--profile .tc_formField .datasetField__row{
    inline-size: 100%;
    padding: 2.4rem;
    margin-inline: 0;
    background-color: var(--light-gray-custom);
    border-radius: .8rem;
}

.body--profile .tc_formField a{
    text-decoration: none;
}

.body--profile .article--job-applications {
    margin-block-start: 5.2rem;
}

.body--profile .article--job-applications .article__content{
    margin-block-start: 2rem;
}

.body--profile .article--job-applications .article__image img{
    width: 100%;
}

.body--profile .article--job-applications .article__footer{
    margin-block-start: 4rem;
}

.body--profile.body--jobAlerts .table--default tbody tr>:first-child{
    font-weight: var(--t-gs--font--weight--bold);
    text-decoration: underline;
    text-underline-offset: var(--t-gs--space--xs);
}

.body--profile.body--jobAlerts .table--jobs .action::before{
    color: var(--t-gs--swatch--neutral--000);
}

.body--profileDelete .section__content{
    height: 38rem;
    display: flex;
    align-items: center;
}

.body--profileDelete .article__content{
    margin-block-start: var(--t-gs--space--l);
}

.body--profileDelete .form{
    margin-block-start: 0;
}

.body--profileDocuments .article--documents .article__header__text__title{
    margin: .8rem 0 2.4rem;
}

.body--profileDocuments .article--documents .document--wrapper{
    margin-bottom: 1.6rem;
}

.body--profileDocuments .article--documents+.button-bar{
    padding: 8rem 0 0;
}

/* Media query to target mobile and tablet */
@media (max-width: 1024px) {
    .body.body--profile .tabs__placeholder{
        border-bottom: .1rem solid var(--t-gs--color--border--brand);
    }
    .body.body--profile .tabs__placeholder{
        font-size: 1.6rem;
        padding-left: 1.6rem;
    }
    .body--profile .Separator{
        --t-tc--title--font--size: 1.8rem;
        padding-block-start: var(--t-gs--space--xl);
    }
    .body--profile .datasetField>.tc_formLabel{
        font-size: 1.6rem;
        padding-block-end: 2.4rem;
    }
    .body--profile .tc_formField .datasetField__row{
        padding: 1.6rem;
    }
    .body--profileDocuments .grid__item--main{
        padding-top: 0;
        margin: .8rem 0 1.6rem;
    }

    .body--profileDocuments .article--documents .document--wrapper{
        margin-bottom: 1.6rem;
    }

    .body--profileDocuments .article--documents+.button-bar{
        padding: 4.8rem 0 2.4rem;
    }
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .body--profile .banner.banner--main{
        background-position: 80%;
    }
    .body--profile .list--attachments .link{
        display: inline-block;
        margin-bottom: 2.4rem;
    }

    .body--profile .article--job-applications .title {
        font-size: 2rem;
    }

    .body--profile .article--job-applications .article__footer{
        margin-block-start: 4rem;
    }
}

/*
    PAGETYPES/Talent Community
*/

.body--popup.body--talentCommunity .article__header{
    flex-direction: column;
    row-gap: 2.4rem;
}

.body--popup.body--talentCommunity .article__header__image{
    height: 3.6rem;
}

.body--popup.body--talentCommunity .main__wrapper {
    background-image: var(--t-tc--footer--form--background--image);
    background-size: 50%;
    background-position: bottom right;
}

.body--popup.body--talentCommunity .tc_formField.button-bar__wrap{
    flex-wrap: nowrap;
    width: fit-content;
}

.body--popup.body--talentCommunity .tc_formField .tc_formButton{
    width: 12rem;
}

.body--popup .button-bar__wrap.centered,
.body--resetPassword .button-bar__wrap.centered {
    justify-content: center;
    flex-wrap: nowrap;
}

.body--popup .button-bar__wrap.centered .button{
    width: 50%;
}

.body--popup.body--talentCommunity .w-full div{
    text-align: center;
}

.body--popup.body--h-full.body--talentCommunity .w-full .tc_formButton{
    width: 100%;
}

.body--popup.body--h-full.body--talentCommunity .w-full .button-bar__wrap{
    margin: auto;
}

.body--popup.body--talentCommunity.body--success .body__content{
    padding-block-start: 0;
}

.body--popup.body--talentCommunity.body--success .main__wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}

.body--popup.body--talentCommunity .button-bar__wrap{
    justify-content: center;
    margin-top: 2rem;
}

.body--popup.body--talentCommunity .button-bar__wrap .button{
    flex-basis: unset;
}

/* Clearfix for bottom image in popup being misplaced on shorter screen sizes */
@media screen and (max-height: 875px) {
    .body--popup.body--talentCommunity .main__wrapper{
        height: 90rem;
    }
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .body--popup.body--talentCommunity.body--success .main__wrapper{
        height: 100%;
    }
    .body--popup.body--talentCommunity .article__header__image{
        height: 2.85rem;
    }
}

/*
    PAGETYPES/Login
*/

.body--login .article__header{
    padding-bottom: 0;
}

.body--login .article__content{
    border-block-start-width: 0;
    padding-block: var(--t-tc--login__box--padding--outers);
}

.body--login .main__content{
    max-inline-size: unset;
}

.body--login .grid--dividers>.grid__item:last-of-type{
    padding-block-start: 0;
    border-top: .1rem solid var(--t-gs--color--border--default);
}

.body--login .grid--dividers>.grid__item:before{
    display: none;
}

.body--login.body--fromApplication .grid--dividers>.grid__item:first-child .article__header{
    padding-top: 0;
}

.body--login.body--fromApplication .grid--dividers>.grid__item:first-child{
    padding-block-start: 9rem;
}

/*
    PAGETYPES/Reset Password
*/

.section__reset__password{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__reset__password .button-bar__wrap{
    flex-basis: 100%;
}

.body--resetPassword .main__wrapper{
    block-size: 50.7rem;
}

.body--resetPassword .article--password{
    margin-block-start: 10vh;
    max-inline-size: 63.9rem;
}

.body--resetPassword .article--password .article__content{
    margin-block-start: var(--t-gs--space--l);
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .section__reset__password .button-bar__wrap,
    .section__reset__password .button-bar__wrap .button{
        width: 100%;
        row-gap: 2.4rem;
    }
    .body--resetPassword .main__wrapper{
        block-size: 90vh;
    }
}

/*
    PAGETYPES/Register
*/

.body--register .article__header__text{
    max-inline-size: 54rem;
}

.body--register .article__header__text .paragraph{
    margin: 1.6rem 0 4.8rem;
}

.body--registrationMethods .article--registration .list__item--file{
    display: none;
}

.AcceptanceCheckboxField .tc_formField input[type=checkbox]{
    margin-block: 0;
    margin-inline: 0;
}

.form--password .paragraph.requirement{
    font-size: 1.4rem;
    margin-top: 1rem;
}

.body--popup .form--password{
    display: flex;
    justify-content: center;
    height: 100%;
}

.body--popup .form--password .Section{
    margin: auto;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .body--register .article__header__text .paragraph{
        margin: 1.6rem 0 3.2rem;
    }
    .body--register .tc_formTitle{
        font-size: 2rem;
    }
}

/*
    PAGETYPES/Success
*/

.body--success .section__content .grid--dividers--h{
    max-width: unset;
}

.body--forgotPassword .section__content,
.body--success .section__content .grid--dividers--h{
    padding-top: 5rem;
}

.body--success .article__create--account{
    width: 74.4rem;
    display: flex;
    margin: 6rem auto 3rem;
}

.body--success .article--success{
    margin-bottom: 2rem;
}

.body--success .article--success .article__content{
    margin-top: var(--t-gs--space--l);
}

.body--success .article__success .title{
    margin-bottom: 1.6rem;
}

.body--success .article__success .article__content__text{
    margin-right: 7rem;
}

.body--success .paragraph{
    font-size: 1.6rem;
}

.body--success .list--bullet li+li{
    margin-block-start: 2.1rem;
}
.body--success .form--grid:not(.form--grid--1) .Section:not(.Section--collapsible--bottom) .button-bar:before{
    content: unset;
}

.body--success .article__success .form{
    margin-block-start: 0;
    inline-size: 36rem;
}

.body--success .article__success .form .fieldSpec{
    padding-inline-start: 0;
}

/* Media query to target only tablet */
@media all and (min-width:750px) and (max-width: 826px) {
    .body--success .article__success{
        flex-direction: column;
    }
    .body--success .article__success .form--password{
        margin-left: 3rem;
        margin-top: 4rem;
    }
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .body--success .article__success .title,
    .body--success .article--success .article__header__text__title .title{
        font-size: 2.4rem;
    }
    .body--success .article__create--account{
        margin: 0 0 3rem;
    }
    .body--success .article--success {
        margin-bottom: 0rem;
    }
    .body--success .article__success{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .body--success .article__success .article__content__text{
        margin: 3.5rem auto 2.4rem 0;
    }
    .body--success .article__success .form{
        inline-size: 100%;
        margin: auto;
    }
}

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

/* Media query to target only desktop */
@media all and (min-width:750px) {
    .article--result.article--non-toggle .article__content {
        max-block-size: unset;
        visibility: visible;
        margin-block-start: var(--t-tc--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: var(--t-gs--space--0);
        background-color: unset;
        padding: var(--t-gs--space--0);
    }
}

/* UTILITIES: XXX
   -------------------------------------------------------------------------- */
.article--view-more--content-box {
    border-radius: var(--t-gs--border--radius--xl);
    background-color: var(--t-gs--color--surface--secondary);
    margin-block-start: 1rem;
    margin-block-end: 1rem;
    padding-block-start: var(--t-gs--space--xxl);
    padding-inline-end: var(--t-tc--grid--laterals);
    padding-inline-start: var(--t-tc--grid--laterals);
    padding-block-end: var(--t-gs--space--l);
    text-align: start;
}

/* SearchWizard fieldLabel fix */
.tc_formLabel:has(>.screenReaderVisibility:only-child) {
    padding-block-end: var(--t-tc--fieldSpec--padding--inners);
}

/* Remove dotted browser focus */
html:not(.tbd-focus) a:focus,
html:not(.tbd-focus) input:focus,
html:not(.tbd-focus) input.ICO_components_input_Checkbox[type=checkbox]:focus,
html:not(.tbd-focus) select:focus,
html:not(.tbd-focus) textarea:focus,
html:not(.tbd-focus) button:focus,
html:not(.tbd-focus) summary:focus {
    outline-width: 0;
}

/* Only show browser focus when navigating with Tab */
.body a:focus:focus-visible,
.body input:focus:focus-visible,
.body input.ICO_components_input_Checkbox[type=checkbox]:focus:focus-visible,
.body textarea:focus:focus-visible,
.body button:focus:focus-visible,
.body summary:focus:focus-visible {
    outline-width: var(--t-gs--border--width--s);
    outline-style: dotted;
    outline-color: var(--t-tc--focus--outline--color, var(--t-gs--color--outline--link));
}

/* A11y focus behavior */

html:not(.tbd-focus) select:focus,
.menu__panel .menu__list:first-of-type .menu__item:last-child :focus,
.body input.ICO_components_input_Checkbox[type=checkbox]:focus,
.ButtonBarField .tc_formButton:focus,
.body select:focus,
.body select:focus,
.body input:focus,
.body textarea:focus,
.body button:focus,
.body summary:focus{
    outline-width: var(--t-gs--border--width--s);
    outline-style: solid;
    outline-color: var(--t-gs--color--border--on--fill--primary--focus);
    border-width: var(--t-gs--border--width--s);
    text-decoration: none;
}

/* Error messages */
.errorMessage,
.warningMessage,
.errorMsgBottom,
.message--error{
    font-size: 1.4rem;
}
.errorMessage:before,
.warningMessage:before,
.errorMsgBottom:before,
.message:before{
    font-size: 1.2rem;
    align-self: center;
}

.alert--error,
.alert--info{
    border-radius: .6rem;
}

/* Disables Error warning messages */
.duplicateWarningMessage,
.body:not(.body--login) .alert--error{
    display: none;
}

/* Material icon settings */
.material--icon[data-tc-icon]::before {
    font-variation-settings: 'FILL' 1;
    font-size: 1.5rem;
    inset: .5rem;
}

/* General text alignment */
.text--centered{
    text-align: center;
}

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

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .visibility--hidden-mobile{
        display: none;
    }
}

.methodButton--file {
    display: none;
}

.article__content--hide {
    display: none;
}

/* Table on views */
[class*="-extra-columns"] .table--default tbody tr>*:not(:first-child),
[class*="-extra-columns"].tableField tbody tr td:not(:first-child),
[class*="-extra-columns"].table--default thead th>*:not(:first-child),
[class*="-extra-columns"].tableField thead th td:not(:first-child),
[class*="-extra-columns"].table--default tbody tr>*:last-child,
[class*="-extra-columns"].tableField tbody tr td:last-child,
[class*="-extra-columns"].table--default thead th>*:last-child,
[class*="-extra-columns"].tableField thead th td:last-child {
    inline-size: calc((100% - var(--t-tc--table--fixed-column--width)) / var(--cols));;
}

.table--fixed-column-2-extra-columns .table--default {
    --cols: 2;
}

.table--fixed-column-3-extra-columns .table--default {
    --cols: 3;
}

.table--fixed-column-4-extra-columns .table--default {
    --cols: 4;
}

.table--fixed-column-5-extra-columns .table--default {
    --cols: 5;
}

.table--fixed-column-6-extra-columns .table--default {
    --cols: 6;
}

.table--fixed-column-7-extra-columns .table--default {
    --cols: 7;
}

.table--fixed-column-8-extra-columns .table--default {
    --cols: 8;
}