/* ==========================================================================
   SPECIFICS
   --------------------------------------------------------------------------
   * INVERTING CLICKABLE COLORS (commented and ready to use)
      : Nav
      : Tabs
      : Switcher
      : Dropdown

   * STRUCTURE
      : Content layouts: 2 even column, with a divider (50%) (Override/complement)

   * COMPONENTS
      : Steps bar (Override/complement)
      : Result (New)
      : Attachment upload box (New)

   * PAGETYPES
      : Search jobs
         : Wrapper (Override/complement)
         : Main (Override/complement)
         : Section (Override/complement)
   ========================================================================== */

/* INVERTING CLICKABLE COLORS: Nav
   -------------------------------------------------------------------------- */

/* INVERTING CLICKABLE COLORS: Tabs
   -------------------------------------------------------------------------- */

/* INVERTING CLICKABLE COLORS: Switcher
   -------------------------------------------------------------------------- */

/* INVERTING CLICKABLE COLORS: Dropdown
   -------------------------------------------------------------------------- */

/* STRUCTURE: Content layouts: 2 even column, with a divider (50%) (Override/complement)
   -------------------------------------------------------------------------- */

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .grid--2--divider > .grid__item {
        padding: 0;
    }

    .grid--2--divider > .grid__item:nth-of-type(odd) {
        padding-right: 0;
        max-width: 55%;
        flex: 0 0 55%;
        padding-right: 2rem;
    }

    .grid--2--divider > .grid__item:nth-of-type(even) {
        flex-grow: 1;
        border:none;
        max-width: 45%;
        border-left: .1rem solid var(--color--ligthgrey-v2);
        padding-left: 2rem;
    }

    .grid--2--divider > .grid__item:nth-of-type(even) {
        flex-grow: 1;
    }

}

/* COMPONENTS: Steps bar (Override/complement)
   -------------------------------------------------------------------------- */
   .list--steps .list__item {
        position: relative;
        flex: 1;
        border-top-width: 0.2rem;
        border-top-style: solid;
        border-top-color: var(--color--brand--sub-2);
    }

   .list--steps {
        max-width: 60rem;
   }

   .list--steps:after {
        top: 0;
        border-bottom-width: 0rem;
        border-bottom-style: solid;
        border-bottom-color: transparent;
    }

    .list--steps .list__item .list__item__text:after {
        top: -0.2rem;
        bottom: auto;
        border-bottom-width: 0.2rem;
        border-color: var(--color--brand--sub-2);
    }

    .list--steps .list__item--current .list__item__text:after {
        width: 100%;
        border-color: var(--color--brand--sub-2);
    }

    .list--steps .list__item__text__title{
        text-transform: capitalize;
        margin-top: 2.5rem;
        padding-left: 0.5rem;
        color: var(--color--brand--sub-2);
    }

    .list--steps .list__item:last-child .list__item__text{
        background-color: var(--color--white);
    }

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .list--steps .list__item__text__title {
        text-align: left;
        max-width: 11.5rem;
    }
    .list--steps .list__item__text__subtitle {
        margin-top: -1.3rem;
        width: 2.8rem;
        height: 2.8rem;
        text-indent: -999rem;
        overflow: hidden;
        margin-left: inherit;
        background-image: var(--step_to_fill--background--image);
        background-position: 0 0;
        background-size: 100%;
    }
    .list--steps .list__item.list__item--current .list__item__text__subtitle,
    .list--steps .list__item--filled .list__item__text__subtitle {
        background-image: var(--step_filled--background--image);
        background-position: 0 0;
        background-size: 100%;
    }

    .list--steps .list__item:last-child .list__item__text::after {
        width: 0;
    }

}

/* Media query to target mobile */
@media all and (max-width:750px) {
    .list--steps .list__item {
        border-bottom-width: 0.2rem;
        border-bottom-style: solid;
        border-bottom-color: var(--color--brand--sub-2);
        border-top: none;
    }

    .list--steps .list__item.list__item--last {
        display: block;
    }

    .list--steps .list__item__text__subtitle {
        order: 2;
    }

    .list--steps .list__item .list__item__text:after {
        bottom: -0.2rem;
    }

    .list--steps .list__item__text__title {
        margin-top: 0;
    }
}

/* COMPONENTS: Result (New)
   -------------------------------------------------------------------------- */

.article--result + .article--result {
    margin-top: 1.2rem;
}

.article--result .article__header__text__title a {
    color: var(--color--dark-grey);
}

.article--result .article__header__text__subtitle {
    margin-top: var(--spacer--xxs);
    float: left;
    font-weight: 600;
    text-transform: uppercase;
}

.article--result .article__header__actions {
    display: flex;
    align-items: center;
    float: right;
    font-size: 1.4rem;
}

.article__content__field{
    clear: both;
}

.article__content .article__content__field__label{
    font-weight: 600;
    float: left;
    margin-right: 0.5rem;
}

.share--popUp .share__button {
    font-weight: 600;
}

.share--popUp .share__button > i {
    font-weight: 600;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .article--result {
        border-radius: var(--boxes--border--radius);
        border-width: 0.1rem;
        border-style: solid;
        border-color: var(--boxes--border--color);
        margin-bottom: var(--spacer--l);
    }

    .article--result .article__header {
        flex-direction: column;
        align-items: stretch;
    }

    .article--result .article__header > * {
        width: 100%;
        padding-right: var(--boxes--padding--outers);
        padding-left: var(--boxes--padding--outers);
    }

    .article--result .article__header__text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        min-height: var(--boxes__heading--height);
        padding: var(--boxes--padding--outers) var(--boxes--padding--outers);
    }

    .article--result .article__header__text__title {
        font-size: 1.8rem;
    }

    .article--result .article__header__text__subtitle {
        font-size: 1.4rem;
    }

    .article--result .article__header__actions {
        border-top-width: 0.1rem;
        border-top-style: solid;
        border-top-color: var(--boxes--border--color);
        padding-top: var(--boxes--padding--inners);
        padding-bottom: var(--boxes--padding--inners);
    }

    .article--result .article__header__actions > * + * {
        margin-left: var(--boxes--padding--inners);
    }

    .article--result .article__header__actions .button {
        display: block;
        min-height: 0;
        border-radius: 0;
        border-top-width: 0;
        border-right-width: 0;
        border-bottom-color: transparent;
        border-left-width: 0;
        background-color: transparent;
        padding: 0;
        font-size: 1.2rem;
        text-transform: uppercase;
        line-height: 1.4rem;
        color: var(--color--clickeable);
    }

    .article--result .article__header__actions .button:hover {
        background-color: transparent;
        border-bottom-color: var(--color--clickeable);
    }

    .share--popUp.share--popUp--open .share__popup {
        left: -3.5rem;
    }

    /*redifine for searchJobs move to SEARCHJOBS*/

    .article--result .article__header__text {
        display: block;
        padding: 0;
        min-height: auto;
    }

    .article--result .article__header__text__subtitle {
        float: left;
        min-width: 60%;
    }

    .article--result .article__header__actions {
        float: right;
        border: none;
        padding: 0;
    }

    .article--result .article__header__text__title {
        width: 100%;
        float: left;
        display: block;
    }

}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {

    .body--search-jobs .article--result {
        min-height: 18.5rem;
    }

    .body--profile .complementary--column .article--result {
        min-height: 20rem;
    }

    .article--result {
        padding-top: calc(var(--boxes--padding--inners) * .5);
        padding-bottom: calc(var(--boxes--padding--inners) * .5);

        background-color: var(--color--white);
        border-radius: var(--spacer--m);
        padding: var(--spacer--m);
        border: 0.1rem solid var(--color--lightgrey);
        margin-bottom: 2rem;

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

    .article--result .article__header__actions > * + * {
        margin-left: var(--spacer--s);
    }

    .article--result .article__header__text__title {
        width: 100%;
        float: left;
    }

}

/* COMPONENTS: Attachment upload box (New)
   -------------------------------------------------------------------------- */

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

.article--attachments-upload .article__header {
    margin-bottom: var(--boxes--padding--outers);
    border-bottom-width: 0.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;
}

/* PAGETYPES: Search jobs: Wrapper (Override/complement)
   -------------------------------------------------------------------------- */

.body--search-jobs .complementary--column,
.body--search-jobs .complementary--column .list__item a.link {
    color:var(--color--white)
}

.body--search-jobs .complementary--column .article__content{
    font-size: 1.6rem;
    font-weight: 500;
}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .body--search-jobs .main__wrapper,
    .body--profile .main__wrapper {
        --main--padding--bottom: 0;
        padding-top: 0;
    }

    .main__wrapper {
        padding-top: 10rem;
    }

}

