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

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

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

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

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

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

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

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

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

.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-top: var(--spacer--s2);
    }

}

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

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

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

.button--tertiary,
.button--tertiary:link {
    text-decoration: unset;
}

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

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

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

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

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

:root {
    --matching--color--strong: #87e8dd;
    --matching--color--great: #c4f3ee;
    --matching--color--good: #e7faf8;
    --border--color--skills: var(--color--black);
}

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

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

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

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

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

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

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

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

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

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

.pill--skills, .list--pills .list .list__item span {
    --matching--background--color: var(--color--white);

    border: .1rem solid var(--border--color--skills);
}

.pill--skills-b {
    --matching--background--color: var(--color--white);

    border: .1rem dashed var(--border--color--skills);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
    COMPONENTS/Navigation: Steps bar (Override/complement)
*/
.list--steps:after {
    border-bottom-color: var(--color--borders--sub-1);
}

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

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .list--steps .list__item .list__item__text:after {
        border-bottom-color: var(--color--brand--sub-1);
    }

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

    .list--steps .list__item__text__subtitle {
        margin-bottom: -.6rem;
        width: 1.6rem;
        height: 1.6rem;
        text-indent: -999.9rem;
        overflow: hidden;
        background-color: var(--color--borders--sub-1);
    }
}

@media all and (max-width:750px){
    .list--steps .list__item .list__item__text:after {
        border-bottom-color:var(--color--borders--sub-1);
    }

    .list__item__text__subtitle {
        font-weight: bold;
    }

    .list__item__text__subtitle .visibility--only-mobile {
        font-weight: 400;
        margin-left: var(--spacer--xxs);
    }
}
/*
    COMPONENTS/Navigation: Tabs (Inverting clickable colors - commented and ready to use)
*/

.tabs__list {
    --dividers--border--color: var(--color--borders--sub-1);
    --color--clickeable: var(--color--font);
}

.tabs__list__item {
    text-transform: unset;
}

@media (min-width: 1025px) {
    .tabs__list__item--active {
        border-bottom-color: var(--color--brand--sub-1);
        color: var(--color--brand--sub-1);
    }
}

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

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

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

+TBD+
*/

/*
    COMPONENTS/Navigation: LIST LINKS TOP/BOTTOM
*/

.list--links .link {
    --color--clickeable: var(--color--brand--sub-1);
}

/*
    WIDGETS/Attachment upload (New)
*/

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

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

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

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

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

}

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

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

}

/* ELEMENTS: List-controls
-------------------------------------------------------------------------- */

.list-controls__pagination__item:not(.currentPageLink) {
    color: var(--color--brand--sub-1);
}

/* ELEMENTS: TABLES
----------------------------------------------------------------------------------- */
.table--default thead tr th,
.tableField thead tr th {
    color: var(--color--white);
}

.table--default tbody tr td:last-child {
    max-width: fit-content;
}

@media (min-width: 751px) {
    .table--default.table--fixed-column.table--fixed-column--first tbody tr>:first-child .link,
    .table--default.table--fixed-column.table--fixed-column--first-and-last tbody tr td:last-child
    .link,
    .table--default.table--fixed-column.table--fixed-column--first-and-last tbody tr>:first-child .link,
    .table--default.table--fixed-column.table--fixed-column--last tbody tr td:last-child .link {
        white-space: nowrap;
    }

    .table--default.table--fixed-column.table--fixed-column--first tbody tr>:first-child,
    .table--default.table--fixed-column.table--fixed-column--first thead tr th:first-child,
    .table--default.table--fixed-column.table--fixed-column--first-and-last tbody tr>:first-child,
    .table--default.table--fixed-column.table--fixed-column--first-and-last thead tr th:first-child {
        box-shadow: none;
        --color--clickeable: var(--color--brand--sub-1);
    }

    .table--default.table--fixed-column.table--fixed-column--first tbody tr>:first-child:before,
    .table--default.table--fixed-column.table--fixed-column--first-and-last tbody tr td:last-child:before,
    .table--default.table--fixed-column.table--fixed-column--first-and-last tbody tr>:first-child:before,
    .table--default.table--fixed-column.table--fixed-column--last tbody tr td:last-child:before {
        content: unset;
    }

}

