/* ==========================================================================
   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 {
        max-width: none;
    }

    .grid--2--divider > .grid__item:nth-of-type(odd) {
        flex: 0 0 calc(.375 * var(--grid--columns--1) * var(--grid--columns--amount) + ((.375 * var(--grid--columns--amount)) - 1) * var(--grid--columns--gap));
    }

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

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

}

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

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

}

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

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

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

.article--result .article__header__text__subtitle {
    margin-top: var(--spacer--xxs);
}

.article--result .article__header__actions {
    display: flex;
    align-items: center;
}

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

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

    .body--search-jobs .article--result .article__header__actions {
        padding-top: 0;
        padding-bottom: 0;
        border-top-width: 0;
    }

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

    .article--result .article__header__actions .button,
    .main .share--popUp .share__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);
    }

}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .article--result {
        padding-top: calc(var(--boxes--padding--inners) * .5);
        padding-bottom: calc(var(--boxes--padding--inners) * .5);
    }

    .body--search-jobs .article--result {
        padding-top: 0;
        padding-bottom: 0;
    }

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

}

/* 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: #FFFFFF;
    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: Main (Override/complement)
   -------------------------------------------------------------------------- */

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .body--search-jobs .main {
        --main--background--color: var(--color--brand--sub-2);
    }

}

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

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .section--search-jobs .section__content__results {
        padding: var(--spacer--m) 0;
        border-bottom-width: 0.1rem;
        border-bottom-style: solid;
        border-bottom-color: var(--dividers--border--color);
    }

}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .section--search-jobs {
        border-radius: var(--boxes--border--radius) var(--boxes--border--radius) 0 0;
        background-color: #FFFFFF;
        padding: var(--spacer--l) var(--spacer--l)
    }

    .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 {
        display: none;
    }

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

    .section--search-jobs .section__content + .section__content {
        border-radius: var(--boxes--border--radius) var(--boxes--border--radius) 0 0;
        background-color: #FFFFFF;
        padding: var(--spacer--xl) var(--spacer--xxxl);
    }

    .section--search-jobs .section__content__results {
        border-top-width: 0.1rem;
        border-top-style: solid;
        border-top-color: var(--dividers--border--color);
    }

}

/* Opening
   -------------------------------------------------------------------------- */
   .article--opening {
    box-sizing: border-box;
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    box-shadow: 0.2rem 0.4rem 0.8rem 0 var(--color--shadow);
    border-radius: var(--boxes--border--radius);
    height: 100%;
    background-color: #EEEEEE;
    padding: 5.8rem var(--boxes--padding--outers) 1.8rem;
}

.article--opening .article__banner__recommendation {
    border-top-left-radius: var(--boxes--border--radius);
    border-top-right-radius: var(--boxes--border--radius);
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    min-height: 3.8rem;
    padding: 0 var(--boxes--padding--outers);
    font-size: 1.6rem;
    color: #FFFFFF;
    text-transform: uppercase;
}

.article--opening .article__banner__recommendation--strong {
    background-color: #8a4cdc;
}

.article--opening .article__banner__recommendation--great {
    background-color: #b47dfb;
}

.article--opening .article__banner__recommendation--good {
    background-color: #b999e3;
}

.article--opening *+.article__header__text__title {
    margin-top: var(--spacer--xs);
}

.article--opening .article__header__text__title .link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: 0;
    min-height: 5rem;
    word-break: initial;
}

.article--opening .article__content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.article--opening *+.article__content {
    margin-top: var(--boxes--padding--inners);
}

.article--opening *+.article__footer {
    margin-top: var(--spacer--s);
}

.article--opening .article__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
}

.article--opening .article__footer .field__label,
.article--opening .article__footer .field__value {
    font-size: 1.2rem;
}

/* Area
   -------------------------------------------------------------------------- */
.article--area {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    height: 26rem;
    background-position: center center;
    background-size: cover;
    padding: var(--spacer--l) var(--spacer--l);
    position: relative;
    overflow: hidden;
}

.article--area .article--place--image {
    position: absolute;
    width: 100%;
    height: 26rem;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: var(--color--clickeable);
}

.article--area .article--place--image img {
    height: 26rem;
    width: auto;
    max-width: 300%;
    min-width: 100%;
}

.article--area .article__content {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 8rem;
    background-color: rgba(225,237,249,.7);
    color: var(--color--brand);
    display: flex;
    justify-content: center;
    align-items: center;
}

.article--area .article__content a {
    color: var(--color--brand);
}

/* Place
   -------------------------------------------------------------------------- */
.article--place {
    box-sizing: border-box;
    position: relative;
    border-radius: 1.2rem;
    height: 17rem;
    background-color: var(--color--clickeable);
    color: #FFF;
    letter-spacing: 0.06rem;
    padding-bottom: 4rem;
}

.article--place .article--place--image {
    width: 100%;
    height: 13rem;
    overflow: hidden;
    border-radius: 1.2rem 1.2rem 0 0;
    background-color: rgba(0,0,0,.1);
}

.article--place .article--place--image img {
    width: 100%;
    min-height: 13.2rem;
}

.article--place .article__banner {
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    height: var(--boxes__banner--height);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
}

.article--place .article__header__text__title {
    line-height: 4rem;
    text-align: center;
    font-size: 2rem;
}

.article--place *+.article__header__text__title {
    margin-top: var(--spacer--xs);
}

.article--place .article__header__text__title .link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: 0;
    word-break: initial;
}

/* Commitments
   -------------------------------------------------------------------------- */
.article--commitment {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    box-shadow: 0.2rem 0.4rem 0.8rem 0 var(--color--shadow);
    border-radius: var(--boxes--border--radius);
    height: 100%;
    background-color: #FFFFFF;
    padding: calc(var(--boxes__banner--height) + var(--boxes--padding--outers)) var(--boxes--padding--outers) var(--spacer--xxl);
}

