﻿/* ==========================================================================
   15_COMMON PAGETYPE
   --------------------------------------------------------------------------
   * README

   * ROBOTO FONT

   * LOGIN: SITE LEVEL
   * LOGIN: ARTICLE LEVEL

   * DASHBOARD: DASHLETS: ARTICLE LEVEL
   * REPORTS: ARTICLE LEVEL

   * SEARCH: FORM LEVEL
   * SEARCH: FORM LEVEL WITH ACCORDION

   * REGISTER METHODS: STEPS LIST
   * REGISTER METHODS: SECTION LEVEL
   * REGISTER METHODS: INFO ORGANIZATION LEVEL
   * REGISTER METHODS: FORM LEVEL

   * DETAIL: ARTICLE LEVEL
   * DETAIL: POPUP: ARTICLE LEVEL

   * DETAIL ASIDE: ARTICLE LEVEL
   * DETAIL ASIDE: INFO ORGANIZATION LEVEL

   * SUBMIT NEW: SECTION LEVEL
   * SUBMIT NEW: FORM LEVEL

   * SUCCESS: SECTION LEVEL

   * WIDGET: SOCIAL LOGIN
   * WIDGET: SOCIAL SHARE

   * POWERED BY TECH
   ========================================================================== */

/* README
   ========================================================================== */

/*!
 * Styles on this stylesheet are the All specific styles.
 * That means they apply to any page that deals with an exception to any
 * default style.

 * If you need to deal with an exception to any default styles, you should
 * manage it by adding a .X--modifier class to the .X element and develop the
 * given exception nested to this .X--modifier class in this stylesheet under
 * the corresponding page subtitle.

 * These .X--modifier classes and its nested styles are grouped by page in which
 * are featured, sorted by HTML depth, and separated in Structure, Behaviour or
 * Appearance styles as appropriate.
 */

/* LOGIN: SITE LEVEL
   ========================================================================== */

/* Structure
   -------------------------------------------------------------------------- */
.body--login {
    /*background-image: url(../images/login--bg.jpg); non existing image*/
    -webkit-background-size: cover;
    background-size: cover;
}

.body--login .body__content{
    padding: 0;
}

.body--login .main{
    background-color: transparent;
}

.body--login .main__wrapper{
    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: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .body--login {
        background-position: left center;
    }

}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .body--login {
        background-position: center center;
    }

}

/* LOGIN: ARTICLE LEVEL
   ========================================================================== */
.article--login {
    border-radius: 8px;
    width: 344px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.article--login .article__header {
    padding: 23px 24px;
}

.article--login .article__header--hr-bottom {
    margin-bottom: 0;
}

.article--login .article__header__text__title {
    display: block;
    float: left;
    width: 249px;
    height: 46px;
    background-image: var(--logo--default);
    background-position: left center;
    -webkit-background-size: contain;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
}

.article--login .article__header + * {
    margin-top: 0;
}

.article--login .article__content {
    padding: 24px 24px;
}

.article--login .article__footer {
    margin-top: 0;
    padding: 15px 30px;
    background-color: #F3F7FE; /* var(--color--secondary--10) */
    font-size: 14px;
    text-align: center;
}

/* DASHBOARD: DASHLETS: ARTICLE LEVEL
   ========================================================================== */
.grid__item .article--dashlet {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.article--dashlet .article__content {
    border-top-width: 3px;
    border-top-style: solid;
    border-top-color: #000000; /* var(--color--site) */
}

.article--dashlet .article__footer {
    font-size: 12px;
    line-height: 150%;
    font-weight: 500;
}

.article--dashlet .article__footer .link {
    text-transform: uppercase;
}

/* REPORTS: ARTICLE LEVEL
   ========================================================================== */
.article--report.article--boxed {
    padding: 30px 30px;
}

.article--report [id*="report"],
.article--report [id*="report"] .highcharts-container,
.article--report [id*="report"] .highcharts-container svg {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important
}

/* SEARCH: FORM LEVEL
   ========================================================================== */
/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .section--collapsible-form-search {
        position: relative;
    }

    .section--collapsible-form-search .section__header {
        padding-right: 50px;
    }

    .section--collapsible-form-search .grid__item--filters {
        padding-top: 0;
    }

    .section--collapsible-form-search .form--search {
        position: absolute;
        top: 50px;
        right: 0;
        left: 0;
        z-index: 3;
    }

    .section--collapsible-form-search .form--search .section--collapsible-form-search__toggle {
        content: "\f002";
        font: normal normal normal 24px/24px FontAwesome;
        position: absolute;
        top: -50px;
        right: 0;
        z-index: 4;
        border-radius: 3px 3px 0 0;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        color: #000000; /* var(--color--site) */
    }

    .section--collapsible-form-search .form--search .section--collapsible-form-search__toggle:hover,
    .section--collapsible-form-search .form--search .section--collapsible-form-search__toggle:focus {
        background-color: #F9FAFA;
    }

    .section--collapsible-form-search .form--search .Section {
        display: none;
        margin: 0;
        border-radius: 3px 0 3px 3px;
        background-color: #F9FAFA;
        transform:scale(.95);
        opacity:.2;
        transition:all 150ms ease-in-out;
    }

    .section--collapsible-form-search__open .form .Section {
        display: block;
        opacity: 1;
        transform:scale(1);
        transition:all 150ms ease-in-out;
    }

    .section--collapsible-form-search .form--search .button-bar--1col .button {
        float: left;
        width: auto;
    }
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .section--collapsible-form-search .form--search .Section {
        margin-right: -24px; /* This is the [class*="__wrapper"] padding-right, defined in stylesheet #3. */
        margin-left: -24px; /* This is the [class*="__wrapper"] padding-left, defined in stylesheet #3. */
        padding: 20px 24px 10px;
    }

}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .section--collapsible-form-search .form--search .Section {
        padding: 20px 20px 10px 0;
    }

}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .section--collapsible-form-search .form--search .section--collapsible-form-search__toggle {
        display: none !important;
    }
}

