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

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

/* 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);
    -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: url('../images/logo--default.svg');
    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: #CCCCCC;
}

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

.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: 0;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        color: #fff; /* var(--color--site) */
        transition: all .3s;
    }

    .section--collapsible-form-search .form--search .section--collapsible-form-search__toggle:hover,
    .section--collapsible-form-search .form--search .section--collapsible-form-search__toggle:focus,
    .section--collapsible-form-search__open .form .section--collapsible-form-search__toggle {
        background-color: #2c3030;
    }
    .section--collapsible-form-search__open .form .section--collapsible-form-search__toggle i {
        transform: rotate(180deg);
        transition: all .3s;
    }

    .section--collapsible-form-search .form--search .Section {
        display: none;
        margin: 0;
        -webkit-box-shadow: 0 0 12px 0 rgba(91, 91, 91, .3);
        box-shadow: 0 0 12px 0 rgba(91, 91, 91, .3);
        border-radius: 0;
        background-color: #fff;
        opacity:.2;
        transition:all 150ms ease-in-out;
    }

    .section--collapsible-form-search__open .form .Section {
        display: block;
        opacity: 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: 0; /* This is the [class*="__wrapper"] padding-right, defined in stylesheet #3. */
        margin-left: 0; /* This is the [class*="__wrapper"] padding-left, defined in stylesheet #3. */
        padding: 0 15px 20px;
    }

}

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

}

/* 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: #EBEFF5;
    border: solid 1px #CCCCCC; /* 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: 600;
    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 #CCCCCC; /* 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 #CCCCCC; /* 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-bottom: 40px;
}

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

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

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

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

.list--steps .list__item .list__item__text {
    display: flex;
    flex-direction: column;
}
.list--steps .list__item .list__item__text:after {
    content: "";
    position: absolute;
    left:0;
    top: 10px;
    z-index: 2;
    border-radius: 2px;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    border-bottom-color: #0D8390;
    width: 0;
}

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

.list--steps .list__item__text__title {
    font-size: 14px;
    text-transform: none;
    order: 2;
    font-weight: 600;
}

/* Media query to target only mobile */
@media all and (max-width:750px) {
    .list--steps {
        margin-bottom: 0
    }
    .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: flex-start;
        -webkit-align-items: flex-start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
        margin-bottom: 20px;
        position: relative;
        padding-top: 16px;
        font-weight: 700;
    }

    .list--steps .list__item--current .list__item__text:after,
    .list--steps:after {
        width: 100%;
        top: 0;
    }

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

    .list--steps .list__item__text__subtitle {
        font-size: 14px;
        position: absolute;
        right: 0;
    }

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

    .list--steps .list__item.list__item--filled:last-child {
        display: block;
        margin-top: -10px;
        margin-bottom: 16px
    }
    .list--steps .list__item.list__item--filled:last-child .list__item__text {
        padding-top: 26px
    }
}

/* 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__title {
        text-align: center;
    }

    .list--steps .list__item__text__subtitle {
        position: relative;
        z-index: 3;
        margin: 0 auto 10px;
        border-radius: 100%;
        border-width: 2px;
        border-style: solid;
        border-color: #FFFFFF;
        width: 24px;
        height: 24px;
        background-color: #d0d0ce; /* var(--color--borders) */
        font-size: 12px;
        line-height: 20px;
        font-weight: 600;
        text-align: center;
        color: #FFFFFF;
    }

    .list--steps .list__item--current .list__item__text__subtitle {
        background-color: #0D8390; /* var(--color--site) */
    }

    .list--steps .list__item--filled .list__item__text__subtitle {
        background-color: #0D8390; /* var(--color--site) */
    }
}

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

/* 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: transparent;
        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 only desktop */
@media all and (min-width:1025px) {
    .article--methods .article__content:first-of-type {
        margin-right: -34px;
        margin-left: -34px;
    }

}

/* REGISTER METHODS: INFO ORGANIZATION LEVEL
   ========================================================================== */
.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: 0 auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 3px;
    max-width: 175px;
    width: 100%;
    height: 40px;
    padding-top: 4px;
    padding-right: 10px;
    padding-bottom: 4px;
    filter: none;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: left;
    vertical-align: middle;
    color: #FFFFFF;
    -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;
}