/* ELEMENTS: WIZARD FIELDS
-------------------------------------------------------------- */

.MultipleDatasetEntryFormField .tc_formField div[id*=multipleDatasetEntry_]{
    background-color: #f3f4f4;
    border-radius: .8rem;
}

.labelRequiredIcon {
    color: var(--color--brand--sub-1);
}

.form {
    --color--clickeable: var(--color--brand--sub-1);
}

@media all and (min-width: 751px) {
    .body:is(.body--register, .body--applicationConfirmation) .fieldSpec.fieldSpec--odd {
        padding-left: var(--spacer--m);
    }

    .body:is(.body--register, .body--applicationConfirmation) .fieldSpec.fieldSpec--even {
        padding-right: var(--spacer--m);
    }

    .body:is(.body--register, .body--applicationConfirmation) .fieldSpec:not(.fieldSpec--odd, .fieldSpec--even, .AcceptanceCheckboxField, .ButtonBarField),
    .body:is(.body--register, .body--applicationConfirmation) .SeparatorDescription {
        padding-left: var(--spacer--m);
        padding-right: var(--spacer--m);
    }
}

@media all and (max-width: 750px) {
    .body--register .button-bar__wrap {
        flex-direction: column-reverse;
    }
}
/* MODULES: HEADER
------------------------------------------------------------------------------ */

.menu--toggleable .menu__item[aria-current="page"].menu__item--open .menu__link {
    --menu__link--font--color: var(--color--brand--sub-1);
    --toggle--font--color: var(--color--brand--sub-1);
}

.menu--visible .menu__item:hover .menu__link[aria-haspopup=true]+.submenu__list--overflows-not,
.menu--visible .menu__link[aria-haspopup=true][aria-expanded=true]+.submenu__list--overflows-not {
    min-width: fit-content;
}

.menu--visible .submenu__list--overflows-not .portalLanguages__link,
.menu--visible .submenu__list--overflows-not .submenu__link {
    white-space: nowrap;
}

@media all and (min-width:1025px){
    .menu__list--separator {
        position: relative;
        margin-left: var(--spacer--s2);
        padding-left: var(--spacer--s2);
    }

    .menu__list--separator:before {
        content: '';
        position: absolute;
        width: .1rem;
        display: block;
        height: 4rem;
        left: 0;
        background-color: var(--color--borders);
    }

    .menu--visible .menu__list .menu__item:hover .menu__text:after {
        content: '';
        position: absolute;
        width: 100%;
        height: .2rem;
        display: block;
        bottom: .1rem;
        background-color: var(--color--brand--sub-1);
        left: 0;
    }
}

.menu--visible .menu__item:hover .menu__link {
    --menu__link--font--color: var(--color--brand--sub-1);
    --toggle--font--color: var(--color--brand--sub-1);
}

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

.menu--visible .menu__item .menu__link + .submenu__list {
    background-color: var(--color--white);
    border-radius: var(--border--radius);
}

/* MODULES: FOOTER
-----------------------------------------------------------------------
*/

.footer__rights__copy {
    font-size: var(--font--size--00);
}

.footer__social__item {
    height: 2.7rem;
    max-width: 2.7rem;
}

@media all and (min-width: 1025px) {
    .footer__links__divider {
        margin-left: var(--spacer--m);
        margin-right: var(--spacer--m);
    }
}

/* MODULES: BANNER (Main)
-----------------------------------------------------------------------
*/
.banner__wrapper {
    --content--w--full: 113rem;
}

.banner__text__subtitle {
    font-size: var(--font--size--01);
    font-weight: 400;
    padding-bottom: var(--spacer--s);
}