/* SEARCH: FORM LEVEL
   ========================================================================== */

.Xform--search .Section:before,
.Xform--search .Section:after {
    display: none;
}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .Xform--search:not(.Xform--search-cols1) .button-bar {
        padding-top: 27px !important; /* This is the field label height */
    }
}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .Xform--search .fieldSpec {
        width: calc(50% - 12px);
    }

    .Xform--search .fieldSpec:nth-of-type(odd) {
        float: left;
        clear: both;
    }

    .Xform--search .fieldSpec:nth-of-type(even) {
        float: right;
        clear: right;
    }
}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .Xform--search .Section {
        margin-left: -20px;
    }

    .Xform--search .fieldSpec {
        float: left;
        padding-left: 20px;
        clear: none;
    }

    .Xform--search-cols2 .fieldSpec {
        width: 50%;
    }

    .Xform--search-cols2 .fieldSpec:nth-child(2n+1){
        clear: both;
    }

    .Xform--search-cols3 .fieldSpec {
        width: 33.33%;
    }

    .Xform--search-cols3 .fieldSpec:nth-child(3n+1){
        clear: both;
    }

    .Xform--search-cols5 .fieldSpec {
        width: 20%;
    }

    .Xform--search-cols5 .fieldSpec:nth-child(5n+1){
        clear: both;
    }
}

/* SEARCH: FORM LEVEL WITH ACCORDION
   ========================================================================== */

.form--collapsible .fields-container--collapsible,
.form--collapsible .fieldSpec--collapsible {
    max-height: 0;
    overflow: hidden;
}

.form--collapsible .fields-container--collapsible:not(.active),
.form--collapsible .fieldSpec--collapsible:not(.active) {
    padding-bottom: 0;
}

.form--collapsible .fields-container--collapsible.active,
.form--collapsible .fieldSpec--collapsible.active {
    background-color: #F9FAFA;
    border: solid 1px #D8D8D8; /* var(--color--borders) */
    padding: 16px 12px;
    margin-bottom: 20px;
}

.form--collapsible .fields-container--collapsible.active .fieldSpec {
    padding-left: 0px
}

.form--collapsible .fields-container--collapsible.active label + div {
    clear: both;
    padding-bottom: 10px
}

.form--collapsible .accordionTrigger {
    cursor: pointer;
    line-height: 2;
    margin-top: 18px;
    display: block;
    font-weight: 500;
    clear: both;
}

.form--collapsible .accordionTrigger:first-of-type {
    margin-top: 0;
}

.form--collapsible .accordionTrigger:last-of-type {
    margin-bottom: 18px;
}

.form--collapsible .accordionTrigger:not(.active) {
    border-bottom: solid 1px #D8D8D8; /* var(--color--borders) */
}

.form--collapsible .accordionTrigger:after {
    content: "▾";
    float: right;
}

.form--collapsible .accordionTrigger:not(.active):after {
    content: "▸";
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .collapsed--only-mobile {
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
    }

    .grid__item--filters > .accordionTrigger {
        cursor: pointer;
        line-height: 2;
        display: block;
        padding-bottom: 0;
        margin-top: -30px;
    }

    .grid__item--filters .accordionTrigger i.fa{
        float: right;
    }

    .grid__item--filters > .accordionTrigger:not(.active) {
        font-weight: bold;
        border-bottom: solid 1px #D8D8D8; /* var(--color--borders) */
    }
}

@media all and (max-width:399px) {
    .grid__item--filters .accordionTrigger {
        margin-top: 0;
        font-size: 16px;
        width: 100%;
    }
}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .form--collapsible .fields-container--collapsible.active,
    .form--collapsible .fieldSpec--collapsible.active {
        margin-left: 20px;
        width: calc(100% - 20px);
    }

    .form--collapsible .accordionTrigger {
        margin-left: 20px;
    }
}

/* REGISTER METHODS: STEPS LIST
   ========================================================================== */
.list--steps {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
    margin-top: 40px;
    width: 100%;
}

.list--steps:after {
    content: "";
    position: absolute;
    left:0;
    top: 0;
    z-index: 1;
    border-radius: 2px;
    border-top-width: 4px;
    border-top-style: solid;
    border-top-color: #D8D8D8; /* var(--color--borders) */
    width: 100%;
}

.list--steps .list__item {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 30px
}

.list--steps .list__item--current {
    color: #202020;
}

.list--steps .list__item--filled {
    color: #202020;
}

.list--steps .list__item .list__item__text:after {
    content: "";
    position: absolute;
    left:0;
    top: 0;
    z-index: 2;
    border-radius: 2px;
    border-top-width: 4px;
    border-top-style: solid;
    border-top-color: #3d3d3d; /* var(--color--site) */
    width: 0;
}

.list--steps .list__item--filled .list__item__text:after {
    width: 100%;
}