/* PAGETYPES: Search jobs: Main (Override/complement)
   -------------------------------------------------------------------------- */

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {

    .body--search-jobs .main,
    .body--profile .main{
        background-size: 100%;
        background-image: linear-gradient(0deg, #2099c0, #002e61);
        background-position: calc(100% + 33.5rem) 0%;
    }
}

/* PAGETYPES: Search jobs: Section (Override/complement)
   -------------------------------------------------------------------------- */

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .section--search-jobs .form--search .button-bar {
        text-align: right;
    }
    .section--search-jobs .button-bar > fieldset > div{
        float: right;
    }

    .section--search-jobs .section__content__results {
        padding: 0;
    }

}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {

    [class*="main__wrapper"] {
        padding-left: 0;
        padding-right: 0;
    }
    .section--collapsible-form-search .form--search .Section{
        margin-top: 8rem;
    }

    .section--search-jobs {
        border-radius: var(--boxes--border--radius) var(--boxes--border--radius) 0 0;
        background-size: 100%;
        background-image: linear-gradient(0deg, #2099c0, #002e61);
        background-position: 0 0;
    }
    .section--search-jobs .grid{
        margin: 0;

    }

    .section--search-jobs.section--collapsible-form-search .form--search {
        top: var(--spacer--l);
    }

    .section--search-jobs.section--collapsible-form-search .form--search .form__toggle {
        right: var(--spacer--l);
    }

}

/* Media query to target only desktop */
@media all and (min-width:1025px) {

    .section--search-jobs .section__header + .section__content {
        margin-top: 0;
    }

}

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

    .body--search-jobs .main__wrapper,
    .body--profile .main__wrapper {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .body--search-jobs .main,
    .body--profile .main{
        background-size: 100%;
        background-image: linear-gradient(0deg, #2099c0, #002e61);
        background-position: 0 0;
    }

    .section--search-jobs.section--collapsible-form-search .form--search .Section {
        padding-bottom: 3rem;
        background-color: var(--color--lightgrey);
        box-shadow: none;
    }

    .section--collapsible-form-search .form--search .form__toggle {
        top: 3rem;
        margin-right: 2rem;
    }

    .section--collapsible-form-search .form--search .form__toggle:focus {
        background: var(--color--white);
    }

    .section--collapsible-form-search .form--search .form__toggle:hover,
    .section--collapsible-form-search .form--search.form--open .form__toggle{
        background-color: var(--color--lightgrey);
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
    }

    .section--collapsible-form-search .section__header__text {
        display: flex;
        align-items: flex-start;
        border-bottom-width: 0.1rem;
        border-bottom-style: solid;
        border-bottom-color: var(--dividers--border--color);
        padding: var(--spacer--s) 0;
        flex-direction: column;
    }

    .section--search-jobs .section__header__text__title {
        margin-bottom: 1rem;
    }

    .section--search-jobs aside {
        background-color: var(--color--white);
        padding: 4rem 3rem 2rem;
    }

    .section--search-jobs .secondary--column .section__header--main {
        padding: 2rem 3rem 0;
    }

    .body--search-jobs .article--result {
        min-height: 18.5rem;
    }

    .body--profile .complementary--column .article--result {
        min-height: 20rem;
    }

    .article--result {
        padding-top: calc(var(--boxes--padding--inners) * .5);
        padding-bottom: calc(var(--boxes--padding--inners) * .5);

        background-color: var(--color--white);
        border-radius: var(--spacer--m);
        padding: var(--spacer--m);
        border: 0.1rem solid var(--color--lightgrey);
        margin-bottom: 2rem;

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

    .article--result .article__header__actions > * + * {
        margin-left: var(--spacer--s);
    }

    .article--result .article__header__text__title {
        width: 100%;
        float: left;
    }

}

/* below 751*/
@media all and (max-width:750px) {

    .section--collapsible-form-search .form--search .form__toggle {
        top: 5.2rem;
    }

    .section--collapsible-form-search .form--search .Section {
        margin-top: 10.3rem;
    }

    .body--profile .complementary--column .article--result {
        min-height: auto;
    }

    .complementary--column .article--result .article__header + * {
        margin-top: var(--spacer--s);
    }
}

/*HERE START THE CUSTOM STYLES FOR KOCH*/

/*
    1. SCROLLBAR CUSTOM (styles added for custom scrollbars])
    b. redifine inputs
    c. redifine select2 options

    2. EXTERNAL NAVIGATION (custom links in white)
    a.menu
    b.social icons

    3. ASIDE SEARCHJOBS
    4. Profile
    5. SUCCESS
    6. TAXSURVEY

*/

@media (min-width: 1025px){
    .body--footer-sticky .grid,
    .body--footer-sticky .section:last-of-type {
        flex-grow: initial;
    }
}

/* 1. SCROLLBAR CUSTOM
-------------------------------------*/

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color--ligthgrey-v3) var(--color--white);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 1.2rem;
}

*::-webkit-scrollbar-track {
    background: var(--color--white);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--color--ligthgrey-v3);
    border-radius: 2rem;
    border: 0.3rem solid var(--color--white);
}

:root {
    scrollbar-color: var(--color--ligthgrey-v3) transparent;
    scrollbar-width: 1rem;
}