/* PAGETYPES/Login/Reset
------------------------------------------------------------------------------ */

body:is(.body--loginTemp, .body--resetPassword) {
    --banner--height: 17.5rem;
}

.body:is(.body--loginTemp, .body--resetPassword) .main {
    --main--padding--top: var(--spacer--xxxl);
    --main--padding--bottom: var(--spacer--xxxl);
    --color--clickeable: var(--color--brand--sub-1);
}

.body--resetPassword .article__header+* {
    margin-top: var(--spacer--l);
}

@media all and (min-width: 751px) {
    .body--loginTemp .grid>.grid__item:first-child {
        flex-grow: .5;
    }

    .body--loginTemp .grid>.grid__item:last-child {
        --grid--dividers--gap--col: 9.6rem
    }

    .body--loginTemp .article--registered {
        --article--width--max: 28.1rem;
        margin-right: 0;
    }

    .body--resetPassword .article--password {
        max-width: 61.6rem;
    }
}

/* PAGETYPES/Search jobs: banner
------------------------------------------------------------------------------ */

.body--search-jobs .title--banner {
    --title--font--size: var(--font--size--banner-search);
}

.body--search-jobs .banner__wrapper {
    --content--w--full: 101rem;
}

.body--search-jobs .banner__text {
    display: flex;
    flex-direction: column-reverse;
}
/* PAGETYPES/Search jobs: search form
  ------------------------------------------------------------------------------ */

  .body--search-jobs .grid__item--filters {
    margin-bottom: 9.6rem;
}

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

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

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

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

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

.body--search-jobs .grid__item--main {
    max-width: 110.2rem;
    margin: auto;
}

.body--search-jobs .section__header__actions .toggle__icon {
    --toggle--font--color: var(--color--brand--sub-1);
}

.section__content__results .button__icon {
    margin: unset;
}

.article__header__text__subtitle > * {
    white-space: nowrap;
    font-weight: var(--font--weight--bold);
    font-size: var(--font--size--00);
    line-height: 150%;
}

.article--result *+.article__header__text__subtitle {
    margin-top: 2.6rem;
}

.article--result .article__content {
    margin-top: var(--spacer--s2);
}

.list-controls__text__legend__pages {
    font-weight: var(--font--weight--bold);
}

.list-controls__text__reset {
    font-style: normal;
    --color--clickeable: var(--color--brand--sub-1);
}

@media all and (min-width:751px){
    .section__content__results .button--secondary {
        min-width: 12rem;
    }

    .article--result .article__footer {
        margin-top: var(--spacer--xl);
    }
}

@media all and (max-width:750px){
    .section__content__results .article--card .toggle--article {
        --toggle--font--color: var(--color--brand--sub-1);
        --toggle--background--color: transparent;
        align-items: start;
        padding-top: 2.5rem;
    }

    .section__content__results .article--card .article__footer > * {
        --color--clickeable: var(--color--brand--sub-1);
        --card--padding--outers: 5.2rem;
    }

    .article--result *+.article__header__text__subtitle {
        margin-top: 1rem;
    }
}

/* PAGETYPES: JOB DETAIL
-------------------------------------------------------------------------- */
.body--detailTemp .main {
    --color--clickeable: var(--color--brand--sub-1);
    --dividers--border--color: var(--color--borders--sub-1);
}

.body--detailTemp .grid__item--aside-right .article__header__text__title {
    font-size: var(--font--size--00);
}

.body--detailTemp .article--view-more--aside .article__header__text__title {
    font-weight: bold;
    border-bottom: .1rem solid var(--dividers--border--color);
}

.body--detailTemp .article--collapsible:last-child {
    border-bottom-color: transparent;
}

.body--detailTemp .article--details .toggle {
    --toggle--background--color: transparent;
    --toggle--font--color: var(--color--brand--sub-1);
}