.list--steps .list__item__text__title {
    font-size: 16px;
    text-align: center;
    font-family: "HalesworthET", serif;
    font-weight: 600;
    letter-spacing: 0.8px;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .list--steps .list__item .list__item__text {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 16px;
    }

    .list--steps .list__item--step-1.list__item--current .list__item__text:after {width: 25%;}
    .list--steps .list__item--step-2.list__item--current .list__item__text:after {width: 50%;}
    .list--steps .list__item--step-3.list__item--current .list__item__text:after {width: 75%;}
    .list--steps .list__item--step-4.list__item--current .list__item__text:after {width: 100%;}

    .list--steps .list__item__text__title {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .list--steps .list__item__text__subtitle {
        font-size: 34px;
        position: absolute;
        bottom: calc(100% + 20px);
        left: 0;
        font-family: "HalesworthET", serif;
        font-weight: 600;
        right: 0;
        width: 100%;
        text-align: center;
    }
    .list--steps .list__item__text__subtitle span {
        font-size: 16px;
        color: #c8c8c8
    }

    .list--steps .list__item:not(.list__item--current) {
        display: none;
    }
}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .list--steps .list__item--current .list__item__text:after {
        width: 50%;
    }

    .list--steps .list__item__text__subtitle {
        position: absolute;
        z-index: 3;
        margin: 0;
        border-radius: 100%;
        border-width: 2px;
        border-style: solid;
        border-color: transparent;
        width: 27px !important;
        height: 27px !important;
        background-color: #D8D8D8; /* var(--color--borders) */
        font-weight: 500;
        text-align: center;
        color: #FFFFFF;
        top: -14px;
        left: calc(50% - 14px);
    }
    .list--steps .list__item--filled .list__item__text__subtitle {
        background-color: #3d3d3d; /* var(--color--site) */
        text-indent: inherit;
        overflow: visible;
        box-shadow: 0 0 10px rgba(0,0,0,.5);
    }
    .list--steps .list__item--filled .list__item__text__subtitle:before {
        content: "\f00c";
        font-family: "FontAwesome";
        color: #fff;
        position: absolute;
        display: block;
        left: -2px;
        top: -2px;
        z-index: 9;
        width: 27px;
        height: 27px;
        background-color: #3d3d3d;
        border-radius: 100%;
        line-height: 27px;
        font-size: 16px;
    }

    .list--steps .list__item--current .list__item__text__subtitle {
        background-color: #000000; /* var(--color--site) */
        box-shadow: 0 0 10px rgba(0,0,0,.5);
        text-indent: inherit;
        font-size:14px;
        font-weight:600;
    }
}

/* REGISTER METHODS: SECTION LEVEL
   ========================================================================== */
.section--registered .section__header,
.section--methods .section__header {
    text-align: center;
}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .section--registered {
        margin-top: 32px;
    }

    .section--registered .section__header__text__title,
    .section--methods .section__header__text__title {
        font-size: 22px;
    }

}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .section--registered,
    .section--methods {
        margin-right: auto;
        margin-left: auto;
        max-width: 720px;
    }
}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .section--registered,
    .section--methods {
        margin-right: auto;
        margin-left: auto;
        max-width: 746px;
    }
}

/* REGISTER METHODS: ARTICLE LEVEL
   ========================================================================== */
/* Media query to target only mobile */
@media all and (max-width:750px) {
    .article--registered {
        background-color: #F9FAFA;
        margin-left: -24px; /* This is the [class*="__wrapper"] padding-left, defined in stylesheet #3. */
        margin-right: -24px; /* This is the [class*="__wrapper"] padding-right, defined in stylesheet #3. */
        width: calc(100% + 24px + 24px); /* This is the parent width, plus the [class*="__wrapper"] padding-right and padding-left */
        padding-top: 20px;
        padding-right: 24px; /* This is the [class*="__wrapper"] padding-right, defined in stylesheet #3. */
        padding-bottom: 30px;
        padding-left: 24px; /* This is the [class*="__wrapper"] padding-left, defined in stylesheet #3. */
    }

    .article--methods {
        margin-right: auto;
        margin-left: auto;
        max-width: 230px;
    }

}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .article--methods .article__content:first-of-type {
        margin-right: -34px;
        margin-left: -34px;
    }

}

/* REGISTER METHODS: INFO ORGANIZATION LEVEL
   ========================================================================== */

.form--methods {
    margin-top: 20px
}

.list--methods .list__item__link,
.list--methods .list__item--linkedin [name="widget-holder"]:after,

.list--methods .list__item--indeed .indeed-button:after {
    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;
    margin: 10px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 22px;
    max-width: 209px;
    width: 100%;
    height: 40px;
    padding-top: 4px;
    padding-right: 10px;
    padding-bottom: 4px;
    filter: none;
    font-size: 14px;
    line-height: 15px;
    font-weight: 500;
    color: #4E4E4E;
    letter-spacing: 0.7px;
    text-decoration: none;
    text-align: left;
    vertical-align: middle;
    -webkit-transition-duration: 167ms;
    transition-duration: 167ms;
    -webkit-transition-property: background-color, color, -webkit-box-shadow;
    transition-property: background-color, color, -webkit-box-shadow;
    transition-property: background-color, box-shadow, color;
    transition-property: background-color, box-shadow, color, -webkit-box-shadow;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    cursor: pointer;
    justify-content: flex-start;
}

.list--methods .list__item--linkedin [name="widget-holder"] {
    position: relative;
    margin-bottom: -5px;
    margin-left: 10px;
    text-align: center;
}

