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

    ELEMENTS
    -------------------------------------------------------------------------
    Fonts
    Buttons
      : Main
        : Primary (Override/complement)
        : Session
        : DataSet
    Indicators
      : Pills (New)
        : Good (New)
        : Great (New)
        : Skills (New)
        : Strong (New)
    Required Icon
    Collapsible Section
    Go Back Link
    Separators

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

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

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

    PAGETYPES
    -------------------------------------------------------------------------
    Login
    Register
    Search jobs
      : Cards
        : Result (Override/complement)
    Talent Community
    Error
    Profile
    Job Alerts
    Agent Create
    Reset Password
    Section Assestment
    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;
}

.header__logo .logo{
    block-size: auto;
}

/* 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: var(--t-gs--space--xl);
}

/*
    ELEMENTS/Fonts
*/

@font-face {
    font-family: 'IntegralCF';
    src: url(../fonts/IntegralCF.woff) format("woff");
    font-weight: 700;
}

/*
    ELEMENTS/Buttons
*/

.button,
.tpt_registrationMethods a{
    font-size: 1.7rem;
}

.button,
.tc_formButton{
    font-weight: var(--custom--font--black);
    padding-top: 1rem;
    line-height: 1;
}

.button--tertiary, .button--tertiary:link,
.button--tertiary:visited,
.button--secondary+.button--cancel,
.button--secondary+.button--cancel:link,
.button--secondary+.button--cancel:visited,
button:not(.saveButton):not(.submitButton):not(.nextButton):not(.formNextButton):not(.gotoButton):not(.redirectUrlButton)~.cancelButton,
button:not(.saveButton):not(.submitButton):not(.nextButton):not(.formNextButton):not(.gotoButton):not(.redirectUrlButton)~.cancelButton:link,
button:not(.saveButton):not(.submitButton):not(.nextButton):not(.formNextButton):not(.gotoButton):not(.redirectUrlButton)~.cancelButton:visited{
    text-decoration: none;
}

@media all and (max-width: 750px){
    .grid--methods .methodButton{
        min-width: 100%;
    }
}

/*
    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);
}

/*
    ELEMENTS/Buttons: Session
*/

.session-icon-closethick.ui-button-icon{
    color: var(--t-gs--swatch--neutral--000);
}

/*
    ELEMENTS/Buttons: DataSet
*/

.removeDatasetRow,
.removeFile,
[id*=dropboxRemove_],
.fileInputCancelButton,
.action--remove,
:where(.addDatasetRow,.removeDatasetRow)::before{
    color: var(--t-gs--swatch--neutral--020);
}

/*
    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/Required Icon
*/

.form .labelRequiredIcon{
    display: inline;
}

/*
    ELEMENTS/Collapsible Section
*/

.Section--collapsible--top .toggle .toggle__icon::before{
    font-size: 5rem;
}

/*
    ELEMENTS/Go Back Link
*/

@media all and (max-width: 750px){
    .list--links--bottom .link{
        font-size: var(--custom--font--size--01);
    }
}

/*
    ELEMENTS/Separators
*/

.Separator {
    margin-block-end: var(--t-gs--space--s);
}

/*
    COMPONENTS/Menu
*/

.menu a:focus{
    outline-color: var(--t-gs--color--text--default);
}

.menu--visible .submenu__list{
    inset-block-start: var(--t-gs--space--0);
    padding-top: 6rem;
    background-color: var(--t-gs--color--fill--transparent);
}

.menu--visible .submenu__list,
.menu--visible .menu__item:hover .menu__link[aria-haspopup=true]{
    box-shadow: none;
}

.menu--visible .submenu__item[aria-current="page"] .submenu__link,
.menu--visible .portalLanguages__item--selected .portalLanguages__link{
    background-color: var(--t-gs--swatch--neutral--100);
}

.menu--toggleable .menu__link[aria-expanded=true]::after{
    color: var(--t-gs--swatch--link);
}

.menu--toggleable .menu__item--open .menu__text{
    display: flex;
    flex-direction: column;
}
.menu--toggleable .menu__item--open .menu__text::after{
    content: '';
    display: inline-block;
    width: 3rem;
    height: 0.2rem;
    background-color: var(--t-gs--swatch--neutral--020);
    margin-top: var(--t-gs--space--s);
}