@media all and (min-width:1025px){
    .body--detailTemp .grid--2--sidebar {
        gap: 15.8rem;
    }
}

@media all and (max-width: 1024px) {
    .body--detailTemp .article--view-more--aside:last-child {
        background-color: transparent;
    }

    .body--detailTemp .list--share .shareButton {
        width: 3.8rem;
        margin-right: var(--spacer--s);
    }

    .body--detailTemp .article--share > .article {
        display: flex;
        align-items: center;
        gap: var(--spacer--s2);
        justify-content: center;
    }

    .body--detailTemp .article--share > .article > .article__header {
        width: unset;
    }

    .body--detailTemp .aside .article__header+* {
        margin-top: unset;
    }
}

/* PAGETYPES: PROFILE / PROFILE EDIT
---------------------------------------------------------------------------- */

@media all and (min-width:1025px){
    .body--profile .grid--2--sidebar {
        justify-content: space-between;
    }

    .body--profile .grid--2--sidebar > .grid__item--main {
        max-width: 74.7rem;
    }
}

@media all and (max-width: 1024px) {
    .tabs__placeholder {
        color: var(--color--brand--sub-1);
        border-bottom: .1rem solid var(--color--borders--sub-1);
        justify-content: space-between;
    }

    .tabs__placeholder:after {
        background: transparent;
        color: var(--color--brand--sub-1);
    }
}

@media all and (max-width: 1024px) {
    .body--profileEdit .button-bar__wrap {
        flex-direction: column-reverse;
    }
}

/* PAGETYPES: PROFILE JOB ALERTS (.body--profileJobAlerts)
---------------------------------------------------------------------------- */

/* Actions */
.body--profileJobAlerts .table--default tbody tr td:last-child .link {
    float: none;
}

.body--profileJobAlerts .table--default .fa {
    height: 1.3rem;
    width: auto;
}

.body--profileJobAlerts .link:not(.link--error) {
    color: var(--color--brand--sub-1);
    margin-right: var(--spacer--s);
}
/* ----------- */

/* Cards */

.body--profileJobAlerts .table--cards tbody tr>:first-child {
    padding-bottom: var(--spacer--l);
    padding-top: var(--spacer--l);
    height: auto;
    font-family: var(--font--alt);
}

.body--profileJobAlerts .table--cards tbody tr td[data-th]:nth-child(n+2):not(:last-child):before {
    content: attr(data-th) ":\00a0 ";
    display: inline-block;
}

.body--profileJobAlerts .table--cards tbody tr td:nth-child(2) {
    padding-top: var(--card--padding--outers);
    padding-bottom: calc(var(--card--padding--inners) * .5);
    border-top: .1rem solid var(--color--borders);
    height: auto;
}

.body--profileJobAlerts .table--cards:not(.table--cards--with-no-toggle) tbody tr:not(.table__row--open) td:nth-child(n+2):not(:last-child) {
    display: none;
}

.body--profileJobAlerts .table--cards tbody tr td:nth-child(3) {
    border: unset;
    padding-top: calc(var(--card--padding--inners) * .5);
}

/* Card toogle */
@media (max-width: 750px) {
    .body--profileJobAlerts .table--cards tbody tr .toggle--card {
        --toggle--background--color: transparent;
        --toggle--font--color: var(--color--brand--sub-1);
        --card__header--height: 7.2rem;
    }
}

/* PAGETYPES: AGENT CREATE / EDIT
---------------------------------------------------------------------------- */
@media all and (min-width:751px){
    .body--agentCreate .article--alert,
    .body--editAgent .article--alert {
        --article--width--max: 74.3rem;
    }
}

.article--success strong {
    font-weight: 400;
}

.article--success .link {
    color: var(--color--brand--sub-1);
}

/* PAGETYPES: PROFILE JOB APPLICATIONSS (.body--profileJobApplications)
---------------------------------------------------------------------------- */