.list--methods .list__item--linkedin [name="widget-holder"] button {
    position:absolute;
    right:0;
    bottom:0;
    z-index:1;
    width:0;
    height:0;
    padding:0;
    border:0;
}

.list--methods .list__item--facebook .list__item__link {
    max-width: none;
    font-family: 'Helvetica', Arial, sans-serif !important;
    background-color: #4267B2;
    background-image: var(--method--facebook);
    background-size: auto 40px;
    background-position: left center;
    padding-left: 34px;
}

.list--methods .list__item--facebook .list__item__link:hover {
    background-color: #4285f4;
}

.list--methods .list__item--facebook .list__item__link:focus {
    background-color: #4285F4;
    color: rgba(0, 0, 0, 0.54);
}

.list--methods .list__item--seek .seek-apply-btn {
    margin: auto;
    /*
    max-width: none;
    background-color: #E60278;
    padding-left: 10px;
    text-align: center;
    */
}

.list--methods .list__item--seek .seek-apply-btn .seek-apply-btn__image {
    /*
    margin: 0 0px 0px 1px;
    */
}

.seek-apply-btn {
    width: 175px !important;
    height: 45px;
    font-size: 16px !important;
}
.list--methods .list__item--xing .list__item__link {
    background-color: #005A5F;
    background-image: var(--method--xing);
    background-size: auto 40px;
    background-position: left center;
    padding-left: 50px;
    font-family: Arial, sans-serif;
}

.list--methods .list__item--xing .list__item__link:hover {
    background-color: #026567;
}

.list--methods .list__item--xing .list__item__link:focus {
    background-color: #026567;
}

.list--methods .list__item--indeed .list__item__link {
    position: relative;
    background-color: #085FF7;
    background-image: var(--method--indeed);
    background-size: auto 40px;
    background-position: left center;
    padding-left: 34px;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif !important;
}

.list--methods .list__item--indeed .list__item__link:hover {
    background-color: #1997FF;
}

.list--methods .list__item--indeed .list__item__link:focus {
    background-color: #1997FF;
}

.list--methods .list__item--indeed .indeed-button {
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
}

.list--methods .list__item--googleplus .list__item__link {
    -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
    border-color: #4285F4;
    max-width: 185px;
    background-color: #4285F4;
    background-image: var(--method--googleplus);
    background-size: 38px 40px;
    background-position: left center;
    padding-left: 48px;
    font-weight: 500;
    letter-spacing: 0.22px;
}

.list--methods .list__item--googleplus .list__item__link:hover {
    outline: 3px solid rgba(66, 133, 244, 0.3);
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.24);

}

.list--methods .list__item--googleplus .list__item__link:focus {
    outline: 3px solid rgba(66, 133, 244, 0.3);
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
}

.list--methods .list__item--monster .list__item__link {
    background-color: #642891;
    background-image: var(--method--monster);
    background-size: auto 40px;
    background-position: left center;
    padding-left: 34px;
}

.list--methods .list__item--monster .list__item__link:hover {
    background-color: #7137A4;
}

.list--methods .list__item--monster .list__item__link:focus {
    background-color: #D7D7E4;
    color: rgba(0, 0, 0, 0.54);
}

.list--methods .list__item--dropbox .list__item__link,
.list--methods .list__item--googledrive .list__item__link,
.list--methods .list__item--file .list__item__link,
.list--methods .list__item--paste .list__item__link,
.list--methods .list__item--later .list__item__link {
    border-width: 1px;
    border-style: solid;
    border-color: #c8c8c8; /* var(--color--site) */
    background-color: transparent;
    background-position: 17px center;
    background-size: auto 22px;
    padding-left: 50px;
    color: #4E4E4E;
}

.list--methods .list__item--dropbox .methodButton {
    background-image: var(--method--dropbox);
    margin-top: 25px;
}

.list--methods .list__item--googledrive .methodButton {
    background-image: var(--method--googledrive);
    margin-top: 25px;
}

.list--methods .list__item--file .methodButton {
    background-image: var(--method--file);
}

.list--methods .list__item--paste .methodButton {
    background-image: var(--method--paste);
}

.list--methods .list__item--later .methodButton {
    background-image: var(--method--later);
}

.list--methods .list__item--dropbox .list__item__link:hover,
.list--methods .list__item--googledrive .list__item__link:hover,
.list--methods .list__item--file .list__item__link:hover,
.list--methods .list__item--paste .list__item__link:hover,
.list--methods .list__item--later .list__item__link:hover {
    background-color: #FFFFFF;
}

.list--methods .list__item--dropbox .list__item__link:focus,
.list--methods .list__item--googledrive .list__item__link:focus,
.list--methods .list__item--file .list__item__link:focus,
.list--methods .list__item--paste .list__item__link:focus,
.list--methods .list__item--later .list__item__link:focus {
    background-color: #FFFFFF;
}
.list__item--later p + p {
    margin-top: 20px;
}
@media all and (max-width:768px) {
    .list--methods .list__item--linkedin [name="widget-holder"] {
        margin-bottom: 7px;
        text-align: left;
    }
}

/* REGISTER METHODS: OVERRIDES after transition to getRegisterMethods
   ========================================================================== */