.menu--toggleable .submenu__item+.submenu__item .submenu__link{
    padding-top: var(--t-gs--space--m);
}

.menu--toggleable .profile--menu .menu__item > .menu__link{
    align-items: flex-start;
}

.profile--menu .menu__thumbnail{
    border-radius: 100%;
}

.menu--toggleable .menu__item::after{
    --t-tc--icon--font--size: var(--t-gs--font--size--09);
}

/*
    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/Cards: Table as cards (Override/complement)
*/

@media (max-width: 750px) {
    .table--cards tbody tr>:first-child{
        text-transform: uppercase;
        font-family: var(--t-gs--font--family--emphasis);
    }
}

/*
    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)
*/

.list--steps{
    margin-block-end: var(--t-gs--space--xxxl);
}

.list--steps .list__item__text__title{
    text-transform: none;
}

.list--steps .list__item .list__item__text:after{
    border-block-end-color: var(--t-gs--swatch--link);
}

/* 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;
        border:none;
    }

    .list--steps .list__item--current .list__item__text__subtitle,
    .list--steps .list__item--filled .list__item__text__subtitle{
        background-color: var(--t-gs--swatch--link);
    }

}

@media (width <= 750px) {
    .list--steps .list__item__text__subtitle {
        font-size: var(--t-gs--font--size--default);
        font-weight: var(--t-gs--font--weight--bold);
    }

    .list--steps .list__item__text__title{
        font-size: var(--t-gs--font--size--default);
    }

    .list--steps .list__item__text__subtitle .visibility--only-mobile{
        font-weight: var(--t-gs--font--weight--regular);
    }
}

/*
    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(--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/Forms
*/

.form input[type=color],
.form input[type=date],
.form input[type=datetime-local],
.form input[type=email],
.form input[type=file],
.form input[type=month],
.form input[type=number], .form input[type=password],
.form input[type=range]:not(.progress-bar__selector,
.schema_input_rangeslider_Slider_slider),
.form input[type=search]:not([class*=select2]):not(.AdvancedSelectInputElement),
.form input[type=tel],
.form input[type=text]:not([class*=select2]):not(.LiveSearchInput),
.form input[type=time],
.form input[type=url],
.form input[type=week],
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-search--dropdown .select2-search__field,
.form select,
.form .tox.tox-tinymce,
.dropdown__placeholder,
.LiveSearch,
.AdvancedSelect .AdvancedSelectInput,
.source_PLUG_EditorAdvancedSelect{
    font-size: var(--custom--font--size--01);
}

.multipleDatasetWrapper{
    display: flex;
    flex-direction: column;
}

.MultipleDatasetEntryFormField .tc_formField .addDatasetRow,
.MultipleDatasetEntryFormField .tc_formField .action--add{
    align-self: flex-end;
}

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

.PasswordField .tc_formLabel{
    padding-block-end: calc(var(--t-tc--fieldSpec--padding--inners) * 2);
}

.PasswordField .tc_formDescription p{
    padding-block-end: var(--t-tc--fieldSpec--padding--inners);
}

/*
    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/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-block-end: var(--t-gs--space--l);
    }

}

/*
    WIDGETS/GlightBox
*/

.glightbox-container.glightbox-clean .gclose svg,
.ui-dialog button.ui-button.ui-dialog-titlebar-close .ui-button-icon{
    display: inline;
}

/*
    MODULES/Header:
*/

.body--header-fixed-on-scroll .header--scrolling {
    box-shadow: unset;
}

.logo--quaker{
    width: 6.4rem;
    height: 6rem;
}

.logo--footer--quaker{
    width: 8.8rem;
    height: 6.6rem;
}

/*
    MODULES/Banner:
*/

.banner--main {
    background-image: var(--t-tc--banner--background--image);
    background-position: center top;
}

.banner--main .banner__wrapper {
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
    display: flex;
}

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

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

.banner--main .banner__subtext{
    width: 100vw;
    margin-left: calc(-1 * var(--t-tc--grid--laterals));
    margin-right: calc(-1 * var(--t-tc--grid--laterals));
}

.banner--main .banner__subtext__wrapper{
    display: flex;
    align-items: center;
}

.banner--main .banner__subtext__wrapper,
.banner--main .banner__subtext{
    background-color: var(--t-gs--swatch--neutral--000);
}