.article--commitment .article__banner {
    border-top-left-radius: var(--boxes--border--radius);
    border-top-right-radius: var(--boxes--border--radius);
    height: var(--boxes__banner--height);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
}

.article--commitment--1 .article__banner {
    background-image: url(../images/article--commitment--1.png)
}

.article--commitment--2 .article__banner {
    background-image: url(../images/article--commitment--2.png)
}

.article--commitment--3 .article__banner {
    background-image: url(../images/article--commitment--3.png)
}

.article--commitment .article__content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.article--commitment *+.article__content {
    margin-top: var(--boxes--padding--inners);
}

/* Social icons list
   -------------------------------------------------------------------------- */
.list--social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-line-pack: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    margin: auto;
}

.list--social .list__item__link,
.list--social .list__item__link img {
    display: block;
}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .list--social {
        max-width: 48.4rem;
    }

    .list--social .list__item__link,
    .list--social .list__item__link img {
        width: 6.4rem;
        height: 6.4rem;
    }

    .list--social .list__item+.list__item {
        margin-left: 2rem;
    }

}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .list--social {
        max-width: 33.1rem;
    }

    .list--social .list__item__link,
    .list--social .list__item__link img {
        width: 4.2rem;
        height: 4.2rem;
    }

}

/* Social icons list
   -------------------------------------------------------------------------- */
.list--icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-line-pack: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.5rem;
}

.list--icons .list__item+.list__item {
    margin-left: var(--spacer--l);
}

.list--social .list__item__link {
    display: block;
}

/* Result
   -------------------------------------------------------------------------- */
.article--result .article__header__text__title a {
    color: var(--color--clickeable);
}

.article--result *+.article__header__text__title {
    margin-top: var(--spacer--xs);
}

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

.article--result .article__header__text__skill {
    margin-top: var(--spacer--s);
}

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

.article--result .article__header__actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .article--result.article--result--card-in-mobile {
        --boxes--border--color: #9198a6;
        border-radius: var(--boxes--border--radius);
        border-width: 0.1rem;
        border-style: solid;
        border-color: var(--boxes--border--color);
        background-color: #FFFFFF;
    }

    .article--result.article--result--card-in-mobile .article__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

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

    .article--result.article--result--card-in-mobile .article__header__text {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        min-height: var(--boxes__heading--height);
        padding: var(--boxes--padding--outers) var(--boxes--padding--outers);
    }

    .article--result.article--result--card-in-mobile .article__header__text__title {
        font-size: 1.4rem;
    }

    .article--result.article--result--card-in-mobile .article__header__text__subtitle {
        font-family: var(--font--alt);
        font-size: 1.4rem;
    }

    .article--result.article--result--card-in-mobile .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--result--card-in-mobile .article__header__actions>*+* {
        margin-left: var(--boxes--padding--inners);
    }

    .article--result.article--result--card-in-mobile .article__header__actions .button {
        display: inline-flex;
        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-family: var(--font--alt);
        font-size: 1.4rem;
        color: var(--color--clickeable);
    }

    .article--result.article--result--card-in-mobile .article__header__actions .button,
    .article--result.article--result--card-in-mobile .article__header__actions .button * {
        line-height: 1.4rem;
    }

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

    .article--result.article--result--card-in-mobile .social-share--open .social-share__popup {
        bottom: calc(100% + var(--spacer--s));
        left: calc(-1 * var(--spacer--xs));
    }

    .article--result:not(.article--result--card-in-mobile) {
        padding-top: calc(var(--boxes--padding--inners) * .5);
        padding-bottom: calc(var(--boxes--padding--inners) * .5);
    }

    .article--result:not(.article--result--card-in-mobile) .article__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .article--result:not(.article--result--card-in-mobile) .article__header__actions {
        margin-top: var(--spacer--m);
        width: 100%;
    }

    .body--search-jobs .article--result:not(.article--result--card-in-mobile) .article__header__actions {
        margin-top: 0;
    }

    .article--result:not(.article--result--card-in-mobile) .article__header__actions>* {
        width: 100%;
    }

    .article--result:not(.article--result--card-in-mobile) .article__header__actions>*+* {
        margin-top: var(--spacer--m);
    }

    .article--result:not(.article--result--card-in-mobile) .social-share__popup:before {
        right: 2.1rem;
    }

}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .article--result {
        padding-top: calc(var(--boxes--padding--inners) * .5);
        padding-bottom: calc(var(--boxes--padding--inners) * .5);
    }

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

    .article--result .social-share__popup:before {
        right: 2.1rem;
    }

}

/* Actions
   -------------------------------------------------------------------------- */
/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .aside .article--actions--share .article__content:nth-of-type(2) {
        margin-top: 0;
    }

}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .aside .article--actions--share {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: space-between;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
    }

    .main .aside .article--actions--share .button-bar .button {
        float: left;
        width: auto;
        min-width: 21.8rem;
    }

}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .aside .article--actions--share .article__content:nth-of-type(2) {
        margin-top: var(--spacer--m);
    }

}

/* Share
   -------------------------------------------------------------------------- */
.social-share {
    display: inline-block;
    position: relative;
}

.social-share__button {
    display: inline-flex;
}

.social-share__text {
    display: none;
}

.social-share__popup {
    display: none;
    position: absolute;
    z-index: 2;
    border-radius: var(--boxes--border--radius);
    border-width: 0.1rem;
    border-style: solid;
    border-color: var(--boxes--border--color);
    background-color: #FFFFFF;
    padding: var(--spacer--s) var(--spacer--s);
}

.social-share__popup:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -0.5rem;
    z-index: 1;
    width: calc(var(--sizing--basis) * 2);
    height: calc(var(--sizing--basis) * 2);
    border-right-width: 0.1rem;
    border-right-style: solid;
    border-right-color: var(--boxes--border--color);
    border-bottom-width: 0.1rem;
    border-bottom-style: solid;
    border-bottom-color: var(--boxes--border--color);
    background: #FFFFFF;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .social-share {
        display: block;
    }
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .social-share__popup {
        left: -999.9rem;
        margin-right: -620%;
    }

    .social-share__popup:before {
        left: var(--spacer--m);
    }

}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .social-share__popup {
        right: -999.9rem;
        margin-left: -620%;
    }

    .social-share__popup:before {
        right: var(--spacer--m);
    }

}