.list__item.list__item--later > .methodButton,
.list__item.list__item--file > .methodButton,
.list__item.list__item--googledrive > .methodButton,
.list__item.list__item--dropbox > .methodButton{
   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-shadow: none;
   box-shadow: none;
   border-radius: 22px;
   max-width: 209px;
   width: 100%;
   height: 40px;
   padding-top: 5px;
   padding-right: 10px;
   padding-bottom: 4px;
   filter: none;
   font-size: 14px;
   line-height: 15px;
   font-weight: 500;
   color: #4E4E4E;
   letter-spacing: 0.7px;
   text-decoration: none;
   text-align: left;
   vertical-align: middle;
   -webkit-transition-duration: 167ms;
   transition-duration: 167ms;
   -webkit-transition-property: background-color, color, -webkit-box-shadow;
   transition-property: background-color, color, -webkit-box-shadow;
   transition-property: background-color, box-shadow, color;
   transition-property: background-color, box-shadow, color, -webkit-box-shadow;
   -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
   transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
   cursor: pointer;
   justify-content: flex-start;
   border-width: 1px;
   border-style: solid;
   border-color: #c8c8c8; /* var(--color--site) */
   background-color: transparent;
   color: #4E4E4E;
   padding-left: 50px;
   background-position-x: 15px;
   background-size: 22px;
}

.list__item.list__item--file > .methodButton:hover,
.list__item.list__item--googledrive > .methodButton:hover,
.list__item.list__item--dropbox > .methodButton:hover{
   background-color: #FFFFFF;
}

/* REGISTER METHODS: FORM LEVEL
   ========================================================================== */
.form--methods .tpt_uploadResumeError {
    display: none;
}

.form--methods .tpt_uploadResumeNextButton.tpt_uploadResumeNextButtonInactive {
    display: none;
}

/* DETAIL: ARTICLE LEVEL
   ========================================================================== */
.article--details + .article--details {
    margin-top: 20px;
}

.article--details .paragraph br+br+br{
    display: none;
}

/* DETAIL: POPUP: ARTICLE LEVEL
   ========================================================================== */
.article--popup {
    position: relative;
    -webkit-box-shadow: 0 0 12px 0 rgba(91, 91, 91, .3);
    box-shadow: 0 0 12px 0 rgba(91, 91, 91, .3);
}

.article--popup.article--boxed {
    padding: 25px 25px;
}

.article--popup.article--boxed:before {
    content: "";
    position: absolute;
    left: calc(50% - 12px);
    top: -10px;
    display: block;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom-width: 10px;
    border-bottom-style: solid;
    border-bottom-color: #D8D8D8; /* var(--color--borders) */
}

.article--popup .article__header[class*="--hr-bottom"] {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* DETAIL: INFO ORGANIZATION LEVEL: ATTACHMENTS
   ========================================================================== */
.list--attachments .list__item+.list__item {
    margin-top: 30px;
}

.list--attachments .list__item__text__title {
    font-weight: 500;
}

.list--attachments .list__item__actions {
    margin-top: 5px;
}

.list--attachments .list__item__actions .link {
    margin-right: 30px;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.65px;
    color: #595959;
}

.attachment-preview {
    margin: 0;
    height: 0;
    padding: 0;
    background-color: #FFFFFF;
    transition-property: margin, height, padding, opacity;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    opacity: 0;
    overflow: hidden;
}

.attachment-preview.attachment-preview--show {
    margin: 30px 0 0;
    border-width: 1px;
    border-style: solid;
    border-color: #D8D8D8; /* var(--color--borders) */
    height: auto;
    padding: 10px 20px 20px;
    transition-property: margin, height, padding, opacity;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    opacity: 1;
}

.attachment-preview .attachment-preview__bar {
    margin-bottom: 10px;
    text-align: right;
}

.attachment-preview:not(.attachment-preview--show) .attachment-preview__bar {
    display: none;
}

.attachment-preview .attachment-preview__bar .link{
    font-weight: 500;
}

.attachment-preview .attachment-preview__preview {
    width: 100%;
    height: 360px;
}

@media all and (max-width: 768px) {
    .list--attachments .list__item__actions .link {
        display: block;
        margin-bottom: 24px;
        width: fit-content;
    }

    .list--attachments .list__item__actions {
        margin-top: 30px;
    }

}

/* DETAIL: INFO ORGANIZATION LEVEL: HISTORY
   ========================================================================== */
.list--history {
    margin-bottom: -16px !important;
}

.list--history .list__item {
    padding: 0px 0px 16px;
}

.list--history .list__item__text__title {
    font-weight: 600;
    text-transform: lowercase;
}

.list--history .list__item__text__title:first-letter {
    text-transform: uppercase;
}

.list--history .list__item__text__subtitle {
    margin-top: 4px;
    font-size: 16px;
}

.list--history .list__item__text__subtitle--1 {
    margin-top: 4px;
    font-size: 14px;
}

/* DETAIL: INFO ORGANIZATION LEVEL: QUESTION AND ANSWER
   ========================================================================== */
.list--question-and-answer .list__item+.list__item {
    margin-top: 24px;
}

.list--question-and-answer .list__item__text__title {
    font-weight: 500;
}

.list--question-and-answer .list__item__text__subtitle {
    margin-top: 8px;
}

/* DETAIL ASIDE: ARTICLE LEVEL
   ========================================================================== */

.article--view-more-aside .article__header {
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.article--view-more-aside .article__content {
    margin-top: 8px;
}
.article--view-more-aside .article__footer {
    text-align: center;
    margin-top: 40px
}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .article--actions + .article--view-more-aside {
        margin-top: 0;
    }

    .article--view-more-aside {
        background-color: #F9FAFA;
        margin-left: -24px; /* This is the [class*="__wrapper"] padding-left, defined in stylesheet #3. */
        margin-right: -24px; /* This is the [class*="__wrapper"] padding-right, defined in stylesheet #3. */
        width: calc(100% + 24px + 24px); /* This is the parent width, plus the [class*="__wrapper"] padding-right and padding-left */
        padding-top: 20px;
        padding-right: 24px; /* This is the [class*="__wrapper"] padding-right, defined in stylesheet #3. */
        padding-bottom: 30px;
        padding-left: 24px; /* This is the [class*="__wrapper"] padding-left, defined in stylesheet #3. */
    }
}

/* DETAIL ASIDE: INFO ORGANIZATION LEVEL
   ========================================================================== */
.list--view-more-aside .list__item {
    margin-bottom: 40px
}
.list--view-more-aside a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 0;
}