.banner--main .banner__subtext{
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: 100vw;
}

.banner--main .banner__subtext *{
    color: var(--t-gs--color--surface--default);
}

.banner__image{
    width: 6rem;
    height: 6rem;
}

.banner__image img{
    border-radius: 100%;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .banner--main {
        block-size: var(--t-tc--banner--height);
    }

    .banner--main .title.title--hero{
        line-height: 1;
    }

    .banner--main .banner__subtext{
        min-height: 6.3rem;
    }
}

/*
    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--main .banner__subtext{
        min-height: 7rem;
    }

    .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/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
*/

.footer {
    border: 0;
    background-color: var(--t-gs--swatch--neutral--010);
    color: var(--t-gs--swatch--brand--100);
}

.footer__rights{
    font-size: var(--t-gs--font--size--03);
}

.footer__dynamic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: var(--t-gs--font--size--03);
    padding: 1rem;
}

@media (max-width: 768px) {
    .footer__dynamic {
        padding-top: 0;
    }
}

.footer__links__item.link {
    font-weight: bold;
    color: var(--t-gs--swatch--brand--100);
    text-decoration: underline;
}

.footer__links--remaining {
    display: flex;
}

.footer__wrapper {
    padding-block-start: 1rem;
    padding-block-end: 0;
}

.logo.logo--footer {
    height: 6.6rem;
}

@media (max-width: 768px) {
    .footer__links--remaining {
        display: block;
        text-align: center;
        margin-top: 0;
    }
}

@media (min-width: 1025px) {

    .footer{
        height: 8rem;
    }

    .footer__links__divider {
        margin-left: 1.6rem;
        margin-right: 1.6rem;
    }
    .footer__rights {
        gap: 8rem;
    }

    .footer__rights__logo {
        margin-inline-end: var(--t-gs--space--0);
    }
}

@media (max-width: 750px) {
    .footer__rights {
        display: flex;
        flex-direction: column;
        margin-top: 2.2rem;
    }
    .footer__rights__copy {
        margin-top: var(--t-gs--space--l);
    }

    .logo--footer {
        position: relative;
        left: 1.4rem;
    }

    .footer__dynamic{
        margin-block-start: var(--t-gs--space--l);
        margin-block-end: var(--t-gs--space--xxl);
    }

    .footer__rights__logo {
        margin-inline-end: var(--t-gs--space--l);
    }
}

/*
    PAGETYPES/Login
*/

.body--login .main__wrapper{
    justify-content: flex-start;
}

.body--login .banner__subtext{
    display: none;
}

@media all and (min-width: 751px) {

    .body--login .banner--main{
        margin-block-start: var(--t-tc--header--height);
    }

    .body--login .grid--dividers>.grid__item>.article {
        min-inline-size: unset;
    }
    .body--login .article--registered {
        --t-tc--article--width--max: var(--t-tc--content--w--reduced);
    }

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

    .body--login .article--registered > div,
    .body--login .grid__item:last-child .article__header{
        padding-left: 0;
        padding-right: 0;
    }
}

/*
    PAGETYPES/Register
*/

/*
    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);
}

.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);
}

/* 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);
    }
}

/* PAGETYPES: Talent Community
   -------------------------------------------------------------------------- */

.body--talent-community .form .Section--talent--title .talent--title .tc_formTitle{
    font-size: var(--t-tc--title--hero);
}

.body--talent-community--success .banner--main .banner__subtext{
    display: none;
}

.talent--button{
    margin-top: var(--t-gs--space--l);
}

@media all and (min-width: 1025px) {
    .article--success {
        --t-tc--article--width--max: var(--t-tc--content--w--narrow);
    }
}

/* PAGETYPES: Error
   -------------------------------------------------------------------------- */

.body--error .banner--main .banner__subtext{
    display: none;
}

@media all and (min-width: 1025px) {
    .article--error {
        --t-tc--article--width--max: var(--t-tc--content--w--narrow);
    }
}

/* PAGETYPES: Profile
   -------------------------------------------------------------------------- */

.body--profile .banner__subtext{
    padding: 1rem 0;
}

.tabs__list__item,
.title--tabs,
.tabs__list__item__title{
    text-transform: capitalize;
    font-size: var(--custom--font--size--01);
}

