/*
 * ACCOUNT PAGE
 */
.ts-account-page__layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: -8px 0;
}

@media (min-width: 992px) {
    .ts-account-page__layout {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin: 0 -8px;
    }
}

.ts-account-page__layout .ts-layout__item {
    width: 100%;
    margin: 8px 0;
}

@media (min-width: 992px) {
    .ts-account-page__layout .ts-layout__item {
        width: calc(50% - 8px);
        margin: 0 8px;
    }
}

.ts-account-page__layout .mandatoryFieldLabel {
    display: none;
}

.ts-account-page__contact-panel .ts-control-label {
    display: block;
    margin-bottom: 5px;
}

.ts-account-page__contact-panel .ts-control-label img {
    display: none;
}

.ts-account-page__contact-panel .ts-control-error {
    font-size: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    padding: 0 5px;
}

.ts-account-page__contact-panel .ts-control-error:before {
    font-size: 12px;
    font-style: italic;
    display: block;
    width: 100%;
    margin-top: -1px;
    padding-top: 6px;
    content: attr(data-val-errormessage);
    color: #d11548;
    border-top: 1px solid #d11548;
}

.ts-account-page__contact-panel .ts-control-error img {
    display: none;
}

.ts-account-page__login-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.ts-account-page__login-buttons .ts-button--primary-wrapper {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
}

.ts-account-page__login-buttons .ts-button--cancel-wrapper {
    margin: 10px 0 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

@media (min-width: 768px) {
    .ts-account-page__login-buttons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .ts-account-page__login-buttons .ts-button--primary-wrapper {
        margin: 0 0 0 15px;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }

    .ts-account-page__login-buttons .ts-button--cancel-wrapper {
        margin: 0;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }
}
/*
 * FORGOT PASSWORD PAGE
 */
.ts-forgot-password-page__lead-text {
    margin: 0 !important;
}

.ts-forgot-password-page__layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
}

@media (min-width: 992px) {
    .ts-forgot-password-page__layout {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin-right: -8px;
        margin-left: -8px;
    }
}

.ts-forgot-password-page__layout .ts-layout__item {
    width: 100%;
}

@media (min-width: 992px) {
    .ts-forgot-password-page__layout .ts-layout__item {
        width: calc(50% - 8px);
        margin-right: 8px;
        margin-left: 8px;
    }
}

.ts-forgot-password-page__layout .mandatoryFieldLabel {
    display: none;
}

.ts-forgot-password-page__button-row {
    margin-top: auto;
}

@media (max-width: 767px) {
    .ts-forgot-password-page__button-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .ts-forgot-password-page .ts-layout__item + .ts-layout__item {
        margin-top: 15px;
    }
}

.loading-container {
    position: fixed;
    z-index: 1000;
    overflow: hidden;
    width: 100%;
    height: 100%;
    cursor: wait;
    opacity: .75;
    background-color: #fff;
}

.ts-ol__loader {
    min-height: 300px;
}

.ts-ol-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /*
     * FACETED-FILTERS
     */
}

.ts-ol-container-list-results {
    position: relative;
    z-index: 2;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

@media (max-width: 767px) {
    .ts-ol-container-list-results__map {
        height: 400px !important;
        /* OFFERS-MAP:mobile-height */
    }
}

@media (min-width: 768px) {
    .ts-ol-container-list-results__map {
        height: 494px !important;
        /* OFFERS-MAP:desktop-height */
    }
}

.ts-ol-container-list-results__map > div {
    height: 100% !important;
    text-align: center;
}

.ts-ol-container-list-results__map-container {
    margin: 0 -30px;
}

.ts-ol-container-list-results__map-container--no-result {
    display: none;
}

.ts-ol-container-list-results-not-located {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #d11548 /* OFFERS-NOT-LOCATED:color */;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-ol-container-list-results-not-located:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    margin-right: 10px;
    content: '\e901';
    text-transform: none;
    color: #d11548 /* OFFERS-NOT-LOCATED:color */;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-container-list-results-not-located__container {
    position: absolute;
    z-index: 3;
    top: 0;
    right: -30px;
    left: -30px;
    display: none;
    padding: 5px 30px;
    opacity: .9;
    background: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#fafafa)) /* OFFERS-NOT-LOCATED:bg-color */;
    background: linear-gradient(180deg, #ebebeb 0%, #fafafa 100%) /* OFFERS-NOT-LOCATED:bg-color */;
    -webkit-box-shadow: inset 0 2px 8px 0 rgba(0, 0, 0, .15) /* OFFERS-NOT-LOCATED:box-shadow */;
            box-shadow: inset 0 2px 8px 0 rgba(0, 0, 0, .15) /* OFFERS-NOT-LOCATED:box-shadow */;
}

.ts-ol-container-list-results-not-located__img {
    display: none;
}

.ts-ol-container-list-results-not-located__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    cursor: pointer;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-ol-container-list-results-not-located__close:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e94d';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-container-list-results-no-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-ol-container-list-results-no-result__title {
    font-size: 45px /* OFFERS-NO-RESULTS:font-size */;
    font-weight: bold;
    color: #d1d3d5 /* OFFERS-NO-RESULTS:color */;
}

.ts-ol-container-list-results-no-result__text {
    width: 60% /* OFFERS-NO-RESULTS:width */;
    text-align: center;
}

.ts-ol-container-fs {
    /* Faceted search engine */
    display: block /* FACETED-FILTERS:display */;
    border-radius: 0 5px 5px 0 /* FACETED-FILTERS:border-radius */;
    background-color: #fff /* FACETED-FILTERS:bg-color */;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, .2) /* FACETED-FILTERS:box-shadow */;
            box-shadow: 0 0 4px 0 rgba(0, 0, 0, .2) /* FACETED-FILTERS:box-shadow */;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
}

@media (max-width: 767px) {
    .ts-ol-container-fs {
        margin: 0 0 20px -30px;
    }
}

@media (min-width: 768px) {
    .ts-ol-container-fs {
        position: absolute;
        top: -45px;
        left: -30px;
        width: 290px /* FACETED-FILTERS:width */;
    }
}

.ts-ol-container-fs--expanded {
    z-index: 3;
    padding-bottom: 5px;
}

@media (max-width: 991px) {
    .ts-ol-container-fs--expanded > .ts-ol-container-fs__description,
    .ts-ol-container-fs--expanded > .ts-ol-container-fs__container {
        display: block;
    }
}

@media (min-width: 992px) {
    .ts-ol-container-fs--expanded > .ts-ol-container-fs__description,
    .ts-ol-container-fs--expanded > .ts-ol-container-fs__container {
        position: relative;
        left: 0;
    }
}

.ts-ol-container-fs--expanded > .ts-ol-container-fs__title:after {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e995';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-container-fs--hidden {
    display: none;
}

.ts-ol-container-fs__title {
    line-height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    cursor: pointer;
    color: #333 /* FACETED-FILTERS-TITLE:color */;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-ol-container-fs__title:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 35px;
    height: 35px;
    margin-right: 16px;
    content: '\e90c';
    text-transform: none;
    color: #fff;
    background-color: #ff5600 /* FACETED-FILTERS-TITLE:color */;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-container-fs__title:after {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 16px;
    height: 16px;
    margin-right: 20px;
    margin-left: auto;
    content: '\e938';
    text-transform: none;
    color: #ff5600;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-container-fs__description {
    margin: 25px 0;
    padding: 0 25px;
    color: #aaa /* FACETED-FILTERS-DESCRIPTION:color */;
    background-color: #fff;
}

@media (max-width: 991px) {
    .ts-ol-container-fs__description {
        display: none;
    }
}

@media (min-width: 992px) {
    .ts-ol-container-fs__description {
        position: absolute;
        left: -999999%;
    }
}

.ts-ol-container-fs__container {
    background-color: #fff /* FACETED-FILTERS-CONTAINER:bg-color */;
}

@media (max-width: 991px) {
    .ts-ol-container-fs__container {
        display: none;
    }
}

@media (min-width: 992px) {
    .ts-ol-container-fs__container {
        position: absolute;
        left: -999999%;
    }
}

.ts-ol-container-fs__container > div {
    width: 100%;
}

.ts-ol-container-fs-list {
    overflow: auto;
    max-height: 0;
    padding-left: 21px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-color: #f9f9f9 /* FACETED-FILTERS-LIST:bg-color */;
}

.ts-ol-container-fs-list:hover {
    overflow: auto;
}

.ts-ol-container-fs-list--expanded {
    max-height: 200px;
}

.ts-ol-container-fs-list__title {
    line-height: 16px;
    overflow: hidden;
    height: 54px;
    padding: 19px 15px 0 15px;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #333 /* FACETED-FILTERS-LIST-TITLE:color */;
}

.ts-ol-container-fs-list__title:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 19px;
    content: '\e938';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-container-fs-list__title--expanded:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e995';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-container-fs-list__subtitle {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}

.ts-ol-container-fs-list__sublist {
    padding-left: 20px;
}

.ts-ol-container-fs-list::-webkit-scrollbar {
    width: 8.37px;
    background-color: #f5f5f5;
}

.ts-ol-container-fs-list::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #e3e3e3;
}

.ts-ol-container-fs-list::-webkit-scrollbar-thumb {
    border-radius: 14px;
    background-color: #ff5600;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.ts-ol-container-fs-list__item {
    margin-top: 12px;
    margin-bottom: 10px;
}

.ts-ol-container-fs-list__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #333 /* FACETED-FILTERS-LINK:color */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-ol-container-fs-list__link:before {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 2px 7px 2px 2px;
    content: ' ';
    vertical-align: middle;
    border: 1px solid #979797;
    border-radius: 5px;
    background-color: #fff;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-ol-container-fs-list__link--selected:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    padding-top: 1px;
    padding-left: 1px;
    content: '\e94d';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-container-fs-list__link--previous:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    padding-top: 1px;
    padding-left: 1px;
    content: '\e921';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-container-fs-list__img-selected {
    display: none;
}