.list--view-more-aside .list__item__image {
    width: 34px;
    margin-right: 8px;
}

.list--view-more-aside .list__item__image img {
    display: block;
    border-radius: 100%;
}

.list--view-more-aside .list__item__text {
    width: calc(100% - 42px);
    padding-top: 3px;
}

.list--view-more-aside .list__item__text__title {
    font-weight: 600;
    font-size: 20px;
    /*white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;*/
}

.list--view-more-aside .list__item:hover .list__item__text__title {
    color: #000000; /* var(--color--site) */
}

.list--view-more-aside .list__item__text__subtitle {
    padding-top: 5px;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: 'HalesworthET';
    font-weight: 600;
}
.list--view-more-aside .list__item__text__subtitle i {
    margin-left: 17px;
}

.list--view-more-aside .list__item__text__rating {
    padding-top: 3px;
}

.list--view-more-aside .list__item__text__extra {
    padding-top: 3px;
    font-size: 12px;
    color: #9B9B9B;
}

/* SUBMIT NEW: SECTION LEVEL
   ========================================================================== */
/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .section__content--submit-new-options-1 {
        margin-left: auto;
        margin-right: auto;
        max-width: 300px;
    }
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .section__content--submit-new-options-2 .grid {
        margin: 0;
    }

    .section__content--submit-new-options-2 .grid__item:nth-of-type(1){
        padding: 0 0 20px 0;
    }

    .section__content--submit-new-options-2 .grid__item:nth-of-type(2){
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: #D8D8D8; /* var(--color--borders) */
        padding: 20px 0 0 0;
    }
}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .section__content--submit-new-options-2 {
        margin-left: auto;
        margin-right: auto;
        max-width: 300px;
    }

    .section__content--submit-new-options-2 .grid > .grid__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .section__content--submit-new-options-2 {
        margin-left: auto;
        margin-right: auto;
        max-width: 750px;
    }

    .section__content--submit-new-options-2 .grid {
        margin: 0;
    }

    .section__content--submit-new-options-2 .grid__item:nth-of-type(1){
        padding: 0 50px 0 0;
    }

    .section__content--submit-new-options-2 .grid__item:nth-of-type(1) .fieldSpec {
        padding-bottom: 0;
    }

    .section__content--submit-new-options-2 .grid__item:nth-of-type(2){
        border-left-width: 1px;
        border-left-style: solid;
        border-left-color: #D8D8D8; /* var(--color--borders) */
        padding: 0 0 0 50px;
    }

    .section__content--submit-new-options-2 .grid__item:nth-of-type(2) .article {
        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;
        height: 100%;
    }

    .section__content--submit-new-options-2 .grid__item:nth-of-type(2) .article__content {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .section__content--submit-new-options-2 .grid__item:nth-of-type(2) .button-bar,
    .section__content--submit-new-options-2 .grid__item:nth-of-type(2) .button {
        margin-bottom: 0;
    }
}

/* SUBMIT NEW: FORM LEVEL
   ========================================================================== */
/*
 * 1. A simple clearfix where we cannot add it manually to the HTML.
 */
.form--submit-new-template form:before,
.form--submit-new-template form:after {
    content: ""; /* 1 */
    display: table; /* 1 */
}

.form--submit-new-template form:after {
    clear: both; /* 1 */
}

.form--submit-new-template select {
    margin-bottom: 24px; /* This is the .fieldSpec padding-bottom plus 8px */
}

.form--submit-new-template button {
    float: left;
}

.form--submit-new-template #jobTemplateWidgetDescription {
    /* display: block; */
    display: none;
    padding-top: 10px;
    font-size: 14px;
    line-height: 150%;
    clear: both;
}

.form--submit-new-template #jobTemplateWidgetDescription:empty {
    display: none;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .form--submit-new-template button {
        width: 100%;
    }
}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    /*
     * 1. 50% width minus half the final gutter
     */
    .form--submit-new-template button {
        width: calc(50% - 12px); /* 1 */
    }
}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .form--submit-new-template button {
        min-width: 120px;
    }
}

/* SUCCESS: SECTION LEVEL
   ========================================================================== */
.section--success .section__header__image img {
    border-radius: 0;
    max-width: 223px;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .section--success .section__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .section--success .section__header__image {
        margin-bottom: 25px;
        margin-right: 0;
        width: 100%;
    }

}

/* Media query to target only tablet */
@media all and (min-width:751px) and (max-width:1024px) {
    .section--success .section__header__image {
        width: 223px;
    }

}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .section--success .section__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .section--success .section__header__image {
        margin-bottom: 25px;
        margin-right: 0;
        width: 100%;
    }

    .section--success .section__content {
        text-align: center;
    }

}

/* WIDGET: SOCIAL LOGIN
   ========================================================================== */