.body--profileJobApplications .table--cards tbody tr>:first-child {
    padding-bottom: var(--spacer--l);
    padding-top: var(--spacer--l);
    height: auto;
    font-family: var(--font--alt);
    --color--clickeable: var(--color--font)
}

@media all and (max-width: 750px) {
    .body--profileJobApplications .table--cards:not(.table--cards--with-no-toggle) tbody tr:not(.table__row--open) td:nth-child(n+2):not(:last-child) {
        display: none;
    }
}

.body--profileJobApplications .table--cards tbody tr td[data-th]:nth-child(n+2):not(:last-child):before {
    content: attr(data-th) ":\00a0 ";
    display: inline-block;
}

.body--profileJobApplications .table--cards tbody tr td:nth-child(2) {
    padding-top: var(--card--padding--outers);
    padding-bottom: calc(var(--card--padding--inners) * .5);
    border-top: .1rem solid var(--color--borders);
    height: auto;
}

.body--profileJobApplications .table--cards:not(.table--cards--with-no-toggle) tbody tr:not(.table__row--open) td:nth-child(n+2):not(:last-child) {
    display: none;
}

.body--profileJobApplications .table--cards tbody tr td:nth-child(3) {
    border: unset;
    padding-top: calc(var(--card--padding--inners) * .5);
}

/* Card toogle */
@media (max-width: 750px) {
    .body--profileJobApplications .table--cards tbody tr .toggle--card {
        --toggle--background--color: transparent;
        --toggle--font--color: var(--color--brand--sub-1);
        --card__header--height: 7.2rem;
    }
}

/* PAGETYPES: Reg/App methods: Article
   -------------------------------------------------------------------------- */
.body--applicationMethods {
    --dividers--border--color: var(--color--borders--sub-1);
}

.methodButton {
    padding-left: var(--spacer--xs);
    padding-right: var(--spacer--xs);
}

.methodButton--file:before {
    --buttons__icon--height: 3rem;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
}

.methodButton--later:before {
    --buttons__icon--background--image: var(--icon--method--later);
    mask-position: center;
    mask-size: contain;
    -webkit-mask-position: center;
    --buttons__icon--height: 2rem;
}

.methodButton--paste:before {
    --buttons__icon--background--image: var(--icon--method--paste);
    mask-position: center;
    mask-size: contain;
    -webkit-mask-position: center;
    --buttons__icon--height: 2rem;
}

@media all and (min-width:751px) {
    .body--applicationMethods .article--methods .title {
        text-align: center;
    }
}

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

}

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

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

.alert--info {
    --alert--background--color: #f3f4f4;
    --alert__icon--font--color: var(--color--font);
    align-items: center;
}

.alert--info .alert__text {
    display: flex;
    align-items: center;
    gap: var(--spacer--s);
}

.addDatasetRow,
.addDatasetRow:hover {
    --action--font--color: var(--color--brand--sub-1);
}

/* MODULE: COOKIES
-------------------------------------------------------------- */
.cookiesButtonReject {
    background-color: var(--color--white);
}

.cookiesButtonSave {
    background-color: var(--color--brand--sub-1);
    border-color: var(--color--brand--sub-1);
    color: var(--color--white) !important;
}

.cookiesButton:not(.cookiesButtonSettingsIcon) {
    border-radius: 3rem;
    padding-left: var(--spacer--xxl);
    padding-right: var(--spacer--xxl);
}

.cookies__info__buttons {
    margin-top: var(--spacer--xxl);
}

.avaicon-icon-settings:before {
    color: var(--color--white);
}

.cookies__settings__buttons {
    padding-top: 3.3rem;
}

.cookies {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.cookies__open .cookies__info {
    border-color: #ccd5e2;
    margin-bottom: 3.1rem;
}

.cookies__settings__option {
    margin-top: var(--spacer--xxl);
}

input:checked+.cookies__settings__option__slider {
    background-color: var(--color--brand--sub-1);
}