.ts-ol-criterias {
    font-size: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

@media (min-width: 768px) {
    .ts-ol-criterias {
        margin-bottom: 30px;
        padding: 0 20px;
    }
}

.ts-ol-criterias__title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

@media (max-width: 767px) {
    .ts-ol-criterias__title {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 50%;
        -ms-flex-item-align: end;
            align-self: flex-end;
    }
}

@media (min-width: 768px) {
    .ts-ol-criterias__title {
        width: 100%;
        margin-bottom: 10px;
    }
}

.ts-ol-criterias-display-mode {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
        align-self: center;
}

@media (max-width: 767px) {
    .ts-ol-criterias-display-mode {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 50%;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}

@media (min-width: 768px) {
    .ts-ol-criterias-display-mode {
        position: absolute;
        top: -104px;
        right: 30px;
    }
}

.ts-ol-criterias-display-mode > div + div {
    margin-left: 15px;
}

@media (min-width: 768px) {
    .ts-ol-criterias-display-mode > div + div {
        margin-left: 30px;
    }
}

.ts-ol-criterias-display-mode__image {
    /* Hidden image replaced by icon */
    display: none;
}

.ts-ol-criterias-display-mode-link {
    font-size: 0;
    /* Links changing the display mode */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #ff5600;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-ol-criterias-display-mode-link__card:after {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e95e';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-criterias-display-mode-link__list:after {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e956';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-criterias-display-mode-link__map:after {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e960';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-criterias-display-mode-link--selected {
    position: relative;
}

.ts-ol-criterias-display-mode-link--selected:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 34px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    position: absolute;
    top: -35px;
    left: 50%;
    content: '\e92c';
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
    .ts-ol-criterias-display-mode-link--selected:before {
        top: -19px;
    }
}

@media (min-width: 768px) {
    .ts-ol-criterias-display-mode-link {
        height: 74px;
    }

    .ts-ol-criterias-display-mode-link:after {
        font-size: 30px;
    }
}

.ts-ol-criterias-list {
    font-size: 14px;
    /* Hidden list containing data used for the current search */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

@media (min-width: 768px) {
    .ts-ol-criterias-list {
        width: 85%;
    }
}

.ts-ol-criterias-list__label {
    font-size: 14px;
    width: 100%;
    margin: 10px 0 5px;
    word-break: break-word;
    color: inherit;
}

@media (min-width: 768px) {
    .ts-ol-criterias-list__label {
        width: 15%;
        margin-top: 0;
    }
}

.ts-ol-criterias-list__item {
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 23px;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 3px 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 5px;
    background-color: #d1d3d5;
}

.ts-ol-criterias-more-less {
    font-size: 12px;
    display: none;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .ts-ol-criterias-more-less {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) {
    .ts-ol-criterias-more-less {
        -ms-flex-preferred-size: 16%;
            flex-basis: 16%;
    }
}

.ts-ol-criterias-more-less__more {
    cursor: pointer;
    color: #ff5600;
}

.ts-ol-criterias-more-less__more:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    margin-right: 6px;
    content: '\e920';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-criterias-more-less__less {
    display: none;
    cursor: pointer;
    color: #ff5600;
}

.ts-ol-criterias-more-less__less:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    margin-right: 6px;
    content: '\e91d';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-criterias-keep {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .ts-ol-criterias-keep {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .ts-ol-criterias-keep {
        margin-left: auto;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        -ms-flex-line-pack: center;
            align-content: center;
    }
}

@media (max-width: 767px) {
    .ts-ol-criterias-keep__text {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .ts-ol-criterias-keep__text {
        margin-right: 10px;
    }
}

.ts-ol-criterias-keep__bar {
    font-size: 0;
    display: none;
}

@media (min-width: 768px) {
    .ts-ol-criterias-keep__bar {
        display: block;
    }
}

.ts-ol-criterias-keep__bar:before {
    display: block;
    width: 2px;
    height: 14px;
    margin: 0 10px;
    content: '';
    background-color: #e1e3e5;
}

.ts-ol-criterias-keep__link {
    color: #ff5600;
}

@media (max-width: 767px) {
    .ts-ol-criterias-keep__link {
        margin-top: 5px;
    }
}

.ts-ol-criterias-keep__link:before {
    margin-right: 5px;
    color: #ff5600;
}

.ts-ol-criterias-keep__link--email:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e985';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-criterias-keep__link--rss:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\ea9b';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-criterias-keep__link--save:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e981';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-criterias-url {
    font-size: 12px;
    /* Hidden feature displaying an url refering to the search */
    width: 100%;
    word-break: break-all;
}

.ts-ol-criterias-url:before {
    display: block;
    height: 2px;
    margin: 5px 0;
    content: '';
    background-color: #e1e3e5;
}

@media (min-width: 768px) {
    .ts-ol-criterias-url:before {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
}

.ts-ol-criterias-url__button {
    color: #ff5600;
}

.ts-ol-criterias-url__button--hidden {
    display: none;
}

.ts-ol-criterias-url__br {
    display: none;
}

.ts-ol-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (max-width: 767px) {
    .ts-ol-pagination {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-top: 15px;
    }
}

@media (min-width: 768px) {
    .ts-ol-pagination {
        margin-top: 5px;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}

.ts-ol-pagination--top {
    display: none;
}

@media (min-width: 768px) {
    .ts-ol-pagination--top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 5px;
    }
}

.ts-ol-pagination__title {
    font-size: 12px;
    color: #aaa;
}

@media (max-width: 767px) {
    .ts-ol-pagination__title {
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) {
    .ts-ol-pagination__title {
        margin-right: 10px;
    }
}

.ts-ol-pagination-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border: 1px solid #e3e3e3 /* PAGINATION:border */;
    border-radius: 4px;
    background-color: #fff /* PAGINATION:bg-color */;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-ol-pagination-list-item {
    position: relative;
    width: 26px;
    height: 26px;
    border-left: 1px solid #e3e3e3 /* PAGINATION:border */;
}

.ts-ol-pagination-list-item:first-child {
    border: none;
}

.ts-ol-pagination-list-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 100%;
    color: #ff5600 /* PAGINATION:color */;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-ol-pagination-list-item__link--active {
    color: #fff /* PAGINATION:color */;
}

.ts-ol-pagination-list-item__link--previous:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e959';
    text-transform: none;
    color: #ff5600 /* PAGINATION:color */;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-pagination-list-item__link--next:after {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e980';
    text-transform: none;
    color: #ff5600 /* PAGINATION:color */;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-pagination-list-item__link-image {
    display: none;
}

.ts-ol-pagination-list-item--other {
    display: none;
}

.ts-ol-pagination-list-item--previous-active {
    margin-left: 25px;
}

.ts-ol-pagination-list-item--previous-active:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 8px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    position: absolute;
    top: 0;
    right: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 25px;
    height: 26px;
    margin-right: 1px;
    padding-bottom: 5px;
    content: '\e96b';
    text-transform: none;
    color: #ff5600 /* PAGINATION:color */;
    border-left: 1px solid #e3e3e3 /* PAGINATION:border */;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-pagination-list-item--next-active {
    margin-right: 26px;
}

.ts-ol-pagination-list-item--next-active:after {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 8px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 25px;
    height: 26px;
    margin-left: 1px;
    padding-bottom: 5px;
    content: '\e96b';
    text-transform: none;
    color: #ff5600 /* PAGINATION:color */;
    border-left: 1px solid #e3e3e3 /* PAGINATION:border */;
    background-color: #fff /* PAGINATION:bg-color */;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-ol-pagination-list-item--active {
    height: 26px;
    background-color: #ff5600 /* PAGINATION:active-bg-color */;
}

.ts-account-panel {
    position: relative;
    padding-top: 45px;
}

.ts-account-panel .ts-panel__lead {
    position: absolute;
    top: 30px;
    left: 30px;
}

.ts-account-panel .ts-account-form > fieldset > legend {
    position: absolute;
    top: 30px;
    left: 30px;
}
/*
 * .ts-offer
 */
.ts-offer-page {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.ts-offer-page br {
    display: none;
}

.ts-offer-page__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 12px;
    padding-bottom: 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (min-width: 992px) {
    .ts-offer-page__title.is-sticky {
        font-size: 20px;
        position: fixed;
        z-index: 1050;
        top: 0;
        left: 50%;
        width: 100%;
        max-width: 994px;
        min-height: 50px;
        margin: auto;
        padding: 2px 12px 4px;
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
        border-radius: 0;
    }

    .ts-offer-page__title.is-sticky .ts-offer-page__cta {
        padding: 4px 0;
    }
}

.ts-offer-page__title.is-sticky + .ts-offer-page__title {
    visibility: hidden;
}

@media (max-width: 991px) {
    .ts-offer-page__title.is-sticky + .ts-offer-page__title {
        display: none;
    }
}

.ts-offer-page__title > span:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-offer-page__toolbar {
    margin: 0 0 20px;
    padding: 0 20px;
}

@media (max-width: 991px) {
    .ts-offer-page__toolbar {
        padding: 0;
    }
}

.ts-offer-page__toolbar #LI_Social {
    margin: 0;
}

.StructureIFrame .ts-offer-page__toolbar {
    float: right;
    max-width: 270px;
    margin: 0;
}

.ts-offer-page__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px 15px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: end;
        align-self: flex-end;
}

@media (min-width: 992px) {
    .ts-offer-page__navigation {
        margin: -30px 0 22px;
    }
}

.ts-offer-page__navigation-arrow a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    height: 20px;
    color: #ff5600;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.ts-offer-page__navigation-arrow a:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.ts-offer-page__navigation-arrow img {
    display: none !important;
}

.ts-offer-page__navigation-arrow.is-next a:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e980';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-offer-page__navigation-arrow.is-prev a:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e959';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-offer-page__navigation__index {
    margin-right: -5px;
    margin-left: -5px;
}

@media (min-width: 992px) {
    .ts-offer-page__body {
        margin-bottom: 45px;
    }
}

.StructureIFrame .ts-offer-page__body {
    margin: 0;
}

.ts-offer-page__content-title {
    display: none;
}

.ts-offer-page__content-details > h2 {
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 54px;
    margin: 45px 0 20px;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: #f3f2ef;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-offer-page__content-details h3 {
    font-weight: 700;
    display: block;
    color: inherit;
}

.ts-offer-page__content-details p + h3,
.ts-offer-page__content-details div + h3 {
    margin-top: 18px;
}

.ts-offer-page__content-details br {
    display: block;
}

.ts-offer-page__content-details img,
.ts-offer-page__content-details input[type='image'] {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.ts-offer-page__content-details iframe {
    width: 100%;
    max-width: 100%;
}

.ts-offer-page__content-details img,
.ts-offer-page__content-details iframe {
    margin: 15px 0;
}

.ts-offer-page__content-details #ctl00_ctl00_corpsRoot_corps_composantDetailOffre_attachedFileDiv {
    margin: 30px 0 0;
}

.ts-offer-page__content-links {
    margin: 30px 0 0;
}

.ts-offer-page__content-links a {
    text-decoration: underline;
    color: #ff5600;
}

.ts-offer-page__entity-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 120px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background-color: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (min-width: 768px) {
    .ts-offer-page__entity-logo {
        height: 178px;
    }
}

.ts-offer-page__entity-logo img {
    height: 80px;
}

@media (min-width: 768px) {
    .ts-offer-page__entity-logo img {
        height: 100px;
    }
}

.ts-offer-page__entity-description .ts-offer-page__entity-logo {
    margin-bottom: 10px;
}

.ts-offer-page__entity-description {
    margin-bottom: 18px;
}

.ts-offer-page__entity-description h3 {
    margin-bottom: 8px;
}

.ts-offer-page__entity-description span {
    font-size: inherit !important;
    color: inherit !important;
}

.ts-offer-page__entity-description br {
    display: inline-block;
}

.ts-offer-page__begin-date,
.ts-offer-page__maj-date,
.ts-offer-page__end-date {
    margin-bottom: 20px;
}

.ts-offer-page__job-location {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.ts-offer-page__job-location input[type='image'] {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    opacity: 0;
}

.ts-offer-page__job-location input[type='image'] + span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 35px /* SQUARE-ICON:width */;
    height: 35px /* SQUARE-ICON:height */;
    margin-right: 10px;
    color: #ff5600 /* SQUARE-ICON-PRIMARY:color */;
    border: 1px solid transparent;
    border-color: #ff5600 /* SQUARE-ICON-PRIMARY:border-color */;
    border-radius: 5px /* SQUARE-ICON:border-radius */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-offer-page__job-location input[type='image'] + span:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 21px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e960';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-offer-page__job-location input[type='image'] + span:hover {
    color: #fff /* SQUARE-ICON-PRIMARY:hover-color */;
    background-color: #ff5600 /* SQUARE-ICON-PRIMARY:hover-bg-color */;
}

.ts-offer-page__job-location input[type='image']:hover + span {
    color: #fff;
    background-color: #ff5600;
}

.ts-offer-page__location div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-offer-page__location .location__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.ts-offer-page__location .location__link input[type='image'] {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    opacity: 0;
}

.ts-offer-page__location .location__link input[type='image'] + span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 35px /* SQUARE-ICON:width */;
    height: 35px /* SQUARE-ICON:height */;
    margin-right: 10px;
    color: #ff5600 /* SQUARE-ICON-PRIMARY:color */;
    border: 1px solid transparent;
    border-color: #ff5600 /* SQUARE-ICON-PRIMARY:border-color */;
    border-radius: 5px /* SQUARE-ICON:border-radius */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.ts-offer-page__location .location__link input[type='image'] + span:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 21px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e960';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-offer-page__location .location__link input[type='image'] + span:hover {
    color: #fff /* SQUARE-ICON-PRIMARY:hover-color */;
    background-color: #ff5600 /* SQUARE-ICON-PRIMARY:hover-bg-color */;
}

.ts-offer-page__location .location__link input[type='image']:hover + span {
    color: #fff;
    background-color: #ff5600;
}

.ts-offer-page__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (max-width: 767px) {
    .ts-offer-page__cta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .ts-offer-page__cta .ts-button + .ts-button {
        margin-top: 5px;
    }
}