.list--methods .list__item--linkedin [name="widget-holder"] {
    position: relative;
    margin-bottom: -5px;
    margin-left: 4px;
    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: url('../images/method--facebook.svg');
    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--xing .list__item__link {
    background-color: #005A5F;
    background-image: url('../images/method--xing.svg');
    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: url('../images/method--indeed.svg');
    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: url('../images/method--googleplus.svg');
    background-size: 38px 40px;
    background-position: left center;
    padding-left: 48px;
    font-weight: 600;
    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: url('../images/method--monster.svg');
    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: #0076a8; /* var(--color--site) */
    background-color: #0076a8;
    color: #fff;
}

.list--methods .list__item--dropbox .list__item__link,
.list--methods .list__item--googledrive .list__item__link {
    padding-left: 10px;
}

.list--methods .list__item--file .list__item__link,
.list--methods .list__item--paste .list__item__link,
.list--methods .list__item--later .list__item__link {
    background-position: 10px center;
    background-size: auto 16px;
    padding-left: 34px;
}

.list--methods .list__item--file .list__item__link {
    background-image: url('../images/method--file.svg');
}

.list--methods .list__item--paste .list__item__link {
    background-image: url('../images/method--paste.svg');
}

.list--methods .list__item--later .list__item__link {
    background-image: url('../images/method--later.svg');
}

.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: #007CB0;
}

.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: #007CB0;
}

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

.article--details .article__header {
    padding-bottom: 10px;
}

.notice {
    background-color: #f9f9f9;
    padding: 16px;
    display: block;
    margin-bottom: 60px
}

/* 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;
    width: 20px;
    height: 20px;
    background-color: #fff;
    transform: rotate(45deg);
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

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

/* DETAIL: INFO ORGANIZATION LEVEL: FROM VIEW
   ========================================================================== */

.article__view {
    /* container */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}
.field-title {
    font-weight: 700;
}
.field-title:after {
    content: ':';
    display: inline-block;
    margin-left: -3px
}

.view--col {
    width: 49%;
    flex-basis: 49%;
    margin-bottom: 7px
}
.view--col-3 {
    width: 32%;
    flex-basis: 32%;
}
.view--col-4 {
    width: 24%;
    flex-basis: 24%;
}

.view--value-color .field-value,
.view--label-color .field-title {
    color: #fc7a1e;
}

.view--title {
    width: 100%;
    font-weight: 600;
    font-size: 24px;
    margin-top: 40px;
    color: #000;
}
.view--title.first-item {
    margin-top: 0;
    margin-bottom: 20px;
}

.view--subtitle,
.view--subtitle-alt,
.view--no-label .field-title {
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    margin: 20px 0 15px;
    color: #000;
}
.view--subtitle--alt:first-of-type {
    margin-top: -30px;
}
.view--subtitle--alt .field-title {
    font-size: 16px !important;
    margin-bottom: 10px !important;
    margin-top: 30px;
    font-weight: 400;
}
.view--subtitle .field-title,
.view--subtitle--alt .field-title {
    font-weight: 400;
}
.view--subtitle .field-title:after {
    content: '';
}

.view--separator {
    width: 100%;
    display: block;
}
.view--separator-line {
    border-top: 1px solid #d8d8d8;
    padding-top: 20px;
    margin-top: 20px;
}
.view--subtitle.view--separator-line {
    padding-top: 30px;
    padding-bottom: 10px;
}

.view--row {
    width: 100%;
    display: block;
}
.view--col.view--table .field-title,
.view--row .field-title {
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
    color: #000;
    display: block;
}
.view--row .field-title {
    font-size: 24px;
}
.view--row.no-label .field-title,
.view--row.no-label .field-value br {
    display: none !important;
}

.view--row-alt {
    width: 100%;
    display: block;
    margin-bottom: 15px
}
.view--row-alt .field-title {
    display: inline-block;
    font-weight: 700;
}
.view--row-alt .field-value {
    display: inline-block;
}
.view--table {
    overflow-x: auto;
}
.view--table table {
    width: 100%;
    max-width: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #d8d8d8;
    border-collapse: separate;
    text-align: left;
    vertical-align: middle;
    border-left: none;
    border-right: none;
}
.view--table table thead th {
    font-size: 16px;
    font-weight: bold;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #000;
    background-color: #000;
    text-transform: none;
    color: #fff;
    padding: 8px 8px;
    overflow: hidden;
    white-space: normal;
    text-overflow: initial;
    min-width: 80px;
    text-align: left;
}
.view--table table tbody td {
    font-size: 14px;
    padding: 8px 8px;
    line-height: 150%;
}
.view--table table tbody tr:last-child td {
    border-bottom: none;
}
.view--no-label .MultipleDataSetFieldLabel {
    display: none;
}
.view--no-label .MultipleDataSetFieldValue {
    padding-top: 5px;
    display: block;
    line-height: 1.5;
}
.view--no-label .MultipleDataSetField:first-child .MultipleDataSetFieldValue {
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 5px;
    color: #000;
    padding-top: 10px
}

.view--multipledataset {
    display: block;
    width: 100%
}
.view--multipledataset .field-title {
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 5px;
    color: #000;
    padding-bottom: 10px
}
.view--multipledataset .MultipleDataSetFieldLabel {
    padding-top: 5px;
    display: inline-block;
    line-height: 1.5;
    font-weight: 700;
    font-size: 14px;
}
.view--multipledataset .MultipleDataSetFieldValue {
    padding-bottom: 5px;
    color: #000;
}