/* Share: aside
   -------------------------------------------------------------------------- */

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .aside .social-share__button {
        display: inline-flex;
    }

    .aside .social-share__text {
        display: none;
    }

}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .aside .social-share__button {
        display: none;
    }

    .aside .social-share__text {
        display: inline-flex;
    }

    .aside .social-share__popup {
        display: inline-flex;
        position: static;
        margin: 0;
        border-width: 0;
        padding: 0;
    }

    .aside .social-share__popup:before {
        display: none;
    }

}

/* Map
   -------------------------------------------------------------------------- */
.embed-container--map {
    height: 36rem;
}

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

/* Attachment upload
   -------------------------------------------------------------------------- */
.article--attachments-upload {
    border-radius: var(--boxes--border--radius);
    border-width: 0.1rem;
    border-style: dashed;
    border-color: var(--boxes--border--color);
    background-color: #FFFFFF;
    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;
}

/* Attachment list
   -------------------------------------------------------------------------- */
.list--attachments {
    font-family: var(--font--alt);
}

/* Tables
   -------------------------------------------------------------------------- */
.table {
    font-family: var(--font--alt);
}

/* View more list
   -------------------------------------------------------------------------- */
.list--view-more .list__item__text {
    max-width: 100%;;
}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .section .list--view-more {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: calc(-1 * var(--grid--columns--gap));
        margin-right: 0;
        margin-bottom: 0;
        margin-left: calc(-1 * var(--grid--columns--gap));
    }

    .section .list--view-more .list__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-top: var(--grid--columns--gap);
        padding-right: 0;
        padding-bottom: 0;
        padding-left: var(--grid--columns--gap);
    }

}

/* NEW MODULES
   ========================================================================== */