@media (max-width: 991px) {
    .ts-offer-page__cta {
        position: fixed;
        z-index: 1100;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 15px 30px;
        background-color: #fff;
        -webkit-box-shadow: 0 2px 50px 0 rgba(0, 0, 0, .3);
                box-shadow: 0 2px 50px 0 rgba(0, 0, 0, .3);
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

@media (min-width: 768px) {
    .ts-offer-page__cta .ts-button + .ts-button {
        margin-left: 5px;
    }
}

.ts-offer-page__cta.is-bottom {
    display: none;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.ts-offer-page__block + .ts-offer-page__block {
    margin-top: 45px;
}

.ts-offer-page__layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 -15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

@media (min-width: 992px) {
    .ts-offer-page__layout {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
    }
}

.StructureIFrame .ts-offer-page__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.ts-offer-page__content {
    padding: 0 15px;
}

@media (max-width: 991px) {
    .ts-offer-page__content {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
}

@media (min-width: 992px) {
    .ts-offer-page__content {
        width: calc(100% - 302px);
    }
}

.StructureIFrame .ts-offer-page__content {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.ts-offer-page__content h2 {
    font-size: 22px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 74px;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-offer-page__content h2:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef;
}

.ts-offer-page__content ol {
    list-style: decimal;
}

.ts-offer-page__content ul {
    list-style: disc;
}

.ts-offer-page__content ol,
.ts-offer-page__content ul {
    margin: 15px 0;
    padding-left: 40px;
}

.ts-offer-page__content br {
    display: block;
}

.ts-offer-page__aside {
    padding: 0 15px;
}

@media (max-width: 991px) {
    .ts-offer-page__aside {
        margin-bottom: 45px;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }
}

@media (min-width: 992px) {
    .ts-offer-page__aside {
        width: 302px;
    }

    .ts-offer-page__aside .ts-block > *:not(h2) {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.StructureIFrame .ts-offer-page__aside {
    width: 100%;
    margin-bottom: 45px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
}

@media (max-width: 991px) {
    .ts-offer-page__aside h2 {
        font-size: 22px /* TITLE:font-size */;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        min-height: 74px /* TITLE-SECONDARY:height */;
        margin-bottom: 30px;
        padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
        color: #120949;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .ts-offer-page__aside h2:before {
        position: absolute;
        top: 0;
        right: 100%;
        width: 20px;
        height: 100%;
        margin-right: 10px;
        content: '';
        background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
    }
}

@media (min-width: 992px) {
    .ts-offer-page__aside h2 {
        font-size: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        min-height: 54px;
        margin-bottom: 20px;
        padding: 15px 20px;
        border-radius: 5px;
        background-color: #f3f2ef;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}

.StructureIFrame .ts-offer-page__aside h2 {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    border-radius: 0;
    background: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.StructureIFrame .ts-offer-page__aside h2:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-offer-page__aside .ts-offer-page__entity-description {
    text-align: justify;
}

.ts-offer-page__download-attachments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.ts-offer-page__download-attachments h2,
.ts-offer-page__download-attachments h3 {
    width: 100%;
}

.ts-offer-page__download-attachments h2 {
    margin-bottom: 15px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
}

.ts-offer-page__download-attachments h3 {
    margin-bottom: 5px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.ts-offer-page__download-attachments .attachment__name {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.ts-offer-page__download-attachments .attachment__download {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 35px /* SQUARE-ICON:width */;
    height: 35px /* SQUARE-ICON:height */;
    margin-right: 10px;
    color: #ff5600 /* SQUARE-ICON-PRIMARY:color */;
    border: 1px solid transparent;
    border-color: #ff5600 /* SQUARE-ICON-PRIMARY:border-color */;
    border-radius: 5px /* SQUARE-ICON:border-radius */;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.ts-offer-page__download-attachments .attachment__download:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 21px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e950';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-offer-page__download-attachments .attachment__download:hover {
    color: #fff /* SQUARE-ICON-PRIMARY:hover-color */;
    background-color: #ff5600 /* SQUARE-ICON-PRIMARY:hover-bg-color */;
}

.ts-offer-page__download-attachments .attachment__download img {
    position: absolute;
    top: 0;
    left: 0;
    width: .1px;
    height: .1px;
}

.ts-offer-page--print {
    display: block;
    max-width: 940px;
    margin: auto;
}

.ts-offer-page--print .ts-title {
    min-height: inherit;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
}

.ts-offer-page--print .ts-offer-page__content-details > h2 {
    min-height: inherit;
    margin: 45px 0 20px;
    padding: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    background: none;
}

.ts-offer-page--print .ts-offer-page__content-details ol {
    list-style: decimal;
}

.ts-offer-page--print .ts-offer-page__content-details ul {
    list-style: disc;
}

.ts-offer-page--print .ts-offer-page__content-details ol,
.ts-offer-page--print .ts-offer-page__content-details ul {
    margin: 15px 0;
    padding-left: 40px;
}

.ts-offer-page--print .ts-offer-page__content-details img {
    margin-top: 20px;
    margin-bottom: 20px;
}

.ts-offer-page--print .ts-offer-page__content-details .ts-offer-page__entity-logo {
    height: inherit;
    padding: 0;
    background: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-offer-page--print .ts-offer-page__content-details .ts-offer-page__entity-logo img {
    margin: 0;
}

.ts-send-offer__container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 100px;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
}

.ts-send-offer__container br,
.ts-send-offer__container hr {
    display: none;
}

.ts-send-offer__container__lead {
    font-weight: 700;
}

.ts-send-offer__container__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-send-offer__container p {
    line-height: 1.2;
}

.ts-send-offer__container p + p {
    margin-top: 15px;
}

@media (min-width: 768px) {
    .ts-send-offer__container {
        margin-bottom: 55px;
    }
}

.ts-send-offer__container .mandatoryFieldLabel {
    position: absolute;
    bottom: 30px;
}

.ts-send-offer__panel > fieldset > legend {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-send-offer__panel > fieldset > legend:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-send-offer__label--mandatory:after {
    content: ' *';
}

.ts-send-offer__label--mandatory > img {
    display: none;
}

.ts-send-offer-table {
    display: block;
}

.ts-send-offer-table > tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.ts-send-offer-table__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
}

.ts-send-offer-table__row > td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

@media (min-width: 768px) {
    .ts-send-offer-table__row > td {
        width: calc(50% - 60px);
    }
}

.ts-send-offer-table__row--button {
    position: absolute;
    top: 100%;
    right: 0;
    margin: 20px 0 0;
}

@media (max-width: 767px) {
    .ts-send-offer-table__row--button {
        left: 0;
    }
}

.ts-send-offer-table__row--button > td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

@media (min-width: 768px) {
    .ts-send-offer-table__row--button > td {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.ts-send-offer-table__row--button > td > .ts-button-primary {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
}

@media (min-width: 768px) {
    .ts-send-offer-table__row--button > td > .ts-button-primary {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
}

.ts-send-offer-table__row--button > td > .ts-button--cancel {
    margin: 10px 0 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

@media (min-width: 768px) {
    .ts-send-offer-table__row--button > td > .ts-button--cancel {
        margin: 0 15px 0 0;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }
}

.ts-send-offer-confirm__txt {
    font-weight: bold;
    margin-bottom: 30px;
}

.ts-send-offer-confirm__link {
    color: #ff5600;
}

.ts-send-offer-confirm__link:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e959';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-delete-application__txt,
.ts-deactivate-application__txt,
.ts-sleep-account__txt,
.ts-delete-account__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    padding: 0 24px;
    text-align: justify;
}

.ts-delete-application__txt--warning:before,
.ts-deactivate-application__txt--warning:before,
.ts-sleep-account__txt--warning:before,
.ts-delete-account__txt--warning:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 34px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    margin-right: 10px;
    content: '\e901';
    text-transform: none;
    color: #d11548;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-delete-application-panel,
.ts-deactivate-application-panel,
.ts-sleep-account-panel,
.ts-delete-account-panel {
    background: #fff;
}

.ts-delete-application-panel > fieldset,
.ts-deactivate-application-panel > fieldset,
.ts-sleep-account-panel > fieldset,
.ts-delete-account-panel > fieldset {
    font-size: 0;
}

.ts-delete-application-panel > fieldset > legend,
.ts-deactivate-application-panel > fieldset > legend,
.ts-sleep-account-panel > fieldset > legend,
.ts-delete-account-panel > fieldset > legend {
    font-size: 24px;
    font-weight: 300;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

.ts-delete-application-panel > fieldset > legend > span,
.ts-deactivate-application-panel > fieldset > legend > span,
.ts-sleep-account-panel > fieldset > legend > span,
.ts-delete-account-panel > fieldset > legend > span {
    font-weight: bold;
}

.ts-delete-application-panel__buttons,
.ts-deactivate-application-panel__buttons,
.ts-sleep-account-panel__buttons,
.ts-delete-account-panel__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (min-width: 768px) {
    .ts-delete-application-panel__buttons,
    .ts-deactivate-application-panel__buttons,
    .ts-sleep-account-panel__buttons,
    .ts-delete-account-panel__buttons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.ts-delete-application__button--no,
.ts-deactivate-application__button--no,
.ts-sleep-account__button--no,
.ts-delete-account__button--no {
    margin: 10px 0 0;
}

@media (min-width: 768px) {
    .ts-delete-application__button--no,
    .ts-deactivate-application__button--no,
    .ts-sleep-account__button--no,
    .ts-delete-account__button--no {
        margin: 0 0 0 15px;
    }
}

.ts-login-pwd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

@media (min-width: 992px) {
    .ts-login-pwd {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
    }
}

.ts-login-pwd__sub-container {
    width: 100%;
}

@media (min-width: 992px) {
    .ts-login-pwd__sub-container {
        width: calc(50% - 9px);
    }
}

.ts-login-pwd .mandatoryFieldLabel {
    display: block;
    width: 100%;
    margin-bottom: 2px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-login-pwd-edit {
    width: 100%;
    margin-top: 9px;
    margin-bottom: 9px;
    background-color: #fff;
}

@media (min-width: 992px) {
    .ts-login-pwd-edit {
        width: calc(50% - 9px);
    }
}

.ts-login-pwd-edit__title {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.ts-login-pwd-edit > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
}

.ts-login-pwd-edit-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
}

.ts-login-pwd-edit-field > span {
    margin-bottom: 5px;
}

.ts-login-pwd-edit-field--mandatory > span:after {
    content: ' *';
}

.ts-login-pwd-edit-field--mandatory > img {
    display: none;
}

.ts-login-pwd-edit__button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.ts-login-pwd-edit .ts-entity-tree {
    width: auto !important;
}

.ts-login-pwd .ts-edit-pwd {
    margin-top: 9px;
    margin-bottom: 9px;
}

.ts-login-pwd-extract {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 18px;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-login-pwd-extract br,
.ts-login-pwd-extract hr {
    display: none;
}

.ts-login-pwd-extract__lead {
    font-weight: 700;
}

.ts-login-pwd-extract__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-login-pwd-extract p {
    line-height: 1.2;
}

.ts-login-pwd-extract p + p {
    margin-top: 15px;
}

.ts-login-pwd-extract__title {
    display: none;
}

.ts-login-pwd-extract__txt {
    margin-bottom: 30px;
}

.ts-login-pwd-extract__button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.ts-fast-apply__lbl-mandatory {
    display: block;
    margin-bottom: 30px;
    padding: 0 20px;
}

.ts-fast-apply-no-apply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-fast-apply-no-apply br,
.ts-fast-apply-no-apply hr {
    display: none;
}

.ts-fast-apply-no-apply__lead {
    font-weight: 700;
}

.ts-fast-apply-no-apply__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-fast-apply-no-apply p {
    line-height: 1.2;
}

.ts-fast-apply-no-apply p + p {
    margin-top: 15px;
}

.ts-fast-apply-no-apply__label {
    display: block;
    margin-bottom: 30px;
}

.ts-fast-apply-no-apply__button {
    width: 160px;
}

.ts-fast-apply-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.ts-fast-apply-content .ts-eeo {
    margin-top: 30px;
}

.ts-fast-apply-content__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-fast-apply-content__block br,
.ts-fast-apply-content__block hr {
    display: none;
}

.ts-fast-apply-content__block__lead {
    font-weight: 700;
}

.ts-fast-apply-content__block__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-fast-apply-content__block p {
    line-height: 1.2;
}

.ts-fast-apply-content__block p + p {
    margin-top: 15px;
}

@media (min-width: 992px) {
    .ts-fast-apply-content__block {
        width: calc(50% - 9px);
    }
}

.ts-fast-apply-content #btenregistrercandidat + .ts-fast-apply-content__block + .ts-fast-apply-content__block {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
}

.ts-fast-apply-content__sub-block {
    margin-bottom: 30px;
}

.ts-fast-apply-content__sub-block--personal-info {
    margin-bottom: 0;
}

.ts-fast-apply-content-connect {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
    background-color: #fff;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.ts-fast-apply-content-connect__label {
    display: block;
    margin-bottom: 30px;
}

.ts-fast-apply-content-connect__button {
    max-width: 160px;
    margin: auto;
}

.ts-fast-apply-content-attestation {
    width: 100%;
    margin-bottom: 30px;
    background-color: #fff;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-fast-apply-content-attestation__title {
    display: block;
    margin-bottom: 10px;
    color: #333;
}

.ts-fast-apply-content .ts-general-condition__title {
    display: block;
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
}

.ts-fast-apply-content .ts-general-condition {
    display: block;
    width: 100%;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
}

.ts-fast-apply-content .ts-data-consent {
    display: block;
    width: 100%;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
}

.ts-fast-apply-content-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 0 !important;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
}

@media (min-width: 768px) {
    .ts-fast-apply-content-buttons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}

.ts-fast-apply-content-buttons .ts-button--cancel {
    margin-right: 15px;
}

.ts-fast-apply-content-buttons .ts-button--primary {
    margin-right: 15px;
}

@media (max-width: 767px) {
    .ts-fast-apply-content-buttons .ts-cancel-button-container {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }

    .ts-fast-apply-content-buttons .ts-send-button-container {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }

    .ts-fast-apply-content-buttons .ts-send-and-complete-button-container {
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }

    .ts-fast-apply-content-buttons .ts-button--primary,
    .ts-fast-apply-content-buttons .ts-button--cancel {
        margin-top: 10px;
    }
}

.ts-fast-apply-content-candidate > fieldset > legend {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-fast-apply-content-candidate > fieldset > legend:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-fast-apply-content-candidate > fieldset > div > div {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
}

.ts-fast-apply-content-candidate > fieldset > div > div:nth-last-child(3) {
    margin-bottom: 0 !important;
}

.ts-fast-apply-content-resume {
    margin: 0 !important;
}

.ts-fast-apply-content-resume > fieldset > legend {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-fast-apply-content-resume > fieldset > legend:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-fast-apply-content-resume .ts-attached-file > fieldset > legend {
    font-size: 22px /* TITLE:font-size */;
    font-size: 18px /* TITLE-TERTIARY:font-size */;
    width: 100%;
    min-height: 74px /* TITLE-PRIMARY:height */;
    min-height: 54px /* TITLE-TERTIARY:height */;
    margin-bottom: 30px;
    padding: 22px /* TITLE-PRIMARY:padding */;
    padding: 15px 22px /* TITLE-TERTIARY:padding */;
    color: #120949;
    border-radius: 5px /* TITLE-PRIMARY:border-radius */;
    background-color: #f3f2ef /* TITLE-PRIMARY:bg-color */;
}

.ts-fast-apply-content-resume .ts-attached-file > fieldset > legend:before {
    display: none;
}

.ts-fast-apply-content-social-network__title {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-fast-apply-content-social-network__title:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-fast-apply-content-social-network__title--empty {
    display: none;
}

.ts-fast-apply-content-social-network__title--empty + .ts-fast-apply-content-social-network {
    display: none;
}

.ts-fast-apply-content-social-network > fieldset > legend {
    font-size: 0;
}

.ts-fast-apply-content-social-network .ts-social-btn {
    margin-bottom: 5px;
}

.ts-fast-apply__error {
    font-size: 0;
    width: 100%;
}

.ts-fast-apply__error img {
    width: .1px;
}

.ts-fast-apply__error:before {
    font-size: 12px;
    font-style: italic;
    display: block;
    margin: 0 5px;
    padding: 5px;
    content: attr(data-val-errormessage);
    color: #d11548;
}

.ts-fast-apply__error--border:before {
    margin-top: -1px;
    padding-top: 6px;
    border-top: 1px solid #d11548;
}

.ts-fast-apply__error[style*='visibility: hidden']:before,
.ts-fast-apply__error[style*='visibility:hidden']:before,
.ts-fast-apply__error[style*='visibility: hidden'] > *,
.ts-fast-apply__error[style*='visibility:hidden'] > * {
    display: none;
}

.ts-fast-apply .ts-entity-tree > fieldset > legend,
.ts-fast-apply__field-label {
    display: block;
    margin-bottom: 5px;
}

.ts-fast-apply .ts-generated-field {
    display: block;
    margin-bottom: 30px;
}

.ts-fast-apply .ts-generated-field:last-child {
    margin-bottom: 0;
}

.ts-fast-apply .DoesNotCompleteClass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 991px) {
    .ts-fast-apply .ts-static-upload__input-col {
        width: 100%;
    }

    .ts-fast-apply .ts-static-upload__input-col .ts-cloud-upload-buttons button span {
        width: 100%;
    }
}

.ts-apply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.ts-apply-offer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
}

.ts-apply-offer br,
.ts-apply-offer hr {
    display: none;
}

.ts-apply-offer__lead {
    font-weight: 700;
}

.ts-apply-offer__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-apply-offer p {
    line-height: 1.2;
}

.ts-apply-offer p + p {
    margin-top: 15px;
}

.ts-apply-offer__title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    text-transform: initial;
    color: inherit;
}

.ts-apply-offer__txt {
    font-size: 24px;
    font-weight: 200;
    text-transform: uppercase;
}

.ts-apply-entory {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.ts-apply__lbl-mandatory {
    font-size: 12px;
    font-style: italic;
    display: block;
    margin-bottom: 10px;
    padding: 0 24px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}

.ts-apply-content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
}

.ts-apply-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.ts-apply-content-bloc {
    display: block !important;
    width: 100%;
    margin-bottom: 30px;
    background: #fff;
}

@media (min-width: 992px) {
    .ts-apply-content-bloc {
        width: calc(50% - 9px);
    }
}

.ts-apply-content-bloc__title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.ts-apply-content--hidden > * {
    display: none !important;
}

.ts-apply-content-subbloc > div > fieldset > legend {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-apply-content-subbloc > div > fieldset > legend:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-apply-content-subbloc > div > fieldset > div {
    font-size: 0;
}

.ts-apply-content-subbloc > div > fieldset > div > * {
    font-size: 14px;
}

.ts-apply-content .ts-generated-field,
.ts-apply-content .MultiCheckBox_UL {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
}

.ts-apply-content .ts-generated-field .counterHelp,
.ts-apply-content .MultiCheckBox_UL .counterHelp,
.ts-apply-content .ts-generated-field .aide,
.ts-apply-content .MultiCheckBox_UL .aide {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}

.ts-apply-content .ts-generated-field .erreur,
.ts-apply-content .MultiCheckBox_UL .erreur {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.ts-apply-content .erreur {
    margin: 5px;
    color: #d11548 !important;
}

.ts-apply-content .erreur > img {
    height: 1px;
}

.ts-apply-content .erreur:after {
    content: attr(data-val-errormessage);
}

.ts-apply-content .ts-application-origin__container .erreur,
.ts-apply-content .ContractClass > .erreur,
.ts-apply-content .BirthDateClass > .erreur,
.ts-apply-content .ts-generated-field__dropdown-nullable ~ .erreur,
.ts-apply-content .ts-generated-field__dropdown-dependent ~ .erreur,
.ts-apply-content .ts-generated-field__text-area ~ .erreur,
.ts-apply-content .ts-generated-field__text-box ~ .erreur {
    display: block;
    margin-top: -1px;
    padding-top: 6px;
    border-top: 1px solid #d11548;
}

.ts-apply-content .ts-personal-links__container {
    margin-bottom: 10px;
}

.ts-apply-content .wizard-buttons-container {
    display: none !important;
}

.ts-apply-content .BRBWebControl > label {
    margin-right: 15px;
}

@media (min-width: 768px) {
    .ts-apply-content .BRBWebControl > label {
        margin-right: 50px;
    }
}

.ts-apply-content-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

@media (max-width: 767px) {
    .ts-apply-content-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .ts-apply-content-buttons .ts-button {
        margin-top: 10px;
    }

    .ts-apply-content-buttons__complete-container {
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }

    .ts-apply-content-buttons__send {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }

    .ts-apply-content-buttons__cancel-container {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
}

@media (min-width: 768px) {
    .ts-apply-content-buttons__complete-container .ts-button,
    .ts-apply-content-buttons__cancel-container .ts-button {
        margin-right: 15px;
    }
}

.ts-apply-content-condition {
    width: 100%;
}

.ts-parse-resume {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.ts-parse-resume__lbl-mandatory {
    font-size: 12px;
    font-style: italic;
    display: block;
    width: 100%;
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
}

.ts-parse-resume-offer {
    font-size: 24px;
    font-weight: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px /* PANEL:padding */;
    text-transform: uppercase;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
}

.ts-parse-resume-offer br,
.ts-parse-resume-offer hr {
    display: none;
}

.ts-parse-resume-offer__lead {
    font-weight: 700;
}

.ts-parse-resume-offer__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-parse-resume-offer p {
    line-height: 1.2;
}

.ts-parse-resume-offer p + p {
    margin-top: 15px;
}

.ts-parse-resume-offer__title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    text-transform: initial;
    color: #333;
}

.ts-parse-resume__txt {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}

.ts-parse-resume-import {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
}

.ts-parse-resume-import br,
.ts-parse-resume-import hr {
    display: none;
}

.ts-parse-resume-import__lead {
    font-weight: 700;
}

.ts-parse-resume-import__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-parse-resume-import p {
    line-height: 1.2;
}

.ts-parse-resume-import p + p {
    margin-top: 15px;
}

@media (min-width: 992px) {
    .ts-parse-resume-import {
        width: calc(50% - 9px);
    }
}

.ts-parse-resume-import > fieldset > legend {
    font-size: 24px;
    font-weight: 200;
    display: block;
    width: 100%;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.ts-parse-resume-import__txt {
    display: block;
    margin-bottom: 30px;
}

.ts-parse-resume-import .ts-social-btn {
    margin-bottom: 5px;
}

.ts-parse-resume__note {
    font-size: 12px;
    font-style: italic;
    display: block;
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
}

.ts-parse-resume .ts-entity-tree {
    width: 100%;
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.ts-parse-resume-edit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
}

.ts-parse-resume-edit br,
.ts-parse-resume-edit hr {
    display: none;
}

.ts-parse-resume-edit__lead {
    font-weight: 700;
}

.ts-parse-resume-edit__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-parse-resume-edit p {
    line-height: 1.2;
}

.ts-parse-resume-edit p + p {
    margin-top: 15px;
}

@media (min-width: 992px) {
    .ts-parse-resume-edit {
        width: calc(50% - 9px);
    }
}

.ts-parse-resume-edit > fieldset > legend {
    font-size: 24px;
    font-weight: 200;
    display: block;
    width: 100%;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.ts-parse-resume-edit .ts-select-attached-file {
    margin-bottom: 30px;
}

.ts-parse-resume-buttons {
    display: block;
    width: 100%;
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
}

.ts-parse-resume-buttons > table > tbody > tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

@media (max-width: 767px) {
    .ts-parse-resume-buttons > table > tbody > tr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .ts-parse-resume-buttons > table > tbody > tr td[align='right'] {
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }

    .ts-parse-resume-buttons > table > tbody > tr td[align='left'] {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
}

@media (min-width: 768px) {
    .ts-parse-resume-buttons > table > tbody > tr {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.ts-parse-resume-buttons .ts-button--cancel {
    margin: 10px 0 0;
}

@media (min-width: 768px) {
    .ts-parse-resume-buttons .ts-button--cancel {
        margin: 0 15px 0 0;
    }
}

.ts-parse-resume hr {
    display: none;
}

.ts-my-space-panel-title {
    font-size: 0;
}

.ts-my-space-panel {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

@media (min-width: 768px) {
    .ts-my-space-panel {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.ts-my-space-panel:hover {
    -webkit-box-shadow: 0 0 0 1px #ff5600;
            box-shadow: 0 0 0 1px #ff5600;
}

.ts-my-space-panel__object {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 221px;
    border-radius: 5px 5px 0 0;
    background-color: #ff5600;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

@media (min-width: 768px) {
    .ts-my-space-panel__object {
        width: 227px;
        border-radius: 5px 0 0 5px;
    }
}

.ts-my-space-panel__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 30px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}

@media (min-width: 768px) {
    .ts-my-space-panel__content {
        width: calc(100% - 227px);
    }
}

.ts-my-space-panel__content:before,
.ts-my-space-panel__content:after,
.ts-my-space-panel__content > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ts-my-space-panel__content:before {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    content: attr(data-title);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.ts-my-space-panel__content:after {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 12px;
    content: attr(data-subtitle);
    text-transform: uppercase;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}

.ts-my-space-panel__content > span {
    line-height: 1.3;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
}

.ts-my-space-panel__link {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ts-my-space-panel__image {
    display: none;
}

.ts-my-space-panel-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-space-panel-icons__big {
    position: relative;
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ts-my-space-panel-icons__big--applicant {
    background-image: url('../../Images/ModernTime/MySpace/applicant-profil.svg');
}

.ts-my-space-panel-icons__big--applicant .ts-my-space-panel-icons__small {
    right: 5px;
    bottom: -15px;
}

.ts-my-space-panel-icons__big--application {
    background-image: url('../../Images/ModernTime/MySpace/application.svg');
}

.ts-my-space-panel-icons__big--application .ts-my-space-panel-icons__small {
    right: 5px;
    bottom: -15px;
}

.ts-my-space-panel-icons__big--message {
    background-image: url('../../Images/ModernTime/MySpace/messages.svg');
}

.ts-my-space-panel-icons__big--message .ts-my-space-panel-icons__small {
    bottom: -20px;
}

.ts-my-space-panel-icons__big--document {
    width: 140px;
    height: 140px;
    background-image: url('../../Images/ModernTime/MySpace/documents.svg');
}

.ts-my-space-panel-icons__big--document .ts-my-space-panel-icons__small {
    right: 10px;
    bottom: -10px;
}

.ts-my-space-panel-icons__big--personal-link {
    background-image: url('../../Images/ModernTime/MySpace/personnal-links.svg');
}

.ts-my-space-panel-icons__big--personal-link .ts-my-space-panel-icons__small {
    right: -10px;
    bottom: -20px;
}

.ts-my-space-panel-icons__big--test {
    background-image: url('../../Images/ModernTime/MySpace/tests.svg');
}

.ts-my-space-panel-icons__big--test .ts-my-space-panel-icons__small {
    right: -5px;
    bottom: -10px;
}

.ts-my-space-panel-icons__big--alert {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
    background-image: url('../../Images/ModernTime/MySpace/alert.svg');
}

.ts-my-space-panel-icons__big--alert .ts-my-space-panel-icons__small {
    right: 30px;
    bottom: -10px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
}

.ts-my-space-panel-icons__big--reffer {
    width: 190px;
    height: 190px;
    background-image: url('../../Images/ModernTime/MySpace/reffer.svg');
}

.ts-my-space-panel-icons__big--reffer .ts-my-space-panel-icons__small {
    right: 45px;
    bottom: 25px;
}

.ts-my-space-panel-icons__big--login {
    background-image: url('../../Images/ModernTime/MySpace/login.svg');
}

.ts-my-space-panel-icons__big--account {
    width: 150px;
    height: 150px;
    background-image: url('../../Images/ModernTime/MySpace/account.svg');
}

.ts-my-space-panel-icons__big--account .ts-my-space-panel-icons__small {
    right: 15px;
    bottom: 0;
}

.ts-my-space-panel-icons__big--personal-data {
    background-image: url('../../Images/ModernTime/MySpace/personnal-data.svg');
}

.ts-my-space-panel-icons__small {
    position: absolute;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 48px;
    height: 48px;
    border: 5px solid #ff5600;
    border-radius: 100px;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-space-panel-icons__small--edit:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e952';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-space-panel-icons__small--send:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e984';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-space-panel-icons__small--show:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e988';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-space-panel-icons__small--plus:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e92d';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-space-panel-icons__small--blocked:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e934';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-space-panel-icons__small--undo:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e99b';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-space-panel-icons__small--download:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 30px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e950';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-space-panel-icons__small--delete:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: #ff5600;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e94d';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-space-page__content {
    display: block;
    margin-bottom: -20px;
}

.ts-my-space-page__content > tbody {
    display: block;
}

.ts-accessibility kbd {
    font-family: monospace, 'Roboto Condensed';
    font-size: 12px;
    display: inline-block;
    padding: 2px 6px;
    border: 1px solid #aaa;
    border-radius: 3px;
    background-color: #f3f2ef;
    -webkit-box-shadow: 0 1px 0 #d1d3d5, 0 0 0 2px #fff inset;
            box-shadow: 0 1px 0 #d1d3d5, 0 0 0 2px #fff inset;
    text-shadow: 0 1px 0 #fff;
}

.ts-accessibility hr {
    display: none;
}

.ts-accessibility ul {
    margin-bottom: 15px;
}

.ts-accessibility ul li {
    margin-bottom: 5px;
}

.ts-accessibility ul li:last-child {
    margin-bottom: 0;
}

.ts-accessibility h2 {
    margin-top: 45px;
}

.ts-accessibility h3 {
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 10px;
}

.ts-accessibility p {
    display: block;
    margin-bottom: 5px;
}

.ts-accessibility-access-key li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-accessibility-access-key li span {
    margin-right: 5px;
}

.ts-accessibility-key-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
}

.ts-accessibility-key-tab br,
.ts-accessibility-key-tab hr {
    display: none;
}

.ts-accessibility-key-tab__lead {
    font-weight: 700;
}

.ts-accessibility-key-tab__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-accessibility-key-tab p {
    line-height: 1.2;
}

.ts-accessibility-key-tab p + p {
    margin-top: 15px;
}

.ts-accessibility-key-tab > table {
    display: block;
    margin-bottom: 30px;
}

.ts-accessibility-key-tab > table > caption {
    font-size: 22px;
    font-weight: 200;
    display: block;
    margin-bottom: 30px;
    text-align: left;
    text-transform: uppercase;
}

.ts-accessibility-key-tab > table > thead {
    display: none;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .ts-accessibility-key-tab > table > thead {
        display: block;
    }
}

.ts-accessibility-key-tab > table > thead > tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ts-accessibility-key-tab > table > thead > tr > th {
    font-weight: bold;
    display: block;
    text-align: left;
}

.ts-accessibility-key-tab > table > tbody {
    display: block;
}

.ts-accessibility-key-tab > table > tbody > tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .ts-accessibility-key-tab > table > tbody > tr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-bottom: 15px;
    }
}

.ts-accessibility-key-tab > table > tbody > tr > td {
    display: block;
}

@media (min-width: 768px) {
    .ts-accessibility-key-tab > table > tbody > tr > td {
        width: 50%;
    }
}

.ts-accessibility-key-tab > table > tbody > tr > td kbd {
    margin: 0 2px;
}

.ts-accessibility-key-tab > table > tbody > tr:last-child {
    margin-top: 15px;
}

.ts-accessibility-key-tab > table > tbody > tr:last-child > td {
    width: 100%;
}

.ts-accessibility-key-tab > p {
    font-size: 12px;
    font-style: italic;
}

.ts-accessibility-zoom {
    border: 0 !important;
}

.ts-accessibility-list {
    padding: 0 30px;
    list-style: disc;
}

.ts-accessibility-list__container ul {
    padding: 0 30px;
    list-style: disc;
}

.ts-accessibility__br {
    display: block;
    width: 1px;
    height: 5px;
    content: '';
}

.ts-cookies hr {
    display: none;
}

.ts-cookies__txt {
    display: block;
    margin-bottom: 30px;
}

.ts-cookies__sub-title {
    font-weight: bold;
    display: block;
}

.ts-cookies-list {
    padding: 0 30px;
    list-style: disc;
}

.ts-site-map .ts-site-map-tree__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-site-map .ts-site-map-tree__title > a {
    font-size: 14px;
    font-style: normal;
    color: #120949;
}

.ts-site-map .ts-site-map-tree__title + ul {
    padding-left: 30px;
}

.ts-site-map .ts-site-map-leaf__title {
    font-size: 14px;
    font-style: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: initial;
    padding: 5px;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-site-map .ts-site-map-leaf__title > a {
    font-size: 14px;
    font-style: normal;
    color: #120949;
}

.ts-download-my-data-page {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff /* PANEL:default-bg */;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
}

.ts-download-my-data-page br,
.ts-download-my-data-page hr {
    display: none;
}

.ts-download-my-data-page__lead {
    font-weight: 700;
}

.ts-download-my-data-page__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-download-my-data-page p {
    line-height: 1.2;
}

.ts-download-my-data-page p + p {
    margin-top: 15px;
}

.ts-download-my-data-page.is-form-visible {
    margin-top: 56px;
}

.ts-download-my-data-page .ts-mandatory-field {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 10px;
}

.ts-download-my-data-page .ts-lead-text {
    font-size: inherit;
    font-weight: 400;
    font-style: inherit;
    margin-bottom: 10px;
}

.ts-download-my-data-page .ts-form__label {
    font-size: inherit;
    font-style: inherit;
    display: block;
    margin-bottom: 5px;
}

.ts-download-my-data-page .ts-form__validator {
    display: none;
}

.ts-download-my-data-page__cta {
    margin-top: 20px;
}

.ts-list-application__list-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 8px;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
}

.ts-list-application__list-item br,
.ts-list-application__list-item hr {
    display: none;
}

.ts-list-application__list-item__lead {
    font-weight: 700;
}

.ts-list-application__list-item__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-list-application__list-item p {
    line-height: 1.2;
}

.ts-list-application__list-item p + p {
    margin-top: 15px;
}

.ts-list-application__list-item:last-child {
    margin: 0;
}

.ts-list-application-app__title {
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
}

.ts-list-application-app__title-lnk {
    font-size: 24px;
    text-transform: uppercase;
    color: #120949;
}

.ts-list-application-app__lnk {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-flex-item-align: end;
        align-self: flex-end;
}

.ts-list-application-app__lnk--activate {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    color: #fff /* BUTTON:primary-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border-color: #ff5600 /* BUTTON:primary-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    background-color: #ff5600 /* BUTTON:primary-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-list-application-app__lnk--activate {
        width: 100%;
    }
}

.ts-list-application-app__lnk--activate__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-list-application-app__lnk--activate.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-list-application-app__lnk--activate:focus,
.ts-list-application-app__lnk--activate:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-list-application-app__lnk--activate:focus,
.ts-list-application-app__lnk--activate:hover {
    color: #ff5600 /* BUTTON:primary-hover-color */;
    background-color: transparent /* BUTTON:primary-hover-bg */;
}

.ts-list-application-app__lnk--deactivate {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-list-application-app__lnk--deactivate {
        width: 100%;
    }
}

.ts-list-application-app__lnk--deactivate__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-list-application-app__lnk--deactivate.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-list-application-app__lnk--deactivate:focus,
.ts-list-application-app__lnk--deactivate:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-list-application-app__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.ts-list-application-app__list-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
    word-wrap: break-word;
    word-break: break-all;
}

@media (max-width: 767px) {
    .ts-list-application-app__list-item {
        padding-left: 32px;
    }
}

@media (min-width: 768px) {
    .ts-list-application-app__list-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin-bottom: 5px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}

.ts-list-application-app__list-item:before {
    color: #d1d3d5;
}

@media (max-width: 767px) {
    .ts-list-application-app__list-item:before {
        position: absolute;
        top: -3px;
        left: 0;
    }
}

@media (min-width: 768px) {
    .ts-list-application-app__list-item:before {
        margin-right: 15px;
    }
}

.ts-list-application-app__list-item--status:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e949';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-list-application-app__list-item--date:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e93f';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-list-application-app__list-item--contract:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e91a';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-list-application-app__list-item--entity:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e91e';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-list-application-app__list-item--location:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e960';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-list-application-app__list-item--attached-files {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

@media (min-width: 768px) {
    .ts-list-application-app__list-item--attached-files {
        width: calc(50% - 9px);
    }
}

.ts-list-application-app__lbl {
    word-wrap: break-word;
    word-break: break-all;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

@media (max-width: 767px) {
    .ts-list-application-app__lbl {
        font-weight: bold;
    }
}

@media (min-width: 768px) {
    .ts-list-application-app__lbl {
        width: 200px;
        padding: 0;
    }
}

.ts-list-application-app-attachement {
    font-size: 12px;
    font-style: italic;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: block;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    min-height: 55px;
    padding: 30px /* PANEL:padding */;
    padding: 10px 15px;
    padding-left: 60px;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #aaa;
    border-radius: 5px /* PANEL:border-radius */;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
}

.ts-list-application-app-attachement br,
.ts-list-application-app-attachement hr {
    display: none;
}

.ts-list-application-app-attachement__lead {
    font-weight: 700;
}

.ts-list-application-app-attachement__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-list-application-app-attachement p {
    line-height: 1.2;
}

.ts-list-application-app-attachement p + p {
    margin-top: 15px;
}

.ts-list-application-app-attachement:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 35px;
    height: 35px;
    content: '\e988';
    text-transform: none;
    color: #124d72;
    border: 1px solid #124d72;
    border-radius: 5px;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.ts-list-application-app-attachement:hover:before {
    color: #fff;
    background-color: #124d72;
}

.ts-list-application-app-attachement__lbl {
    font-size: 14px;
    font-style: normal;
    display: block;
    overflow: hidden;
    margin-right: 10px;
    margin-left: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #120949;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-list-application-app-attachement__img {
    position: absolute;
    width: .1px;
    height: .1px;
}

.ts-legal-information-page {
    word-wrap: break-word;
    word-break: break-word;
}

.ts-legal-information-page > * {
    margin-bottom: 30px;
}

.ts-legal-information-page > *:last-child {
    margin-bottom: 0;
}

.ts-legal-information-page h2 {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-top: 45px;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-legal-information-page h2:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-legal-information-page h2:first-child {
    margin-top: 0;
}

.ts-legal-information-page h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.ts-legal-information-page ul {
    list-style: disc;
}

.ts-legal-information-page ol {
    list-style: decimal;
}

.ts-legal-information-page ul,
.ts-legal-information-page ol {
    padding: 0 30px;
}

.ts-legal-information-page strong {
    font-weight: bold;
}

.ts-legal-information-page i {
    font-style: italic;
}

.ts-legal-information-page br {
    display: block;
    margin-bottom: 0;
}

.ts-legal-information-page a {
    color: #ff5600;
}

.ts-legal-information-page img {
    max-width: 100%;
    height: auto;
}

.ts-legal-information-page pre {
    white-space: normal;
}

.ts-email-validation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
}

.ts-email-validation br,
.ts-email-validation hr {
    display: none;
}

.ts-email-validation__lead {
    font-weight: 700;
}

.ts-email-validation__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-email-validation p {
    line-height: 1.2;
}

.ts-email-validation p + p {
    margin-top: 15px;
}

.ts-email-validation__button {
    margin-top: 30px;
    -ms-flex-item-align: center;
        align-self: center;
}

.ts-my-messages__label {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-messages__label:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    margin-right: 10px;
    content: '\e919';
    text-transform: none;
    color: #124d72;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-messages-table {
    display: block;
}

.ts-my-messages-table > caption {
    font-size: 0;
}

.ts-my-messages-table > tbody {
    display: block;
}

.ts-my-messages-table > tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-messages-table > tbody tr:first-child {
    font-size: 0;
    height: 0;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: 0 0 0 0;
            box-shadow: 0 0 0 0;
}

.ts-my-messages-table > tbody tr > td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-messages-table__img-column {
    display: block;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-my-messages-table__img-column img {
    position: absolute;
    width: .1px;
    height: .1px;
}

.ts-my-messages-table__img-column--not-read:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e964';
    text-transform: none;
    color: #120949;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-messages-table__img-column--read:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e964';
    text-transform: none;
    color: #d1d3d5;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-messages-table__link-column {
    font-weight: bold;
    width: 1px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
}

.ts-my-messages-table__link-column > a {
    font-size: 16px;
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #ff5600;
}

.ts-my-messages-table__attached-column {
    width: 35px;
    height: 35px;
    margin: 0 10px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

@media (max-width: 767px) {
    .ts-my-messages-table__attached-column {
        display: none !important;
    }
}

.ts-my-messages-table__attached-column img {
    position: absolute;
    width: .1px;
    height: .1px;
}

.ts-my-messages-table__attached-column--full:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e90b';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-messages-table__vacancy-column {
    line-height: 26px;
    position: relative;
    display: block !important;
    overflow: hidden;
    width: 225px;
    height: 26px;
    margin-right: 20px;
    padding-left: 53px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

@media (max-width: 767px) {
    .ts-my-messages-table__vacancy-column {
        display: none !important;
    }
}

.ts-my-messages-table__vacancy-column:before {
    position: absolute;
    left: 0;
    width: 2px;
    height: 26px;
    content: '';
    background-color: #e1e3e5;
}

.ts-my-messages-table__vacancy-column:after {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    position: absolute;
    top: 1px;
    left: 20px;
    content: '\e91a';
    text-transform: none;
    color: #d1d3d5;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-messages-table__date-column {
    color: #aaa;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

@media (max-width: 767px) {
    .ts-my-messages-table__date-column {
        display: none !important;
    }
}

.ts-my-messages-table__date-column:before {
    width: 2px;
    height: 26px;
    margin-right: 20px;
    content: '';
    background-color: #e1e3e5;
}

.ts-my-msg-detail h2 {
    margin-top: 45px;
}

.ts-my-msg-detail-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -25px;
    margin-bottom: 22px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-msg-detail-navigation img {
    position: absolute;
    width: .1px;
    height: .1px;
}

.ts-my-msg-detail-navigation-left {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
}

.ts-my-msg-detail-navigation-left > a {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    color: #fff /* BUTTON:primary-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border-color: #ff5600 /* BUTTON:primary-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    background-color: #ff5600 /* BUTTON:primary-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-my-msg-detail-navigation-left > a {
        width: 100%;
    }
}

.ts-my-msg-detail-navigation-left > a__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-my-msg-detail-navigation-left > a.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-my-msg-detail-navigation-left > a:focus,
.ts-my-msg-detail-navigation-left > a:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-my-msg-detail-navigation-left > a:focus,
.ts-my-msg-detail-navigation-left > a:hover {
    color: #ff5600 /* BUTTON:primary-hover-color */;
    background-color: transparent /* BUTTON:primary-hover-bg */;
}

@media (max-width: 767px) {
    .ts-my-msg-detail-navigation-left > a {
        width: 35px;
        min-width: inherit;
    }
}

.ts-my-msg-detail-navigation-left > a:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e959';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
    .ts-my-msg-detail-navigation-left > a:before {
        margin-right: 10px;
    }
}

.ts-my-msg-detail-navigation-left > a:after {
    content: attr(title);
}

@media (max-width: 767px) {
    .ts-my-msg-detail-navigation-left > a:after {
        display: none !important;
    }
}

.ts-my-msg-detail-navigation-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-msg-detail-navigation-right__prev > a:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e959';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-msg-detail-navigation-right__next > a:after {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e980';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-msg-detail-origin {
    margin-bottom: 30px;
}

.ts-my-msg-detail-origin br {
    display: block;
}

.ts-my-msg-detail-origin__copy,
.ts-my-msg-detail-origin__from {
    font-weight: bold;
    display: inline-block;
    width: 75px;
}

.ts-my-msg-detail-attached {
    margin-bottom: 25px;
}

.ts-my-msg-detail-attached__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.ts-my-msg-detail-attached__list-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(50% - 9px);
    height: 50px;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-msg-detail-attached__link {
    margin-right: 10px;
}

.ts-my-msg-detail-attached__link:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e906';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-msg-detail-attached__link:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
}

.ts-my-msg-detail-attached__img {
    position: absolute;
    width: .1px;
    height: .1px;
}

.ts-my-msg-detail-attached__text {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ts-my-msg-detail-content {
    word-wrap: break-word;
    word-break: break-word;
}

.ts-my-msg-detail-content > * {
    margin-bottom: 30px;
}

.ts-my-msg-detail-content > *:last-child {
    margin-bottom: 0;
}

.ts-my-msg-detail-content h2 {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-top: 45px;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-msg-detail-content h2:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-my-msg-detail-content h2:first-child {
    margin-top: 0;
}

.ts-my-msg-detail-content h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.ts-my-msg-detail-content ul {
    list-style: disc;
}

.ts-my-msg-detail-content ol {
    list-style: decimal;
}

.ts-my-msg-detail-content ul,
.ts-my-msg-detail-content ol {
    padding: 0 30px;
}

.ts-my-msg-detail-content strong {
    font-weight: bold;
}

.ts-my-msg-detail-content i {
    font-style: italic;
}

.ts-my-msg-detail-content br {
    display: block;
    margin-bottom: 0;
}

.ts-my-msg-detail-content a {
    color: #ff5600;
}

.ts-my-msg-detail-content img {
    max-width: 100%;
    height: auto;
}

.ts-my-msg-detail-content pre {
    white-space: normal;
}

.ts-my-msg-detail-content-header {
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.ts-my-msg-detail-content-header__date {
    width: 100%;
}

.ts-my-msg-detail-content-header__object,
.ts-my-msg-detail-content-header__subject {
    font-size: 16px;
}

.my-attatchments-page .ts-bloc-attached-files > fieldset > legend {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    border-radius: 0;
    background: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.my-attatchments-page .ts-bloc-attached-files > fieldset > legend:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

@media (min-width: 992px) {
    .my-attatchments-page .ts-bloc-attached-files .formulaire-pj {
        max-width: 50%;
    }
}

.my-attatchments-page .ts-static-upload {
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
}

.my-attatchments-page .ts-static-upload:last-child {
    margin-bottom: 0;
}

.ts-information-page {
    position: relative;
}

.ts-information-page__title {
    margin-bottom: 0 !important;
}

@media (max-width: 767px) {
    .ts-information-page__toolbar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}

@media (min-width: 768px) {
    .ts-information-page__toolbar {
        position: absolute;
        top: 3px;
        right: 0;
    }
}

.ts-information-page__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.ts-information-page__content {
    margin-top: 30px;
    word-wrap: break-word;
    word-break: break-word;
    color: inherit;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.ts-information-page__content > * {
    margin-bottom: 30px;
}

.ts-information-page__content > *:last-child {
    margin-bottom: 0;
}

.ts-information-page__content h2 {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-top: 45px;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-information-page__content h2:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-information-page__content h2:first-child {
    margin-top: 0;
}

.ts-information-page__content h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.ts-information-page__content ul {
    list-style: disc;
}

.ts-information-page__content ol {
    list-style: decimal;
}

.ts-information-page__content ul,
.ts-information-page__content ol {
    padding: 0 30px;
}

.ts-information-page__content strong {
    font-weight: bold;
}

.ts-information-page__content i {
    font-style: italic;
}

.ts-information-page__content br {
    display: block;
    margin-bottom: 0;
}

.ts-information-page__content a {
    color: #ff5600;
}

.ts-information-page__content img {
    max-width: 100%;
    height: auto;
}

.ts-information-page__content pre {
    white-space: normal;
}

.ts-information-page__content h3 {
    color: inherit;
}

.ts-information-page__back-to {
    padding: 4.5px 0;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
}

.ts-information-page__back-to > a {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    color: #fff /* BUTTON:primary-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border-color: #ff5600 /* BUTTON:primary-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    background-color: #ff5600 /* BUTTON:primary-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-information-page__back-to > a {
        width: 100%;
    }
}

.ts-information-page__back-to > a__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-information-page__back-to > a.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-information-page__back-to > a:focus,
.ts-information-page__back-to > a:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-information-page__back-to > a:focus,
.ts-information-page__back-to > a:hover {
    color: #ff5600 /* BUTTON:primary-hover-color */;
    background-color: transparent /* BUTTON:primary-hover-bg */;
}

.ts-information-page__back-to > a:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    margin-right: 10px;
    content: '\e959';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-information-page__offer-list {
    margin-top: 45px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}

.ts-information-page__see-more-offers {
    margin-top: 15px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
}

.ts-information-page__see-more-offers a {
    color: #ff5600;
}

.ts-information-page__see-more-offers a:hover {
    text-decoration: underline;
}

.ts-coop-step1-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
}

.ts-coop-step1-panel br,
.ts-coop-step1-panel hr {
    display: none;
}

.ts-coop-step1-panel__lead {
    font-weight: 700;
}

.ts-coop-step1-panel__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-coop-step1-panel p {
    line-height: 1.2;
}

.ts-coop-step1-panel p + p {
    margin-top: 15px;
}

@media (min-width: 992px) {
    .ts-coop-step1-panel {
        width: calc(50% - 8px);
    }
}

.ts-coop-step1-panel--first {
    position: relative;
    margin-top: 60px;
}

.ts-coop-step1-panel--first:before {
    font-size: 12px;
    font-style: italic;
    position: absolute;
    top: -30px;
    left: 20;
    display: block;
    content: '*';
}

.ts-coop-step1-panel--first:after {
    font-size: 12px;
    font-style: italic;
    position: absolute;
    top: -30px;
    left: 38px;
    display: block;
    content: attr(data-val-lbl-mandatory);
}

.ts-coop-step1-panel > fieldset > legend {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-coop-step1-panel > fieldset > legend:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-coop-step1-panel-field {
    display: block;
    margin-bottom: 30px;
}

.ts-coop-step1-panel-field--last {
    margin-bottom: 0;
}

.ts-coop-step1-panel-field--error:after {
    font-size: 12px;
    font-style: italic;
    display: block;
    margin: 0 5px;
    margin-top: -1px;
    padding-top: 6px;
    content: attr(data-val-error-msg);
    color: #d11548;
    border-top: 1px solid #d11548;
}

.ts-coop-step1-panel-field__title {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.ts-coop-step1-panel-field__title:after {
    content: ' *';
}

.ts-coop-step1-panel-field__img {
    position: absolute;
    width: .1px;
    height: .1px;
}

.ts-coop-step1-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .ts-coop-step1-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }

    .ts-coop-step1-buttons div:first-child {
        margin-top: 10px;
    }
}

@media (min-width: 768px) {
    .ts-coop-step1-buttons {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}

@media (min-width: 768px) {
    .ts-coop-step1-buttons__content--cancel {
        margin-right: 15px;
    }
}

.ts-coop-step1-buttons__cancel {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border: 1px solid #f3f2ef /* BUTTON:cancel-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    background-color: transparent /* BUTTON:cancel-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-coop-step1-buttons__cancel {
        width: 100%;
    }
}

.ts-coop-step1-buttons__cancel__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-coop-step1-buttons__cancel.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-coop-step1-buttons__cancel:focus,
.ts-coop-step1-buttons__cancel:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-coop-step1-buttons__cancel:focus,
.ts-coop-step1-buttons__cancel:hover {
    background-color: #f3f2ef /* BUTTON:cancel-hover-bg */;
}

.ts-coop-step1-buttons__next {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    color: #fff /* BUTTON:primary-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border-color: #ff5600 /* BUTTON:primary-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    background-color: #ff5600 /* BUTTON:primary-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-coop-step1-buttons__next {
        width: 100%;
    }
}

.ts-coop-step1-buttons__next__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-coop-step1-buttons__next.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-coop-step1-buttons__next:focus,
.ts-coop-step1-buttons__next:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-coop-step1-buttons__next:focus,
.ts-coop-step1-buttons__next:hover {
    color: #ff5600 /* BUTTON:primary-hover-color */;
    background-color: transparent /* BUTTON:primary-hover-bg */;
}

.ts-coop-step2__content > fieldset > legend {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-coop-step2__content > fieldset > legend:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-coop-step2-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
}

.ts-coop-step2-panel br,
.ts-coop-step2-panel hr {
    display: none;
}

.ts-coop-step2-panel__lead {
    font-weight: 700;
}

.ts-coop-step2-panel__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-coop-step2-panel p {
    line-height: 1.2;
}

.ts-coop-step2-panel p + p {
    margin-top: 15px;
}

.ts-coop-step2-panel__rb {
    margin-left: 0 !important;
}

.ts-coop-step2-panel__rb > input {
    position: absolute;
    display: block;
    width: .1px;
    height: .1px;
    opacity: 0;
}

.ts-coop-step2-panel__rb > label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-coop-step2-panel__rb > label:before {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    content: '';
    border: 1px solid #979797;
    border-radius: 100px;
    background-color: #fff;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-coop-step2-panel__rb > input:checked + label:before {
    border: 5px solid #ff5600;
}

.ts-coop-step2-panel-pagination__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    margin-bottom: 5px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (max-width: 767px) {
    .ts-coop-step2-panel-pagination__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin: 15px 0;
    }
}

.ts-coop-step2-panel-pagination__results {
    font-size: 12px;
    margin: 0 0 15px;
    color: #aaa;
}

@media (min-width: 768px) {
    .ts-coop-step2-panel-pagination__results {
        margin: 0 10px 0 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }
}

.ts-coop-step2-panel-pagination__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-coop-step2-panel-pagination__content li:first-child {
    border-radius: 5px 0 0 5px;
}

.ts-coop-step2-panel-pagination__content li:last-child {
    border-right: 1px solid #e3e3e3;
    border-radius: 0 5px 5px 0;
}

.ts-coop-step2-panel-pagination__previous,
.ts-coop-step2-panel-pagination__page,
.ts-coop-step2-panel-pagination__next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 26px;
    height: 26px;
    border: 1px solid #e3e3e3;
    border-right: 0;
    background-color: #fff;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-coop-step2-panel-pagination__previous > *,
.ts-coop-step2-panel-pagination__page > *,
.ts-coop-step2-panel-pagination__next > * {
    width: 100%;
    height: 100%;
    padding: 5px;
}

.ts-coop-step2-panel-pagination__next__link,
.ts-coop-step2-panel-pagination__previous__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-coop-step2-panel-pagination__next__link:before,
.ts-coop-step2-panel-pagination__previous__link:before {
    color: #ff5600;
}

.ts-coop-step2-panel-pagination__next__link:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e980';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-coop-step2-panel-pagination__previous__link:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e959';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-coop-step2-panel-pagination__page__label,
.ts-coop-step2-panel-pagination__page__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #ff5600;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-coop-step2-panel-pagination__page__label {
    color: #fff;
}

.ts-coop-step2-panel-pagination__page--current {
    border: 1px solid #fff;
    border-right: 1px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
    background-color: #ff5600;
}

.ts-coop-step2-panel-pagination__page--next-active,
.ts-coop-step2-panel-pagination__page--previous-active {
    position: relative;
}

.ts-coop-step2-panel-pagination__page--next-active:before,
.ts-coop-step2-panel-pagination__page--previous-active:before {
    position: absolute;
    top: -1px;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 26px;
    height: 26px;
    padding: 5px;
    content: '...';
    text-align: center;
    color: #ff5600;
    border: 1px solid #e3e3e3;
    border-right: 0;
    background-color: #fff;
}

.ts-coop-step2-panel-pagination__page--next-active {
    margin-right: 26px;
}

.ts-coop-step2-panel-pagination__page--next-active:before {
    right: -26px;
}

.ts-coop-step2-panel-pagination__page--previous-active {
    margin-left: 26px;
}

.ts-coop-step2-panel-pagination__page--previous-active:before {
    left: -27px;
}

.ts-coop-step2-panel-pagination__page--other {
    display: none;
}

.ts-coop-step2-panel-pagination__img {
    position: absolute;
    width: .1px;
    height: .1px;
}

.ts-coop-step2-panel-offers {
    width: 100%;
}

.ts-coop-step2-panel-offers__title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.ts-coop-step2-panel-offers__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: -4px 0;
}

.ts-coop-step2-panel-offers-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    margin: 4px 0;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-coop-step2-panel-offers-item > input {
    display: block;
    margin: 0;
    margin-right: 10px;
}

.ts-coop-step2-panel-offers-item__title-container {
    display: block;
    overflow: hidden;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

@media (min-width: 768px) {
    .ts-coop-step2-panel-offers-item__title-container {
        width: 300px;
        max-height: 40px;
    }
}

.ts-coop-step2-panel-offers-item__title-link {
    font-size: 16px;
    font-weight: bold;
    color: #120949;
}

.ts-coop-step2-panel-offers-item__description {
    line-height: 1;
    display: none;
    overflow: hidden;
    max-height: 42px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

@media (min-width: 768px) {
    .ts-coop-step2-panel-offers-item__description {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.ts-coop-step2-panel-offers-item__description li {
    margin-right: 10px;
    padding-left: 10px;
    border-left: 2px solid #e1e3e5;
}

.ts-coop-step2-panel-offers-item__third-line {
    font-size: 13px;
    font-weight: 200;
    line-height: 1;
    overflow: hidden;
    width: 100px;
    height: 26px;
    margin-left: auto;
    padding-left: 15px;
    color: #aaa;
    border-left: 2px solid #e1e3e5;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

@media (max-width: 767px) {
    .ts-coop-step2-panel-offers-item__third-line {
        display: none;
    }
}

.ts-coop-step2-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .ts-coop-step2-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}

@media (min-width: 768px) {
    .ts-coop-step2-buttons {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}

.ts-coop-step2-buttons__cancel {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border: 1px solid #f3f2ef /* BUTTON:cancel-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    background-color: transparent /* BUTTON:cancel-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-coop-step2-buttons__cancel {
        width: 100%;
    }
}

.ts-coop-step2-buttons__cancel__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-coop-step2-buttons__cancel.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-coop-step2-buttons__cancel:focus,
.ts-coop-step2-buttons__cancel:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-coop-step2-buttons__cancel:focus,
.ts-coop-step2-buttons__cancel:hover {
    background-color: #f3f2ef /* BUTTON:cancel-hover-bg */;
}

@media (max-width: 767px) {
    .ts-coop-step2-buttons__cancel {
        margin-top: 10px;
    }
}

@media (min-width: 768px) {
    .ts-coop-step2-buttons__cancel {
        margin-right: 15px;
    }
}

.ts-coop-step2-buttons__previous {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-coop-step2-buttons__previous {
        width: 100%;
    }
}

.ts-coop-step2-buttons__previous__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-coop-step2-buttons__previous.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-coop-step2-buttons__previous:focus,
.ts-coop-step2-buttons__previous:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

@media (max-width: 767px) {
    .ts-coop-step2-buttons__previous {
        margin-top: 10px;
    }
}

@media (min-width: 768px) {
    .ts-coop-step2-buttons__previous {
        margin-right: 15px;
    }
}

.ts-coop-step2-buttons__next {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    color: #fff /* BUTTON:primary-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border-color: #ff5600 /* BUTTON:primary-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    background-color: #ff5600 /* BUTTON:primary-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-coop-step2-buttons__next {
        width: 100%;
    }
}

.ts-coop-step2-buttons__next__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-coop-step2-buttons__next.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-coop-step2-buttons__next:focus,
.ts-coop-step2-buttons__next:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-coop-step2-buttons__next:focus,
.ts-coop-step2-buttons__next:hover {
    color: #ff5600 /* BUTTON:primary-hover-color */;
    background-color: transparent /* BUTTON:primary-hover-bg */;
}

.ts-coop-step2__offer-list-container--error:after {
    font-size: 12px;
    font-style: italic;
    display: block;
    margin: 0 5px;
    padding-top: 5px;
    content: attr(data-val-error-message);
    color: #d11548;
}

.ts-coop-step2-error__img {
    position: absolute;
    width: .1px;
    height: .1px;
}

.ts-coop-step3__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.ts-coop-step3-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 42px;
    margin-bottom: 30px;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
}

.ts-coop-step3-panel br,
.ts-coop-step3-panel hr {
    display: none;
}

.ts-coop-step3-panel__lead {
    font-weight: 700;
}

.ts-coop-step3-panel__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-coop-step3-panel p {
    line-height: 1.2;
}

.ts-coop-step3-panel p + p {
    margin-top: 15px;
}

.ts-coop-step3-panel > fieldset > legend,
.ts-coop-step3-panel__title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.ts-coop-step3-panel--offer {
    width: 100%;
    margin-top: 0;
}

.ts-coop-step3-panel--offer .ts-coop-step3-panel__title {
    margin-bottom: 0;
}

.ts-coop-step3-panel--referrer,
.ts-coop-step3-panel--candidate {
    width: 100%;
}

@media (min-width: 992px) {
    .ts-coop-step3-panel--referrer,
    .ts-coop-step3-panel--candidate {
        width: calc(50% - 8px);
    }
}

.ts-coop-step3-panel--referrer {
    position: relative;
}

.ts-coop-step3-panel--referrer:before,
.ts-coop-step3-panel--referrer:after {
    font-size: 12px;
    font-style: italic;
    position: absolute;
    top: -42px;
    display: block;
}

.ts-coop-step3-panel--referrer:before {
    left: 20px;
    content: '*';
}

.ts-coop-step3-panel--referrer:after {
    left: 38px;
    content: attr(data-val-lbl-mandatory);
}

.ts-coop-step3-field__label {
    display: block;
    margin-bottom: 30px;
}

.ts-coop-step3-field__label--last {
    margin-bottom: 0;
}

.ts-coop-step3-field__label--email {
    margin-top: 30px;
}

.ts-coop-step3-field__title {
    display: block;
    margin-bottom: 5px;
}

.ts-coop-step3-field__title::after {
    content: ' *';
}

.ts-coop-step3-field__img {
    position: absolute;
    width: .1px;
    height: .1px;
}

.ts-coop-step3-field__error:before {
    font-size: 12px;
    font-style: italic;
    display: block;
    margin: 0 5px;
    padding: 5px;
    content: attr(data-val-error-message);
    color: #d11548;
}

.ts-coop-step3-field__error--border:before {
    margin-top: -1px;
    padding: 6px;
    border-top: 1px solid #d11548;
}

.ts-coop-step3-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .ts-coop-step3-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}

@media (min-width: 768px) {
    .ts-coop-step3-buttons {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .ts-coop-step3-buttons__container {
        margin-top: 10px;
    }

    .ts-coop-step3-buttons__container:last-child {
        margin: 0;
    }
}

@media (min-width: 768px) {
    .ts-coop-step3-buttons__container {
        margin-right: 15px;
    }

    .ts-coop-step3-buttons__container:last-child {
        margin-right: 0;
    }
}

.ts-coop-step3-buttons__cancel {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border: 1px solid #f3f2ef /* BUTTON:cancel-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    background-color: transparent /* BUTTON:cancel-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-coop-step3-buttons__cancel {
        width: 100%;
    }
}

.ts-coop-step3-buttons__cancel__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-coop-step3-buttons__cancel.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-coop-step3-buttons__cancel:focus,
.ts-coop-step3-buttons__cancel:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-coop-step3-buttons__cancel:focus,
.ts-coop-step3-buttons__cancel:hover {
    background-color: #f3f2ef /* BUTTON:cancel-hover-bg */;
}

.ts-coop-step3-buttons__previous {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-coop-step3-buttons__previous {
        width: 100%;
    }
}

.ts-coop-step3-buttons__previous__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-coop-step3-buttons__previous.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-coop-step3-buttons__previous:focus,
.ts-coop-step3-buttons__previous:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-coop-step3-buttons__next {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    color: #fff /* BUTTON:primary-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border-color: #ff5600 /* BUTTON:primary-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    background-color: #ff5600 /* BUTTON:primary-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-coop-step3-buttons__next {
        width: 100%;
    }
}

.ts-coop-step3-buttons__next__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-coop-step3-buttons__next.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-coop-step3-buttons__next:focus,
.ts-coop-step3-buttons__next:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-coop-step3-buttons__next:focus,
.ts-coop-step3-buttons__next:hover {
    color: #ff5600 /* BUTTON:primary-hover-color */;
    background-color: transparent /* BUTTON:primary-hover-bg */;
}

.ts-coop-step3-success-panel {
    margin-bottom: 30px;
    padding: 0 30px;
}

.ts-coop-step3-success-panel__txt {
    font-weight: bold;
    color: #333;
}

.ts-coop-step3-success-panel__txt br {
    display: block;
}

.ts-coop-step3-success-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.ts-coop-step3-success-buttons__button {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    color: #fff /* BUTTON:primary-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border-color: #ff5600 /* BUTTON:primary-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    background-color: #ff5600 /* BUTTON:primary-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 767px) {
    .ts-coop-step3-success-buttons__button {
        width: 100%;
    }
}

.ts-coop-step3-success-buttons__button__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-coop-step3-success-buttons__button.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-coop-step3-success-buttons__button:focus,
.ts-coop-step3-success-buttons__button:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-coop-step3-success-buttons__button:focus,
.ts-coop-step3-success-buttons__button:hover {
    color: #ff5600 /* BUTTON:primary-hover-color */;
    background-color: transparent /* BUTTON:primary-hover-bg */;
}

form[action*='step1.aspx'] .ts-notification--global ul,
form[action*='step2.aspx'] .ts-notification--global ul,
form[action*='step3.aspx'] .ts-notification--global ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}

.ts-coop-list__container {
    overflow: visible !important;
    height: auto !important;
}

.ts-coop-list__content > fieldset > legend {
    font-size: 0;
}

.ts-coop-list-table {
    display: block;
}

.ts-coop-list-table__header-row,
.ts-coop-list-table__caption {
    font-size: 0;
}

.ts-coop-list-table > tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: -5px;
}

.ts-coop-list-table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 5px;
    padding: 8px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
}

@media (max-width: 767px) {
    .ts-coop-list-table-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}

@media (min-width: 768px) {
    .ts-coop-list-table-row {
        height: 50px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .ts-coop-list-table-row td {
        overflow: hidden;
        padding: 8px 0;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .ts-coop-list-table-row td:not(:last-child) {
        margin-right: 10px;
        padding-right: 12px;
        border-right: 2px solid #e1e3e5;
    }
}

.ts-coop-list-table-row td {
    position: relative;
    padding: 5px 0 0 32px;
}

.ts-coop-list-table-row td:before {
    position: absolute;
    top: 0;
    left: 0;
    color: #d1d3d5;
}

.ts-coop-list-table-row__name {
    font-size: 16px;
    font-weight: bold;
    color: #ff5600;
}

@media (max-width: 767px) {
    .ts-coop-list-table-row__name {
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) {
    .ts-coop-list-table-row__name {
        width: 50%;
    }
}

.ts-coop-list-table-row__name:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 26px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e97a';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
    .ts-coop-list-table-row__date {
        width: 162px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }
}

.ts-coop-list-table-row__date:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e93f';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-coop-list-table-row__status:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e94a';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-alerts .ts-lead-text {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e1e3e5;
}

.ts-my-alerts .ts-email-alert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-alerts .ts-email-alert input {
    width: 18px;
    height: 18px;
}

.ts-my-alerts .TreeView__title {
    display: none;
}

.ts-my-alerts .TreeView > fieldset > div > ul > li > div,
.ts-my-alerts .TreeView > ul > li > div {
    padding: 5px 15px;
}

.ts-my-alerts .TreeView > fieldset > div > ul > li > fieldset > legend + ul,
.ts-my-alerts .TreeView > ul > li > fieldset > legend + ul {
    padding-top: 10px;
}

.ts-my-alerts .TreeView > fieldset > div > ul > li > fieldset > ul,
.ts-my-alerts .TreeView > ul > li > fieldset > ul {
    padding-left: 15px;
}

@media (min-width: 768px) {
    .ts-my-alerts .TreeView > fieldset > div > ul > li > fieldset > ul,
    .ts-my-alerts .TreeView > ul > li > fieldset > ul {
        padding-left: 40px;
    }
}

.ts-my-alerts .TreeView > fieldset > div > ul > li > fieldset > ul > li > div,
.ts-my-alerts .TreeView > ul > li > fieldset > ul > li > div {
    padding: 5px 15px;
}

.ts-my-alerts .TreeView > fieldset > div > ul > li > fieldset > ul > li > fieldset,
.ts-my-alerts .TreeView > ul > li > fieldset > ul > li > fieldset {
    margin: 10px 0 !important;
}

.ts-my-alerts .TreeView > fieldset > div > ul > li > fieldset > ul > li > fieldset > legend + ul,
.ts-my-alerts .TreeView > ul > li > fieldset > ul > li > fieldset > legend + ul {
    padding-top: 5px;
}

.ts-my-alerts .TreeView > fieldset > div > ul > li > fieldset > ul > li > fieldset > legend + ul > li > div,
.ts-my-alerts .TreeView > ul > li > fieldset > ul > li > fieldset > legend + ul > li > div {
    padding: 4px 15px;
}

@media (min-width: 768px) {
    .ts-my-alerts .TreeView > fieldset > div > ul > li > fieldset > ul > li > fieldset > legend + ul > li > div,
    .ts-my-alerts .TreeView > ul > li > fieldset > ul > li > fieldset > legend + ul > li > div {
        padding-right: 38px;
        padding-left: 38px;
    }
}

.ts-my-alerts .TreeView .TreeView-titre {
    margin-bottom: 5px;
}

.ts-my-alerts .TreeView li legend.TreeView-titre {
    position: relative;
    height: 50px;
    margin: 0;
    text-align: inherit;
    border: none;
    border-radius: 5px;
    background: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.celllarge {
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
    position: relative;
    display: block;
    float: inherit;
    margin: 0;
    padding: 15px;
    text-align: inherit;
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.celllarge > span {
    display: block;
    overflow: hidden;
    margin-right: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.celllarge input {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    opacity: 0;
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.celllarge input:checked + label:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 11px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e945';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.celllarge label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.celllarge label:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 16px;
    height: 16px;
    margin-right: 12px;
    padding-left: 1px;
    content: '';
    color: #ff5600;
    border: 1px solid #979797;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.cellcourte {
    position: absolute;
    top: 16px;
    right: 15px;
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.cellcourte button,
.ts-my-alerts .TreeView li legend.TreeView-titre span.cellcourte a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.cellcourte button:before,
.ts-my-alerts .TreeView li legend.TreeView-titre span.cellcourte a:before {
    color: #ff5600;
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.cellcourte button.input_plus:before,
.ts-my-alerts .TreeView li legend.TreeView-titre span.cellcourte a.input_plus:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e938';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.cellcourte button.input_moins:before,
.ts-my-alerts .TreeView li legend.TreeView-titre span.cellcourte a.input_moins:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e995';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-alerts .TreeView li legend.TreeView-titre span.cellcourte button img,
.ts-my-alerts .TreeView li legend.TreeView-titre span.cellcourte a img {
    display: none;
}

.ts-my-alerts .TreeView div.TreeView-titre {
    position: relative;
}

.ts-my-alerts .TreeView div.TreeView-titre > input {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    opacity: 0;
}

.ts-my-alerts .TreeView div.TreeView-titre input:checked + label:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 11px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e945';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-alerts .TreeView div.TreeView-titre label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-alerts .TreeView div.TreeView-titre label:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 16px;
    height: 16px;
    margin-right: 12px;
    padding-left: 1px;
    content: '';
    color: #ff5600;
    border: 1px solid #979797;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-my-alerts .ts-search-criterias {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

@media (max-width: 991px) {
    .ts-my-alerts .ts-search-criterias .ts-search-criterias__panel + .ts-search-criterias__panel {
        margin-top: 16px;
    }
}

.ts-my-alerts .ts-search-criterias .ts-search-criterias__panel {
    width: 100%;
}

@media (min-width: 992px) {
    .ts-my-alerts .ts-search-criterias .ts-search-criterias__panel {
        width: calc(50% - 8px);
    }
}

.ts-my-alerts .ts-search-criterias .ts-search-criterias__panel > label,
.ts-my-alerts .ts-search-criterias .ts-search-criterias__panel > div {
    display: block;
}

.ts-my-alerts .ts-search-criterias .ts-search-criterias__panel > label > span,
.ts-my-alerts .ts-search-criterias .ts-search-criterias__panel > div > span {
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.ts-my-alerts .ts-search-criterias .ts-search-criterias__panel > label .mllb_aide,
.ts-my-alerts .ts-search-criterias .ts-search-criterias__panel > div .mllb_aide {
    font-size: 12px;
    font-style: italic;
    display: block;
    margin: 0;
}

.ts-my-alerts .ts-search-criterias .ts-search-criterias__panel > * {
    margin-bottom: 30px;
}

.ts-my-alerts .ts-search-criterias .ts-search-criterias__panel > *:last-child {
    margin-bottom: 0;
}

.ts-my-alerts .ts-search-criterias [for*='_LocationCriteria'] {
    display: block;
}

.ts-my-alerts .ts-search-criterias [for*='_LocationCriteria'] > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.ts-my-alerts .ts-button {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .ts-my-alerts .ts-button {
        -ms-flex-item-align: end;
            align-self: flex-end;
    }
}

@media (min-width: 992px) {
    .ts-my-alerts .ts-button {
        width: 160px;
    }
}

.ts-my-alerts #divSearchCriteria {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.ts-my-alerts__criterias {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 45px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.ts-my-alerts__criterias .ts-criterias__title,
.ts-my-alerts__criterias .ts-criterias__my-search,
.ts-my-alerts__criterias .ts-criterias__my-searched-criterias,
.ts-my-alerts__criterias .ts-criterias__email-alert {
    width: 100%;
}

.ts-my-alerts__criterias .ts-criterias__my-search {
    margin-bottom: 30px;
}

.ts-my-alerts__criterias .ts-criterias__my-search a {
    font-weight: bold;
    text-decoration: underline;
    color: #ff5600;
}

.ts-my-alerts__criterias .ts-criterias__my-searched-criterias,
.ts-my-alerts__criterias .ts-criterias__email-alert {
    font-weight: bold;
}

.ts-my-alerts__criterias .ts-criterias__my-searched-criterias {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e1e3e5;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.ts-my-alerts__criterias .ts-criterias__email-alert {
    margin-bottom: 10px;
}

.ts-my-alerts__criterias br {
    display: block;
}

.ts-my-alerts__criterias hr {
    display: none;
}

.ts-my-alerts__criterias-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (max-width: 767px) {
    .ts-my-alerts__criterias-buttons .ts-button + .ts-button {
        margin-top: 10px;
    }
}

@media (min-width: 768px) {
    .ts-my-alerts__criterias-buttons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .ts-my-alerts__criterias-buttons .ts-button + .ts-button {
        margin-left: 10px;
    }
}

.ts-my-alerts__criterias-buttons .ts-button--success {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
}

.ts-my-alerts__criterias-buttons .ts-button--primary {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}

.ts-my-alerts__criterias-buttons .ts-button--cancel {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}

.ts-my-alerts .ts-remove-criteria-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 35px /* SQUARE-ICON:width */;
    height: 35px /* SQUARE-ICON:height */;
    color: #ff5600 /* SQUARE-ICON-PRIMARY:color */;
    border: 1px solid transparent;
    border-color: #ff5600 /* SQUARE-ICON-PRIMARY:border-color */;
    border-radius: 5px /* SQUARE-ICON:border-radius */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.ts-my-alerts .ts-remove-criteria-button:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 21px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e997';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-alerts .ts-remove-criteria-button:hover {
    color: #fff /* SQUARE-ICON-PRIMARY:hover-color */;
    background-color: #ff5600 /* SQUARE-ICON-PRIMARY:hover-bg-color */;
}

.ts-my-alerts .ts-remove-criteria-button--old-theme {
    display: none;
}

.ts-my-information-page .ts-panel {
    width: 100%;
    margin: 16px 0;
}

@media (max-width: 991px) {
    .ts-my-information-page .ts-panel:first-child {
        margin-top: 0;
    }

    .ts-my-information-page .ts-panel:last-child {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .ts-my-information-page .ts-panel {
        display: inline-block;
        margin: 8px 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -moz-column-break-inside: avoid;
        -webkit-column-break-inside: avoid;
        column-break-inside: avoid;
        break-inside: avoid;
    }
}

.ts-my-information-page .ts-panel > h2 {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-information-page .ts-panel > h2:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-my-information-page .ts-panel > h2 + h3 {
    margin-top: 0;
}

.ts-my-information-page .ts-panel > h3 {
    font-weight: bold;
    margin: 20px 0 0;
    color: inherit;
}

.ts-my-information-page .ts-panel ul {
    padding-left: 15px;
    list-style: disc;
}

.ts-my-information-page .ts-panel .empty-element {
    display: none;
}

@media (min-width: 992px) {
    .ts-my-information-page .ts-page__content {
        margin-top: -8px;
        margin-bottom: -8px;
        -webkit-column-count: 2;
                column-count: 2;
    }
}

.ts-my-information-page .ts-page__content + .ts-title {
    margin-top: 45px;
}

.ts-my-information-page fieldset legend {
    font-size: 12px;
    font-style: italic;
    line-height: 1.2;
}

.ts-my-information-page .formulaire-pj {
    margin: 5px 0 14px;
}

@media (min-width: 992px) {
    .ts-my-information-page .formulaire-pj {
        width: calc(50% - 6px);
    }
}

.ts-my-information-page .formulaire-pj > table {
    width: 100%;
}

@media (max-width: 991px) {
    .ts-my-information-page .formulaire-pj > table {
        width: 100%;
    }
}

.ts-my-information-page .formulaire-pj > table > tbody tr:first-child {
    display: none;
}

.ts-my-information-page .ts-related-offers-wrapper .ts-related-offers {
    margin-top: 45px;
}

.ts-my-personal-links-page > h2 {
    display: none;
}

.ts-my-personal-links-page .ts-my-personal-links {
    width: 100%;
    margin-bottom: 30px;
    table-layout: fixed;
}

.ts-my-personal-links-page .ts-my-personal-links tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
}

.ts-my-personal-links-page .ts-my-personal-links tbody tr:first-child {
    display: none;
}

.ts-my-personal-links-page .ts-my-personal-links tbody .ts-my-personal-links__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-personal-links-page .ts-my-personal-links tbody .ts-my-personal-links__item td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto !important;
    padding: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-personal-links-page .ts-my-personal-links tbody .ts-my-personal-links__item td img {
    width: auto;
    height: 31px;
}

.ts-my-personal-links-page .ts-my-personal-links tbody .ts-my-personal-links__item-image {
    height: 35px;
}

.ts-my-personal-links-page .ts-my-personal-links tbody .ts-my-personal-links__item-name {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.ts-my-personal-links-page .ts-my-personal-links tbody .ts-my-personal-links__item-name > span {
    position: absolute;
    right: 15px;
    bottom: 10px;
    left: 15px;
    border-top: 1px solid #d11548;
}

.ts-my-personal-links-page .ts-my-personal-links tbody .ts-my-personal-links__item-name > span img {
    display: none;
}

.ts-my-personal-links-page .ts-my-personal-links tbody .ts-my-personal-links__item-cta {
    width: 95px !important;
}

.ts-my-personal-links-page .ts-my-personal-links tbody tr + tr {
    margin-top: 5px;
}

.ts-my-personal-links-page__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

@media (max-width: 767px) {
    .ts-my-personal-links-page__cta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .ts-my-personal-links-page__cta > div {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .ts-my-personal-links-page__cta {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }
}

@media (min-width: 768px) {
    .ts-my-personal-links-page__cta .listeline {
        margin-left: 15px;
    }
}

@media (max-width: 767px) {
    .ts-my-personal-links-page__cta .ts-button--cancel {
        margin: 10px 0 0;
    }
}

.ts-my-personal-links-page__cta .ts-button--cancel:hover {
    border-color: #e1e3e5;
}

.ts-my-personal-links-page .ts-my-personal-links__cta {
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 35px;
    height: 35px;
    padding: 1px 0 0 1px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-personal-links-page .ts-my-personal-links__cta + .ts-my-personal-links__cta {
    margin-left: 5px;
}

.ts-my-personal-links-page .ts-modify-button {
    border-color: #ff5600;
}

.ts-my-personal-links-page .ts-modify-button:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 21px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e952';
    text-transform: none;
    color: #ff5600;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-personal-links-page .ts-modify-button:hover {
    background-color: #ff5600;
}

.ts-my-personal-links-page .ts-modify-button:hover:before {
    color: #fff;
}

.ts-my-personal-links-page .ts-delete-button {
    border-color: #d11548;
}

.ts-my-personal-links-page .ts-delete-button:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 21px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e997';
    text-transform: none;
    color: #d11548;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-personal-links-page .ts-delete-button:hover {
    background-color: #d11548;
}

.ts-my-personal-links-page .ts-delete-button:hover:before {
    color: #fff;
}

.ts-my-personal-links-page .ts-save-button {
    padding-bottom: 3px;
    border-color: #120949;
}

.ts-my-personal-links-page .ts-save-button:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 21px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e945';
    text-transform: none;
    color: #120949;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-personal-links-page .ts-save-button:hover {
    background-color: #120949;
}

.ts-my-personal-links-page .ts-save-button:hover:before {
    color: #fff;
}

.ts-my-personal-links-page .ts-cancel-button {
    border-color: #d11548;
}

.ts-my-personal-links-page .ts-cancel-button:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 21px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    content: '\e94d';
    text-transform: none;
    color: #d11548;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-personal-links-page .ts-cancel-button:hover {
    background-color: #d11548;
}

.ts-my-personal-links-page .ts-cancel-button:hover:before {
    color: #fff;
}

.ts-my-personal-links-page .ts-add-personal-link > fieldset > legend {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-personal-links-page .ts-add-personal-link > fieldset > legend:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-my-personal-links-page .ts-add-personal-link table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.ts-my-personal-links-page .ts-add-personal-link table > tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.ts-my-personal-links-page .ts-add-personal-link table > tbody > tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: -4px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-my-personal-links-page .ts-add-personal-link table > tbody > tr > td:not(.ts-add-personal-link__item) {
    display: none;
}

.ts-my-personal-links-page .ts-add-personal-link table > tbody > tr > td:not(.ts-add-personal-link__item) {
    display: none;
}

.ts-my-personal-links-page .ts-add-personal-link table > tbody > tr > td.ts-add-personal-link__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 60px;
    margin: 4px;
    padding: 30px /* PANEL:padding */;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 5px /* PANEL:border-radius */;
    background-color: #fff /* PANEL:default-bg */;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
}

.ts-my-personal-links-page .ts-add-personal-link table > tbody > tr > td.ts-add-personal-link__item br,
.ts-my-personal-links-page .ts-add-personal-link table > tbody > tr > td.ts-add-personal-link__item hr {
    display: none;
}

.ts-my-personal-links-page .ts-add-personal-link table > tbody > tr > td.ts-add-personal-link__item__lead {
    font-weight: 700;
}

.ts-my-personal-links-page .ts-add-personal-link table > tbody > tr > td.ts-add-personal-link__item__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-my-personal-links-page .ts-add-personal-link table > tbody > tr > td.ts-add-personal-link__item p {
    line-height: 1.2;
}

.ts-my-personal-links-page .ts-add-personal-link table > tbody > tr > td.ts-add-personal-link__item p + p {
    margin-top: 15px;
}

@media (min-width: 768px) {
    .ts-my-personal-links-page .ts-add-personal-link table > tbody > tr > td.ts-add-personal-link__item {
        width: calc(33.333333% - 15px);
        height: 135px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.ts-my-personal-links-page .ts-add-personal-link table > tbody > tr > td.ts-add-personal-link__item input {
    max-width: 100%;
    max-height: 100%;
}

.ts-my-personal-links-page .ts-add-personal-link .ts-button {
    float: right;
    margin-top: 30px;
}

.ts-job-cards__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
}

.ts-job-cards-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px /* PANEL:padding */;
    border-radius: 5px /* PANEL:border-radius */;
    background: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15) /* PANEL:shadow */;
}

.ts-job-cards-item br,
.ts-job-cards-item hr {
    display: none;
}

.ts-job-cards-item__lead {
    font-weight: 700;
}

.ts-job-cards-item__title {
    font-size: 24px;
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ts-job-cards-item p {
    line-height: 1.2;
}

.ts-job-cards-item p + p {
    margin-top: 15px;
}

.ts-job-cards-item__title {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 30px;
}

.ts-job-cards-item__content {
    margin-bottom: 30px;
}

.ts-job-cards-item__content > * {
    margin-bottom: 30px;
}

.ts-job-cards-item__content > *:last-child {
    margin-bottom: 0;
}

.ts-job-cards-item__content h1 {
    font-size: 22px /* TITLE:font-size */;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 74px /* TITLE-SECONDARY:height */;
    margin-bottom: 30px;
    padding: 22px 22px 22px 10px /* TITLE-SECONDARY:padding */;
    color: #120949;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-job-cards-item__content h1:before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 20px;
    height: 100%;
    margin-right: 10px;
    content: '';
    background-color: #f3f2ef /* TITLE-SECONDARY:bg-color */;
}

.ts-job-cards-item__content h2 {
    font-size: 22px /* TITLE:font-size */;
    font-size: 18px /* TITLE-TERTIARY:font-size */;
    width: 100%;
    min-height: 74px /* TITLE-PRIMARY:height */;
    min-height: 54px /* TITLE-TERTIARY:height */;
    margin-bottom: 30px;
    padding: 22px /* TITLE-PRIMARY:padding */;
    padding: 15px 22px /* TITLE-TERTIARY:padding */;
    color: #120949;
    border-radius: 5px /* TITLE-PRIMARY:border-radius */;
    background-color: #f3f2ef /* TITLE-PRIMARY:bg-color */;
}

.ts-job-cards-item__content ul {
    list-style: disc;
}

.ts-job-cards-item__content ol {
    list-style: decimal;
}

.ts-job-cards-item__content ul,
.ts-job-cards-item__content ol {
    padding: 0 30px;
}

.ts-job-cards-item__content img {
    width: 100%;
    height: auto;
}

.ts-job-cards-item__content i {
    font-style: italic;
}

.ts-job-cards-item__content strong {
    font-weight: bold;
}

.ts-job-cards-item__content a {
    color: #ff5600;
}

.ts-job-cards-item__link {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 160px;
    min-width: 160px /* BUTTON:min-width */;
    height: 35px;
    padding: 3px 10px;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    color: #333 /* BUTTON:default-color */;
    border: 1px solid #f3f2ef /* BUTTON:default-border */;
    border-radius: 5px /* BUTTON:radius */;
    background-color: #f3f2ef /* BUTTON:default-bg */;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-item-align: end;
        align-self: flex-end;
}

@media (max-width: 767px) {
    .ts-job-cards-item__link {
        width: 100%;
    }
}

.ts-job-cards-item__link__icon {
    font-size: 20px;
    margin-right: 8px;
}

.ts-job-cards-item__link.has-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.ts-job-cards-item__link:focus,
.ts-job-cards-item__link:hover {
    background-color: transparent /* BUTTON:default-hover-bg */;
}

.ts-job-cards-item__link:after {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    margin-left: 10px;
    content: '\e980';
    text-transform: none;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-job-cards-item + .ts-job-cards-item {
    margin-top: 8px;
}

.ts-my-tests__list {
    width: 100%;
}

.ts-my-tests__list caption {
    display: none;
}

.ts-my-tests__list > tbody {
    display: block;
    margin: -8px 0;
}

.ts-my-tests__list > tbody > tr {
    display: none;
}

.ts-my-tests__list > tbody > tr:not(:first-child) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    margin: 8px 0;
    padding: 8px 0;
    border: 1px solid transparent;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-tests__list > tbody > tr:not(:first-child):hover {
    border-color: #ff5600;
}

.ts-my-tests__list > tbody > tr:not(:first-child) td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 15%;
    padding-right: 18px;
    padding-left: 18px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-my-tests__list > tbody > tr:not(:first-child) td:first-child {
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    width: 55%;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    -ms-flex-negative: initial;
        flex-shrink: initial;
}

.ts-my-tests__list > tbody > tr:not(:first-child) td:nth-child(2) {
    width: 136px;
}

.ts-my-tests__list > tbody > tr:not(:first-child) td:nth-child(2):before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    margin-right: 10px;
    content: '\e93f';
    text-transform: none;
    color: #d1d3d5;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-tests__list > tbody > tr:not(:first-child) td:nth-child(3) {
    width: 140px;
}

.ts-my-tests__list > tbody > tr:not(:first-child) td:nth-child(3):before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    margin-right: 10px;
    content: '\e918';
    text-transform: none;
    color: #d1d3d5;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-my-tests__list > tbody > tr:not(:first-child) td:last-child {
    width: 168px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.ts-my-tests__list > tbody > tr:not(:first-child) td + td {
    position: relative;
}

.ts-my-tests__list > tbody > tr:not(:first-child) td + td:after {
    position: absolute;
    top: 50%;
    left: -1px;
    display: block;
    width: 2px;
    height: 20px;
    margin-top: -10px;
    content: '';
    background-color: #e1e3e5;
}

.ts-my-tests__list-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #ff5600;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.ts-my-tests__list-link:before {
    font-family: 'talentsoft-font-icons' !important;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    margin-right: 10px;
    content: '\e95a';
    text-decoration: none;
    text-transform: none;
    color: #d1d3d5;
    /* FONT:icon */
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ts-privacy_policy__content ol,
.ts-privacy_policy__content ul {
    padding: revert;
    list-style: revert;
}

.ts-privacy_policy__content strong,
.ts-privacy_policy__content em {
    font: revert;
}

  h1{
  font-weight: 900 !important;
  font-size: 40px !important;
}
	
.ts-container {
  box-shadow: 0 0 25px 2px #ffffff !important;
  -webkit-box-shadow: 0 0 25px 2px rgb(0 0 0 / 0%) !important;
}
  .ts-content {
    padding: 0.35 !important;
    background-color: #ffffff !important;
}

  h3 {
    color: #120949 !important;
    font-size: 22px !important;
}   
.ts-offer-card__favorite-link--unselected:after {
    content: '\e936' !important;
}
.ts-offer-card__favorite-link--selected:after {
    content: '\e937' !important;
}
.ts-my-shortcuts-jobs-basket__link:before {
    content: '\e937' !important;
}