.view--col .field-title {
    display: inline-block;
    font-weight: 700;
    font-size: 14px !important;
    margin-bottom: initial !important;
    margin-top: initial;
}
.body--Gecko .view--col .field-title,
.body--IE .view--col .field-title {
    margin-bottom: 0 !important;
    margin-top: 0;
}
.view--col .field-value {
    display: inline-block;
}
.view--col-alt .field-title,
.view--col-alt .field-value {
    display: block;
}

.simple-table .field-value {
    display: block;
}
.simple-table .field-value br {
    display: none;
}
.simple-table .field-value thead {
    display: none;
}

/* column merge with icon */
.article--view-container [class*="icon--"] {
    position: relative;
    margin-left: 35px;
    margin-bottom: 15px;
}
.article--view-container [class*="icon--"]:before {
    font-family: 'FontAwesome';
    position: absolute;
    left: -35px;
    font-size: 23px;
    top: 3px;
    width: 25px;
    background-size: 24px;
    height: 25px;
    content: '';
}
.article--view-container [class*="icon--"].view--col span {
    display: block;
}

.icon--date:before {background-image: url(../images/icon--calendar.png);}
.icon--time:before {background-image: url(../images/icon--time.png);}
.icon--dress-code:before {background-image: url(../images/icon--dress-code.png);}
.icon--business:before {background-image: url(../images/icon--business.png);}
.icon--location:before {background-image: url(../images/icon--location.png);}
.icon--gps:before {background-image: url(../images/icon--gps.png);}
.icon--event-category:before {background-image: url(../images/icon--event-category.png);}

.text-to:before {
    content: 'to';
}
.text-comma:after {
    content: ',';
    display: inline-block;
    margin-left: -3px
}

.view--max-height {
    max-height: 200px;
    overflow: auto;
}

.article--detail-item.merged-col--container .article__header {
    display: none;
}
.article--detail-item.merged-col--container .field-title {
    display: none;
}
.article--detail-item.merged-col--container .article__view__item:first-child .field-title {
    display: block;
}
.article--detail-item.merged-col--container .article__view {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
}
.article--detail-item.merged-col--container .article__content {
    display: flex;
    align-items: flex-end;
}
.article--detail-item.merged-col--container .article__content .article__view__item+.article__view__item {
    margin-left: 4px
}

/* table emulator for views */
.table__emu {
    border: 1px solid #e1e1e1;
    margin-bottom: 20px
}
.table__emu__thead {
    background-color: #f3f3f3;
    display: flex;
}
.table__emu__th {
    width: 100%;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 8px;
    border-bottom: 1px solid #e1e1e1;;
}
.table__emu__tbody {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px
}
.table__emu__td--container {
    display: flex;
    align-items: center;
}
.table__emu__td--container.separator {
    border-bottom: 1px solid #e1e1e1;
    width: 100%;
    padding: 0
}
.view__table-col1_2 {
    width: 66%;
}
.view__table-col3 {
    width: 34%;
}
.view__table-col3 .field-title {
    display: none;
}
.table__emu__td {
    width: 100%;
    padding: 15px 8px;
}
.view__table-col3 .field-value {
    padding: 15px;
}

.table__emu__td--container.separator .table__emu__td {
    padding: 0
}

@media all and (max-width: 750px) {
    .view--col {
        width: 100%;
        flex-basis: 100%;
        padding-right: 0;
    }
    .view--col.view--table .field-value {
        display: block;
        width: 100%;
    }

    .view--col .field-title,
    .view--col .field-value {
        display: inline-block;
        width: auto;
        font-size: 14px !important;
        margin-top: 0;
        margin-bottom: 0 !important;
    }
    .view--subtitle--alt:first-of-type {
        margin-top: -20px;
    }
    .view--subtitle--alt .field-title {
        font-size: 16px !important;
        font-weight: 400;
    }
    .view--table table {
        width: inherit;
        border: none;
    }
    .view--table table thead th {
        display: none;
    }
    .view--row .tableField tbody tr td,
    .view--table table tbody td {
        width: 100%;
        display: block;
        padding: 2px 0;
    }
    .view--row .tableField tbody tr td:first-child,
    .view--table table tbody td:first-child {
        font-weight: 700;
        font-size: 16px;
    }
    .view--row .tableField tbody tr td:last-child,
    .view--table table tbody td:last-child {
        padding-bottom: 10px;
    }
    .fieldTemplateWidget {
        max-width: 100%;
    }

    .table__emu__thead {
        display: none;
    }
    .table__emu__td--container {
        display: flex;
        flex-direction: column;
        width: 100% !important;
    }
    .table__emu__td.field-title {
        padding: 10px 15px 0 !important;
        font-weight: 600;
        display: block !important;
    }
    .view__table-col3 .table__emu__td.field-title {
        padding: 0 15px 0 !important;
    }
    .table__emu__td.field-value {
        padding: 0 15px 15px !important;
    }
    .table__emu__td--container.separator .table__emu__td {
        padding: 0 !important;
    }

}