.social-login__text {
    margin-bottom: 15px;
    color: #565656;
    font-size: 14px;
    font-weight: 400;
}

.list--social-login .list__item {
    float: left;
    margin-right: 8px;
    margin-bottom: 8px;
}

.list--social-login .list__item__link {
    display: block;
    height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #FFFFFF;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-decoration: none;
    text-align: left;
    white-space: nowrap;
    -webkit-transition-duration: 167ms;
    transition-duration: 167ms;
    -webkit-transition-property: background-color, color, -webkit-box-shadow;
    transition-property: background-color, color, -webkit-box-shadow;
    transition-property: background-color, box-shadow, color;
    transition-property: background-color, box-shadow, color, -webkit-box-shadow;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    cursor: pointer;

    border-width: 1px;
    border-style: solid;
    border-color: #c8c8c8;
    border-radius: 25px;
    min-width: 209px;
    color: #4E4E4E;
}

.list--social-login .list__item__link--facebook {
    background-image: var(--social-login--facebook);
    background-size: auto 20px;
    background-position: calc(100% - 10px) center;
    padding-left: 10px;
    padding-right: 40px;
    line-height: 18px;
    font-weight: 400;
    color: #1877F2;
}

.list--social-login .list__item__link--google,
.list--social-login .list__item__link--xing {
    background-size: auto 40px;
    background-position: 10px center;
    padding-right: 10px;
    line-height: 20px;
    font-weight: 500;
}

.list--social-login .list__item__link--google {
    background-image: var(--social--login--google);
    padding-left: 80px;
}

.list--social-login .list__item__link--xing {
    background-image: var(--social--login--xing);
    padding-left: 40px;
    text-transform: uppercase;
}

.list--social-login .list__item__link__icon {
    display: inline-block;
    vertical-align: middle;
}

.list--social-login .list__item__link--google:hover,
.list--social-login .list__item__link--google:focus {
    -webkit-box-shadow: 0px 0px 0px 3px rgba(66, 133, 244, 0.30);
    -moz-box-shadow: 0px 0px 0px 3px rgba(66, 133, 244, 0.30);
    box-shadow: 0px 0px 0px 3px rgba(66, 133, 244, 0.30);
}

.list--social-login .list__item__link--facebook:hover,
.list--social-login .list__item__link--facebook:focus,
.list--social-login .list__item__link--xing:hover,
.list--social-login .list__item__link--xing:focus {
    -webkit-box-shadow: 0px 0px 0px 3px rgba(191, 191, 191, 0.30);
    -moz-box-shadow: 0px 0px 0px 3px rgba(191, 191, 191, 0.30);
    box-shadow: 0px 0px 0px 3px rgba(191, 191, 191, 0.30);
}

/* WIDGET:SOCIAL SHARE
   ========================================================================== */
.module .social-share {
    display: inline-block;
    position: relative;
}

.module .article--details .social-share {
    display: inherit;
}

.social-share__text {
    font-size: 14px;
    font-style: italic;
    display: none;
}

.social-share--inline .social-share__text {
    display: block;
}

.module .article--details .social-share__text {
    display: block;
}

.module .article--details .social-share__button {
    display: none;
}

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

.social-share__popup {
    white-space: nowrap;
    color: #3d3d3d;
}

.module .social-share__popup {
    display: none;
    position: absolute;
    z-index: 2;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #D8D8D8; /* var(--color--borders) */
    background-color: #FFFFFF;
    padding: 10px 8px;
}

.module .article--details .social-share__popup {
    display: block;
    position: relative;
    z-index: inherit;
    border: none; /* var(--color--borders) */
    background-color: transparent;
    padding: inherit;
}

.social-share--open .social-share__popup {
    display: block;
}

.module .social-share__popup:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #D8D8D8; /* var(--color--borders) */
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #D8D8D8; /* var(--color--borders) */
    background: #FFFFFF;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.module .article--details .social-share__popup:before {
    display: none;
}

.social-share__popup__icon,
.social-share__popup__icon img {
    display: block;
    width: 28px;
    height: 28px;
}

.social-share__popup__icon {
    float: left;
    text-align: center;
    color: #3d3d3d;
}

.social-share__popup__icon + .social-share__popup__icon {
    margin-left: 10px;
}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .aside .social-share {
        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: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .aside .social-share__text {
        margin-right: 10px;
    }

}

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

    .social-share--open .social-share__popup {
        bottom: 100%;
        left: 4px;
    }
    .section .social-share__popup:before {
        left: 20px;
    }

}

.social-share__button:after {
    font-family: FontAwesome;
    content: "\f08e";
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
}
.social-share--open .social-share__button:after {
    font-family: FontAwesome;
    content: "\f00d";
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
}

/* Media query to target tablet and desktop */
@media all and (min-width:751px) {
    .social-share--open .social-share__button {
        border-color: transparent !important;
        background-color: #FFFFFF;
        color: #3d3d3d;
    }

    .module .social-share__popup {
        margin-left: -620%;
        right: -9999px;
    }

    .module .social-share__popup {
        right: 0;
        margin-left: 0;
        width: 160px
    }
    .social-share__button, .social-share__button:link, .social-share__button:visited {
        border-color: transparent !important;
        text-transform: none;
        font-size: 16px;
        min-width: auto;
    }
    .social-share__button:hover, .social-share__button:active {
        border-color: transparent !important;
        color: #3d3d3d;
    }

    .social-share--open .social-share__popup {
        bottom: 100%;
        right: -4px;
    }

    .module .social-share__popup:before {
        right: 20px;
    }

}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .aside .social-share__text {
        margin-bottom: 5px;
    }
}