/* Sections
   -------------------------------------------------------------------------- */
   .body--dashboard .section,
   .body--html .section {
       margin-top: 0;
   }

   /* Dashboard section > Sure
      -------------------------------------------------------------------------- */
   .section--sure {
       color: var(--color--dashboardblocks--text);
       background-color: var(--color--dashboardblocks--bg);
   }

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

       .section--sure .section__header__text__title *+* {
           margin-left: var(--spacer--m);
       }

   }

   /* Media query to target mobile and tablet */
   @media all and (max-width:1024px) {
       .section--sure {
           box-shadow: 0.4rem 0.4rem 1.7rem 0 rgba(0, 0, 0, 0.1);
       }

       .section--sure .section__wrapper {
           padding-top: var(--spacer--xl);
       }

       .section--sure .section__header__text__title,
       .section--places .section__header__text__title,
       .section--join .section__header__text__title {
           text-align: center;
       }

       .section--sure .section__header__text__title span {
           display: block;
           margin-bottom: var(--spacer--l);
       }

   }

   /* Media query to target only tablet */
   @media all and (min-width:751px) and (max-width:1024px) {
       .section--sure .section__wrapper {
            padding-top: var(--spacer--xxxl);
            padding-bottom: var(--spacer--xxxl);
       }

       .section--sure .section__header__text__title a:nth-of-type(2) {
           margin-left: var(--spacer--m);
       }

   }

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

       .section--sure .section__header__text__title a {
           width: 100%;
       }

       .section--sure .section__header__text__title a:nth-of-type(2) {
           margin-top: var(--spacer--l);
       }

   }

   /* Dashboard section > Openings
      -------------------------------------------------------------------------- */
   .section--openings--all .section__header {
       position: relative;
   }

   .section--openings--all *+.section__header__text__paragraph {
       margin-top: 1.2rem;
   }

   .section--openings--all .section__header__pill {
       position: absolute;
       top: 0;
       -moz-transform: translateY(-50%);
       -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
       -ms-transform: translateY(-50%);
       transform: translateY(-50%);
       z-index: 1;
   }

   .section--openings--all .section__header__text__title {
        color: var(--color--brand);
   }

   /* Media query to target tablet and desktop */
   @media all and (min-width:1025px) {
       .section--openings--all .section__wrapper {
           display: -webkit-box;
           display: -webkit-flex;
           display: -ms-flexbox;
           display: flex;
           -webkit-box-pack: space-between;
           -webkit-justify-content: space-between;
           -ms-flex-pack: space-between;
           justify-content: space-between;
       }

       .section--openings--all .section__header {
           position: relative;
       }

       .section--openings--all .section__content {
           margin-top: 0;
       }

   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--openings--all .section__wrapper {
           padding-top: 4.3rem;
           padding-bottom: 4.3rem;
       }

       .section--openings--all .section__header {
           width: 22%;
       }

       .section--openings--all .section__content {
           margin-top: 0;
           width: 78.384%;
       }

   }

   /* Media query to target only tablet */
   @media all and (min-width:751px) and (max-width:1024px) {
       .section--openings--all .section__wrapper {
           padding-top: 4.3rem;
           padding-bottom: 4.3rem;
       }

   }

   /* Media query to target only mobile */
   @media all and (max-width:750px) {
       .section--openings--all .section__header {
           padding-top: var(--spacer--xxxl);
       }

   }

   /* Dashboard section > Recommendations
      -------------------------------------------------------------------------- */
   .body--dashboard .section--openings--recommended .section__wrapper {
       padding-top: var(--spacer--xxl);
   }

   .body--dashboard .section--openings--recommended .section__header+* {
       margin-top: var(--spacer--xxl);
       margin-bottom: var(--spacer--xxl);
   }

   .body--dashboard .section--openings--recommended .section__header {
        color: var(--color--dashboardblocks--text);
        text-align: center;
    }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
        .body--dashboard .section--openings--recommended {
            background-color: #FFFFFF;
        }
   }

   /* Dashboard section > Areas
      -------------------------------------------------------------------------- */
   /* Media query to target tablet and desktop */
   @media all and (min-width:751px) {
       .section--areas .section__wrapper {
           padding-top: 6.4rem;
           padding-bottom: 6.4rem;
       }

   }

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

   .section--areas .section__header__text__title {
       color: var(--color--dashboardblocks--text);
       text-align: center;
   }

   /* Dashboard section > Join
      -------------------------------------------------------------------------- */
   .section--join {
        color: var(--color--dashboardblocks--text);
        background-position: center top;
        background-color: var(--color--dashboardblocks--bg);
        margin-top: 0;
   }

   .section--join .section__footer {
       width: 100%;
   }

   /* Media query to target tablet and desktop */
   @media all and (min-width:751px) {
       .section--join .section__wrapper {
           display: -webkit-box;
           display: -webkit-flex;
           display: -ms-flexbox;
           display: flex;
           -webkit-flex-wrap: wrap;
           -ms-flex-wrap: wrap;
           flex-wrap: wrap;
           -webkit-flex-line-pack: center;
           -ms-flex-line-pack: center;
           align-content: center;
           height: 27rem;
           padding-top: var(--spacer--l);
           padding-bottom: var(--spacer--l);
       }

       .section--join .section__content {
           margin-top: 0;
           padding-left: var(--grid--columns--gap);
       }

   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--join .section__header {
           width: calc(.25 * var(--grid--columns--1) * var(--grid--columns--amount) + ((.25 * var(--grid--columns--amount)) - 1) * var(--grid--columns--gap));
       }

       .section--join .section__content {
           width: calc(.7375 * var(--grid--columns--1) * var(--grid--columns--amount) + ((.4375 * var(--grid--columns--amount)) - 1) * var(--grid--columns--gap));
       }

   }

   /* Media query to target only tablet */
   @media all and (min-width:751px) and (max-width:1024px) {
       .section--join .section__header {
           width: calc(50% - (var(--grid--columns--gap) * .5));
       }

       .section--join .section__content {
           width: calc(50% - (var(--grid--columns--gap) * .5));
       }

   }

   /* Media query to target only mobile */
   @media all and (max-width:750px) {
       .section--join .section__wrapper {
           padding-top: var(--spacer--xl);
           padding-bottom: var(--spacer--xl);
       }

   }

   /* Dashboard section > Discover
      -------------------------------------------------------------------------- */

   .section--discover .section__header__text__title--9,
   .section--whoweare .section__header__text__title--9 {
       text-transform: uppercase;
   }

   .section--discover {
        text-align: center;
    }

    .section--discover .paragraph {
        text-align: center;
    }

    .section--discover .paragraph .link {
        text-transform: unset;
    }

   /* Media query to target tablet and desktop */
   @media all and (min-width:751px) {
       .section--discover .section__wrapper {
            padding-top: var(--spacer--xxxl);
            padding-bottom: var(--spacer--xxxl);
       }

       .section--discover *+.section__header__text__title {
           margin-top: 1.2rem;
       }

   }

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

       .section--discover *+.section__header__text__title {
           margin-top: var(--spacer--s);
       }

   }

   .section--lightBg {
        color: var(--color--dashboardblocks--text);
        background-color: var(--color--dashboardblocks--bg);
   }

   /* Dashboard section__whoweare*/
   .section--whoweare {
        background-color: var(--color--dashboardblocks--bg);
   }

   .section--whoweare .section__wrapper {
        padding-left: 24%;
        background-image: var(--logo--background--image);
        background-size: 28%;
        background-position: left center;
        color: #FFF;
        padding-top: 2.8rem;
        padding-bottom: 2.8rem;
        padding-right: 0;
   }

   .section--whoweare .section__wrapper .section__container {
        color: var(--color--brand);
        padding: 2rem;
        border-radius: var(--boxes--border--radius);
   }

   .section--whoweare .section__wrapper .section__content {
        text-align: center;
   }

   .section--whoweare .section__wrapper .paragraph img {
        width: 2.8rem;
        position: relative;
        top: -0.2rem;
   }

   .section--whoweare .section__header + * {
        margin-top: var(--spacer--m);
   }

   @media all and (min-width:751px) and (max-width:1024px) {
        .section--whoweare {
            padding-left: var(--grid--laterals);
            padding-right: var(--grid--laterals);
        }
        .section--whoweare .section__wrapper {
            padding-left: 30%;
        }
    }

   @media all and (max-width:750px) {
        .section--whoweare .section__wrapper {
            padding-right: 1.6rem;
            padding-left: 1.6rem;
            padding-top: 6rem;
            padding-top: 12.6rem;
            background-position: center 1.2rem;
        }
   }

   /* Dashboard section > Video
      -------------------------------------------------------------------------- */
   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--video .embed-container {
           padding-bottom: 63.7rem;
       }

   }

   /* Media query to target mobile and tablet */
   @media all and (max-width:1024px) {
       .section--video .embed-container {
           padding-bottom: 30rem;
       }

   }

   /* Dashboard section > Places
      -------------------------------------------------------------------------- */
   .section--places {
       color: var(--color--brand);
       background-color: #FFFFFF;
   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--places {
           margin-top: -9rem;
           z-index: 1;
           background-image: url(../images/section--places--desktop.png);
           background-position: center top;
           text-align: center;
       }

       .section--places .section__wrapper {
           height: 43.3rem;
           padding-top: 8.6rem;
           padding-bottom: var(--spacer--l);
       }

       .section--places .section__header+* {
           margin-top: 5.8rem;
       }

   }

   /* Media query to target mobile and tablet */
   @media all and (max-width:1024px) {
       .section--places .section__wrapper {
           padding-top: var(--spacer--xxxl);
           padding-bottom: var(--spacer--xxxl);
       }

       .section--places .section__header+* {
           margin-top: var(--spacer--xl);
       }

   }

   /* Dashboard section > Social
      -------------------------------------------------------------------------- */
   .section--social {
       background-color: var(--color--dashboardblocks--bg);
       text-align: center;
   }

   .section--social .section__header+* {
       margin-top: var(--spacer--xl);
   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--social .section__wrapper {
           padding-top: 7.6rem;
           padding-bottom: 6.4rem;
       }

   }

   /* Media query to target mobile and tablet */
   @media all and (max-width:1024px) {
       .section--social .section__wrapper {
           padding-top: var(--spacer--xxxl);
           padding-bottom: var(--spacer--xxxl);
       }

   }

   /* HTML section > Common
      -------------------------------------------------------------------------- */
   .section--common {
       background-color: #FFFFFF;
   }

   .section--common .section__header+* {
       margin-top: var(--spacer--m);
   }

   .section--common .section__header__text__title+.section__header__text__title {
       margin-top: var(--spacer--m);
   }

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

   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--common .section__wrapper {
           padding-top: 6.4rem;
           padding-bottom: 6.4rem;
       }

       .section--common .section__content .paragraph {
           font-size: 1.8rem;
       }

   }

   /* HTML section > Learning
      -------------------------------------------------------------------------- */

   /* Media query to target mobile and tablet */
   @media all and (max-width:1024px) {
       .section--learning {
           background-color: #f0f3f7;
       }
   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--learning {
           background-image: url(../images/section--learning--desktop.png);
           background-position: center left;
           background-size: cover;
       }

       .section--learning .section__header,
       .section--learning .section__content {
           padding-left: 30.8rem;
       }
   }

   /* HTML section > Recommendations
      -------------------------------------------------------------------------- */
   .body--html .section--openings--recommended .section__header {
       color: #FFFFFF;
   }

   /* Media query to target mobile and tablet */
   @media all and (max-width:1024px) {
       .body--html .section--openings--recommended {
           position: relative;
       }

       .body--html .section--openings--recommended:before {
           content:'';
           position: absolute;
           top: 0;
           right: 0;
           left: 0;
           z-index: 0;
           box-shadow: 0.4rem 0.4rem 1.7rem 0 rgba(0, 0, 0, 0.1);
           background: -moz-linear-gradient(300deg, #0061b6 0%, #001d43 97%);
           background: -webkit-linear-gradient(300deg, #0061b6 0%, #001d43 97%);
           background: linear-gradient(300deg, #0061b6 0%, #001d43 97%);
       }

       .body--html .section--openings--recommended .section__wrapper {
           padding-top: var(--spacer--xl);
           padding-bottom: var(--spacer--xxxl);
       }

       .body--html .section--openings--recommended .section__header__text {
           z-index: 1;
       }

       .body--html .section--openings--recommended [class*="__title--1"] {
           font-size: 2.4rem;
       }

       .body--html .section--openings--recommended *+.section__footer {
           margin-top: var(--spacer--xl);
       }

   }

   /* Media query to target only mobile */
   @media all and (max-width:750px) {
       .body--html .section--openings--recommended:before {
           min-height: 23.1rem;
       }

       .body--html .section--openings--recommended .section__header__text {
           min-height: 8.1rem;
       }
   }

   /* Media query to target only tablet */
   @media all and (min-width:751px) and (max-width:1024px) {
       .body--html .section--openings--recommended:before {
           min-height: 17.7rem;
       }
   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
   .body--html .section--openings--recommended {
           background-color: #f9f9f9;
           background-image: url(../images/section--sure--desktop.png);
           background-position: center top;
       }

       .body--html .section--openings--recommended .section__wrapper {
           padding-top: 5.5rem;
           padding-bottom: 8rem;
       }

       .body--html .section--openings--recommended .section__header {
           text-align: center;
       }

       .body--html .section--openings--recommended .section__header+* {
           margin-top: 5.5rem;
       }

       .body--html .section--openings--recommended *+.section__footer {
           margin-top: var(--spacer--xxl);
       }

   }

   /* HTML section > Veterans
      -------------------------------------------------------------------------- */

   /* Media query to target mobile and tablet */
   @media all and (max-width:1024px) {
       .section--veterans {
           background-color: #f0f3f7;
       }

       .section--veterans .section__wrapper {
           padding-top: var(--spacer--xl);
           padding-bottom: var(--spacer--xl);
       }

   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--veterans {
           background-image: url(../images/section--veterans--desktop.png);
           background-position: right top;
           background-size: cover;
       }

       .section--veterans .section__wrapper {
           padding-top: var(--spacer--xxxl);
           padding-bottom: var(--spacer--xxxl);
       }

       .section--veterans .section__header,
       .section--veterans .section__content {
           padding-right: 24.4rem;
       }

       .section--veterans *+.section__footer {
           margin-top: var(--spacer--xxl);
       }

   }

   /* HTML section > Commitment
      -------------------------------------------------------------------------- */

   .section--commitment .section__header {
       color: #FFFFFF;
   }

   .section--commitment *+.section__header__text__subtitle {
       margin-top: var(--spacer--m);
   }

   .section--commitment .section__header+* {
       margin-top: var(--spacer--xl);
   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--commitment {
           background-color: #f9f9f9;
           background-image: url(../images/section--commitment--desktop.png);
           background-position: center top;
       }

       .section--commitment .section__wrapper {
           padding-top: 5.8rem;
           padding-bottom: 8rem;
       }

       .section--commitment .section__header {
           text-align: center;
       }

       .section--commitment *+.section__header__text__subtitle {
           font-size: 1.8rem;
       }

       .section--commitment .section__content+.section__content {
           margin-top: var(--spacer--xxxl);
       }

       .section--commitment *+.section__footer {
           margin-top: var(--spacer--xxxl);
       }
   }

   /* Media query to target mobile and tablet */
   @media all and (max-width:1024px) {
       .section--commitment {
           box-shadow: 0.4rem 0.4rem 1.7rem 0 rgba(0, 0, 0, 0.1);
           background: -moz-linear-gradient(300deg, #0061b6 0%, #001d43 97%);
           background: -webkit-linear-gradient(300deg, #0061b6 0%, #001d43 97%);
           background: linear-gradient(300deg, #0061b6 0%, #001d43 97%);
       }

       .section--commitment .section__wrapper {
           padding-top: var(--spacer--xl);
           padding-bottom: var(--spacer--xxl);
       }

   }

   /* HTML section > Diversity
      -------------------------------------------------------------------------- */
   .section--diversity {
       color: #FFFFFF;
   }

   .section--diversity .list li+li {
       margin-top: 1.6rem;
   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--diversity {
           background-image: url(../images/section--diversity--desktop.png);
           background-position: center top;
           background-size: auto 100%;
       }

       .section--diversity .section__wrapper {
           padding-top: 6.2rem;
           padding-bottom: 4.8rem;
       }

       .section--diversity .list li {
           font-size: 1.8rem;
       }

   }

   /* Media query to target mobile and tablet */
   @media all and (max-width:1024px) {
       .section--diversity {
           box-shadow: 0.4rem 0.4rem 1.7rem 0 rgba(0, 0, 0, 0.1);
           background: -moz-linear-gradient(300deg, #0061b6 0%, #001d43 97%);
           background: -webkit-linear-gradient(300deg, #0061b6 0%, #001d43 97%);
           background: linear-gradient(300deg, #0061b6 0%, #001d43 97%);
       }

       .section--diversity .section__wrapper {
           padding-top: var(--spacer--xl);
           padding-bottom: var(--spacer--xl);
       }

   }

   /* HTML section > Benefits
      -------------------------------------------------------------------------- */
   .section--benefits {
       color: #FFFFFF;
   }

   .section--benefits .list li+li {
       margin-top: 1.6rem;
   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--benefits {
           background-image: url(../images/section--benefits--desktop.png);
           background-position: center top;
           min-height: 47.7rem;
       }

       .section--benefits .section__content {
           padding-right: 30rem;
       }

       .section--benefits .list li {
           font-size: 1.8rem;
       }

       .section--benefits .section__wrapper {
           padding-top: var(--spacer--xxxl);
           padding-bottom: var(--spacer--xxxl);
       }

   }

   /* Media query to target mobile and tablet */
   @media all and (max-width:1024px) {
       .section--benefits {
           box-shadow: 0.4rem 0.4rem 1.7rem 0 rgba(0, 0, 0, 0.1);
           background: -moz-linear-gradient(300deg, #0061b6 0%, #001d43 97%);
           background: -webkit-linear-gradient(300deg, #0061b6 0%, #001d43 97%);
           background: linear-gradient(300deg, #0061b6 0%, #001d43 97%);
       }

       .section--benefits .section__wrapper {
           padding-top: var(--spacer--xl);
           padding-bottom: var(--spacer--xl);
       }

   }

   /* HTML section > Life
      -------------------------------------------------------------------------- */

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--life {
           background-image: url(../images/section--life--desktop.png);
           background-position: left top;
           background-size: cover;
       }

       .section--life .section__wrapper {
           padding-top: 5.8rem;
           padding-bottom: 5.8rem;
       }

       .section--life .section__header,
       .section--life .section__content {
           padding-left: 38.5rem;
       }

   }

   /* Media query to target mobile and tablet */
   @media all and (max-width:1024px) {
       .section--life {
           background-color: #f0f3f7;
       }

       .section--life .section__wrapper {
           padding-top: var(--spacer--xl);
           padding-bottom: var(--spacer--xl);
       }

   }

   /* NEW PAGETYPE: DASHBOARD: BANNER
      ========================================================================== */

   /* HTML Section > Banner
      -------------------------------------------------------------------------- */

   .body--html .banner--main .banner__wrapper {
       -webkit-box-align: flex-end;
       -webkit-align-items: flex-end;
       -ms-flex-align: flex-end;
       align-items: flex-end;
   }

   .banner--main .banner__wrapper {
       height: auto;
       padding-top: 0;
       padding-bottom: 0;
       min-height: var(--banner--height);
   }

   .body--html .banner--main [class*="__title--0"] {
       font-weight: var(--font--weight--bold);
       text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.5);
   }

   /* Media query to target tablet and desktop */
   @media all and (min-width:751px) {
       .body--html .banner--main {
           --banner--height: 31.1rem;
       }

       .body--html .banner--main [class*="__title--0"] {
           font-size: 5.4rem;
       }

   }

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

       .body--html .banner--main [class*="__title--0"] {
           font-size: 3.8rem;
       }

   }

   /* Dashboard > Banner
      -------------------------------------------------------------------------- */
   .body--dashboard .banner--main {
       --banner--height: 31.1rem;
   }

   .body--dashboard .banner--main .banner__wrapper {
       -webkit-flex-line-pack: center;
       -ms-flex-line-pack: center;
       align-content: center;
       -webkit-flex-wrap: wrap;
       -ms-flex-wrap: wrap;
       flex-wrap: wrap;
   }

   .body--dashboard .banner--main [class*="__title--0"] {
       font-weight: var(--font--weight--bold);
       text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.5);
   }

   .body--dashboard .banner--main .banner__form {
       margin-top: var(--spacer--s);
       width: 100%;
   }

   /* Media query to target tablet and desktop */
   @media all and (min-width:751px) {
       .body--dashboard .banner--main [class*="__title--0"] {
           font-size: 4rem;
       }

   }

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

       .body--dashboard .banner__text {
           width: 100%;
       }

       .body--dashboard .banner--main [class*="__title--0"] {
           font-size: 2.8rem;
           text-align: center;
           width: 100%;
       }

   }

   @media (min-width: 751px) {
        .body--dashboard .banner--main .form--grid:not(.form--grid--1) .fieldSpec.button-bar:before,
        .body--dashboard .banner--main .form--grid:not(.form--grid--1) .fieldSpec.button-bar:before {
            display: none;
        }

   }

   .body--dashboard .banner--main .form--grid:not(.form--grid--1) .fieldSpec.button-bar legend {
        display: none;
   }

   .body--dashboard .banner--main .submitButton {
       min-width: 7.8rem;
       height: var(--fields--height);
   }

   .banner--main {
       position: relative;
   }

   .banner--main .banner__icon {
       position: absolute;
       height: var(--banner--icon--height);
       right: var(--spacer--m);
       top: var(--spacer--m);
   }

   @media all and (min-width:1025px) {
        .body--dashboard .banner--main .banner__icon {
            height: 10rem;
        }
   }

   @media all and (max-width:750px) {
        .banner--main .banner__icon {
            right: var(--spacer--s);
            top: var(--spacer--s);
            height: 5rem;
        }
    }

   /* Dashboard > Main
      -------------------------------------------------------------------------- */
   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .body--dashboard .main {
           --main--background--color: #f9f9f9;
           background-image: url(../images/section--sure--desktop.png);
           background-position: center top;
       }
   }

   /* Search jobs > Section
      -------------------------------------------------------------------------- */

   /* Media query to target tablet and desktop */
   @media all and (min-width:751px) {
       .section--results-list .section__header {
           float: left;
           width: auto;
       }

       .section--results-list .section__header+* {
           margin-top: 0;
       }

       .section--results-list .list-controls--top .list-controls__text__legend {
           display: none;
       }

   }

   /* Media query to target only mobile */
   @media all and (max-width:750px) {
       .section--results-list .list-controls--top .list-controls__sort {
           -webkit-flex-wrap: wrap;
           -ms-flex-wrap: wrap;
           flex-wrap: wrap;
       }

       .section--results-list .list-controls--top .list-controls__text {
           display: none;
       }

       .section--results-list .list-controls--top .list-controls__sort strong {
           display: block;
           width: 100%;
       }

       .section--results-list .list-controls--top .sort__item:first-of-type {
           margin-left: 0;
       }

   }

   /* Search jobs > Section unlogged (standalone)
      -------------------------------------------------------------------------- */
   .section--results-list:first-child .list-controls--top {
       margin-bottom: var(--spacer--s);
   }

   .section--results-list:first-child *+.section__footer {
       border-top-width: 0.1rem;
       border-top-style: solid;
       border-top-color: var(--dividers--border--color);
   }

   /* Media query to target only desktop */
   @media all and (min-width:1025px) {
       .section--results-list:first-child .section__content__results {
           border-top-width: 0.1rem;
           border-top-style: solid;
           border-top-color: var(--dividers--border--color);
           padding-top: var(--spacer--l);
       }

   }

   /* Search jobs > Section logged (with recommendations before)
      -------------------------------------------------------------------------- */
   .section+.section--results-list .list-controls--top {
       margin-bottom: var(--spacer--l);
   }

   /* Media query to target tablet and desktop */
   @media all and (min-width:751px) {
       .section+.section--results-list .section__content {
           background-color: var(--color--brand--sub-1);
           padding: var(--spacer--l);
       }

       .section+.section--results-list .section__header {
           border-bottom-right-radius: 2rem;
           background-color: #FFFFFF;
           margin-top: calc(-1 * var(--spacer--s));
           margin-left: calc(-1 * var(--spacer--s));
           padding: 2rem var(--spacer--xl) var(--spacer--m) var(--spacer--xl);
       }

       .section+.section--results-list .section__content {
           border-radius: 1rem;
           box-shadow: 0.2rem 0.4rem 0.8rem 0 rgba(51, 51, 51, 0.2);
       }

   }

   /* Media query to target only mobile */
   @media all and (max-width:750px) {
       .section+.section--results-list {
           margin-right: calc(-1 * var(--grid--laterals));
           margin-bottom: calc(-1 * var(--main--padding--bottom));
           margin-left: calc(-1 * var(
           --grid--laterals));
           width: auto;
           background-color: var(
           --color--brand--sub-1);
           padding-top: var(
           --spacer--l);
           padding-right: var(
           --grid--laterals);
           padding-left: var(
           --grid--laterals);
           padding-bottom: var(
           --spacer--l);
       }

   }

   /* Search jobs > Article
      -------------------------------------------------------------------------- */
   .article--results-list {
       border-radius: 1rem;
       background-color: #f4f4f4;
       box-shadow: 0.2rem 0.4rem 0.8rem 0 rgba(51, 51, 51, 0.2);
   }

   /* Media query to target tablet and desktop */
   @media all and (min-width:751px) {
       .article--results-list {
           padding: var(--spacer--l);
       }

       .article--results-list>.article__header .article__header__text__title {
           float: left;
           border-bottom-right-radius: 2rem;
           width: auto;
           background-color: #FFFFFF;
           margin-top: calc(-1 * var(--spacer--xl));
           margin-left: calc(-1 * var(--spacer--xl));
           padding: var(--spacer--m) var(--spacer--l) var(--spacer--s) var(--spacer--xl);
       }

       .article--results-list .article .article__header+* {
           margin-top: var(--spacer--s);
       }

   }

   /* Media query to target only mobile */
   @media all and (max-width:750px) {
       .article--results-list {
           padding: var(--spacer--l) var(--spacer--m);
       }

       .article--results-list>.article__header .article__header__text__title {
           font-size: 2.4rem;
       }

   }

   /* Register/Application pages
      -------------------------------------------------------------------------- */
   .section--application *+.section__content {
       margin-top: var(--spacer--xl);
   }

   .article--application *+.article__content {
       margin-top: var(--spacer--xs);
   }

   /* Pill
   -------------------------------------------------------------------------- */
.pill {
    border-radius: 1.6rem;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 3.2rem;
    background-color: #FE414D;
    padding: var(--spacer--xs) var(--spacer--s);
    font-family: var(--font--alt);
    font-size: 1.6rem;
    font-weight: var(--font--weight--bold);
    text-transform: uppercase;
    color: #FFFFFF;
}

/* Skills
   -------------------------------------------------------------------------- */
.list--skills {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -0.6rem;
    margin-right: -0.6rem;
}

.list--skills .list__item {
    margin-bottom: 0.6rem;
    margin-right: 0.6rem;
}

.skill {
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 1.2rem;
    border-width: 0.1rem;
    border-style: solid;
    height: 2.4rem;
    background-color: #FFFFFF;
    padding: 0.2rem 1rem;
    font-size: 1.2rem;
}

.skill--red {
    border-color: rgba(249, 53, 53, 0.1);
    background-color: rgba(249, 53, 53, 0.1);
    color: #000000;
}

.skill--blue {
    border-color: var(--color--clickeable);
    background-color: #FFFFFF;
    color: var(--color--clickeable);
}

.skill--yellow {
    border-color: rgba(247, 181, 0, 0.2);
    background-color: rgba(247, 181, 0, 0.2);
    color: #000000;
}

.skill--green {
    border-color: #04a777;
    background-color: #FFFFFF;
    color: #04a777;
}

.info {
    font-family: var(--font--alt);
    color: var(--color--sucess);
    font-size: 1.8rem;
    font-weight: 600;
}

/* Donut chart
   -------------------------------------------------------------------------- */
.donut {
    width: calc(100% + var(--spacer--m));
    height: calc(100% + var(--spacer--m));
    background: radial-gradient(#FFFFFF 62%, transparent 38%), conic-gradient(var(--color--sucess) 0% var(--var--completion-percentage), #FFFFFF var(--var--completion-percentage) 100%);
    margin: calc(-1 * var(--spacer--s));
    border-radius: 100%;
    padding: var(--spacer--s);
}

/* Box
   -------------------------------------------------------------------------- */
.box {
    box-shadow: 0.2rem 0.4rem 0.8rem 0 rgba(51, 51, 51, 0.2);
    border-radius: var(--boxes--border--radius);
    background-color: rgba(255, 255, 255, .9);
    padding: 1.8rem;
    height: 100%;
}

/* Olivia
   -------------------------------------------------------------------------- */
#olivia--placeholder {
    position: fixed;
    right: var(--spacer--l);
    bottom: var(--spacer--l);
    display: none;
}

/* Additional classes */
.visibility--hidden {
    display: none !important;
}

@media all and (min-width:751px) {
    .fieldSpec.formContainer--cols-2Z .formContainer:before,
    .fieldSpec.formContainer--cols-2Z .formContainer:after {
        content: "";
        display: table;
    }

    .fieldSpec.formContainer--cols-2Z .formContainer:after {
        clear: both;
    }

    .fieldSpec.formContainer--cols-2Z .schemaFieldContainer {
        width: calc(50% - (var(--grid--columns--gap) * .5));
        -webkit-transition: all 250ms ease-in-out;
        -ms-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
    }

    .fieldSpec.formContainer--cols-2Z .schemaFieldContainer:nth-of-type(even) {
        float: left;
        clear: both;
    }

    .fieldSpec.formContainer--cols-2Z .schemaFieldContainer:nth-of-type(odd) {
        float: right;
        clear: right;
    }

}

.fieldSpec.form__item--odd,
.fieldSpec.form__item--even {
    -webkit-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

@media all and (min-width:751px) {
    .fieldSpec.form__item--odd,
    .fieldSpec.form__item--even {
        width: calc(50% - (var(--grid--columns--gap) * .5));
    }

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

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

.hideFirstRemoveBtn .multipleDatasetWrapper div[id$="_0"] .removeDatasetRow {
    display: none;
}

.hideAddAnotherBtn .multipleDatasetWrapper .addDatasetRow {
    display: none;
}

/* text Capitalize /*/
[class*="__title--0"],
.breadcrumbs,
.section__header__text__title,
.link,
.subnav__item__link,
.button--primary,
.button--secondary {
    text-transform: capitalize;
}

/* styles of page HowWeHire*/
.body--howwehire .section__wrapper {
    padding: 2.4rem 3rem 2rem 3rem;
    font-size: 1.8rem;
}

.body--howwehire .paragraph {
    line-height: 170%;
}

.body--howwehire .section--howwehire--top {
    color: var(--color--dashboardblocks--text);
    padding-top: 3.6rem;
}

.body--howwehire .section--howwehire--top .section__header__text__title {
    text-align: center;
}

.body--howwehire .section--howwehire--top .section__content {
    text-align: justify;
}

.section--howwehire--top .section--image {
    margin-top: 2rem;
}

.body--howwehire .section--howwehire-steps {
    color: var(--color--dashboardblocks--text);
}

.body--howwehire .section--howwehire-steps .section__header .section__header__text {
    width: 40%;
    text-align: center;
}

.body--howwehire .section--howwehire-steps .section__header .section__header__text__title {
    padding: 0 2rem;
    word-break: break-word;
}

.body--howwehire .section--howwehire-steps .section--image {
    width: 60%;
    height: 26rem;
    overflow: hidden;
}

.body--howwehire .section--howwehire-steps .section__content {
    text-align: justify;
    padding: 1rem 2rem 0 3rem;
}

.section--tip {
    padding: 1.6rem 0;
}

.section--tip .section__header__text__title {
    margin-bottom: 0.8rem;
}

.body--howwehire .section--howwehire--openpositions .section__content {
    display: flex;
    justify-content: center;
}

@media all and (max-width:750px) {
    .body--howwehire .section__wrapper {
        padding: 0;
    }

    .body--howwehire .section--howwehire-steps .section--image {
        height: 11rem;
    }

    .body--howwehire .section--howwehire-steps .section__content {
        padding: 1rem;
    }

    .body--howwehire [class*="__title--2"] {
        font-size: 1.8rem;
    }
}

.ui-widget,
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    background-color: var(--main--background--color);
}

/* Header */
@media all and (max-width:750px) {
    .nav__item__login {
       padding-top: 2rem;
    }
}

/*reset outline of link */
a:focus {
    outline: none;
}