/* RADIO BUTTONS */
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -999rem;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 2.7rem;
    cursor: pointer;
    line-height: 2rem;
    display: inline-block;
    color: var(--color--buttons--sub-1);
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    border: 0.2rem solid var(--color--clickeable);
    border-radius: 100%;
    background: var(--color--white);
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 1rem;
    height: 1rem;
    background: var(--color--clickeable);
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/* RADIO BUTTONS */

/*arrow on icon subnav*/
.nav__item--has-subnav--with-arrow .nav__item__link:before {
    display: inline-block;
    padding: 0.5rem;
    background: var(--select__arrow-down--background--image);
    background-repeat: no-repeat;
    background-size: 1.6rem;
    background-position-x: 50%;
    width: 1.7rem;
    background-size: 100%;
    background-position-y: center;
    background-position-y: center;
    border: none;
}

/* INPUT REDIFINE BORDERS */

.button,
.form [class$="Button"],
.fieldSpec .button-bar__wrap .button {
    border-radius: 2rem;
    border-width: 0.2rem;
}

/*for SAFARI INPUT*/
@supports not(selector(:where)) {

    .form input[type="text"]:not([class*="select2"]) {
        border-radius: var(--spacer--l);
        border-width: 0.2rem;
    }

}

.form input:where([type="color"],
[type="date"],
[type="datetime-local"],
[type="email"],[type="file"],
[type="month"],[type="number"],[type="password"],
[type="range"]:not(.progress-bar__selector),[type="search"],[type="tel"],[type="text"],[type="time"],[type="url"],[type="week"]):not([class*="select2"]),
.form select,
.form textarea,
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single,
.methodButton--later,
.methodButton--file,
.methodButton--paste,
.methodButton--dropbox,
.signed__fields.grid input {
    border-width: 0.2rem;
    border-style: solid;
    border-radius: var(--spacer--l);
}

.form--grid .fieldSpec {
    padding-left: 2.5rem;
    padding-right: 0.5rem;
}

.removeDatasetRow, .addDatasetRow {
    float: none;
    display: block;
}

.downloadAttachmentsButton {
    padding: var(--spacer--s) var(--spacer--m);
    border-color: var(--buttons--secondary--default--color--border);
    background-color: var(--buttons--secondary--default--color--background);
    color: var(--buttons--secondary--default--color--font);
}

.downloadAttachmentsButton:hover {
    text-decoration: none;
    border-color: var(--buttons--secondary--hover--color--border);
    background-color: var(--buttons--secondary--hover--color--background);
    color: var(--buttons--secondary--hover--color--font);
}

/* Hide forms title in wizards */
.form__item--hidden-title .FormHeader {
    display: none;
}

/*Margin bottom for Form fields*/
.formContainer .formfieldSpec{
    margin-bottom: 2.2rem;
}

/*REDIFINE SELECT2 OPTIONS*/
.ui-widget,
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    background-color:transparent;
}

.ui-dialog.ui-widget {
    background-color: var(--color--white);
}