/* DETAIL: INFO ORGANIZATION LEVEL: ATTACHMENTS
   ========================================================================== */

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

.list--attachments .list__item__actions{
    margin-top: 0;
}

.list--attachments .list__item__actions .link {
    font-weight: 400;
}

.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: #CCCCCC; /* 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: 600;
}

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

@media all and (min-width: 750px) {
    .list--attachments {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .list--attachments .list__item {
        width: 50%;
        margin: 10px 0;
    }
}

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

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

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

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

/* DETAIL ASIDE: ARTICLE LEVEL
   ========================================================================== */
* + .article--view-more-aside .article__header {
    padding-top: 15px;
}

.article--view-more-aside .article__header {
    padding-bottom: 10px;
    margin-bottom: 0;
}

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

/* DETAIL ASIDE: INFO ORGANIZATION LEVEL
   ========================================================================== */
.list--view-more-aside a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 0;
    flex-direction: column;
    border-bottom: 1px solid #e5e5e5
}

.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:100%;
}

.list--view-more-aside .list__item__text__title {
    font-weight: 600;
}

.list--view-more-aside .list__item .list__item__text__title {
    color: #007CB0;
    display: block;
}
.list--view-more-aside .list__item:hover .list__item__text__title {
    color: #333; /* var(--color--secondary) */
}

.list--view-more-aside .list__item__text__subtitle {
    padding-top: 5px;
    font-size: 12px;
    color: #333333;
}

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

.list--view-more-aside .list__item:last-child a {
    border-bottom: none
}

.article.article--boxed.article--search-form.article__box--search-form.article--relatedJobs {
    padding-bottom: 6px
}

/* FormSection */
.FormHeaderSection+.FormHeaderSection {
    margin-top: 20px;
    border-top: 1px dotted #ddd;
    padding-top: 20px
}
.FormHeaderSection h1 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}
.article__content--form-nolabel .FormHeaderSection h1 {
    display: none;
}

.FormHeaderSection h3 {
    font-size: 16px;
    margin-bottom: 5px;
}
.FormSection .question {
    font-weight: 600;
    display: inline;
    vertical-align: top;
}
.FormSection .question:after {
    content: ':'
}
.FormSection .answer {
    display: inline;
    vertical-align: top;
}
.FormSection .answer:after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
}

/* 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: #CCCCCC; /* 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: #CCCCCC; /* 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: 300px;
}

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

}

/* 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: 'Open Sans', 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;
}

.list--social-login .list__item__link--facebook {
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #DADBDC;
    background-image: url('../images/social-login--facebook.svg');
    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 {
    -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    -moz-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;
    background-size: auto 40px;
    background-position: left center;
    padding-right: 10px;
    line-height: 20px;
    font-weight: 600;
    color: #757575;
}

.list--social-login .list__item__link--google {
    width: 107px;
    background-image: url('../images/social-login--google.svg');
    padding-left: 50px;
}

.list--social-login .list__item__link--xing {
    background-image: url('../images/social-login--xing.png');
    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
   ========================================================================== */
.section .social-share {
    display: inline-block;
    position: relative;
}

.social-share__text {
    font-size: 14px;
    font-style: italic;
    color: #999999;
}

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

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

.social-share--open .social-share__button {
    border-color: #8F98A7;
    background-color: #FFFFFF;
    color: #8F98A7;
}

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

.section .social-share__popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    z-index: 2;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #e3e5ec; /* var(--color--borders) */
    background-color: #FFFFFF;
    padding: 9px 8px;
}

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

.section .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: #e3e5ec; /* var(--color--borders) */
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #e3e5ec; /* var(--color--borders) */
    background: #FFFFFF;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

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

.social-share__popup__icon {
    float: left;
    color: #000;
}

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

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

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

}

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

    .social-share--open .social-share__popup {
        left: 0;
    }
    .section .social-share__popup:before {
        left: 20px;
    }

}

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

    .social-share--open .social-share__popup {
        right: 5px;
    }

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

}

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

.aside--alt .social-share__popup {
    right: 0;
    margin-left: 0;
    display: block;
    width: 100%;
    position: static;
    border: none;
    padding: 0;
}
.aside--alt .social-share__popup:before {
    display: none;
}
.aside--alt .social-share__button {
    display: none;
}
.aside--alt .social-share__text {
    display: block;
    color: #000;
    font-style: normal;
    padding-bottom: 10px;
}

.anchor-landing::before {
    content: "";
    display: block;
    height: 95px;
    margin: -95px 0 0;
}