.title--with--subtitle .article__content__view__field__label{
    font-size: var(--t-gs--font--size--09);
    margin-bottom: var(--t-gs--space--l);
    font-family: var(--t-gs--font--family--emphasis);
}

.table--default thead tr th{
    color: var(--t-gs--swatch--neutral--100);
}

.body--profile .article+.article{
    margin-block-start: var(--t-gs--space--l);
}

.list--attachments .list__item__text__title{
    font-weight: var(--t-gs--font--weight--regular);
}

.article--collapsible .toggle__icon::before{
    font-size: var(--t-gs--font--size--12);
}

@media all and (min-width: 1025px) {
    .tabs__list__item--active {
        border-block-end-color: var(--t-gs--swatch--link);
    }
}

@media all and (max-width: 1024px){
    .tabs__placeholder{
        border-bottom: 0.1rem solid var(--t-gs--color--border--default);
    }

    .title--tabs{
        font-family: var(--t-gs--font--family--default);
    }

    .tabs__placeholder[aria-expanded=false]::after,
    .tabs__placeholder[aria-expanded=true]::after,
    .table--cards .toggle .toggle__icon:before{
        font-size: var(--t-gs--font--size--12);
    }
}

@media all and (min-width: 751px){
    .title--tabs {
        --t-tc--title--font--size: var(--custom--font--size--01);
    }
    .table--default.table--fixed-column.table--fixed-column--first thead tr th:first-child{
        border-inline-end: none;
    }

    .table--default.table--fixed-column.table--fixed-column--first tbody tr>:first-child::before,
    .table--default.table--fixed-column.table--fixed-column--last tbody tr td:last-child::before{
        display: none;
    }
}

@media all and (max-width: 750px){
    .title--with--subtitle .article__content__view__field__label{
            font-size: var(--t-gs--font--size--06);
    }
}
/* PAGETYPES: Modern hire
   -------------------------------------------------------------------------- */

.article--mh {
    .title--hero {
        line-height: 1.2
    }
    .paragraph {
        margin-block-start: var(--t-gs--space--l);
    }
}

/* PAGETYPES: Job Alerts
   -------------------------------------------------------------------------- */

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

.body--job-alerts .table--default tbody tr td:last-child .link{
    display: block;
    width: 1.5rem;
    height: 1.4rem;
}

.body--job-alerts .table--default tbody tr td:last-child .link + .link{
    margin-left: 1.2rem;
}

.body--job-alerts .table--default tbody tr td:last-child .link img{
    display: block;
    width: 100%;
    height: 100%;
}

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

@media (min-width: 1025px) {
    .body--agent-create .article--alert {
        --t-tc--article--width--max: 74.3rem;
    }

    .article--alert .article__header{
        text-align: center;
    }
}

/* PAGETYPES: Reset Password
   -------------------------------------------------------------------------- */

.article--password .paragraph{
    padding: 0;
}

@media all and (min-width: 1025px){
    .article--password .button-bar__wrap{
        flex-wrap: nowrap;
    }
}

/* PAGETYPES: Section Assestment
   -------------------------------------------------------------------------- */

.Section--section--assestment{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Section--section--assestment *{
    text-align: center;
}

.Section--section--assestment .fieldSpec{
    padding-block-end: var(--t-gs--space--l);
}

.form:not(.form--grid) .Section--section--assestment .fieldSpec+.button-bar{
    padding-block-start: var(--t-gs--space--0);
}

.Section--section--assestment .section--title > .description.tc_formDescription{
    font-size: var(--t-tc--title--hero);
    font-family: var(--t-tc--title--font--family);
    font-weight: var(--t-tc--title--font--weight);
    color: var(--t-tc--title--font--color);
}

.Section--section--assestment .section--paragraph > .description.tc_formDescription{
    font-size: var(--t-tc--paragraph--font--size);
}

/* PAGETYPES: Success
   -------------------------------------------------------------------------- */

.body--success .banner__subtext{
    display: none;
}

/* 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;
}

/* 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);
    }
}

/*
    APPLICATION BUTTONS
*/

.methodButton--later, .methodButton--file, .methodButton--paste, .methodButton--dropbox {
    max-inline-size: fit-content;
    white-space: nowrap;
}