.select2-container .select2-search--inline {
    width:97%;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--single .select2-selection__choice {
    background-color: var(--color--brand--sub-1);
    color: var(--color--white);
    border: 0.1rem solid var(--color--brand--sub-1);
    border-radius: 1.5rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove span,
.select2-container--default .select2-selection--single.select2-selection__choice__remove span {
    color: var(--color--white);
}

.select2-container--default .select2-search--inline .select2-search__field {
    font-size: 1.6rem;
    padding-left: 0.4rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li.select2-search:first-child:after,
.select2-container--default .select2-selection--single .select2-selection__rendered li.select2-search:first-child:after {
    border-right: none;
    background-image: var(--select__arrow-down--background--image);
    padding-right: 1.7rem;
    background-position: 0 0.2rem;
    background-size: 100%;
    border: none;
    position: relative;
}

.form select:not([multiple]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: var(--select__arrow-down--background--image);
    background-repeat: no-repeat;
    background-size: 1.6rem;
    background-position-x: 95%;
    background-position-y: center;
    background-color: var(--color--white);
    padding-right: 3.5rem;
}

.form .MonthAndYear_YearWrapper select:not([multiple]) {
    padding-right: 3rem;
}

.form select[multiple] {
    overflow-y: auto;
}

/*font*/
.nav__item__link {
    font-weight: 600;
}

[class*="__title--"] {
    font-weight: 700;
}

.custom--title-blue.Separator > legend,
[class$="__title--11"] {
    font-size: 4.4rem;
    color: var(--color--brand);
}

[class$="__title--11"] {
    font-weight: 700; /*in mockup appears as 600 but 700 is more accurate*/
}

.custom--title-blue.Separator,
.article__header__text--custom-border {
    border-bottom: 0.1rem solid #c4c4c4;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

/*REDIFINE COLORS OF BUTTONS*/
.methodButton--file {
    background-image: var(--method__button__file--background--image);
    padding-left: 3.4rem;
}

.methodButton--paste {
    background-image: var(--method__button__paste--background--image);
    padding-left: 3.4rem;
}

.methodButton--later {
    background-image: var(--method__button__later--background--image);
    padding-left: 3.4rem;
}

.button--primary:hover,
.saveButton:hover,
.submitButton:hover,
.nextButton:hover,
.gotoButton:hover,
.redirectUrlButton:hover,
.formNextButton:hover {
    border-color: var(--buttons--primary--focus--color--border);
    background-color: var(--buttons--primary--focus--color--background);
    color: var(--buttons--primary--focus--color--font);
}

/*grid margin for section__content*/

.section__content.t--c .article__content {
    margin-top: var(--spacer--xxxl);
}

.grid__item .section__content.section__content--w--narrower {
    margin-left: 0;
}

/*WIZARD ON ASIDE*/
.fieldSpec > label,
.formfieldSpec > label,
.datasetfieldSpec > label,
.DateFormField > div > label,
.MultipleDatasetEntryFormField .datasetfieldSpec fieldset > legend {
    color: var(--color--buttons);
    font-weight: 600;
    font-size: 1.8rem;
}

.fieldSpec fieldset > legend,
.formfieldSpec fieldset > legend,
.datasetfieldSpec fieldset > legend {
    color: var(--color--font);
    font-weight: 500;
    font-size: 1.6rem;
}

/*WIZARD */

.fieldSpec.RadioButtonListFormField fieldset > legend,
.fieldSpec.fieldSpecPadder .description {
    font-size: 1.6rem;
    line-height: 3rem;
}

.fieldSpec.RadioButtonListFormField fieldset > legend {
    color: var(--color--brand--sub-1);
    font-weight: 500;
    line-height: 3rem;
}

.Separator > legend {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
}

.Separator {
    height: 2rem;
    margin-bottom: var(--spacer--l);
    border-top: 0.1rem solid var(--color--ligthgrey-v2);
    padding: 4rem 0 3rem 0;
    margin-top: 2rem;
}

.Separator--no--border {
    border-top: none;
    padding-top: 0;
}

.content--scrollable {
    max-height: 20rem;
    overflow: scroll;
    padding-bottom: var(--spacer--s);
}

.errorMessageIcon {
    position: relative;
    vertical-align: text-top;
    color: transparent;
    max-height: 3rem;
}

.fieldSpec .button-bar__wrap button {
    margin-right: 1rem;
}

div[class*="fieldSpec"].DateFormField div[class*="YearWrapper"] {
    width: 30%;
}

div[class*="fieldSpec"].DateFormField div[class*="MonthWrapper"] {
    width: 50%;
}

.fieldSpec + .fieldSpec.AcceptCheckboxField {
    margin-top: 0;
}

/*extra margin for wizard questions added 29.6*/
.fieldSpec.RadioButtonListFormField,
.fieldSpec.MultiLineFormField {
    margin-bottom: var(--spacer--m);
}
/*extra margin for wizard questions added 29.6*/

.fieldSpec.AcceptCheckboxField input {
    margin-top: 0.4rem;
    transform: scale(1.2);
}

/* field beside other with text description */
.fieldSpec.beside--text--description label {
    margin-bottom: 3.2rem;
}
/**/

/*border-line grey for wizard*/

.border-color--top {
    border-top: 0.1rem solid var(--color--ligthgrey-v2);
    padding-top: var(--spacer--m);
    margin-top: var(--spacer--m);
}

.border-color--top fieldset {
    margin-top: var(--spacer--m);
}

/* CUSTOM BEHAVIOUR OF 2ND BUTTON ON YOUR INFORMATION*/
.custom--buttons-behaviour button:nth-child(2) {
    border-color: var(--buttons--secondary--default--color--border);
    background-color: var(--buttons--secondary--default--color--background);
    color: var(--buttons--secondary--default--color--font);
}

.custom--buttons-behaviour button:hover:nth-child(2) {
    border-color: var(--buttons--secondary--hover--color--border);
    background-color: var(--buttons--secondary--hover--color--background);
    color: var(--buttons--secondary--hover--color--font);
}

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

    .form .fieldSpec .button-bar__wrap button {
        width: 100%;
        margin-bottom: var(--spacer--m);
    }

    .Separator {
        height: auto;
        padding: 0;
        margin-top: 0;
        padding-top: var(--spacer--m);
    }

}

/*ASIDE ON SEARCHJOBS*/
.section.section--search-jobs.section--collapsible-form-search .section__header .section__header__text {
    display: none;
}

.section__header__text__title{
    margin: 0 0 2rem 0;
    font-weight: 700; /*in mockup appears as 600 but 700 is more accurate*/
}

.main--column .fieldSpec .button-bar__wrap button {
    margin-right: 0rem;
}

/*ASIDE ON DETAIL*/

.grid__item.grid__item--aside-left .banner__text__title {
    margin: var(--spacer--xl) 0 7rem;
}

.grid .grid__item .company__logo {
    max-width: 14rem;
}

.grid .grid__item .section.js_views {
    margin-top: var(--spacer--l);
}

.aside .article.article--actions .share--popUp--topLeft .share__popup {
    top: -4.5rem;
}

.aside .article.article--actions .button-bar__wrap,
.grid__item .article.article--actions .button-bar__wrap {
    overflow: inherit;
}

.grid .grid__item .share__button {
    margin-left: var(--spacer--s2);
    border-color: var(--buttons--primary--default--color--border);
}

.grid .grid__item .article--result .share__button {
    border-color: transparent;
    color: var(--color--brand--sub-1);
}

.article--actions .article__content .button-bar {
    margin-top: var(--spacer--l);
}

.article + .article--view-more--aside {
    margin-top: var(--spacer--xl);
}

.article--view-more--aside .article__content {
    margin-top: var(--spacer--m);
}

@media (min-width: 1025px) {
    .grid--2--sidebar > .grid__item {
        padding-left: 5rem;
        padding-top: 0;
    }
    .border--line--color{
        border-left: 0.1rem solid var(--color--clickeable);
        margin-left: 2rem;
    }

    .grid--2--sidebar > .grid__item--aside-left {
        min-width: 35rem;
        padding-top: 0;
        padding-left: var(--grid--columns--gap);
    }
    .grid--2--sidebar > .grid__item--aside-left .aside {
        overflow-x: inherit;
    }

}

@media (max-width: 1024px){
    .article--view-more--aside {
        background-color: transparent;
    }

}

@media (min-width: 751px) {
    .aside .article.article--actions .button-bar--cols-2 button,
    .aside .article.article--actions .button-bar--cols-2 input[type="submit"],
    .aside .article.article--actions .button-bar--cols-2 .button {
        width: auto;
    }
    .aside .article.article--actions .article__header__actions {
        text-align: left;
    }
    .button-bar--cols-2 .button {
        width: auto;
    }
}

/*ASIDE ON REGISTER*/
.grid--2--sidebar > .grid__item--register-right {
    max-width: 65rem;
    padding-left: 3rem;
    margin-left: 3rem;
}

.list.list--view-more .article--view-more--aside .article__header,
.article--view-more--aside .article__header {
    border: none;
}

/*WIZARD FIELDS ON SIGNANDSUBMIT*/

.signed__fields.grid {
    margin: 3rem 0 0 0;
}

.page__subsection__header__text__title {
    margin-bottom: 1rem;
}

.signed__fields.grid .grid--item {
    width: 50%;
}

.signed__fields.grid--item .fieldSpec,
.signed__fields.grid--item .datasetfieldSpec,
.signed__fields.grid--item .formfieldSpec {
    width: 100%;
    max-width: 100%;
    padding-bottom: var(--form__item--padding--outers);
    clear: both;
}

.signed__fields.grid input {
    height: var(--fields--height);
    padding: var(--spacer--s) var(--spacer--s2);
    line-height: calc(var(--fields--height) - ( var(--spacer--s) * 2) - 0.2rem);
    border-color: var(--fields--border--color);
    width: 100%;
}

.signed__fields .fieldSpec.form__item--odd {
    float: left;
    clear: both;
}

.signed__fields .fieldSpec.form__item--even {
    float: right;
    clear: right;
}

.signed__fields .fieldSpec.form__item--odd,
.signed__fields .fieldSpec.form__item--even {
    width: calc(100% - 1rem);
}

/*WIZARD FIELDS ON SIGNANDSUBMIT*/

/* 2. External navigation custom links in white 27.04
-------------------------------------*/
.nav__list .nav__item .nav__item__link.custom--link {
    color: var(--color--white);
}

.header__nav .nav .nav__list {
    margin-right: var(--spacer--xxl);
}

/*border--radius for menu on header*/

.nav__item--has-subnav:hover .nav__item__link {
    border-radius: 2rem 2rem 0 0;
    border-bottom: 0.1rem solid var(--boxes--border--color);
}

.nav__item--has-subnav--overflows-not .subnav__list {
    border-radius: 0 0 2rem 2rem;
}

/* end border--radius for menu on header*/

.header__nav .nav__item__link.custom--link {
    background-color: var(--color--clickeable);
    border-radius: 2rem;
    background-image: var(--search_white--background--image);
    background-position: 90% 1.1rem;
    background-repeat: no-repeat;
    padding-right: 5rem;
    background-size: 10%;
}

.nav__list .nav__item .nav__item__link.custom--link:hover {
    border-color: var(--buttons--primary--focus--color--border);
    background-color: var(--buttons--primary--focus--color--background);
    color: var(--buttons--primary--focus--color--font);
}

.nav__list .nav__item .nav__item__link.custom--link:hover {
    background-image: var(--search_default--background--image);
}

html[class*="__open"] > .body {
    overflow: hidden;
}

.custom--icon--user {
    font-size: 1.8rem;
    min-width: 11rem;
    font-weight: 600;
}

.custom--icon-logged .nav__item__link {
    width: 20rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.custom--icon-not-logged .nav__item__link {
    width: 15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hamburger_menu {
    position: relative;
    width: 12rem;
}

#menu__toggle {
    opacity: 0;
}

.hamburger_menu.menu--open > .menu__btn > .span__button {
    width: 10rem;
}

.hamburger_menu.menu--open > .menu__btn > .span__button::before {
    top: 0;
    content:'Close';
    background-image: var(--hamburger_close--background--image);
    background-repeat: no-repeat;
    background-position: 92% 50%;
    background-size: 20%;
    border: 0.2rem solid #1c2b39;
    border-radius: 1.8rem;
    padding: 0.2rem 1.3rem;
    height: 3rem;
    line-height: 2.8rem;
    height: 3.3rem;
    background-color: var(--color--white);
}

.hamburger_menu.menu--open > .menu__box {
    right: 0;
}

.menu__btn:focus {
    outline: none;
}

.menu__btn {
    position: absolute;
    cursor: pointer;
    z-index: 4;
    top: -1.2rem;
}

.menu__btn > .span__button,
.menu__btn > .span__button::before {
    display: block;
    position: absolute;
    width: 10rem;
}

.menu__btn > .span__button::before {
    content: 'Menu';
    background-image: var(--hamburger_open--background--image);
    margin: -0.6rem 0 0 0;
    background-position: 92% 70%;
    background-size: 2.4rem;
    border: 0.2rem solid transparent;
    border-radius: 1.8rem;
    padding: 0.2rem 1.3rem;
    height: 3rem;
    line-height: 2.8rem;
    height: 3.3rem;
    font-weight: 600;
    color: var(--header--clickeable--color);
}

.main__column {
    width: 32%;
    overflow-y: auto;
    padding-top: 10rem;
}

.menu__box .nav__item--has-subnav--with-arrow .nav__item__link:before {
    padding: 0;
    width: 0.8rem;
    content: "";
    position: absolute;
    top: 2.5rem;
    transform: translateY(calc(-50% - 0.25rem));
    right: var(--spacer--s);
    border-top: 0.5rem solid var(--color--regular-grey);
    border-right: 0.4rem solid transparent;
    border-left: 0.4rem solid transparent;
    background: none;
}

/*custom arrow for user dropdown on mobile*/
.menu__box .nav__item--has-subnav--with-arrow.custom--icon-not-logged .nav__item__link:before {
    top: 3.5rem;
    display: inline-block;
    padding: 0.5rem;
    background: var(--select__arrow-down--background--image);
    background-repeat: no-repeat;
    background-size: 1.6rem;
    background-position-x: right;
    width: 1.7rem;
    background-size: 100%;
    background-position-y: center;
    border: none;
}

/*custom arrow for user dropdown on mobile LOGGED*/
.menu__box .nav__item--has-subnav--with-arrow.custom--icon-logged .nav__item__link:before {
    top: 3.5rem;
    display: inline-block;
    padding: 0.5rem;
    background: var(--select__arrow-down--background--image);
    background-repeat: no-repeat;
    background-size: 1.6rem;
    background-position-x: right;
    width: 1.7rem;
    background-size: 100%;
    background-position-y: center;
    border: none;
}

.menu__box {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    min-width: 50%;
    height: 100%;
    margin: 0;
    list-style: none;
    background-color: var(--color--white);
    box-shadow: -0.3rem 0 1.3rem rgb(0 0 0 / 36%);
    transition-duration: 1s;
    z-index: 3;
    padding-bottom: 3rem;
}

/*custom class for reduze size 14.7*/

.menu__box.menu__box--condensed {
    width: 32%;
    min-width: 32%;
}

.menu__box.menu__box--condensed .main__column{
    width: 75%;
}
/*custom class for reduze size 14.7*/

.menu__box .menu__box__items > .sidemenu__links__item{
    width: 80%;
    position: relative;
}

.menu__item {
    display: block;
    color: var(--color--dark-grey);
    font-size: 2.4rem;
    font-weight: 700;
    text-decoration: none;
    transition-duration: 0.5s;
    margin-bottom: 2.5rem;
    letter-spacing: -0.05rem;
}

.menu__item:hover,
.menu__box .dropdown__menu .sidemenu__links__item .dropdown__menu__links__item:hover {
    color: var(--color--lightblue);
}

.menu__box__items {
    width: 100%;
    position: relative;
    padding-top: 2rem;
    overflow-y: auto;
    padding-bottom: 2rem;
    padding-left: 2.4rem;
}

.menu__box__items .menu__item:hover,
.menu__box__items .menu__item:focus-within {
    cursor: pointer;
}

.menu__box__items .menu__item:focus-within {
    outline: none;
    color: var(--color--darkblue);
}

.menu__box__items .dropdown__menu {
    visibility: hidden;
    opacity: 0;
    min-width: 15%;
    transition: all 0.5s ease;
    right: 0;
    display: none;
    position: fixed;
    top: 12.7rem;
    z-index: 4;
    height: 100vh;
    width: 25%;
    max-width: 25%;
    overflow-y: auto;
    padding-bottom: 50rem;
}

.menu__box__items .sidemenu__links__item:focus-within > .dropdown__menu,
.menu__box__items .sidemenu__links__item .dropdown__menu:focus {
    visibility: visible;
    opacity: 1;
    display: block
}

.menu__item:focus {
    color: var(--color--lightblue);
}

.menu__box__items .dropdown__menu .dropdown__menu__links__item {
    clear: both;
    width: 100%;
    max-width: 75%;
    font-size: 1.6rem;
    margin-bottom: 0rem;
}

.menu__box__items .dropdown__menu .dropdown__menu__links__item--parent{
    margin-top: 1.8rem;
    border-bottom: 0.1rem solid var(--color--borders-v2);
    font-weight: 700;
}

.dropdown__menu__links__item--parent > a{
    display: inline-block;
    margin-bottom: 2rem;
}

.menu__box__items .dropdown__menu .dropdown__menu__links__item.dropdown__menu__links__item--childs{
    font-weight: 600;
    margin-bottom: 2rem;
    margin-left: 2rem;
}

.dropdown__menu--sub-category{
    margin-bottom: 2rem;
}

.menu__box__items .dropdown__menu .dropdown__menu__links__item a:nth-child(1):hover {
    color: var(--color--lightblue);
}

.hamburger_menu__overlay {
    background: var(--color--dark-grey-v2);
    width: 100%;
    height: 100%;
    display: flex;
    flex: none;
    transform: scale(3);
    position: fixed;
    opacity: 0;
    z-index: 0;
    display: none;
}

.hamburger_menu.menu--open > .hamburger_menu__overlay {
    transform: scale(3);
    position: fixed;
    background: var(--color--dark-grey-v2);
    transition: all 2.5s ease;
    opacity: 0.2;
    display: block;
}

.social__links {
    max-width: 20rem;
    float: left;
    border-right: 0.1rem solid var(--color--borders-v2);
    height: 100vh;
    padding: 14.5rem 4rem 0 4rem;
}

.social__links .social__links__item{
    margin-bottom: 1.5rem;
    min-width: 2.9rem;
    text-align: center;
    margin-bottom: 3rem;
}

.social__links .menu__social__item {
    display: inline-block;
}

.social__links .menu__social__item:hover,
.social__links .social__links__item:hover {
    opacity: 0.4;
}

/*secondary options*/
.secondary__options {
    border-top: 0.1rem solid var(--color--borders-v2);
    margin: 2rem;
}

.secondary__options .secondary__options__menu {
    margin-top: 2rem;
}

.secondary__options .menu__item {
    font-size: 1.4rem;
    font-weight: normal;
    font-weight: 600;
}

.mobile--custom-menu {
    display: none;
}

/* Media query to target only desktop */
@media all and (min-width:1025px) {

    .nav {
        min-width: 30rem;
    }

    .nav__list.language--switcher {
        margin: 0% 0 0 5%;
        width: 95%;
    }

    .language--switcher .nav__item--has-subnav--with-arrow .nav__item__link {
        padding: 1rem 1rem 0.5rem 1rem;
    }

    .main__column .nav__list.language--switcher {
        width: 90%;
        margin: 0 5%;
    }

    .language--switcher .portalLanguages {
        border-style: none;
        border-color: none;
        max-height: 100vh;
        box-shadow: none;
    }

    .menu__box .language--switcher .nav__item.nav__item--has-subnav.nav__item--has-subnav--overflows-not {
        width: 100%;
    }

    .menu__box .nav__item--has-subnav:hover .nav__item__link {
        box-shadow: none;
        border-radius: 0;
        border: none;
        background-color: var(--color--white);
    }

}

@media all and (max-width:1025px) {
    .header--mobile-menu--from-right .header__wrapper {
        padding-right: 1rem;
    }

    .share--popUp,
    .main__column {
        width: 100%;
    }

    .menu__item {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .menu__box__items .dropdown__menu {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        padding-bottom: 0;
    }

    /*navigation*/

    .nav__list {
        padding: 0;
        float: left;
        display: none;
    }

    .nav__list.language--switcher {
        display: block;
        float: initial;
        margin: 0 2rem;
    }

    .menu__box .main__column li {
        width: 100%;
    }

    .menu__box .main__column .language--switcher .nav__item {
        border-top: 0.1rem solid var(--color--borders-v2);
    }

    .hamburger_menu {
        position: relative;
        float: left;
    }

    .nav__list.mobile--custom-menu {
        display: block;
        margin: 3rem 0 0 5%;
        width: 90%;
        float: none;
        border-bottom: 0.1rem solid var(--color--borders-v2);
    }

    .mobile--custom-menu.nav__item.nav__item--has-subnav.nav__item--has-subnav--overflows-not.nav__item--has-subnav--with-arrow {
        display: none;
    }

    .mobile--custom-menu.nav__item.nav__item--has-subnav.nav__item--has-subnav--overflows-not.nav__item--has-subnav--with-arrow.nav__item--has-subnav--open {
        display: block;
    }

    .menu__box .mobile--custom-menu .subnav__item,
    .menu__box .mobile--custom-menu .dropdown__menu__links__item{
        width: 100%;
    }

    .nav__item--has-subnav:hover .nav__item__link {
        border-bottom: 0.1rem solid transparent;
    }

    .nav__item.nav__item--active.nav__item--has-subnav.nav__item--has-subnav--overflows-not.nav__item--has-subnav--with-arrow .subnav__list {
        display: none;
    }

    .nav__item.nav__item--active.nav__item--has-subnav.nav__item--has-subnav--overflows-not.nav__item--has-subnav--with-arrow.nav__item--has-subnav--open .subnav__list {
        display: block;
    }

    .custom--icon .nav__item__link {
        background-position: 9.5rem center;
        background-size: 2rem;
    }

    /*custom class for reduze size 14.7*/
    .menu__box.menu__box--condensed {
        width: 100%;
        min-width: 100%;
    }
    /*custom class for reduze size 14.7*/

    .menu__box {
        width: 100%;
    }

    .menu__box .nav__item--has-subnav--with-arrow .nav__item__link:before {
        top:3.5rem;
    }

    .custom--icon-logged .nav__item__link {
        width: 100%;
        background-size: 2.5rem;
        background-position-y: center;
        background-position-x: calc(100% - 4rem);
    }

    .menu__btn > .span__button::before {
        content:"";
    }

}

/*LOGIN*/

.body--login.body--header-fixed-on-scroll .body__content {
    min-height: 100vh;
}

.body--login {
    background-image: linear-gradient(0deg, #2099c0, #002e61);
}

.body--login .section__content {
    padding: 0 3rem;
}

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

.body--login .main__wrapper {
    min-height: auto;
}

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

.body--login .main__content {
    max-width: 97rem;
    min-height: 60rem;
    background-image: var(--graphic_square--background--image);
    background-position: right 100%;
    background-repeat: no-repeat;
    justify-content: center;
}

.body--login .section {
    padding: 3rem;
    max-width: 75rem;
    border-radius: 2rem;
    background-color: var(--color--white);
}

.body--login .fieldSpec.button-bar button {
    float: right;
}

.body--login .article__footer {
    margin-left: 3rem;
    padding: 0;
    background-color: transparent;
    text-align: left;
}

.body--login .article__footer .link {
    font-size: 1.4rem;
}

.body--login .article__footer .link:hover {
    text-decoration: underline
}

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

    .body--login {
        background: none;
        background-color: none;
    }

    .body--login .main__content {
        background-image: none;
    }

    .body--login .section__content {
        margin-top: 3rem;
        padding: 0;
    }

    .body--login .grid--2--divider {
        max-width: fit-content;
    }

    .body--login .grid > .grid__item {
        padding-right: 0;
    }

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

    .body--login .form--grid .fieldSpec {
        padding-right: 0;
        padding-left: 0;
    }

}

/* SECTION PAGE CUSTOM LAYOUT COLUMNS
------------------------------------------------------------*/

.grid > .grid__item.main--column {
    max-width: 30%;
    margin-right: 2%;
    overflow: auto;
    background-color: var(--color--white);
    padding-right: 6rem;
}

.grid__item.main--column .article--details {
    margin-top: 3rem;
}

.grid__item.main--column .article__content__view__field__label,
.article--details .article__content__view__field__label {
    color: var(--color--brand--sub-2);
}

.article--details .article__content__view__field__value strong {
    color: var(--color--brand--sub-2);
    font-weight: 600;
}

.article--details .article__content__view__field__value {
    color: var(--color--font);
}

.grid__item--aside-left .article--details .article__content__view__field__value {
    font-weight: 600;
}

.secondary--column .section__header--main {
    color: var(--color--white);
}

.grid > .grid__item.secondary--column .grid__item.result--column {
    min-width: 63%;
    margin-right: 9%;
}

.grid__item.secondary--column {
    padding-left: 0;
    margin-left: 3%;
}

.complementary--column .article__content .article__content__field__label {
    float: none;
    margin-right: 0;
}

.grid__item.main--column .button-bar .button {
    width: auto;
}

/*PAGINATION*/
.secondary--column .list-controls__pagination {
    font-weight: 600;
}

.secondary--column .list-controls__pagination__item.currentPageLink {
    cursor: pointer;
    color: var(--color--white);
    background: var(--color--black);
    border-radius: 2.5rem;
    min-width: 2.3rem;
    text-align: center;
    min-height: 2.3rem;
    line-height: 2.2rem;
}
.secondary--column .list-controls__pagination__item.currentPageLink:hover {
    color: var(--color--white);
    background: #777;
    text-decoration: none;
    border-bottom: none;
}
.secondary--column .list-controls__pagination__item:not(.currentPageLink) {
    color: var(--color--black);
}

/*now the padding and margins*/
.section--search-jobs .grid .grid__item.main--column,
.section--search-jobs .grid .grid__item.secondary--column {
    padding-top: 10rem;
    padding-bottom: 4rem;
    min-height: 73rem;
}

/* When the browser is at least 1024px and above */
/* Media query to target mobile and tablet */

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

    .section.section--search-jobs.section--collapsible-form-search .grid > .grid__item.main--column,
    .section.section--search-jobs.section--collapsible-form-search .grid > .grid__item.secondary--column {
        margin-right: 0;
        overflow: auto;
        max-width: fit-content;
        max-width: 100%;
        display: contents;
    }

    .section.section--search-jobs.section--collapsible-form-search .section__header .section__header__text {
        display: none;
    }

    .grid {
        margin-left: 0;
        margin-right: 0;
    }

    .grid > .grid__item.secondary--column .grid__item.result--column {
        min-width: 100%;
        margin-right: 0%;
        padding: 0 3rem;
    }

    .grid__item.secondary--column {
        padding-top: 0;
    }

    .grid__item.secondary--column .button.button--secondary {
        width: 100%;
    }

    .grid > .grid__item.main--column {
        max-width: 100%;
        margin-right: 0;
        margin-right: 0%;
        padding: 0 3rem;
    }

    .grid > .grid__item.complementary--column {
        margin-bottom: 2rem;
        padding: 0 3rem;
    }

    .section--search-jobs .grid .grid__item.main--column,
    .section--search-jobs .grid .grid__item.secondary--column {
        padding: 0;
    }

    .section--search-jobs .grid .grid__item.main--column {
        min-height: auto;
    }

    /*article actions on profile*/

    .body--profile .grid__item.secondary--column {
        margin-left: 0;
    }

    .body--profile .section--search-jobs .grid .grid__item.secondary--column {
        padding-top: 2rem;
    }

    .body--profile .article--actions {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        z-index: inherit;
        box-shadow: none;
        width: auto;
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
    }

    .body--profile .article--actions .article__content .button-bar {
        margin-top: 0;
    }

    .body--profile .button-bar {
        margin-top: 0;
    }

    .body--profile .grid__item.main--column .button-bar .button {
        width: 100%;
        margin: 0;
        margin-bottom: 1.5rem;
    }

    .body--profile .table--cards tbody tr {
        flex: 0 0 98%;
        max-width: 98%;
        border: none;
        border-radius: 2rem;
    }

    .table--cards tbody td:nth-of-type(3),
    .table--cards tbody td:nth-last-of-type(1):not(:nth-of-type(1)) {
        border-top: none;
    }

    .table--cards tbody td:nth-of-type(2),
    .table--cards tbody td:nth-of-type(3) {
        padding: 0rem 1.5rem;
    }

}

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

    .grid > .grid__item {
        flex: 0 0 100%;
        padding-right: var(--spacer--l);
    }

    [class*="--w--narrower"] {
        max-width: inherit;
    }
}

/*JOB DETAIL
----------------------------------------------------------*/
.alert--info {
    background-color: var(--color--brand--sub-3);
    color: var(--color--brand--sub-1);
}

@media (max-width: 1024px){
    .button-bar button,
    .button-bar input[type="submit"],
    .button-bar .button {
        width: 100%;
    }

    .grid .grid__item .share__button {
        margin-left: 0;
    }
}

@media all and (min-width:751px) and (max-width:1024px) {
    .article--actions .button-bar .button {
        width: 100%;
    }
    .article--actions {
        display: initial;
    }
}

/* PROFILE
----------------------------------------------------------*/

.body--profile .article__header__text,
.body--profile .section__header__text__title {
    color: var(--color--white);
}

.body--profile .article--details .article__header__text__title {
    margin-bottom: 2rem;
}

.body--profile .article__header__text i {
    display: none;
}

/*aside on profile and font*/
.body--profile .grid__item.main--column .banner__text__title {
    color: var(--color--clickeable);
}

.body--profile .main--column .article--details.article--details .article__content__view__field__value {
    font-weight: 600;
}

.body--profile .grid .grid__item.result--column,
.body--profile .grid .grid__item.complementary--column {
    padding-top: 0;
}

.body--profile .sections__content_results .article__content .article__content__field__label,
.body--profile .complementary--column .article__content .article__content__field__value,
.body--profile .complementary--column .link {
    font-size: 1.4rem;
}

/*tf_attachments and white--card-info*/
.white--card-info,
.tf_attachments .article__content {
    background-color: var(--color--white);
    border-radius: var(--spacer--m);
    padding: 1rem 0.8rem;
    min-height: 10rem;
    padding-bottom: 2rem;
}

.tf_attachments .article__content .article__header__text {
    color: var(--color--clickeable);
}

.article--details.tf_attachments .article__header__text__title {
    margin-bottom: 0;
}

.article--details .article__content__view__field.white--card-info {
    min-height: 2rem;
    padding: 2rem 2rem 2rem;
}

.article--details .article__content__view__field.white--card-info .article__content__view__field__value{
    font-weight: 600;
    font-size: 1.6rem;
}

/*tf_jobAlerts*/
.result--column .tf_jobAlerts,
.paragraph--alert-text {
    color: var(--color--white);
}

.result--column .tf_jobAlerts .article__content.js_collapsible__content {
    color: var(--color--regular-grey);
}

/*hidden macro head and title of separator*/
.article.article--details.js_collapsible--enabled.js_collapsible--open.dNone,
.article.article--details.dNone--separator .article__header {
    display: none;
}

/*hidden label after separator for mockUp*/
.article.article--details.custom--separator-label .article__content__view .article__content__view__field__label {
    display: none;
}

/*cards for profile*/
.article--details + .article--details {
    margin-bottom: 2rem;
    border-top-color: rgb(245 245 245 / 30%);
}

.result--column .article__content__view__field .MultipleDataSetFields {
    padding-top: calc(var(--boxes--padding--inners) * .5);
    padding-bottom: calc(var(--boxes--padding--inners) * .5);
    background-color: var(--color--white);
    border-radius: var(--spacer--m);
    padding: var(--spacer--m);
    border: 0.1rem solid var(--color--lightgrey);
    min-height: 18.5rem;
    margin-bottom: 1rem;
}

.article--details .MultipleDataSetFieldLabel {
    display: inline-block;
    margin-right: 0.7rem;
}

.article--details .MultipleDataSetFieldValue {
    display: inline-block;
}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .table--cards tbody tr {
        flex: 0 0 96%;
        max-width: 96%;
        border-radius: 2rem;
        border: none;
    }

    .table--cards tbody td:nth-of-type(1) {
        margin-bottom: 1rem;
    }

    .table--cards tbody td:nth-of-type(2) {
        height: auto;
        padding-bottom: var(--spacer--xs);
    }

    .table--cards tbody td:nth-of-type(3),
    .table--cards tbody td:nth-last-of-type(1):not(:nth-of-type(1)) {
        border-bottom: none;
        border-top: none;
        border: none;
        border-radius: 2rem;
    }

    .table--cards tbody td[data-th]:nth-of-type(n+2):not(:nth-last-of-type(1))::before {
        content: attr(data-th)":\00a0 ";
        display: inline-block;
        color: var(--color--brand--sub-1);
    }
}

/*MY APPLICATIONS*/
/*----------------------------------------------------------*/
.applications--section .article--result {
    margin-left: 0;
    max-width: 53rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*credit--survey*/

.credit--survey,
.credit--survey .link {
    color: var(--color--white);
}

.credit--survey .border-color--top {
    border-top: 0.1rem solid var(--color--ligthgrey-v2);
    margin: 2rem 0 0;
    padding-top: 2rem;
}

/*POPUP ALERT*/
.goverlay {
    background-color: var(--color--paleblue);
    opacity: 0.4;
}

.glightbox-clean .gslide-media {
    border-radius: 2rem;
}

.body--pop-up,
.body--pop-up main,
.body--pop-up .body__content {
    background-color: var(--color--paleblue);
}

.body--pop-up .article__header__text .article__header__text__title {
    color: var(--color--white);
}

.body--pop-up .section {
    display: flex;
    justify-content: center;
    max-width: 55rem;
}

.body--pop-up .body__content {
    padding-top: 10rem;
}

.body--pop-up .section .section__content,
.body--pop-up .section .button-bar .button-bar__wrap {
    text-align: center;
}

.body--pop-up .section .section__content .article__content {
    max-width: 70%;
    margin: 0 auto;
}

.body--pop-up.section .section__content .button-bar__wrap {
    text-align: center;
    width: 60%;
    margin: 0 auto;
}

.page_on_popup--close {
    color: var(--color--white);
}

.page_on_popup--close:hover {
    text-decoration:underline
}

/*added for isMOBILE*/
.body--pop-up .article__header__text.pop--up-font .article__header__text__title{
    font-size: 2.2rem;
}

/*POPUP ALERT*/

/*----------------------------------------------------------*/
/*SUCCESS*/

.section--custom-icon .article__header {
    text-align: left;
}

.article__header.article__header--with-icon {
    flex-direction: column;
}

.visibility--visible.link {
    width: max-content;
    margin: 2rem auto;
}

.article__content a.link {
    display: inline-block;
}

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

    .section__content .article__content {
        margin-top: 1rem;
    }

}

/*SUCCESS*/
/*----------------------------------------------------------*/
/*TAX SURVEY*/

@media all and (max-width:1025px) {
    .section.section--tax-survey .grid .grid__item.main--column {
        height: 0;
    }

    .section.section--tax-survey {
        width: 95%;
        margin: 4rem 0 0 0;
    }
}
/*TAX SURVEY*/

/*FOOTER STYLES*/
.footer__wrapper {
    max-width: 140rem;
}

.footer__content {
    justify-content: space-between;
}

.footer__rights__logo {
    margin-right: var(--spacer--xl);
}

.logo.logo--footer {
    width: 15rem;
}

.footer {
    background-color: transparent;
}

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

.footer__links {
    justify-content: flex-end;
}

.footer__rights__copy {
    font-size: var(--font--size--secondary);
    font-weight: 600;
    color: var(--color--regular-grey-v2);
}

/*primary*/
.primary__level {
    background-color: var(--color--paleblue);
    padding: 2rem;
}

.primary__level .footer__links__item.link {
    font-size: var(--font--size--secondary);
    font-weight: 600;
    margin-right: var(--spacer--m);
    color: var(--color--brand--sub-3);
}

/*secondary*/
.secondary__level .footer__wrapper {
    padding-top: 3rem;
}

.secondary__level {
    background-color: var(--color--lightgrey);
}

.secondary__level .footer__links__item.link {
    font-size: var(--font--size--link);
    font-weight: 600;
    margin-right: var(--spacer--m);
    margin-bottom: var(--spacer--m);
    color: var(--color--regular-grey-v2);
}

@media (max-width: 1024px) {
    .footer__content {
        flex-direction: column;
    }

    .footer__rights {
        flex-direction: column;
        margin-bottom: var(--spacer--l);
    }

    .footer__rights__logo {
        margin-right: 0;
        margin-bottom: var(--spacer--l);
    }

    .footer__links {
        justify-content: center;
    }
}

@media (min-width: 751px) {
    .footer__social__item + .footer__social__item {
        margin-left: var(--spacer--xl);
    }
}

/* Helpers */
.m--h--a {
    margin-left: auto;
    margin-right: auto;
}

.m--a--a {
    margin: auto;
}

/* Tooltip text */
.PasswordField {
    position: relative;
}

.PasswordField .description {
    visibility: hidden;
    width: 42rem;
    background-color: black;
    color: #fff;
    padding: 1.5rem;
    border-radius: 0.6rem;
    position: absolute;
    z-index: 1;
    top: -16rem;
    right: 5rem;
}

/* Show the tooltip text when you mouse over the tooltip container */
.PasswordField:hover .description {
    visibility: visible;
}

@media all and (max-width: 750px) {
    .PasswordField .description {
        width: 20rem;
        top: -31rem;
        right: 0;
    }
}

/* Preloader alternative */
.preloader__icon.preloader__icon--inverted {
    border: .4rem solid #fff;
    border-right-color: transparent;
}

.preloader__icon.preloader__icon--lg {
    width: 4rem;
    height: 4rem;
}