/* reseting the text from the rich text areas from the crm */

[class$="--rich-text"] * {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: 1.5 !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: inherit !important;
    font-weight: inherit !important;
    font-style: inherit !important;
    color: inherit !important;
}
[class$="--rich-text"] b,
[class$="--rich-text"] strong {
    font-weight: 600 !important;
}
[class$="--rich-text"] i,
[class$="--rich-text"] em {
    font-style: italic !important;
}
[class$="--rich-text"] a {
    color: #000000 !important;
    text-decoration: underline;
}
[class$="--rich-text"] h1,
[class$="--rich-text"] h2,
[class$="--rich-text"] h3,
[class$="--rich-text"] h4 {
    font-size: 20px !important;
    font-weight: 600 !important;
    padding: 10px 0 !important;
}
[class$="--rich-text"] p {
    padding: 0 0 10px !important;
}
[class$="--rich-text"] ul,
[class$="--rich-text"] ol {
    margin: 10px !important;
    padding-left: 20px !important;
}

[class$="--rich-text"] ul {
    list-style-type: disc !important;
}
[class$="--rich-text"] ol {
    list-style: decimal !important;
}
[class$="--rich-text"] li {
    margin: 0 !important;
    padding: 2px 0 !important;
}

[class$="--rich-text"] h2 {
    font-family:"HalesworthET" !important;
    font-weight: 600 !important;
    font-size: 35px !important;
    margin-top: 60px !important;
    margin-bottom: 20px !important;
    letter-spacing: 1.2px !important;
}
[class$="--rich-text"] h2:first-of-type {
    margin-top: 0 !important;
}

@media all and (max-width: 750px) {
    [class$="--rich-text"] h2 {
        font-size: 24px !important;
        margin-top: 48px !important;
    }
}

/* POWERED BY TECH
   ========================================================================== */

.body--poweredbytech {
    --banner--mobile: var(--banner--poweredByTech--mobile)
}

.body--poweredbytech .module--copy--2col .column {
    justify-content: initial;
}

.body--poweredbytech .column__item__image {
    display: block;
    width: 100%;
    max-width: 550px;
}

.body--poweredbytech .module__header__text__title--1,
.body--poweredbytech .body--homepage .article--result .article__header .link {
    font-weight: 500;
}

.module--copy--2col .article__header__text__title + .article__content {
    margin-top: 48px;
}

.body--poweredbytech .module--copy--2col + * .article--extra-pad-vert {
    padding-top: 20px;
    padding-bottom: 100px;
}

.body--poweredbytech .module--cards .article__header__text__title,
.body--poweredbytech .container--keyfigures .article__header__text__title {
    font-weight: bold;
    margin: 0;
}

.body--poweredbytech .module--cards .article__header__text__title + .article__header__text__subtitle {
    font-weight: 300;
    font-size: 16px;
    margin-top: 16px;
}

.body--poweredbytech .module--copy:not(.module--copy--2col) .column__item--pad,
.body--poweredbytech .container--keyfigures .row--extra-pad-vert {
    padding-top: 0;
    padding-bottom: 0;
}

.body--poweredbytech .container--keyfigures .counter--label {
    font-weight: 500;
    padding: 0 16px;
}

.body--poweredbytech .container__wrapper {
    padding-top: 40px;
}

.body--poweredbytech .module--iframe .module__wrapper {
    padding-left: 0;
    padding-right: 0;
}

.body--poweredbytech.body--iframe {
    min-height: initial;
    overflow: hidden;
}

.body--poweredbytech.body--iframe .module__wrapper {
    overflow: hidden;
}

.body--poweredbytech.body--iframe .module--video:not(.ready) {
    visibility: hidden;
}

/* Media query to target only desktop */
@media all and (min-width:1025px) {
    .body--poweredbytech .container__wrapper {
        padding-left: 0;
        padding-right: 0;
        padding-top: 100px;
    }

    .body--poweredbytech .banner__text__button {
        margin-top: 24px;
    }

    .module--copy--2col .grid__item:nth-of-type(even) .column__item__image {
        margin-left: auto;
    }

    .module--copy--2col .grid__item:nth-of-type(even) [class*="--pad"] {
        padding-left: 10px;
    }

    .body--poweredbytech .module--copy--2col + * .article--extra-pad-vert {
        padding-top: 20px;
        padding-bottom: 100px;
    }

    .body--poweredbytech .module--cards .column {
        gap: 27px;
    }

    .body--poweredbytech .container--keyfigures .button-bar {
        padding-top: 90px;
    }
}

/* Media query to target mobile and tablet */
@media all and (max-width:1024px) {
    .body--poweredbytech .container--video {
        padding-left: 0;
        padding-right: 0;
    }

    .body--poweredbytech .module--copy--2col .module__wrapper {
        padding-top: 40px;
    }

    .body--poweredbytech .module--copy--2col .grid,
    .body--poweredbytech .module--copy--2col .grid .grid__item:nth-of-type(2) {
        flex-direction: column-reverse;
    }

    .body--poweredbytech .module--copy--2col .grid .grid__item:nth-of-type(2) .column__item--pad {
        padding-bottom: 20px!important;
    }

    .body--poweredbytech .module--copy .column__item.column__item--pad:last-child {
        padding-bottom: 40px!important;
    }
}
