button {
    cursor: pointer;
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}

.announcement {
    height: 40px;
    background-color: black;
    color: white;
    line-height: 40px;
    overflow: hidden;
    position: relative;
}

    .announcement div {
        display: block;
        width: 200%;
        text-align: center;
        position: absolute;
        overflow: hidden;
        animation: marquee 15s linear infinite;
    }


    .announcement span {
        float: left;
        width: 50%;
    }

@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}


select .form-control {
    -webkit-box-shadow: 2px 3px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 3px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 2px 3px 5px 0px rgba(0,0,0,0.75);
    background: rgba(217,217,217,1);
    background: -moz-linear-gradient(top, rgba(217,217,217,1) 0%, rgba(122,122,122,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(217,217,217,1)), color-stop(100%, rgba(122,122,122,1)));
    background: -webkit-linear-gradient(top, rgba(217,217,217,1) 0%, rgba(122,122,122,1) 100%);
    background: -o-linear-gradient(top, rgba(217,217,217,1) 0%, rgba(122,122,122,1) 100%);
    /*background: -ms-linear-gradient(top, rgba(217,217,217,1) 0%, rgba(122,122,122,1) 100%);*/
    background: linear-gradient(to bottom, rgba(217,217,217,1) 0%, rgba(122,122,122,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9d9d9', endColorstr='#7a7a7a', GradientType=0 );
}

.red-hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 2px solid #da2914;
    margin: 1em 0;
    padding: 0;
}

.vertical-divider {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    margin: 0;
    padding: 0;
    width: auto;
    height: 35%;
    line-height: 0;
    text-align: center;
    text-transform: uppercase;
    color: #da2914;
    transform: translateX(-50%);
}

    .vertical-divider:before,
    .vertical-divider:after {
        position: absolute;
        left: 50%;
        content: '';
        z-index: 9;
        border-left: 2px solid #da2914;
        /*border-right: 1px solid rgba(255,255,255,.1);*/
        width: 0;
        height: calc(100% - 1rem);
    }

.row-divided > .vertical-divider {
    height: calc(50% - 1rem);
}

.vertical-divider:before {
    top: -100%;
}

.vertical-divider:after {
    top: auto;
    bottom: 0;
}

.row-divided {
    position: relative;
}

    .row-divided > [class^="col-"],
    .row-divided > [class*=" col-"] {
        padding-left: 30px; /* gutter width (give a little extra room) 2x default */
        padding-right: 30px; /* gutter width (give a little extra room) 2x default */
    }

.column-one {
    margin-bottom: 20px;
}

.column-two {
    margin-bottom: 20px;
}

/* Shared */
.loginBtn {
    box-sizing: border-box;
    position: relative;
    /* width: 13em;  - apply for fixed size */
    margin: 0.5em;
    padding: 0 15px 0 46px;
    border: none;
    text-align: left;
    line-height: 35px;
    white-space: nowrap;
    border-radius: 0.2em;
    font-size: 14px;
    color: #FFF;
    width: 200px;
}

    .loginBtn:before {
        content: "";
        box-sizing: border-box;
        position: absolute;
        top: 0;
        left: 0;
        width: 34px;
        height: 100%;
    }

    .loginBtn:focus {
        outline: none;
    }

    .loginBtn:active {
        box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
    }


/* Facebook */
.loginBtnFacebook {
    background-color: #4C69BA;
    background-image: linear-gradient(#4C69BA, #3B55A0);
    /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
    text-shadow: 0 -1px 0 #354C8C;
}

    .loginBtnFacebook:before {
        border-right: #364e92 1px solid;
        background: url('assets/images/social-media-logo/facebook.png') 6px 6px no-repeat;
    }

    .loginBtnFacebook:hover,
    .loginBtnFacebook:focus {
        background-color: #5B7BD5;
        background-image: linear-gradient(#5B7BD5, #4864B1);
    }


/* Google */
.loginBtnGoogle {
    /*font-family: "Roboto", Roboto, arial, sans-serif;*/
    background: #DD4B39;
}

    .loginBtnGoogle:before {
        border-right: #BB3F30 1px solid;
        background: url('assets/images/social-media-logo/google.png') 6px 6px no-repeat;
    }

    .loginBtnGoogle:hover,
    .loginBtnGoogle:focus {
        background: #E74B37;
    }


/* LinkedIn */
.loginBtnLinkedIn {
    /*font-family: "Roboto", Roboto, arial, sans-serif;*/
    background: #0E76A8;
}

    .loginBtnLinkedIn:before {
        border-right: #364e92 1px solid;
        background: url('assets/images/social-media-logo/linkedin.png') 6px 6px no-repeat;
    }

    .loginBtnLinkedIn:hover,
    .loginBtnLinkedIn:focus {
        background: #084461;
    }

/* Line */
.loginBtnLine {
    /*font-family: "Roboto", Roboto, arial, sans-serif;*/
    background: #00C300;
}

    .loginBtnLine:before {
        border-right: #00b300 1px solid;
        background: url('assets/images/social-media-logo/line.png') 6px 6px no-repeat;
    }

    .loginBtnLine:hover,
    .loginBtnLine:focus {
        background: #00E000;
    }

.alert-danger {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-dismissable, .alert-dismissible {
    padding-right: 35px !important;
}

.alert {
    padding: 15px;
    /* margin-bottom: 20px; */
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .5;
}

.hide {
    display: none !important;
}

.pt-table {
    width: 100%;
}

.txt-small {
    font-size: 14px;
}

.pt-table td {
    border: 1px solid #6f0724;
    padding: 5px;
}

.pt-table th {
    border: 1px solid #6f0724;
    background-color: #bf0d3e;
    color: white;
    padding: 5px;
}

.pt-table td.first {
    padding-right: 20px;
    width: 25%;
    background-color: #bf0d3e;
    color: white;
    text-align: right;
}

.btn--block {
    display: inline-block;
    width: 100%;
    font-size: 20px;
}

    .btn--block i {
        font-size: 30px;
        margin-top: -50px
    }

.Testimonial-box {
    display: inline-block;
    background-color: white;
    margin: 10px;
    padding: 10px 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    -webkit-box-shadow: -10px 11px 30px -12px rgba(0,0,0,0.24);
    -moz-box-shadow: -10px 11px 30px -12px rgba(0,0,0,0.24);
    box-shadow: -10px 11px 30px -12px rgba(0,0,0,0.24);
}

.Testimonial-by {
    font-weight: 800;
    color: #bf0d3e;
}

.border-none a {
    border-right: none !important;
}

.Training-type {
    display: inline-block;
    background-color: #00A9E0;
    color: white;
    padding: 6px 10px;
    margin: 10px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.Training-type {
    display: inline-block;
    background-color: #43B02A;
    color: white;
    padding: 6px 10px;
    margin: 10px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.discount {
    display: inline-block;
    background-color: #00A9E0;
    color: white;
    padding: 6px 10px;
    margin: 10px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
}

.discount2 {
    display: inline-block;
    background-color: #E35205;
    color: white;
    padding: 6px 10px;
    margin: 10px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
}

.in-house-type {
    display: inline-block;
    background-color: #AD1AAC;
    color: white;
    padding: 6px 10px;
    margin: 10px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.clear-margin {
    margin: 0px;
}

.txt-right {
    text-align: right;
}

.txt-center {
    text-align: center;
}

.txt-big {
    font-size: 35px;
}

.participant-box {
    display: block;
}

.hide {
    display: none;
}

.txt-red {
    color: red;
}

.txt-green {
    color: #43B02A;
}


.btn-phone {
    position: fixed;
    bottom: 70px;
    /* left: 30px; */
    z-index: 9999999;
    display: inline-block;
    background-color: #43B02A;
    opacity: 0.8;
    padding-left: 40px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: inline-block;
    box-shadow: 10px 22px 39px -23px rgba(0,0,0,0.84);
    -webkit-box-shadow: 10px 22px 39px -23px rgba(0,0,0,0.84);
    -moz-box-shadow: 10px 22px 39px -23px rgba(0,0,0,0.84);
}

    .btn-phone i {
        color: #fff;
        font-size: 50px;
        cursor: pointer;
        display: inline-block;
        opacity: 0.8;
        padding: 10px;
    }


@media only screen and (min-width: 980px) {
    .btn-phone {
        display: none;
    }
}

.scroll-top i:hover {
    opacity: 1;
}


html, body, div, span, iframe {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/*html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}*/

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}


.iframe-container {
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
}

    .iframe-container iframe {
        border: 0;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }

.header-banner {
    width: 100%;
    text-align: center;
    margin-bottom: -5px;
    background-image: url('assets/resource/images/tmp/header-banner/update-resume.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 105px;
}

    .header-banner img {
        display: inline-block;
    }

    .header-banner img {
        display: none;
        margin-bottom: -5px;
    }

@media (max-width: 420px) {

    .header-banner {
        background-image: url('assets/resource/images/tmp/header-banner/update-resume2.png');
        background-image: none;
        display: inline-block;
        height: auto;
        width: 100%;
        height: 0px;
    }

        .header-banner img {
            display: inline-block;
            width: 100%;
            margin-bottom: -5px;
        }
}

/* Icon font for arrow icons */
@font-face {
    font-family: 'icomoon';
    src: url('assets/fonts/icomoon.eot');
    src: url('assets/fonts/icomoon.eot?#iefix') format('embedded-opentype'), url('assets/fonts/icomoon.woff') format('woff'), url('assets/fonts/icomoon.ttf') format('truetype'), url('assets/fonts/icomoon.svg#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Iconfont by Icomoon http://icomoon.io/ */


/* Accordion style */
.cbp-ntaccordion {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.cbp-ntsubaccordion {
    list-style: none;
    transition: all 0.4s linear;
}

.cbp-ntaccordion .cbp-nttrigger {
    cursor: pointer;
    transition: all 0.4s linear;
}

.cbp-ntaccordion h3 {
    margin: 0 0 0.3em;
    padding: 1em 0 0.5em;
    border-bottom: 1px solid #ddd;
    font-size: 1.75em;
    font-weight: 300;
}

.cbp-ntaccordion h4 {
    font-size: 1.2em;
    /*
	text-transform: uppercase;
	letter-spacing: 0.4em;
*/
    text-align: left;
    /*	padding: 0.3em 0 0.3em;*/
    margin: 0 0 0.5em;
    font-size: 1.5em;
}

.cbp-ntaccordion h5 {
    font-size: 1.2em;
    color: #aaa;
    padding: 0.5em 0 0.5em;
    margin: 0 0 0.5em;
}

.cbp-ntaccordion .cbp-ntcontent p {
    color: #888;
    font-size: 1.25em;
    font-weight: 300;
    line-height: 1.5;
    padding: 0.2em 0 1.5em;
    margin: 0;
}

/* Arrow icons */
.cbp-ntaccordion > li > .cbp-nttrigger:before,
.cbp-ntsubaccordion > li > .cbp-nttrigger:before {
    font-family: 'icomoon';
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    color: #ddd;
    margin-right: 0.5em;
    -webkit-font-smoothing: antialiased;
}

.cbp-ntaccordion > li > .cbp-nttrigger:before {
    font-size: 75%;
}

.cbp-ntaccordion > li > .cbp-nttrigger:before {
    content: "\36";
}

.cbp-ntaccordion > li > .cbp-nttrigger:hover:before {
    content: "\35";
    color: inherit;
}

.cbp-ntaccordion > li.cbp-ntopen > .cbp-nttrigger:before,
.no-js .cbp-ntaccordion > li > .cbp-nttrigger:before {
    content: "\34";
    color: inherit;
}

.cbp-ntsubaccordion > li > .cbp-nttrigger:before {
    content: "\32";
}

.cbp-ntsubaccordion > li > .cbp-nttrigger:hover:before {
    content: "\33";
    color: inherit;
}

.cbp-ntsubaccordion > li.cbp-ntopen > .cbp-nttrigger:before,
.no-js .cbp-ntsubaccordion > li > .cbp-nttrigger:before {
    content: "\31";
    color: inherit;
}

/* Initial height is zero */
.cbp-ntaccordion .cbp-ntcontent {
    height: 0;
    overflow: hidden;
    transition: all 0.4s linear;
}

/* When open, set height to auto */
.cbp-ntaccordion .cbp-ntopen > .cbp-ntcontent,
.cbp-ntsubaccordion .cbp-ntopen > .cbp-ntcontent,
.no-js .cbp-ntaccordion .cbp-ntcontent {
    height: auto;
    transition: all 0.4s linear;
}

/* Example for media query */
@media screen and (max-width: 32em) {

    .cbp-ntaccordion {
        font-size: 70%;
    }
}

.cbp-ntaccordion .cbp-ntcontent-home p {
    color: #888;
    font-size: 1.25em;
    font-weight: 300;
    line-height: 1.5;
    padding: 0.2em 0 1.5em;
    margin: 0;
}

.cbp-ntaccordion .cbp-ntcontent-home {
    overflow: hidden;
    transition: all 0.4s linear;
}


@charset "UTF-8";

/*!
   *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
   *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
   */

.fa-fw,
.fa-li {
    text-align: center
}

.fa,
.icon {
    display: inline-block;
    text-rendering: auto
}

.ir,
.no-wrap {
    white-space: nowrap
}

.btn-filter,
.card__footer a,
.card__link:hover,
a {
    text-decoration: none
}

    .apply .apply__profile__submission:after,
    .article-thumb footer:after,
    .base-form .error-summary .header:after,
    .base-form .salary .salary-freq-container:after,
    .base-form__actions .search-form__actions-container:after,
    .base-form__actions:after,
    .card__footer a:after,
    .container-fluid:after,
    .container:after,
    .home .jobs .container > div:after,
    .home-content__generic:after,
    .home-employer:after,
    .home-search:after,
    .home-hcs-service:after,
    .job-details .job-details__description .job-details__cta__sticky:after,
    .location-list:after,
    .modal--alert .modal__content:after,
    .modal--edit-profile .modal__header:after,
    .modal--preview .jobs li .summary:after,
    .modal--preview .modal__header:after,
    .modal--preview .preview__body:after,
    .modal--register .modal__header:after,
    .modal--sign-in .manual-sign-up .actions:after,
    .modal--sign-in .modal__header:after,
    .modal--terms .modal__header:after,
    .nav-container nav .nav-signup-section:after,
    .notification:after,
    .pagination:after,
    .preview .apply__profile__submission:after,
    .profile .profile__body .profile__person-card .avatar-blurb:after,
    .profile .profile__body .profile__person-card .profile-top-card:after,
    .profile-mini-card .profile-card-summary .editable-item:after,
    .profile-mini-card .profile-card-summary .jobs li .summary:after,
    .recent-applications .recent-applications__top:after,
    .register__content .register__manual-sign-up:after,
    .register__content .register__social-sign-up:after,
    .resource__article .article__summary .tagline .share:after,
    .row:after,
    .saved-jobs .saved-jobs__description .signin-wide .signin-cta:after,
    .saved-jobs-cpt .saved-jobs-cpt__top:after,
    .search-bar:after,
    .search-form .error-summary .header:after,
    .search-form .salary .salary-freq-container:after,
    .search-form__actions .search-form__actions-container:after,
    .search-form__actions:after,
    .tip-style.jobcard-tip .profile-tip__header:after,
    .tip-style.nav-tip .profile-tip__header:after,
    .tip-style.submit-tip .profile-tip__header:after,
    .warning:after {
        clear: both
    }

@font-face {
    font-family: FontAwesome;
    src: url(assets/fonts/font-awesome/fontawesome-webfont.eot);
    src: url(assets/fonts/font-awesome/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(assets/fonts/font-awesome/fontawesome-webfont.woff2) format("woff2"), url(assets/fonts/font-awesome/fontawesome-webfont.woff) format("woff"), url(assets/fonts/font-awesome/fontawesome-webfont.ttf) format("truetype"), url(assets/fonts/font-awesome/fontawesome-webfont.svg#fontawesomeregular) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.fa {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571em
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14286em;
    list-style-type: none
}

    .fa-ul > li {
        position: relative
    }

.fa-li {
    position: absolute;
    left: -2.14286em;
    width: 2.14286em;
    top: .14286em
}

    .fa-li.fa-lg {
        left: -1.85714em
    }

.fa-border {
    padding: .2em .25em .15em;
    border: .08em solid #eee;
    border-radius: .1em
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.container,
.container-fluid {
    margin-left: auto;
    padding-left: .75rem;
    padding-right: .75rem
}

.container-no-padding {
    margin-left: auto;
    padding-left: 0rem;
    padding-right: 0rem
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    /*filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);*/
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    /*filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);*/
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    /*filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);*/
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    /*filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0);*/
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    /*filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);*/
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-rotate-90 {
    -webkit-filter: none;
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: ""
}

.fa-music:before {
    content: ""
}

.fa-search:before {
    content: ""
}

.fa-envelope-o:before {
    content: ""
}

.fa-heart:before {
    content: ""
}

.fa-star:before {
    content: ""
}

.fa-star-o:before {
    content: ""
}

.fa-user:before {
    content: ""
}

.fa-film:before {
    content: ""
}

.fa-th-large:before {
    content: ""
}

.fa-th:before {
    content: ""
}

.fa-th-list:before {
    content: ""
}

.fa-check:before {
    content: ""
}

.fa-close:before,
.fa-remove:before,
.fa-times:before {
    content: ""
}

.fa-search-plus:before {
    content: ""
}

.fa-search-minus:before {
    content: ""
}

.fa-power-off:before {
    content: ""
}

.fa-signal:before {
    content: ""
}

.fa-cog:before,
.fa-gear:before {
    content: ""
}

.fa-trash-o:before {
    content: ""
}

.fa-home:before {
    content: ""
}

.fa-file-o:before {
    content: ""
}

.fa-clock-o:before {
    content: ""
}

.fa-road:before {
    content: ""
}

.fa-download:before {
    content: ""
}

.fa-arrow-circle-o-down:before {
    content: ""
}

.fa-arrow-circle-o-up:before {
    content: ""
}

.fa-inbox:before {
    content: ""
}

.fa-play-circle-o:before {
    content: ""
}

.fa-repeat:before,
.fa-rotate-right:before {
    content: ""
}

.fa-refresh:before {
    content: ""
}

.fa-list-alt:before {
    content: ""
}

.fa-lock:before {
    content: ""
}

.fa-flag:before {
    content: ""
}

.fa-headphones:before {
    content: ""
}

.fa-volume-off:before {
    content: ""
}

.fa-volume-down:before {
    content: ""
}

.fa-volume-up:before {
    content: ""
}

.fa-qrcode:before {
    content: ""
}

.fa-barcode:before {
    content: ""
}

.fa-tag:before {
    content: ""
}

.fa-tags:before {
    content: ""
}

.fa-book:before {
    content: ""
}

.fa-bookmark:before {
    content: ""
}

.fa-print:before {
    content: ""
}

.fa-camera:before {
    content: ""
}

.fa-font:before {
    content: ""
}

.fa-bold:before {
    content: ""
}

.fa-italic:before {
    content: ""
}

.fa-text-height:before {
    content: ""
}

.fa-text-width:before {
    content: ""
}

.fa-align-left:before {
    content: ""
}

.fa-align-center:before {
    content: ""
}

.fa-align-right:before {
    content: ""
}

.fa-align-justify:before {
    content: ""
}

.fa-list:before {
    content: ""
}

.fa-dedent:before,
.fa-outdent:before {
    content: ""
}

.fa-indent:before {
    content: ""
}

.fa-video-camera:before {
    content: ""
}

.fa-image:before,
.fa-photo:before,
.fa-picture-o:before {
    content: ""
}

.fa-pencil:before {
    content: ""
}

.fa-map-marker:before {
    content: ""
}

.fa-adjust:before {
    content: ""
}

.fa-tint:before {
    content: ""
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: ""
}

.fa-share-square-o:before {
    content: ""
}

.fa-check-square-o:before {
    content: ""
}

.fa-arrows:before {
    content: ""
}

.fa-step-backward:before {
    content: ""
}

.fa-fast-backward:before {
    content: ""
}

.fa-backward:before {
    content: ""
}

.fa-play:before {
    content: ""
}

.fa-pause:before {
    content: ""
}

.fa-stop:before {
    content: ""
}

.fa-forward:before {
    content: ""
}

.fa-fast-forward:before {
    content: ""
}

.fa-step-forward:before {
    content: ""
}

.fa-eject:before {
    content: ""
}

.fa-chevron-left:before {
    content: ""
}

.fa-chevron-right:before {
    content: ""
}

.fa-plus-circle:before {
    content: ""
}

.fa-minus-circle:before {
    content: ""
}

.fa-times-circle:before {
    content: ""
}

.fa-check-circle:before {
    content: ""
}

.fa-question-circle:before {
    content: ""
}

.fa-info-circle:before {
    content: ""
}

.fa-crosshairs:before {
    content: ""
}

.fa-times-circle-o:before {
    content: ""
}

.fa-check-circle-o:before {
    content: ""
}

.fa-ban:before {
    content: ""
}

.fa-arrow-left:before {
    content: ""
}

.fa-arrow-right:before {
    content: ""
}

.fa-arrow-up:before {
    content: ""
}

.fa-arrow-down:before {
    content: ""
}

.fa-mail-forward:before,
.fa-share:before {
    content: ""
}

.fa-expand:before {
    content: ""
}

.fa-compress:before {
    content: ""
}

.fa-plus:before {
    content: ""
}

.fa-minus:before {
    content: ""
}

.fa-asterisk:before {
    content: ""
}

.fa-exclamation-circle:before {
    content: ""
}

.fa-gift:before {
    content: ""
}

.fa-leaf:before {
    content: ""
}

.fa-fire:before {
    content: ""
}

.fa-eye:before {
    content: ""
}

.fa-eye-slash:before {
    content: ""
}

.fa-exclamation-triangle:before,
.fa-warning:before {
    content: ""
}

.fa-plane:before {
    content: ""
}

.fa-calendar:before {
    content: ""
}

.fa-random:before {
    content: ""
}

.fa-comment:before {
    content: ""
}

.fa-magnet:before {
    content: ""
}

.fa-chevron-up:before {
    content: ""
}

.fa-chevron-down:before {
    content: ""
}

.fa-retweet:before {
    content: ""
}

.fa-shopping-cart:before {
    content: ""
}

.fa-folder:before {
    content: ""
}

.fa-folder-open:before {
    content: ""
}

.fa-arrows-v:before {
    content: ""
}

.fa-arrows-h:before {
    content: ""
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: ""
}

.fa-twitter-square:before {
    content: ""
}

.fa-facebook-square:before {
    content: ""
}

.fa-camera-retro:before {
    content: ""
}

.fa-key:before {
    content: ""
}

.fa-cogs:before,
.fa-gears:before {
    content: ""
}

.fa-comments:before {
    content: ""
}

.fa-thumbs-o-up:before {
    content: ""
}

.fa-thumbs-o-down:before {
    content: ""
}

.fa-star-half:before {
    content: ""
}

.fa-heart-o:before {
    content: ""
}

.fa-sign-out:before {
    content: ""
}

.fa-linkedin-square:before {
    content: ""
}

.fa-thumb-tack:before {
    content: ""
}

.fa-external-link:before {
    content: ""
}

.fa-sign-in:before {
    content: ""
}

.fa-trophy:before {
    content: ""
}

.fa-github-square:before {
    content: ""
}

.fa-upload:before {
    content: ""
}

.fa-lemon-o:before {
    content: ""
}

.fa-phone:before {
    content: ""
}

.fa-square-o:before {
    content: ""
}

.fa-bookmark-o:before {
    content: ""
}

.fa-phone-square:before {
    content: ""
}

.fa-twitter:before {
    content: ""
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: ""
}

.fa-github:before {
    content: ""
}

.fa-unlock:before {
    content: ""
}

.fa-credit-card:before {
    content: ""
}

.fa-rss:before {
    content: ""
}

.fa-hdd-o:before {
    content: ""
}

.fa-bullhorn:before {
    content: ""
}

.fa-bell:before {
    content: ""
}

.fa-certificate:before {
    content: ""
}

.fa-hand-o-right:before {
    content: ""
}

.fa-hand-o-left:before {
    content: ""
}

.fa-hand-o-up:before {
    content: ""
}

.fa-hand-o-down:before {
    content: ""
}

.fa-arrow-circle-left:before {
    content: ""
}

.fa-arrow-circle-right:before {
    content: ""
}

.fa-arrow-circle-up:before {
    content: ""
}

.fa-arrow-circle-down:before {
    content: ""
}

.fa-globe:before {
    content: ""
}

.fa-wrench:before {
    content: ""
}

.fa-tasks:before {
    content: ""
}

.fa-filter:before {
    content: ""
}

.fa-briefcase:before {
    content: ""
}

.fa-arrows-alt:before {
    content: ""
}

.fa-group:before,
.fa-users:before {
    content: ""
}

.fa-chain:before,
.fa-link:before {
    content: ""
}

.fa-cloud:before {
    content: ""
}

.fa-flask:before {
    content: ""
}

.fa-cut:before,
.fa-scissors:before {
    content: ""
}

.fa-copy:before,
.fa-files-o:before {
    content: ""
}

.fa-paperclip:before {
    content: ""
}

.fa-floppy-o:before,
.fa-save:before {
    content: ""
}

.fa-square:before {
    content: ""
}

.fa-bars:before,
.fa-navicon:before,
.fa-reorder:before {
    content: ""
}

.fa-list-ul:before {
    content: ""
}

.fa-list-ol:before {
    content: ""
}

.fa-strikethrough:before {
    content: ""
}

.fa-underline:before {
    content: ""
}

.fa-table:before {
    content: ""
}

.fa-magic:before {
    content: ""
}

.fa-truck:before {
    content: ""
}

.fa-pinterest:before {
    content: ""
}

.fa-pinterest-square:before {
    content: ""
}

.fa-google-plus-square:before {
    content: ""
}

.fa-google-plus:before {
    content: ""
}

.fa-money:before {
    content: ""
}

.fa-caret-down:before {
    content: ""
}

.fa-caret-up:before {
    content: ""
}

.fa-caret-left:before {
    content: ""
}

.fa-caret-right:before {
    content: ""
}

.fa-columns:before {
    content: ""
}

.fa-sort:before,
.fa-unsorted:before {
    content: ""
}

.fa-sort-desc:before,
.fa-sort-down:before {
    content: ""
}

.fa-sort-asc:before,
.fa-sort-up:before {
    content: ""
}

.fa-envelope:before {
    content: ""
}

.fa-linkedin:before {
    content: ""
}

.fa-rotate-left:before,
.fa-undo:before {
    content: ""
}

.fa-gavel:before,
.fa-legal:before {
    content: ""
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: ""
}

.fa-comment-o:before {
    content: ""
}

.fa-comments-o:before {
    content: ""
}

.fa-bolt:before,
.fa-flash:before {
    content: ""
}

.fa-sitemap:before {
    content: ""
}

.fa-umbrella:before {
    content: ""
}

.fa-clipboard:before,
.fa-paste:before {
    content: ""
}

.fa-lightbulb-o:before {
    content: ""
}

.fa-exchange:before {
    content: ""
}

.fa-cloud-download:before {
    content: ""
}

.fa-cloud-upload:before {
    content: ""
}

.fa-user-md:before {
    content: ""
}

.fa-stethoscope:before {
    content: ""
}

.fa-suitcase:before {
    content: ""
}

.fa-bell-o:before {
    content: ""
}

.fa-coffee:before {
    content: ""
}

.fa-cutlery:before {
    content: ""
}

.fa-file-text-o:before {
    content: ""
}

.fa-building-o:before {
    content: ""
}

.fa-hospital-o:before {
    content: ""
}

.fa-ambulance:before {
    content: ""
}

.fa-medkit:before {
    content: ""
}

.fa-fighter-jet:before {
    content: ""
}

.fa-beer:before {
    content: ""
}

.fa-h-square:before {
    content: ""
}

.fa-plus-square:before {
    content: ""
}

.fa-angle-double-left:before {
    content: ""
}

.fa-angle-double-right:before {
    content: ""
}

.fa-angle-double-up:before {
    content: ""
}

.fa-angle-double-down:before {
    content: ""
}

.fa-angle-left:before {
    content: ""
}

.fa-angle-right:before {
    content: ""
}

.fa-angle-up:before {
    content: ""
}

.fa-angle-down:before {
    content: ""
}

.fa-desktop:before {
    content: ""
}

.fa-laptop:before {
    content: ""
}

.fa-tablet:before {
    content: ""
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: ""
}

.fa-circle-o:before {
    content: ""
}

.fa-quote-left:before {
    content: ""
}

.fa-quote-right:before {
    content: ""
}

.fa-spinner:before {
    content: ""
}

.fa-circle:before {
    content: ""
}

.fa-mail-reply:before,
.fa-reply:before {
    content: ""
}

.fa-github-alt:before {
    content: ""
}

.fa-folder-o:before {
    content: ""
}

.fa-folder-open-o:before {
    content: ""
}

.fa-smile-o:before {
    content: ""
}

.fa-frown-o:before {
    content: ""
}

.fa-meh-o:before {
    content: ""
}

.fa-gamepad:before {
    content: ""
}

.fa-keyboard-o:before {
    content: ""
}

.fa-flag-o:before {
    content: ""
}

.fa-flag-checkered:before {
    content: ""
}

.fa-terminal:before {
    content: ""
}

.fa-code:before {
    content: ""
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: ""
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: ""
}

.fa-location-arrow:before {
    content: ""
}

.fa-crop:before {
    content: ""
}

.fa-code-fork:before {
    content: ""
}

.fa-chain-broken:before,
.fa-unlink:before {
    content: ""
}

.fa-question:before {
    content: ""
}

.fa-info:before {
    content: ""
}

.fa-exclamation:before {
    content: ""
}

.fa-superscript:before {
    content: ""
}

.fa-subscript:before {
    content: ""
}

.fa-eraser:before {
    content: ""
}

.fa-puzzle-piece:before {
    content: ""
}

.fa-microphone:before {
    content: ""
}

.fa-microphone-slash:before {
    content: ""
}

.fa-shield:before {
    content: ""
}

.fa-calendar-o:before {
    content: ""
}

.fa-fire-extinguisher:before {
    content: ""
}

.fa-rocket:before {
    content: ""
}

.fa-maxcdn:before {
    content: ""
}

.fa-chevron-circle-left:before {
    content: ""
}

.fa-chevron-circle-right:before {
    content: ""
}

.fa-chevron-circle-up:before {
    content: ""
}

.fa-chevron-circle-down:before {
    content: ""
}

.fa-html5:before {
    content: ""
}

.fa-css3:before {
    content: ""
}

.fa-anchor:before {
    content: ""
}

.fa-unlock-alt:before {
    content: ""
}

.fa-bullseye:before {
    content: ""
}

.fa-ellipsis-h:before {
    content: ""
}

.fa-ellipsis-v:before {
    content: ""
}

.fa-rss-square:before {
    content: ""
}

.fa-play-circle:before {
    content: ""
}

.fa-ticket:before {
    content: ""
}

.fa-minus-square:before {
    content: ""
}

.fa-minus-square-o:before {
    content: ""
}

.fa-level-up:before {
    content: ""
}

.fa-level-down:before {
    content: ""
}

.fa-check-square:before {
    content: ""
}

.fa-pencil-square:before {
    content: ""
}

.fa-external-link-square:before {
    content: ""
}

.fa-share-square:before {
    content: ""
}

.fa-compass:before {
    content: ""
}

.fa-caret-square-o-down:before,
.fa-toggle-down:before {
    content: ""
}

.fa-caret-square-o-up:before,
.fa-toggle-up:before {
    content: ""
}

.fa-caret-square-o-right:before,
.fa-toggle-right:before {
    content: ""
}

.fa-eur:before,
.fa-euro:before {
    content: ""
}

.fa-gbp:before {
    content: ""
}

.fa-dollar:before,
.fa-usd:before {
    content: ""
}

.fa-inr:before,
.fa-rupee:before {
    content: ""
}

.fa-cny:before,
.fa-jpy:before,
.fa-rmb:before,
.fa-yen:before {
    content: ""
}

.fa-rouble:before,
.fa-rub:before,
.fa-ruble:before {
    content: ""
}

.fa-krw:before,
.fa-won:before {
    content: ""
}

.fa-bitcoin:before,
.fa-btc:before {
    content: ""
}

.fa-file:before {
    content: ""
}

.fa-file-text:before {
    content: ""
}

.fa-sort-alpha-asc:before {
    content: ""
}

.fa-sort-alpha-desc:before {
    content: ""
}

.fa-sort-amount-asc:before {
    content: ""
}

.fa-sort-amount-desc:before {
    content: ""
}

.fa-sort-numeric-asc:before {
    content: ""
}

.fa-sort-numeric-desc:before {
    content: ""
}

.fa-thumbs-up:before {
    content: ""
}

.fa-thumbs-down:before {
    content: ""
}

.fa-youtube-square:before {
    content: ""
}

.fa-youtube:before {
    content: ""
}

.fa-xing:before {
    content: ""
}

.fa-xing-square:before {
    content: ""
}

.fa-youtube-play:before {
    content: ""
}

.fa-dropbox:before {
    content: ""
}

.fa-stack-overflow:before {
    content: ""
}

.fa-instagram:before {
    content: ""
}

.fa-flickr:before {
    content: ""
}

.fa-adn:before {
    content: ""
}

.fa-bitbucket:before {
    content: ""
}

.fa-bitbucket-square:before {
    content: ""
}

.fa-tumblr:before {
    content: ""
}

.fa-tumblr-square:before {
    content: ""
}

.fa-long-arrow-down:before {
    content: ""
}

.fa-long-arrow-up:before {
    content: ""
}

.fa-long-arrow-left:before {
    content: ""
}

.fa-long-arrow-right:before {
    content: ""
}

.fa-apple:before {
    content: ""
}

.fa-windows:before {
    content: ""
}

.fa-android:before {
    content: ""
}

.fa-linux:before {
    content: ""
}

.fa-dribbble:before {
    content: ""
}

.fa-skype:before {
    content: ""
}

.fa-foursquare:before {
    content: ""
}

.fa-trello:before {
    content: ""
}

.fa-female:before {
    content: ""
}

.fa-male:before {
    content: ""
}

.fa-gittip:before,
.fa-gratipay:before {
    content: ""
}

.fa-sun-o:before {
    content: ""
}

.fa-moon-o:before {
    content: ""
}

.fa-archive:before {
    content: ""
}

.fa-bug:before {
    content: ""
}

.fa-vk:before {
    content: ""
}

.fa-weibo:before {
    content: ""
}

.fa-renren:before {
    content: ""
}

.fa-pagelines:before {
    content: ""
}

.fa-stack-exchange:before {
    content: ""
}

.fa-arrow-circle-o-right:before {
    content: ""
}

.fa-arrow-circle-o-left:before {
    content: ""
}

.fa-caret-square-o-left:before,
.fa-toggle-left:before {
    content: ""
}

.fa-dot-circle-o:before {
    content: ""
}

.fa-wheelchair:before {
    content: ""
}

.fa-vimeo-square:before {
    content: ""
}

.fa-try:before,
.fa-turkish-lira:before {
    content: ""
}

.fa-plus-square-o:before {
    content: ""
}

.fa-space-shuttle:before {
    content: ""
}

.fa-slack:before {
    content: ""
}

.fa-envelope-square:before {
    content: ""
}

.fa-wordpress:before {
    content: ""
}

.fa-openid:before {
    content: ""
}

.fa-bank:before,
.fa-institution:before,
.fa-university:before {
    content: ""
}

.fa-graduation-cap:before,
.fa-mortar-board:before {
    content: ""
}

.fa-yahoo:before {
    content: ""
}

.fa-google:before {
    content: ""
}

.fa-reddit:before {
    content: ""
}

.fa-reddit-square:before {
    content: ""
}

.fa-stumbleupon-circle:before {
    content: ""
}

.fa-stumbleupon:before {
    content: ""
}

.fa-delicious:before {
    content: ""
}

.fa-digg:before {
    content: ""
}

.fa-pied-piper:before {
    content: ""
}

.fa-pied-piper-alt:before {
    content: ""
}

.fa-drupal:before {
    content: ""
}

.fa-joomla:before {
    content: ""
}

.fa-language:before {
    content: ""
}

.fa-fax:before {
    content: ""
}

.fa-building:before {
    content: ""
}

.fa-child:before {
    content: ""
}

.fa-paw:before {
    content: ""
}

.fa-spoon:before {
    content: ""
}

.fa-cube:before {
    content: ""
}

.fa-cubes:before {
    content: ""
}

.fa-behance:before {
    content: ""
}

.fa-behance-square:before {
    content: ""
}

.fa-steam:before {
    content: ""
}

.fa-steam-square:before {
    content: ""
}

.fa-recycle:before {
    content: ""
}

.fa-automobile:before,
.fa-car:before {
    content: ""
}

.fa-cab:before,
.fa-taxi:before {
    content: ""
}

.fa-tree:before {
    content: ""
}

.fa-spotify:before {
    content: ""
}

.fa-deviantart:before {
    content: ""
}

.fa-soundcloud:before {
    content: ""
}

.fa-database:before {
    content: ""
}

.fa-file-pdf-o:before {
    content: ""
}

.fa-file-word-o:before {
    content: ""
}

.fa-file-excel-o:before {
    content: ""
}

.fa-file-powerpoint-o:before {
    content: ""
}

.fa-file-image-o:before,
.fa-file-photo-o:before,
.fa-file-picture-o:before {
    content: ""
}

.fa-file-archive-o:before,
.fa-file-zip-o:before {
    content: ""
}

.fa-file-audio-o:before,
.fa-file-sound-o:before {
    content: ""
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: ""
}

.fa-file-code-o:before {
    content: ""
}

.fa-vine:before {
    content: ""
}

.fa-codepen:before {
    content: ""
}

.fa-jsfiddle:before {
    content: ""
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-ring:before,
.fa-life-saver:before,
.fa-support:before {
    content: ""
}

.fa-circle-o-notch:before {
    content: ""
}

.fa-ra:before,
.fa-rebel:before {
    content: ""
}

.fa-empire:before,
.fa-ge:before {
    content: ""
}

.fa-git-square:before {
    content: ""
}

.fa-git:before {
    content: ""
}

.fa-hacker-news:before {
    content: ""
}

.fa-tencent-weibo:before {
    content: ""
}

.fa-qq:before {
    content: ""
}

.fa-wechat:before,
.fa-weixin:before {
    content: ""
}

.fa-paper-plane:before,
.fa-send:before {
    content: ""
}

.fa-paper-plane-o:before,
.fa-send-o:before {
    content: ""
}

.fa-history:before {
    content: ""
}

.fa-circle-thin:before,
.fa-genderless:before {
    content: ""
}

.fa-header:before {
    content: ""
}

.fa-paragraph:before {
    content: ""
}

.fa-sliders:before {
    content: ""
}

.fa-share-alt:before {
    content: ""
}

.fa-share-alt-square:before {
    content: ""
}

.fa-bomb:before {
    content: ""
}

.fa-futbol-o:before,
.fa-soccer-ball-o:before {
    content: ""
}

.fa-tty:before {
    content: ""
}

.fa-binoculars:before {
    content: ""
}

.fa-plug:before {
    content: ""
}

.fa-slideshare:before {
    content: ""
}

.fa-twitch:before {
    content: ""
}

.fa-yelp:before {
    content: ""
}

.fa-newspaper-o:before {
    content: ""
}

.fa-wifi:before {
    content: ""
}

.fa-calculator:before {
    content: ""
}

.fa-paypal:before {
    content: ""
}

.fa-google-wallet:before {
    content: ""
}

.fa-cc-visa:before {
    content: ""
}

.fa-cc-mastercard:before {
    content: ""
}

.fa-cc-discover:before {
    content: ""
}

.fa-cc-amex:before {
    content: ""
}

.fa-cc-paypal:before {
    content: ""
}

.fa-cc-stripe:before {
    content: ""
}

.fa-bell-slash:before {
    content: ""
}

.fa-bell-slash-o:before {
    content: ""
}

.fa-trash:before {
    content: ""
}

.fa-copyright:before {
    content: ""
}

.fa-at:before {
    content: ""
}

.fa-eyedropper:before {
    content: ""
}

.fa-paint-brush:before {
    content: ""
}

.fa-birthday-cake:before {
    content: ""
}

.fa-area-chart:before {
    content: ""
}

.fa-pie-chart:before {
    content: ""
}

.fa-line-chart:before {
    content: ""
}

.fa-lastfm:before {
    content: ""
}

.fa-lastfm-square:before {
    content: ""
}

.fa-toggle-off:before {
    content: ""
}

.fa-toggle-on:before {
    content: ""
}

.fa-bicycle:before {
    content: ""
}

.fa-bus:before {
    content: ""
}

.fa-ioxhost:before {
    content: ""
}

.fa-angellist:before {
    content: ""
}

.fa-cc:before {
    content: ""
}

.fa-ils:before,
.fa-shekel:before,
.fa-sheqel:before {
    content: ""
}

.fa-meanpath:before {
    content: ""
}

.fa-buysellads:before {
    content: ""
}

.fa-connectdevelop:before {
    content: ""
}

.fa-dashcube:before {
    content: ""
}

.fa-forumbee:before {
    content: ""
}

.fa-leanpub:before {
    content: ""
}

.fa-sellsy:before {
    content: ""
}

.fa-shirtsinbulk:before {
    content: ""
}

.fa-simplybuilt:before {
    content: ""
}

.fa-skyatlas:before {
    content: ""
}

.fa-cart-plus:before {
    content: ""
}

.fa-cart-arrow-down:before {
    content: ""
}

.fa-diamond:before {
    content: ""
}

.fa-ship:before {
    content: ""
}

.fa-user-secret:before {
    content: ""
}

.fa-motorcycle:before {
    content: ""
}

.fa-street-view:before {
    content: ""
}

.fa-heartbeat:before {
    content: ""
}

.fa-venus:before {
    content: ""
}

.fa-mars:before {
    content: ""
}

.fa-mercury:before {
    content: ""
}

.fa-transgender:before {
    content: ""
}

.fa-transgender-alt:before {
    content: ""
}

.fa-venus-double:before {
    content: ""
}

.fa-mars-double:before {
    content: ""
}

.fa-venus-mars:before {
    content: ""
}

.fa-mars-stroke:before {
    content: ""
}

.fa-mars-stroke-v:before {
    content: ""
}

.fa-mars-stroke-h:before {
    content: ""
}

.fa-neuter:before {
    content: ""
}

.fa-facebook-official:before {
    content: ""
}

.fa-pinterest-p:before {
    content: ""
}

.fa-whatsapp:before {
    content: ""
}

.fa-server:before {
    content: ""
}

.fa-user-plus:before {
    content: ""
}

.fa-user-times:before {
    content: ""
}

.fa-bed:before,
.fa-hotel:before {
    content: ""
}

.fa-viacoin:before {
    content: ""
}

.fa-train:before {
    content: ""
}

.fa-subway:before {
    content: ""
}

.fa-medium:before {
    content: ""
}

@font-face {
    font-family: adecco-font-1;
    src: url(assets/fonts/adecco-icons/adecco-font-1.eot);
    src: url(assets/fonts/adecco-icons/adecco-font-1.eot?#iefix) format("embedded-opentype"), url(assets/fonts/adecco-icons/adecco-font-1.woff) format("woff"), url(assets/fonts/adecco-icons/adecco-font-1.ttf) format("truetype"), url(assets/fonts/adecco-icons/adecco-font-1.svg#adecco-font-1) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.icon {
    font: normal normal normal 14px/1 adecco-font-1;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.row:after,
.row:before {
    display: table;
    content: " "
}

[class*=" icon-"]:before,
[class^=icon-]:before,
[data-icon]:before {
    font-family: adecco-font-1 !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    speak: none
}

[data-icon]:before,
html {
    -webkit-font-smoothing: antialiased
}

[data-icon]:before {
    content: attr(data-icon)
}

[class*=" icon-"]:before,
[class^=icon-]:before {
    -webkit-font-smoothing: antialiased
}

.icon-banking:before {
    content: "\61"
}

.icon-add:before {
    content: "\62"
}

.icon-contact:before {
    content: "\63"
}

.icon-contact-outline:before {
    content: "\64"
}

.icon-alarm:before {
    content: "\65"
}

.icon-alarm-outline:before {
    content: "\66"
}

.icon-article:before {
    content: "\67"
}

.icon-work-experience:before {
    content: "\68"
}

.icon-calendar:before {
    content: "\69"
}

.icon-calendar-outline:before {
    content: "\6a"
}

.icon-customer-service:before {
    content: "\6b"
}

.icon-done:before {
    content: "\6c"
}

.icon-location:before {
    content: "\6d"
}

.icon-google-plus:before {
    content: "\6e"
}

.icon-filter-outline:before {
    content: "\6f"
}

.icon-filter:before {
    content: "\70"
}

.icon-facebook:before {
    content: "\71"
}

.icon-engineering:before {
    content: "\72"
}

.icon-education:before {
    content: "\73"
}

.icon-edit-outline:before {
    content: "\74"
}

.icon-edit:before {
    content: "\75"
}

.icon-download:before {
    content: "\76"
}

.icon-down:before {
    content: "\77"
}

.icon-document-outline:before {
    content: "\78"
}

.icon-document:before {
    content: "\79"
}

.icon-close:before {
    content: "\7a"
}

.icon-search-hamburger:before {
    content: "\41"
}

.icon-hamburger:before {
    content: "\42"
}

.icon-heart:before {
    content: "\43"
}

.icon-heart-outline:before {
    content: "\44"
}

.icon-help:before {
    content: "\45"
}

.icon-hospitality-outline:before {
    content: "\46"
}

.icon-industrial:before {
    content: "\47"
}

.icon-infographic:before {
    content: "\48"
}

.icon-information:before {
    content: "\49"
}

.icon-instagram:before {
    content: "\4a"
}

.icon-linkedin:before {
    content: "\4b"
}

.icon-linkedin-1:before {
    content: "\4c"
}

.icon-lock:before {
    content: "\4d"
}

.icon-science:before {
    content: "\4e"
}

.icon-profile-outline:before {
    content: "\4f"
}

.icon-profile:before {
    content: "\50"
}

.icon-pinterest:before {
    content: "\51"
}

.icon-pin-outline:before {
    content: "\52"
}

.icon-pin:before {
    content: "\53"
}

.icon-office:before {
    content: "\54"
}

.icon-continue:before {
    content: "\55"
}

.icon-show-more:before {
    content: "\56"
}

.icon-medicine:before {
    content: "\57"
}

.icon-art:before {
    content: "\58"
}

.icon-map:before {
    content: "\59"
}

.icon-mail:before {
    content: "\5a"
}

.icon-search:before {
    content: "\30"
}

.icon-skills:before {
    content: "\31"
}

.icon-document-specific:before {
    content: "\32"
}

.icon-star:before {
    content: "\33"
}

.icon-star-outline:before {
    content: "\34"
}

.icon-view-outline:before {
    content: "\35"
}

.icon-view:before {
    content: "\36"
}

.icon-warning:before {
    content: "\37"
}

.icon-warehousing:before {
    content: "\38"
}

.icon-wallet-outline:before {
    content: "\39"
}

.icon-computing:before {
    content: "\21"
}

.icon-tools-resource:before {
    content: "\22"
}

.icon-transport-outline:before {
    content: "\23"
}

.icon-transportation:before {
    content: "\24"
}

.icon-twitter:before {
    content: "\25"
}

.icon-unlock:before {
    content: "\26"
}

.icon-up:before {
    content: "\27"
}

.icon-video:before {
    content: "\28"
}

html {
    box-sizing: border-box;
    font-size: 100%
}

*,
:after,
:before {
    box-sizing: inherit
}

.container {
    margin-right: auto
}

@media (min-width:34rem) {
    .container {
        max-width: 34rem
    }
}

@media (min-width:48rem) {
    .container {
        max-width: 45rem
    }
}

@media (min-width:62rem) {
    .container {
        max-width: 60rem
    }
}

.container-fluid {
    margin-right: auto
}

.row {
    margin-left: -.75rem;
    margin-right: -.75rem
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-left: .75rem;
    padding-right: .75rem
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    float: left
}

.col-xs-1 {
    width: 8.33333%
}

.col-xs-2 {
    width: 16.66667%
}

.col-xs-3 {
    width: 25%
}

.col-xs-4 {
    width: 33.33333%
}

.col-xs-5 {
    width: 41.66667%
}

.col-xs-6 {
    width: 50%
}

.col-xs-7 {
    width: 58.33333%
}

.col-xs-8 {
    width: 66.66667%
}

.col-xs-9 {
    width: 75%
}

.col-xs-10 {
    width: 83.33333%
}

.col-xs-11 {
    width: 91.66667%
}

.col-xs-12 {
    width: 100%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-pull-1 {
    right: 8.33333%
}

.col-xs-pull-2 {
    right: 16.66667%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-4 {
    right: 33.33333%
}

.col-xs-pull-5 {
    right: 41.66667%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-7 {
    right: 58.33333%
}

.col-xs-pull-8 {
    right: 66.66667%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-10 {
    right: 83.33333%
}

.col-xs-pull-11 {
    right: 91.66667%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-push-1 {
    left: 8.33333%
}

.col-xs-push-2 {
    left: 16.66667%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-4 {
    left: 33.33333%
}

.col-xs-push-5 {
    left: 41.66667%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-7 {
    left: 58.33333%
}

.col-xs-push-8 {
    left: 66.66667%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-10 {
    left: 83.33333%
}

.col-xs-push-11 {
    left: 91.66667%
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-offset-0 {
    margin-left: 0
}

.col-xs-offset-1 {
    margin-left: 8.33333%
}

.col-xs-offset-2 {
    margin-left: 16.66667%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-4 {
    margin-left: 33.33333%
}

.col-xs-offset-5 {
    margin-left: 41.66667%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-7 {
    margin-left: 58.33333%
}

.col-xs-offset-8 {
    margin-left: 66.66667%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-10 {
    margin-left: 83.33333%
}

.col-xs-offset-11 {
    margin-left: 91.66667%
}

.col-xs-offset-12 {
    margin-left: 100%
}

@media (min-width:34rem) {
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9 {
        float: left
    }

    .col-sm-1 {
        width: 8.33333%
    }

    .col-sm-2 {
        width: 16.66667%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-4 {
        width: 33.33333%
    }

    .col-sm-5 {
        width: 41.66667%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-7 {
        width: 58.33333%
    }

    .col-sm-8 {
        width: 66.66667%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-10 {
        width: 83.33333%
    }

    .col-sm-11 {
        width: 91.66667%
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-pull-1 {
        right: 8.33333%
    }

    .col-sm-pull-2 {
        right: 16.66667%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-4 {
        right: 33.33333%
    }

    .col-sm-pull-5 {
        right: 41.66667%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-7 {
        right: 58.33333%
    }

    .col-sm-pull-8 {
        right: 66.66667%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-10 {
        right: 83.33333%
    }

    .col-sm-pull-11 {
        right: 91.66667%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-push-1 {
        left: 8.33333%
    }

    .col-sm-push-2 {
        left: 16.66667%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-4 {
        left: 33.33333%
    }

    .col-sm-push-5 {
        left: 41.66667%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-7 {
        left: 58.33333%
    }

    .col-sm-push-8 {
        left: 66.66667%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-10 {
        left: 83.33333%
    }

    .col-sm-push-11 {
        left: 91.66667%
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }

    .col-sm-offset-1 {
        margin-left: 8.33333%
    }

    .col-sm-offset-2 {
        margin-left: 16.66667%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333%
    }

    .col-sm-offset-5 {
        margin-left: 41.66667%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333%
    }

    .col-sm-offset-8 {
        margin-left: 66.66667%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333%
    }

    .col-sm-offset-11 {
        margin-left: 91.66667%
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }
}

@media (min-width:48rem) {
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9 {
        float: left
    }

    .col-md-1 {
        width: 8.33333%
    }

    .col-md-2 {
        width: 16.66667%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-4 {
        width: 33.33333%
    }

    .col-md-5 {
        width: 41.66667%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-7 {
        width: 58.33333%
    }

    .col-md-8 {
        width: 66.66667%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-10 {
        width: 83.33333%
    }

    .col-md-11 {
        width: 91.66667%
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-pull-1 {
        right: 8.33333%
    }

    .col-md-pull-2 {
        right: 16.66667%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-4 {
        right: 33.33333%
    }

    .col-md-pull-5 {
        right: 41.66667%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-7 {
        right: 58.33333%
    }

    .col-md-pull-8 {
        right: 66.66667%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-10 {
        right: 83.33333%
    }

    .col-md-pull-11 {
        right: 91.66667%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-push-1 {
        left: 8.33333%
    }

    .col-md-push-2 {
        left: 16.66667%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-4 {
        left: 33.33333%
    }

    .col-md-push-5 {
        left: 41.66667%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-7 {
        left: 58.33333%
    }

    .col-md-push-8 {
        left: 66.66667%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-10 {
        left: 83.33333%
    }

    .col-md-push-11 {
        left: 91.66667%
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-offset-0 {
        margin-left: 0
    }

    .col-md-offset-1 {
        margin-left: 8.33333%
    }

    .col-md-offset-2 {
        margin-left: 16.66667%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-4 {
        margin-left: 33.33333%
    }

    .col-md-offset-5 {
        margin-left: 41.66667%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-7 {
        margin-left: 58.33333%
    }

    .col-md-offset-8 {
        margin-left: 66.66667%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-10 {
        margin-left: 83.33333%
    }

    .col-md-offset-11 {
        margin-left: 91.66667%
    }

    .col-md-offset-12 {
        margin-left: 100%
    }
}

@media (min-width:62rem) {
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9 {
        float: left
    }

    .col-lg-1 {
        width: 8.33333%
    }

    .col-lg-2 {
        width: 16.66667%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-4 {
        width: 33.33333%
    }

    .col-lg-5 {
        width: 41.66667%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-7 {
        width: 58.33333%
    }

    .col-lg-8 {
        width: 66.66667%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-10 {
        width: 83.33333%
    }

    .col-lg-11 {
        width: 91.66667%
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-pull-1 {
        right: 8.33333%
    }

    .col-lg-pull-2 {
        right: 16.66667%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-4 {
        right: 33.33333%
    }

    .col-lg-pull-5 {
        right: 41.66667%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-7 {
        right: 58.33333%
    }

    .col-lg-pull-8 {
        right: 66.66667%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-10 {
        right: 83.33333%
    }

    .col-lg-pull-11 {
        right: 91.66667%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-push-1 {
        left: 8.33333%
    }

    .col-lg-push-2 {
        left: 16.66667%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-4 {
        left: 33.33333%
    }

    .col-lg-push-5 {
        left: 41.66667%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-7 {
        left: 58.33333%
    }

    .col-lg-push-8 {
        left: 66.66667%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-10 {
        left: 83.33333%
    }

    .col-lg-push-11 {
        left: 91.66667%
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }

    .col-lg-offset-1 {
        margin-left: 8.33333%
    }

    .col-lg-offset-2 {
        margin-left: 16.66667%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333%
    }

    .col-lg-offset-5 {
        margin-left: 41.66667%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333%
    }

    .col-lg-offset-8 {
        margin-left: 66.66667%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333%
    }

    .col-lg-offset-11 {
        margin-left: 91.66667%
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }
}

@media (min-width:75rem) {
    .container {
        max-width: 73.125rem
    }

    .col-xl-1,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9 {
        float: left
    }

    .col-xl-1 {
        width: 8.33333%
    }

    .col-xl-2 {
        width: 16.66667%
    }

    .col-xl-3 {
        width: 25%
    }

    .col-xl-4 {
        width: 33.33333%
    }

    .col-xl-5 {
        width: 41.66667%
    }

    .col-xl-6 {
        width: 50%
    }

    .col-xl-7 {
        width: 58.33333%
    }

    .col-xl-8 {
        width: 66.66667%
    }

    .col-xl-9 {
        width: 75%
    }

    .col-xl-10 {
        width: 83.33333%
    }

    .col-xl-11 {
        width: 91.66667%
    }

    .col-xl-12 {
        width: 100%
    }

    .col-xl-pull-0 {
        right: auto
    }

    .col-xl-pull-1 {
        right: 8.33333%
    }

    .col-xl-pull-2 {
        right: 16.66667%
    }

    .col-xl-pull-3 {
        right: 25%
    }

    .col-xl-pull-4 {
        right: 33.33333%
    }

    .col-xl-pull-5 {
        right: 41.66667%
    }

    .col-xl-pull-6 {
        right: 50%
    }

    .col-xl-pull-7 {
        right: 58.33333%
    }

    .col-xl-pull-8 {
        right: 66.66667%
    }

    .col-xl-pull-9 {
        right: 75%
    }

    .col-xl-pull-10 {
        right: 83.33333%
    }

    .col-xl-pull-11 {
        right: 91.66667%
    }

    .col-xl-pull-12 {
        right: 100%
    }

    .col-xl-push-0 {
        left: auto
    }

    .col-xl-push-1 {
        left: 8.33333%
    }

    .col-xl-push-2 {
        left: 16.66667%
    }

    .col-xl-push-3 {
        left: 25%
    }

    .col-xl-push-4 {
        left: 33.33333%
    }

    .col-xl-push-5 {
        left: 41.66667%
    }

    .col-xl-push-6 {
        left: 50%
    }

    .col-xl-push-7 {
        left: 58.33333%
    }

    .col-xl-push-8 {
        left: 66.66667%
    }

    .col-xl-push-9 {
        left: 75%
    }

    .col-xl-push-10 {
        left: 83.33333%
    }

    .col-xl-push-11 {
        left: 91.66667%
    }

    .col-xl-push-12 {
        left: 100%
    }

    .col-xl-offset-0 {
        margin-left: 0
    }

    .col-xl-offset-1 {
        margin-left: 8.33333%
    }

    .col-xl-offset-2 {
        margin-left: 16.66667%
    }

    .col-xl-offset-3 {
        margin-left: 25%
    }

    .col-xl-offset-4 {
        margin-left: 33.33333%
    }

    .col-xl-offset-5 {
        margin-left: 41.66667%
    }

    .col-xl-offset-6 {
        margin-left: 50%
    }

    .col-xl-offset-7 {
        margin-left: 58.33333%
    }

    .col-xl-offset-8 {
        margin-left: 66.66667%
    }

    .col-xl-offset-9 {
        margin-left: 75%
    }

    .col-xl-offset-10 {
        margin-left: 83.33333%
    }

    .col-xl-offset-11 {
        margin-left: 91.66667%
    }

    .col-xl-offset-12 {
        margin-left: 100%
    }
}

@font-face {
    font-family: houschka_rounded-bold;
    src: url(assets/fonts/houschkarounded-bold-webfont.eot);
    src: url(assets/fonts/houschkarounded-bold-webfont.eot?#iefix) format("embedded-opentype"), url(assets/fonts/houschkarounded-bold-webfont.woff2) format("woff2"), url(assets/fonts/houschkarounded-bold-webfont.woff) format("woff"), url(assets/fonts/houschkarounded-bold-webfont.ttf) format("truetype"), url(assets/fonts/houschkarounded-bold-webfont.svg#houschka_roundedbold) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: houschka_rounded-demibold;
    src: url(assets/fonts/houschkarounded-demibold-webfont.eot);
    src: url(assets/fonts/houschkarounded-demibold-webfont.eot?#iefix) format("embedded-opentype"), url(assets/fonts/houschkarounded-demibold-webfont.woff2) format("woff2"), url(assets/fonts/houschkarounded-demibold-webfont.woff) format("woff"), url(assets/fonts/houschkarounded-demibold-webfont.ttf) format("truetype"), url(assets/fonts/houschkarounded-demibold-webfont.svg#houschka_roundeddemibold) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: houschka_rounded-medium;
    src: url(assets/fonts/houschkarounded-medium-webfont.eot);
    src: url(assets/fonts/houschkarounded-medium-webfont.eot?#iefix) format("embedded-opentype"), url(assets/fonts/houschkarounded-medium-webfont.woff2) format("woff2"), url(assets/fonts/houschkarounded-medium-webfont.woff) format("woff"), url(assets/fonts/houschkarounded-medium-webfont.ttf) format("truetype"), url(assets/fonts/houschkarounded-medium-webfont.svg#houschka_roundedmedium) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: houschka_headmedium;
    src: url(assets/fonts/houschkahead-medium-web.eot);
    src: url(assets/fonts/houschkahead-medium-web.eot?#iefix) format("embedded-opentype"), url(assets/fonts/houschkahead-medium-web.woff2) format("woff2"), url(assets/fonts/houschkahead-medium-web.woff) format("woff"), url(assets/fonts/houschkahead-medium-web.ttf) format("truetype"), url(assets/fonts/houschkahead-medium-web.svg#houschka_headmedium) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: houschka_headdemibold;
    src: url(assets/fonts/houschkahead-demibold-web.eot);
    src: url(assets/fonts/houschkahead-demibold-web.eot?#iefix) format("embedded-opentype"), url(assets/fonts/houschkahead-demibold-web.woff2) format("woff2"), url(assets/fonts/houschkahead-demibold-web.woff) format("woff"), url(assets/fonts/houschkahead-demibold-web.ttf) format("truetype"), url(assets/fonts/houschkahead-demibold-web.svg#houschka_headdemibold) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: houschka_headbold;
    src: url(assets/fonts/houschkahead-bold-web.eot);
    src: url(assets/fonts/houschkahead-bold-web.eot?#iefix) format("embedded-opentype"), url(assets/fonts/houschkahead-bold-web.woff2) format("woff2"), url(assets/fonts/houschkahead-bold-web.woff) format("woff"), url(assets/fonts/houschkahead-bold-web.ttf) format("truetype"), url(assets/fonts/houschkahead-bold-web.svg#houschka_headbold) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-size: 1rem;
    line-height: 1.375rem;
    letter-spacing: -.5px
}

p {
    margin-top: 0
}

body,
button,
input,
select,
textarea {
    font-family: houschka_headmedium, Helvetica, Arial, sans-serif
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
a.back-link,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    color: #ed1c24;
    margin: 1.4rem 0
}

.h1,
h1 {
    letter-spacing: -.05rem;
    font-size: 3.125rem;
    line-height: 3.125rem
}

@media (min-width:34rem) {
    .h1,
    h1 {
        font-size: 5rem;
        line-height: 6.3125rem
    }
}

.h2,
h2 {
    font-size: 1.875rem;
    line-height: 2.125rem
}

@media (min-width:34rem) {
    .h2,
    h2 {
        font-size: 3.75rem;
        line-height: 4rem
    }
}

.h3,
h3 {
    font-size: 1.125rem;
    line-height: 1.3125rem
}

@media (min-width:34rem) {
    .h3,
    h3 {
        font-size: 2.1875rem;
        line-height: 3rem
    }
}

.h4,
h4 {
    font-size: 1.625rem;
    line-height: 1.875rem
}

@media (min-width:34rem) {
    .h4,
    h4 {
        font-size: 1.875rem;
        line-height: 2.5rem
    }
}

.h5,
h2.section__mini-title,
h5 {
    font-size: 1.25rem;
    line-height: 1.5rem
}

@media (min-width:34rem) {
    .h5,
    h2.section__mini-title,
    h5 {
        font-size: 1.5rem;
        line-height: 1.875rem
    }
}

.h6,
h6 {
    font-size: 1rem;
    line-height: 1.25rem
}

@media (min-width:34rem) {
    .h6,
    h6 {
        font-size: 1.25rem;
        line-height: 1.625rem
    }
}

.icon-circle-tick {
    background: #ed1c24;
    border-radius: 100%;
    display: inline-block;
    height: 20px;
    position: relative;
    width: 20px
}

    .icon-circle-tick:before {
        font-size: 1rem;
        line-height: 1rem;
        color: #fff;
        left: 2px;
        position: absolute;
        top: 4px
    }

a {
    color: #ed1c24
}

    a:hover {
        color: #c5191f
    }

    a.back-link {
        font-size: 1.125rem;
        line-height: 1.6875rem
    }

        a.back-link .fa-long-arrow-left {
            margin-right: 10px
        }

@media (min-width:34rem) {
    a.back-link {
        font-size: 1.5rem;
        line-height: 2.25rem
    }

        a.back-link .fa-long-arrow-left {
            margin-right: 20px
        }
}

.card__header h4 {
    color: #ed1c24;
    font-family: houschka_headmedium, Helvetica, Arial, sans-serif;
    margin: .5rem 2.5rem .5rem 0
}

.card__header h5 {
    color: #ed1c24;
    font-family: houschka_headmedium, Helvetica, Arial, sans-serif;
    margin: .5rem 0rem .5rem 0
}

.resource__article .article__summary .tagline .resource-type,
a.see-all {
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: .0625rem solid #e7e6e6
}

.small,
small {
    font-size: 90%;
    font-weight: 400
}

    .small.caveat,
    small.caveat {
        color: #d71319;
        line-height: .5rem
    }

.mark,
mark {
    padding: .2em
}

ol,
ul {
    margin-left: 20px;
    padding: 0
}

    ol > li,
    ul > li {
        margin-bottom: 10px;
        padding-left: 10px
    }

.list-inline,
.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    margin-left: -5px
}

    .list-inline > li {
        display: inline-block;
        padding-right: 5px;
        padding-left: 5px
    }

form input,
form label,
form select {
    font-size: 1.25rem;
    line-height: 1.625rem
}

@media (min-width:34rem) {
    form input,
    form label,
    form select {
        font-size: .9375rem;
        line-height: 1.3125rem
    }
}

/*
  .nav-locked body {
      padding-top: 3.75rem
  }
  */

@media (min-width:48rem) {
    /*
      .nav-locked body {
          padding-top: 6.5rem
      }
  */
    a.see-all {
        float: right
    }
}

.hidden {
    display: none !important
}

.visually-hidden {
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    position: absolute
}

.tip {
    display: none
}

.ir {
    text-indent: 100%;
    overflow: hidden
}

.smooth.smooth--slide-scroll {
    display: block;
    margin: 350px auto 0
}

a.see-all {
    font-size: .875rem;
    line-height: 1.3125rem;
    padding-right: 30px;
    position: relative;
    margin-right: 12px;
    margin-top: 30px
}

@media (min-width:62rem) {
    a.see-all {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

a.see-all i {
    font-size: 3rem;
    line-height: 2.875rem;
    position: absolute;
    right: 0;
    top: 18px;
    margin-right: -20px;
    margin-top: -20px
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.site-header,
.text-center {
    text-align: center
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none !important
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.v-center-wrap {
    display: table;
    height: 100%;
    width: 100%;
    min-height: inherit
}

    .v-center-wrap .row,
    .v-center-wrap.row {
        margin: 0
    }

    .v-center-wrap .v-center {
        display: table-cell;
        vertical-align: middle;
        float: none
    }

.hidden-xl-down,
.hidden-xs-up {
    display: none !important
}

@media (min-width:34rem) {
    .text-center-d {
        text-align: center
    }

    .hidden-sm-up {
        display: none !important
    }
}

@media (max-width:61.9rem) {
    .hidden-md-down {
        display: none !important
    }
}

@media (min-width:62rem) {
    .hidden-lg-up {
        display: none !important
    }
}

@media (max-width:74.9rem) {
    .hidden-lg-down {
        display: none !important
    }
}

@media (min-width:75rem) {
    .hidden-xl-up {
        display: none !important
    }
}

@media (max-width:47.9rem) {
    .hidden-sm-down {
        display: none !important
    }

    .no-side-padding,
    .no-side-padding-m [class*=col-] {
        padding-left: 0 !important;
        padding-right: 0 !important
    }
}

@media (max-width:33.9rem) {
    .hidden-xs-down {
        display: none !important
    }

    .no-side-padding,
    .no-side-padding-xs [class*=col-] {
        padding-left: 0 !important;
        padding-right: 0 !important
    }
}

@-webkit-keyframes showAnimation {
    0% {
        -webkit-transform: scaleY(.1);
        transform: scaleY(.1)
    }

    40% {
        -webkit-transform: scaleY(1.04);
        transform: scaleY(1.04)
    }

    60% {
        -webkit-transform: scaleY(.98);
        transform: scaleY(.98)
    }

    80% {
        -webkit-transform: scaleY(1.02);
        transform: scaleY(1.02)
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}

@keyframes showAnimation {
    0% {
        -webkit-transform: scaleY(.1);
        transform: scaleY(.1)
    }

    40% {
        -webkit-transform: scaleY(1.04);
        transform: scaleY(1.04)
    }

    60% {
        -webkit-transform: scaleY(.98);
        transform: scaleY(.98)
    }

    80% {
        -webkit-transform: scaleY(1.02);
        transform: scaleY(1.02)
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }
}

@-webkit-keyframes hideAnimation {
    0% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }

    60% {
        -webkit-transform: scaleY(.98);
        transform: scaleY(.98)
    }

    80% {
        -webkit-transform: scaleY(1.02);
        transform: scaleY(1.02)
    }

    100% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }
}

@keyframes hideAnimation {
    0% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1)
    }

    60% {
        -webkit-transform: scaleY(.98);
        transform: scaleY(.98)
    }

    80% {
        -webkit-transform: scaleY(1.02);
        transform: scaleY(1.02)
    }

    100% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0)
    }
}

.resource__article h1 {
    font-size: 1.875rem;
    line-height: 2.125rem
}


.resource__article h1 {
    font-size: 1.875rem;
    line-height: 2.125rem
}


.article__body h6 {
    font-size: 16px;
    line-height: 26px;
}

.article__body h1 {
    font-size: 1.625rem !important;
    line-height: 2.125rem !important;
    margin: 1.875rem 0 0px 0;
}

.article__body h2 {
    font-size: 1.5rem !important;
    line-height: 1.9375rem !important;
    margin: 1.875rem 0 0.625rem 0;
}

.article__body h3 {
    font-size: 1.375rem;
    line-height: 1.8125rem;
    margin: 1.875rem 0 0px 0;
}

.article__body h4 {
    font-size: 1.25rem;
    line-height: 1.8125rem;
    margin: 1.875rem 0 0px 0;
}

.article__body h5 {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    margin: 1.875rem 0 0px 0;
}

.article__body h6 {
    font-size: 0.875rem;
    line-height: 1.5625rem;
    margin: 1.875rem 0 0px 0;
}

.article__body p {
    font-size: 1rem;
    line-height: 1.6875rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.0001rem;
}


.article__body li {
    font-weight: 400;
    margin: 0rem 0 !important;
    font-size: 1rem;
    line-height: 1.6875rem;
}

.article__body ul {
    margin-left: 20px !important;
    margin-left: 12px !important;
    padding-left: 5px !important;
    margin-bottom: 0px !important;
}

.article__body ol li {
    list-style: decimal;
    margin-left: 0 !important;
    padding-left: 0px !important;
    margin-bottom: 0px !important;
    margin: 0rem 0;
}

.article__body ul li {
    list-style: disc;
    margin-left: 0 !important;
    padding-left: 5px !important;
    margin-bottom: 0px !important;
    margin: 0rem 0 !important;
}


@media (min-width:48rem) {



    .article__body h1 {
        font-size: 1.625rem !important;
        line-height: 2.25rem !important;
        margin: 1.75rem 0 0px 0;
    }

    .article__body h2 {
        font-size: 1.5rem !important;
        line-height: 2.125rem !important;
        margin: 1.75rem 0 0px 0;
    }

    .article__body h3 {
        font-size: 1.375rem;
        line-height: 2rem;
        margin: 1.75rem 0 0px 0;
    }

    .article__body h4 {
        font-size: 1.25rem;
        line-height: 1.875rem;
        margin: 1.75rem 0 0px 0;
    }

    .article__body h5 {
        font-size: 1.125rem;
        line-height: 1.75rem;
        margin: 1.75rem 0 0px 0;
    }

    .article__body h6 {
        font-size: 1rem;
        line-height: 1.625rem;
        margin: 1.75rem 0 0px 0;
    }

    .article__body p {
        font-size: 1.063rem;
        line-height: 1.875rem;
        font-weight: 400;
        margin: 0.313rem 0 0px 0;
    }


    .article__body li {
        font-weight: 400;
        margin: 0rem 0 !important;
        font-size: 1.063rem;
        line-height: 1.875rem;
    }

    .article__body ul {
        margin-left: 20px !important;
    }

    .article__body ol li {
        list-style: decimal;
        margin-left: 0 !important;
        padding-left: 5px !important;
        margin-bottom: 0px !important;
        margin: 0rem 0;
    }

    .article__body ul li {
        list-style: disc;
        margin-left: 0 !important;
        padding-left: 5px !important;
        margin-bottom: 0px !important;
        margin: 0rem 0 !important;
    }

    .article__body ol li {
        list-style: decimal;
    }


    .hidden-md-up {
        display: none !important
    }

    .no-side-padding,
    .no-side-padding-d [class*=col-] {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .side-padding {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }

    .resource__article h1 {
        font-size: 3.75rem;
        line-height: 4rem
    }
}

.resource__article .article__summary .summary-text p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: #000;
    font-weight: 600
}

@media (min-width:48rem) {
    .resource__article .article__summary .summary-text p {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .resource__article .article__summary .tagline:after,
    .resource__article .article__summary .tagline:before {
        content: " ";
        display: table
    }

    .resource__article .article__summary .tagline:after {
        clear: both
    }
}

.resource__article .article__summary .tagline {
    margin-bottom: 1.5rem;
}

.resource__article .article__body .tagline {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.resource__article .article__summary .tagline .resource-type {
    font-size: .75rem;
    line-height: 0;
    color: #bf0d3e;
    display: block
}

@media (min-width:48rem) {
    .resource__article .article__summary .tagline .resource-type {
        font-size: 1rem;
        line-height: 0;
        float: left
    }
}

.resource__article .article__summary .tagline .resource-type .icon {
    font-size: 2.25rem;
    line-height: 0;
    top: 10px;
    position: relative;
    left: -10px;
    margin-top: -14px
}

@media (min-width:48rem) {
    .resource__article .article__summary .tagline .resource-type .icon {
        font-size: 3.75rem;
        line-height: 0;
        top: 13px;
        margin-top: -16px;
        left: -18px;
        margin-right: -20px
    }
}

.resource__article .article__summary .tagline .timestamp {
    font-size: .75rem;
    line-height: .625rem;
    color: #000;
    display: block;
    font-weight: 600;
    margin-top: 1.25rem
}

.resource__article .article__summary .tagline .share {
    padding-bottom: 1.125rem
}

    .resource__article .article__summary .tagline .share:after,
    .resource__article .article__summary .tagline .share:before {
        content: " ";
        display: table
    }

@media (min-width:48rem) {
    .resource__article .article__summary .tagline .timestamp {
        font-size: .875rem;
        line-height: .75rem;
        float: right;
        margin-top: 1.25rem
    }

    .resource__article .article__summary .tagline .share {
        position: absolute;
        left: -68px;
        width: 80px
    }
}

@media (min-width:62rem) {
    .resource__article .article__summary .tagline .share {
        left: -120px
    }
}

.resource__article .article__summary .tagline .share span {
    float: left;
    margin-top: .625rem;
    margin-right: .625rem;
    opacity: .5;
    font-weight: 700
}

@media (min-width:48rem) {
    .resource__article .article__summary .tagline .share span {
        float: none
    }
}

.resource__article .article__summary .tagline .share .share__icons {
    float: left
}

.resource__article .article__summary .leading-image {
    width: 100%
}

    .resource__article .article__summary .leading-image img {
        width: 100%;
        border-radius: 4px
    }

.resource__article .article__body {
    padding-top: 1rem
}

    .resource__article .article__body .article-section-heading {
        font-size: 1.125rem;
        line-height: 1.25rem;
        color: #000
    }

    .resource__article .article__body .article-aside {
        border-top: 1px solid rgba(35, 31, 32, .15);
        border-bottom: 1px solid rgba(35, 31, 32, .15);
        padding: 1.125rem 6px;
        margin: .875rem 0 .5rem
    }

@media (min-width:48rem) {
    .resource__article .article__summary .tagline .share .share__icons {
        float: none
    }

    .resource__article .article__body .article-section-heading {
        font-size: 1.625rem;
        line-height: 1.875rem
    }

    .resource__article .article__body .article-aside {
        margin: 4rem 0 3rem;
        padding: 3rem 6px
    }
}

.resource__article .article__body .article-aside p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: #ed1c24;
    text-align: center;
    margin: 0
}

.resource__article .article__body ul {
    margin-left: 20px
}

@media (min-width:48rem) {
    .resource__article .article__body .article-aside p {
        font-size: 1.875rem;
        line-height: 2.625rem
    }

    .resource__article .article__body ul {
        margin-left: 36px
    }

    .article__links {
        padding-top: 2rem
    }

        .article__links > div {
            border-top: 1px solid rgba(35, 31, 32, .15)
        }
}

.article__links > div {
    padding: 0
}

@-webkit-keyframes headerReveal {
    0% {
        top: -3.75rem
    }

    100% {
        top: 0
    }
}

@keyframes headerReveal {
    0% {
        top: -3.75rem
    }

    100% {
        top: 0
    }
}

@-webkit-keyframes headerRevealLarge {
    0% {
        top: -6.5rem
    }

    100% {
        top: 0
    }
}

@keyframes headerRevealLarge {
    0% {
        top: -6.5rem
    }

    100% {
        top: 0
    }
}

@-webkit-keyframes searchReveal {
    0% {
        display: none;
        max-height: 0;
        overflow: hidden
    }

    1% {
        display: block;
        max-height: 0;
        overflow: hidden
    }

    100% {
        display: block;
        max-height: 500px;
        overflow: hidden
    }
}

@keyframes searchReveal {
    0% {
        display: none;
        max-height: 0;
        overflow: hidden
    }

    1% {
        display: block;
        max-height: 0;
        overflow: hidden
    }

    100% {
        display: block;
        max-height: 500px;
        overflow: hidden
    }
}

.site-header {
    background: #ed1c24;
    height: 3.75rem;
    padding: 1.125rem 6px;
    position: relative
}

    .site-header .search-bar-container {
        display: none;
        max-height: 0;
        overflow: hidden;
        -webkit-animation: searchReveal .6s ease-out;
        animation: searchReveal .6s ease-out
    }

@media (min-width:48rem) {
    .search-bar-active .site-header .search-bar-container {
        display: block;
        position: absolute;
        z-index: 2;
        left: 0;
        right: 0;
        max-height: 500px;
        overflow: hidden
    }
}

/*
  .nav-locked .site-header {
      -webkit-animation: headerReveal .3s linear;
      animation: headerReveal .3s linear;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10
  }
  */

.site-header .header-container {
    position: relative
}

@-webkit-keyframes hover {
    0% {
        background-position: center -50%
    }

    100% {
        background-position: center 50%
    }
}

@-webkit-keyframes hoverOut {
    0% {
        background-position: center 150%
    }

    100% {
        background-position: center 50%
    }
}

@media (min-width:48rem) {
    .site-header {
        height: 6.5rem;
        text-align: left;
        padding: 1.125rem 20px
    }

    .nav-locked .site-header {
        -webkit-animation: headerRevealLarge .3s linear;
        animation: headerRevealLarge .3s linear
    }
}

.site-footer {
    background-color: #ed1c24;
    color: #fff;
    width: 100%;
    text-align: center;
}

    .site-footer a {
        color: #fff
    }

    .site-footer ul {
        list-style: none;
        margin-left: 0;
        margin-bottom: 0px;
    }

@media (max-width:47.9rem) {
    .site-footer .footer-map p {
        display: none
    }

    .site-footer ul {
        display: none
    }
}

.site-footer li {
    padding-left: 0;
    margin-bottom: 5px
}

    .site-footer li a {
        color: #b2b2b2;
        font-size: 14px;
    }

        .site-footer li a:hover {
            color: #fff
        }

.site-footer h2 {
    color: #888f92
}

.site-footer .footer__top {
    background: #394448;
    padding-top: 0.2rem;
    padding-bottom: 1rem
}

    .site-footer .footer__top .container > div {
        padding-left: 1rem;
        padding-right: 1rem;
        position: relative;
        top: 0;
        vertical-align: top;
        display: inline-block
    }

        .site-footer .footer__top .container > div.footer-search {
            margin-right: 1rem;
            padding-left: 0
        }

@media (max-width:61.9rem) {
    .site-footer .footer__top .container > div.footer-search {
        display: block
    }
}

.site-footer .footer__top .container > div.footer-search h5 {
    margin-top: 0;
    margin-bottom: .5rem
}

@media (max-width:47.9rem) {
    .site-footer .footer__top .container > div.footer-search {
        display: block;
        width: 100%
    }

        .site-footer .footer__top .container > div.footer-search h5 {
            display: inline-block
        }

            .site-footer .footer__top .container > div.footer-search h5:first-of-type {
                margin-right: 40px
            }
}

.site-footer .footer__top .container > div.footer-branch {
    margin-top: .5rem;
    margin-right: 1rem
}

    .site-footer .footer__top .container > div.footer-branch fieldset {
        border: 0;
        border-bottom: 1px solid #fff;
        margin-top: -4px;
        position: relative
    }

        .site-footer .footer__top .container > div.footer-branch fieldset input[type=text] {
            background-color: transparent;
            border: 0;
            outline: 0;
            color: #fff;
            position: relative;
            left: -12px;
            top: 5px;
            font-size: .875rem;
            line-height: .875rem;
            text-indent: 12px;
        }

@media (max-width:47.9rem) {
    .site-footer .footer__top .container > div.footer-branch fieldset input[type=text] {
        width: 90%;
        margin: 0;
        left: 0;
        top: 0
    }
}

.site-footer .footer__top .container > div.footer-branch fieldset .search-submit {
    background: 0 0;
    border: none;
    box-shadow: none;
    color: #fff;
    height: 25px;
    padding: 0;
    position: relative;
    right: -11px;
    top: 17px;
    width: 25px;
    font-size: 2rem;
    line-height: 1.875rem
}

@media (max-width:47.9rem) {
    .site-footer .footer__top .container > div.footer-branch fieldset .search-submit {
        position: absolute;
        left: auto;
        right: 0;
        top: 0;
        font-size: 2.5rem;
        line-height: 2.5rem
    }

    .site-footer .footer__top .container > div.footer-branch fieldset {
        padding: 0;
        margin: 0
    }

    .site-footer .footer__top .container > div.footer-branch {
        padding-left: 0;
        display: block;
        width: 100%
    }
}

.site-footer .footer__top .container > div.footer-linkset1,
.site-footer .footer__top .container > div.footer-linkset2,
.site-footer .footer__top .container > div.footer-linkset3 {
    margin-top: .5rem
}

@media (max-width:74.9rem) {
    .site-footer .footer__top .container > div.footer-search {
        padding-right: 0
    }

    .site-footer .footer__top .container > div.footer-branch {
        padding-left: 0;
        padding-right: 0
    }

    .site-footer .footer__top .container > div.footer-linkset1,
    .site-footer .footer__top .container > div.footer-linkset2,
    .site-footer .footer__top .container > div.footer-linkset3 {
        padding-left: 0
    }
}

.site-footer .footer__top .container > div.footer-social {
    margin-top: 0px;
    float: right
}

    .site-footer .footer__top .container > div.footer-social p {
        margin-bottom: 1.5rem;
        text-align: center;
        font-size: 22px;
        border-top: 2px solid #555;
        padding-top: 15px;
    }

@media (max-width:47.9rem) {
    .site-footer .footer__top .container > div.footer-linkset1,
    .site-footer .footer__top .container > div.footer-linkset2,
    .site-footer .footer__top .container > div.footer-linkset3 {
        padding-left: 0;
        display: block
    }

    .site-footer .footer__top .container > div.footer-social p {
        border-top: none;
        padding-top: 0px;
    }

    .site-footer .footer__top .container > div.footer-social {
        margin-top: 0rem;
        float: right
    }
}

.site-footer .footer__top .container > div.footer-social i {
    font-size: 1.2rem;
    line-height: 2.2rem;
    position: relative;
    display: inline-block;
    left: 0;
    margin-left: 0px;
    margin-right: 0px;
}

.footer-social {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

    .footer-social i {
        font-size: 3rem;
        line-height: 3rem;
        position: relative;
        display: inline-block;
        left: 0;
        margin-left: -4px;
        margin-right: -4px
    }

@media (max-width:61.9rem) {
    .site-footer .footer__top .container > div.footer-social {
        padding-left: 0;
        display: block;
        width: 100%
    }
}

@media (max-width:47.9rem) {
    .site-footer .footer__top .container > div.footer-social {
        float: left;
        margin-left: -2px;
        padding: 0
    }
}

.site-footer .footer__bottom {
    background-color: #293134;
    padding-top: 1rem;
    /*    padding-bottom: 1rem*/
}

.footer__bottom .container {
    padding-bottom: 1rem
}

.site-footer .footer__bottom .container > div {
    display: inline-block;
    padding-left: 1rem;
    padding-right: 1rem
}

    .site-footer .footer__bottom .container > div.footer-logo img {
        opacity: .2;
        width: 116px
    }

    .site-footer .footer__bottom .container > div.footer-logo {
        display: inline-block;
        width: auto;
        text-align: left;
    }

@media (max-width:60.9rem) {
    .site-footer .footer__bottom .container > div.footer-logo {
        display: block;
        width: 100%;
        text-align: center;
    }
}

.site-footer .footer__bottom .container > div.footer-linkset4 {
    position: relative;
    top: 5px;
    text-align: center;
    width: 100%;
}

    .site-footer .footer__bottom .container > div.footer-linkset4 .linkgroup {
        display: inline-block
    }

        .site-footer .footer__bottom .container > div.footer-linkset4 .linkgroup a {
            padding-right: 2rem
        }

.site-footer .footer__bottom .container > div.footer-login {
    position: relative
}

@media (max-width:47.9rem) {
    .site-footer .footer__bottom .container > div.footer-linkset4 .linkgroup {
        display: block;
        width: 100%;
        height: 40px
    }

        .site-footer .footer__bottom .container > div.footer-linkset4 .linkgroup:first-of-type {
            margin-top: 20px
        }

        .site-footer .footer__bottom .container > div.footer-linkset4 .linkgroup a {
            display: inline-block;
            float: left;
            width: 100%;
            padding-bottom: 10px;
            padding-right: 0
        }

            .site-footer .footer__bottom .container > div.footer-linkset4 .linkgroup a:nth-of-type(even) {
                float: right
            }

    .site-footer .footer__bottom .container > div.footer-linkset4 {
        display: block;
        width: 100%
    }

    .site-footer .footer__bottom .container > div.footer-login {
        top: -8px;
        width: 100%;
        margin-left: 0;
        margin-top: 1.5rem;
    }

        .site-footer .footer__bottom .container > div.footer-login a {
            display: block;
            width: 100%;
            padding-bottom: 1rem;
            font-size: 1.25rem;
            line-height: 1.5rem;
            text-align: center;
        }

            .site-footer .footer__bottom .container > div.footer-login a:first-of-type {
                /*        border-top: 2px solid #555;*/
                padding-top: 1.5rem
            }
}

.site-footer .footer__bottom .container > div.footer-login {
    float: none;
    margin-left: 0px;
    text-align: center;
    width: 100%;
    margin-top: 30px;
    padding-top: 10px;
    border-top: 2px solid #555;
}

@media (min-width:48rem) {
    .site-footer .footer__bottom .container > div.footer-login {
        float: none;
        margin-left: 0px;
        text-align: center;
        width: 100%;
        margin-top: 30px;
        padding-top: 10px;
        border-top: 2px solid #555;
    }
}

@media (min-width:62rem) {



    .site-footer .footer__bottom .container > div.footer-login {
        margin-left: 0;
        float: right;
        top: 3px
    }
}

.exit-links {
    background: #394449;
    padding: 20px 0
}

    .exit-links a {
        font-size: 1.25rem;
        line-height: 2rem;
        color: #f1f1f1;
        display: block;
        padding-left: 5px;
        padding-bottom: 5px;
        position: relative;
        border-bottom: 1px solid #989898;
        -webkit-transition: all ease .2s;
        transition: all ease .2s
    }

        .exit-links a:after {
            content: '\f178';
            font-family: FontAwesome;
            position: absolute;
            right: 5px
        }

        .exit-links a:hover {
            color: #d8d8d8
        }

.search-filter__trigger {
    color: #4f4e4e !important;
    text-align: center;
    background: #f1f1f1;
    padding: 1.5rem 1rem 1.5rem 0;
    position: relative;
    cursor: pointer;
    margin: 0
}

    .search-filter__trigger i {
        font-size: 2.1875rem;
        line-height: 0;
        color: #ed1c24;
        margin-left: 1rem;
        position: relative;
        top: .2rem;
        vertical-align: middle
    }

.search-form-wrap {
    background: #e7e6e6;
    position: relative;
    display: none
}

@media (min-width:62rem) {
    .search-form-wrap {
        border-right: 1px solid #e7e6e6;
        display: block;
        margin-top: 1.4em;
        padding-right: .5rem !important;
        width: 100% !important
    }
}

.search-form-wrap.open {
    display: block;
    left: 0;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2
}

.search-form-wrap h2 {
    color: #ed1c24;
    margin-left: auto;
    margin-right: auto;
    padding: 0 .75rem;
    position: relative;
    font-size: 1.5625rem;
    line-height: 1.875rem
}

    .search-form-wrap h2 i {
        float: right;
        cursor: pointer
    }

@media (min-width:34rem) {
    .search-form-wrap h2 {
        max-width: 34rem
    }
}

@media (min-width:48rem) {
    .search-form-wrap h2 {
        max-width: 45rem
    }
}

@media (min-width:62rem) {
    .search-form-wrap h2 {
        max-width: 60rem;
        color: #000;
        margin-bottom: 0;
        margin-top: 0;
        padding-bottom: .8rem;
        font-size: 1.5625rem;
        line-height: 1.625rem
    }

        .search-form-wrap h2 i {
            display: none
        }
}

@media (min-width:75rem) {
    .search-form-wrap h2 {
        max-width: 73.125rem
    }
}

@media (min-width:62rem) {
    .search-form-wrap {
        background: 0 0
    }
}

.search-page {
    background: #efefef
}

    .search-page main,
    .search-results {
        position: relative
    }

        .search-results .h6 {
            border-bottom: 1px solid #dad9d9;
            color: #000;
            padding-bottom: 1.5rem
        }

@media (max-width:47.9rem) {
    .search-results .h6 {
        font-size: 1rem;
        line-height: 1.25rem;
        text-align: center
    }
}

.search-results .h6 .keyword,
.search-results .h6 .location {
    color: #ed1c24
}

.search-results__actions {
    font-size: 1rem;
    line-height: 30px;
    line-height: 1.25rem;
    display: block;
    margin-bottom: 1.5rem;
    text-align: center;
}

    .search-results__actions input {
        border-radius: 5px 5px 5px 5px;
        -moz-border-radius: 5px 5px 5px 5px;
        -webkit-border-radius: 5px 5px 5px 5px;
        border: 0px solid #000000;
        outline: none;
        line-height: 30px;
        font-size: 16px;
        min-width: 215px;
    }

        .search-results__actions input.search {
            border-radius: 5px 5px 5px 5px;
            -moz-border-radius: 5px 5px 5px 5px;
            -webkit-border-radius: 5px 5px 5px 5px;
            border: 0px solid #000000;
            outline: none;
            line-height: 30px;
            font-size: 16px;
            min-width: 215px;
            box-shadow: none;
            cursor: auto;
        }

        .search-results__actions input:focus {
            border: 1px solid #ed1c24;
            box-shadow: 0 0 5px rgba(81, 203, 238, 1);
        }

@media (min-width:48rem) {
    .search-results .h6 .keyword,
    .search-results .h6 .location {
        color: #000
    }

    .search-results__actions {
        font-size: 1.25rem;
        line-height: 1.625rem;
        position: absolute;
        right: 0;
        top: 0
    }
}

.search-results__actions .alert-me {
    margin-right: 1.5rem
}

.browse-jobs__top {
    overflow: hidden;
    position: relative
}

    .browse-jobs__top .h2,
    .browse-jobs__top h2 {
        position: relative;
        cursor: pointer;
        margin-bottom: .2rem
    }

        .browse-jobs__top .h2 i,
        .browse-jobs__top h2 i {
            position: absolute;
            right: 0;
            top: 12px;
            -webkit-transition: all .2s ease;
            transition: all .2s ease;
            font-size: 1.25rem;
            line-height: 1.25rem
        }

        .browse-jobs__top .h2.open i,
        .browse-jobs__top h2.open i {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg)
        }

    .browse-jobs__top p {
        display: none
    }

@media (min-width:34rem) {
    .browse-jobs__top .h2 i,
    .browse-jobs__top h2 i {
        position: absolute;
        top: 15px;
        font-size: 2.5rem;
        line-height: 2.5rem
    }
}

@media (min-width:48rem) {
    .browse-jobs__top {
        text-align: center
    }

        .browse-jobs__top .h2,
        .browse-jobs__top h2 {
            cursor: auto;
            margin-bottom: .5rem
        }

        .browse-jobs__top p {
            display: block;
            font-size: 1.625rem;
            line-height: 2rem
        }
}

.browse-jobs__tabs {
    text-align: left;
    display: none;
    border-top: 1px solid #e7e6e6;
    padding-top: 10px
}

    .browse-jobs__tabs ul {
        list-style: none;
        margin: 0;
        padding: 0
    }

        .browse-jobs__tabs ul li {
            display: inline-block;
            padding: 5px 0
        }

            .browse-jobs__tabs ul li h3 {
                padding: 0 20px;
                margin: 0;
                cursor: pointer
            }

                .browse-jobs__tabs ul li h3 a {
                    color: #cacaca
                }

                .browse-jobs__tabs ul li h3.active a {
                    color: #ed1c24
                }

            .browse-jobs__tabs ul li:first-of-type h3 {
                padding-left: 0
            }

            .browse-jobs__tabs ul li:last-of-type h3 {
                padding-right: 0
            }

@media (min-width:48rem) {
    .browse-jobs__tabs ul li h3 {
        border: none;
        padding: 10px 25px;
        font-size: 1.375rem;
        line-height: 1.375rem
    }

        .browse-jobs__tabs ul li h3:hover a {
            color: #b1b1b1
        }

        .browse-jobs__tabs ul li h3.active:hover a {
            color: #ed1c24
        }

    .browse-jobs__tabs {
        text-align: center;
        display: block
    }
}

.browse-jobs__bottom {
    position: relative;
    overflow: hidden;
    background: #efefef;
    display: none
}

    .browse-jobs__bottom .browse-tab {
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        display: none;
        padding: .5rem .75rem 1.25rem 0;
        top: 0;
        left: 0;
        width: 100%
    }

        .browse-jobs__bottom .browse-tab.open {
            display: inline-block
        }

    .browse-jobs__bottom.open,
    .mini-card a,
    .mini-card a i {
        display: block
    }

    .browse-jobs__bottom .browse-tab > div {
        padding-right: 0
    }

.long-copy .mini-card {
    padding: 1.25rem;
    min-height: 200px;
    height: auto
}

    .long-copy .mini-card h3 {
        margin-top: 0;
        margin-bottom: 0
    }

.mini-card {
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    background: #fff;
    border: 1px solid #dfd7d7;
    border-radius: .4rem;
    height: 190px;
    margin: .75rem 0 0;
    cursor: pointer
}

.btn--check-profile.active,
.btn--check-profile:active,
.btn--notify.active,
.btn--notify:active,
.btn.btn--apply-cta.active,
.btn.btn--apply-cta:active,
.btn.btn--apply-indeed-cta-cancel.active,
.btn.btn--apply-indeed-cta-cancel:active,
.btn.btn--apply-indeed-cta.active,
.btn.btn--apply-indeed-cta:active,
.btn.btn--apply.active,
.btn.btn--apply:active,
.btn.btn--blue.active,
.btn.btn--blue:active,
.btn.btn--facebook.active,
.btn.btn--facebook:active,
.btn.btn--lightblue.active,
.btn.btn--lightblue:active,
.btn.btn--linkedin.active,
.btn.btn--linkedin:active,
.btn.btn--negative.active,
.btn.btn--negative.btn--add.active,
.btn.btn--negative.btn--add:active,
.btn.btn--negative.btn--enhance.active,
.btn.btn--negative.btn--enhance:active,
.btn.btn--negative.btn--facebook.active,
.btn.btn--negative.btn--facebook:active,
.btn.btn--negative.btn--import.active,
.btn.btn--negative.btn--import:active,
.btn.btn--negative.btn--linkedin.active,
.btn.btn--negative.btn--linkedin:active,
.btn.btn--negative.btn--red-on-white.active,
.btn.btn--negative.btn--red-on-white:active,
.btn.btn--negative.btn--white-on-transparent.active,
.btn.btn--negative.btn--white-on-transparent:active,
.btn.btn--negative:active,
.btn.btn--outline.active,
.btn.btn--outline:active,
.btn.btn--red.active,
.btn.btn--red:active,
.btn.btn--reset.active,
.btn.btn--reset:active,
.btn.btn--white.active,
.btn.btn--white:active,
.open > .btn--check-profile.dropdown-toggle,
.open > .btn--notify.dropdown-toggle,
.open > .btn.btn--apply-cta.dropdown-toggle,
.open > .btn.btn--apply-indeed-cta-cancel.dropdown-toggle,
.open > .btn.btn--apply-indeed-cta.dropdown-toggle,
.open > .btn.btn--apply.dropdown-toggle,
.open > .btn.btn--blue.dropdown-toggle,
.open > .btn.btn--facebook.dropdown-toggle,
.open > .btn.btn--lightblue.dropdown-toggle,
.open > .btn.btn--linkedin.dropdown-toggle,
.open > .btn.btn--negative.btn--add.dropdown-toggle,
.open > .btn.btn--negative.btn--enhance.dropdown-toggle,
.open > .btn.btn--negative.btn--facebook.dropdown-toggle,
.open > .btn.btn--negative.btn--import.dropdown-toggle,
.open > .btn.btn--negative.btn--linkedin.dropdown-toggle,
.open > .btn.btn--negative.btn--red-on-white.dropdown-toggle,
.open > .btn.btn--negative.btn--white-on-transparent.dropdown-toggle,
.open > .btn.btn--negative.dropdown-toggle,
.open > .btn.btn--outline.dropdown-toggle,
.open > .btn.btn--red.dropdown-toggle,
.open > .btn.btn--reset.dropdown-toggle,
.open > .btn.btn--white.dropdown-toggle {
    background-image: none
}

.mini-card a {
    color: #000;
    position: relative;
    text-align: center
}

    .mini-card a i {
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in;
        color: #ed1c24
    }

        .mini-card a i:before {
            font-size: 6.875rem;
            line-height: 10.3125rem;
            line-height: inherit
        }

    .mini-card a span {
        display: block;
        padding: 0 1rem;
        font-size: 1.25rem;
        line-height: 1.5rem;
        width: 100%
    }

@media (min-width:48rem) {
    .browse-jobs__bottom {
        display: block
    }

    .mini-card:hover a i {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

.btn {
    border-radius: .3rem;
    display: inline-block;
    font-size: 1rem;
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
    padding: .7rem .5rem .7rem 1.25rem;
    min-height: 50px;
    line-height: 1.5em
}

    .btn.btn--no-icon {
        line-height: 1.7em;
        padding-right: 1.25rem
    }

    .btn.btn--clear {
        border: none
    }

    .btn.btn--red2 {
        box-sizing: border-box;
        color: #fff;
        background-color: #ed1c24;
        -webkit-transition: all .2s;
        transition: all .2s;
        min-width: 80px;
        text-align: center;
        border: none
    }

    .btn.btn--blue,
    .btn.btn--lightblue {
        box-sizing: border-box;
        -webkit-transition: all .2s;
        min-width: 80px;
        text-align: center
    }

    .btn.btn--red.active,
    .btn.btn--red:active,
    .btn.btn--red:focus,
    .btn.btn--red:hover,
    .open > .btn.btn--red.dropdown-toggle {
        color: #fff;
        background-color: #c61017;
        border-color: #bd0f16
    }

    .btn.btn--red.disabled,
    .btn.btn--red.disabled.active,
    .btn.btn--red.disabled:active,
    .btn.btn--red.disabled:focus,
    .btn.btn--red.disabled:hover,
    .btn.btn--red[disabled],
    .btn.btn--red[disabled].active,
    .btn.btn--red[disabled]:active,
    .btn.btn--red[disabled]:focus,
    .btn.btn--red[disabled]:hover,
    fieldset[disabled] .btn.btn--red,
    fieldset[disabled] .btn.btn--red.active,
    fieldset[disabled] .btn.btn--red:active,
    fieldset[disabled] .btn.btn--red:focus,
    fieldset[disabled] .btn.btn--red:hover {
        background-color: #ed1c24;
        border-color: #ed1c24
    }

    .btn.btn--red .badge {
        color: #ed1c24;
        background-color: #fff
    }

    .btn.btn--blue {
        color: #fff;
        background-color: #3889d5;
        transition: all .2s;
        border: none
    }

        .btn.btn--blue.active,
        .btn.btn--blue:active,
        .btn.btn--blue:focus,
        .btn.btn--blue:hover,
        .open > .btn.btn--blue.dropdown-toggle {
            color: #fff;
            background-color: #266fb4;
            border-color: #246aac
        }

        .btn.btn--blue.disabled,
        .btn.btn--blue.disabled.active,
        .btn.btn--blue.disabled:active,
        .btn.btn--blue.disabled:focus,
        .btn.btn--blue.disabled:hover,
        .btn.btn--blue[disabled],
        .btn.btn--blue[disabled].active,
        .btn.btn--blue[disabled]:active,
        .btn.btn--blue[disabled]:focus,
        .btn.btn--blue[disabled]:hover,
        fieldset[disabled] .btn.btn--blue,
        fieldset[disabled] .btn.btn--blue.active,
        fieldset[disabled] .btn.btn--blue:active,
        fieldset[disabled] .btn.btn--blue:focus,
        fieldset[disabled] .btn.btn--blue:hover {
            background-color: #3889d5;
            border-color: #3889d5
        }

        .btn.btn--blue .badge {
            color: #3889d5;
            background-color: #fff
        }

    .btn.btn--lightblue {
        color: #fff;
        background-color: #009cd0;
        transition: all .2s;
        border: none
    }

    .btn.btn--outline,
    .btn.btn--white {
        box-sizing: border-box;
        -webkit-transition: all .2s
    }

    .btn.btn--lightblue.active,
    .btn.btn--lightblue:active,
    .btn.btn--lightblue:focus,
    .btn.btn--lightblue:hover,
    .open > .btn.btn--lightblue.dropdown-toggle {
        color: #fff;
        background-color: #00769d;
        border-color: #006e93
    }

    .btn.btn--lightblue.disabled,
    .btn.btn--lightblue.disabled.active,
    .btn.btn--lightblue.disabled:active,
    .btn.btn--lightblue.disabled:focus,
    .btn.btn--lightblue.disabled:hover,
    .btn.btn--lightblue[disabled],
    .btn.btn--lightblue[disabled].active,
    .btn.btn--lightblue[disabled]:active,
    .btn.btn--lightblue[disabled]:focus,
    .btn.btn--lightblue[disabled]:hover,
    fieldset[disabled] .btn.btn--lightblue,
    fieldset[disabled] .btn.btn--lightblue.active,
    fieldset[disabled] .btn.btn--lightblue:active,
    fieldset[disabled] .btn.btn--lightblue:focus,
    fieldset[disabled] .btn.btn--lightblue:hover {
        background-color: #009cd0;
        border-color: #009cd0
    }

    .btn.btn--lightblue .badge {
        color: #009cd0;
        background-color: #fff
    }

    .btn.btn--lightblue[disabled] {
        opacity: .6
    }

    .btn.btn--white {
        color: #ed1c24;
        background-color: #fff;
        border: 1px solid #fff;
        transition: all .2s;
        min-width: 80px;
        text-align: center
    }

        .btn.btn--white.active,
        .btn.btn--white:active,
        .btn.btn--white:focus,
        .btn.btn--white:hover,
        .open > .btn.btn--white.dropdown-toggle {
            color: #ed1c24;
            background-color: #e6e6e6;
            border-color: #e0e0e0
        }

        .btn.btn--white.disabled,
        .btn.btn--white.disabled.active,
        .btn.btn--white.disabled:active,
        .btn.btn--white.disabled:focus,
        .btn.btn--white.disabled:hover,
        .btn.btn--white[disabled],
        .btn.btn--white[disabled].active,
        .btn.btn--white[disabled]:active,
        .btn.btn--white[disabled]:focus,
        .btn.btn--white[disabled]:hover,
        fieldset[disabled] .btn.btn--white,
        fieldset[disabled] .btn.btn--white.active,
        fieldset[disabled] .btn.btn--white:active,
        fieldset[disabled] .btn.btn--white:focus,
        fieldset[disabled] .btn.btn--white:hover {
            background-color: #fff;
            border-color: #fff
        }

        .btn.btn--white .badge {
            color: #fff;
            background-color: #ed1c24
        }

    .btn.btn--outline {
        color: #ed1c24;
        background-color: transparent;
        border: 1px solid #ed1c24;
        transition: all .2s;
        min-width: 80px;
        text-align: center
    }

    .btn.btn--facebook,
    .btn.btn--linkedin {
        -webkit-transition: all .2s;
        box-sizing: border-box;
        min-width: 80px;
        text-align: center
    }

    .btn.btn--outline.active,
    .btn.btn--outline:active,
    .btn.btn--outline:focus,
    .btn.btn--outline:hover,
    .open > .btn.btn--outline.dropdown-toggle {
        color: #ed1c24;
        background-color: transparent;
        border-color: #bd0f16
    }

    .btn.btn--outline.disabled,
    .btn.btn--outline.disabled.active,
    .btn.btn--outline.disabled:active,
    .btn.btn--outline.disabled:focus,
    .btn.btn--outline.disabled:hover,
    .btn.btn--outline[disabled],
    .btn.btn--outline[disabled].active,
    .btn.btn--outline[disabled]:active,
    .btn.btn--outline[disabled]:focus,
    .btn.btn--outline[disabled]:hover,
    fieldset[disabled] .btn.btn--outline,
    fieldset[disabled] .btn.btn--outline.active,
    fieldset[disabled] .btn.btn--outline:active,
    fieldset[disabled] .btn.btn--outline:focus,
    fieldset[disabled] .btn.btn--outline:hover {
        background-color: transparent;
        border-color: #ed1c24
    }

    .btn.btn--outline .badge {
        color: transparent;
        background-color: #ed1c24
    }

    .btn.btn--linkedin {
        color: #fff;
        background-color: #0079b8;
        transition: all .2s;
        border: none
    }

        .btn.btn--linkedin.active,
        .btn.btn--linkedin:active,
        .btn.btn--linkedin:focus,
        .btn.btn--linkedin:hover,
        .open > .btn.btn--linkedin.dropdown-toggle {
            color: #fff;
            background-color: #005785;
            border-color: #00517b
        }

        .btn.btn--linkedin.disabled,
        .btn.btn--linkedin.disabled.active,
        .btn.btn--linkedin.disabled:active,
        .btn.btn--linkedin.disabled:focus,
        .btn.btn--linkedin.disabled:hover,
        .btn.btn--linkedin[disabled],
        .btn.btn--linkedin[disabled].active,
        .btn.btn--linkedin[disabled]:active,
        .btn.btn--linkedin[disabled]:focus,
        .btn.btn--linkedin[disabled]:hover,
        fieldset[disabled] .btn.btn--linkedin,
        fieldset[disabled] .btn.btn--linkedin.active,
        fieldset[disabled] .btn.btn--linkedin:active,
        fieldset[disabled] .btn.btn--linkedin:focus,
        fieldset[disabled] .btn.btn--linkedin:hover {
            background-color: #0079b8;
            border-color: #0079b8
        }

        .btn.btn--linkedin .badge {
            color: #0079b8;
            background-color: #fff
        }

    .btn.btn--facebook {
        color: #fff;
        background-color: #3b5998;
        transition: all .2s;
        border: none
    }

        .btn.btn--facebook.active,
        .btn.btn--facebook:active,
        .btn.btn--facebook:focus,
        .btn.btn--facebook:hover,
        .open > .btn.btn--facebook.dropdown-toggle {
            color: #fff;
            background-color: #2d4373;
            border-color: #2a3f6c
        }

        .btn.btn--facebook.disabled,
        .btn.btn--facebook.disabled.active,
        .btn.btn--facebook.disabled:active,
        .btn.btn--facebook.disabled:focus,
        .btn.btn--facebook.disabled:hover,
        .btn.btn--facebook[disabled],
        .btn.btn--facebook[disabled].active,
        .btn.btn--facebook[disabled]:active,
        .btn.btn--facebook[disabled]:focus,
        .btn.btn--facebook[disabled]:hover,
        fieldset[disabled] .btn.btn--facebook,
        fieldset[disabled] .btn.btn--facebook.active,
        fieldset[disabled] .btn.btn--facebook:active,
        fieldset[disabled] .btn.btn--facebook:focus,
        fieldset[disabled] .btn.btn--facebook:hover {
            background-color: #3b5998;
            border-color: #3b5998
        }

        .btn.btn--facebook .badge {
            color: #3b5998;
            background-color: #fff
        }

    .btn.btn--apply-cta {
        box-sizing: border-box;
        color: #fff;
        background-color: #009cd0;
        border: 1px solid #009cd0;
        -webkit-transition: all .2s;
        transition: all .2s;
        min-width: 80px;
        text-align: center;
        padding: 1.3rem 1.5rem;
        border-radius: .3rem;
        display: inline-block;
        display: block;
        margin-bottom: .8rem;
        position: relative;
        overflow: hidden;
        z-index: 0;
        cursor: pointer;
    }

        .btn.btn--apply-cta.active,
        .btn.btn--apply-cta:active,
        .btn.btn--apply-cta:focus,
        .btn.btn--apply-cta:hover,
        .open > .btn.btn--apply-cta.dropdown-toggle {
            color: #fff;
            background-color: #00769d;
            border-color: #006e93
        }

        .btn.btn--apply-cta.disabled,
        .btn.btn--apply-cta.disabled.active,
        .btn.btn--apply-cta.disabled:active,
        .btn.btn--apply-cta.disabled:focus,
        .btn.btn--apply-cta.disabled:hover,
        .btn.btn--apply-cta[disabled],
        .btn.btn--apply-cta[disabled].active,
        .btn.btn--apply-cta[disabled]:active,
        .btn.btn--apply-cta[disabled]:focus,
        .btn.btn--apply-cta[disabled]:hover,
        fieldset[disabled] .btn.btn--apply-cta,
        fieldset[disabled] .btn.btn--apply-cta.active,
        fieldset[disabled] .btn.btn--apply-cta:active,
        fieldset[disabled] .btn.btn--apply-cta:focus,
        fieldset[disabled] .btn.btn--apply-cta:hover {
            background-color: #009cd0;
            border-color: #009cd0
        }

        .btn.btn--apply-cta .badge {
            color: #009cd0;
            background-color: #fff
        }

        .btn.btn--apply-cta:after {
            content: '';
            background-color: #04c0ff;
            display: block;
            position: absolute;
            -webkit-transform: scale(0);
            transform: scale(0);
            -webkit-transition: all ease-in .5s;
            transition: all ease-in .5s;
            -webkit-transition-delay: 0s, .5s;
            transition-delay: 0s, .5s;
            border-radius: 100%;
            width: 400px;
            height: 400px;
            left: -60px;
            top: -170px;
            z-index: -1
        }

    .btn.btn--apply-indeed-cta,
    .btn.btn--apply-indeed-cta-cancel {
        box-sizing: border-box;
        -webkit-transition: all .2s;
        display: inline-block
    }

    .btn.btn--apply-indeed-cta-cancel {
        font-size: 1.25rem;
        line-height: 1.25rem;
    }

    .btn.btn--apply-cta:hover {
        -webkit-transition-delay: 0s, .5s;
        transition-delay: 0s, .5s;
        background-color: #009cd0
    }

        .btn.btn--apply-cta:hover:after {
            -webkit-transform: scale(1);
            transform: scale(1)
        }

    .btn.btn--apply-indeed-cta {
        color: #7b8184;
        background-color: #fff;
        border: 1px solid #7b8184;
        transition: all .2s;
        min-width: 80px;
        text-align: center;
        padding: .8rem 1.5rem;
        border-radius: .3rem;
        display: block
    }

        .btn.btn--apply-indeed-cta.active,
        .btn.btn--apply-indeed-cta:active,
        .btn.btn--apply-indeed-cta:focus,
        .btn.btn--apply-indeed-cta:hover,
        .open > .btn.btn--apply-indeed-cta.dropdown-toggle {
            color: #7b8184;
            background-color: #e6e6e6;
            border-color: #5d6264
        }

        .btn.btn--apply-indeed-cta.disabled,
        .btn.btn--apply-indeed-cta.disabled.active,
        .btn.btn--apply-indeed-cta.disabled:active,
        .btn.btn--apply-indeed-cta.disabled:focus,
        .btn.btn--apply-indeed-cta.disabled:hover,
        .btn.btn--apply-indeed-cta[disabled],
        .btn.btn--apply-indeed-cta[disabled].active,
        .btn.btn--apply-indeed-cta[disabled]:active,
        .btn.btn--apply-indeed-cta[disabled]:focus,
        .btn.btn--apply-indeed-cta[disabled]:hover,
        fieldset[disabled] .btn.btn--apply-indeed-cta,
        fieldset[disabled] .btn.btn--apply-indeed-cta.active,
        fieldset[disabled] .btn.btn--apply-indeed-cta:active,
        fieldset[disabled] .btn.btn--apply-indeed-cta:focus,
        fieldset[disabled] .btn.btn--apply-indeed-cta:hover {
            background-color: #fff;
            border-color: #7b8184
        }

        .btn.btn--apply-indeed-cta .badge {
            color: #fff;
            background-color: #7b8184
        }

    .btn.btn--apply-indeed-cta-cancel {
        color: #7b8184;
        background-color: #fff;
        border: 1px solid #7b8184;
        transition: all .2s;
        min-width: 80px;
        text-align: center;
        /*    padding: .4rem 1.5rem;*/
        border-radius: .3rem;
        display: block
    }

    .btn.btn--negative,
    .btn.btn--negative-cancel {
        -webkit-transition: all .2s;
        min-width: 80px;
        text-align: center;
        box-sizing: border-box
    }

    .btn.btn--apply-indeed-cta-cancel.active,
    .btn.btn--apply-indeed-cta-cancel:active,
    .btn.btn--apply-indeed-cta-cancel:focus,
    .btn.btn--apply-indeed-cta-cancel:hover,
    .open > .btn.btn--apply-indeed-cta-cancel.dropdown-toggle {
        color: #7b8184;
        background-color: #e6e6e6;
        border-color: #5d6264
    }

    .btn.btn--apply-indeed-cta-cancel.disabled,
    .btn.btn--apply-indeed-cta-cancel.disabled.active,
    .btn.btn--apply-indeed-cta-cancel.disabled:active,
    .btn.btn--apply-indeed-cta-cancel.disabled:focus,
    .btn.btn--apply-indeed-cta-cancel.disabled:hover,
    .btn.btn--apply-indeed-cta-cancel[disabled],
    .btn.btn--apply-indeed-cta-cancel[disabled].active,
    .btn.btn--apply-indeed-cta-cancel[disabled]:active,
    .btn.btn--apply-indeed-cta-cancel[disabled]:focus,
    .btn.btn--apply-indeed-cta-cancel[disabled]:hover,
    fieldset[disabled] .btn.btn--apply-indeed-cta-cancel,
    fieldset[disabled] .btn.btn--apply-indeed-cta-cancel.active,
    fieldset[disabled] .btn.btn--apply-indeed-cta-cancel:active,
    fieldset[disabled] .btn.btn--apply-indeed-cta-cancel:focus,
    fieldset[disabled] .btn.btn--apply-indeed-cta-cancel:hover {
        background-color: #fff;
        border-color: #7b8184
    }

    .btn.btn--apply-indeed-cta-cancel .badge {
        color: #fff;
        background-color: #7b8184
    }

    .btn.btn--negative {
        color: #7b8184;
        background-color: #fff;
        border: 1px solid #7b8184;
        transition: all .2s
    }

        .btn.btn--negative.active,
        .btn.btn--negative:active,
        .btn.btn--negative:focus,
        .btn.btn--negative:hover,
        .open > .btn.btn--negative.dropdown-toggle {
            color: #7b8184;
            background-color: #e6e6e6;
            border-color: #5d6264
        }

        .btn.btn--negative.disabled,
        .btn.btn--negative.disabled.active,
        .btn.btn--negative.disabled:active,
        .btn.btn--negative.disabled:focus,
        .btn.btn--negative.disabled:hover,
        .btn.btn--negative[disabled],
        .btn.btn--negative[disabled].active,
        .btn.btn--negative[disabled]:active,
        .btn.btn--negative[disabled]:focus,
        .btn.btn--negative[disabled]:hover,
        fieldset[disabled] .btn.btn--negative,
        fieldset[disabled] .btn.btn--negative.active,
        fieldset[disabled] .btn.btn--negative:active,
        fieldset[disabled] .btn.btn--negative:focus,
        fieldset[disabled] .btn.btn--negative:hover {
            background-color: #fff;
            border-color: #7b8184
        }

        .btn.btn--negative .badge {
            color: #fff;
            background-color: #7b8184
        }

        .btn.btn--negative:hover {
            border-color: #62676a;
            color: #62676a
        }

    .btn.btn--negative-cancel {
        color: #7b8184;
        background-color: #fff;
        border: 1px solid #7b8184;
        transition: all .2s
    }

        .btn.btn--negative-cancel.active,
        .btn.btn--negative-cancel:active,
        .btn.btn--negative-cancel:focus,
        .btn.btn--negative-cancel:hover,
        .open > .btn.btn--negative-cancel.dropdown-toggle {
            color: #7b8184;
            background-color: #e6e6e6;
            border-color: #5d6264
        }

        .btn.btn--negative-cancel.active,
        .btn.btn--negative-cancel:active,
        .open > .btn.btn--negative-cancel.dropdown-toggle {
            background-image: none
        }

        .btn.btn--negative-cancel.disabled,
        .btn.btn--negative-cancel.disabled.active,
        .btn.btn--negative-cancel.disabled:active,
        .btn.btn--negative-cancel.disabled:focus,
        .btn.btn--negative-cancel.disabled:hover,
        .btn.btn--negative-cancel[disabled],
        .btn.btn--negative-cancel[disabled].active,
        .btn.btn--negative-cancel[disabled]:active,
        .btn.btn--negative-cancel[disabled]:focus,
        .btn.btn--negative-cancel[disabled]:hover,
        fieldset[disabled] .btn.btn--negative-cancel,
        fieldset[disabled] .btn.btn--negative-cancel.active,
        fieldset[disabled] .btn.btn--negative-cancel:active,
        fieldset[disabled] .btn.btn--negative-cancel:focus,
        fieldset[disabled] .btn.btn--negative-cancel:hover {
            background-color: #fff;
            border-color: #7b8184
        }

        .btn.btn--negative-cancel .badge {
            color: #fff;
            background-color: #7b8184
        }

    .btn.btn--negative.btn--linkedin {
        box-sizing: border-box;
        color: #0079b8;
        background-color: #fff;
        border: 1px solid #0079b8;
        -webkit-transition: all .2s;
        transition: all .2s;
        min-width: 80px;
        text-align: center
    }

        .btn.btn--negative.btn--linkedin.active,
        .btn.btn--negative.btn--linkedin:active,
        .btn.btn--negative.btn--linkedin:focus,
        .btn.btn--negative.btn--linkedin:hover,
        .open > .btn.btn--negative.btn--linkedin.dropdown-toggle {
            color: #0079b8;
            background-color: #e6e6e6;
            border-color: #00517b
        }

        .btn.btn--negative.btn--linkedin.disabled,
        .btn.btn--negative.btn--linkedin.disabled.active,
        .btn.btn--negative.btn--linkedin.disabled:active,
        .btn.btn--negative.btn--linkedin.disabled:focus,
        .btn.btn--negative.btn--linkedin.disabled:hover,
        .btn.btn--negative.btn--linkedin[disabled],
        .btn.btn--negative.btn--linkedin[disabled].active,
        .btn.btn--negative.btn--linkedin[disabled]:active,
        .btn.btn--negative.btn--linkedin[disabled]:focus,
        .btn.btn--negative.btn--linkedin[disabled]:hover,
        fieldset[disabled] .btn.btn--negative.btn--linkedin,
        fieldset[disabled] .btn.btn--negative.btn--linkedin.active,
        fieldset[disabled] .btn.btn--negative.btn--linkedin:active,
        fieldset[disabled] .btn.btn--negative.btn--linkedin:focus,
        fieldset[disabled] .btn.btn--negative.btn--linkedin:hover {
            background-color: #fff;
            border-color: #0079b8
        }

        .btn.btn--negative.btn--linkedin .badge {
            color: #fff;
            background-color: #0079b8
        }

        .btn.btn--negative.btn--linkedin i {
            position: relative;
            top: 12px;
            padding-left: .8rem;
            font-size: 2.4rem;
            margin-top: -12px;
            display: inline-block
        }

        .btn.btn--negative.btn--linkedin:hover {
            border-color: #005785;
            color: #005785
        }

    .btn.btn--negative.btn--facebook {
        box-sizing: border-box;
        color: #3b5998;
        background-color: #fff;
        border: 1px solid #3b5998;
        -webkit-transition: all .2s;
        transition: all .2s;
        min-width: 80px;
        text-align: center
    }

    .btn.btn--negative.btn--add,
    .btn.btn--negative.btn--import {
        -webkit-transition: all .2s;
        min-width: 80px;
        text-align: center;
        box-sizing: border-box
    }

    .btn.btn--negative.btn--facebook.active,
    .btn.btn--negative.btn--facebook:active,
    .btn.btn--negative.btn--facebook:focus,
    .btn.btn--negative.btn--facebook:hover,
    .open > .btn.btn--negative.btn--facebook.dropdown-toggle {
        color: #3b5998;
        background-color: #e6e6e6;
        border-color: #2a3f6c
    }

    .btn.btn--negative.btn--facebook.disabled,
    .btn.btn--negative.btn--facebook.disabled.active,
    .btn.btn--negative.btn--facebook.disabled:active,
    .btn.btn--negative.btn--facebook.disabled:focus,
    .btn.btn--negative.btn--facebook.disabled:hover,
    .btn.btn--negative.btn--facebook[disabled],
    .btn.btn--negative.btn--facebook[disabled].active,
    .btn.btn--negative.btn--facebook[disabled]:active,
    .btn.btn--negative.btn--facebook[disabled]:focus,
    .btn.btn--negative.btn--facebook[disabled]:hover,
    fieldset[disabled] .btn.btn--negative.btn--facebook,
    fieldset[disabled] .btn.btn--negative.btn--facebook.active,
    fieldset[disabled] .btn.btn--negative.btn--facebook:active,
    fieldset[disabled] .btn.btn--negative.btn--facebook:focus,
    fieldset[disabled] .btn.btn--negative.btn--facebook:hover {
        background-color: #fff;
        border-color: #3b5998
    }

    .btn.btn--negative.btn--facebook .badge {
        color: #fff;
        background-color: #3b5998
    }

    .btn.btn--negative.btn--facebook i {
        font-size: 1.375rem;
        line-height: 1.25rem;
        position: relative;
        top: 14px;
        padding-left: .8rem;
        margin-right: .5rem;
        margin-top: -12px;
        display: inline-block
    }

    .btn.btn--negative.btn--add i,
    .btn.btn--negative.btn--import i {
        top: 14px;
        font-size: 2.4rem;
        margin-top: -12px;
        position: relative;
        padding-left: .8rem
    }

    .btn.btn--negative.btn--facebook:hover {
        border-color: #2d4373;
        color: #2d4373
    }

    .btn.btn--negative.btn--import {
        color: #005794;
        background-color: #fff;
        border: 1px solid #005794;
        transition: all .2s
    }

        .btn.btn--negative.btn--import.active,
        .btn.btn--negative.btn--import:active,
        .btn.btn--negative.btn--import:focus,
        .btn.btn--negative.btn--import:hover,
        .open > .btn.btn--negative.btn--import.dropdown-toggle {
            color: #005794;
            background-color: #e6e6e6;
            border-color: #003357
        }

        .btn.btn--negative.btn--import.disabled,
        .btn.btn--negative.btn--import.disabled.active,
        .btn.btn--negative.btn--import.disabled:active,
        .btn.btn--negative.btn--import.disabled:focus,
        .btn.btn--negative.btn--import.disabled:hover,
        .btn.btn--negative.btn--import[disabled],
        .btn.btn--negative.btn--import[disabled].active,
        .btn.btn--negative.btn--import[disabled]:active,
        .btn.btn--negative.btn--import[disabled]:focus,
        .btn.btn--negative.btn--import[disabled]:hover,
        fieldset[disabled] .btn.btn--negative.btn--import,
        fieldset[disabled] .btn.btn--negative.btn--import.active,
        fieldset[disabled] .btn.btn--negative.btn--import:active,
        fieldset[disabled] .btn.btn--negative.btn--import:focus,
        fieldset[disabled] .btn.btn--negative.btn--import:hover {
            background-color: #fff;
            border-color: #005794
        }

        .btn.btn--negative.btn--import .badge {
            color: #fff;
            background-color: #005794
        }

        .btn.btn--negative.btn--import i {
            display: inline-block
        }

        .btn.btn--negative.btn--import:hover {
            border-color: #003961;
            color: #003961
        }

    .btn.btn--negative.btn--add {
        color: #ed1c24;
        background-color: transparent;
        border: 1px solid #ed1c24;
        transition: all .2s;
        display: inline-block !important
    }

    .btn.btn--negative.btn--enhance,
    .btn.btn--negative.btn--red-on-white {
        -webkit-transition: all .2s;
        margin-top: .8rem;
        display: inline-block !important
    }

    .btn.btn--negative.btn--add.active,
    .btn.btn--negative.btn--add:active,
    .btn.btn--negative.btn--add:focus,
    .btn.btn--negative.btn--add:hover,
    .open > .btn.btn--negative.btn--add.dropdown-toggle {
        color: #ed1c24;
        background-color: transparent;
        border-color: #bd0f16
    }

    .btn.btn--negative.btn--add.disabled,
    .btn.btn--negative.btn--add.disabled.active,
    .btn.btn--negative.btn--add.disabled:active,
    .btn.btn--negative.btn--add.disabled:focus,
    .btn.btn--negative.btn--add.disabled:hover,
    .btn.btn--negative.btn--add[disabled],
    .btn.btn--negative.btn--add[disabled].active,
    .btn.btn--negative.btn--add[disabled]:active,
    .btn.btn--negative.btn--add[disabled]:focus,
    .btn.btn--negative.btn--add[disabled]:hover,
    fieldset[disabled] .btn.btn--negative.btn--add,
    fieldset[disabled] .btn.btn--negative.btn--add.active,
    fieldset[disabled] .btn.btn--negative.btn--add:active,
    fieldset[disabled] .btn.btn--negative.btn--add:focus,
    fieldset[disabled] .btn.btn--negative.btn--add:hover {
        background-color: transparent;
        border-color: #ed1c24
    }

    .btn.btn--negative.btn--add .badge {
        color: transparent;
        background-color: #ed1c24
    }

    .btn.btn--negative.btn--add i {
        display: inline-block
    }

    .btn.btn--negative.btn--add:hover {
        border-color: #c61017;
        color: #c61017
    }

    .btn.btn--negative.btn--enhance {
        box-sizing: border-box;
        color: #ed1c24;
        background-color: transparent;
        border: 1px solid #ed1c24;
        transition: all .2s;
        min-width: 80px;
        text-align: center;
        line-height: 1.5rem
    }

        .btn.btn--negative.btn--enhance.active,
        .btn.btn--negative.btn--enhance:active,
        .btn.btn--negative.btn--enhance:focus,
        .btn.btn--negative.btn--enhance:hover,
        .open > .btn.btn--negative.btn--enhance.dropdown-toggle {
            color: #ed1c24;
            background-color: transparent;
            border-color: #bd0f16
        }

        .btn.btn--negative.btn--enhance.disabled,
        .btn.btn--negative.btn--enhance.disabled.active,
        .btn.btn--negative.btn--enhance.disabled:active,
        .btn.btn--negative.btn--enhance.disabled:focus,
        .btn.btn--negative.btn--enhance.disabled:hover,
        .btn.btn--negative.btn--enhance[disabled],
        .btn.btn--negative.btn--enhance[disabled].active,
        .btn.btn--negative.btn--enhance[disabled]:active,
        .btn.btn--negative.btn--enhance[disabled]:focus,
        .btn.btn--negative.btn--enhance[disabled]:hover,
        fieldset[disabled] .btn.btn--negative.btn--enhance,
        fieldset[disabled] .btn.btn--negative.btn--enhance.active,
        fieldset[disabled] .btn.btn--negative.btn--enhance:active,
        fieldset[disabled] .btn.btn--negative.btn--enhance:focus,
        fieldset[disabled] .btn.btn--negative.btn--enhance:hover {
            background-color: transparent;
            border-color: #ed1c24
        }

        .btn.btn--negative.btn--enhance .badge {
            color: transparent;
            background-color: #ed1c24
        }

        .btn.btn--negative.btn--enhance i {
            position: relative;
            top: 4px;
            padding-left: .8rem
        }

        .btn.btn--negative.btn--enhance:hover {
            border-color: #c61017;
            color: #c61017
        }

    .btn.btn--negative.btn--red-on-white {
        box-sizing: border-box;
        color: #ed1c24;
        background-color: transparent;
        border: 1px solid #ed1c24;
        transition: all .2s;
        min-width: 80px;
        text-align: center;
        line-height: 1.5rem;
        margin-right: .8rem
    }

    .btn.btn--apply,
    .btn.btn--negative.btn--white-on-transparent {
        -webkit-transition: all .2s;
        box-sizing: border-box;
        min-width: 80px;
        text-align: center
    }

    .btn.btn--negative.btn--red-on-white.active,
    .btn.btn--negative.btn--red-on-white:active,
    .btn.btn--negative.btn--red-on-white:focus,
    .btn.btn--negative.btn--red-on-white:hover,
    .open > .btn.btn--negative.btn--red-on-white.dropdown-toggle {
        color: #ed1c24;
        background-color: #e6e6e6;
        border-color: #bd0f16
    }

    .btn.btn--negative.btn--red-on-white.disabled,
    .btn.btn--negative.btn--red-on-white.disabled.active,
    .btn.btn--negative.btn--red-on-white.disabled:active,
    .btn.btn--negative.btn--red-on-white.disabled:focus,
    .btn.btn--negative.btn--red-on-white.disabled:hover,
    .btn.btn--negative.btn--red-on-white[disabled],
    .btn.btn--negative.btn--red-on-white[disabled].active,
    .btn.btn--negative.btn--red-on-white[disabled]:active,
    .btn.btn--negative.btn--red-on-white[disabled]:focus,
    .btn.btn--negative.btn--red-on-white[disabled]:hover,
    fieldset[disabled] .btn.btn--negative.btn--red-on-white,
    fieldset[disabled] .btn.btn--negative.btn--red-on-white.active,
    fieldset[disabled] .btn.btn--negative.btn--red-on-white:active,
    fieldset[disabled] .btn.btn--negative.btn--red-on-white:focus,
    fieldset[disabled] .btn.btn--negative.btn--red-on-white:hover {
        background-color: #fff;
        border-color: #ed1c24
    }

    .btn.btn--negative.btn--red-on-white .badge {
        color: #fff;
        background-color: #ed1c24
    }

    .btn.btn--negative.btn--red-on-white i {
        position: relative;
        /*top: 4px;*/
        margin-left: .5rem
    }

    .btn.btn--negative.btn--red-on-white:hover {
        border-color: #c61017;
        color: #c61017
    }

    .btn.btn--negative.btn--white-on-transparent {
        color: #fff;
        background-color: transparent;
        border: 1px solid #fff;
        transition: all .2s;
        font-size: 1rem;
        line-height: 1rem;
        line-height: 1.5rem;
        margin-top: .8rem;
        margin-right: .8rem;
        display: inline-block !important
    }

        .btn.btn--negative.btn--white-on-transparent.active,
        .btn.btn--negative.btn--white-on-transparent:active,
        .btn.btn--negative.btn--white-on-transparent:focus,
        .btn.btn--negative.btn--white-on-transparent:hover,
        .open > .btn.btn--negative.btn--white-on-transparent.dropdown-toggle {
            color: #fff;
            background-color: transparent;
            border-color: #e0e0e0
        }

        .btn.btn--negative.btn--white-on-transparent.disabled,
        .btn.btn--negative.btn--white-on-transparent.disabled.active,
        .btn.btn--negative.btn--white-on-transparent.disabled:active,
        .btn.btn--negative.btn--white-on-transparent.disabled:focus,
        .btn.btn--negative.btn--white-on-transparent.disabled:hover,
        .btn.btn--negative.btn--white-on-transparent[disabled],
        .btn.btn--negative.btn--white-on-transparent[disabled].active,
        .btn.btn--negative.btn--white-on-transparent[disabled]:active,
        .btn.btn--negative.btn--white-on-transparent[disabled]:focus,
        .btn.btn--negative.btn--white-on-transparent[disabled]:hover,
        fieldset[disabled] .btn.btn--negative.btn--white-on-transparent,
        fieldset[disabled] .btn.btn--negative.btn--white-on-transparent.active,
        fieldset[disabled] .btn.btn--negative.btn--white-on-transparent:active,
        fieldset[disabled] .btn.btn--negative.btn--white-on-transparent:focus,
        fieldset[disabled] .btn.btn--negative.btn--white-on-transparent:hover {
            background-color: transparent;
            border-color: #fff
        }

        .btn.btn--negative.btn--white-on-transparent .badge {
            color: transparent;
            background-color: #fff
        }

        .btn.btn--negative.btn--white-on-transparent i {
            position: relative;
            top: 20px;
            padding-left: .8rem;
            font-size: 3rem;
            line-height: 2.875rem;
            margin-top: -24px
        }

        .btn.btn--negative.btn--white-on-transparent:hover {
            background-color: #fff;
            color: #ed1c24
        }

    .btn.btn--apply-cta-mobile {
        padding: .5rem 1rem;
        border-radius: .3rem;
        display: inline-block
    }

    .btn.btn--apply {
        color: #fff;
        background-color: #ed1c24;
        border: 1px solid #ed1c24;
        transition: all .2s;
        padding: 1rem;
        border-radius: .3rem;
        display: inline-block !important;
    }

        .btn.btn--apply.active,
        .btn.btn--apply:active,
        .btn.btn--apply:focus,
        .btn.btn--apply:hover,
        .open > .btn.btn--apply.dropdown-toggle {
            color: #fff;
            background-color: #c61017;
            border-color: #bd0f16
        }

        .btn.btn--apply.disabled,
        .btn.btn--apply.disabled.active,
        .btn.btn--apply.disabled:active,
        .btn.btn--apply.disabled:focus,
        .btn.btn--apply.disabled:hover,
        .btn.btn--apply[disabled],
        .btn.btn--apply[disabled].active,
        .btn.btn--apply[disabled]:active,
        .btn.btn--apply[disabled]:focus,
        .btn.btn--apply[disabled]:hover,
        fieldset[disabled] .btn.btn--apply,
        fieldset[disabled] .btn.btn--apply.active,
        fieldset[disabled] .btn.btn--apply:active,
        fieldset[disabled] .btn.btn--apply:focus,
        fieldset[disabled] .btn.btn--apply:hover {
            background-color: #ed1c24;
            border-color: #ed1c24
        }

        .btn.btn--apply .badge {
            color: #ed1c24;
            background-color: #fff
        }

    .btn.btn--reset {
        box-sizing: border-box;
        color: #ed1c24;
        background-color: transparent;
        border: 1px solid #ed1c24;
        -webkit-transition: all .2s;
        transition: all .2s;
        min-width: 80px;
        text-align: center;
        padding: 1rem 1.7rem;
        border-radius: .3rem;
        display: inline-block
    }

.btn--check-profile i,
.btn--notify i {
    top: 12px;
    padding-left: .8rem;
    position: relative
}

.btn--check-profile,
.btn--notify {
    min-width: 80px;
    text-align: center;
    display: inline-block !important;
    box-sizing: border-box
}

.btn.btn--reset.active,
.btn.btn--reset:active,
.btn.btn--reset:focus,
.btn.btn--reset:hover,
.open > .btn.btn--reset.dropdown-toggle {
    color: #ed1c24;
    background-color: transparent;
    border-color: #bd0f16
}

.btn.btn--reset.disabled,
.btn.btn--reset.disabled.active,
.btn.btn--reset.disabled:active,
.btn.btn--reset.disabled:focus,
.btn.btn--reset.disabled:hover,
.btn.btn--reset[disabled],
.btn.btn--reset[disabled].active,
.btn.btn--reset[disabled]:active,
.btn.btn--reset[disabled]:focus,
.btn.btn--reset[disabled]:hover,
fieldset[disabled] .btn.btn--reset,
fieldset[disabled] .btn.btn--reset.active,
fieldset[disabled] .btn.btn--reset:active,
fieldset[disabled] .btn.btn--reset:focus,
fieldset[disabled] .btn.btn--reset:hover {
    background-color: transparent;
    border-color: #ed1c24
}

.btn.btn--reset .badge {
    color: transparent;
    background-color: #ed1c24
}

.btn--check-profile {
    color: #fff;
    background-color: #ed1c24;
    border: 1px solid #ed1c24;
    -webkit-transition: all .2s;
    transition: all .2s;
    padding-right: .8rem;
    font-size: 1rem;
    line-height: 1.5rem
}

    .btn--check-profile.active,
    .btn--check-profile:active,
    .btn--check-profile:focus,
    .btn--check-profile:hover,
    .open > .btn--check-profile.dropdown-toggle {
        color: #fff;
        background-color: #c61017;
        border-color: #bd0f16
    }

    .btn--check-profile.disabled,
    .btn--check-profile.disabled.active,
    .btn--check-profile.disabled:active,
    .btn--check-profile.disabled:focus,
    .btn--check-profile.disabled:hover,
    .btn--check-profile[disabled],
    .btn--check-profile[disabled].active,
    .btn--check-profile[disabled]:active,
    .btn--check-profile[disabled]:focus,
    .btn--check-profile[disabled]:hover,
    fieldset[disabled] .btn--check-profile,
    fieldset[disabled] .btn--check-profile.active,
    fieldset[disabled] .btn--check-profile:active,
    fieldset[disabled] .btn--check-profile:focus,
    fieldset[disabled] .btn--check-profile:hover {
        background-color: #ed1c24;
        border-color: #ed1c24
    }

    .btn--check-profile .badge {
        color: #ed1c24;
        background-color: #fff
    }

    .btn--check-profile i {
        color: #f46d66;
        font-size: 1.8rem;
        margin-top: -7px
    }

.btn--notify {
    color: #fff;
    background-color: #ed1c24;
    border: 1px solid #ed1c24;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: relative
}

    .btn--notify.active,
    .btn--notify:active,
    .btn--notify:focus,
    .btn--notify:hover,
    .open > .btn--notify.dropdown-toggle {
        color: #fff;
        background-color: #c61017;
        border-color: #bd0f16
    }

    .btn--notify.disabled,
    .btn--notify.disabled.active,
    .btn--notify.disabled:active,
    .btn--notify.disabled:focus,
    .btn--notify.disabled:hover,
    .btn--notify[disabled],
    .btn--notify[disabled].active,
    .btn--notify[disabled]:active,
    .btn--notify[disabled]:focus,
    .btn--notify[disabled]:hover,
    fieldset[disabled] .btn--notify,
    fieldset[disabled] .btn--notify.active,
    fieldset[disabled] .btn--notify:active,
    fieldset[disabled] .btn--notify:focus,
    fieldset[disabled] .btn--notify:hover {
        background-color: #ed1c24;
        border-color: #ed1c24
    }

    .btn--notify .badge {
        color: #ed1c24;
        background-color: #fff
    }

    .btn--notify i {
        font-size: 2.4rem;
        margin-top: -8px;
        display: inline-block
    }

.btn-favourite {
    color: #000;
    display: block;
    font-weight: 700;
    position: relative;
    padding-left: 3rem
}

    .btn-favourite .favourite,
    .btn-favourite .favourite-save {
        left: 0;
        top: 10px
    }

.favourite,
.favourite-save {
    -webkit-transition: .2s ease-in all;
    transition: .2s ease-in all;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: block;
    position: absolute;
    cursor: pointer
}

    .favourite-save:before,
    .favourite:before {
        content: '\44';
        font-family: adecco-font-1;
        color: #b2b2b2;
        font-size: 3.375rem;
        line-height: 0;
        z-index: 10;
        padding-top: 14px;
        display: block
    }

    .btn-filter,
    .favourite-save.selected,
    .favourite-save.selected:before,
    .favourite-save:active,
    .favourite-save:active:before,
    .favourite-save:hover,
    .favourite-save:hover:before,
    .favourite.selected,
    .favourite.selected:before,
    .favourite:active,
    .favourite:active:before,
    .favourite:hover,
    .favourite:hover:before {
        color: #ed1c24
    }

        .favourite-save.selected:before,
        .favourite.selected:before {
            content: '\43';
            font-family: adecco-font-1
        }

.btn-filter,
.job-details .job-details__apply .ref-no .ref {
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
}

.btn-filter {
    font-size: 2.1875rem;
    line-height: 3rem;
    display: inline-block;
    margin-right: 2rem;
    padding: 15px 0
}

    .btn-filter:last-of-type {
        margin-right: 0
    }

    .btn-filter span {
        background: #efefef;
        display: inline-block;
        width: 35px;
        height: 35px;
        border-radius: 99em;
        position: relative;
        top: 10px
    }

        .btn-filter span i {
            font-size: 1.5rem;
            line-height: 2.25rem;
            position: relative;
            top: -10px
        }

@media (min-width:34rem) {
    .btn-filter {
        padding: 10px 0;
        margin-right: 5rem;
        font-size: 1.25rem;
        line-height: 1.875rem
    }

        .btn-filter span {
            width: 21px;
            height: 21px;
            box-shadow: 0 1px 0 1px #ccc;
            top: 6px
        }

            .btn-filter span i {
                font-size: .875rem;
                line-height: 1.3125rem;
                top: -6px
            }
}

@-webkit-keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    75% {
        -webkit-transform: scale(.8);
        transform: scale(.8)
    }
}

@keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    75% {
        -webkit-transform: scale(.8);
        transform: scale(.8)
    }
}

.job-details .job-details__top.overlay:before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1
}

.job-details .job-details__top.overlay .job-details__cta__holder.sticky {
    box-shadow: none
}

.job-details > .container {
    position: relative
}

.job-details hr {
    border-color: #dad9d9;
    margin: 0 0 1em
}

.job-details .job-details__back a {
    display: block
}

.job-details .job-details__back hr {
    margin-top: 1em;
    margin-right: 0
}

.job-details .job-details__back h6,
.job-details .job-details__header h1 {
    margin-top: 0
}

.job-details .job-details__header {
    padding-top: 10px
}

    .job-details .job-details__header .added-date {
        color: #737373;
        font-size: .75rem;
        line-height: .75rem
    }

@media (min-width:34rem) {
    .job-details .job-details__back hr {
        margin-bottom: 1rem
    }

    .job-details .job-details__header {
        padding-top: 25px
    }

        .job-details .job-details__header .added-date {
            font-size: 1rem;
            line-height: 1.5rem
        }
}

.job-details .job-details__header .favourite,
.job-details .job-details__header .favourite-save {
    height: 25px;
    position: absolute;
    right: 20px;
    top: 0;
    width: 25px
}

    .job-details .job-details__header .favourite-save:before,
    .job-details .job-details__header .favourite:before {
        font-size: .8125rem;
        line-height: 1.21875rem;
        left: 6px;
        top: 4px
    }

@media (min-width:48rem) {
    .job-details .job-details__header .favourite,
    .job-details .job-details__header .favourite-save {
        height: 50px;
        right: 0;
        top: 50px;
        width: 50px
    }

        .job-details .job-details__header .favourite-save:before,
        .job-details .job-details__header .favourite:before {
            font-size: 1.625rem;
            line-height: 2.4375rem;
            left: 12px;
            top: 9px
        }
}

.job-details .job-details__header h2 {
    margin-bottom: 10px
}

.job-details .job-details__header .summary {
    padding-bottom: 10px
}

@media (min-width:34rem) {
    .job-details .job-details__header h2 {
        margin: 22px 0
    }

    .job-details .job-details__header .summary {
        padding-bottom: 40px
    }
}

.job-details .job-details__header .summary-text {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    margin-bottom: 0
}

@media (min-width:34rem) {
    .job-details .job-details__header .summary-text {
        font-size: 1.625rem;
        line-height: 2.4375rem
    }
}

.job-details .job-details__header__info {
    margin: 0
}

    .job-details .job-details__header__info i,
    .job-details .job-details__header__info p {
        vertical-align: middle
    }

    .job-details .job-details__header__info i {
        color: #ed1c24;
        display: inline-block
    }

        .job-details .job-details__header__info i:before {
            font-size: 1.875rem;
            line-height: 2.5rem;
            float: right;
            width: 30px;
            position: relative;
            top: -2px
        }

        .job-details .job-details__header__info i.icon-pin-outline:before {
            font-size: 2.375rem;
            line-height: 2.8125rem;
            top: -2px
        }

@media (min-width:34rem) {
    .job-details .job-details__header__info i {
        font-size: 1.75rem;
        line-height: 1.75rem
    }

        .job-details .job-details__header__info i:before {
            font-size: 2.8125rem;
            line-height: 2.8125rem;
            width: 40px;
            top: 4px
        }

        .job-details .job-details__header__info i.icon-pin-outline:before {
            font-size: 3.125rem;
            line-height: 2.8125rem;
            top: 4px
        }
}

.job-details .job-details__header__info p {
    display: inline-block;
    margin-bottom: 1.2rem;
    padding-left: 5px;
    font-size: .8125rem;
    line-height: .9375rem
}

    .job-details .job-details__header__info p small {
        display: block;
        font-size: .625rem;
        line-height: .625rem;
        color: #737373
    }

.job-details .job-details__apply {
    padding-top: 20px
}

@media (min-width:34rem) {
    .job-details .job-details__header__info p {
        margin-bottom: 0;
        font-size: 1.375rem;
        line-height: 1.5rem
    }

        .job-details .job-details__header__info p small {
            display: block;
            font-size: .8125rem;
            line-height: .875rem;
            color: #737373
        }

    .job-details .job-details__header__info {
        margin-bottom: 1rem
    }

    .job-details .job-details__apply {
        padding-top: 30px
    }
}

.job-details .job-details__apply button {
    font-size: 1.125rem;
    line-height: 1.375rem;
    display: block;
    margin: 0 auto 10px
}

@media (min-width:34rem) {
    .job-details .job-details__apply button {
        font-size: 1.5rem;
        line-height: 1.75rem
    }
}

@media (min-width:48rem) {
    .job-details .job-details__apply button {
        display: inline-block;
        margin-bottom: 40px
    }

    .job-details .job-details__apply .apply-adecco {
        margin-right: 50px
    }

    .job-details .job-details__apply .apply-indeed {
        margin-right: 30px
    }

    .job-details .job-details__apply .ref-no {
        text-align: left
    }
}

.job-details .job-details__apply .ref-no {
    display: inline-block;
    margin-bottom: 15px;
    vertical-align: middle
}

    .job-details .job-details__apply .ref-no .small {
        color: #818182;
        display: block;
        line-height: 1
    }

    .job-details .job-details__apply .ref-no .ref {
        font-size: 1.3125rem;
        line-height: 1.96875rem
    }

@media (min-width:48rem) {
    .job-details .job-details__description {
        padding-top: 1rem
    }
}

.job-details .job-details__description .job-details__cta__holder {
    -webkit-transition: all ease-out .2s;
    transition: all ease-out .2s
}

    .job-details .job-details__description .job-details__cta__holder.sticky {
        box-shadow: 0 0 30px 5px #dad9d9;
        background: #fff;
        left: 0;
        bottom: 0;
        position: fixed;
        width: 100%;
        z-index: 3;
        padding-left: .75rem;
        padding-right: .75rem
    }

        .job-details .job-details__description .job-details__cta__holder.sticky .job-details__cta {
            padding: .75em 0
        }

            .job-details .job-details__description .job-details__cta__holder.sticky .job-details__cta .btn--apply-indeed-cta {
                margin-bottom: .5em
            }

            .job-details .job-details__description .job-details__cta__holder.sticky .job-details__cta .btn--apply-indeed-cta-cancel {
                display: block
            }

            .job-details .job-details__description .job-details__cta__holder.sticky .job-details__cta .btn-favourite,
            .job-details .job-details__description .job-details__cta__holder.sticky .job-details__cta .job-details__cta__ref,
            .job-details .job-details__description .job-details__cta__holder.sticky .job-details__cta hr,
            .job-details .job-details__description .job-details__cta__holder.sticky .job-details__cta hr:last-of-type {
                display: none
            }

        .job-details .job-details__description .job-details__cta__holder.sticky .job-details__cta__sticky {
            display: block
        }

.job-details .job-details__description .job-details__cta .btn.btn--apply-cta,
.job-details .job-details__description .job-details__cta .btn.btn--apply-indeed-cancel,
.job-details .job-details__description .job-details__cta .btn.btn--apply-indeed-cta {
    font-size: 1.25rem;
    line-height: 1.25rem
}

.job-details .job-details__description .job-details__cta .btn--apply-indeed-cta-cancel {
    display: none
}

.job-details .job-details__description .job-details__cta hr {
    margin: 1.5rem 0
}

.job-details .job-details__description .job-details__cta__ref {
    font-size: 1.25rem;
    line-height: 1.25rem;
    padding-left: 2.5rem;
    font-weight: 700
}

    .job-details .job-details__description .job-details__cta__ref small {
        display: block;
        color: #737373
    }

.job-details .job-details__description .job-details__cta__sticky {
    display: none;
    padding-top: .5rem;
    padding-bottom: .5rem;
    position: relative
}

    .job-details .job-details__description .job-details__cta__sticky:after,
    .job-details .job-details__description .job-details__cta__sticky:before {
        content: " ";
        display: table
    }

    .job-details .job-details__description .job-details__cta__sticky .back-link {
        float: left;
        position: relative;
        top: 10px
    }

.job-details .job-details__description .job-details__cta__sticky__btn-holder {
    float: right
}

.job-details .job-details__description .job-details__cta__sticky .btn-favourite {
    display: inline-block;
    margin-right: .5em;
    padding-right: 0
}

    .job-details .job-details__description .job-details__cta__sticky .btn-favourite span {
        position: relative;
        top: 23px
    }

.job-details .job-details__description__content {
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}


    .job-details .job-details__description__content h5 {
        margin-bottom: 10px
    }

    .job-details .job-details__description__content h4:first-child {
        margin-top: 0px;
    }

    .job-details .job-details__description__content a,
    .job-details .job-details__description__content li,
    .job-details .job-details__description__content p {
        font-size: .9375rem;
        line-height: 1.40625rem
    }

@media (min-width:34rem) {
    .job-details .job-details__description__content h5 {
        margin-bottom: 22px
    }

    .job-details .job-details__description__content a,
    .job-details .job-details__description__content li,
    .job-details .job-details__description__content p {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.job-details .job-details__description__content p.job-details__description__summary {
    font-weight: 700;
    margin-bottom: 2rem
}

.card--small .card__status .date-applied .date,
.card--small .card__status .status-description .status,
.resources__top .search-count .term {
    font-weight: 600
}

.job-details .job-details__description__content ul {
    margin: 0 0 20px 30px;
    list-style: outside;
}

@media (min-width:34rem) {
    .job-details .job-details__description__content ul {
        margin: 0 0 40px 60px
    }
}

.job-details .job-details__description__content ul.requirements {
    list-style: none;
    margin-left: 10px
}

    .job-details .job-details__description__content ul.requirements li {
        position: relative;
        padding-left: 30px
    }

        .job-details .job-details__description__content ul.requirements li:before {
            content: '\f00c';
            font-family: FontAwesome;
            color: #ed1c24;
            display: block;
            position: absolute;
            left: 0
        }

.card__overlay p,
.profile-mini-card .profile-card-summary .expand-section,
.share > span {
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
}

.job-details .job-details__related-jobs h3,
.job-details .job-details__viewed-jobs h3,
.job-details .job-details__viewed-jobs-carousel h3 {
    font-size: 1rem;
    line-height: 1.5rem
}

@media (min-width:34rem) {
    .job-details .job-details__related-jobs h3,
    .job-details .job-details__viewed-jobs h3,
    .job-details .job-details__viewed-jobs-carousel h3 {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.job-details .job-details__related-jobs,
.job-details .job-details__viewed-jobs-carousel {
    background-color: #f1f1f1;
    margin-top: 10px;
    padding: 10px 0 40px
}

    .job-details .job-details__related-jobs h3,
    .job-details .job-details__viewed-jobs-carousel h3 {
        color: #691b31
    }

@media (max-width:61.9rem) {
    .share {
        padding-top: 1.5em
    }
}

.share > span {
    font-size: .8125rem;
    line-height: 1.21875rem;
    color: #737373;
    display: block;
    margin-bottom: 10px;
    text-align: center
}

@media (min-width:48rem) {
    .job-details .job-details__related-jobs,
    .job-details .job-details__viewed-jobs-carousel {
        margin-top: 40px
    }

    .share > span {
        text-align: left
    }
}

.share .share__icons {
    margin: 0 !important;
    padding: 0;
    text-align: center
}

    .share .share__icons > li {
        display: inline-block;
        padding: 0;
        margin-bottom: 10px;
        margin-right: 20px;
        position: relative;
        width: 40px
    }

        .share .share__icons > li:last-child {
            margin-right: 0
        }

@media (min-width:48rem) {
    .share .share__icons > li:last-child {
        margin-right: auto
    }

    .share .share__icons > li {
        display: block;
        margin-right: auto
    }
}

.share .share__icons > li a {
    font-size: 1.625rem;
    border: 1px solid #344b89;
    border-radius: 100%;
    color: #344b89;
    display: block;
    height: 40px;
    line-height: 1;
    text-align: center;
    width: 40px;
    -webkit-transition: all ease-in .2s;
    transition: all ease-in .2s
}

    .share .share__icons > li a:before {
        height: 30px;
        left: 5px;
        position: absolute;
        top: 6px;
        width: 30px
    }

    .share .share__icons > li a:hover {
        border-color: #425fae;
        color: #425fae
    }

    .share .share__icons > li a.fa-facebook-f:before {
        top: 8px;
        left: 4px
    }

    .share .share__icons > li a.fa-linkedin {
        border-color: #1483ba;
        color: #1483ba
    }

        .share .share__icons > li a.fa-linkedin:hover {
            border-color: #1ba3e6;
            color: #1ba3e6
        }

    .share .share__icons > li a.fa-twitter {
        border-color: #469ae9;
        color: #469ae9
    }

        .share .share__icons > li a.fa-twitter:hover {
            border-color: #74b3ee;
            color: #74b3ee
        }

        .share .share__icons > li a.fa-twitter:before {
            left: 5px;
            top: 7px
        }

    .share .share__icons > li a.fa-envelope-o {
        font-size: 1.5rem;
        line-height: 2.25rem;
        border-color: #776e6e;
        color: #776e6e
    }

        .share .share__icons > li a.fa-envelope-o:hover {
            border-color: #918787;
            color: #918787
        }

        .share .share__icons > li a.fa-envelope-o:before {
            left: 4px;
            top: 0
        }

.card {
    text-align: left;
    position: relative;
    margin-bottom: 2rem;
    background: #fff;
    border: 1.6px double #dad9d9;
    border-bottom: 5px solid #d21847;
    border-radius: 8px
}

.card__block {
    padding: 0;
    margin: 0 .9375rem;
    margin-bottom: 50px !important;
}

@media (min-width:48rem) {
    .card__block {
        margin: 0 1.875rem
    }

    .card__details ul {
        padding-right: 120px
    }
}

.card__details ul {
    margin: 0;
    position: relative
}

    .card__details ul li {
        display: block;
        margin-bottom: 0 !important;
        padding: 0 !important;
        border-bottom: none !important;
    }

        .card__details ul li span.icon {
            display: inline-block;
            vertical-align: middle
        }

            .card__details ul li span.icon:before {
                font-size: 1.875rem;
                line-height: 2.8125rem;
                color: #ed1c24
            }

@media (min-width:34rem) {
    .card__details ul li {
        display: inline-block;
        margin-right: 30px
    }
}

.card__details ul li.date-added {
    display: none
}

@media (min-width:48rem) {
    .card__details ul li.date-added {
        color: #b2b2b2;
        display: block;
        margin-right: 0;
        position: absolute;
        right: 0;
        top: 8px
    }
}

.card__title {
    margin-top: 0;
    margin-bottom: .3rem
}

.card__subtitle {
    margin-top: -.15rem;
    margin-bottom: 0
}

.card__text {
    display: none
}

@media (min-width:34rem) {
    .card__text {
        display: block
    }
}

.card__text:last-child {
    margin-bottom: 1rem
}

.card__link + .card__link {
    margin-left: 1.875rem
}

.card > .list-group:first-child .list-group-item:first-child {
    border-radius: 8px 8px 0 0
}

.card > .list-group:last-child .list-group-item:last-child {
    border-radius: 0 0 8px 8px
}

.card__header {
    padding: .3rem 1.875rem 0;
    position: relative
}

    .card__header .favourite,
    .card__header .favourite-save {
        position: absolute;
        right: .8rem;
        top: 1.6rem
    }

@media (max-width:47.9rem) {
    .card__header {
        padding: .3rem .9375rem 0
    }
}

.card__header:first-child {
    border-radius: 6.4px 6.4px 0 0
}

@keyframes hover {
    0% {
        background-position: center -50%
    }

    100% {
        background-position: center 50%
    }
}

@keyframes hoverOut {
    0% {
        background-position: center 150%
    }

    100% {
        background-position: center 50%
    }
}

.card__footer {
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    bottom: 0;
    position: absolute;
    width: 100%;
    border-top: 1.6px solid #dad9d9;
}

    .card__footer a {
        border-radius: 0 0 .23rem .23rem;
        color: #ed1c24;
        display: block;
        position: relative;
        font-size: 1.125rem;
        line-height: 2.5rem;
        padding: .23077rem 1.875rem 0
    }

.alert-form.base-form label.pretty-checkbox span:last-of-type a:hover,
.builder h4 span:hover,
.card__overlay p a,
.promo__article .promo-cta:hover,
.resource-landing .mini-card .resource-list-container .resource-list a:hover,
.sign-in-form.base-form a,
.terms-form.base-form a,
.typeahead-active .typeahead-container .recent-search-term:hover {
    text-decoration: underline
}

.card__footer a:after,
.card__footer a:before {
    content: " ";
    display: table
}

.card__footer a:hover {
    background-color: #d21847;
    color: #fff
}

.smil .card__footer a {
    -webkit-transition: color 10ms linear .15s;
    transition: color 10ms linear .15s
}

    .smil .card__footer a.mouseout {
        -webkit-animation: hoverOut .3s forwards linear;
        animation: hoverOut .3s forwards linear;
        background-image: -moz-radial-gradient(center, ellipse cover, #fff 0, #fff 65%, #d21847 67%, #d21847 99%);
        /*background-image: radial, ellipse center, #fff 0, #fff 65%, #d21847 67%, #d21847 99%;*/
        background-image: -webkit-radial-gradient(center, ellipse cover, #fff 0, #fff 65%, #d21847 67%, #d21847 99%);
        background-size: 140% 500%;
        background-position: center 150%;
        background-repeat: no-repeat;
        background-color: #d21847
    }

    .smil .card__footer a:hover {
        -webkit-animation: hover .4s forwards linear;
        animation: hover .4s forwards linear;
        background-color: #fff;
        background-image: -moz-radial-gradient(center, ellipse cover, #d21847 0, #d21847 65%, #fff 67%, #fff 100%);
        /*background-image: radial, ellipse center, #d21847 0, #d21847 65%, #fff 67%, #fff 99%;*/
        background-image: -webkit-radial-gradient(center, ellipse cover, #d21847 0, #d21847 65%, #fff 67%, #fff 100%);
        background-size: 140% 500%;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
        -webkit-transition: color 10ms linear .2s;
        transition: color 10ms linear .2s
    }

.card__footer a .fa-long-arrow-right {
    float: right;
    position: relative;
    top: 7px
}

.card__footer a .icon-continue {
    float: right;
    position: relative;
    top: 3px;
    font-size: 3rem;
    line-height: 2.875rem
}

.card__footer:last-child {
    border-radius: 0 0 6.4px 6.4px
}

.card__overlay {
    display: none;
    border-radius: 8px 8px 4px 4px;
    background: rgba(0, 0, 0, .7);
    left: 0;
    height: 100%;
    padding: 1rem 2rem;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%
}

.card--small .card__footer__link,
.card--small .card__header {
    padding-left: 1rem;
    padding-right: 1rem
}

.card__overlay p {
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: #fff;
    margin-top: 2rem;
    text-align: center
}

    .card__overlay p a {
        color: #fff;
        display: block
    }

.card__overlay .remove-text,
.card__overlay .save-text {
    display: none
}

.card__overlay .btn.btn--negative {
    border-color: #fff;
    color: #fff;
    margin: .25rem
}

    .card__overlay .btn.btn--negative:focus,
    .card__overlay .btn.btn--negative:hover {
        border-color: #fff;
        color: #fff
    }

.card__overlay.remove .remove-text,
.card__overlay.save .save-text {
    display: block
}

.card--suggestion {
    border-color: #d21847;
    border-width: 2px 2px 5px
}

    .card--suggestion .suggestion {
        color: #7b8184;
        display: block;
        margin-top: .5rem
    }

    .card--suggestion .card__footer__link {
        border-radius: 0 0 .23rem .23rem
    }

.card--small .card__header {
    min-height: 70px
}

.card--small.continue_application {
    height: 90px
}

.card--small .card__block {
    margin-left: 1rem;
    margin-right: 1rem
}

.card--small h4 {
    font-size: 1.625rem;
    line-height: 2.5rem;
    max-width: 80%
}

@media (min-width:34rem) {
    .card--small h4 {
        font-size: 1.625rem;
        line-height: 2.1875rem;
        /*
              white-space:nowrap;*/
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
        /* height:70px;*/
    }

    .card--small .card__details ul {
        padding-right: 0;
        margin: .5rem 0 1rem;
        margin: 0rem 0 1rem;
    }

        .card--small .card__details ul li {
            display: block;
            margin-bottom: .5rem
        }

            .card--small .card__details ul li .icon {
                height: 20px;
                position: relative;
                top: -3px
            }

                .card--small .card__details ul li .icon.icon-pin-outline {
                    left: -5px
                }

                .card--small .card__details ul li .icon.icon-wallet-outline {
                    left: -2px;
                    font-size: .2rem !important
                }

                .card--small .card__details ul li .icon:before {
                    line-height: 1
                }

    .card--small .card__continue .btn--apply-cta {
        padding: .5rem;
        text-align: left;
        display: inline-block;
        width: 100%;
        cursor: pointer;
    }

        .card--small .card__continue .btn--apply-cta i {
            color: #50ccf7;
            position: relative;
            top: 14px;
            float: right;
            font-size: 3rem;
            line-height: 2.875rem;
            margin-top: -20px;
            margin-bottom: -10px
        }

    .card--small .card__continue .application-cancel {
        float: right;
        padding: .5rem
    }
}

@media (max-width:1200px) {
    .card--small .card__continue .application-cancel {
        float: none;
        margin-bottom: .5rem;
        display: inline-block
    }
}

.card--small .card__status .date-applied {
    margin: 0 0 .2rem 1.1rem
}

.card--small .card__status .fa-circle {
    margin-right: .3rem;
    font-size: .75rem;
    line-height: .75rem
}

.card--small .card__status .status-description .icon-information {
    float: right;
    color: #ed1c24;
    font-size: 2rem;
    line-height: 1.5rem;
    cursor: pointer;
    margin-right: -5px;
    margin-left: -5px;
    position: relative;
    top: 1px
}

.card--small .card__status.status-applied {
    background-color: #dad9d9;
    display: inline-block;
    padding: 4px 8px 4px 6px;
    margin-bottom: 1rem
}

    .card--small .card__status.status-applied i {
        position: relative;
        top: 3px;
        padding-right: 4px
    }

.card--small .card__status.status-received .status-description i.fa-circle {
    color: #b2b2b2
}

.card--small .card__status.status-review .status-description i.fa-circle {
    color: #f9cf17
}

.card--small .card__status.status-interview-booked .status-description i.fa-circle {
    color: #f7632c
}

.card--small .card__status.status-successful .status-description i.fa-circle {
    color: #2eb44a
}

.card--small .card__status.status-unsuccessful .status-description i.fa-circle {
    color: #000
}

.card--small.continue-application {
    border: 2px dashed #b2b2b2
}

    .card--small.continue-application .card__header p {
        color: #ed1c24;
        margin-top: .5rem;
        font-size: .875rem;
        line-height: .875rem
    }

        .card--small.continue-application .card__header p i {
            font-size: 1.5rem;
            line-height: 1.5rem;
            position: relative;
            top: 7px;
            left: -2px;
            padding-right: 4px
        }

.card--primary {
    background-color: #fff;
    border-color: #b2b2b2
}

.card--inverse .card__footer,
.card--inverse .card__header {
    border-bottom: .075rem solid rgba(255, 255, 255, .2)
}

.card--inverse .card__blockquote,
.card--inverse .card__footer,
.card--inverse .card__header,
.card--inverse .card__title {
    color: #fff
}

    .card--inverse .card-text,
    .card--inverse .card__blockquote > footer,
    .card--inverse .card__link {
        color: rgba(255, 255, 255, .65)
    }

        .card--inverse .card__link:focus,
        .card--inverse .card__link:hover {
            color: #fff
        }

.card__blockquote {
    padding: 0;
    margin-bottom: 0;
    border-left: 0
}

.card__img {
    border-radius: .25rem
}

.card__img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem
}

.card__img-top {
    border-radius: .25rem .25rem 0 0
}

.card__img-bottom {
    border-radius: 0 0 .25rem .25rem
}

.card-deck {
    display: table;
    table-layout: fixed;
    border-spacing: 1.25rem 0
}

    .card-deck .card {
        display: table-cell;
        width: 1%;
        vertical-align: top
    }

.card-deck-wrapper {
    margin-right: -1.25rem;
    margin-left: -1.25rem
}

.card-group {
    display: table;
    width: 100%;
    table-layout: fixed
}

    .card-group .card {
        display: table-cell;
        vertical-align: top
    }

        .card-group .card + .card {
            margin-left: 0;
            border-left: 0
        }

        .card-group .card:first-child .card__img-top {
            border-top-right-radius: 0
        }

        .card-group .card:first-child .card__img-bottom {
            border-bottom-right-radius: 0
        }

        .card-group .card:last-child .card__img-top {
            border-top-left-radius: 0
        }

        .card-group .card:last-child .card__img-bottom {
            border-bottom-left-radius: 0
        }

        .card-group .card:not(:first-child):not(:last-child),
        .card-group .card:not(:first-child):not(:last-child) .card-img-bottom,
        .card-group .card:not(:first-child):not(:last-child) .card-img-top {
            border-radius: 0
        }

.card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem
}

    .card-columns .card {
        display: inline-block;
        width: 100%
    }

.profile-mini-card {
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    background: #fff;
    border: 1px solid #dfd7d7;
    border-radius: .4rem;
    margin: .75rem 0 0
}

    .profile-mini-card.empty-card {
        border: 2px dashed #dfd7d7
    }

        .profile-mini-card.empty-card.required-card,
        .profile-mini-card.required-card {
            border-color: #b2b2b2
        }

    .profile-mini-card.complete {
        border-bottom-width: 4px
    }

    .profile-mini-card .done-icon-container {
        border: 1px solid #ed1c24;
        float: right;
        border-radius: 50%;
        background-color: #ed1c24;
        /*padding: auto;*/
        font-size: 1rem;
        height: 1.6rem;
        width: 1.6rem;
        margin: 10px 20px auto auto
    }

    .profile-mini-card .profile-card-icon {
        color: #ed1c24;
        font-size: 3.4rem;
        display: inline-block;
        position: relative;
        top: 18px;
        padding-left: 12px
    }

        .profile-mini-card .profile-card-icon.profile-card-icon-left {
            right: 0;
            padding-right: 12px;
            float: right
        }

            .profile-mini-card .profile-card-icon.profile-card-icon-left.icon-done {
                font-size: 1.875rem;
                line-height: 2.8125rem;
                color: #fff;
                top: -6px;
                left: 2px;
                padding: 0
            }

    .profile-mini-card .profile-card-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        position: relative
    }

        .profile-mini-card .profile-card-title .unfilled {
            color: #ed1c24
        }

        .profile-mini-card .profile-card-title hr {
            margin: 10px 20px;
            border: 0;
            height: 0;
            border-top: 1px solid #ccc
        }

        .profile-mini-card .profile-card-title .subtitle {
            font-size: 1rem;
            margin-left: 20px;
            margin-right: 20px
        }

            .profile-mini-card .profile-card-title .subtitle small {
                color: #737373;
                display: block;
                line-height: 1.2;
                margin-top: .2rem
            }

    .profile-mini-card .profile-card-summary .editable-item:after,
    .profile-mini-card .profile-card-summary .editable-item:before,
    .profile-mini-card .profile-card-summary .jobs li .summary:after,
    .profile-mini-card .profile-card-summary .jobs li .summary:before {
        content: " ";
        display: table
    }

    .profile-mini-card .profile-card-title .icon-circle-tick {
        height: 25px;
        position: absolute;
        right: 1rem;
        top: 1rem;
        width: 25px
    }

        .profile-mini-card .profile-card-title .icon-circle-tick:before {
            font-size: 1.875rem;
            line-height: 2.8125rem;
            line-height: normal;
            left: -2px;
            top: 2px
        }

    .profile-mini-card .profile-card-title > span {
        position: relative;
        top: -8px
    }

    .profile-mini-card .profile-card-summary {
        padding: 0 1rem 1rem
    }

        .profile-mini-card .profile-card-summary small {
            font-size: .75rem;
            line-height: 1.125rem;
            color: #b2b2b2
        }

        .profile-mini-card .profile-card-summary p {
            margin-bottom: .5rem
        }

        .profile-mini-card .profile-card-summary .editable-item {
            cursor: pointer;
            -webkit-transition: background-color .1s linear;
            transition: background-color .1s linear
        }

            .profile-mini-card .profile-card-summary .editable-item:hover {
                background: #fafafa
            }

        .profile-mini-card .profile-card-summary .expandable-container {
            -webkit-transition: height .5s ease-out;
            transition: height .5s ease-out
        }

        .profile-mini-card .profile-card-summary .jobs-list {
            overflow: hidden
        }

        .profile-mini-card .profile-card-summary .jobs {
            margin: 0 0 1rem
        }

            .profile-mini-card .profile-card-summary .jobs li {
                margin-bottom: 0;
                padding: .75rem
            }

                .profile-mini-card .profile-card-summary .jobs li .summary {
                    position: relative
                }

                    .profile-mini-card .profile-card-summary .jobs li .summary p {
                        font-size: 1.25rem;
                        line-height: 1.875rem;
                        line-height: 1.2
                    }

@media (min-width:62rem) {
    .profile-mini-card .profile-card-summary .jobs li .summary p {
        float: left;
        margin-bottom: 0;
        width: 55%
    }
}

.profile-mini-card .profile-card-cta .btn--enhance i,
.profile-mini-card .profile-card-cta .cta-column .btn i,
.profile-mini-card .profile-card-cta > .btn--check-profile i {
    float: right
}

.profile-mini-card .profile-card-summary .jobs li .summary small {
    font-size: .875rem;
    line-height: 1.3125rem;
    display: block
}

@media (min-width:62rem) {
    .profile-mini-card .profile-card-summary .jobs li .summary small {
        bottom: 0;
        display: inline;
        text-align: right;
        position: absolute;
        width: 38%
    }
}

.profile-mini-card .profile-card-summary .expand-section {
    background: #e7e6e6;
    color: #ed1c24;
    cursor: pointer;
    display: block;
    margin-bottom: .5rem;
    padding: .2rem 0;
    text-align: center;
    -webkit-transition: background-color .1s linear;
    transition: background-color .1s linear
}

    .profile-mini-card .profile-card-summary .expand-section:hover {
        background: #cecccc
    }

    .profile-mini-card .profile-card-summary .expand-section.expanded {
        margin-top: 1.5rem
    }

        .profile-mini-card .profile-card-summary .expand-section.expanded .down {
            display: none
        }

        .profile-mini-card .profile-card-summary .expand-section.expanded .up {
            display: block
        }

    .profile-mini-card .profile-card-summary .expand-section .up {
        display: none
    }

    .profile-mini-card .profile-card-summary .expand-section .down {
        display: block
    }

    .profile-mini-card .profile-card-summary .expand-section i {
        margin-left: .75rem;
        position: relative;
        top: 10px;
        font-size: 1.8rem;
        display: inline-block
    }

.profile-mini-card .profile-card-cta {
    text-align: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 .75rem 25px
}

    .profile-mini-card .profile-card-cta p {
        color: #ed1c24
    }

    .profile-mini-card .profile-card-cta .cta-column {
        padding: 0;
        margin-left: auto;
        margin-right: auto;
        width: 100%
    }

@media (min-width:62rem) {
    .profile-mini-card .profile-card-cta .cta-column {
        width: 210px
    }

        .profile-mini-card .profile-card-cta .cta-column .btn {
            display: block
        }
}

.profile-mini-card .profile-card-cta .cta-column .column-btn {
    margin: auto;
    height: auto
}

.profile-mini-card .profile-card-cta .cta-column .btn {
    margin: 0 auto .5rem;
    width: 100%;
    text-align: left
}

@media (min-width:62rem) {
    .profile-mini-card .profile-card-cta .cta-column .btn--check-profile,
    .profile-mini-card .profile-card-cta .cta-column .btn--import,
    .profile-mini-card .profile-card-cta .cta-column .btn--linkedin,
    .profile-mini-card .profile-card-cta .cta-column .btn--notify {
        width: 275px;
        font-size: 1.25rem
    }

    .profile-mini-card .profile-card-cta .cta-column {
        width: 100%
    }
}

@media (min-width:48rem) {
    .profile-mini-card .profile-card-cta .cta-column.wide {
        width: auto;
        text-align: left;
        margin: 0 1rem
    }

        .profile-mini-card .profile-card-cta .cta-column.wide .column-btn {
            min-width: 190px;
            display: inline-block;
            margin: 0 .598rem .598rem 0;
            line-height: 1.5rem
        }
}

.profile-mini-card .profile-card-cta .star-container {
    border: 1px solid #dfd7d7;
    width: auto;
    border-radius: 8px;
    padding: 15px 20px
}

    .profile-mini-card .profile-card-cta .star-container p {
        text-align: left;
        margin: auto
    }

        .profile-mini-card .profile-card-cta .star-container p:first-of-type {
            margin-bottom: 10px
        }

@media (min-width:62rem) {
    .profile-mini-card .profile-card-cta .star-container {
        margin-left: 20px;
        margin-right: 20px
    }
}

.profile-mini-card .profile-card-cta .stars {
    margin: auto
}

    .profile-mini-card .profile-card-cta .stars i {
        font-size: 2.816rem;
        position: relative;
        top: 5px;
        margin-left: -8px;
        left: -4px
    }

    .profile-mini-card .profile-card-cta .stars .icon-star-outline {
        color: #dfd7d7
    }

    .profile-mini-card .profile-card-cta .stars .star-description {
        position: relative;
        display: block
    }

@media (min-width:34rem) {
    .profile-mini-card .profile-card-cta .stars .star-description {
        top: -10px;
        display: inline-block
    }
}

.profile-mini-card .profile-card-cta .btn--enhance,
.profile-mini-card .profile-card-cta > .btn--check-profile {
    font-size: 1rem;
    width: 100%
}

@media (min-width:62rem) {
    .profile-mini-card .profile-card-cta .btn--enhance,
    .profile-mini-card .profile-card-cta > .btn--check-profile {
        width: auto;
        font-size: 1.25rem
    }
}

.tip-style.jobcard-tip {
    border: 1px solid #dfd7d7;
    max-width: 275px;
    box-shadow: 0 8px 20px 0 rgba(35, 31, 32, .25)
}

    .tip-style.jobcard-tip p {
        font-size: .875rem;
        line-height: 1.25rem;
        margin: 0;
        color: #000
    }

    .tip-style.jobcard-tip .qtip-close {
        background: 0 0
    }

        .tip-style.jobcard-tip .qtip-close span {
            color: #fff;
            content: '';
            speak: none
        }

            .tip-style.jobcard-tip .qtip-close span:before {
                font-size: 1.5rem;
                line-height: 2.25rem;
                content: '\7a';
                font-family: adecco-font-1 !important;
                color: #ed1c24;
                display: block;
                position: absolute;
                left: 4px;
                top: 2px
            }

    .tip-style.jobcard-tip .notifications-tip__items li a,
    .tip-style.jobcard-tip .profile-tip__links li a {
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
    }

    .tip-style.jobcard-tip h6 {
        padding: .2rem 0 .5rem
    }

        .tip-style.jobcard-tip h6:before {
            display: none
        }

    .tip-style.jobcard-tip .profile-tip__header {
        margin-bottom: 0
    }

        .tip-style.jobcard-tip .profile-tip__header:after,
        .tip-style.jobcard-tip .profile-tip__header:before {
            content: " ";
            display: table
        }

        .tip-style.jobcard-tip .profile-tip__header img {
            border-radius: 50%;
            height: 3.75rem;
            width: 3.75rem;
            float: left
        }

        .tip-style.jobcard-tip .profile-tip__header .profile-information {
            float: left;
            padding: .875rem 26px .875rem 14px
        }

            .tip-style.jobcard-tip .profile-tip__header .profile-information span {
                font-size: .625rem;
                line-height: .75rem;
                color: #737373;
                display: block
            }

            .tip-style.jobcard-tip .profile-tip__header .profile-information .profile-name {
                font-size: 1.25rem;
                line-height: 1.25rem;
                color: #ed1c24;
                font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
            }

    .tip-style.jobcard-tip .profile-tip__links {
        list-style: none;
        padding: 0;
        margin: 0
    }

        .tip-style.jobcard-tip .profile-tip__links li {
            margin: 0;
            padding: 0;
            border-bottom: 1px solid rgba(35, 31, 32, .1)
        }

            .tip-style.jobcard-tip .profile-tip__links li:last-child {
                border-bottom: 0
            }

            .tip-style.jobcard-tip .profile-tip__links li a {
                font-size: 1rem;
                line-height: 1.125rem;
                color: #000;
                display: block;
                padding: .325rem 8px .625rem
            }

                .tip-style.jobcard-tip .profile-tip__links li a .icon {
                    font-size: 1.5rem;
                    line-height: 0;
                    margin-right: 4px;
                    opacity: .3;
                    position: relative;
                    top: .375rem
                }

                .tip-style.jobcard-tip .profile-tip__links li a:hover {
                    background-color: #fafafa
                }

    .tip-style.jobcard-tip .notifications-tip__items {
        margin: 0;
        padding: 0;
        list-style: none
    }

        .tip-style.jobcard-tip .notifications-tip__items li {
            font-size: 1rem;
            line-height: 1.125rem;
            border-bottom: 1px solid rgba(35, 31, 32, .1);
            color: #000;
            margin: 0;
            padding: .625rem 0
        }

            .tip-style.jobcard-tip .notifications-tip__items li:last-child {
                border-bottom: 0
            }

.base-form input,
.base-form input[type=text],
.base-form input[type=password],
.base-form input[type=email],
.base-form select,
.search-form input,
.search-form input[type=text],
.search-form input[type=password],
.search-form input[type=email],
.search-form select {
    font-size: .9375rem;
    line-height: 1.40625rem;
    border-radius: .4rem;
    box-shadow: 0 1px 1px 0 #b2b2b2;
    border: none;
    cursor: pointer
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .base-form input,
    .base-form input[type=text],
    .base-form input[type=password],
    .base-form input[type=email],
    .base-form select,
    .search-form input,
    .search-form input[type=text],
    .search-form input[type=password],
    .search-form input[type=email],
    .search-form select {
        font-size: 16px
    }
}

.base-form label,
.search-form label {
    font-size: .9375rem;
    line-height: 1.40625rem;
    border: none;
    cursor: pointer
}

.base-form input[type=text],
.base-form input[type=password],
.base-form input[type=email],
.search-form input[type=text],
.search-form input[type=password],
.search-form input[type=email] {
    width: 100%;
    padding: .5rem .75rem
}

.base-form input.aim,
.search-form input.aim {
    padding-right: 2rem
}

.base-form input::-ms-clear,
.search-form input::-ms-clear {
    display: none
}

.base-form fieldset,
.search-form fieldset {
    border: none;
    margin: 1rem auto 1.875rem;
    padding: 0 .75rem
}

@media (min-width:34rem) {
    .base-form fieldset,
    .search-form fieldset {
        max-width: 34rem
    }
}

@media (min-width:48rem) {
    .base-form fieldset,
    .search-form fieldset {
        max-width: 45rem
    }
}

@media (min-width:62rem) {
    .base-form fieldset,
    .search-form fieldset {
        max-width: 60rem;
        margin-bottom: 1.3rem
    }
}

@media (min-width:75rem) {
    .base-form fieldset,
    .search-form fieldset {
        max-width: 73.125rem
    }
}

.base-form select,
.search-form select {
    padding: 1.1rem .8rem;
    width: 100%;
    margin-bottom: .9rem
}

    .base-form select:disabled,
    .search-form select:disabled {
        opacity: .5;
        cursor: not-allowed
    }

    .base-form select:last-of-type,
    .search-form select:last-of-type {
        margin-bottom: 0
    }

@media (min-width:34rem) {
    .base-form select,
    .search-form select {
        padding: .7rem .8rem
    }
}

.base-form legend,
.search-form legend {
    font-size: .75rem;
    line-height: 1.125rem;
    color: #394449;
    display: block;
    padding-bottom: .5rem
}

@media (min-width:62rem) {
    .base-form legend,
    .search-form legend {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.base-form label,
.base-form legend,
.search-form label,
.search-form legend {
    position: relative
}

    .base-form label.required:after,
    .base-form legend.required:after,
    .search-form label.required:after,
    .search-form legend.required:after {
        color: #ed1c24;
        content: '*';
        position: absolute;
        right: -.5rem;
        top: 0
    }

    .base-form label.error,
    .search-form label.error {
        font-size: .875rem;
        line-height: 1.125rem;
        color: #ed1c24;
        margin-bottom: .5rem
    }

.base-form .error-icon,
.search-form .error-icon {
    font-size: 1.125rem;
    line-height: 1.125rem;
    color: #ed1c24;
    position: absolute;
    right: .5rem;
    top: 2.8rem
}

.base-form input ~ .error-icon,
.search-form input ~ .error-icon {
    display: none
}

.base-form input.error ~ .error-icon,
.search-form input.error ~ .error-icon {
    display: inline-block
}

.base-form .show-password,
.search-form .show-password {
    font-size: 1.75rem;
    line-height: 1.75rem;
    color: #ed1c24;
    cursor: pointer;
    position: absolute;
    right: .5rem;
    top: 2.6rem
}

.base-form input.error ~ .show-password ~ .error-icon,
.search-form input.error ~ .show-password ~ .error-icon {
    display: none
}

.base-form .input-grp,
.search-form .input-grp {
    position: relative
}

.base-form .hint,
.search-form .hint {
    font-size: .875rem;
    line-height: 1rem;
    background: #dad9d9;
    border-radius: 4px;
    display: none;
    left: calc(100% + 20px);
    opacity: 0;
    padding: .5rem 1rem;
    position: absolute;
    top: 1.8rem;
    -webkit-transition: opacity .1s linear;
    transition: opacity .1s linear;
    width: 100%
}

@media (min-width:48rem) {
    .base-form .hint,
    .search-form .hint {
        display: block
    }
}

.base-form .hint:before,
.search-form .hint:before {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 10px solid #dad9d9;
    content: '';
    height: 0;
    left: -10px;
    position: absolute;
    top: calc(50% - 7px);
    width: 0
}

.base-form .hint.show,
.search-form .hint.show {
    opacity: 1
}

.base-form .input-toggle,
.search-form .input-toggle {
    background: #fff;
    text-align: center;
    border-radius: .3rem;
    padding: .7rem 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 -1px 1px 0 #b2b2b2
}

    .base-form .input-toggle input[type=radio],
    .search-form .input-toggle input[type=radio] {
        font-size: 1px;
        height: 0;
        left: 5px;
        overflow: hidden;
        position: absolute;
        top: 5px;
        width: 0;
        z-index: -1
    }

        .base-form .input-toggle input[type=radio]:checked + label,
        .search-form .input-toggle input[type=radio]:checked + label {
            color: #ed1c24;
            border-color: #e2e1e1
        }

    .base-form .input-toggle label,
    .search-form .input-toggle label {
        display: inline-block;
        /*background: #fff;*/
        background-color: transparent;
        color: #dad9d9;
        -webkit-transition: .15s ease-in all;
        transition: .15s ease-in all;
        width: 50%;
        margin-right: -4px;
        padding: .5rem 0;
        border-right: 2px solid #e7e6e6;
        border-radius: 0;
        box-shadow: none;
        position: relative
    }

    .base-form .input-toggle.disabled,
    .search-form .input-toggle.disabled {
        background-color: #e2e1e1;
    }

        .base-form .input-toggle.disabled label,
        .search-form .input-toggle.disabled label {
            color: #6f6c6c;
            cursor: not-allowed;
        }

        .base-form .input-toggle.disabled [type=radio]:checked + label,
        .search-form .input-toggle.disabled [type=radio]:checked + label {
            color: #ed1c24;
            border-color: #e2e1e1
        }

    .base-form .input-toggle label:last-of-type,
    .search-form .input-toggle label:last-of-type {
        border-right: none
    }

    .base-form .input-toggle label:focus,
    .search-form .input-toggle label:focus {
        border: 1px solid red
    }

    .base-form .input-toggle.input-toggle--three label,
    .search-form .input-toggle.input-toggle--three label {
        width: 33%
    }

@media (min-width:34rem) {
    .base-form .input-toggle,
    .search-form .input-toggle {
        padding: .8rem 0
    }

        .base-form .input-toggle label,
        .search-form .input-toggle label {
            padding: .1rem 0
        }

    .base-form__actions .search-form__actions-container,
    .search-form__actions .search-form__actions-container {
        max-width: 34rem
    }
}

.base-form .error-summary,
.search-form .error-summary {
    display: none;
    margin-bottom: 2rem
}

    .base-form .error-summary .header:after,
    .base-form .error-summary .header:before,
    .base-form__actions .search-form__actions-container:after,
    .base-form__actions .search-form__actions-container:before,
    .base-form__actions:after,
    .base-form__actions:before,
    .search-form .error-summary .header:after,
    .search-form .error-summary .header:before,
    .search-form__actions .search-form__actions-container:after,
    .search-form__actions .search-form__actions-container:before,
    .search-form__actions:after,
    .search-form__actions:before {
        content: " ";
        display: table
    }

    .base-form .error-summary .header,
    .search-form .error-summary .header {
        background: #ed1c24;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        color: #fff;
        padding: .75rem;
        position: relative
    }

        .base-form .error-summary .header i,
        .search-form .error-summary .header i {
            font-size: 2.5rem;
            line-height: 2.5rem;
            position: absolute;
            left: .75rem;
            top: .75rem
        }

        .base-form .error-summary .header .content,
        .search-form .error-summary .header .content {
            float: right;
            width: calc(100% - 45px)
        }

            .base-form .error-summary .header .content h5,
            .search-form .error-summary .header .content h5 {
                color: #fff;
                margin: 0
            }

            .base-form .error-summary .header .content p,
            .search-form .error-summary .header .content p {
                margin-bottom: .5rem
            }

    .base-form .error-summary .errors,
    .search-form .error-summary .errors {
        border: 1px solid #dad9d9;
        border-top: none;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        padding: 0 .75rem 0 2rem
    }

@media (min-width:48rem) {
    .base-form .error-summary .header i,
    .search-form .error-summary .header i {
        font-size: 5rem;
        line-height: 5rem
    }

    .base-form .error-summary .header .content,
    .search-form .error-summary .header .content {
        width: calc(100% - 90px)
    }

    .base-form .error-summary .errors,
    .search-form .error-summary .errors {
        padding: 0 .75rem 0 7.5rem
    }

    .base-form__actions .search-form__actions-container,
    .search-form__actions .search-form__actions-container {
        max-width: 45rem
    }
}

.base-form .error-summary .errors ul,
.search-form .error-summary .errors ul {
    margin: 0;
    padding: .75rem 0
}

    .base-form .error-summary .errors ul li,
    .search-form .error-summary .errors ul li {
        margin-bottom: 0;
        padding: 0
    }

.base-form__actions,
.search-form__actions {
    background: #fff;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px
}

@media (min-width:62rem) {
    .base-form__actions,
    .search-form__actions {
        background: 0 0;
        padding-right: 0;
        padding-left: 0
    }

        .base-form__actions .search-form__actions-container,
        .search-form__actions .search-form__actions-container {
            max-width: 60rem
        }
}

.base-form__actions .search-form__actions-container,
.search-form__actions .search-form__actions-container {
    margin: 0 auto;
    padding-left: .75rem;
    padding-right: .75rem
}

.base-form__actions .btn--reset,
.search-form__actions .btn--reset {
    float: left;
    width: 45%
}

@media (min-width:62rem) {
    .base-form__actions .btn--reset {
        padding: .5rem;
        border-radius: .3rem;
        display: inline-block;
        width: 50%
    }

        .base-form__actions .btn--reset .fa-close,
        .search-form__actions .btn--reset .fa-close {
            font-size: 1rem;
            line-height: 1.5rem
        }

    .base-form__actions .btn--apply,
    .search-form__actions .btn--apply {
        display: none
    }
}

.base-form__actions .btn--apply,
.search-form__actions .btn--apply {
    float: right;
    width: 45%
}

.base-form__actions.sticky,
.search-form__actions.sticky {
    position: fixed;
    z-index: 3
}

.base-form .dropdown,
.search-form .dropdown {
    background: #fff;
    border-radius: 4px;
    display: block;
    position: relative;
    z-index: 0
}

    .base-form .dropdown select,
    .search-form .dropdown select {
        padding: 10px;
        background: 0 0;
        border: none;
        border-radius: 4px;
        color: #000;
        display: inline-block;
        -webkit-appearance: none;
        -moz-appearance: none;
        /*appearance: none;*/
        cursor: pointer;
        outline: 0
    }

        .base-form .dropdown select:-moz-focusring,
        .search-form .dropdown select:-moz-focusring {
            color: transparent;
            text-shadow: 0 0 0 #444
        }

        .base-form .dropdown select::-ms-expand,
        .search-form .dropdown select::-ms-expand {
            display: none
        }

.csstransitions .base-form .dropdown:after,
.csstransitions .search-form .dropdown:after {
    background-color: #fff;
    color: #ed1c24;
    content: '\f078';
    font-family: FontAwesome;
    right: 10px;
    top: 10px;
    position: absolute;
    width: 35px;
    padding: 0 0 5px;
    text-indent: 14px;
    z-index: -1
}

.csstransitions .base-form .dropdown select,
.csstransitions .search-form .dropdown select {
    padding: 10px 42px 10px 10px
}

.base-form .location-slider-info,
.search-form .location-slider-info {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 10px
}

    .base-form .location-slider-info .location,
    .search-form .location-slider-info .location {
        color: #ed1c24
    }

    .base-form .location-slider-info .distance,
    .search-form .location-slider-info .distance {
        color: #b2b2b2
    }

.base-form .salary .salary-freq-container:after,
.base-form .salary .salary-freq-container:before,
.search-form .salary .salary-freq-container:after,
.search-form .salary .salary-freq-container:before {
    content: " ";
    display: table
}

.base-form .salary legend,
.search-form .salary legend {
    float: left;
    width: 40%
}

.base-form .salary .salary-dropdown,
.search-form .salary .salary-dropdown {
    display: inline-block;
    float: right;
    width: 50%
}

    .base-form .salary .salary-dropdown:after,
    .search-form .salary .salary-dropdown:after {
        top: 10px
    }

.base-form .salary-slider-info,
.search-form .salary-slider-info {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #ed1c24;
    margin-bottom: 10px
}

@media (min-width:62rem) {
    .base-form .salary-slider-info,
    .search-form .salary-slider-info {
        margin-top: 10px
    }
}

.base-form .pretty-checkbox,
.search-form .pretty-checkbox {
    position: relative;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block
}

    .base-form .pretty-checkbox input[type=checkbox],
    .search-form .pretty-checkbox input[type=checkbox] {
        border: none;
        box-shadow: none;
        visibility: hidden
    }

.base-form .fake-check,
.search-form .fake-check {
    display: block;
    background: #fff;
    border: 1px solid #e7e6e6;
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: .2rem;
    top: 4px
}

.base-form input[type=checkbox]:checked + .fake-check:after,
.search-form input[type=checkbox]:checked + .fake-check:after {
    content: '\f00c';
    font-family: FontAwesome;
    font-size: .75rem;
    line-height: 1.125rem;
    color: #ed1c24;
    position: absolute;
    top: -2px;
    left: 1px
}

.base-form .noUi-target,
.search-form .noUi-target {
    border: none
}

    .base-form .noUi-target.noUi-connect,
    .search-form .noUi-target.noUi-connect {
        background: #c5191f;
        box-shadow: none
    }

    .base-form .noUi-target.noUi-horizontal,
    .search-form .noUi-target.noUi-horizontal {
        height: 5px
    }

        .base-form .noUi-target.noUi-horizontal .noUi-handle,
        .search-form .noUi-target.noUi-horizontal .noUi-handle {
            background: #ed1c24;
            border: none;
            box-shadow: none;
            border-radius: 100%;
            cursor: pointer;
            height: 22px;
            top: -9px;
            width: 22px
        }

            .base-form .noUi-target.noUi-horizontal .noUi-handle:after,
            .base-form .noUi-target.noUi-horizontal .noUi-handle:before,
            .search-form .noUi-target.noUi-horizontal .noUi-handle:after,
            .search-form .noUi-target.noUi-horizontal .noUi-handle:before {
                font-size: .5625rem;
                background: 0 0;
                color: #fff;
                content: '\f053';
                font-family: FontAwesome;
                left: 3px;
                line-height: 1;
                top: 6px;
                width: 5px
            }

.modal--preview .preview__header p,
.modal--sign-in .manual-sign-up .or span,
.modal--sign-in .social-sign-up p {
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
}

.base-form .noUi-target.noUi-horizontal .noUi-handle:after,
.search-form .noUi-target.noUi-horizontal .noUi-handle:after {
    content: '\f054';
    left: auto;
    right: 4px
}

.base-form .noUi-target .noUi-connect,
.search-form .noUi-target .noUi-connect {
    background: #c5191f;
    box-shadow: none
}

.base-form .noUi-origin.noUi-background,
.search-form .noUi-origin.noUi-background {
    background: #b2b2b2;
    border-top: 1px solid #e7e6e6;
    border-bottom: 1px solid #e7e6e6;
    box-shadow: none
}

.base-form .range-slider .noUi-base,
.search-form .range-slider .noUi-base {
    background: #b2b2b2;
    box-shadow: inset 0 1px 0 0 #e7e6e6, inset 0 -1px 0 0 #e7e6e6
}

.pagination {
    margin-bottom: 2rem;
    position: relative;
    text-align: center
}

    .pagination:after,
    .pagination:before {
        content: " ";
        display: table
    }

    .pagination li,
    .pagination ul,
    .pagination__nav .next-grp,
    .pagination__nav .prev-grp,
    .pagination__nav a {
        display: inline-block
    }

    .pagination ul {
        background: #fff;
        border: 1px solid #dad9d9;
        border-radius: 4px;
        margin: 0 0 1rem
    }

@media (min-width:48rem) {
    .pagination ul {
        margin: 0
    }
}

.pagination li {
    margin-bottom: 0;
    padding: 5px 0
}

    .pagination li a {
        border-right: 1px solid #dad9d9;
        color: #dad9d9;
        padding: 0 1rem
    }

        .pagination li a:hover {
            color: #000
        }

    .pagination li.active a {
        color: #ed1c24;
    }

    .pagination li:last-child a {
        border-right: none
    }

    .pagination li.current a {
        color: #ed1c24
    }

.pagination__nav .prev-grp {
    margin-right: .5rem
}

@media (min-width:48rem) {
    .pagination__nav .next-grp,
    .pagination__nav .prev-grp {
        margin: 0;
        position: absolute;
        top: 0
    }

    .pagination__nav .prev-grp {
        left: 0
    }

    .pagination__nav .next-grp {
        right: 0
    }
}

.pagination__nav a {
    border: 2px solid #ed1c24;
    border-radius: 4px;
    margin: 0 .2rem;
    padding: .25rem 1rem
}

    .pagination__nav a.disabled {
        border-color: #dad9d9;
        color: #dad9d9
    }

.search-bar {
    background: url(assets/images/backgrounds/bg-generic-smoke.png) center no-repeat #ed1c24;
    background-size: cover;
    border-bottom: 1px solid #dad9d9;
    padding: 100px 0
}

    .search-bar:after,
    .search-bar:before {
        content: " ";
        display: table
    }

    .search-bar .h6 {
        color: #000;
        margin-top: 0
    }

    .search-bar .search-input-group {
        position: relative
    }

@media (min-width:48rem) {
    .search-bar .search-input-group {
        display: inline-block;
        width: 41%;
        margin-right: 4%
    }
}

.search-bar label {
    color: #fff;
    font-size: .8125rem;
    line-height: .8125rem;
    opacity: .8
}

.search-bar input {
    font-size: 1.5rem;
    line-height: 2.25rem;
    background: 0 0;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    display: block;
    margin-bottom: 20px;
    outline: 0;
    width: 100%;
    padding: 0
}

.search-bar::-ms-clear {
    display: none !important
}

.search-bar::-webkit-input-placeholder {
    color: #737373
}

.search-bar:-moz-placeholder {
    color: #737373
}

.search-bar::-moz-placeholder {
    color: #737373
}

.search-bar:-ms-input-placeholder {
    color: #737373
}

.search-bar .clear-search {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAhCAMAAABgOjJdAAABHVBMVEWBgYL///+BgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYKBgYJlA8JZAAAAX3RSTlMAAAEDBAUGBwgJCwwPERIUFxgZGhscHR4fICEiIyQlJicoKSorLDEyMzQ1Njc4OT0+P0BBQkRGR0pLTE1OUFJUVVZZWltcXV5fYGFiZ2psbW5vcHFyd3h5ent8fX5/gMWnGN4AAAG0SURBVHgBddT9dtJAFATwSZNNVEr9KFJpraVWrRAULW3VarUfKtEqEEKTIGHe/zFkj8HchdP5+3fmbHbvDYqsPDz4FiaMB1/fVpDHsizM474asEjfV4tib0QmXxqPyqVyrXmWktGuIZxTMnypisJmRJ7Yhbj1g1lHQUYdTdn15kIFjLewmO2EgZ2LU8b3sZxKzJN/4jkz0SDyeMq6Fu6IBwBKbXkQt1MCcMShmonXHDi6M+uqAvyc3NMHjNi0sDLkC+g8m5EC7EKnyZ6FDcYOTOJe5QBuygoO+RmQRIM68pyzjYD7MIgEaPESI1YhyR0JUGMff7gKSVIJcJcxyNso4v3mL3kvq5yYHd7V5F0WKLNDn0OAOvYk2WRPf4sBYJAWL/R9mMAg+j6qTBwTCOKNua7fZR/yJiXx2dNvy1CXbI0LMCOTjf9vq+ejg1lsyOgKHDN0LO1vmrHtKXcsLfCJ8QMsp5ryQz7JdsBkueVJyq6dC3gBs8OFfTme8rsSO/eRHDbcYk79iHxvG3v7NCLTM7+2Vl7bbJ2PyXBncfeVL3e/13AgRZ7Km8v+dXbdv2ivi//HX7iEYnO/j/MVAAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
    height: 20px;
    position: absolute;
    right: 0;
    top: 10px;
    width: 20px
}

@media (min-width:48rem) {
    .search-bar input {
        margin-bottom: 0
    }

    .search-bar .clear-search {
        top: 2rem
    }
}

@media (min-width:62rem) {
    .search-bar input {
        font-size: 3.125rem;
        line-height: 3.375rem
    }

    .search-bar .clear-search {
        top: 2.7rem
    }
}

.search-bar .search-submit {
    background-color: #ed1c24;
    border: none;
    border-radius: 5px;
    color: #fff;
    height: 35px;
    width: 100%;
    overflow: visible
}

@media (min-width:48rem) {
    .search-bar .search-submit {
        background-color: transparent;
        float: right;
        display: inline-block;
        position: relative;
        top: 1rem;
        width: auto
    }

        .search-bar .search-submit span {
            display: none
        }
}

.search-bar .search-submit .fa-search {
    margin-left: 10px
}

@media (min-width:48rem) {
    .search-bar .search-submit .fa-search {
        font-size: 1.875rem;
        line-height: 2.8125rem;
        color: #fff;
        margin: 0
    }
}

@media (min-width:62rem) {
    .search-bar .search-submit {
        top: 1.8rem
    }

        .search-bar .search-submit .fa-search {
            font-size: 2.1875rem;
            line-height: 3.28125rem
        }
}

.modal-container {
    margin: 0;
    padding: 0
}

.modal {
    display: none;
    z-index: 3
}

.modal--alert .modal__content:after,
.modal--alert .modal__content:before,
.modal--edit-profile .modal__header:after,
.modal--edit-profile .modal__header:before,
.modal--preview .modal__header:after,
.modal--preview .modal__header:before,
.modal--register .modal__header:after,
.modal--register .modal__header:before,
.modal--sign-in .modal__header:after,
.modal--sign-in .modal__header:before,
.modal--terms .modal__header:after,
.modal--terms .modal__header:before {
    content: " ";
    display: table
}

.modal--alert {
    position: fixed;
    top: 0;
    width: 100%
}

    .modal--alert .modal__content {
        background: #fff;
        border-radius: 4px;
        margin: 5% 0
    }

@media (min-width:48rem) {
    .modal--alert {
        top: 100px
    }

        .modal--alert .modal__content {
            margin: 0
        }
}

.modal__header {
    padding: .75rem 1.5rem;
    position: relative
}

    .modal__header h4 {
        color: #000;
        margin: 0 0 .3rem
    }

    .modal__header .close-modal {
        position: absolute;
        right: .75rem
    }

.modal .alert-keyword {
    background: #ed1c24;
    color: #fff;
    font-size: 1.625rem;
    line-height: 2rem;
    padding: .75rem 1.5rem
}

.modal--edit-profile,
.modal--preview,
.modal--register,
.modal--sign-in,
.modal--terms {
    left: 0;
    margin: auto;
    position: fixed;
    right: 0;
    top: 2rem;
    width: 100%
}

@media (min-width:48rem) {
    .modal--edit-profile,
    .modal--preview,
    .modal--register,
    .modal--sign-in,
    .modal--terms {
        top: 150px
    }
}

.modal--edit-profile .modal__content,
.modal--preview .modal__content,
.modal--register .modal__content,
.modal--sign-in .modal__content,
.modal--terms .modal__content {
    background: #fff;
    border: 1px solid #ed1c24;
    border-bottom-width: 5px;
    border-radius: 4px;
    overflow: auto;
    padding: .75rem
}

.modal--edit-profile .modal__header,
.modal--preview .modal__header,
.modal--register .modal__header,
.modal--sign-in .modal__header,
.modal--terms .modal__header {
    font-size: 1.625rem;
    line-height: 2rem;
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
    margin-bottom: 1rem;
    padding: 0;
    position: relative
}

    .modal--edit-profile .modal__header i,
    .modal--preview .modal__header i,
    .modal--register .modal__header i,
    .modal--sign-in .modal__header i,
    .modal--terms .modal__header i {
        font-size: 2.75rem;
        line-height: 2.75rem;
        color: #ed1c24;
        float: left;
        margin-right: .2rem
    }

    .modal--edit-profile .modal__header .close-modal i,
    .modal--preview .modal__header .close-modal i,
    .modal--register .modal__header .close-modal i,
    .modal--sign-in .modal__header .close-modal i,
    .modal--terms .modal__header .close-modal i {
        font-size: 1.25rem;
        line-height: 2rem
    }

.modal--terms .modal__content {
    border: none
}

    .modal--terms .modal__content .terms-container {
        margin-bottom: 2rem;
        max-height: 40vh;
        overflow-y: scroll
    }

    .modal--terms .modal__content .buttons {
        margin-bottom: .75rem
    }

.modal--edit-contact .contact-summary {
    padding: 0 1.5rem
}

    .modal--edit-contact .contact-summary small {
        color: #b2b2b2
    }

    .modal--edit-contact .contact-summary .btn {
        display: block;
        margin: 0 auto 2rem;
        padding: .75rem 1rem
    }

        .modal--edit-contact .contact-summary .btn i {
            margin-left: .5rem;
            position: relative;
            top: 2px
        }

.modal--sign-in .modal__content {
    border: none;
    padding: 0
}

.modal--sign-in .modal__header {
    background: #ed1c24
}

    .modal--sign-in .modal__header h2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
        color: #fff;
        margin: 1.5rem 1.25rem 1.25rem;
        text-align: center
    }

.modal--sign-in .modal__body {
    padding: .75rem
}

.modal--sign-in .social-sign-up .btn.btn--negative {
    padding-top: .5rem;
    width: 100%
}

    .modal--sign-in .social-sign-up .btn.btn--negative.btn--linkedin {
        margin-bottom: .5rem
    }

@media (min-width:62rem) {
    .modal--sign-in .social-sign-up .btn.btn--negative.btn--linkedin {
        margin-bottom: 0
    }
}

@media (min-width:34rem) {
    .modal--sign-in .social-sign-up .btn.btn--negative {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.modal--sign-in .social-sign-up .btn.btn--negative i {
    font-size: 1.5rem;
    line-height: 1.5rem;
    float: right;
    top: 5px
}

    .modal--sign-in .social-sign-up .btn.btn--negative i.fa-facebook-f {
        font-size: 1.5rem;
        line-height: 1.5rem;
        position: relative;
        margin-top: -10px;
        top: 14px
    }

    .modal--sign-in .social-sign-up .btn.btn--negative i.icon-linkedin {
        font-size: 2rem;
        line-height: 2rem;
        position: relative;
        margin-top: -10px;
        top: 14px
    }

.modal--sign-in .social-sign-up p {
    color: #b2b2b2;
    margin-top: .4rem;
    text-align: center
}

.modal--sign-in .manual-sign-up .or {
    position: relative
}

    .modal--sign-in .manual-sign-up .or span {
        font-size: 1.25rem;
        line-height: 1.875rem;
        background: #fff;
        display: block;
        margin: 0 auto;
        position: relative;
        text-align: center;
        width: 50px
    }

    .modal--sign-in .manual-sign-up .or:before {
        background: #dad9d9;
        content: '';
        display: block;
        height: 1px;
        left: 0;
        position: absolute;
        top: 1rem;
        width: 100%
    }

.modal--preview .preview__body:after,
.modal--preview .preview__body:before,
.modal--sign-in .manual-sign-up .actions:after,
.modal--sign-in .manual-sign-up .actions:before {
    display: table;
    content: " "
}

.modal--sign-in .manual-sign-up .actions {
    border-top: 1px solid #dad9d9;
    margin: 2.5rem 0 1.5rem;
    padding-top: 1.5rem
}

    .modal--sign-in .manual-sign-up .actions .btn {
        margin-bottom: .5rem
    }

    .modal--sign-in .manual-sign-up .actions p {
        margin-bottom: 0
    }

@media (min-width:48rem) {
    .modal--sign-in .manual-sign-up .actions .btn {
        float: left;
        margin-bottom: 0
    }

    .modal--sign-in .manual-sign-up .actions p {
        float: right;
        margin: .6rem 0 0
    }
}

.modal--preview .preview__header {
    padding: 0 1.5rem;
    position: relative
}

    .modal--preview .preview__header h2 {
        margin: 0 auto
    }

    .modal--preview .preview__header .close-modal {
        position: absolute;
        top: -2rem;
        right: 1rem
    }

        .modal--preview .preview__header .close-modal i {
            font-size: 2.25rem;
            line-height: 2.25rem;
            line-height: normal
        }

    .modal--preview .preview__header p {
        font-size: .75rem;
        line-height: 1.125rem;
        padding-right: 3rem
    }

@media (min-width:34rem) {
    .modal--preview .preview__header h2 {
        margin-bottom: 1rem;
        margin-top: 3rem;
        text-align: center
    }

    .modal--preview .preview__header p {
        font-size: 1.625rem;
        line-height: 1.875rem;
        font-family: houschka_headmedium, Helvetica, Arial, sans-serif;
        margin: 0 auto 1.5rem;
        padding-right: 0;
        text-align: center;
        width: 70%
    }
}

.sign-in-form.base-form a,
.sign-in-form.base-form label,
.terms-form.base-form a,
.terms-form.base-form label,
.warning p {
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
}

@media (min-width:48rem) {
    .modal--preview .preview__header p {
        width: 60%
    }
}

.modal--preview .modal__content {
    padding: 0
}

.modal--preview h5 {
    color: #000
}

.modal--preview .preview__body {
    padding: 0 1.5rem 1rem;
    position: relative;
    margin-top: 3rem;
    border-bottom: 1px solid #b2b2b2
}

    .modal--preview .preview__body .btn {
        position: absolute;
        right: 1.5rem;
        top: -15px
    }

        .modal--preview .preview__body .btn i {
            line-height: 1.875rem;
            position: relative;
            top: 14px;
            padding-left: .8rem;
            font-size: 2.4rem;
            margin-top: -12px;
            display: inline-block
        }

.modal--preview .preview__summary {
    padding: 0 1.5rem 1rem;
    position: relative;
    margin-bottom: 5rem
}

    .modal--preview .preview__summary:after,
    .modal--preview .preview__summary:before {
        content: " ";
        display: table
    }

    .modal--preview .preview__summary:after {
        clear: both
    }

    .modal--preview .preview__summary .btn {
        position: absolute;
        right: 1.5rem;
        bottom: -50px
    }

        .modal--preview .preview__summary .btn i {
            line-height: 1.875rem;
            position: relative;
            top: 14px;
            padding-left: .8rem;
            font-size: 2.4rem;
            margin-top: -12px;
            display: inline-block
        }

.modal--preview small {
    font-size: .875rem;
    color: #737373;
    display: block;
    line-height: 1.2;
    margin-top: .2rem
}

.modal--preview .user {
    position: relative
}

.modal--preview .username {
    font-size: 1.625rem;
    line-height: 2.4375rem
}

@media (min-width:34rem) {
    .modal--preview .username {
        left: 10.5rem;
        position: absolute;
        top: 1.5rem
    }
}

.modal--preview .avatar {
    display: block;
    width: 130px;
    height: 130px;
    padding: 5px 5px 30px;
    margin: 5px 5px 1rem;
    border: 2px dashed #dad9d9;
    border-radius: .25rem;
    color: #dad9d9;
    text-align: center
}

@media (min-width:48rem) {
    .modal--preview .avatar {
        margin-bottom: 30px
    }
}

.modal--preview .avatar i {
    position: relative;
    top: .8rem;
    font-size: 7rem;
    margin-bottom: -20px
}

.modal--preview .avatar .drag-cta {
    font-size: .8rem;
    position: relative;
    top: -18px;
    color: #b2b2b2
}

.modal--preview .jobs-list {
    overflow: hidden
}

.modal--preview .jobs {
    margin: 0 0 1rem
}

    .modal--preview .jobs li {
        margin-bottom: 0;
        padding: .75rem
    }

        .modal--preview .jobs li .summary {
            position: relative
        }

            .modal--preview .jobs li .summary:after,
            .modal--preview .jobs li .summary:before {
                content: " ";
                display: table
            }

            .modal--preview .jobs li .summary p {
                font-size: 1.25rem;
                line-height: 1.875rem;
                line-height: 1.2
            }

@media (min-width:62rem) {
    .modal--preview .jobs li .summary p {
        float: left;
        margin-bottom: 0;
        width: 55%
    }

    .modal--preview .jobs li .summary small {
        bottom: 0;
        display: inline;
        text-align: right;
        position: absolute;
        width: 38%
    }
}

.modal--preview .jobs li small {
    font-size: .875rem;
    color: #737373;
    display: block;
    line-height: 1.2;
    margin-top: .2rem
}

.modal--preview .preview__coverletter {
    margin-top: 1rem
}

.modal--preview .preview-card-icon {
    color: #ed1c24;
    font-size: 2.4rem;
    display: inline-block;
    position: relative;
    top: 10px;
    padding-left: 12px
}

    .modal--preview .preview-card-icon.profile-card-icon-left {
        right: 0;
        padding-right: 12px;
        float: right
    }

        .modal--preview .preview-card-icon.profile-card-icon-left.icon-done {
            font-size: 1.2rem;
            color: #fff;
            right: .2rem;
            top: .2rem;
            padding: 0
        }

.modal--preview .preview-card-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-top: 5px;
    position: relative
}

    .modal--preview .preview-card-title .unfilled {
        color: #ed1c24
    }

    .modal--preview .preview-card-title hr {
        margin: 10px 20px;
        border: 0;
        height: 0;
        border-top: 2px solid #f1f1f1
    }

    .modal--preview .preview-card-title .subtitle {
        font-size: 1rem;
        margin-left: 20px;
        margin-right: 20px
    }

        .modal--preview .preview-card-title .subtitle small {
            color: #737373;
            display: block;
            line-height: 1.2;
            margin-top: .2rem
        }

.modal-overlay {
    background: rgba(0, 0, 0, .6);
    display: none;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 2
}

.modal-open .modal,
.modal-open .modal-overlay {
    display: block
}

.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%
}

    .modal-open .modal .modal__content {
        max-height: 70vh;
        overflow: auto
    }

@media (min-width:48rem) {
    .modal-open .modal .modal__content {
        max-height: 80vh
    }
}

.warning {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .5s ease-out .5s;
    transition: max-height .5s ease-out .5s
}

    .warning:after,
    .warning:before {
        content: " ";
        display: table
    }

.editable .warning {
    max-height: 320px
}

    .editable .warning .warning-content {
        display: block
    }

.warning .warning-content {
    background: #efefef;
    border-radius: 3px;
    display: none;
    margin: 0 1rem 2rem;
    padding: 1rem 3rem 1rem .5rem;
    position: relative
}

@media (min-width:34rem) {
    .warning .warning-content {
        margin: 0 2rem 2rem
    }
}

.warning .dismiss-warning {
    position: absolute;
    right: 1rem;
    top: 1rem
}

    .warning .dismiss-warning i {
        font-size: 1.25rem;
        line-height: 1.25rem
    }

.warning .message {
    padding-left: 3.5rem
}

.warning i {
    font-size: 3.75rem;
    line-height: 3.75rem;
    color: #ed1c24;
    float: left
}

.warning p {
    color: #ed1c24;
    margin-bottom: .5rem
}

.warning ul {
    margin: 0 0 .5rem
}

    .warning ul li {
        font-size: .875rem;
        line-height: 1.125rem;
        padding: 0;
        margin: 0
    }

.warning label {
    font-size: .875rem;
    line-height: 1.3125rem
}

.summary {
    display: block
}

.editable .summary {
    display: none
}

.sign-in-form.base-form label,
.terms-form.base-form label {
    font-size: 1rem;
    line-height: 1.75rem;
    display: inline-block;
    border-radius: 0;
    box-shadow: none
}

    .sign-in-form.base-form label.required:after,
    .terms-form.base-form label.required:after {
        color: #ed1c24;
        content: '*';
        margin-left: .5rem
    }

    .sign-in-form.base-form label.error,
    .terms-form.base-form label.error {
        font-size: .875rem;
        line-height: 1.125rem
    }

.sign-in-form.base-form input[type=text],
.sign-in-form.base-form input[type=password],
.sign-in-form.base-form input[type=email],
.terms-form.base-form input[type=text],
.terms-form.base-form input[type=password],
.terms-form.base-form input[type=email] {
    border: 1px solid #dad9d9;
    box-shadow: none;
    box-sizing: border-box;
    display: block;
    height: 48px;
    line-height: 2;
    margin-bottom: 1rem;
    width: 100%
}

    .sign-in-form.base-form input[type=text].error,
    .sign-in-form.base-form input[type=password].error,
    .sign-in-form.base-form input[type=email].error,
    .terms-form.base-form input[type=text].error,
    .terms-form.base-form input[type=password].error,
    .terms-form.base-form input[type=email].error {
        margin-bottom: .2rem
    }

.sign-in-form.base-form .small-checkbox,
.terms-form.base-form .small-checkbox {
    margin-bottom: 1rem
}

@media (min-width:62rem) {
    .sign-in-form.base-form .small-checkbox,
    .terms-form.base-form .small-checkbox {
        margin-bottom: 0
    }
}

.sign-in-form.base-form .input-grp,
.terms-form.base-form .input-grp {
    position: relative
}

.sign-in-form.base-form .show-password,
.terms-form.base-form .show-password {
    font-size: 1.75rem;
    line-height: 1.75rem;
    color: #ed1c24;
    cursor: pointer;
    position: absolute;
    right: .3rem;
    top: 2.6rem
}

.sign-in-form.base-form input[type=checkbox],
.terms-form.base-form input[type=checkbox] {
    margin-right: .3rem;
    position: relative;
    top: -2px
}

.sign-in-form.base-form .btn.btn--lightblue,
.sign-in-form.base-form .btn.btn--reset,
.terms-form.base-form .btn.btn--lightblue,
.terms-form.base-form .btn.btn--reset {
    font-size: 1.25rem;
    line-height: 1.875rem;
    padding: .5rem 1rem
}

    .sign-in-form.base-form .btn.btn--lightblue i,
    .sign-in-form.base-form .btn.btn--reset i,
    .terms-form.base-form .btn.btn--lightblue i,
    .terms-form.base-form .btn.btn--reset i {
        font-size: 2.25rem;
        line-height: 1.5rem;
        margin-left: .5rem;
        position: relative;
        top: 12px;
        margin-top: -10px
    }

.sign-in-form.base-form .btn.btn--lightblue,
.terms-form.base-form .btn.btn--lightblue {
    border: 1px solid #009cd0
}

.terms-form.base-form input[type=radio] {
    margin-right: .5rem;
    position: relative;
    top: -1px
}

.terms-form.base-form .radio-grp {
    margin-bottom: 1rem
}

    .terms-form.base-form .radio-grp label {
        display: block
    }

.terms-form.base-form .btn.btn--reset {
    display: block;
    margin-bottom: .5rem;
    margin-right: 1rem
}

@media (min-width:34rem) {
    .terms-form.base-form .btn.btn--reset {
        display: inline-block;
        margin-bottom: 0
    }
}

.edit-profile-form.base-form {
    display: none
}

.editable .edit-profile-form.base-form {
    display: block
}

.edit-profile-form.base-form label {
    font-size: .8125rem;
    line-height: .8125rem;
    border-radius: 0;
    box-shadow: none;
    color: #b2b2b2
}

.edit-profile-form.base-form input {
    font-size: 1rem;
    line-height: 1rem;
    border-bottom: 1px solid #b2b2b2;
    border-radius: 0;
    box-shadow: none;
    color: #000;
    margin-bottom: .8rem;
    padding-left: 0;
    padding-top: .1rem
}

    .edit-profile-form.base-form input:focus {
        border-color: #ed1c24;
        outline: 0
    }

.edit-profile-form.base-form .btn {
    font-size: 1.125rem;
    line-height: 1.125rem;
    display: inline-block;
    margin: 0 auto;
    padding: .75rem 1rem
}

    .edit-profile-form.base-form .btn i {
        margin-left: .5rem;
        position: relative;
        top: 3px
    }

    .edit-profile-form.base-form .btn.btn--red {
        border: 2px solid #ed1c24;
        margin-left: 1rem
    }

.edit-profile-form.base-form .actions {
    margin-top: 2.5rem;
    text-align: center
}

.alert-form.base-form .error-summary {
    margin: 2rem .75rem 1rem
}

.alert-form.base-form label {
    font-size: 1rem;
    line-height: 1.75rem
}

.alert-form.base-form .input-toggle label {
    line-height: 1.40625rem
}

.alert-form.base-form input[type=text],
.alert-form.base-form input[type=email] {
    border: 1px solid #dad9d9;
    box-shadow: none !important
}

.alert-form.base-form input[type=checkbox] {
    border: none;
    box-shadow: none;
    visibility: hidden
}

.alert-form.base-form fieldset.terms {
    border-bottom: 1px solid #dad9d9;
    margin: 0 .75rem;
    padding-left: 0;
    padding-right: 0
}

.alert-form.base-form label.error {
    font-size: .875rem;
    line-height: 1.125rem;
    border: none;
    border-radius: 0;
    box-shadow: none
}

.alert-form.base-form label.pretty-checkbox {
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding-bottom: 1.3rem;
    display: inline-block
}

    .alert-form.base-form label.pretty-checkbox span:last-of-type {
        padding-left: 5px
    }

.alert-form.base-form .input-grp.icon-close {
    top: 2.2rem
}

.alert-form.base-form .alert-form__actions {
    padding: 1.5rem
}

    .alert-form.base-form .alert-form__actions .btn.btn--reset {
        margin-right: 1rem
    }

    .alert-form.base-form .alert-form__actions .btn.btn--apply,
    .alert-form.base-form .alert-form__actions .btn.btn--reset {
        font-size: 1.25rem;
        line-height: 1.875rem;
        padding: .5rem 1rem
    }

        .alert-form.base-form .alert-form__actions .btn.btn--apply i,
        .alert-form.base-form .alert-form__actions .btn.btn--reset i {
            font-size: 1.5rem;
            line-height: 1.5rem;
            margin-left: .5rem;
            position: relative;
            top: 5px
        }

.alert-form.base-form .input-toggle {
    box-shadow: none;
    border: 1px solid #dad9d9;
    border-radius: .4rem;
    padding: .4rem 0
}

.job-details-summary {
    position: relative;
    padding-top: 20px
}

@media (min-width:75rem) {
    .base-form__actions .search-form__actions-container,
    .search-form__actions .search-form__actions-container {
        max-width: 73.125rem
    }

    .job-details-summary .back-link {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.job-details-summary h1 {
    display: none;
    margin-top: 0
}

@media (min-width:62rem) {
    .job-details-summary h1 {
        font-size: 1rem;
        line-height: 1.5rem;
        display: block;
        margin-bottom: .2rem;
        text-align: right
    }
}

@media (min-width:75rem) {
    .job-details-summary h1 {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.job-details-summary .applying-for {
    display: none;
    font-size: .75rem;
    line-height: .75rem
}

@media (min-width:62rem) {
    .job-details-summary .applying-for {
        font-size: 1rem;
        line-height: 1rem;
        color: #ed1c24;
        display: inline-block;
        font-family: houschka_headmedium, Helvetica, Arial, sans-serif;
        margin-right: .5rem
    }
}

@media (min-width:75rem) {
    .job-details-summary .applying-for {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.job-details-summary h2 {
    margin-bottom: 10px
}

.job-details-summary .summary {
    padding-bottom: 10px
}

@media (min-width:48rem) {
    .job-details-summary {
        padding-top: 25px
    }

        .job-details-summary h2 {
            margin: 22px 0
        }

        .job-details-summary .summary {
            padding-bottom: 40px
        }
}

.job-details-summary .summary-text {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    margin-bottom: 0
}

.job-details-summary .job-details-summary__back {
    display: none;
    padding-top: 20px
}

    .job-details-summary .job-details-summary__back a {
        display: block
    }

    .job-details-summary .job-details-summary__back hr {
        margin-top: 1em;
        margin-right: 0
    }

@media (min-width:48rem) {
    .job-details-summary .summary-text {
        font-size: 1.625rem;
        line-height: 2.4375rem
    }

    .job-details-summary .job-details-summary__back hr {
        margin-top: 25px;
        margin-bottom: 1rem
    }
}

@media (min-width:62rem) {
    .job-details-summary .job-details-summary__back {
        display: block;
        padding-top: 0
    }

    .job-details-summary .job-details-summary__expand-link {
        display: none
    }
}

.job-details-summary .job-details-summary__expand-link a {
    font-size: .875rem;
    line-height: 1.3125rem;
    color: #000;
    display: block;
    outline: 0;
    position: relative
}

    .job-details-summary .job-details-summary__expand-link a .expand,
    .job-details-summary .job-details-summary__expand-link a .job-title {
        color: #ed1c24;
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
    }

@media (min-width:34rem) {
    .job-details-summary .job-details-summary__expand-link a {
        font-size: 1.125rem;
        line-height: 1.6875rem
    }
}

.job-details-summary .job-details-summary__expand-link .expand {
    font-size: 1.75rem;
    line-height: .875rem;
    letter-spacing: 1px;
    position: absolute;
    right: 0
}

.job-details-summary .job-details-summary__expand-link hr {
    margin-top: 12px
}

.job-details-summary .job-details-summary__expandable {
    height: 0;
    overflow: hidden;
    -webkit-transition: height .25s linear;
    transition: height .25s linear
}

    .job-details-summary .job-details-summary__expandable.open {
        height: 115px;
        margin-bottom: 1rem
    }

@media (min-width:48rem) {
    .job-details-summary .job-details-summary__expandable.open {
        height: 80px
    }
}

.job-details-summary .job-details-summary__expandable ul {
    margin: 0
}

@media (min-width:62rem) {
    .job-details-summary .job-details-summary__expandable {
        height: auto;
        overflow: auto;
        padding-top: .5rem;
        position: absolute;
        right: 0;
        top: .3rem;
        width: 70%
    }

        .job-details-summary .job-details-summary__expandable.open {
            height: auto
        }

        .job-details-summary .job-details-summary__expandable ul {
            text-align: right
        }

        .job-details-summary .job-details-summary__expandable hr {
            display: none
        }
}

.job-details-summary .job-details-summary__header__info {
    margin: 0;
    display: inline-block;
    padding: 0;
    position: relative;
    width: 49%
}

@media (min-width:48rem) {
    .job-details-summary .job-details-summary__header__info {
        margin-bottom: 1rem;
        width: 24%
    }
}

@media (min-width:62rem) {
    .job-details-summary .job-details-summary__header__info {
        margin-right: 2rem;
        width: auto
    }

        .job-details-summary .job-details-summary__header__info:after {
            background-color: #b2b2b2;
            content: '';
            height: 1px;
            position: absolute;
            right: -1.4rem;
            top: .6rem;
            width: .5rem
        }

        .job-details-summary .job-details-summary__header__info:last-child {
            margin-right: 0
        }

            .job-details-summary .job-details-summary__header__info:last-child:after {
                display: none
            }
}

.job-details-summary .job-details-summary__header__info i,
.job-details-summary .job-details-summary__header__info p {
    vertical-align: middle
}

.job-details-summary .job-details-summary__header__info i {
    color: #ed1c24;
    display: inline-block
}

@media (min-width:62rem) {
    .job-details-summary .job-details-summary__header__info i {
        display: none
    }
}

.job-details-summary .job-details-summary__header__info i:before {
    font-size: 2.1875rem;
    line-height: 2.8125rem;
    float: right;
    position: relative
}

.job-details-summary .job-details-summary__header__info p {
    font-size: .8125rem;
    line-height: .9375rem;
    display: inline-block;
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
    margin-bottom: .2rem;
    max-width: 65%
}

    .job-details-summary .job-details-summary__header__info p small {
        display: block;
        font-size: .625rem;
        line-height: .625rem;
        color: #737373
    }

@media (min-width:62rem) {
    .job-details-summary .job-details-summary__header__info p {
        font-size: .875rem;
        line-height: 1.3125rem;
        color: #737373;
        margin-bottom: 1rem;
        max-width: 100%;
        text-align: right
    }

        .job-details-summary .job-details-summary__header__info p small {
            display: none
        }
}

@media (min-width:75rem) {
    .job-details-summary .job-details-summary__header__info p {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.apply .apply__profile-header,
.preview .apply__profile-header {
    padding-bottom: 1rem
}

    .apply .apply__profile-header h2,
    .preview .apply__profile-header h2 {
        margin: 0 auto
    }

    .apply .apply__profile-header p,
    .preview .apply__profile-header p {
        font-size: .75rem;
        line-height: 1.125rem;
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
        padding-right: 3rem
    }

@media (min-width:34rem) {
    .apply .apply__profile-header h2,
    .preview .apply__profile-header h2 {
        margin-bottom: 1rem;
        margin-top: 2rem;
        text-align: center
    }

    .apply .apply__profile-header p,
    .preview .apply__profile-header p {
        font-size: 1.625rem;
        line-height: 1.875rem;
        font-family: houschka_headmedium, Helvetica, Arial, sans-serif;
        margin: 0 auto 1.5rem;
        padding-right: 0;
        text-align: center;
        width: 70%
    }
}

.apply .apply__profile,
.preview .apply__profile {
    background-color: #f1f1f1;
    padding-top: 1rem;
    padding-bottom: 1rem
}

@media (min-width:48rem) {
    .apply .apply__profile-header p,
    .preview .apply__profile-header p {
        width: 50%
    }

    .apply .apply__profile,
    .preview .apply__profile {
        padding-top: 2rem
    }
}

.apply .apply__profile__check,
.apply .apply__profile__coverletter,
.apply .apply__profile__submission,
.preview .apply__profile__check,
.preview .apply__profile__coverletter,
.preview .apply__profile__submission {
    background-color: #fff;
    border: 1px solid #e7e6e6;
    border-radius: .3rem;
    margin-bottom: 1rem;
    padding: .7rem
}

@media (min-width:48rem) {
    .apply .apply__profile__check,
    .apply .apply__profile__coverletter,
    .apply .apply__profile__submission,
    .preview .apply__profile__check,
    .preview .apply__profile__coverletter,
    .preview .apply__profile__submission {
        border: 1px dashed #e7e6e6
    }
}

.apply .apply__profile__check h6,
.apply .apply__profile__coverletter h6,
.apply .apply__profile__submission h6,
.preview .apply__profile__check h6,
.preview .apply__profile__coverletter h6,
.preview .apply__profile__submission h6 {
    border-bottom: 1px solid #e7e6e6;
    color: #000;
    font-family: houschka_headmedium, Helvetica, Arial, sans-serif;
    margin: 0 0 1rem;
    padding-bottom: .2rem;
    vertical-align: middle;
    font-size: 1.3rem
}

@media (min-width:48rem) {
    .apply .apply__profile__check h6,
    .apply .apply__profile__coverletter h6,
    .apply .apply__profile__submission h6,
    .preview .apply__profile__check h6,
    .preview .apply__profile__coverletter h6,
    .preview .apply__profile__submission h6 {
        font-size: 1.625rem;
        line-height: 2.4375rem
    }
}

.apply .apply__profile__check h6 i,
.apply .apply__profile__coverletter h6 i,
.apply .apply__profile__submission h6 i,
.preview .apply__profile__check h6 i,
.preview .apply__profile__coverletter h6 i,
.preview .apply__profile__submission h6 i {
    font-size: 3.4rem;
    color: #ed1c24;
    vertical-align: middle;
    position: relative;
    top: 2px
}

.apply .apply__profile__check button,
.apply .apply__profile__coverletter button,
.apply .apply__profile__submission button,
.preview .apply__profile__check button,
.preview .apply__profile__coverletter button,
.preview .apply__profile__submission button {
    margin-bottom: 1rem;
    text-align: left;
    width: 100%
}

.profile .profile__summary,
.thanks__next {
    text-align: center
}

@media (min-width:75rem) {
    .apply .apply__profile__check button,
    .apply .apply__profile__coverletter button,
    .apply .apply__profile__submission button,
    .preview .apply__profile__check button,
    .preview .apply__profile__coverletter button,
    .preview .apply__profile__submission button {
        font-size: 1.25rem;
        line-height: 1.875rem;
        display: block;
        max-width: 275px;
        margin-right: auto;
        margin-left: auto;
        padding: .75rem 1rem
    }
}

.apply .apply__profile__check button i,
.apply .apply__profile__coverletter button i,
.apply .apply__profile__submission button i,
.preview .apply__profile__check button i,
.preview .apply__profile__coverletter button i,
.preview .apply__profile__submission button i {
    font-size: 1.375rem;
    line-height: 1.375rem;
    float: right;
    opacity: .6;
    position: relative;
    top: 4px
}

@media (min-width:75rem) {
    .apply .apply__profile__check button i,
    .apply .apply__profile__coverletter button i,
    .apply .apply__profile__submission button i,
    .preview .apply__profile__check button i,
    .preview .apply__profile__coverletter button i,
    .preview .apply__profile__submission button i {
        font-size: 1.75rem;
        line-height: 1.75rem
    }
}

.apply .apply__profile__check .instruction,
.apply .apply__profile__coverletter .instruction,
.apply .apply__profile__submission .instruction,
.preview .apply__profile__check .instruction,
.preview .apply__profile__coverletter .instruction,
.preview .apply__profile__submission .instruction {
    display: none
}

@media (min-width:48rem) {
    .apply .apply__profile__check .instruction,
    .apply .apply__profile__coverletter .instruction,
    .apply .apply__profile__submission .instruction,
    .preview .apply__profile__check .instruction,
    .preview .apply__profile__coverletter .instruction,
    .preview .apply__profile__submission .instruction {
        font-size: 1.25rem;
        line-height: 1.875rem;
        display: block
    }
}

.apply .apply__profile__submission,
.preview .apply__profile__submission {
    float: left;
    margin-top: .75rem;
    width: 100%
}

    .apply .apply__profile__submission:after,
    .apply .apply__profile__submission:before,
    .preview .apply__profile__submission:after,
    .preview .apply__profile__submission:before {
        content: " ";
        display: table
    }

.apply .apply__profile__submission__mobile-ctas .icon-download,
.preview .apply__profile__submission__mobile-ctas .icon-download {
    line-height: 1.875rem;
    position: relative;
    top: 12px;
    padding-left: .8rem;
    font-size: 2.4rem;
    margin-top: -12px;
    display: inline-block
}

@media (min-width:34rem) {
    .apply .apply__profile__submission__mobile-ctas .btn--outline,
    .preview .apply__profile__submission__mobile-ctas .btn--outline {
        float: left;
        width: 47%
    }

        .apply .apply__profile__submission__mobile-ctas .btn--outline:last-child,
        .preview .apply__profile__submission__mobile-ctas .btn--outline:last-child {
            float: right
        }
}

.apply .apply__profile__submission__desktop-ctas,
.preview .apply__profile__submission__desktop-ctas {
    display: none
}

.apply .apply__profile__submission .submit-button .tooltip-hook,
.preview .apply__profile__submission .submit-button .tooltip-hook {
    width: 100%;
    position: absolute;
    top: 0;
    font-size: 1.25rem;
    line-height: 1.875rem;
    padding: .75rem 1rem;
    display: block;
    margin-right: auto;
    margin-left: auto
}

@media (max-width:47.9rem) {
    .apply .apply__profile__submission .submit-button .tooltip-hook,
    .preview .apply__profile__submission .submit-button .tooltip-hook {
        display: block
    }
}

@media (min-width:48rem) {
    .apply .apply__profile__submission h6,
    .apply .apply__profile__submission__mobile-ctas,
    .preview .apply__profile__submission h6,
    .preview .apply__profile__submission__mobile-ctas {
        display: none
    }

    .apply .apply__profile__submission,
    .preview .apply__profile__submission {
        background: 0 0;
        border: none;
        border-radius: 0;
        border-top: 1px solid #e7e6e6;
        padding: 1.5rem 0 0
    }

        .apply .apply__profile__submission .submit-button,
        .preview .apply__profile__submission .submit-button {
            padding-right: 0
        }

            .apply .apply__profile__submission .submit-button #submit-application,
            .preview .apply__profile__submission .submit-button #submit-application {
                position: absolute
            }

                .apply .apply__profile__submission .submit-button #submit-application i,
                .preview .apply__profile__submission .submit-button #submit-application i {
                    font-size: 2.5rem;
                    position: relative;
                    top: 2px;
                    margin-bottom: -40px
                }

    .apply .apply__profile__submission__desktop-ctas,
    .preview .apply__profile__submission__desktop-ctas {
        display: block
    }

        .apply .apply__profile__submission__desktop-ctas button,
        .preview .apply__profile__submission__desktop-ctas button {
            background: 0 0;
            border: none;
            color: #ed1c24;
            display: inline-block;
            margin-right: 1rem;
            padding: .875rem 0;
            width: auto
        }

            .apply .apply__profile__submission__desktop-ctas button:last-child,
            .preview .apply__profile__submission__desktop-ctas button:last-child {
                margin-right: 0
            }

            .apply .apply__profile__submission__desktop-ctas button:hover,
            .preview .apply__profile__submission__desktop-ctas button:hover {
                color: #d21847
            }

    .apply .apply__profile__submission button,
    .preview .apply__profile__submission button {
        margin-bottom: 0
    }

    .apply .apply__profile__submission .btn--lightblue,
    .preview .apply__profile__submission .btn--lightblue {
        width: 100%
    }

    .apply .apply__profile__submission .center-block:after,
    .apply .apply__profile__submission .center-block:before,
    .preview .apply__profile__submission .center-block:after,
    .preview .apply__profile__submission .center-block:before {
        content: " ";
        display: table
    }

    .apply .apply__profile__submission .center-block:after,
    .preview .apply__profile__submission .center-block:after {
        clear: both
    }
}

@media (min-width:62rem) {
    .apply .apply__profile__submission .btn--lightblue,
    .preview .apply__profile__submission .btn--lightblue {
        max-width: 100%
    }
}

@media (min-width:75rem) {
    .apply .apply__profile__submission__desktop-ctas .btn--outline,
    .preview .apply__profile__submission__desktop-ctas .btn--outline {
        padding: .6rem .75rem
    }
}

.tip-style.submit-tip {
    border: 1px solid #dfd7d7;
    max-width: 300px;
    box-shadow: 0 8px 20px 0 rgba(35, 31, 32, .25)
}

    .tip-style.submit-tip p {
        font-size: .875rem;
        line-height: 1.25rem;
        margin: 0;
        color: #000
    }

    .tip-style.submit-tip .qtip-close {
        background: 0 0
    }

        .tip-style.submit-tip .qtip-close span {
            color: #fff;
            content: '';
            speak: none
        }

            .tip-style.submit-tip .qtip-close span:before {
                font-size: 1.125rem;
                line-height: 1.6875rem;
                content: '\7a';
                font-family: adecco-font-1 !important;
                color: #ed1c24;
                display: block;
                position: absolute;
                left: 4px;
                top: 2px
            }

    .thanks .confirmation a,
    .thanks .email,
    .thanks .follow a,
    .tip-style.submit-tip .notifications-tip__items li a,
    .tip-style.submit-tip .profile-tip__links li a,
    .two-col-list .two-col-list__item a {
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
    }

    .tip-style.submit-tip h6 {
        padding: .2rem 0 .5rem
    }

        .tip-style.submit-tip h6:before {
            display: none
        }

    .tip-style.submit-tip .profile-tip__header {
        margin-bottom: 0
    }

        .tip-style.submit-tip .profile-tip__header:after,
        .tip-style.submit-tip .profile-tip__header:before {
            content: " ";
            display: table
        }

        .tip-style.submit-tip .profile-tip__header img {
            border-radius: 50%;
            height: 3.75rem;
            width: 3.75rem;
            float: left
        }

        .tip-style.submit-tip .profile-tip__header .profile-information {
            float: left;
            padding: .875rem 26px .875rem 14px
        }

            .tip-style.submit-tip .profile-tip__header .profile-information span {
                font-size: .625rem;
                line-height: .75rem;
                color: #737373;
                display: block
            }

            .tip-style.submit-tip .profile-tip__header .profile-information .profile-name {
                font-size: 1.25rem;
                line-height: 1.25rem;
                color: #ed1c24;
                font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
            }

    .tip-style.submit-tip .profile-tip__links {
        list-style: none;
        padding: 0;
        margin: 0
    }

        .tip-style.submit-tip .profile-tip__links li {
            margin: 0;
            padding: 0;
            border-bottom: 1px solid rgba(35, 31, 32, .1)
        }

            .tip-style.submit-tip .profile-tip__links li:last-child {
                border-bottom: 0
            }

            .tip-style.submit-tip .profile-tip__links li a {
                font-size: 1rem;
                line-height: 1.125rem;
                color: #000;
                display: block;
                padding: .325rem 8px .625rem
            }

                .tip-style.submit-tip .profile-tip__links li a .icon {
                    font-size: 1.5rem;
                    line-height: 0;
                    margin-right: 4px;
                    opacity: .3;
                    position: relative;
                    top: .375rem
                }

                .tip-style.submit-tip .profile-tip__links li a:hover {
                    background-color: #fafafa
                }

    .tip-style.submit-tip .notifications-tip__items {
        margin: 0;
        padding: 0;
        list-style: none
    }

        .tip-style.submit-tip .notifications-tip__items li {
            font-size: 1rem;
            line-height: 1.125rem;
            border-bottom: 1px solid rgba(35, 31, 32, .1);
            color: #000;
            margin: 0;
            padding: .625rem 0
        }

            .tip-style.submit-tip .notifications-tip__items li:last-child {
                border-bottom: 0
            }

.two-col-list {
    margin-bottom: 2rem
}

    .two-col-list .two-col-list__intro {
        display: none
    }

@media (min-width:34rem) {
    .two-col-list {
        margin-bottom: 3rem
    }

        .two-col-list h2 {
            margin-top: 3rem;
            margin-bottom: 1rem;
            text-align: center
        }

        .two-col-list .two-col-list__intro {
            font-size: 1.625rem;
            line-height: 1.875rem;
            display: block;
            margin: 0 auto 1.5rem;
            text-align: center;
            width: 70%
        }
}

@media (min-width:48rem) {
    .two-col-list .two-col-list__intro {
        width: 50%
    }
}

.two-col-list .col-sm-6:last-child .two-col-list__item:last-child {
    border-bottom: none
}

.two-col-list .two-col-list__item {
    border-bottom: 1px solid #e7e6e6
}

@media (min-width:34rem) {
    .two-col-list .two-col-list__item {
        margin-bottom: .5rem
    }

        .two-col-list .two-col-list__item:last-child {
            border-bottom: none
        }
}

.two-col-list .two-col-list__item h6 {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000;
    margin: 1rem 0 .5rem
}

.two-col-list .two-col-list__item .less-link {
    display: block;
    margin-bottom: 1rem
}

.profile > .container {
    position: relative
}

.profile hr {
    border-color: #dad9d9;
    margin: 0 0 1em
}

.profile .profile__warning .h2 {
    margin-bottom: .5rem
}

.profile .profile__back {
    padding-top: 20px
}

    .profile .profile__back a {
        display: block
    }

    .profile .profile__back hr {
        margin-top: 1em;
        margin-right: 0
    }

@media (min-width:34rem) {
    .two-col-list .two-col-list__item h6 {
        font-size: 1.5rem;
        line-height: 1.875rem
    }

    .two-col-list .two-col-list__item p {
        font-size: 1.25rem;
        line-height: 1.5rem;
        color: #737373
    }

    .profile .profile__warning p {
        font-size: 1.25rem;
        line-height: 1.875rem
    }

    .profile .profile__back {
        padding-top: 40px
    }

        .profile .profile__back hr {
            margin-top: 25px;
            margin-bottom: 1rem
        }
}

.profile .profile__header {
    padding-top: 10px
}

    .profile .profile__header h1 {
        margin-top: 0
    }

    .profile .profile__header .added-date {
        color: #dad9d9;
        font-size: .75rem;
        line-height: .75rem
    }

@media (min-width:34rem) {
    .profile .profile__header {
        padding-top: 25px
    }

        .profile .profile__header .added-date {
            font-size: 1rem;
            line-height: 1.5rem
        }
}

.profile .profile__header .favourite,
.profile .profile__header .favourite-save {
    height: 25px;
    position: absolute;
    right: 20px;
    top: 0;
    width: 25px
}

    .profile .profile__header .favourite-save:before,
    .profile .profile__header .favourite:before {
        font-size: .8125rem;
        line-height: 1.21875rem;
        left: 6px;
        top: 4px
    }

@media (min-width:48rem) {
    .profile .profile__header .favourite,
    .profile .profile__header .favourite-save {
        height: 50px;
        right: 0;
        top: 50px;
        width: 50px
    }

        .profile .profile__header .favourite-save:before,
        .profile .profile__header .favourite:before {
            font-size: 1.625rem;
            line-height: 2.4375rem;
            left: 12px;
            top: 9px
        }
}

.profile .profile__header h2 {
    margin-bottom: 10px
}

.profile .profile__header .summary {
    padding-bottom: 10px
}

@media (min-width:34rem) {
    .profile .profile__header h2 {
        margin: 22px 0
    }

    .profile .profile__header .summary {
        padding-bottom: 40px
    }
}

.profile .profile__header .summary-text {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    margin-bottom: 0
}

@media (min-width:34rem) {
    .profile .profile__header .summary-text {
        font-size: 1.625rem;
        line-height: 2.4375rem
    }
}

.profile .btn--apply-cta {
    display: inline-block
}

    .profile .btn--apply-cta i {
        margin-left: .3rem;
        opacity: .6;
        position: relative;
        top: 14px;
        font-size: 2.5rem;
        display: inline-block;
        margin-top: -12px
    }

.profile .profile__body {
    background-color: #f1f1f1;
    padding-top: 1rem
}

    .profile .profile__body .profile__person-card .profile-top-card {
        padding-top: 10px;
        padding-bottom: 10px
    }

        .profile .profile__body .profile__person-card .profile-top-card:after,
        .profile .profile__body .profile__person-card .profile-top-card:before {
            content: " ";
            display: table
        }

    .profile .profile__body .profile__person-card .avatar {
        display: block;
        width: 130px;
        height: 130px;
        padding: 5px;
        margin: 5px 5px 1rem;
        border: 2px dashed #dad9d9;
        border-radius: .25rem;
        color: #dad9d9;
        text-align: center
    }

@media (min-width:62rem) {
    .profile .profile__body .profile__person-card .avatar {
        margin-bottom: 5px
    }
}

.profile .profile__body .profile__person-card .avatar i {
    position: relative;
    top: .8rem;
    font-size: 7rem;
    margin-bottom: -20px
}

@media (min-width:75rem) {
    .profile .profile__body .profile__person-card .avatar {
        width: 150px;
        height: 150px
    }

        .profile .profile__body .profile__person-card .avatar i {
            font-size: 7.5rem
        }
}

.profile .profile__body .profile__person-card .avatar .drag-cta {
    font-size: .8rem;
    position: relative;
    top: -18px;
    color: #b2b2b2
}

.profile .profile__body .profile__person-card .avatar-blurb {
    margin-bottom: 1rem
}

    .profile .profile__body .profile__person-card .avatar-blurb:after,
    .profile .profile__body .profile__person-card .avatar-blurb:before {
        content: " ";
        display: table
    }

@media (min-width:62rem) {
    .profile .profile__body .profile__person-card .avatar-blurb {
        margin-bottom: 0;
        margin-top: 1.5rem
    }

        .profile .profile__body .profile__person-card .avatar-blurb .username {
            margin-bottom: 1rem
        }
}

@media (min-width:75rem) {
    .profile .profile__body .profile__person-card .avatar-blurb {
        margin-top: 2.2rem
    }
}

.profile .profile__body .profile__person-card .avatar-blurb .username {
    font-size: 1.625rem;
    line-height: 1.625rem;
    text-overflow: ellipsis
}

@media (max-width:61.9rem) {
    .profile .profile__body .profile__person-card .avatar-blurb {
        display: block
    }

        .profile .profile__body .profile__person-card .avatar-blurb .btn--import,
        .profile .profile__body .profile__person-card .avatar-blurb .btn--linkedin {
            width: 48%
        }
}

@media (max-width:33.9rem) {
    .profile .profile__body .profile__person-card .avatar {
        margin-left: auto;
        margin-right: auto
    }

    .profile .profile__body .profile__person-card .avatar-blurb .btn {
        width: 100%
    }
}

.profile .profile__body .profile__person-card .btn--add {
    line-height: 1.5rem
}

.profile .profile__body .profile__person-card .btn--linkedin {
    margin-right: 1rem;
    margin-bottom: .5rem
}

@media (min-width:62rem) {
    .profile .profile__body .profile__person-card .btn--linkedin {
        margin-bottom: 0
    }
}

.profile .profile__body .profile__save {
    margin-top: .8rem;
    margin-bottom: 2rem
}

.profile .btn--apply-cta {
    line-height: 1.5rem;
    padding: .7rem .5rem .7rem 1.25rem;
    margin-top: .8rem
}

.profile .profile__summary p {
    font-size: 1.25rem;
    line-height: 1.875rem;
    margin: 2rem 0 1rem
}

    .profile .profile__summary p i {
        margin-right: .5rem;
        position: relative;
        top: -2px;
        width: 25px;
        height: 25px;
        border-radius: 100%;
        vertical-align: middle
    }

        .profile .profile__summary p i:before {
            line-height: normal;
            font-size: 1.875rem;
            top: 2px;
            left: -3px
        }

.profile .profile__summary .btn {
    margin: 0 0 .5rem
}

.thanks h1 {
    font-size: 3.75rem;
    line-height: 3.75rem;
    margin-bottom: .5rem
}

@media (min-width:34rem) {
    .thanks h1 {
        font-size: 5.625rem;
        line-height: 5.625rem;
        margin: 7.5rem 0 .2rem
    }
}

.thanks h3 {
    margin-top: .2rem
}

.thanks .confirmation,
.thanks .follow {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 2rem
}

.thanks .email {
    color: #ed1c24
}

.tip-style .qtip-close span:before,
.tip-style h6:before {
    font-family: adecco-font-1 !important
}

.thanks__top {
    padding-bottom: 1.5rem
}

.thanks__next {
    background: #e7e6e6;
    border-radius: 4px;
    margin-bottom: 2rem;
    padding: 1rem
}

@media (min-width:34rem) {
    .thanks .confirmation,
    .thanks .follow {
        font-size: 1.25rem;
        line-height: 1.875rem
    }

    .thanks__next {
        padding: 1rem 3rem;
        margin-bottom: 2rem
    }
}

.thanks__next h5 {
    color: #000;
    margin: 0 0 1rem
}

.thanks__suggested-jobs {
    border-top: 1px solid #e7e6e6;
    margin-bottom: 2rem
}

    .thanks__suggested-jobs h5 {
        color: #000;
        margin-top: 3rem
    }

.cover-letter .browse-jobs__top h1 {
    cursor: text
}

.cover-letter .browse-jobs__top p {
    display: block
}

.cover-letter__body {
    background: #f1f1f1;
    position: relative;
    padding: 20px 0
}

.cover-letter__body__content {
    position: relative
}

.cover-letter__advanced {
    display: none
}

.cover-letter__builder-cta,
.cover-letter__close-cta,
.cover-letter__cta a {
    display: inline-block
}

    .cover-letter__builder-cta span {
        color: #000;
        padding-right: 5px
    }

    .cover-letter__builder-cta i {
        font-size: 3rem;
        line-height: 2.875rem;
        padding-left: 10px;
        position: relative;
        top: 18px;
        margin-top: -20px
    }

    .cover-letter__close-cta i {
        font-size: 1.375rem;
        line-height: 1.375rem;
        padding-right: 10px;
        position: relative;
        top: 6px
    }

.cover-letter__cta {
    text-align: left;
    padding: 20px 0 0
}

    .cover-letter__cta a {
        margin-bottom: 20px
    }

        .cover-letter__cta a.btn--clear {
            display: block;
            padding-left: 0
        }

@media (min-width:34rem) {
    .cover-letter__cta a.btn--clear {
        display: inline-block;
        padding-left: 30px
    }

    .cover-letter__cta {
        text-align: right
    }
}

.cover-letter__cta .cover-letter__cta__cancel i {
    padding-left: 5px;
    position: relative;
    top: 10px;
    font-size: 2rem;
    line-height: 1.5rem;
    margin-top: -10px
}

.builder h4 {
    color: #000;
    position: relative;
    margin-bottom: .5rem
}

    .builder h4 span {
        color: #ed1c24;
        position: absolute;
        cursor: pointer;
        right: 0;
        top: 5px;
        font-size: 1.125rem;
        line-height: 1.6875rem
    }

.builder__section {
    margin: 1rem 0
}

.builder__section__help {
    padding-top: 1rem
}

    .builder__section__help p {
        color: #b2b2b2
    }

.tiny-form .mce-container.mce-tinymce {
    border: 1px solid #f1f1f1;
    border-radius: .3rem;
    padding: 0;
    overflow: hidden
}

@media (min-width:34rem) {
    .builder h4 span {
        top: 12px
    }

    .builder__section__help {
        padding-top: 0
    }

    .tiny-form .mce-container-body {
        text-align: left
    }
}

.tiny-form .mce-panel {
    background: #fff;
    border-color: #f1f1f1;
    padding: 1rem 1.25rem 0
}

.tiny-form .mce-toolbar-grp .mce-flow-layout-item {
    margin-bottom: 1rem
}

.tiny-form .mce-edit-area {
    padding: 1rem 1.25rem
}

.tiny-form .mce-btn-group:not(:first-child) .mce-btn {
    border: none
}

    .tiny-form .mce-btn-group:not(:first-child) .mce-btn .mce-ico {
        font-size: 1.125rem;
        line-height: 1.125rem
    }

.tiny-form .mce-btn-group .mce-btn {
    margin-left: 0
}

    .tiny-form .mce-btn-group .mce-btn:not(:first-child) {
        margin-left: 5px
    }

@media (min-width:34rem) {
    .tiny-form .mce-edit-area,
    .tiny-form .mce-panel {
        padding: 1rem 1.25rem
    }

    .tiny-form .mce-btn-group .mce-btn {
        margin-left: 0
    }

        .tiny-form .mce-btn-group .mce-btn:not(:first-child) {
            margin-left: 15px
        }
}

.tiny-form .mce-btn {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: .3rem
}

.tiny-form .mce-flow-layout-item {
    margin: 0 5px 10px 0
}

    .tiny-form .mce-flow-layout-item:not(:first-child) {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        border: none
    }

@media (min-width:34rem) {
    .tiny-form .mce-flow-layout-item {
        margin: 0 15px 10px 0
    }

        .tiny-form .mce-flow-layout-item:not(:first-child) {
            margin-left: 5px;
            margin-right: 5px;
            border: 1px solid #d9d9d9;
            padding-left: 10px
        }
}

.saved-jobs > .container {
    position: relative
}

.saved-jobs hr {
    border-color: #dad9d9;
    margin: 0 0 1em
}

.saved-jobs .profile__back {
    padding-top: 20px
}

    .saved-jobs .profile__back a {
        display: block
    }

    .saved-jobs .profile__back hr {
        margin-top: 1em;
        margin-right: 0
    }

@media (min-width:34rem) {
    .saved-jobs .profile__back {
        padding-top: 40px
    }

        .saved-jobs .profile__back hr {
            margin-top: 25px;
            margin-bottom: 1rem
        }

    .saved-jobs .saved-jobs__header p {
        font-size: 1.25rem;
        line-height: 1.875rem;
        width: 80%
    }
}

.saved-jobs .saved-jobs__header {
    text-align: center
}

    .saved-jobs .saved-jobs__header .h2 {
        margin-bottom: .5rem
    }

    .saved-jobs .saved-jobs__header p {
        margin: 0 auto 1rem
    }

@media (min-width:48rem) {
    .saved-jobs .saved-jobs__header p {
        width: 60%
    }
}

@media (min-width:62rem) {
    .saved-jobs .saved-jobs__header p {
        width: 40%
    }
}

.saved-jobs .saved-jobs__description {
    background-color: #f1f1f1;
    text-align: center
}

    .saved-jobs .saved-jobs__description .empty-jobs {
        padding-top: 5rem;
        padding-bottom: 6rem
    }

@media (max-width:33.9rem) {
    .saved-jobs .saved-jobs__description .empty-jobs {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: -2.5rem
    }
}

.saved-jobs .saved-jobs__description .empty-jobs i {
    font-size: 11rem;
    color: #b2b2b2;
    position: relative;
    bottom: -5.5rem
}

.saved-jobs .saved-jobs__description .empty-jobs .h3 {
    margin-bottom: 0
}

.saved-jobs .saved-jobs__description .signin-wide {
    text-align: left;
    border: 1px solid red;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: #ed1c24;
    border-radius: .3rem;
    color: #fff
}

    .saved-jobs .saved-jobs__description .signin-wide .signin-description {
        display: inline-block;
        margin: 20px 20px 0
    }

@media (min-width:48rem) {
    .saved-jobs .saved-jobs__description .signin-wide .signin-description {
        margin: 20px
    }
}

.saved-jobs .saved-jobs__description .signin-wide .signin-description .h6 {
    color: #fff;
    margin: 0
}

.saved-jobs .saved-jobs__description .signin-wide .signin-description p {
    margin-bottom: 0
}

.saved-jobs .saved-jobs__description .signin-wide .signin-cta {
    margin: 20px
}

    .saved-jobs .saved-jobs__description .signin-wide .signin-cta:after,
    .saved-jobs .saved-jobs__description .signin-wide .signin-cta:before {
        content: " ";
        display: table
    }

    .saved-jobs .saved-jobs__description .signin-wide .signin-cta .btn {
        margin-bottom: .5rem;
        margin-top: 0;
        margin-right: 0;
        text-align: left;
        width: 100%
    }

        .saved-jobs .saved-jobs__description .signin-wide .signin-cta .btn:first-child {
            margin-left: 0
        }

        .saved-jobs .saved-jobs__description .signin-wide .signin-cta .btn:last-child {
            margin-bottom: 0
        }

@media (min-width:48rem) {
    .saved-jobs .saved-jobs__description .signin-wide .signin-cta {
        display: inline-block;
        float: right
    }

        .saved-jobs .saved-jobs__description .signin-wide .signin-cta .btn:first-child {
            margin-left: .8rem
        }

        .saved-jobs .saved-jobs__description .signin-wide .signin-cta .btn {
            margin-bottom: 0;
            text-align: center;
            width: auto
        }
}

.saved-jobs .saved-jobs__description .signin-wide .signin-cta .btn i {
    float: right
}

    .saved-jobs .saved-jobs__description .signin-wide .signin-cta .btn i.icon-continue {
        margin-top: -24px;
        margin-bottom: -10px;
        top: 20px;
        position: relative;
        display: inline-block;
        font-size: 3rem
    }

    .saved-jobs .saved-jobs__description .signin-wide .signin-cta .btn i.icon-lock {
        margin-top: -10px;
        margin-bottom: -10px;
        top: 12px;
        position: relative;
        display: inline-block;
        font-size: 1.8rem
    }

.saved-jobs .saved-jobs__related-jobs .h6.first {
    color: #000;
    margin-top: 3rem
}

.tip-style {
    border: 2px dashed #ed1c24;
    padding: .75rem;
    border-radius: .3rem;
    background: #fff;
    width: 300px
}

@media (min-width:34rem) {
    .tip-style {
        width: 400px
    }
}

.tip-style .qtip-close {
    border: none;
    border-radius: 99rem;
    background: #ed1c24;
    display: block;
    height: 24px;
    width: 24px;
    right: 1rem;
    top: 1.2rem
}

    .tip-style .qtip-close span {
        color: #ed1c24
    }

        .tip-style .qtip-close span:before {
            content: '\7a';
            color: #fff;
            display: block;
            font-size: 1rem;
            line-height: 1.5rem;
            line-height: 25px;
            position: absolute;
            left: 4px;
            top: 3px
        }

.tip-style h6 {
    margin: 0 0 .3rem;
    color: #000;
    border-bottom: 2px solid #f1f1f1;
    padding: .2rem 0 .5rem 1.8rem;
    position: relative
}

    .tip-style h6:before {
        content: '\32';
        color: #ed1c24;
        display: block;
        font-size: 2.25rem;
        line-height: 3.375rem;
        line-height: normal;
        position: absolute;
        left: -7px;
        top: 2px
    }

.tip-style ol {
    margin-left: 1.3rem
}

    .tip-style ol li {
        font-size: 1rem;
        line-height: 1.125rem;
        padding-left: 0;
        padding-bottom: 10px
    }

.incentivizer {
    margin: 20px 0
}

    .incentivizer .incentivizer-card {
        border: 1px solid #dfd7d7;
        border-radius: 8px
    }

        .incentivizer .incentivizer-card .star-container {
            width: auto;
            margin-left: 20px;
            margin-right: 20px;
            padding: 15px 20px 0
        }

            .incentivizer .incentivizer-card .star-container h5 {
                display: inline-block;
                margin: 0
            }

        .incentivizer .incentivizer-card .stars {
            margin: auto;
            color: #ed1c24
        }

            .incentivizer .incentivizer-card .stars i {
                font-size: 3rem;
                position: relative;
                top: 5px;
                margin-left: -7px
            }

            .incentivizer .incentivizer-card .stars .icon-star-outline {
                color: #dfd7d7
            }

        .incentivizer .incentivizer-card .star-description {
            position: relative;
            display: inline-block;
            top: -10px;
            color: #ed1c24;
            padding-left: 1rem
        }

@media (max-width:33.9rem) {
    .incentivizer .incentivizer-card .stars i {
        font-size: 2.6rem;
        margin-right: -7px
    }

    .incentivizer .incentivizer-card .star-description {
        padding-left: 2px;
        padding-top: 2px
    }
}

.incentivizer .incentivizer-card hr {
    margin: 5px 40px
}

.incentivizer .incentivizer-card .cta-container {
    padding: 5px 20px 10px;
    text-align: center
}

    .incentivizer .incentivizer-card .cta-container .cta-description {
        display: inline-block;
        padding-right: 2rem;
        margin-bottom: 5px
    }

    .incentivizer .incentivizer-card .cta-container p {
        margin: 0;
        padding: 0
    }

    .incentivizer .incentivizer-card .cta-container .btn {
        margin: 0
    }

        .incentivizer .incentivizer-card .cta-container .btn i {
            display: inline-block;
            font-size: 2.4rem;
            margin-top: -12px;
            margin-bottom: -10px;
            top: 13px
        }

.my-jobs > .container {
    position: relative
}

.my-jobs hr {
    border-color: #dad9d9;
    margin: 0 0 1em
}

.my-jobs .profile__back {
    padding-top: 20px
}

    .my-jobs .profile__back a {
        display: block
    }

    .my-jobs .profile__back hr {
        margin-top: 1em;
        margin-right: 0
    }

@media (min-width:34rem) {
    .my-jobs .profile__back {
        padding-top: 40px
    }

        .my-jobs .profile__back hr {
            margin-top: 25px;
            margin-bottom: 1rem
        }
}

.my-jobs .my-jobs__header {
    text-align: center
}

.my-jobs .my-jobs__description {
    background-color: #f1f1f1;
    text-align: center
}

    .my-jobs .my-jobs__description .empty-jobs {
        padding-top: 5rem;
        padding-bottom: 6rem
    }

        .my-jobs .my-jobs__description .empty-jobs i {
            font-size: 5rem;
            color: #b2b2b2;
            position: relative;
            bottom: -2.5rem
        }

        .my-jobs .my-jobs__description .empty-jobs h3 {
            margin-bottom: 0
        }

    .my-jobs .my-jobs__description .signin-wide {
        text-align: left;
        border: 1px solid red;
        width: 100%;
        display: block;
        margin-bottom: 20px;
        margin-top: 20px;
        background-color: #ed1c24;
        border-radius: .3rem;
        color: #fff
    }

        .my-jobs .my-jobs__description .signin-wide .signin-description {
            display: inline-block;
            margin: 20px
        }

            .my-jobs .my-jobs__description .signin-wide .signin-description h6 {
                color: #fff;
                margin: 0
            }

            .my-jobs .my-jobs__description .signin-wide .signin-description p {
                margin-bottom: 0
            }

        .my-jobs .my-jobs__description .signin-wide .signin-cta {
            float: right;
            display: inline-block;
            margin: 20px
        }

            .my-jobs .my-jobs__description .signin-wide .signin-cta .btn {
                margin-top: 0;
                margin-right: 0;
                margin-left: .8rem
            }

                .my-jobs .my-jobs__description .signin-wide .signin-cta .btn i.fa-lock {
                    top: 0
                }

    .my-jobs .my-jobs__description .my-jobs-container {
        padding-top: 20px
    }

.image-carousel,
.job-card-carousel {
    position: relative;
    opacity: 0;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear
}

    .image-carousel.owl-loaded,
    .job-card-carousel.owl-loaded {
        opacity: 1
    }

    .image-carousel .owl-controls,
    .job-card-carousel .owl-controls {
        text-align: center;
        -webkit-tap-highlight-color: transparent
    }

    .image-carousel .owl-nav,
    .job-card-carousel .owl-nav {
        display: none
    }

@media (min-width:48rem) {
    .image-carousel .owl-nav,
    .job-card-carousel .owl-nav {
        display: block;
        position: absolute;
        width: 100%;
        top: 31%
    }

        .image-carousel .owl-nav > button,
        .job-card-carousel .owl-nav > button {
            background: 0 0;
            border: none;
            padding: 0;
            position: absolute
        }

            .image-carousel .owl-nav > button:before,
            .job-card-carousel .owl-nav > button:before {
                -webkit-transition: all .2s ease;
                transition: all .2s ease;
                font-family: FontAwesome;
                color: #ed1c24;
                font-size: 1.875rem;
                line-height: 2.8125rem;
                line-height: 1.3;
                display: block;
                width: 20px;
                height: 40px
            }

            .image-carousel .owl-nav > button:hover:before,
            .job-card-carousel .owl-nav > button:hover:before {
                color: #ed1c24
            }

            .image-carousel .owl-nav > button.off,
            .job-card-carousel .owl-nav > button.off {
                cursor: auto !important
            }

                .image-carousel .owl-nav > button.off:before,
                .job-card-carousel .owl-nav > button.off:before {
                    color: #f8aaad
                }

        .image-carousel .owl-nav .owl-prev,
        .job-card-carousel .owl-nav .owl-prev {
            left: -15px
        }

            .image-carousel .owl-nav .owl-prev:before,
            .job-card-carousel .owl-nav .owl-prev:before {
                content: '\f053'
            }

            .image-carousel .owl-nav .owl-prev span,
            .job-card-carousel .owl-nav .owl-prev span {
                display: none;
            }

        .image-carousel .owl-nav .owl-next,
        .job-card-carousel .owl-nav .owl-next {
            right: -15px
        }

            .image-carousel .owl-nav .owl-next:before,
            .job-card-carousel .owl-nav .owl-next:before {
                content: '\f054'
            }

            .image-carousel .owl-nav .owl-next span,
            .job-card-carousel .owl-nav .owl-next span {
                display: none;
            }
}

.image-carousel .owl-dots .owl-dot,
.job-card-carousel .owl-dots .owl-dot {
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .image-carousel .owl-dots .owl-dot span,
    .job-card-carousel .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px 7px;
        background: #dad9d9;
        display: block;
        -webkit-backface-visibility: visible;
        -webkit-transition: opacity .2s ease;
        transition: opacity .2s ease;
        border-radius: 30px
    }

    .image-carousel .owl-dots .owl-dot.active span,
    .job-card-carousel .owl-dots .owl-dot.active span {
        background: #b2b2b2
    }

@media (min-width:34rem) {
    .image-carousel .owl-dots .owl-dot:hover span,
    .job-card-carousel .owl-dots .owl-dot:hover span {
        background: #b2b2b2
    }
}

.image-carousel .owl-controls {
    height: 0
}

.image-carousel .owl-nav {
    top: calc(50% - 40px)
}

    .image-carousel .owl-nav > button {
        background: 0 0;
        border: none;
        position: absolute
    }

.image-carousel .owl-dots,
.resource-results,
.resources-page main {
    position: relative
}

.image-carousel .owl-nav > button:before {
    font-size: 3.75rem;
    color: #fff;
    line-height: 60px;
    height: 60px;
    width: 60px
}

.image-carousel .owl-nav > button:hover:before {
    color: #fff
}

.image-carousel .owl-nav > button.off {
    cursor: auto !important
}

    .image-carousel .owl-nav > button.off:hover:before {
        color: #f8aaad
    }

.image-carousel .owl-nav .owl-next:before,
.image-carousel .owl-nav .owl-prev:before {
    color: #fff;
    content: '\27';
    font-family: adecco-font-1
}

.image-carousel .owl-nav .owl-prev {
    left: 70px
}

    .image-carousel .owl-nav .owl-prev:before {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

.image-carousel .owl-nav .owl-next {
    right: 70px
}

    .image-carousel .owl-nav .owl-next:before {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }

.image-carousel .owl-dots {
    top: -3rem
}

    .image-carousel .owl-dots .owl-dot span {
        background: 0 0;
        border: 1px solid #fff
    }

    .image-carousel .owl-dots .owl-dot.active span,
    .image-carousel .owl-dots .owl-dot:hover span,
    .resources-page {
        background: #fff
    }

.job-details__viewed-jobs-carousel {
    padding: 2rem 0 0
}

.resources__top .search-count {
    font-size: 2.5rem;
    line-height: 2.75rem
}

@media (max-width:61.9rem) {
    .resources__top .search-count {
        font-size: 1.25rem;
        line-height: 1.375rem
    }
}

.mobile-filter-modal #refine-close {
    font-size: 2.4rem;
    line-height: normal
}

@media (min-width:62rem) {
    .mobile-filter-modal #refine-close {
        display: none
    }
}

@media (max-width:61.9rem) {
    .mobile-filter-modal {
        display: none;
        background-color: #f1f1f1;
        top: 0
    }

        .mobile-filter-modal .refine-results {
            padding-bottom: 20px
        }

            .mobile-filter-modal .refine-results .refine-header {
                display: block;
                position: relative;
                min-height: 1rem
            }

                .mobile-filter-modal .refine-results .refine-header h5 {
                    color: #ed1c24;
                    display: inline-block;
                    padding-left: 10px;
                    font-size: 1.5rem;
                    line-height: 1.5rem
                }

                .mobile-filter-modal .refine-results .refine-header i {
                    color: #ed1c24;
                    display: block;
                    float: right;
                    position: relative;
                    top: 1.4rem;
                    padding-right: 20px;
                    cursor: pointer
                }

            .mobile-filter-modal .refine-results .sort-holder {
                background-color: #fff
            }

            .mobile-filter-modal .refine-results #select-reset {
                margin-left: 10px;
                margin-right: 20px
            }
}

.resource-results .h6 {
    border-bottom: 1px solid #dad9d9;
    color: #000;
    padding-bottom: 1.5rem
}

@media (max-width:47.9rem) {
    .resources__top h2 {
        margin-bottom: .7rem
    }

    .resource-results .h6 {
        font-size: 1rem;
        line-height: 1.25rem;
        text-align: center
    }
}

.resource-results .h6 .keyword,
.resource-results .h6 .location {
    color: #ed1c24
}

@media (min-width:48rem) {
    .resource-results .h6 .keyword,
    .resource-results .h6 .location {
        color: #000
    }

    .resource-selection {
        margin-bottom: 0
    }
}

.resource-listings .search-resources > .container {
    border-bottom: 1px solid #dad9d9;
    padding-bottom: 1.25rem
}

.resource-listings .search-resources .browse-holder {
    padding-bottom: 1rem;
    float: left
}

.resource-listings .search-resources .search-holder {
    display: inline-block;
    float: right
}

.search-resources {
    padding-top: 2.5rem;
    font-size: .875rem;
    line-height: 1.25rem
}

    .search-resources .browse-holder ul {
        margin: 0;
        list-style: none
    }

        .search-resources .browse-holder ul li {
            display: inline-block;
            padding-right: 10px;
            padding-left: 10px;
            margin-bottom: 0
        }

            .search-resources .browse-holder ul li:first-of-type {
                border-right: 1px solid #dad9d9;
                padding-left: 0
            }

@media (max-width:33.9rem) {
    .resource-listings .search-resources .search-holder {
        float: none;
        width: 100%
    }

    .search-resources .browse-holder {
        display: block;
        position: relative;
        width: 100%
    }
}

.search-resources .search-holder {
    border-bottom: 1px solid #dad9d9;
    padding-bottom: .5rem;
    min-width: 200px;
    position: relative
}

    .search-resources .search-holder label {
        display: none
    }

    .search-resources .search-holder i {
        font-size: 3.125rem;
        line-height: 0;
        color: #ed1c24;
        position: absolute;
        top: -6px;
        right: -14px;
        cursor: pointer
    }

    .search-resources .search-holder input[type=text] {
        border: none;
        padding-bottom: 0;
        min-width: 180px;
        position: relative;
        color: #b2b2b2
    }

        .search-resources .search-holder input[type=text]::-ms-clear {
            width: 0;
            height: 0;
            display: none
        }

@media (max-width:33.9rem) {
    .search-resources .search-holder {
        display: block;
        position: relative;
        border: none
    }

        .search-resources .search-holder input[type=text] {
            border: 1px solid #dad9d9;
            border-radius: .2rem;
            width: 100%;
            max-width: 300px;
            padding-left: .75rem;
            padding-top: .75rem
        }

        .search-resources .search-holder i {
            top: 2px;
            margin-left: -40px;
            right: initial
        }
}

.article-thumb img,
.home-content__generic--left-img .content.left img,
.home-content__generic.customer-services .content.img img {
    max-width: 100%;
    margin-bottom: -5px;
}

.csstransitions .resource-selection label:after {
    content: "\77";
    font-family: adecco-font-1;
    color: #ed1c24;
    right: 15px;
    top: 6px;
    position: absolute;
    pointer-events: none
}

.resource-selection {
    background-size: cover;
    padding: 20px 20px 40px
}

    .resource-selection .resource-dropdown {
        display: inline-block;
        padding-left: 40px
    }

        .resource-selection .resource-dropdown:first-of-type {
            padding-left: 0;
            padding-right: 0;
        }

@media (max-width:47.9rem) {
    .resource-selection .resource-dropdown:first-of-type {
        padding-right: 0
    }

    .resource-selection .resource-dropdown {
        padding-left: 0;
        padding-right: 0
    }

    .resource-selection {
        padding: 0 10px 20px
    }
}

.resource-selection select {
    font-size: 1.5rem;
    line-height: 2.25rem;
    background: 0 0;
    border-bottom: 1px solid #ed1c24;
    border-top: none;
    border-right: none;
    border-left: none;
    color: #000;
    width: 100%;
    padding: 4px;
    margin: 0;
    outline: 0;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*appearance: none;*/
    cursor: pointer;
    border-radius: 0
}

.resource-selection .search-block {
    border: none;
    font-size: 1.5rem;
    line-height: 2.25rem;
    background: 0 0;
    border-bottom: 1px solid #ed1c24;
    color: #000;
    padding: 4px;
}

.resource-selection .btn-search {
    background-color: transparent;
    border: none;
    border-radius: 5px;
    color: #ed1c24;
    position: absolute;
    right: 0;
}

    .resource-selection .btn-search .icon {
        font-size: 4rem;
    }

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .resource-selection select {
        padding-right: 18px
    }
}

.resource-selection label {
    position: relative;
    font-size: 1.75rem;
    line-height: 2.625rem
}

    .resource-selection label:after {
        font-size: 60px;
        padding-top: 5px;
        margin-right: -16px
    }

@-moz-document url-prefix() {
    .resource-selection label:after {
        padding-right: 4px
    }
}

.resource-selection label:before {
    content: '';
    background: #fff;
    position: absolute;
    pointer-events: none;
    display: block
}

.resource-selection::-ms-clear {
    display: none !important
}

.resource-selection::-webkit-input-placeholder {
    color: #737373
}

.resource-selection:-moz-placeholder {
    color: #737373
}

.resource-selection::-moz-placeholder {
    color: #737373
}

.resource-selection:-ms-input-placeholder {
    color: #737373
}

.resource-selection .clear-search {
    display: block;
    height: 20px;
    position: absolute;
    right: 0;
    top: 10px;
    width: 20px
}

@media (min-width:48rem) {
    .resource-selection .clear-search {
        top: 2rem
    }
}

@media (min-width:62rem) {
    .resource-selection .clear-search {
        top: 2.7rem
    }
}

.resource-selection .search-submit {
    background-color: #ed1c24;
    border: none;
    border-radius: 5px;
    color: #fff;
    height: 35px;
    width: 100%;
    overflow: visible
}

@media (min-width:48rem) {
    .resource-selection .search-submit {
        background-color: transparent;
        float: right;
        display: inline-block;
        position: relative;
        top: 1rem;
        width: auto
    }

        .resource-selection .search-submit span {
            display: none
        }
}

.resource-selection .search-submit .fa-search {
    margin-left: 10px
}

@media (min-width:48rem) {
    .resource-selection .search-submit .fa-search {
        font-size: 1.875rem;
        line-height: 2.8125rem;
        color: #fff;
        margin: 0
    }
}

@media (min-width:62rem) {
    .resource-selection .search-submit {
        top: 1.5rem
    }

        .resource-selection .search-submit .fa-search {
            font-size: 2.1875rem;
            line-height: 3.28125rem
        }
}

.refine-results h5 {
    color: #000
}

.refine-results .resource-dropdown {
    display: block;
    width: 100%;
    padding-bottom: 0;
    height: auto;
    padding-left: 0;
    padding-right: 0
}

    .refine-results .resource-dropdown:first-of-type {
        padding-top: 20px
    }

@media (max-width:61.9rem) {
    .refine-results .resource-dropdown {
        padding-left: 0;
        padding-right: 0
    }
}

.refine-results .resource-dropdown select {
    font-size: 1rem;
    line-height: 1.5rem;
    background: 0 0;
    border-bottom: 2px solid #dad9d9;
    border-top: 1px solid #dad9d9;
    border-right: 1px solid #dad9d9;
    border-left: 1px solid #dad9d9;
    color: #000;
    display: block;
    width: 100%;
    padding: 8px 25px 8px 16px;
    margin: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*appearance: none;*/
    cursor: pointer;
    border-radius: .3rem
}

.refine-results .resource-dropdown label {
    position: relative;
    font-size: 2rem;
    line-height: 3rem
}

    .refine-results .resource-dropdown label:after {
        content: "\77";
        font-family: adecco-font-1;
        color: #ed1c24;
        right: 3px;
        top: -40px;
        margin-bottom: -30px;
        float: right;
        position: relative;
        pointer-events: none
    }

    .refine-results .resource-dropdown label:before {
        content: '';
        background: #fff;
        position: absolute;
        pointer-events: none;
        display: block
    }

.sort-holder {
    border: 1px solid #dad9d9;
    border-radius: .3rem;
    width: 100%
}

    .sort-holder input[type=radio] {
        display: none
    }

    .sort-holder .sort-criteria {
        display: inline-block;
        margin-top: 10px;
        padding-top: 6px;
        padding-bottom: 6px;
        margin-bottom: 10px;
        position: relative;
        color: #b2b2b2;
        text-align: center;
        width: 48%
    }

        .sort-holder .sort-criteria.active {
            color: #ed1c24
        }

        .sort-holder .sort-criteria:first-of-type {
            border-right: 1px solid #dad9d9;
            width: 50%
        }

.resource-form {
    padding-bottom: 2rem
}

    .resource-form fieldset {
        border: none !important;
        padding-left: 0
    }

        .resource-form fieldset .resource-checklist .check-group {
            display: block;
            height: 1.5rem
        }

            .resource-form fieldset .resource-checklist .check-group [type=checkbox]:checked,
            .resource-form fieldset .resource-checklist .check-group [type=checkbox]:not(:checked) {
                position: absolute;
                left: -9999px
            }

                .resource-form fieldset .resource-checklist .check-group [type=checkbox]:checked + label,
                .resource-form fieldset .resource-checklist .check-group [type=checkbox]:not(:checked) + label {
                    position: relative;
                    padding-left: 25px;
                    cursor: pointer
                }

                    .resource-form fieldset .resource-checklist .check-group [type=checkbox]:checked + label:before,
                    .resource-form fieldset .resource-checklist .check-group [type=checkbox]:not(:checked) + label:before {
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 2px;
                        width: 1rem;
                        height: 1rem;
                        border: 1px solid #dad9d9;
                        border-radius: 3px
                    }

@media (max-width:61.9rem) {
    .refine-results .resource-dropdown select {
        background-color: #fff
    }

    .resource-form fieldset .resource-checklist .check-group {
        margin-top: 2px
    }

        .resource-form fieldset .resource-checklist .check-group [type=checkbox]:checked + label:before,
        .resource-form fieldset .resource-checklist .check-group [type=checkbox]:not(:checked) + label:before {
            background-color: #fff
        }
}

.resource-form fieldset .resource-checklist .check-group [type=checkbox]:checked + label:after,
.resource-form fieldset .resource-checklist .check-group [type=checkbox]:not(:checked) + label:after {
    font-family: adecco-font-1;
    font-size: 1.375rem;
    font-weight: 600;
    content: '\6c';
    position: absolute;
    top: 6px;
    left: -2px;
    line-height: .8em
}

.resource-form fieldset .resource-checklist .check-group [type=checkbox]:checked + label.article {
    color: #d21847
}

.resource-form fieldset .resource-checklist .check-group [type=checkbox]:checked + label.video {
    color: #009cd0
}

.resource-form fieldset .resource-checklist .check-group [type=checkbox]:checked + label.tool {
    color: #e05305
}

.resource-form fieldset .resource-checklist .check-group [type=checkbox]:checked + label.infographic {
    color: #00b59b
}

.resource-form fieldset .resource-checklist .check-group [type=checkbox]:checked + label.guide {
    color: #2eb44a
}

.resource-form fieldset .resource-checklist .check-group [type=checkbox]:not(:checked) + label:after {
    opacity: 0
}

.resource-form fieldset .resource-checklist .check-group [type=checkbox]:checked:focus + label:before,
.resource-form fieldset .resource-checklist .check-group [type=checkbox]:not(:checked):focus + label:before {
    border: 1px dotted #ed1c24
}

.resource-form fieldset .resource-checklist .check-group label {
    display: inline-block;
    float: left
}

.resource-form #select-reset i {
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    margin-top: -10px;
    top: 10px
}

.resource-form .btn--apply {
    font-size: 1rem;
    line-height: 1.5rem;
    padding: .5rem 1rem
}

@media (max-width:47.9rem) {
    .resource-card p:last-of-type {
        margin-bottom: 0
    }

    .resource-card h5 {
        margin-bottom: 10px;
        margin-top: 10px
    }
}

.resource-card .resource-card-footer .resource-type {
    padding-right: 40px
}

    .resource-card .resource-card-footer .resource-type i {
        font-size: 2.25rem;
        line-height: 0;
        top: 10px;
        position: relative;
        left: -10px;
        margin-top: -14px
    }

@media (min-width:48rem) {
    .resource-card .resource-card-footer .resource-type i {
        font-size: 3.75rem;
        line-height: 0;
        top: 26px;
        margin-top: -32px;
        left: -18px;
        margin-right: -20px
    }
}

.resource-card .resource-card-footer .resource-type.article {
    color: #d21847
}

.resource-card .resource-card-footer .resource-type.video {
    color: #009cd0
}

    .resource-card .resource-card-footer .resource-type.video i {
        margin-top: 0
    }

.resource-card .resource-card-footer .resource-type.tool {
    color: #e05305
}

.resource-card .resource-card-footer .resource-type.infographic {
    color: #00b59b
}

.resource-card .resource-card-footer .resource-type.guide {
    color: #2eb44a
}

.resource-card .resource-card-footer .filed {
    color: #b2b2b2
}

@media (max-width:47.9rem) {
    .resource-card .resource-card-footer .resource-type {
        display: block;
        font-size: .875rem;
        line-height: 1.25rem
    }

    .resource-card .resource-card-footer .filed {
        font-size: .875rem;
        line-height: 1.25rem
    }
}

.resource-card .resource-card-footer .resource-tag {
    color: #ed1c24
}

.register__header {
    margin: 0;
    text-align: center
}

    .register__header .h2 {
        margin-bottom: .5rem
    }

    .register__header p {
        margin: 0 auto 1rem
    }

@media (min-width:34rem) {
    .register__header p {
        font-size: 1.25rem;
        line-height: 1.875rem;
        width: 80%
    }
}

@media (min-width:48rem) {
    .register__header p {
        width: 60%
    }
}

@media (min-width:62rem) {
    .register__header p {
        width: 50%
    }
}

.register__content {
    background-color: #f1f1f1;
    margin: 0;
    padding: 2rem 0 4rem
}

    .register__content .register__social-sign-up {
        background: #fff;
        border: 1px solid #e7e6e6;
        border-radius: 4px;
        margin-bottom: 2rem;
        padding: 1.5rem 0 1rem
    }

        .register__content .register__social-sign-up:after,
        .register__content .register__social-sign-up:before {
            content: " ";
            display: table
        }

        .register__content .register__social-sign-up .btn {
            display: block;
            margin: 0 auto;
            text-align: left;
            width: 100%
        }

@media (min-width:34rem) {
    .register__content .register__social-sign-up .btn {
        min-width: 240px;
        text-align: center;
        width: auto
    }
}

.register__content .register__social-sign-up .btn.btn--linkedin {
    margin-bottom: .5rem
}

@media (min-width:48rem) {
    .register__content .register__social-sign-up .btn.btn--linkedin {
        float: right;
        margin-bottom: 0
    }
}

@media (min-width:62rem) {
    .register__content .register__social-sign-up .btn {
        font-size: 1.25rem;
        line-height: 1.5rem;
        margin: 0
    }
}

.register__content .register__social-sign-up .btn i {
    float: right
}

.register__content .register__social-sign-up p {
    color: #b2b2b2;
    margin: .3rem 0 0;
    text-align: center
}

.register__content .register__manual-sign-up {
    background: #fff;
    border: 1px solid #e7e6e6;
    border-radius: 4px;
    padding: 1rem 0
}

    .register__content .register__manual-sign-up:after,
    .register__content .register__manual-sign-up:before {
        content: " ";
        display: table
    }

    .register__content .register__manual-sign-up .h5 {
        color: #000;
        margin-top: 0
    }

.register__content .sign-up-form.base-form label {
    font-size: 1rem;
    line-height: 1.75rem;
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
    display: inline-block;
    border-radius: 0;
    box-shadow: none
}

    .register__content .sign-up-form.base-form label.error {
        font-size: .875rem;
        line-height: 1.125rem
    }

.register__content .sign-up-form.base-form input[type=text],
.register__content .sign-up-form.base-form input[type=password],
.register__content .sign-up-form.base-form input[type=email] {
    border: 1px solid #dad9d9;
    box-shadow: none;
    box-sizing: border-box;
    display: block;
    height: 48px;
    line-height: 2;
    margin-bottom: 1rem;
    width: 100%
}

    .register__content .sign-up-form.base-form input[type=text].error,
    .register__content .sign-up-form.base-form input[type=password].error,
    .register__content .sign-up-form.base-form input[type=email].error {
        margin-bottom: .2rem
    }

.register__content .sign-up-form.base-form .input-grp {
    position: relative
}

.register__content .sign-up-form.base-form .terms-container {
    border-top: 1px solid #dad9d9;
    margin: 1rem 0 2rem
}

.register__content .sign-up-form.base-form .terms {
    display: inline-block;
    margin: 1.5rem 0 0
}

.register__content .sign-up-form.base-form .terms-error {
    display: none
}

.register__content .sign-up-form.base-form input[type=checkbox] {
    margin-right: .3rem;
    position: relative;
    top: -2px
}

.register__content .sign-up-form.base-form a {
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
    text-decoration: underline
}

.register__content .sign-up-form.base-form .actions {
    margin-bottom: 1rem;
    text-align: center
}

.register__content .sign-up-form.base-form .btn.btn--lightblue {
    font-size: 1.25rem;
    line-height: 1.875rem;
    padding: .5rem 1rem
}

    .register__content .sign-up-form.base-form .btn.btn--lightblue i {
        font-size: 1.5rem;
        line-height: 1.5rem;
        margin-left: .5rem;
        position: relative;
        top: 5px
    }

.branch-locator h1 {
    text-align: center
}

.branch-locator h6.first {
    color: #000
}

    .branch-locator h6.first a,
    .branch-locator h6.first span {
        color: #ed1c24
    }

    .branch-locator h6.first a {
        display: inline;
        float: none
    }

.branch-locator .h6,
.branch-locator h6 {
    color: #000
}

@media (min-width:34rem) {
    .branch-locator > .container {
        margin: 1rem auto
    }

        .branch-locator > .container ~ .container {
            margin: 0
        }
}

.branch-locator__summary {
    padding: 1rem 0 2rem
}

    .branch-locator__summary h1 {
        margin-bottom: 0
    }

.branch-locator__filter {
    background: #efefef;
    padding: 2rem 0
}

.branch-locator .branch-locator__back h5,
.branch-locator .branch-locator__back h6 {
    margin-top: 0;
    color: #000
}

.branch-locator input {
    height: 50px
}

.branch-locator .base-form .dropdown:after {
    top: 14px
}

.branch-locator .base-form .dropdown select {
    padding: .5rem .75rem;
    height: 50px
}

.branch-locator .btn--red {
    margin-top: 1.75rem;
    width: 100%;
    text-align: left
}

@media (min-width:48rem) {
    .branch-locator .btn--red {
        margin-top: 0;
        width: auto;
        text-align: center
    }
}

.branch-locator .location-list {
    border: none;
    margin-left: 0;
    padding: .5rem .75rem
}

    .branch-locator .location-list p {
        font-size: 1.375rem;
        line-height: 1.5625rem;
        margin: 1.3rem 0
    }

.branch-locator .location-input {
    position: relative;
    background: 0 0;
    border: none
}

    .branch-locator .location-input:after {
        content: '\6d';
        font-family: adecco-font-1;
        color: #ed1c24;
        font-size: 2.5rem;
        line-height: 1.875rem;
        border: none;
        position: absolute;
        right: 2px;
        top: 2px
    }

.branch-locator .location-list {
    margin-bottom: 2rem
}

@media (min-width:34rem) {
    .branch-locator .location-list {
        margin-bottom: 0
    }
}

.branch-locator .branch-locator__map h5,
.branch-locator .location__link-list h5 {
    color: #000;
    position: relative;
    border-bottom: 1px solid #dfd7d7;
    margin: .75rem 0;
    padding-bottom: .5rem
}

@media (min-width:75rem) {
    .branch-locator .branch-locator__map h5,
    .branch-locator .location__link-list h5 {
        margin: .75rem .5rem
    }
}

.branch-locator .branch-locator__map h5 i,
.branch-locator .location__link-list h5 i {
    color: #ed1c24;
    font-size: 3.75rem;
    line-height: 2.375rem;
    position: relative;
    top: 20px;
    margin-left: -7px;
    margin-top: -20px
}

.branch-locator .branch-locator__map .location-list,
.branch-locator .location__link-list .location-list {
    border: 1px solid #dfd7d7;
    padding: 0 .75rem .5rem
}

    .branch-locator .branch-locator__map .location-list ul li,
    .branch-locator .location__link-list .location-list ul li {
        padding: 10px 0;
        margin: 0
    }

@media (min-width:75rem) {
    .branch-locator .branch-locator__map .location-list ul li,
    .branch-locator .location__link-list .location-list ul li {
        margin: 0 .5rem
    }
}

.branch-locator .location__recent-jobs .location__recent-jobs__heading {
    position: relative;
    margin: 4rem 0 2rem
}

@media (min-width:48rem) {
    .branch-locator .location__recent-jobs .location__recent-jobs__heading a {
        float: right;
        display: inline;
        padding: 0
    }
}

.branch-locator .location__recent-jobs .location__recent-jobs__heading a {
    display: block;
    font-weight: 700;
    padding: .5rem 0
}

.branch-locator .location__recent-jobs .location__recent-jobs__heading h6.first a {
    display: inline;
    float: none
}

.branch-locator .location__recent-jobs h3 {
    margin: 0;
    display: inline-block
}

.contact-block {
    background: #fff;
    border: 1px solid #dfd7d7;
    border-radius: .4rem;
    margin-top: 1.5rem;
    padding: 0 .5rem .5rem
}

    .contact-block > :not(h5):not(.btn) {
        padding: 0 .75rem
    }

    .contact-block h6,
    .contact-block p {
        margin-bottom: .5rem
    }

    .contact-block small {
        color: #b2b2b2
    }

.branch-locator__map {
    padding: 1rem 0;
    background: #efefef
}

    .branch-locator__map .shadow {
        position: relative;
        z-index: 1
    }

    .branch-locator__map .map-holder {
        box-shadow: inset -15px 8px 10px -9px rgba(122, 121, 122, .7);
        position: relative;
        padding-bottom: 75%;
        overflow: hidden;
        height: 0
    }

        .branch-locator__map .map-holder #googleMap {
            height: 100% !important;
            width: 100% !important;
            position: absolute;
            z-index: 2
        }

@media (min-width:34rem) {
    .branch-locator__map {
        padding: 2rem 0
    }
}

.branch-locator__map .contact-block {
    margin-top: 0;
    border: none;
    border-radius: 0;
    padding: 20px 20px
}

    .branch-locator__map .contact-block .btn--red {
        margin-left: .5rem;
        width: 90%;
        width: calc(100% - 1rem)
    }

.branch-locator__map__search {
    padding: 0 0 1.5rem
}

    .branch-locator__map__search input {
        font-size: .9375rem;
        line-height: 1.40625rem;
        box-shadow: none;
        border: 1px solid #b2b2b2;
        border-radius: .4rem;
        width: 100%;
        padding: .5rem .75rem
    }

.branch-locator__map__container {
    background: #fff;
    border-radius: .4rem;
    overflow: hidden
}

.branch-locator__map .branch-locator__opening label {
    cursor: pointer;
    color: #000;
    display: block;
    font-size: 1rem;
    line-height: 1.25rem;
    padding: .2rem 0
}

    .branch-locator__map .branch-locator__opening label:after {
        content: '\27';
        font-family: adecco-font-1;
        font-size: 30px;
        color: #ed1c24;
        float: right;
        position: relative;
        top: -5px;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

@media (min-width:34rem) {
    .branch-locator__map .branch-locator__opening label {
        display: none
    }
}

.branch-locator__map .branch-locator__opening input {
    display: none
}

    .branch-locator__map .branch-locator__opening input:checked + label:after {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }

    .branch-locator__map .branch-locator__opening input:checked ~ ul {
        display: block
    }

.branch-locator__map .branch-locator__opening ul {
    list-style: none;
    margin: 0;
    display: none
}

    .branch-locator__map .branch-locator__opening ul li {
        padding: .2rem 0;
        margin: 0;
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in
    }

        .branch-locator__map .branch-locator__opening ul li.first {
            display: none
        }

@media (min-width:34rem) {
    .branch-locator__map .branch-locator__opening ul {
        margin-bottom: 1.5rem;
        display: block
    }

        .branch-locator__map .branch-locator__opening ul li.first {
            display: list-item
        }
}

.location-list {
    background: #fff;
    border: 1px solid #dfd7d7;
    border-radius: .4rem;
    margin: .75rem 0 0 .75rem;
    padding: .5rem
}

    .location-list:after,
    .location-list:before {
        content: " ";
        display: table
    }

    .location-list ul {
        list-style: none;
        margin: 0
    }

        .location-list ul li {
            margin: 0;
            padding: .75rem 0;
            position: relative;
            border-bottom: 1px solid #dad9d9
        }

            .location-list ul li a {
                font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
                font-size: 1.25rem;
                line-height: 1.5rem;
                display: block;
                padding-right: 40px;
                color: #ed1c24
            }

                .location-list ul li a:hover {
                    color: #de1219
                }

                .location-list ul li a:after {
                    content: '\55';
                    font-family: adecco-font-1;
                    font-size: 3rem;
                    line-height: 2.875rem;
                    float: right;
                    position: absolute;
                    right: 0;
                    top: 10px;
                    height: 20px
                }

.PositionList {
    background: #fff;
    border-radius: .4rem;
}

    .PositionList:after,
    .PositionList:before {
        content: " ";
        display: table
    }

    .PositionList ul {
        list-style: none;
        margin: .75rem 0 0 .75rem;
        padding: .5rem
    }

        .PositionList ul li {
            margin: 0;
            padding: .75rem 0;
            position: relative;
            border-bottom: 1px solid #eee;
        }

            .PositionList ul li a {
                font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
                font-size: 1.25rem;
                line-height: 1.5rem;
                display: block;
                padding-right: 40px;
                color: #ed1c24;
                margin-left: -7px;
            }

                .PositionList ul li a:hover {
                    color: #de1219
                }

                .PositionList ul li a:before {
                    content: '\55';
                    font-family: adecco-font-1;
                    font-size: 3rem;
                    line-height: 2.875rem;
                    float: left;
                    position: inherit;
                    left: 0;
                    top: 10px;
                    height: 20px
                }

            .PositionList ul li:first-child {
                border-bottom: none;
            }

.home .home__actions .action.find-branch .geo span,
.home-browse .home-browse__tab li,
.home-browse .home-browse__tabs li a,
.home-search .search-submit {
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
}

@media (min-width:34rem) {
    .location-list ul li {
        padding: .75rem 0;
        margin: 0 1.5rem .5rem 0
    }

    .location-list ul {
        margin: 1em 0
    }
}

.home-search {
    background: url(assets/images/backgrounds/bg-generic-gradient.png) center no-repeat #c5191f;
    background-size: cover;
    padding: 1.5rem 0
}


    .home-search:after,
    .home-search:before {
        content: " ";
        display: table
    }

@media (min-width:48rem) {
    .home-search {
        background-image: url(assets/images/backgrounds/bg-home-search.png);
        height: 300px
    }

    .bg-search {
        background-image: url(assets/images/backgrounds/bg-search.png);
        height: 300px
    }

    .home-search .content {
        margin-top: 3rem;
        width: 65%
    }
}

@media (min-width:62rem) {
    .home-search {
        height: 400px
    }

        .home-search .content {
            margin-top: 5rem;
            width: 60%
        }
}

@media (min-width:75rem) {
    .home-search {
        height: 535px
    }

        .home-search .content {
            margin-top: 8rem
        }
}

.home-search h1 {
    font-size: 2.1875rem;
    line-height: 3.28125rem;
    color: #fff;
    margin-bottom: .5rem;
    margin-top: 0
}

@media (min-width:48rem) {
    .home-search h1 {
        font-size: 2.8125rem;
        line-height: 2.8125rem
    }
}

@media (min-width:62rem) {
    .home-search h1 {
        font-size: 3.75rem;
        line-height: 3.75rem;
        margin-bottom: 1rem
    }
}

@media (min-width:75rem) {
    .home-search h1 {
        font-size: 5rem;
        line-height: 5rem;
        margin-bottom: 1.5rem
    }
}

.home-search p {
    color: #fff;
    margin-bottom: 3rem
}

@media (min-width:62rem) {
    .home-search p {
        font-size: 1.25rem;
        line-height: 1.25rem
    }
}

.home-search input:last-of-type {
    font-size: 1.2rem;
    line-height: 3.25rem;
    /*    background: 0 0;*/
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    color: #fff;
    display: block;
    margin-bottom: 20px;
    outline: 0;
    padding: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .25);
    text-indent: 10px;
}

@media (min-width:75rem) {
    .home-search p {
        font-size: 1.5rem;
        line-height: 1.5rem;
        margin-bottom: 4rem
    }
}



.home-search input:focus {
    border-color: #fff
}

.home-search input:last-of-type {
    font-size: 1.5rem;
    line-height: 2.25rem;
    /*    background: 0 0;*/
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    border-radius: 0;
    color: #fff;
    display: inline-block;
    margin-bottom: 20px;
    outline: 0;
    padding: 0;
    width: 100%;
    text-indent: 10px;
}

@media (min-width:48rem) {
    .home-search input {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 4%;
        width: 90%
    }

        .home-search input:last-of-type {
            margin-right: 0
        }

        .home-search input:last-of-type {
            font-size: 1.5rem;
            line-height: 2.25rem;
            background: 0 0;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, .25);
            border-radius: 0;
            color: #fff;
            display: inline-block;
            margin-bottom: 20px;
            outline: 0;
            padding: 0;
            width: 90%;
            text-indent: 10px;
        }
}

@media (min-width:62rem) {
    .home-search input {
        font-size: 1.875rem;
        line-height: 2.125rem
    }
}

.home-search::-ms-clear {
    display: none !important
}

.home-search::-webkit-input-placeholder {
    color: #fff
}

.home-search:-moz-placeholder {
    color: #fff
}

.home-search::-moz-placeholder {
    color: #fff
}

.home-search:-ms-input-placeholder {
    color: #fff
}

.home-search .search-submit {
    font-size: 1.25rem;
    line-height: 1.25rem;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    color: #ed1c24;
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
    width: 100%;
    padding-bottom: .5rem
}

    .home-search .search-submit:hover {
        /*
      background-color: #e6e6e6;
      border-color: #e6e6e6;
      color: #c61017
  */
    }

@media (min-width:48rem) {
    .home-search .search-submit {
        background-color: transparent;
        float: right;
        display: inline-block;
        padding-right: 0;
        position: relative;
        top: -.5rem;
        width: auto
    }

        .home-search .search-submit span {
            display: none
        }
}

.home-search .search-submit .icon-search {
    font-size: 2.25rem;
    line-height: 3.375rem;
    margin-left: 10px;
    position: relative;
    top: 5px
}

@media (min-width:48rem) {
    .home-search .search-submit .icon-search {
        font-size: 2.25rem;
        line-height: 3.375rem;
        color: #fff;
        margin: 0
    }
}

@media (min-width:62rem) {
    .home-search .search-submit .icon-search {
        font-size: 2.8125rem;
        line-height: 4.21875rem;
        top: -2px
    }
}

@media (max-width:47.9rem) {
    .home-search .search-submit .icon-search {
        top: 12px;
        line-height: 1rem
    }
}

.home-browse {
    padding-bottom: 2rem
}

@media (min-width:75rem) {
    .home-browse {
        padding-bottom: 3.5rem
    }
}

.home-browse ul {
    list-style: none
}

.home-browse .home-browse__tabs {
    text-align: center;
    margin: 1rem 0;
    padding: 0
}

    .home-browse .home-browse__tabs li {
        display: inline-block;
        padding: 5px 0;
        margin: 0;
        cursor: pointer
    }

        .home-browse .home-browse__tabs li a {
            border-right: 1px solid #efefef;
            color: #dad9d9;
            outline: 0;
            padding: 0 20px
        }

            .home-browse .home-browse__tabs li a.active,
            .home-browse .home-browse__tabs li a.active:hover {
                color: #ed1c24
            }

            .home-browse .home-browse__tabs li a:hover {
                color: #c6c4c4
            }

/*.home-browse .home-browse__tabs li:first-of-type a {
            padding-left: 0
        }

        .home-browse .home-browse__tabs li:last-of-type a {
            border: none;
            padding-right: 0
        }*/

.home-browse .home-browse__tab {
    display: none;
}

    .home-browse .home-browse__tab li a,
    .home-browse .home-browse__tab.active {
        display: block;
    }

    .home-browse .home-browse__tab > .col-lg-4 {
        padding: 0
    }

@media (min-width:62rem) {
    .home-browse .home-browse__tabs li a {
        font-size: 1.25rem;
        line-height: 1.875rem
    }

    .home-browse .home-browse__tab > .col-lg-4 {
        padding: 0 .75rem
    }
}

@media (min-width:75rem) {
    .home-browse .home-browse__tab > .col-lg-4 {
        padding: 0 .75rem;
        margin-top: 1rem
    }

    .home-browse .home-browse__tab li a {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.home-browse .home-browse__tab ul {
    margin: 0
}

.home-browse .home-browse__tab li {
    border-bottom: 1px solid #dad9d9;
    margin: 0 0 .5rem;
    padding: .75rem 0
}

.home-browse .home-browse__tab.loop ul {
    padding: .75rem 0;
}

.home-browse .home-browse__tab.loop li {
    border: none;
    margin: auto;
    padding: 0 .75rem;
}

    .home-browse .home-browse__tab.loop li > div {
        border-bottom: 1px solid #dad9d9;
        margin: 0 0 .5rem;
        padding: .75rem 0;
    }

.home .home__dashboard .notification--confirmation,
.home .why-adecco, .bg-gray {
    /* margin-bottom: 2rem */
}

.bg-gray2 {
    margin-bottom: 0rem
}

.bg-gray3 {
    background-color: #f5f5f5;
}

.home-browse .home-browse__tab li i {
    float: right;
    position: relative;
    font-size: 3rem;
    line-height: 2.875rem
}

.home-browse .home-browse__tab .actions {
    margin-top: 1rem;
    text-align: center
}

@media (min-width:75rem) {
    .home-browse .home-browse__tab .actions {
        margin-top: 2rem
    }
}

@media (min-width:62rem) {
    .home-browse .home-browse__tab .actions .btn {
        font-size: 1.25rem;
        line-height: 1.875rem;
        line-height: 1.5
    }
}

.home .welcome-msg {
    margin-top: 3rem;
    text-align: center
}

.home .home__dashboard {
    background: #f1f1f1;
    padding: 2rem 0 3rem
}

    .home .home__dashboard hr {
        border-color: #b2b2b2
    }

.home .why-adecco, .bg-gray {
    background: #f1f1f1;
    padding: 1.5rem 0;
    text-align: center
}

.home .why-adecco, .bg-gray2 {
    background: #f1f1f1;
    padding: 1.5rem 0;
    text-align: center
}

    .home .why-adecco h2, .bg-gray h2 {
        font-size: 1.25rem;
        line-height: 1.25rem
    }

@media (min-width:34rem) {
    .home .why-adecco h2, .bg-gray h2 {
        font-size: 2.5rem;
        line-height: 2.5rem
    }
}

@media (min-width:62rem) {
    .home .why-adecco p, .bg-gray p {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.home .jobs {
    padding: 2.5rem 0 2.5rem;
    text-align: center
}

@media (min-width:75rem) {
    .home .jobs {
        padding: 2.5rem 0 2.5rem
    }
}

.home .jobs .container > div:after,
.home .jobs .container > div:before {
    content: " ";
    display: table
}

.home .jobs h3 {
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin: 0 0 .5rem
}

.home .jobs .subtitle {
    margin-bottom: 2rem
}

@media (min-width:34rem) {
    .home .jobs h3 {
        font-size: 2.5rem;
        line-height: 2.5rem
    }

    .home .jobs .subtitle {
        font-size: 1.625rem;
        line-height: 2.4375rem
    }
}

.home .jobs .btn--red {
    font-size: 1rem;
    line-height: 1.5rem;
    padding-top: .5rem
}

@media (min-width:34rem) {
    .home .jobs .btn--red {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.home .jobs .viewed-jobs h6 {
    color: #000;
    margin-top: 0;
    text-align: left
}

.home .jobs .viewed-jobs .owl-dots .owl-dot span {
    background: 0 0;
    border: 1px solid #b2b2b2
}

.home .jobs .viewed-jobs .owl-dots .owl-dot.active span,
.home .jobs .viewed-jobs .owl-dots .owl-dot:hover span {
    background: #ed1c24;
    border-color: #ed1c24
}

.home .guidance {
    padding: 2rem 0 4rem
}

    .home .guidance.grey {
        background: #f1f1f1
    }

        .home .guidance.grey .article-thumb .summary {
            background: #fff
        }

@media (min-width:62rem) {
    .home .guidance {
        padding-top: 4rem
    }
}

.home .guidance h3 {
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin: 0 0 1.5rem;
    text-align: center
}

@media (min-width:34rem) {
    .home .guidance h3 {
        font-size: 2.5rem;
        line-height: 2.5rem;
        margin-bottom: 2rem
    }
}

.home .guidance .article-thumb {
    margin-bottom: 1rem
}

@media (min-width:48rem) {
    .home .guidance .article-thumb {
        margin-bottom: 0
    }
}

.home .guidance .article-thumb i.icon-continue {
    font-size: 3rem;
    line-height: 2.875rem;
    margin-top: -20px;
    margin-bottom: -10px;
    margin-right: -20px;
    top: 18px
}

.home .testimonials .desktop-image-carousel {
    display: none
}

.home .testimonials .mobile-image-carousel {
    display: block
}

@media (min-width:34rem) {
    .home .testimonials .desktop-image-carousel {
        display: block
    }

    .home .testimonials .mobile-image-carousel {
        display: none
    }
}

.home .promotions {
    padding: 3rem 0 2rem
}

    .home .promotions .container div:last-of-type a {
        margin-bottom: 0
    }

    .home .promotions img {
        max-width: 100%;
        width: 100%
    }

    .home .promotions a {
        display: block;
        margin-bottom: 1rem
    }

.home .home__actions {
    padding-bottom: 2rem
}

    .home .home__actions .action {
        padding: 2rem 0;
        text-align: center
    }

        .home .home__actions .action .icon {
            font-size: 3.4375rem;
            line-height: 3.4375rem
        }

        .home .home__actions .action .fa {
            font-size: 4.4375rem;
            line-height: 3.4375rem;
            color: #009cd0;
            margin-bottom: 54px;
        }

@media (min-width:34rem) {
    .home .promotions a {
        margin-bottom: 0
    }

    .home .home__actions .action .icon {
        font-size: 6.875rem;
        line-height: 6.875rem
    }
}

.home .home__actions .action h3 {
    font-size: 1.25rem;
    line-height: 1.875rem;
    margin: -.5rem 0 .2rem
}

@media (min-width:34rem) {
    .home .home__actions .action h3 {
        font-size: 2.5rem;
        line-height: 3.75rem
    }
}

.home .home__actions .action .large {
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 0 auto .5rem;
    width: 60%
}

@media (min-width:34rem) {
    .home .home__actions .action .large {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.home .home__actions .action p {
    font-size: .875rem;
    line-height: 1.3125rem;
    margin-bottom: 1rem
}

@media (min-width:34rem) {
    .home .home__actions .action p {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.home .home__actions .action .btn {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 0;
    width: 100%
}

    .home .home__actions .action .btn i {
        font-size: 1.125rem;
        line-height: 1.6875rem;
        float: right;
        position: relative;
        top: 3px
    }

.home .home__actions .action.create-profile .icon,
.home .home__actions .action.create-profile h3 {
    color: #009cd0
}

@media (min-width:34rem) {
    .home .home__actions .action .btn {
        font-size: 1.25rem;
        line-height: 1.875rem;
        width: auto
    }

        .home .home__actions .action .btn i {
            float: none
        }

    .home .home__actions .action.create-profile .btn {
        padding-bottom: .5rem;
        padding-top: .5rem
    }
}

.home .home__actions .action.create-profile .btn i {
    color: #fff;
    margin-left: .5rem;
    font-size: 3rem;
    line-height: 2.875rem;
    margin-top: -23px;
    top: 22px
}

@media (min-width:34rem) {
    .home .home__actions .action.create-profile .btn i {
        margin-top: -20px;
        top: 18px
    }
}

.home .home__actions .action.find-branch .icon,
.home .home__actions .action.find-branch h3 {
    color: #ed1c24
}

.home .home__actions .action.find-branch .geo {
    color: #737373
}

    .home .home__actions .action.find-branch .geo span {
        color: #691b31
    }

.home .home__actions .action.find-branch .btn {
    line-height: 1.5rem
}

    .home .home__actions .action.find-branch .btn i {
        font-size: 2.5rem;
        line-height: 2.5rem;
        margin-top: -20px;
        top: 19px
    }

.testimonials {
    overflow: hidden
}

.banner-cta-center {
    background: url(assets/images/backgrounds/bg-florist.png) center no-repeat #c5191f;
    background-size: cover;
    height: 275px;
    position: relative;
    text-align: center
}

.banner-cta-knowledge {
    background: url(assets/images/backgrounds/bg-bulb.png) center no-repeat #c5191f;
    background-size: cover;
    height: 455px;
    position: relative;
    text-align: center
}

    .banner-cta-knowledge .content {
        margin-top: 220px;
    }

@media (min-width:28rem) {
    .banner-cta-knowledge .content {
        margin-top: 240px;
    }
}

@media (min-width:34rem) {
    .banner-cta-knowledge p {
        font-size: 0.8rem;
        line-height: 0.8rem;
        margin-bottom: 0rem;
        color: white;
    }

    .home .home__actions .action.find-branch .btn i {
        top: 12px
    }

    .banner-cta-center {
        background-image: url(assets/images/backgrounds/bg-jobs.png);
        height: 250px
    }

    .banner-cta-knowledge {
        background-image: url(assets/images/backgrounds/bg-bulb.png);
    }
        /*
    .banner-cta-knowledge {
          height: 250px
      }
  */

        .banner-cta-knowledge .content {
            margin-top: 240px;
        }

        .banner-cta-center h3, .banner-cta-knowledge h3 {
            font-size: 1.25rem;
            line-height: 1.875rem;
            color: #fff;
            margin-bottom: 0
        }
}

@media (min-width:48rem) {
    .banner-cta-center {
        height: 350px
    }

    .banner-cta-knowledge {
        height: 450px
    }


    .banner-cta-knowledge {
        background-image: url(assets/images/backgrounds/bg-knowledge.png);
    }

        .banner-cta-knowledge .content {
            margin-top: 290px;
        }
}

@media (min-width:62rem) {
    .banner-cta-center {
        height: 400px
    }


    .banner-cta-knowledge .content {
        margin-top: 340px;
    }
}


.banner-cta-center .content {
    bottom: 1.5rem;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0
}

.banner-cta-knowledge p {
    font-size: 1.3rem;
    line-height: 1.4rem;
    margin-bottom: 0rem;
    color: white;
}

.banner-cta-center h3 {
    font-size: 1.25rem;
    line-height: 1.875rem;
    color: #fff;
    margin-bottom: 0
}

.banner-cta-knowledge h3 {
    font-size: 2.25rem;
    line-height: 1.875rem;
    color: #fff;
    margin-bottom: 10px;
}

.banner-cta-center .btn.btn--negative.btn--white-on-transparent {
    width: 80%;
    margin-right: 0
}

@media (min-width:48rem) {
    .banner-cta-center .content {
        bottom: 3rem;
    }

    /*.banner-cta-knowledge .content {
        margin-top: 320px;
    }*/

    .banner-cta-knowledge {
        height: 630px
    }

    .banner-cta-center h3 {
        font-size: 2.5rem;
        line-height: 3.75rem;
        margin-bottom: .5rem;
    }

    .banner-cta-knowledge h3 {
        font-size: 3.5rem;
        line-height: 3.75rem;
        margin-bottom: 1.5rem;
    }

    .banner-cta-center p {
        font-size: 1.7rem;
        line-height: 3.75rem;
        margin-bottom: .5rem;
    }

    .banner-cta-knowledge p {
        font-size: 2.1rem;
        line-height: 2.5rem;
        margin-bottom: 0.9rem;
        color: white;
    }

    .banner-cta-center .btn.btn--negative.btn--white-on-transparent {
        font-size: 1.25rem;
        line-height: 1.875rem
    }

    .banner-cta-knowledge .btn.btn--negative.btn--white-on-transparent {
        font-size: 1.75rem;
        line-height: 1.875rem;
        margin-top: 25px;
    }
}

.benefits {
    background: #f1f1f1;
    padding: .5rem 0;
    text-align: center
}

    .benefits.white-bg {
        background: #fff
    }

@media (min-width:75rem) {
    .banner-cta-center {
        height: 500px
    }

    .benefits {
        padding-bottom: 1.5rem
    }
}

.benefits h3 {
    font-size: 1.25rem;
    line-height: 1.875rem;
    margin-bottom: 20px;
}

@media (min-width:34rem) {
    .banner-cta-center .btn.btn--negative.btn--white-on-transparent {
        width: auto
    }

    .benefits h3 {
        font-size: 2.5rem;
        line-height: 3.75rem;
        margin-bottom: 40px;
    }
}

.benefits .benefit span {
    background: #d21847;
    border-radius: 100%;
    display: block;
    height: 55px;
    margin: 0 auto .5rem;
    position: relative;
    width: 55px
}

    .benefits .benefit span i {
        font-size: 2.75rem;
        line-height: 2.75rem;
        color: #fff;
        left: .35rem;
        position: absolute;
        top: .7rem
    }

@media (min-width:62rem) {
    .benefits .benefit span {
        height: 110px;
        width: 110px
    }

        .benefits .benefit span i {
            font-size: 5.5rem;
            line-height: 5.5rem;
            left: .7rem;
            top: 1.6rem
        }
}

.benefits .benefit span.tools i {
    font-size: 2.375rem;
    line-height: 2.375rem;
    left: .5rem;
    top: .8rem
}

@media (min-width:62rem) {
    .benefits .benefit span.tools i {
        font-size: 4.75rem;
        line-height: 4.75rem;
        left: 0.9rem;
        top: 1rem;
    }

    .benefits .benefit span.service i {
        font-size: 4.75rem;
        line-height: 4.75rem;
        left: 1.38rem;
        top: 1rem;
    }

    .benefits .benefit span.satisfaction i {
        font-size: 4.75rem;
        line-height: 4.75rem;
        left: 0.7rem;
        top: 0.1rem;
    }
}

.benefits .benefit span.satisfaction i {
    top: .8rem
}

.benefits .benefit h4 {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    color: #d21847;
    margin: .2rem 0
}

.benefits .benefit p {
    margin: 0 auto 1.5rem;
    width: 80%;
    text-align: left;
}

@media (min-width:62rem) {
    .benefits .benefit span.satisfaction i {
        top: 1.2rem
    }

    .benefits .benefit h4 {
        font-size: 1.875rem;
        line-height: 2.8125rem
    }

    .benefits .benefit p {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.article-thumb img {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    display: block;
    width: 100%
}

.article-thumb .summary {
    background: #f1f1f1;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: .75rem
}

    .article-thumb .summary .type i {
        font-size: 3rem;
        line-height: 2.875rem;
        margin-left: -15px
    }

.article-thumb h6 {
    color: #000;
    font-family: houschka_headmedium, Helvetica, Arial, sans-serif;
    margin: 0 0 .3rem
}

.article-thumb footer a,
.article-thumb footer span,
.home-content__industry-list .location-list ul li a,
.related-resource .read-more-link {
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
}

.article-thumb p {
    font-size: .875rem;
    line-height: 1.3125rem
}

@media (min-width:62rem) {
    .article-thumb p {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.article-thumb footer:after,
.article-thumb footer:before {
    content: " ";
    display: table
}

.article-thumb footer span {
    font-size: .875rem;
    line-height: 1.3125rem;
    color: #d21847;
    float: left;
    padding-left: 1.7rem;
    position: relative
}

@media (min-width:62rem) {
    .article-thumb footer span {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.article-thumb footer span i {
    font-size: 1.625rem;
    line-height: 1.625rem;
    left: 0;
    position: absolute;
    top: 0
}

.article-thumb footer a {
    font-size: .875rem;
    line-height: 1.3125rem;
    float: right;
    padding-right: 30px;
    position: relative
}

@media (min-width:62rem) {
    .article-thumb footer a {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.article-thumb footer a i {
    font-size: 1.625rem;
    line-height: 1.625rem;
    position: absolute;
    right: 0;
    top: 2px
}

.related-resource {
    border-bottom: 1px solid rgba(35, 31, 32, .15);
    padding-bottom: 1.125rem
}

    .related-resource .resource-heading {
        margin: .875rem 0
    }

@media (min-width:48rem) {
    .related-resource {
        border-bottom: 0;
        padding-top: .875rem
    }

        .related-resource .resource-heading {
            font-size: 1.875rem;
            line-height: 2.0625rem
        }
}

.related-resource p {
    color: #888f92
}

.related-resource .read-more-link .icon {
    font-size: 3rem;
    line-height: 2.875rem;
    top: 1.25rem;
    position: relative;
    left: 4px;
    margin-top: -20px;
    margin-bottom: -10px
}

.promo__article {
    background-image: url(assets/images/backgrounds/bg-generic-smoke.png);
    background-repeat: no-repeat;
    margin: 1.75rem 0;
    padding: .75rem .75rem 1.875rem;
    position: relative;
    border-radius: 4px
}

@media (min-width:48rem) {
    .promo__article {
        margin: 2rem 0;
        padding: 1.375rem 1.375rem 2.8rem
    }
}

.promo__article .promo-heading {
    font-size: 1rem;
    line-height: 1.125rem;
    color: #fff;
    font-weight: 600;
    margin: 0 0 .25rem;
    width: 60%
}

@media (min-width:48rem) {
    .promo__article .promo-heading {
        width: 75%;
        font-size: 1.375rem;
        line-height: 1.5rem
    }
}

.promo__article p {
    font-size: .6875rem;
    line-height: .8125rem;
    color: #fff;
    width: 75%
}

@media (min-width:48rem) {
    .promo__article p {
        font-size: 1rem;
        line-height: 1.125rem
    }
}

.promo__article .promo-cta {
    font-size: .6875rem;
    background-color: #ed1c24;
    border-radius: 0 0 4px 4px;
    bottom: 0;
    color: #fff;
    display: block;
    left: 0;
    position: absolute;
    width: 100%;
    padding: .375rem 12px .625rem;
    line-height: 0
}

@media (min-width:48rem) {
    .promo__article .promo-cta {
        padding: .375rem 1.375rem .625rem;
        font-size: 1rem;
        line-height: 1.125rem
    }
}

.promo__article .promo-cta .icon {
    font-size: 3rem;
    line-height: 0;
    position: relative;
    margin-top: -20px;
    top: 1.2rem;
    left: .1875rem
}

.promo__article .promo-inline-image {
    height: 94%;
    position: absolute;
    bottom: 0;
    right: .75rem
}

.home-employer {
    background: url(assets/images/backgrounds/bg-generic-gradient.png) center no-repeat #c5191f;
    background-size: cover;
    padding: 1.5rem 0
}

    .home-employer:after,
    .home-employer:before {
        content: " ";
        display: table
    }

@media (min-width:48rem) {
    .promo__article .promo-inline-image {
        right: 1.25rem
    }

    .home-employer {
        background-image: url(assets/images/backgrounds/bg-home-employer.png);
        height: 300px
    }

        .home-employer .content {
            margin-top: 3rem;
            width: 65%
        }
}

.home-employer .content .btn {
    display: block !important
}

.home-employer h1 {
    font-size: 2.1875rem;
    line-height: 2.1875rem;
    color: #fff;
    margin-bottom: .5rem;
    margin-top: 0
}

@media (min-width:48rem) {
    .home-employer .content .btn {
        display: inline-block !important
    }

    .home-employer h1 {
        font-size: 2.5rem;
        line-height: 2.5rem
    }
}

@media (min-width:62rem) {
    .home-employer {
        height: 535px
    }

        .home-employer .content {
            width: 60%
        }

        .home-employer h1 {
            font-size: 3.75rem;
            line-height: 3.75rem;
            margin-bottom: 1rem
        }
}

@media (min-width:75rem) {
    .home-employer {
        height: 535px
    }

        .home-employer h1 {
            font-size: 4.375rem;
            line-height: 4.375rem;
            margin-bottom: 1.5rem
        }
}

.home-employer p {
    color: #fff;
    margin-bottom: 1.5rem
}

@media (min-width:62rem) {
    .home-employer p {
        font-size: 1.25rem;
        line-height: 1.25rem
    }
}

@media (min-width:75rem) {
    .home-employer p {
        font-size: 1.5rem;
        line-height: 1.5rem;
        margin-bottom: 2rem
    }
}

.home-employer .logo-adecco {
    display: none
}

@media (min-width:48rem) {
    .home-employer .logo-adecco {
        display: inline-block;
        margin-bottom: 1rem
    }

    .home-content__generic .content {
        margin-top: 3.5rem;
        width: 60%
    }
}

.home-content__generic {
    background: url(assets/images/backgrounds/bg-generic-gradient.png) center no-repeat #c5191f;
    background-size: cover;
    padding: 1.5rem 0
}

    .home-content__generic:after,
    .home-content__generic:before {
        content: " ";
        display: table
    }

@media (min-width:62rem) {
    .home-employer .logo-adecco {
        margin-bottom: 4rem
    }

    .home-content__generic .content {
        width: 50%
    }
}

.home-content__generic .content .btn {
    display: block !important
}

.home-content__generic h2 {
    font-size: 1.5625rem;
    line-height: 1.5625rem;
    color: #fff;
    margin-bottom: .5rem;
    margin-top: 0
}

@media (min-width:48rem) {
    .home-content__generic .content .btn {
        display: inline-block !important
    }

    .home-content__generic h2 {
        font-size: 2.5rem;
        line-height: 2.5rem
    }

    .home-content__generic--left-img .content {
        float: right;
        width: 50%
    }
}

@media (min-width:62rem) {
    .home-content__generic h2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
        margin-bottom: 2.5rem
    }

    .home-content__generic p {
        font-size: 1.25rem;
        line-height: 1.625rem
    }
}

.home-content__generic p {
    color: #fff;
    margin-bottom: 1.5rem
}

@media (min-width:75rem) {
    .home-content__generic p {
        font-size: 1.5rem;
        line-height: 1.875rem;
        margin-bottom: 2rem
    }
}

.home-content__generic.customer-services {
    background: url(assets/images/backgrounds/bg-services-sml.png) bottom no-repeat #c5191f;
    background-size: cover;
    padding-bottom: 0
}

@media (min-width:48rem) {
    .home-content__generic--left-img .content.left {
        float: left;
        width: 50%
    }

    .home-content__generic.customer-services {
        padding: 0
    }

        .home-content__generic.customer-services .content h2 {
            font-size: 1.875rem;
            line-height: 1.875rem
        }

        .home-content__generic.customer-services .content.img {
            text-align: left
        }

            .home-content__generic.customer-services .content.img img {
                max-width: 90%;
                margin-bottom: -5px;
            }
}

@media (min-width:62rem) {
    .home-content__generic.customer-services .content h2 {
        font-size: 2.5rem;
        line-height: 2.5rem
    }
}

.home-content__generic.customer-services .content.img {
    margin-top: 0
}

.home-content__generic.customer-services .btn {
    /*    display: none!important*/
}

@media (min-width:48rem) {
    .home-content__generic.customer-services {
        background: url(assets/images/backgrounds/bg-services-lg.png) center no-repeat;
        background-size: cover
    }

        .home-content__generic.customer-services .btn {
            display: inline-block !important
        }
}

.home-content__generic.testimonial {
    background: url(assets/images/backgrounds/bg-home-testimonial-sml.png) center center no-repeat #c5191f;
    background-size: cover
}

@media (min-width:48rem) {
    .home-content__generic.testimonial {
        background: url(assets/images/backgrounds/bg-home-testimonial-lg.png) center no-repeat;
        background-size: cover;
        padding-top: 1.5rem
    }
}

.home-content__industry-list {
    padding: 2.5rem 0
}

    .home-content__industry-list h2 {
        margin-top: 0;
        text-align: center
    }

    .home-content__industry-list .location-list {
        border: none;
        margin-left: 0
    }

        .home-content__industry-list .location-list ul li a {
            font-size: 1rem;
            line-height: 1.5rem;
            padding-left: 50px
        }

@media (min-width:75rem) {
    .home-content__industry-list .location-list ul li a {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.home-content__industry-list .location-list ul li a i {
    font-size: 3rem;
    line-height: 2.875rem;
    color: #b2b2b2;
    left: 0;
    position: absolute;
    padding-right: 5px;
    top: 30px;
    margin-top: -20px;
    margin-bottom: -10px
}

@media (min-width:34rem) {
    .home-content__industry-list .location-list ul li {
        padding: .75rem 0;
        margin: 0 1.5rem .5rem 0
    }
}

.related-articles {
    padding: 2rem 0
}

    .related-articles .row:first-of-type {
        border-bottom: 1px solid #dad9d9;
        margin-bottom: .5rem
    }

@-webkit-keyframes navRevealSmall {
    0% {
        display: none;
        max-height: 0;
        overflow: hidden
    }

    1% {
        display: block;
        max-height: 0;
        overflow: hidden
    }

    100% {
        display: block;
        max-height: 300px;
        overflow: hidden
    }
}

@keyframes navRevealSmall {
    0% {
        display: none;
        max-height: 0;
        overflow: hidden
    }

    1% {
        display: block;
        max-height: 0;
        overflow: hidden
    }

    100% {
        display: block;
        max-height: 300px;
        overflow: hidden
    }
}

@-webkit-keyframes navRevealLarge {
    0% {
        display: none;
        max-height: 0;
        overflow: hidden
    }

    1% {
        display: block;
        max-height: 0;
        overflow: hidden
    }

    100% {
        display: block;
        max-height: 6.25rem;
        overflow: hidden
    }
}

@keyframes navRevealLarge {
    0% {
        display: none;
        max-height: 0;
        overflow: hidden
    }

    1% {
        display: block;
        max-height: 0;
        overflow: hidden
    }

    100% {
        display: block;
        max-height: 6.25rem;
        overflow: hidden
    }
}

.nav-container {
    /*    overflow: hidden;*/
    /*    max-height: 0;*/
    background-color: #efefef;
    z-index: 3;
    position: absolute;
    top: 3.75rem;
    left: 0;
    width: 100%;
    text-align: left;
    padding: 0;
    display: none
}

/*@media (max-width:62rem) {
    .nav-container {
        background-color: #ed1c24;
        color: #fff;
        top: 0 !important;
        width: auto;
        position: initial;
        display: inline-block;
        float: right;
    }
}*/

@media (min-width:48rem) {
    .nav-container {
        background-color: #ed1c24;
        top: 6.2rem
    }
}

@media (min-width:62rem) {
    .nav-container {
        overflow: visible;
        z-index: 3;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: auto;
        display: block;
        top: -13px;
    }

    .nav-hidden-large .nav-container {
        overflow: hidden;
        max-height: 0;
        position: absolute;
        left: 0;
        width: 100%;
        top: 6.2rem
    }
}

.nav-active .nav-container {
    -webkit-animation: navRevealSmall .3s ease-out;
    animation: navRevealSmall .3s ease-out;
    /*    max-height: 50rem;*/
    display: block;
}


@media (min-width:48rem) {
    .nav-active .nav-container {
        -webkit-animation: navRevealLarge .3s ease-out;
        animation: navRevealLarge .3s ease-out;
        max-height: 6.25rem
    }

        .nav-active .nav-container .nav-container {
            padding: 4px 0
        }

    .nav-container .nav-search {
        display: none
    }
}

.nav-container li,
.nav-container ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.nav-container .nav-search {
    background-color: #b50b12;
    padding: .375rem 14px 1.25rem
}

    .nav-container .nav-search button[type=submit] {
        font-size: 1.25rem;
        line-height: 1.5rem;
        border: 0;
        border-radius: 4px;
        color: #ed1c24;
        padding: .5rem;
        text-align: center;
        width: 100%;
        background-color: #fff;
        margin-top: 1.25rem;
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
    }

        .nav-container .nav-search button[type=submit] .icon {
            font-size: 1.5rem;
            line-height: 0;
            position: relative;
            top: .3125rem;
            margin-left: 2px
        }

    .nav-container .nav-search .search-field {
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        margin-top: .75rem;
        padding: .25rem 0;
        position: relative
    }

        .nav-container .nav-search .search-field input {
            font-size: 1.5rem;
            line-height: 1.5rem;
            color: #fff;
            background-color: #8b0d0d;
            border: 0;
            -webkit-appearance: none;
            -moz-appearance: none;
            /*appearance: none;*/
            padding-right: 30px;
            width: 100%;
            text-indent: 10px;
        }

            .nav-container .nav-search .search-field input::-webkit-input-placeholder {
                color: rgba(255, 255, 255, .6)
            }

            .nav-container .nav-search .search-field input:-moz-placeholder {
                color: rgba(255, 255, 255, .6)
            }

            .nav-container .nav-search .search-field input::-moz-placeholder {
                color: rgba(255, 255, 255, .6)
            }

            .nav-container .nav-search .search-field input:-ms-input-placeholder {
                color: rgba(255, 255, 255, .6)
            }

    .nav-container .nav-search .remove-search-item {
        background: 0 0;
        border: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        /*appearance: none;*/
        position: absolute;
        right: 6px;
        top: 30%;
        top: calc(50% - 10px)
    }

        .nav-container .nav-search .remove-search-item .icon {
            color: #fff
        }

.nav-container nav {
    height: 100%
}

    .nav-container nav a {
        font-size: 1.25rem;
        line-height: 1.5rem;
        color: #000;
        width: 100%;
        display: block
    }

@media (min-width:48rem) {
    .nav-container nav a {
        font-size: 1rem;
        line-height: 0.125rem;
        color: #fff;
        padding: 5px 10px !important;
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
    }

        .nav-container nav a:focus,
        .nav-container nav a:hover {
            text-decoration: underline
        }
}

.nav-container nav li {
    padding: .3375rem 0px
}

@media (min-width:62rem) {
    .nav-container nav li {
        padding: 0 5px
    }

        .nav-container nav li:last-child,
        .nav-container nav li:last-child a {
            padding-right: 0;
            margin-right: 0
        }

    .nav-hidden-large .nav-container nav li {
        padding: .9375rem 14px
    }
}

.nav-container nav .nav-signup-section:after,
.nav-container nav .nav-signup-section:before {
    content: " ";
    display: table
}

.nav-container nav .nav-signup-section li {
    width: 50%;
    float: left;
    text-align: center
}

.nav-container nav .nav-signup-section {
    /*   margin-top: 10px;*/
    margin-top: 0px;
}

    .nav-container nav .nav-signup-section li:first-child {
        padding-right: 1px
    }

        .nav-container nav .nav-signup-section li:first-child a {
            border-right: 1px solid rgba(35, 31, 32, .2)
        }

.nav-container nav .nav-additional-section {
    top: 0;
    position: relative
}

.nav-container nav .nav-links-section {
    top: 30px;
    position: relative
}

    .nav-container nav .nav-links-section a.main-menu.active {
        border-bottom: 2px solid #fff;
        margin-bottom: -2px;
    }

    .nav-container nav .nav-links-section a.main-menu:hover {
        border-bottom: 2px solid #fff;
        text-decoration: none;
    }

    .nav-container nav .nav-additional-section li, .nav-container nav .nav-links-section li {
        margin-right: 10px;
    }

    .nav-container nav .nav-links-section a.main-menu {
        padding: 0px !important;
        cursor: pointer;
    }

        .nav-container nav .nav-links-section a.main-menu:focus {
            outline: none;
            text-decoration: none;
        }

        .nav-container nav .nav-links-section a.main-menu:hover {
            text-decoration: none;
            margin-bottom: -2px;
        }

    /*@media (max-width:991px) {
    .nav-container nav .nav-links-section {
        top: -2px;
    }
}*/

    .nav-container nav .nav-links-section .dropdown-menu {
        position: absolute;
        background-color: rgba(51, 51, 51, 0.95);
        /*
       border-radius: 8px 8px 8px 8px;
       -moz-border-radius: 8px 8px 8px 8px;
       -webkit-border-radius: 5px 5px 5px 5px;
      */
        /*
       -webkit-box-shadow: 0px -1px 14px -1px rgba(0, 0, 0, 0.45);
       -moz-box-shadow: 0px -1px 14px -1px rgba(0, 0, 0, 0.45);
       box-shadow: 0px -1px 14px -1px rgba(0, 0, 0, 0.45);
      */
        margin: 0;
        margin-top: 22px;
        display: none;
    }

        .nav-container nav .nav-links-section .dropdown-menu li {
            float: none;
            clear: both;
            display: block;
            padding: 0;
            margin-right: 0px !important;
        }

            /*.nav-container nav .nav-links-section .dropdown-menu.last-menu {
        margin-left: -77px;
    }*/

            .nav-container nav .nav-links-section .dropdown-menu li:first-child {
                padding: 0;
            }

            .nav-container nav .nav-links-section .dropdown-menu li a {
                color: #fff;
                line-height: 35px;
                padding: 0 10px !important;
                margin-right: 0px !important;
            }

                .nav-container nav .nav-links-section .dropdown-menu li a:hover {
                    text-decoration: none;
                    background-color: #ce181f !important;
                }

.btn-close-nav {
    margin-top: 21px;
    background-color: #b50b12;
    width: 100%;
    height: 50px;
    color: white;
    display: none;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

    .btn-close-nav:hover {
        background-color: #ed1c24;
    }

.nav-container nav .nav-links-section a.main-menu, .nav-container nav .nav-links-section a, .nav-container nav .nav-signup-section a, .nav-container nav .nav-additional-section a {
    line-height: 20px;
}

@media (max-width:767px) {
    .btn-close-nav {
        display: block;
    }

    .nav-container nav .nav-links-section .dropdown-menu li a:hover {
        text-decoration: none;
        background-color: #dddddd !important;
    }

    .nav-container nav .nav-links-section .dropdown-menu.last-menu {
        margin-left: 30px;
    }

    .nav-container nav .nav-links-section a.main-menu:focus {
        background-color: transparent !important;
    }

    .nav-container nav .nav-links-section li.bg-fff {
        background-color: white !important;
    }

    .nav-container nav .nav-links-section a.main-menu.focus::after {
        background-color: none !important;
        outline: none;
        text-decoration: none;
        content: "-" !important;
        position: absolute;
        right: 10px;
    }

    .nav-container nav .nav-links-section a:first-child.main-menu.focus::after {
        background-color: none !important;
        outline: none;
        text-decoration: none;
        content: "";
        position: absolute;
        right: 10px;
    }

    .nav-container nav .nav-links-section a.main-menu::after {
        content: "+" !important;
        position: absolute;
        right: 10px;
    }

    .nav-container nav .nav-links-section a.main-menu.no-child::after {
        content: "" !important;
        position: absolute;
        right: 10px;
    }

    .nav-container nav .nav-links-section a:first-child.main-menu::after {
        content: "";
        position: absolute;
        right: 10px;
    }

    .nav-container nav .nav-links-section a:first-child.main-menu.single::after {
        content: "" !important;
        position: absolute;
        right: 10px;
    }

    .nav-container nav .nav-links-section a.main-menu.active::after {
    }

    .nav-container nav .nav-links-section a.main-menu.active {
        background-color: #d8d8d8 !important;
        border-top: 1px solid #b4b4b4;
        border-left: 1px solid #b4b4b4;
        padding: 5px 10px;
        border-bottom: 1px solid #eeeeee;
        border-right: 1px solid #eeeeee;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }

    .nav-container nav .nav-links-section a.main-menu.focus {
        background-color: #fff !important;
        border-top: 1px solid #fff;
        border-left: 1px solid #fff;
        padding: 5px 10px;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }

    .nav-container nav .nav-links-section a.main-menu, .nav-container nav .nav-links-section a, .nav-container nav .nav-signup-section a, .nav-container nav .nav-additional-section a {
        background-color: #efefef !important;
        border-top: 1px solid #efefef;
        border-left: 1px solid #efefef;
        padding: 13px 10px !important;
        border-bottom: 1px solid #efefef;
        border-right: 1px solid #efefef;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }

    .nav-container nav .saved-jobs-link a.main-menu {
        background-color: #efefef !important;
        border-top: 1px solid #efefef;
        border-left: 1px solid #efefef;
        padding: 13px 10px !important;
    }

    .nav-container nav .nav-links-section .dropdown-menu {
        position: relative;
        background-color: #fefefe;
        border-radius: 8px 8px 8px 8px;
        -moz-border-radius: 8px 8px 8px 8px;
        -webkit-border-radius: 5px 5px 5px 5px;
        margin-left: -14px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        margin: 0;
        margin-top: 10px;
        margin-left: 30px;
        margin-right: 30px;
        display: none;
        margin-bottom: 30px;
    }

        .nav-container nav .nav-links-section .dropdown-menu li a {
            color: black;
            border-top: none;
            border-left: none;
            border-right: none;
            border-bottom: 2px solid #ed1c24;
            padding: 10px 10px !important;
            -webkit-border-radius: 0px;
            -moz-border-radius: 0px;
            border-radius: 0px;
            background-color: white !important;
        }

            .nav-container nav .nav-links-section .dropdown-menu li a:hover {
                background-color: #ccc;
            }

        .nav-container nav .nav-links-section .dropdown-menu li {
            border-bottom: 1px solid #fff;
            border-top: 1px solid #fff;
        }
}

@media (min-width:62rem) {
    .nav-container nav .nav-additional-section,
    .nav-container nav .nav-links-section {
        float: right;
        margin-top: -2.8rem
    }

    .nav-hidden-large .nav-container nav .nav-additional-section,
    .nav-hidden-large .nav-container nav .nav-links-section {
        float: none;
        margin-top: 0
    }
}

.nav-container nav .nav-additional-section li,
.nav-container nav .nav-links-section li {
    border-top: 1px solid rgba(35, 31, 32, .2)
}

    .nav-container nav .nav-additional-section li .icon,
    .nav-container nav .nav-links-section li .icon {
        top: 3px;
        position: relative;
        margin-right: 4px;
        color: #ed1c24
    }

@media (max-width:62rem) {
    .nav-container nav .nav-links-section {
        top: 0;
        position: relative;
    }
}

/*@media (max-width:48rem) {
    .nav-container nav .nav-links-section {
        display: none
    }
}*/

@media (min-width:48rem) {

    .nav-container nav .nav-signup-section {
        display: none
    }

    .nav-container nav .nav-additional-section li,
    .nav-container nav .nav-links-section li {
        border: 0;
        display: inline-block
    }

        .nav-container nav .nav-additional-section li.saved-jobs-link,
        .nav-container nav .nav-links-section li.saved-jobs-link {
            display: none
        }

            .nav-container nav .nav-additional-section li.saved-jobs-link + li,
            .nav-container nav .nav-additional-section li:first-child,
            .nav-container nav .nav-links-section li.saved-jobs-link + li,
            .nav-container nav .nav-links-section li:first-child {
                margin-left: 0;
                padding-left: 0
            }

    .nav-container nav .nav-additional-section {
        display: none
    }
}

.nav-container nav .nav-additional-section li a {
    color: #ed1c24
}

.nav-top-bar {
    display: none
}

@media (min-width:48rem) {
    .nav-top-bar {
        display: block;
        position: relative;
        margin: -1.125rem -20px 1rem;
        background-color: #000;
        height: 2.75rem;
        padding: .625rem 20px;
    }

    .topbar-info {
        opacity: 0.7;
    }

        .topbar-info:hover {
            opacity: 1;
        }

    .nav-top-bar a {
        font-size: .875rem;
        line-height: 1rem;
        color: #fff;
        /*opacity: 0.5;*/
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
    }

        .nav-top-bar a:focus,
        .nav-top-bar a:hover {
            color: #fff;
            opacity: 1
        }

    .nav-top-bar .primary-links {
        float: left
    }

        .nav-top-bar .primary-links a {
            margin-right: 12px;
        }

    .nav-top-bar .secondary-links a.lang {
        margin-right: 12px;
    }

    .nav-top-bar .secondary-links a.employer {
        text-decoration: underline !important;
        opacity: .9;
    }

    .nav-top-bar .secondary-links a.register {
        opacity: 1;
    }

    .nav-top-bar .secondary-links a.profile {
        opacity: 1;
        background-color: #1ba3e6;
        padding: 5px 10px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }

        .nav-top-bar .secondary-links a.profile:hover {
            opacity: 1;
            background-color: #74b3ee;
        }

    .nav-top-bar .secondary-links a.employer:focus,
    .nav-top-bar .secondary-links a.employer:hover {
        color: #fff;
        opacity: 1
    }

    .nav-top-bar .primary-links a.employer {
        text-decoration: underline !important;
        opacity: 1;
        /*            padding-bottom: 20px;*/
        opacity: 1
    }

        .nav-top-bar .primary-links a.employer:focus,
        .nav-top-bar .primary-links a.employer:hover {
            color: #fff;
            opacity: 1
        }

    .nav-top-bar .secondary-links {
        float: right;
        border-left: 1px solid rgba(255, 255, 255, .2)
    }

        .nav-top-bar .secondary-links a {
            margin-left: 24px;
            top: -2px;
            position: relative
        }

        .nav-top-bar .secondary-links .saved-jobs-link .icon {
            font-size: 1.5rem;
            line-height: 1.5rem;
            position: relative;
            top: 8px;
            /*        margin-right: 4px*/
        }
}

.header-container .company-logo {
    width: 140px;
    margin-top: -2px;
    /*width: 102px;
    height: 25px;*/
    /*margin: auto auto 10px*/
}

.header-container .search-button {
    display: none
}

@media (min-width:48rem) {
    .header-container .search-button {
        font-size: 1rem;
        line-height: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        /*appearance: none;*/
        background: 0 0;
        border: 0;
        border-bottom: 1px solid #ed1c24;
        color: #fff;
        display: inline-block;
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
        height: 1.875rem;
        margin-left: 24px;
        padding: 0;
        position: relative;
        top: -3px
    }

        .header-container .search-button:focus,
        .header-container .search-button:hover {
            border-bottom: 1px solid #fff
        }

        .header-container .search-button .button-text {
            position: relative;
            vertical-align: top;
            top: 20px
        }

        .header-container .search-button .icon {
            font-size: 44px;
            position: relative;
            top: 4px;
            right: -4px
        }
}

.header-container .nav-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    /*appearance: none;*/
    border: 0;
    background: 0 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 6px;
    height: 2.25rem;
    overflow: hidden
}

@media (min-width:62rem) {
    .header-container .search-button {
        margin-left: 72px
    }

    .header-container .nav-button {
        display: none
    }

    .nav-hidden-large .header-container .nav-button {
        display: block
    }
}

.header-container .nav-button .icon {
    font-size: 3.125rem;
    line-height: 0;
    color: #fff;
    margin-top: -5px;
    display: initial;
}

    .header-container .nav-button .icon.icon-hamburger:before {
        content: '\41'
    }

.header-container .nav-button .icon-close {
    display: none
}

.nav-active .header-container .nav-button .icon-close {
    display: initial;
}

.header-container .user-items button .icon-secondary,
.header-container .user-items button.active .icon,
.nav-active .header-container .nav-button .icon-hamburger {
    display: none
}

.header-container .user-items {
    position: absolute;
    right: 0;
    top: 2px
}

@media (min-width:48rem) {
    .header-container .nav-button {
        left: auto;
        right: 0
    }

        .header-container .nav-button .icon.icon-hamburger:before {
            content: '\42'
        }

    .header-container .user-items {
        position: absolute;
        right: 0;
        top: -3rem;
        padding-left: 20px
    }

        .header-container .user-items:before {
            content: ' ';
            width: 1px;
            background-color: #fff;
            height: 1.3125rem;
            position: absolute;
            left: 0;
            top: 0;
            opacity: .3
        }
}

.header-container .user-items button {
    -webkit-appearance: none;
    -moz-appearance: none;
    /*appearance: none;*/
    border: 0;
    background: 0 0;
    padding: 0
}

    .header-container .user-items button .icon {
        font-size: 2rem;
        line-height: 0;
        color: #fff
    }

    .header-container .user-items button.active .icon-secondary {
        display: block
    }

    .header-container .user-items button:last-of-type {
        padding-right: 10px
    }

.tip-style.nav-tip {
    border: 1px solid #dfd7d7;
    box-shadow: 0 8px 20px 0 rgba(35, 31, 32, .25)
}

    .tip-style.nav-tip p {
        font-size: .875rem;
        line-height: 1.25rem;
        margin: 0;
        color: #000
    }

    .tip-style.nav-tip .qtip-close {
        background: 0 0
    }

        .tip-style.nav-tip .qtip-close span {
            color: #fff;
            content: '';
            speak: none
        }

            .tip-style.nav-tip .qtip-close span:before {
                font-size: 1.5rem;
                line-height: 2.25rem;
                content: '\7a';
                font-family: adecco-font-1 !important;
                color: #ed1c24;
                display: block;
                position: absolute;
                left: 4px;
                top: 2px
            }

    .tip-style.nav-tip .notifications-tip__items li a,
    .tip-style.nav-tip .profile-tip__links li a {
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
    }

    .tip-style.nav-tip h6 {
        padding: .2rem 0 .5rem
    }

        .tip-style.nav-tip h6:before {
            display: none
        }

    .tip-style.nav-tip .profile-tip__header {
        margin-bottom: 0
    }

        .tip-style.nav-tip .profile-tip__header:after,
        .tip-style.nav-tip .profile-tip__header:before {
            content: " ";
            display: table
        }

        .tip-style.nav-tip .profile-tip__header img {
            border-radius: 50%;
            height: 3.75rem;
            width: 3.75rem;
            float: left
        }

        .tip-style.nav-tip .profile-tip__header .profile-information {
            float: left;
            padding: .875rem 26px .875rem 14px
        }

            .tip-style.nav-tip .profile-tip__header .profile-information span {
                font-size: .625rem;
                line-height: .75rem;
                color: #737373;
                display: block
            }

            .tip-style.nav-tip .profile-tip__header .profile-information .profile-name {
                font-size: 1.25rem;
                line-height: 1.25rem;
                color: #ed1c24;
                font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
            }

    .tip-style.nav-tip .profile-tip__links {
        list-style: none;
        padding: 0;
        margin: 0
    }

        .tip-style.nav-tip .profile-tip__links li {
            margin: 0;
            padding: 0;
            border-bottom: 1px solid rgba(35, 31, 32, .1)
        }

            .tip-style.nav-tip .profile-tip__links li:last-child {
                border-bottom: 0
            }

            .tip-style.nav-tip .profile-tip__links li a {
                font-size: 1rem;
                line-height: 1.125rem;
                color: #000;
                display: block;
                padding: .325rem 8px .625rem
            }

                .tip-style.nav-tip .profile-tip__links li a .icon {
                    font-size: 1.5rem;
                    line-height: 0;
                    margin-right: 4px;
                    opacity: .3;
                    position: relative;
                    top: .375rem
                }

                .tip-style.nav-tip .profile-tip__links li a:hover {
                    background-color: #fafafa
                }

    .tip-style.nav-tip .notifications-tip__items {
        margin: 0;
        padding: 0;
        list-style: none
    }

        .tip-style.nav-tip .notifications-tip__items li {
            font-size: 1rem;
            line-height: 1.125rem;
            border-bottom: 1px solid rgba(35, 31, 32, .1);
            color: #000;
            margin: 0;
            padding: .625rem 0;
        }

            .tip-style.nav-tip .notifications-tip__items li:last-child {
                border-bottom: 0;
            }

.typeahead-container {
    display: none
}

.typeahead-active .typeahead-container {
    background-color: #ed1c24;
    color: #fff;
    display: block;
    height: auto;
    left: 0;
    margin-top: .375rem;
    padding: 1.125rem 14px;
    position: absolute;
    right: 0;
    z-index: 1
}

    .typeahead-active .typeahead-container .recent-searches-heading {
        font-size: .875rem;
        line-height: 1rem;
        color: #fff;
        font-family: houschka_headmedium, Helvetica, Arial, sans-serif;
        margin: 0 0 .75rem;
        opacity: .6;
        padding: 0
    }

    .typeahead-active .typeahead-container .recent-searches {
        list-style: none;
        margin: 0;
        padding: 0
    }

        .typeahead-active .typeahead-container .recent-searches li {
            margin-bottom: 0
        }

            .typeahead-active .typeahead-container .recent-searches li:last-child {
                margin: 0
            }

@media (min-width:48rem) {
    .typeahead-active .typeahead-container {
        padding-left: 0
    }

        .typeahead-active .typeahead-container .recent-searches li {
            padding: 0
        }
}

.typeahead-active .typeahead-container .recent-search-term {
    color: #fff;
    display: block;
    padding: 0 0 .625rem
}

.recent-applications .recent-applications__top:after,
.recent-applications .recent-applications__top:before,
.saved-jobs-cpt .saved-jobs-cpt__top:after,
.saved-jobs-cpt .saved-jobs-cpt__top:before {
    content: " ";
    display: table
}

.typeahead-active .search-bar .typeahead-container {
    background: 0 0;
    position: relative;
    float: left;
    width: 100%
}

.saved-jobs-cpt .saved-jobs-cpt__top {
    float: none;
    margin-bottom: 1rem
}

    .saved-jobs-cpt .saved-jobs-cpt__top h6 {
        color: #000;
        float: left;
        margin: 0
    }

    .saved-jobs-cpt .saved-jobs-cpt__top a {
        float: right;
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
    }

.recent-applications .recent-applications__top {
    float: none;
    margin-bottom: 1rem
}

    .recent-applications .recent-applications__top h6 {
        color: #000;
        float: left;
        margin: 0
    }

    .recent-applications .recent-applications__top a {
        float: right;
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif
    }

.resource-landing {
    overflow-x: hidden
}

    .resource-landing .resource-landing__top,
    .resource-landing .resource-landing__top-mobile {
        overflow: hidden;
        position: relative;
        padding-bottom: 30px;
        padding-top: 20px;
        text-align: center
    }

        .resource-landing .resource-landing__top .h2,
        .resource-landing .resource-landing__top h2,
        .resource-landing .resource-landing__top-mobile .h2,
        .resource-landing .resource-landing__top-mobile h2 {
            position: relative;
            cursor: pointer;
            margin-bottom: .2rem
        }

    .resource-landing .resource-landing__top-mobile {
        background-color: #f1f1f1;
        margin-top: 0;
        padding-top: 1.5rem
    }

@media (min-width:48rem) {
    .resource-landing .resource-landing__top .h2,
    .resource-landing .resource-landing__top h2,
    .resource-landing .resource-landing__top-mobile .h2,
    .resource-landing .resource-landing__top-mobile h2 {
        cursor: auto;
        margin-bottom: .5rem
    }

    .resource-landing .resource-landing__top-mobile {
        display: none
    }
}

.resource-landing .resource-landing__top-mobile .h2 {
    margin: 0
}

.resource-landing .mobile-image-carousel {
    display: block
}

.resource-landing .desktop-image-carousel {
    display: none
}

@media (min-width:34rem) {
    .resource-landing .mobile-image-carousel {
        display: none
    }

    .resource-landing .desktop-image-carousel {
        display: block
    }
}

.resource-landing .search-resources {
    padding: 20px 0
}

    .resource-landing .search-resources .browse-holder {
        position: relative;
        width: 100%;
        margin-left: 15px
    }

        .resource-landing .search-resources .browse-holder li a {
            color: #b2b2b2
        }

        .resource-landing .search-resources .browse-holder li.active a {
            color: #ed1c24
        }

@media (max-width:47.9rem) {
    .resource-landing .resource-landing__top {
        display: none
    }

    .resource-landing .search-resources {
        background-color: #f1f1f1;
        height: 136px
    }

        .resource-landing .search-resources .search-holder {
            position: absolute;
            right: initial;
            margin-bottom: 0;
            left: 0;
            width: 100%
        }

            .resource-landing .search-resources .search-holder input {
                background-color: #fff;
                height: 50px;
                padding: 20px;
                min-width: 100%;
                border: 0
            }

            .resource-landing .search-resources .search-holder i {
                font-size: 2rem;
                margin-left: -40px;
                top: 12px;
                right: 0
            }

        .resource-landing .search-resources .browse-holder {
            position: absolute;
            top: 65px;
            left: 0;
            background-color: #fff;
            width: 100%;
            margin-left: 0;
            padding-top: 17px;
            padding-bottom: 17px;
            display: block
        }
}

.resource-landing .mini-card {
    cursor: auto;
    height: 250px
}

    .resource-landing .mini-card:hover a i {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .resource-landing .mini-card .card-sections {
        position: relative;
        height: 100%
    }

    .resource-landing .mini-card .card-top {
        vertical-align: top;
        padding-top: 30px;
        cursor: pointer
    }

        .resource-landing .mini-card .card-top:hover a i {
            -webkit-transform: scale(1.1);
            transform: scale(1.1)
        }

    .resource-landing .mini-card .resource-list-container {
        position: absolute;
        width: 100%;
        bottom: 0;
        color: red;
        font-size: .75rem;
        line-height: 1rem;
        text-align: left;
        margin-right: 20px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 15px;
        vertical-align: bottom
    }

        .resource-landing .mini-card .resource-list-container .resource-list {
            padding-top: .75rem;
            border-top: 1px solid #b2b2b2;
            margin-right: 20px;
            margin-left: 20px
        }

    .resource-landing .mini-card .resource-type {
        display: inline-block;
        color: #ed1c24;
        padding-right: 10px
    }

.resource-landing .browse-jobs__bottom {
    display: block
}

.resource-landing .resource-stat-slug {
    background-color: #f1f1f1;
    margin: 0
}

    .resource-landing .resource-stat-slug .slug {
        padding-top: 20px;
        padding-bottom: 40px
    }

@media (max-width:47.9rem) {
    .resource-landing .resource-stat-slug .container {
        padding-left: 0;
        padding-right: 0
    }

    .resource-landing .resource-stat-slug .slug {
        padding-top: 0;
        padding-bottom: 10px;
        margin-top: -10px
    }

        .resource-landing .resource-stat-slug .slug div:first-of-type {
            z-index: 2
        }
}

.resource-landing .resource-stat-outer.container {
    max-width: none;
    padding: 0;
    overflow-x: auto
}

@media (min-width:62rem) {
    .resource-landing .resource-stat-outer.container {
        overflow: hidden
    }
}

.resource-landing .resource-stat-outer.container .resource-stat-holder {
    text-align: center;
    padding-bottom: 30px;
    background-color: #f1f1f1;
    min-width: 855px;
    width: 100vw;
    position: relative
}

    .resource-landing .resource-stat-outer.container .resource-stat-holder .resource-stat {
        background-color: #fff;
        border: 1px solid #dad9d9;
        border-radius: .3em;
        display: inline-block;
        padding: 20px;
        text-align: center;
        width: 147px;
        height: 122px;
        margin-right: 20px
    }

        .resource-landing .resource-stat-outer.container .resource-stat-holder .resource-stat .stat {
            color: #ed1c24;
            font-size: 2.25rem;
            line-height: 2.25rem;
            margin-bottom: 1rem
        }

        .resource-landing .resource-stat-outer.container .resource-stat-holder .resource-stat .description {
            color: #4f4e4e;
            margin-bottom: 0
        }

@media (max-width:47.9rem) {
    .resource-landing .resource-stat-outer.container .resource-stat-holder {
        max-width: 600px;
        min-width: initial;
        padding-left: 10px;
        background-color: #fff;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center
    }

        .resource-landing .resource-stat-outer.container .resource-stat-holder .resource-stat-inner {
            width: 450px;
            display: inline-block
        }

        .resource-landing .resource-stat-outer.container .resource-stat-holder .resource-stat {
            width: 76px;
            height: 62px;
            margin-right: 10px;
            padding: 10px
        }

            .resource-landing .resource-stat-outer.container .resource-stat-holder .resource-stat .stat {
                font-size: 1.125rem;
                line-height: 1.125rem;
                margin-bottom: .5rem
            }

            .resource-landing .resource-stat-outer.container .resource-stat-holder .resource-stat .description {
                font-size: .5rem;
                line-height: .75rem
            }
}

.resource-landing .browse-topics__bottom {
    overflow-x: hidden
}

    .resource-landing .browse-topics__bottom .container {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%
    }

    .resource-landing .browse-topics__bottom .topic-strip {
        text-align: center;
        padding-bottom: 5rem;
        padding-top: 2.5rem
    }

        .resource-landing .browse-topics__bottom .topic-strip:nth-child(even) {
            background-color: #fff
        }

        .resource-carousel,
        .resource-landing .browse-topics__bottom .topic-strip:nth-child(odd) {
            background-color: #f1f1f1
        }

        .resource-landing .browse-topics__bottom .topic-strip .slug {
            padding-top: 10px
        }

            .resource-landing .browse-topics__bottom .topic-strip .slug h5 {
                margin-bottom: 0
            }

@media (max-width:47.9rem) {
    .resource-landing .browse-topics__bottom .topic-strip .listings {
        margin-left: 20px;
        margin-right: 20px
    }

    .resource-landing .browse-topics__bottom .topic-strip .btn {
        width: 100%;
        display: block
    }
}

.resource-carousel {
    position: relative;
    display: block
}

    .resource-carousel .owl-controls {
        text-align: center;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        top: -4vh
    }

    .resource-carousel .owl-nav {
        display: none
    }

@media (min-width:48rem) {
    .resource-carousel .owl-nav {
        display: block;
        position: absolute;
        width: 100%;
        top: 31%
    }

        .resource-carousel .owl-nav > div {
            position: absolute
        }

            .resource-carousel .owl-nav > div:before {
                -webkit-transition: all .2s ease;
                transition: all .2s ease;
                font-family: FontAwesome;
                color: #ed1c24;
                font-size: 1.875rem;
                line-height: 2.8125rem;
                display: block;
                width: 30px;
                height: 30px
            }

            .resource-carousel .owl-nav > div:hover:before {
                color: #ed1c24
            }

            .resource-carousel .owl-nav > div.off {
                cursor: auto !important
            }

                .resource-carousel .owl-nav > div.off:before {
                    color: #f8aaad
                }

        .resource-carousel .owl-nav .owl-prev {
            left: -50px
        }

            .resource-carousel .owl-nav .owl-prev:before {
                content: '\f053'
            }

        .resource-carousel .owl-nav .owl-next {
            right: -50px
        }

            .resource-carousel .owl-nav .owl-next:before {
                content: '\f054'
            }
}

.resource-carousel .owl-dots .owl-dot {
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .resource-carousel .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px 7px;
        background-image: url(assets/images/resource-carousel/next-pip.png);
        background-size: cover;
        display: block;
        -webkit-backface-visibility: visible;
        -webkit-transition: opacity .2s ease;
        transition: opacity .2s ease
    }

    .resource-carousel .owl-dots .owl-dot.active span {
        background-image: url(assets/images/resource-carousel/current-pip.png);
        background-size: cover
    }

.resource-carousel .resource-carousel-card {
    color: #fff;
    width: 100%;
    height: 30vw;
    background-size: cover
}

    .resource-carousel .resource-carousel-card#card-1 {
        background-image: url(assets/images/resource-carousel/resources_default.jpg)
    }

@media (max-width:47.9rem) {
    .resource-carousel .resource-carousel-card {
        min-height: 290px
    }

    .resource-carousel .owl-controls {
        top: -7vh
    }
}

.notification {
    background: #ed1c24;
    color: #fff;
    border-radius: 6px;
    padding: 1.25rem 2rem;
    position: relative
}

    .notification:after,
    .notification:before {
        content: " ";
        display: table
    }

    .notification h6 {
        font-size: 1.25rem;
        line-height: 1.625rem;
        color: #fff;
        margin: 0
    }

    .notification p {
        margin-bottom: 0
    }

    .notification .close {
        background: #fff;
        border-radius: 100%;
        display: block;
        height: 30px;
        position: absolute;
        right: -15px;
        top: -15px;
        width: 30px
    }

        .notification .close .icon-close {
            font-size: 1.5rem;
            line-height: 1.5rem;
            display: block;
            left: .2rem;
            position: absolute;
            top: .5rem
        }

    .notification.notification--confirmation .icon-done {
        font-size: 2.75rem;
        line-height: 2.75rem;
        float: left;
        left: -1rem;
        position: relative;
        top: .5rem
    }

    .notification.notification--cta-right h6,
    .notification.notification--cta-right p {
        margin-bottom: 1rem
    }

    .notification.notification--cta-right .btn {
        display: block;
        height: 35px;
        margin-top: .5rem;
        padding: .5rem 1rem
    }

@media (min-width:34rem) {
    .notification.notification--cta-right .text {
        max-width: 70%
    }

    .notification.notification--cta-right h6,
    .notification.notification--cta-right p {
        margin-bottom: 0
    }

    .notification.notification--cta-right .btn {
        bottom: 0;
        margin: auto;
        position: absolute;
        right: 1.5rem;
        top: 0
    }
}

.notification.notification--cta-right .icon-add {
    position: relative;
    right: -3px;
    top: 10px;
    font-size: 1.75rem;
    line-height: 1.75rem;
    margin-top: -10px
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-box {
    background: white;
    border: 2px dashed red;
    border-radius: 6px;
    box-shadow: 5px 5px 2px 0 rgba(0,0,0,0.4);
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-content {
    color: #555;
    padding: 8px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 12px;
    margin-left: -10px;
    top: 0;
    width: 20px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -14px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: red;
}

.tooltipster-sidetip .tooltipster-arrow-border {
    border: 12px solid transparent;
    left: 0;
    top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #ffffff;
    left: 0px;
    top: 3px;
}

.tooltipster-sidetip .tooltipster-arrow-background {
    border: 12px solid transparent;
}



.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -13px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #ff0202;
    border: 2px dashed red;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #ffffff;
    left: 3px;
    top: 0px;
}






.home__content .signin-wide {
    text-align: left;
    border: 1px solid red;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: #ed1c24;
    border-radius: .3rem;
    color: #fff
}

    .home__content .signin-wide .signin-description {
        display: inline-block;
        margin: 20px 20px 0
    }

@media (min-width:48rem) {
    .home__content .signin-wide .signin-description {
        margin: 20px
    }
}

.home__content .signin-wide .signin-description .h6 {
    color: #fff;
    margin: 0;
    font-size: 20px;
}

.home__content .signin-wide .signin-description p {
    margin-bottom: 0
}

.home__content .signin-wide .signin-cta {
    margin: 20px
}

    .home__content .signin-wide .signin-cta:after,
    .home__content .signin-wide .signin-cta:before {
        content: " ";
        display: table
    }

    .home__content .signin-wide .signin-cta .btn {
        margin-bottom: .5rem;
        margin-top: 0;
        margin-right: 0;
        text-align: left;
        width: 100%
    }

        .home__content .signin-wide .signin-cta .btn:first-child {
            margin-left: 0
        }

        .home__content .signin-wide .signin-cta .btn:last-child {
            margin-bottom: 0
        }

@media (min-width:48rem) {
    .home__content .signin-wide .signin-cta {
        display: inline-block;
        float: right
    }

        .home__content .signin-wide .signin-cta .btn:first-child {
            margin-left: .8rem
        }

        .home__content .signin-wide .signin-cta .btn {
            margin-bottom: 0;
            text-align: center;
            width: auto
        }
}

.home__content .signin-wide .signin-cta .btn i {
    float: right
}

    .home__content .signin-wide .signin-cta .btn i.icon-continue {
        margin-top: -24px;
        margin-bottom: -10px;
        top: 20px;
        position: relative;
        display: inline-block;
        font-size: 3rem
    }

    .home__content .signin-wide .signin-cta .btn i.icon-lock {
        margin-top: -10px;
        margin-bottom: -10px;
        top: 12px;
        position: relative;
        display: inline-block;
        font-size: 1.8rem
    }

.card--small img {
    -webkit-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
    /* width: 100%; */
}

.card--small .card__block i {
    color: #ed1c24;
    margin-left: 3px;
}

.clear {
    clear: both;
}

.head-slider {
    float: none;
    margin-bottom: 1rem;
}

    .head-slider h6 {
        color: #000;
        float: left;
        margin: 0;
    }

    .head-slider a {
        float: right;
        font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
    }

.bg-gray {
    background: #f1f1f1;
    padding: 1.5rem 0;
    text-align: center
}

.bg-red {
    background: #ed1c24;
    padding: 0.2rem 0;
    text-align: center
}

.border-gray {
    -webkit-box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, 0.84);
    -moz-box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, 0.84);
    box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, 0.84);
}

a.link {
    color: #000 !important;
}

    a.link:hover {
        color: #ed1c24 !important;
    }


.card__details {
    padding-bottom: 2px;
}


.employer {
    display: inline-block;
}

a.save-job {
    display: inline-block;
}

@media (max-width:992px) {

    .employer {
        display: none;
    }

    a.save-job {
        display: none;
    }
}

.social-sign-up {
    display: none;
}

.or {
    display: none;
}

.nav-top-bar .secondary-links .dropdown-lang {
    position: absolute;
    list-style: none;
    margin: 0px;
    padding: 0px;
    z-index: 100000;
    text-align: center;
    margin-left: 185px;
    margin-top: 12px;
    display: none;
    transition: width 2s linear 1s;
}

    .nav-top-bar .secondary-links .dropdown-lang li {
        text-align: center;
        padding: 0px;
        margin: 0px;
    }

        .nav-top-bar .secondary-links .dropdown-lang li a {
            text-align: center;
            display: inline-block;
            background-color: #555555;
            padding: 0px 20px !important;
            line-height: 35px;
            font-size: 16px;
            width: 100%;
            opacity: 1;
            border-bottom: 1px solid #000;
            margin: 0px;
        }

            .nav-top-bar .secondary-links .dropdown-lang li a:hover {
                text-align: center;
                background-color: #999;
            }

.lang:hover .nav-top-bar .secondary-links .dropdown-lang {
    display: block;
}

.banner {
    /*background-image: url(assets/images/backgrounds/bg-generic-smoke.png);*/
    padding: 10px 0;
}

.why-work-adecco {
    padding: 10px 0 30px 0;
}

.faq p {
    font-size: 30px;
}

.faq h2 {
    font-size: 45px;
    margin-top: 20px;
    display: inline-block;
}

.faq .btn--red {
    margin-top: 30px;
}

.copyright {
    background-color: #1b2022;
    color: #bbb;
    display: inline-block;
    text-align: center;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    padding: 5px 0;
}

.social-widget {
    text-align: center;
}

.social-widget-wrap.social-widget-outlined i {
    background: transparent;
    border: 1px solid;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.social-widget-wrap a {
    margin: 0 0 0 0;
}

    .social-widget-wrap a i {
        font-size: 20px;
        width: 35px;
        height: 35px;
        display: inline-block;
        text-align: center;
        line-height: 30px;
    }

.nl {
    display: inline-block;
    line-height: 20px;
}

.footer-map ul {
    margin-top: 1em;
}

.footer-map p {
    text-align: left;
}

@media (min-width:62rem) {


    .site-footer .footer__bottom .container > div.footer-linkset4 {
        position: relative;
        top: -8px;
        text-align: left;
        width: auto
    }

    .site-footer .footer__top .container > div.footer-social p {
        margin-bottom: 1rem;
        text-align: left;
        font-size: 15px;
        border-top: none;
    }

    .footer-map li {
        text-align: left;
    }
}

@media (max-width:100rem) {

    .site-footer .footer__bottom .container > div.footer-linkset4 {
        position: relative;
        /*    top: 10px;*/
        text-align: center;
        /*    width:100%;*/
    }
}






@media (min-width: 75rem) {
    .site-footer .footer__bottom .container > div.footer-login {
        float: right;
        margin-left: 0px;
        text-align: center;
        width: auto;
        margin-top: 0px;
        padding-top: 0px;
        border-top: none;
    }


    .site-footer .footer__bottom .container > div.footer-linkset4 {
        position: relative;
        /* top: 10px; */
        text-align: center;
        /* width: 100%; */
    }
}

.bg-default {
    background-color: #f1f1f1;
}

.header-page {
    background-color: white;
    text-align: center;
    /* border-bottom: 1px solid #ccc; */
}

    .header-page h1 {
        margin-bottom: 0;
        font-size: 3rem;
        line-height: 3rem;
    }


    .header-page p {
        font-size: 1.25rem;
        line-height: 1.875rem;
    }



.box-mini-card {
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    background: #fff;
    border: 1px solid #dfd7d7;
    border-radius: .4rem;
    margin: .75rem 0 0;
}

    .box-mini-card .profile-card-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        margin-top: 1rem;
        position: relative;
        margin-left: 1rem
    }


        .box-mini-card .profile-card-title i {
            color: #ed1c24;
            font-size: 1.5rem;
            display: inline-block;
            position: relative;
            padding-left: 12px;
            padding-right: 12px;
        }

    .box-mini-card .profile-card-cta {
        text-align: center;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        padding: 0 .75rem 25px;
    }

        .box-mini-card .profile-card-cta a {
            width: 100%;
            padding: 10px;
            display: inline-block;
            border: 1px solid #ccc;
            border-radius: .4rem;
            margin-bottom: 15px;
        }

            .box-mini-card .profile-card-cta a:hover {
                background-color: #f2f2f2;
                -webkit-transition: all .4s;
            }

.box-card-columns {
    /*
      -webkit-column-count: 2;
      -moz-column-count: 2;
      column-count: 2;
      -webkit-column-gap: 1rem;
      -moz-column-gap: 1rem;
      column-gap: 1rem
  */
}

    .box-card-columns .box-card {
        /*
      -webkit-margin-before: 0;
    -webkit-margin-after: 0;
      display: inline-block;
      width: 100%
  */
    }

@media (max-width: 48rem) {

    .box-card-columns {
        /*
      -webkit-column-count: 1;
      -moz-column-count: 1;
      column-count: 1;
      -webkit-column-gap: 1rem;
      -moz-column-gap: 1rem;
      column-gap: 1rem
  */
    }
}

.underline {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}

.dev-mode h2 {
    display: inline-block;
    line-height: 4rem;
    text-align: center;
    width: 100%;
}

.linkedin {
    display: inline-block;
    margin-top: 2px;
}

@media (max-width:1200px) {

    .linkedin {
        display: none;
    }
}





.side-list {
    background: #fff;
    border: 1px solid #dfd7d7;
    border-radius: .4rem;
    margin: .75rem .75rem 0 0;
    padding: 2rem;
}

    .side-list i {
        margin-right: 10px;
    }

    .side-list h5 {
        font-size: 26px;
        margin: 0.3rem 0 0.5rem 0;
    }

    .side-list:after,
    .side-list:before {
        content: " ";
        display: table
    }

    .side-list ul {
        list-style: none;
        margin: 0
    }

        .side-list ul li {
            margin: 0;
            padding: .75rem 0;
            position: relative;
            border-bottom: 1px solid #dad9d9
        }

            .side-list ul li a {
                font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
                font-size: 1.25rem;
                line-height: 1.5rem;
                display: block;
                padding-right: 40px;
                color: #ed1c24
            }

                .side-list ul li a:hover {
                    color: #de1219
                }

                .side-list ul li a:after {
                    content: '\55';
                    font-family: adecco-font-1;
                    font-size: 3rem;
                    line-height: 2.875rem;
                    float: right;
                    position: absolute;
                    right: 0;
                    top: 10px;
                    height: 20px
                }

.box-white {
    background: #fff;
    border: 1px solid #dfd7d7;
    border-radius: .4rem;
    margin: .75rem .75rem .75rem 0;
    padding: 2rem;
    display: inline-block;
    width: 100%;
}

.edit.box-white {
    background: #fff;
    border: 1px solid #dfd7d7;
    border-radius: .4rem;
    margin: .75rem .75rem .75rem 0;
    padding: 2rem;
    display: inline-block;
    width: 100%;
    padding-top: 0px;
}

/*
  .box-white{
   background: #fff;
      border: 1px solid #dfd7d7;
      border-radius: .4rem;
      margin: .75rem .75rem  .75rem  0;
      padding: 2rem;
  
  }
  */
.box-white h3 {
    text-align: center;
    width: 100%;
    margin-top: 0px;
}

.box-white h4 {
    text-align: left;
    width: 100%;
    margin-top: 0px;
}

.box-white .big-img {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    display: inline-block;
}

.box-white img {
    display: inline-block;
    max-width: 100%;
}


.three-icon {
    padding: .5rem 0;
    text-align: center
}

    .three-icon .white-bg {
        background: #fff
    }

@media (min-width:75rem) {
    .banner-cta-center {
        height: 500px
    }

    .three-icon {
        padding-bottom: 1.5rem
    }
}

.three-icon h3 {
    font-size: 1.2rem;
    line-height: 1.8125rem;
}

@media (min-width:34rem) {

    .three-icon h3 {
        font-size: 1.2rem;
        line-height: 1.8125rem;
    }
}

.three-icon .item span {
    background: #d21847;
    border-radius: 100%;
    display: block;
    height: 55px;
    margin: 0 auto .5rem;
    position: relative;
    width: 55px
}

    .three-icon .item span i {
        font-size: 2.75rem;
        line-height: 2.75rem;
        color: #fff;
        left: .35rem;
        position: absolute;
        top: .7rem
    }

@media (min-width:62rem) {
    .three-icon .item span {
        height: 110px;
        width: 110px
    }

        .three-icon .item span i {
            font-size: 5.5rem;
            line-height: 5.5rem;
            left: .7rem;
            top: 1.6rem
        }
}

.three-icon .item span.tools i {
    font-size: 2.375rem;
    line-height: 2.375rem;
    left: .5rem;
    top: .8rem
}

@media (min-width:62rem) {
    .three-icon .item span.tools i {
        font-size: 3.75rem;
        line-height: 4.75rem;
        left: 1.9rem;
        top: 1rem;
    }

    .three-icon .item span.service i {
        font-size: 3.75rem;
        line-height: 5.1rem;
        left: 1.9rem;
        top: 1rem;
    }

    .three-icon .item span.satisfaction i {
        font-size: 3.75rem;
        line-height: 4.9rem;
        left: 1.55rem;
        top: 1rem;
    }
}

.three-icon .item span.satisfaction i {
    top: 0.9rem;
}

.three-icon .item h4 {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    color: #d21847;
    margin: .2rem 0
}

.three-icon .item p {
    margin: 0 auto 1.5rem;
    width: 80%;
    text-align: left;
}

@media (min-width:62rem) {
    .three-icon .item span.satisfaction i {
        top: 0.9rem;
    }

    .three-icon .item h4 {
        font-size: 1.2rem;
        line-height: 1.8125rem;
    }

    .three-icon .item p {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}


.inline-block {
    display: inline-block;
}

.scroll-top {
    position: fixed;
    bottom: 85pt;
    right: 25px;
    z-index: 9999999;
    display: inline-block;
}

    .scroll-top i {
        color: #ed1c24;
        font-size: 70px;
        cursor: pointer;
        display: inline-block;
        opacity: 0.8;
    }

        .scroll-top i:hover {
            opacity: 1;
        }

.bg-white {
    background-color: white;
}

.bg-f1 {
    background-color: #f1f1f1
}

.padding-bottom-zero {
    padding-bottom: 0px !important;
}

.btn--search {
    color: white;
    border: 1px solid #ed1c24;
    background-color: transparent;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    background-color: #ed1c24;
    font-size: 15px;
    line-height: 30px;
    padding: 0 14px;
}








/*////////*/






.job-browse {
    padding-bottom: 2rem
}

@media (min-width:75rem) {
    .job-browse {
        padding-bottom: 3.5rem
    }
}

.job-browse ul {
    list-style: none
}

.job-browse .job-browse__tabs {
    text-align: center;
    margin: 1rem 0;
    padding: 0
}

    .job-browse .job-browse__tabs li {
        display: inline-block;
        padding: 5px 0;
        margin: 0;
        cursor: pointer
    }

        .job-browse .job-browse__tabs li a {
            border-right: 1px solid #333;
            color: #333;
            outline: 0;
            padding: 0 20px
        }

            .job-browse .job-browse__tabs li a.active,
            .job-browse .job-browse__tabs li a.active:hover {
                color: #ed1c24;
                font-weight: 900;
            }

            .job-browse .job-browse__tabs li a:hover {
                color: #c6c4c4
            }

        .job-browse .job-browse__tabs li:first-of-type a {
            padding-left: 0
        }

        .job-browse .job-browse__tabs li:last-of-type a {
            border: none;
            padding-right: 0
        }

.job-browse .job-browse__tab {
    display: none;
}

    .job-browse .job-browse__tab li a,
    .job-browse .job-browse__tab.active {
        display: block;
    }

    .job-browse .job-browse__tab > .col-lg-4 {
        padding: 0
    }

@media (min-width:62rem) {
    .job-browse .job-browse__tabs li a {
        font-size: 1.25rem;
        line-height: 1.875rem
    }

    .job-browse .job-browse__tab > .col-lg-4 {
        padding: 0 .75rem
    }
}

@media (min-width:75rem) {
    .job-browse .job-browse__tab > .col-lg-4 {
        padding: 0 .75rem;
        margin-top: 1rem
    }

    .job-browse .job-browse__tab li a {
        font-size: 1.25rem;
        line-height: 1.875rem
    }
}

.job-browse .job-browse__tab ul {
    margin: 0
}

.job-browse .job-browse__tab li {
    border-bottom: 1px solid #dad9d9;
    margin: 0 0 .5rem;
    padding: .75rem 0
}



    .job-browse .job-browse__tab li i {
        float: right;
        position: relative;
        font-size: 3rem;
        line-height: 2.875rem
    }

.job-browse .job-browse__tab .actions {
    margin-top: 1rem;
    text-align: center
}

@media (min-width:75rem) {
    .job-browse .job-browse__tab .actions {
        margin-top: 2rem
    }
}

@media (min-width:62rem) {
    .job-browse .job-browse__tab .actions .btn {
        font-size: 1.25rem;
        line-height: 1.875rem;
        line-height: 1.5
    }
}

.wrap-job-item {
    margin-top: 20px;
}

.candidate-voice h5 {
    text-align: center;
}


    .candidate-voice h5 i {
        font-size: 20px;
        line-height: 20px;
        vertical-align: super;
        padding: 10px;
    }

.candidate-voice b {
    text-align: center;
    width: 100%;
    display: inline-block;
    font-size: 22px;
    vertical-align: top;
    margin-bottom: 40px;
}

.candidate-voice p {
    text-align: center;
    width: 100%;
    display: inline-block;
    font-size: 15px;
    font-size: 15px;
    vertical-align: top;
    margin-bottom: 34px;
}

.list-results {
    text-align: center;
    display: inline-block;
    margin: 0px !important;
    padding: 0px !important;
    margin-top: 30px !important;
    margin-bottom: 10px !important;
}

    .list-results li {
        display: inline-block;
        float: left;
        padding-right: 20px;
        font-weight: 900;
    }

        .list-results li span {
            color: crimson;
            font-weight: 900;
        }



.results-page .results-haeder p {
    margin-bottom: 0px;
    margin-top: 10px;
    font-size: 30px;
}

.btn-margin {
    margin-bottom: 14px;
}

.refer-friend-head {
    font-size: 2.125rem;
    line-height: 2.125rem;
}

.banner-small img {
    border: 1px solid #ccc;
}

.space {
    height: 30px;
}

.service-content {
    display: inline-block;
}

    .service-content p {
        font-size: 20px;
        line-height: 30px;
    }

    .service-content h4 {
        font-size: 30px;
        line-height: 40px;
        margin: 0;
    }

    .service-content li {
        font-size: 20px;
        line-height: 30px;
    }

.box-sv {
    padding: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #ccc;
}

    .box-sv img {
        width: 100%;
    }

@media (max-width:740px) {
    .box-sv img {
        width: 50%;
    }
}

.service .box-white {
    background: #fff;
    border: 1px solid #dfd7d7;
    border-radius: .4rem;
    margin: 0 !important;
    margin-top: 20px !important;
    padding: 20px !important;
}

.txt-center {
    text-align: center;
}

.txt-red {
    color: #ed1c24;
    font-weight: 800;
}

.service .box-white strong {
    color: #555;
    font-weight: 600;
}

.tb-xp {
    width: 100%;
    -webkit-box-shadow: 10px 10px 5px -6px rgba(0,0,0,0.17);
    -moz-box-shadow: 10px 10px 5px -6px rgba(0,0,0,0.17);
    box-shadow: 10px 10px 5px -6px rgba(0,0,0,0.17);
}

    .tb-xp td, .tb-xp th {
        text-align: center;
        border: 1px solid #eee;
        padding: 5px;
    }

    .tb-xp th {
        border: 1px solid #ee2e24;
        background-color: #ee2e24;
        color: white;
        height: 30px;
    }


    .tb-xp i {
        font-size: 40px;
    }

.resource-card {
    background: #fff;
    border: 1px solid #dfd7d7;
    border-radius: .4rem;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 15px;
}

.box-article {
    background: #fff;
    border: 1px solid #dfd7d7;
    display: inline-block;
    margin-top: 10px;
    padding-top: 15px;
    padding-bottom: 5px;
    border-radius: .3em;
    width: 100%;
}

    .box-article img {
        border: 1px solid #dfd7d7;
    }

    .box-article h4 {
        font-size: 25px;
        line-height: 30px;
        margin: 0;
    }
/*
  .date i {
  
  font-size: 30px;
  
  }
  */
.detail .date i, .detail .cat i {
    padding-right: 7px;
}

.detail .date, .detail .cat {
    margin-right: 20px;
}

.detail {
    padding-bottom: 20px;
}

#contactAdeccoForm .row {
    margin-bottom: 10px;
}

.media-center .btn.btn--negative.btn--red-on-white {
    box-sizing: border-box;
    color: #ed1c24;
    background-color: transparent;
    border: 1px solid #ed1c24;
    transition: all .2s;
    min-width: 80px;
    text-align: center;
    line-height: 25px;
    margin-right: .8rem;
    margin-left: 20px;
    padding-right: 20px;
    min-height: 25px;
    padding: 5px 10px;
}

.location .location-list {
    width: 100%;
    border: none;
}

.btn-submit {
    color: #fff;
    background-color: #ed1c24;
    border-radius: .4rem;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    margin-bottom: 10px;
    margin-top: 20px;
}

    .btn-submit:hover {
        color: #fff;
        background-color: #b8161c;
    }

.btn-submit-lightblue {
    color: #fff;
    background-color: #009cd0;
    border-radius: .4rem;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    margin-bottom: 10px;
    margin-top: 20px;
}

    .btn-submit-lightblue:hover {
        color: #fff;
        background-color: #00769d;
    }

.btn-cancel {
    color: #ed1c24;
    background-color: transparent;
    border: 1px solid #ed1c24;
    border-radius: .4rem;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    margin-bottom: 10px;
    margin-top: 20px;
}

    .btn-cancel:hover {
        background-color: #ccc;
    }

.phone1 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    float: left;
}

.phone2 {
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    margin-left: 15px;
    float: left;
}

.phone1 {
    width: 23%;
    padding-right: 2%;
}

.phone2 {
    width: 70%;
}

.btn--green {
    color: #14d100 !important;
    background-color: transparent !important;
    border: 1px solid #14d100 !important;
    transition: all .2s !important;
    display: inline-block !important;
    font-size: 20px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    line-height: 40px !important;
}

    .btn--green i {
        top: 8px !important;
    }


.btn--red {
    color: #ed1c24 !important;
    background-color: transparent !important;
    border: 1px solid #ed1c24 !important;
    transition: all .2s !important;
    display: inline-block !important;
    font-size: 20px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    line-height: 40px !important;
}

    .btn--red i {
        top: 8px !important;
    }

.profile-card-title .fa {
    color: #ed1c24;
    font-size: 1.7rem;
    display: inline-block;
    position: relative;
    top: 1px;
    padding-left: 12px;
    margin: 15px 5px 5px 15px;
}

.content-box {
    padding-left: 25px;
    padding-right: 25px;
}

    .content-box p {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 0px;
    }

    .content-box b {
        color: #ed1c24;
        font-weight: 800;
        margin-right: 10px;
    }

.email-prefix {
    display: inline-block;
    width: 9%;
    height: 2.689655172413793em;
    padding-top: 0.5517241379310345rem;
    font-size: 14.5px;
    line-height: 1.6;
    color: #666666;
    background-color: #ffffff;
    background-image: none;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    float: left;
    text-align: right;
}

.email-suffix {
    display: inline-block;
    width: 29%;
    height: 2.689655172413793em;
    padding-top: 0.5517241379310345rem;
    font-size: 14.5px;
    line-height: 1.6;
    color: #666666;
    background-color: #ffffff;
    background-image: none;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    float: left;
    text-align: left;
    text-align: left;
}

.email-input {
    display: inline-block;
    width: 59% !important;
    height: 2.689655172413793em;
    padding-top: 0.5517241379310345rem;
    font-size: 14.5px;
    line-height: 1.6;
    color: #666666;
    background-color: #ffffff;
    background-image: none;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    border-right: none !important;
    border-left: none !important;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    float: left;
    outline: none;
}

.box-dot {
    border: 2px dashed #ccc;
    padding: 10px;
    border-radius: .4rem;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.content-box h5 {
    margin: 0px;
    margin-bottom: 5px;
    color: black;
    font-weight: 800;
}

.txt-b {
    color: black !important;
}

.box-dot .btn-edit {
    display: inline-block;
    text-align: center;
    color: #ed1c24 !important;
    background-color: transparent !important;
    border: 1px dashed #ed1c24 !important;
    width: 100%;
    font-size: 20px;
    line-height: 35px;
    border-radius: .4rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.lang-rating {
    display: inline;
}

.card-box {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
}

.btn-profile {
    display: inline-block;
    width: 100%;
    color: #ed1c24 !important;
    background-color: white;
    border: 1px dashed #ed1c24 !important;
    text-align: center;
    /*line-height: 50px;*/
    padding: 10px;
    border-radius: .4rem;
}


.avatar .crop {
    width: 100px;
    height: 150px;
    overflow: hidden;
}

    .avatar .crop img {
        width: 200px;
        height: 300px;
        margin: -75px 0 0 -100px;
    }

.btn-change-pic {
    text-align: center;
    width: 100%;
    display: inline-block;
    font-size: 14px;
    width: 100%;
    color: #ed1c24 !important;
    background-color: white;
    border: 1px dashed #ed1c24 !important;
}

.btn--blue2 {
    display: inline-block;
    width: 100%;
    color: #005794 !important;
    background-color: white;
    border: 1px dashed #005794 !important;
    text-align: center;
    line-height: 40px;
    margin-bottom: 15px;
}

.profile-top-card .username {
    text-align: left;
    font-size: 25px;
    line-height: 30px;
    margin-top: 35px;
    margin-bottom: 10px;
}

.profile-top-card {
    padding-top: 31px !important;
    padding-bottom: 35px !important;
}

#myProgress {
    position: relative;
    width: 100%;
    height: 25px;
    background-color: #ddd;
    border-radius: .2rem;
}

#myBar {
    position: absolute;
    width: 10%;
    height: 100%;
    background-color: #ed1c24;
    border-radius: .2rem;
}

#label {
    text-align: right;
    line-height: 25px;
    font-size: 15px;
    padding-right: 20px;
    color: white;
}


@media (max-width:75rem) {
    .btn-profile {
        margin-bottom: 20px;
    }
}

.rdo-list {
    display: inline-block;
    width: 100%;
}

    .rdo-list .radio, .rdo-list .checkbox {
        margin: 0;
        line-height: 0;
        height: 0;
        min-height: 5px;
    }

    .rdo-list div {
        clear: both;
        margin: 0;
    }

/*.rdo-list label :first {
        width: 100%;
        border-radius: 2px;
        border: 1px solid #D1D3D4;
    }*/


/*
  .rdo-list label {
    width: 100%;
    border-radius: 2px;
    border: 1px solid #D1D3D4
  }
  */

.rdo-list2 {
    display: inline-block;
    width: 100%;
}

    .rdo-list2 .radio, .rdo-list2 .checkbox {
        margin: 0;
        line-height: 0;
        height: 0;
        min-height: 5px;
    }

    .rdo-list2 div {
        clear: both;
        margin: 0;
    }

    .rdo-list2 label {
        width: 100%;
        border-radius: 2px;
        border: 1px solid #D1D3D4;
        background-color: white;
    }
    /* hide input */
    .rdo-list2 input.radio:empty {
        margin-left: -999px;
    }

        /* style label */
        .rdo-list2 input.radio:empty ~ label {
            position: relative;
            float: left;
            line-height: 2.5em;
            /*text-indent: 3.25em;*/
            margin-top: 0;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            padding-left: 3.25em;
        }

            .rdo-list2 input.radio:empty ~ label:before {
                position: absolute;
                display: block;
                top: 0;
                bottom: 0;
                left: 0;
                content: '';
                width: 2.5em;
                background: #D1D3D4;
                border-radius: 3px 0 0 3px;
            }

    /* toggle hover */
    .rdo-list2 input.radio:hover:not(:checked) ~ label:before {
        content: '\2714';
        text-indent: .9em;
        color: #C2C2C2;
    }

.rdo-lis2t input.radio:hover:not(:checked) ~ label {
    color: #888;
}

/* toggle on */
.rdo-list2 input.radio:checked ~ label:before {
    content: '\2714';
    text-indent: .9em;
    color: #fff;
    background-color: #ee2e24;
}

.rdo-list_channel input.radio:checked ~ label:before {
    padding-top: 0px;
    content: '\2714';
    text-indent: .9em;
    color: #fff;
    background-color: #ee2e24;
}

.rdo-list2 .rdo-list input.radio:checked ~ label {
    color: #777;
}

/* radio focus */
.rdo-list2 input.radio:focus ~ label:before {
    box-shadow: 0 0 0 3px #999;
}


/* hide input */
.rdo-list input.radio:empty {
    margin-left: -999px;
}

    /* style label */
    .rdo-list input.radio:empty ~ label {
        position: relative;
        float: left;
        line-height: 2.5em;
        text-indent: 3.25em;
        margin-top: 0;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        .rdo-list input.radio:empty ~ label:before {
            position: absolute;
            display: block;
            top: 0;
            bottom: 0;
            left: 0;
            content: '';
            width: 2.5em;
            background: #D1D3D4;
            border-radius: 3px 0 0 3px;
        }

/* toggle hover */
.rdo-list input.radio:hover:not(:checked) ~ label:before {
    content: '\2714';
    text-indent: .9em;
    color: #C2C2C2;
}

.rdo-list input.radio:hover:not(:checked) ~ label {
    color: #888;
}

/* toggle on */
.rdo-list input.radio:checked ~ label:before {
    content: '\2714';
    text-indent: .9em;
    color: #fff;
    background-color: #ee2e24;
}

.rdo-list .rdo-list input.radio:checked ~ label {
    color: #777;
}

/* radio focus */
.rdo-list input.radio:focus ~ label:before {
    box-shadow: 0 0 0 3px #999;
}


#other-box label {
    color: #ee2e24;
}


.txt1, .txt3 {
    float: left;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.txt2 {
    float: left;
    position: relative;
    min-height: 1px;
    text-align: center;
    font-size: 18px;
    line-height: 35px;
}

.txt1 {
    width: 45%;
}

.txt2 {
    width: 10%;
}

.txt3 {
    width: 45%;
}

.btn-add {
    color: #fff;
    background-color: #ed1c24;
    border-radius: .4rem;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
}

.btn-setting {
    color: #ed1c24;
    background-color: transparent;
    border: 1px solid #ed1c24;
    border-radius: .4rem;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    margin-bottom: 10px;
}

.txt-show {
}

    .txt-show .username {
        margin-bottom: 0px;
        margin-top: 5px;
    }

    .txt-show p {
        margin-top: 5px;
        margin-bottom: 13px;
    }

.clear-margin {
    margin-bottom: 0px !important;
}

.btn.btn--white {
    box-sizing: border-box;
    color: #ed1c24;
    background-color: #fff;
    -webkit-transition: all .2s;
    transition: all .2s;
    min-width: 80px;
    text-align: center;
    border: none;
    display: inline-block;
    width: 100%;
    font-size: 27px;
    margin-top: 25px;
    margin-bottom: 0px;
}

.height-default {
    min-height: 600px;
}


.btn-rpw {
    margin-bottom: 0px !important;
    display: inline-block !important;
    width: 100% !important;
    font-size: 20px !important;
}

.item h4 {
    text-align: center;
}

.btn-page {
    display: inline-block;
    float: left;
    color: white;
    padding-left: 15px;
    padding-right: 15px;
    height: 45px;
    line-height: 43px !important;
    line-height: 43px !important;
    margin-top: -10px;
    vertical-align: middle;
}

    .btn-page.active {
        background-color: #ed1c24;
        opacity: 1;
    }

.txt-left {
    text-align: left;
}

.inline-block {
    display: inline-block;
    width: 100%;
}

    .inline-block img {
        display: inline-block;
        /* width: 165px;*/
    }

    .inline-block .about-content {
        display: inline-block;
        padding: 10px;
        width: 100%;
    }

.padding20 {
    padding: 30px 0;
    display: inline-block;
}

.noti {
    background-color: black;
    color: white;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
}

.download .bg-gray {
    margin: 0;
    padding: 0;
}

.glyph {
    font-size: 16px;
    width: 4em;
    padding-bottom: 1em;
    margin-right: 1.5em;
    float: left;
    overflow: hidden;
}

.liga {
    width: 80%;
    width: calc(100% - 2.5em);
}

.talign-right {
    text-align: right;
}

.talign-center {
    text-align: center;
}

.bgc1 {
    background: #f1f1f1;
}

.fgc1 {
    color: #999;
}

.fgc0 {
    color: #000;
}

p {
    margin-top: 1em;
    margin-bottom: 1em;
}

.mvm {
    margin-top: .75em;
    margin-bottom: .75em;
}

.mtn {
    margin-top: 0;
}

.mtl, .mal {
    margin-top: 1.5em;
}

.mbl, .mal {
    margin-bottom: 1.5em;
}

.mal, .mhl {
    margin-left: 1.5em;
    margin-right: 1.5em;
}

.mhmm {
    margin-left: 1em;
    margin-right: 1em;
}

.mls {
    margin-left: .25em;
}

.ptl {
    padding-top: 1.5em;
}

.pbs, .pvs {
    padding-bottom: .25em;
}

.pvs, .pts {
    padding-top: .25em;
}

.clearfix {
    zoom: 1;
}

.unit {
    float: left;
}

.unitRight {
    float: right;
}

.size1of2 {
    width: 50%;
}

.size1of1 {
    width: 100%;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.hidden-true {
    display: none;
}

.textbox0 {
    width: 3em;
    background: #f1f1f1;
    padding: .25em .5em;
    line-height: 1.5;
    height: 1.5em;
}

#testDrive {
    padding-top: 24px;
    line-height: 1.5;
}

.fs0 {
    font-size: 16px;
}

.fs1 {
    font-size: 40px;
}

@font-face {
    font-family: 'Linearicons';
    src: url('assets/fonts/Linearicons.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




[class^="icon2-"], [class*=" icon2-"] {
    font-family: 'Linearicons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Enable Ligatures ================ */
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    /*-ms-font-feature-settings: "liga" 1;*/
    /*-o-font-feature-settings: "liga";*/
    font-feature-settings: "liga";
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.PositionList ul li span[class*="icon2-"]:before {
    font-family: 'Linearicons' !important;
    color: #888;
    margin-left: 0px;
    margin-right: 10px;
    font-size: 30px;
    position: relative;
}

.salary-icon-list ul li span[class*="icon2-"]:before,
[class^=icon2-]:before,
[data-icon2]:before {
    font-family: 'Linearicons' !important;
    color: #888;
    margin-left: -40px;
    margin-right: 10px;
    font-size: 30px;
    position: absolute;
}

[class*="icon2-"]:before,
[class^=icon2-]:before,
[data-icon2]:before {
    font-family: 'Linearicons' !important;
}

.icon2-home:before {
    content: "\e600";
}

.icon2-home2:before {
    content: "\e601";
}

.icon2-home3:before {
    content: "\e602";
}

.icon2-home4:before {
    content: "\e603";
}

.icon2-home5:before {
    content: "\e604";
}

.icon2-home6:before {
    content: "\e605";
}

.icon2-bathtub:before {
    content: "\e606";
}

.icon2-toothbrush:before {
    content: "\e607";
}

.icon2-bed:before {
    content: "\e608";
}

.icon2-couch:before {
    content: "\e609";
}

.icon2-chair:before {
    content: "\e60a";
}

.icon2-city:before {
    content: "\e60b";
}

.icon2-apartment:before {
    content: "\e60c";
}

.icon2-pencil:before {
    content: "\e60d";
}

.icon2-pencil2:before {
    content: "\e60e";
}

.icon2-pen:before {
    content: "\e60f";
}

.icon2-pencil3:before {
    content: "\e610";
}

.icon2-eraser:before {
    content: "\e611";
}

.icon2-pencil4:before {
    content: "\e612";
}

.icon2-pencil5:before {
    content: "\e613";
}

.icon2-feather:before {
    content: "\e614";
}

.icon2-feather2:before {
    content: "\e615";
}

.icon2-feather3:before {
    content: "\e616";
}

.icon2-pen2:before {
    content: "\e617";
}

.icon2-pen-add:before {
    content: "\e618";
}

.icon2-pen-remove:before {
    content: "\e619";
}

.icon2-vector:before {
    content: "\e61a";
}

.icon2-pen3:before {
    content: "\e61b";
}

.icon2-blog:before {
    content: "\e61c";
}

.icon2-brush:before {
    content: "\e61d";
}

.icon2-brush2:before {
    content: "\e61e";
}

.icon2-spray:before {
    content: "\e61f";
}

.icon2-paint-roller:before {
    content: "\e620";
}

.icon2-stamp:before {
    content: "\e621";
}

.icon2-tape:before {
    content: "\e622";
}

.icon2-desk-tape:before {
    content: "\e623";
}

.icon2-texture:before {
    content: "\e624";
}

.icon2-eye-dropper:before {
    content: "\e625";
}

.icon2-palette:before {
    content: "\e626";
}

.icon2-color-sampler:before {
    content: "\e627";
}

.icon2-bucket:before {
    content: "\e628";
}

.icon2-gradient:before {
    content: "\e629";
}

.icon2-gradient2:before {
    content: "\e62a";
}

.icon2-magic-wand:before {
    content: "\e62b";
}

.icon2-magnet:before {
    content: "\e62c";
}

.icon2-pencil-ruler:before {
    content: "\e62d";
}

.icon2-pencil-ruler2:before {
    content: "\e62e";
}

.icon2-compass:before {
    content: "\e62f";
}

.icon2-aim:before {
    content: "\e630";
}

.icon2-gun:before {
    content: "\e631";
}

.icon2-bottle:before {
    content: "\e632";
}

.icon2-drop:before {
    content: "\e633";
}

.icon2-drop-crossed:before {
    content: "\e634";
}

.icon2-drop2:before {
    content: "\e635";
}

.icon2-snow:before {
    content: "\e636";
}

.icon2-snow2:before {
    content: "\e637";
}

.icon2-fire:before {
    content: "\e638";
}

.icon2-lighter:before {
    content: "\e639";
}

.icon2-knife:before {
    content: "\e63a";
}

.icon2-dagger:before {
    content: "\e63b";
}

.icon2-tissue:before {
    content: "\e63c";
}

.icon2-toilet-paper:before {
    content: "\e63d";
}

.icon2-poop:before {
    content: "\e63e";
}

.icon2-umbrella:before {
    content: "\e63f";
}

.icon2-umbrella2:before {
    content: "\e640";
}

.icon2-rain:before {
    content: "\e641";
}

.icon2-tornado:before {
    content: "\e642";
}

.icon2-wind:before {
    content: "\e643";
}

.icon2-fan:before {
    content: "\e644";
}

.icon2-contrast:before {
    content: "\e645";
}

.icon2-sun-small:before {
    content: "\e646";
}

.icon2-sun:before {
    content: "\e647";
}

.icon2-sun2:before {
    content: "\e648";
}

.icon2-moon:before {
    content: "\e649";
}

.icon2-cloud:before {
    content: "\e64a";
}

.icon2-cloud-upload:before {
    content: "\e64b";
}

.icon2-cloud-download:before {
    content: "\e64c";
}

.icon2-cloud-rain:before {
    content: "\e64d";
}

.icon2-cloud-hailstones:before {
    content: "\e64e";
}

.icon2-cloud-snow:before {
    content: "\e64f";
}

.icon2-cloud-windy:before {
    content: "\e650";
}

.icon2-sun-wind:before {
    content: "\e651";
}

.icon2-cloud-fog:before {
    content: "\e652";
}

.icon2-cloud-sun:before {
    content: "\e653";
}

.icon2-cloud-lightning:before {
    content: "\e654";
}

.icon2-cloud-sync:before {
    content: "\e655";
}

.icon2-cloud-lock:before {
    content: "\e656";
}

.icon2-cloud-gear:before {
    content: "\e657";
}

.icon2-cloud-alert:before {
    content: "\e658";
}

.icon2-cloud-check:before {
    content: "\e659";
}

.icon2-cloud-cross:before {
    content: "\e65a";
}

.icon2-cloud-crossed:before {
    content: "\e65b";
}

.icon2-cloud-database:before {
    content: "\e65c";
}

.icon2-database:before {
    content: "\e65d";
}

.icon2-database-add:before {
    content: "\e65e";
}

.icon2-database-remove:before {
    content: "\e65f";
}

.icon2-database-lock:before {
    content: "\e660";
}

.icon2-database-refresh:before {
    content: "\e661";
}

.icon2-database-check:before {
    content: "\e662";
}

.icon2-database-history:before {
    content: "\e663";
}

.icon2-database-upload:before {
    content: "\e664";
}

.icon2-database-download:before {
    content: "\e665";
}

.icon2-server:before {
    content: "\e666";
}

.icon2-shield:before {
    content: "\e667";
}

.icon2-shield-check:before {
    content: "\e668";
}

.icon2-shield-alert:before {
    content: "\e669";
}

.icon2-shield-cross:before {
    content: "\e66a";
}

.icon2-lock:before {
    content: "\e66b";
}

.icon2-rotation-lock:before {
    content: "\e66c";
}

.icon2-unlock:before {
    content: "\e66d";
}

.icon2-key:before {
    content: "\e66e";
}

.icon2-key-hole:before {
    content: "\e66f";
}

.icon2-toggle-off:before {
    content: "\e670";
}

.icon2-toggle-on:before {
    content: "\e671";
}

.icon2-cog:before {
    content: "\e672";
}

.icon2-cog2:before {
    content: "\e673";
}

.icon2-wrench:before {
    content: "\e674";
}

.icon2-screwdriver:before {
    content: "\e675";
}

.icon2-hammer-wrench:before {
    content: "\e676";
}

.icon2-hammer:before {
    content: "\e677";
}

.icon2-saw:before {
    content: "\e678";
}

.icon2-axe:before {
    content: "\e679";
}

.icon2-axe2:before {
    content: "\e67a";
}

.icon2-shovel:before {
    content: "\e67b";
}

.icon2-pickaxe:before {
    content: "\e67c";
}

.icon2-factory:before {
    content: "\e67d";
}

.icon2-factory2:before {
    content: "\e67e";
}

.icon2-recycle:before {
    content: "\e67f";
}

.icon2-trash:before {
    content: "\e680";
}

.icon2-trash2:before {
    content: "\e681";
}

.icon2-trash3:before {
    content: "\e682";
}

.icon2-broom:before {
    content: "\e683";
}

.icon2-game:before {
    content: "\e684";
}

.icon2-gamepad:before {
    content: "\e685";
}

.icon2-joystick:before {
    content: "\e686";
}

.icon2-dice:before {
    content: "\e687";
}

.icon2-spades:before {
    content: "\e688";
}

.icon2-diamonds:before {
    content: "\e689";
}

.icon2-clubs:before {
    content: "\e68a";
}

.icon2-hearts:before {
    content: "\e68b";
}

.icon2-heart:before {
    content: "\e68c";
}

.icon2-star:before {
    content: "\e68d";
}

.icon2-star-half:before {
    content: "\e68e";
}

.icon2-star-empty:before {
    content: "\e68f";
}

.icon2-flag:before {
    content: "\e690";
}

.icon2-flag2:before {
    content: "\e691";
}

.icon2-flag3:before {
    content: "\e692";
}

.icon2-mailbox-full:before {
    content: "\e693";
}

.icon2-mailbox-empty:before {
    content: "\e694";
}

.icon2-at-sign:before {
    content: "\e695";
}

.icon2-envelope:before {
    content: "\e696";
}

.icon2-envelope-open:before {
    content: "\e697";
}

.icon2-paperclip:before {
    content: "\e698";
}

.icon2-paper-plane:before {
    content: "\e699";
}

.icon2-reply:before {
    content: "\e69a";
}

.icon2-reply-all:before {
    content: "\e69b";
}

.icon2-inbox:before {
    content: "\e69c";
}

.icon2-inbox2:before {
    content: "\e69d";
}

.icon2-outbox:before {
    content: "\e69e";
}

.icon2-box:before {
    content: "\e69f";
}

.icon2-archive:before {
    content: "\e6a0";
}

.icon2-archive2:before {
    content: "\e6a1";
}

.icon2-drawers:before {
    content: "\e6a2";
}

.icon2-drawers2:before {
    content: "\e6a3";
}

.icon2-drawers3:before {
    content: "\e6a4";
}

.icon2-eye:before {
    content: "\e6a5";
}

.icon2-eye-crossed:before {
    content: "\e6a6";
}

.icon2-eye-plus:before {
    content: "\e6a7";
}

.icon2-eye-minus:before {
    content: "\e6a8";
}

.icon2-binoculars:before {
    content: "\e6a9";
}

.icon2-binoculars2:before {
    content: "\e6aa";
}

.icon2-hdd:before {
    content: "\e6ab";
}

.icon2-hdd-down:before {
    content: "\e6ac";
}

.icon2-hdd-up:before {
    content: "\e6ad";
}

.icon2-floppy-disk:before {
    content: "\e6ae";
}

.icon2-disc:before {
    content: "\e6af";
}

.icon2-tape2:before {
    content: "\e6b0";
}

.icon2-printer:before {
    content: "\e6b1";
}

.icon2-shredder:before {
    content: "\e6b2";
}

.icon2-file-empty:before {
    content: "\e6b3";
}

.icon2-file-add:before {
    content: "\e6b4";
}

.icon2-file-check:before {
    content: "\e6b5";
}

.icon2-file-lock:before {
    content: "\e6b6";
}

.icon2-files:before {
    content: "\e6b7";
}

.icon2-copy:before {
    content: "\e6b8";
}

.icon2-compare:before {
    content: "\e6b9";
}

.icon2-folder:before {
    content: "\e6ba";
}

.icon2-folder-search:before {
    content: "\e6bb";
}

.icon2-folder-plus:before {
    content: "\e6bc";
}

.icon2-folder-minus:before {
    content: "\e6bd";
}

.icon2-folder-download:before {
    content: "\e6be";
}

.icon2-folder-upload:before {
    content: "\e6bf";
}

.icon2-folder-star:before {
    content: "\e6c0";
}

.icon2-folder-heart:before {
    content: "\e6c1";
}

.icon2-folder-user:before {
    content: "\e6c2";
}

.icon2-folder-shared:before {
    content: "\e6c3";
}

.icon2-folder-music:before {
    content: "\e6c4";
}

.icon2-folder-picture:before {
    content: "\e6c5";
}

.icon2-folder-film:before {
    content: "\e6c6";
}

.icon2-scissors:before {
    content: "\e6c7";
}

.icon2-paste:before {
    content: "\e6c8";
}

.icon2-clipboard-empty:before {
    content: "\e6c9";
}

.icon2-clipboard-pencil:before {
    content: "\e6ca";
}

.icon2-clipboard-text:before {
    content: "\e6cb";
}

.icon2-clipboard-check:before {
    content: "\e6cc";
}

.icon2-clipboard-down:before {
    content: "\e6cd";
}

.icon2-clipboard-left:before {
    content: "\e6ce";
}

.icon2-clipboard-alert:before {
    content: "\e6cf";
}

.icon2-clipboard-user:before {
    content: "\e6d0";
}

.icon2-register:before {
    content: "\e6d1";
}

.icon2-enter:before {
    content: "\e6d2";
}

.icon2-exit:before {
    content: "\e6d3";
}

.icon2-papers:before {
    content: "\e6d4";
}

.icon2-news:before {
    content: "\e6d5";
}

.icon2-reading:before {
    content: "\e6d6";
}

.icon2-typewriter:before {
    content: "\e6d7";
}

.icon2-document:before {
    content: "\e6d8";
}

.icon2-document2:before {
    content: "\e6d9";
}

.icon2-graduation-hat:before {
    content: "\e6da";
}

.icon2-license:before {
    content: "\e6db";
}

.icon2-license2:before {
    content: "\e6dc";
}

.icon2-medal-empty:before {
    content: "\e6dd";
}

.icon2-medal-first:before {
    content: "\e6de";
}

.icon2-medal-second:before {
    content: "\e6df";
}

.icon2-medal-third:before {
    content: "\e6e0";
}

.icon2-podium:before {
    content: "\e6e1";
}

.icon2-trophy:before {
    content: "\e6e2";
}

.icon2-trophy2:before {
    content: "\e6e3";
}

.icon2-music-note:before {
    content: "\e6e4";
}

.icon2-music-note2:before {
    content: "\e6e5";
}

.icon2-music-note3:before {
    content: "\e6e6";
}

.icon2-playlist:before {
    content: "\e6e7";
}

.icon2-playlist-add:before {
    content: "\e6e8";
}

.icon2-guitar:before {
    content: "\e6e9";
}

.icon2-trumpet:before {
    content: "\e6ea";
}

.icon2-album:before {
    content: "\e6eb";
}

.icon2-shuffle:before {
    content: "\e6ec";
}

.icon2-repeat-one:before {
    content: "\e6ed";
}

.icon2-repeat:before {
    content: "\e6ee";
}

.icon2-headphones:before {
    content: "\e6ef";
}

.icon2-headset:before {
    content: "\e6f0";
}

.icon2-loudspeaker:before {
    content: "\e6f1";
}

.icon2-equalizer:before {
    content: "\e6f2";
}

.icon2-theater:before {
    content: "\e6f3";
}

.icon2-3d-glasses:before {
    content: "\e6f4";
}

.icon2-ticket:before {
    content: "\e6f5";
}

.icon2-presentation:before {
    content: "\e6f6";
}

.icon2-play:before {
    content: "\e6f7";
}

.icon2-film-play:before {
    content: "\e6f8";
}

.icon2-clapboard-play:before {
    content: "\e6f9";
}

.icon2-media:before {
    content: "\e6fa";
}

.icon2-film:before {
    content: "\e6fb";
}

.icon2-film2:before {
    content: "\e6fc";
}

.icon2-surveillance:before {
    content: "\e6fd";
}

.icon2-surveillance2:before {
    content: "\e6fe";
}

.icon2-camera:before {
    content: "\e6ff";
}

.icon2-camera-crossed:before {
    content: "\e700";
}

.icon2-camera-play:before {
    content: "\e701";
}

.icon2-time-lapse:before {
    content: "\e702";
}

.icon2-record:before {
    content: "\e703";
}

.icon2-camera2:before {
    content: "\e704";
}

.icon2-camera-flip:before {
    content: "\e705";
}

.icon2-panorama:before {
    content: "\e706";
}

.icon2-time-lapse2:before {
    content: "\e707";
}

.icon2-shutter:before {
    content: "\e708";
}

.icon2-shutter2:before {
    content: "\e709";
}

.icon2-face-detection:before {
    content: "\e70a";
}

.icon2-flare:before {
    content: "\e70b";
}

.icon2-convex:before {
    content: "\e70c";
}

.icon2-concave:before {
    content: "\e70d";
}

.icon2-picture:before {
    content: "\e70e";
}

.icon2-picture2:before {
    content: "\e70f";
}

.icon2-picture3:before {
    content: "\e710";
}

.icon2-pictures:before {
    content: "\e711";
}

.icon2-book:before {
    content: "\e712";
}

.icon2-audio-book:before {
    content: "\e713";
}

.icon2-book2:before {
    content: "\e714";
}

.icon2-bookmark:before {
    content: "\e715";
}

.icon2-bookmark2:before {
    content: "\e716";
}

.icon2-label:before {
    content: "\e717";
}

.icon2-library:before {
    content: "\e718";
}

.icon2-library2:before {
    content: "\e719";
}

.icon2-contacts:before {
    content: "\e71a";
}

.icon2-profile:before {
    content: "\e71b";
}

.icon2-portrait:before {
    content: "\e71c";
}

.icon2-portrait2:before {
    content: "\e71d";
}

.icon2-user:before {
    content: "\e71e";
}

.icon2-user-plus:before {
    content: "\e71f";
}

.icon2-user-minus:before {
    content: "\e720";
}

.icon2-user-lock:before {
    content: "\e721";
}

.icon2-users:before {
    content: "\e722";
}

.icon2-users2:before {
    content: "\e723";
}

.icon2-users-plus:before {
    content: "\e724";
}

.icon2-users-minus:before {
    content: "\e725";
}

.icon2-group-work:before {
    content: "\e726";
}

.icon2-woman:before {
    content: "\e727";
}

.icon2-man:before {
    content: "\e728";
}

.icon2-baby:before {
    content: "\e729";
}

.icon2-baby2:before {
    content: "\e72a";
}

.icon2-baby3:before {
    content: "\e72b";
}

.icon2-baby-bottle:before {
    content: "\e72c";
}

.icon2-walk:before {
    content: "\e72d";
}

.icon2-hand-waving:before {
    content: "\e72e";
}

.icon2-jump:before {
    content: "\e72f";
}

.icon2-run:before {
    content: "\e730";
}

.icon2-woman2:before {
    content: "\e731";
}

.icon2-man2:before {
    content: "\e732";
}

.icon2-man-woman:before {
    content: "\e733";
}

.icon2-height:before {
    content: "\e734";
}

.icon2-weight:before {
    content: "\e735";
}

.icon2-scale:before {
    content: "\e736";
}

.icon2-button:before {
    content: "\e737";
}

.icon2-bow-tie:before {
    content: "\e738";
}

.icon2-tie:before {
    content: "\e739";
}

.icon2-socks:before {
    content: "\e73a";
}

.icon2-shoe:before {
    content: "\e73b";
}

.icon2-shoes:before {
    content: "\e73c";
}

.icon2-hat:before {
    content: "\e73d";
}

.icon2-pants:before {
    content: "\e73e";
}

.icon2-shorts:before {
    content: "\e73f";
}

.icon2-flip-flops:before {
    content: "\e740";
}

.icon2-shirt:before {
    content: "\e741";
}

.icon2-hanger:before {
    content: "\e742";
}

.icon2-laundry:before {
    content: "\e743";
}

.icon2-store:before {
    content: "\e744";
}

.icon2-haircut:before {
    content: "\e745";
}

.icon2-store-24:before {
    content: "\e746";
}

.icon2-barcode:before {
    content: "\e747";
}

.icon2-barcode2:before {
    content: "\e748";
}

.icon2-barcode3:before {
    content: "\e749";
}

.icon2-cashier:before {
    content: "\e74a";
}

.icon2-bag:before {
    content: "\e74b";
}

.icon2-bag2:before {
    content: "\e74c";
}

.icon2-cart:before {
    content: "\e74d";
}

.icon2-cart-empty:before {
    content: "\e74e";
}

.icon2-cart-full:before {
    content: "\e74f";
}

.icon2-cart-plus:before {
    content: "\e750";
}

.icon2-cart-plus2:before {
    content: "\e751";
}

.icon2-cart-add:before {
    content: "\e752";
}

.icon2-cart-remove:before {
    content: "\e753";
}

.icon2-cart-exchange:before {
    content: "\e754";
}

.icon2-tag:before {
    content: "\e755";
}

.icon2-tags:before {
    content: "\e756";
}

.icon2-receipt:before {
    content: "\e757";
}

.icon2-wallet:before {
    content: "\e758";
}

.icon2-credit-card:before {
    content: "\e759";
}

.icon2-cash-dollar:before {
    content: "\e75a";
}

.icon2-cash-euro:before {
    content: "\e75b";
}

.icon2-cash-pound:before {
    content: "\e75c";
}

.icon2-cash-yen:before {
    content: "\e75d";
}

.icon2-bag-dollar:before {
    content: "\e75e";
}

.icon2-bag-euro:before {
    content: "\e75f";
}

.icon2-bag-pound:before {
    content: "\e760";
}

.icon2-bag-yen:before {
    content: "\e761";
}

.icon2-coin-dollar:before {
    content: "\e762";
}

.icon2-coin-euro:before {
    content: "\e763";
}

.icon2-coin-pound:before {
    content: "\e764";
}

.icon2-coin-yen:before {
    content: "\e765";
}

.icon2-calculator:before {
    content: "\e766";
}

.icon2-calculator2:before {
    content: "\e767";
}

.icon2-abacus:before {
    content: "\e768";
}

.icon2-vault:before {
    content: "\e769";
}

.icon2-telephone:before {
    content: "\e76a";
}

.icon2-phone-lock:before {
    content: "\e76b";
}

.icon2-phone-wave:before {
    content: "\e76c";
}

.icon2-phone-pause:before {
    content: "\e76d";
}

.icon2-phone-outgoing:before {
    content: "\e76e";
}

.icon2-phone-incoming:before {
    content: "\e76f";
}

.icon2-phone-in-out:before {
    content: "\e770";
}

.icon2-phone-error:before {
    content: "\e771";
}

.icon2-phone-sip:before {
    content: "\e772";
}

.icon2-phone-plus:before {
    content: "\e773";
}

.icon2-phone-minus:before {
    content: "\e774";
}

.icon2-voicemail:before {
    content: "\e775";
}

.icon2-dial:before {
    content: "\e776";
}

.icon2-telephone2:before {
    content: "\e777";
}

.icon2-pushpin:before {
    content: "\e778";
}

.icon2-pushpin2:before {
    content: "\e779";
}

.icon2-map-marker:before {
    content: "\e77a";
}

.icon2-map-marker-user:before {
    content: "\e77b";
}

.icon2-map-marker-down:before {
    content: "\e77c";
}

.icon2-map-marker-check:before {
    content: "\e77d";
}

.icon2-map-marker-crossed:before {
    content: "\e77e";
}

.icon2-radar:before {
    content: "\e77f";
}

.icon2-compass2:before {
    content: "\e780";
}

.icon2-map:before {
    content: "\e781";
}

.icon2-map2:before {
    content: "\e782";
}

.icon2-location:before {
    content: "\e783";
}

.icon2-road-sign:before {
    content: "\e784";
}

.icon2-calendar-empty:before {
    content: "\e785";
}

.icon2-calendar-check:before {
    content: "\e786";
}

.icon2-calendar-cross:before {
    content: "\e787";
}

.icon2-calendar-31:before {
    content: "\e788";
}

.icon2-calendar-full:before {
    content: "\e789";
}

.icon2-calendar-insert:before {
    content: "\e78a";
}

.icon2-calendar-text:before {
    content: "\e78b";
}

.icon2-calendar-user:before {
    content: "\e78c";
}

.icon2-mouse:before {
    content: "\e78d";
}

.icon2-mouse-left:before {
    content: "\e78e";
}

.icon2-mouse-right:before {
    content: "\e78f";
}

.icon2-mouse-both:before {
    content: "\e790";
}

.icon2-keyboard:before {
    content: "\e791";
}

.icon2-keyboard-up:before {
    content: "\e792";
}

.icon2-keyboard-down:before {
    content: "\e793";
}

.icon2-delete:before {
    content: "\e794";
}

.icon2-spell-check:before {
    content: "\e795";
}

.icon2-escape:before {
    content: "\e796";
}

.icon2-enter2:before {
    content: "\e797";
}

.icon2-screen:before {
    content: "\e798";
}

.icon2-aspect-ratio:before {
    content: "\e799";
}

.icon2-signal:before {
    content: "\e79a";
}

.icon2-signal-lock:before {
    content: "\e79b";
}

.icon2-signal-80:before {
    content: "\e79c";
}

.icon2-signal-60:before {
    content: "\e79d";
}

.icon2-signal-40:before {
    content: "\e79e";
}

.icon2-signal-20:before {
    content: "\e79f";
}

.icon2-signal-0:before {
    content: "\e7a0";
}

.icon2-signal-blocked:before {
    content: "\e7a1";
}

.icon2-sim:before {
    content: "\e7a2";
}

.icon2-flash-memory:before {
    content: "\e7a3";
}

.icon2-usb-drive:before {
    content: "\e7a4";
}

.icon2-phone:before {
    content: "\e7a5";
}

.icon2-smartphone:before {
    content: "\e7a6";
}

.icon2-smartphone-notification:before {
    content: "\e7a7";
}

.icon2-smartphone-vibration:before {
    content: "\e7a8";
}

.icon2-smartphone-embed:before {
    content: "\e7a9";
}

.icon2-smartphone-waves:before {
    content: "\e7aa";
}

.icon2-tablet:before {
    content: "\e7ab";
}

.icon2-tablet2:before {
    content: "\e7ac";
}

.icon2-laptop:before {
    content: "\e7ad";
}

.icon2-laptop-phone:before {
    content: "\e7ae";
}

.icon2-desktop:before {
    content: "\e7af";
}

.icon2-launch:before {
    content: "\e7b0";
}

.icon2-new-tab:before {
    content: "\e7b1";
}

.icon2-window:before {
    content: "\e7b2";
}

.icon2-cable:before {
    content: "\e7b3";
}

.icon2-cable2:before {
    content: "\e7b4";
}

.icon2-tv:before {
    content: "\e7b5";
}

.icon2-radio:before {
    content: "\e7b6";
}

.icon2-remote-control:before {
    content: "\e7b7";
}

.icon2-power-switch:before {
    content: "\e7b8";
}

.icon2-power:before {
    content: "\e7b9";
}

.icon2-power-crossed:before {
    content: "\e7ba";
}

.icon2-flash-auto:before {
    content: "\e7bb";
}

.icon2-lamp:before {
    content: "\e7bc";
}

.icon2-flashlight:before {
    content: "\e7bd";
}

.icon2-lampshade:before {
    content: "\e7be";
}

.icon2-cord:before {
    content: "\e7bf";
}

.icon2-outlet:before {
    content: "\e7c0";
}

.icon2-battery-power:before {
    content: "\e7c1";
}

.icon2-battery-empty:before {
    content: "\e7c2";
}

.icon2-battery-alert:before {
    content: "\e7c3";
}

.icon2-battery-error:before {
    content: "\e7c4";
}

.icon2-battery-low1:before {
    content: "\e7c5";
}

.icon2-battery-low2:before {
    content: "\e7c6";
}

.icon2-battery-low3:before {
    content: "\e7c7";
}

.icon2-battery-mid1:before {
    content: "\e7c8";
}

.icon2-battery-mid2:before {
    content: "\e7c9";
}

.icon2-battery-mid3:before {
    content: "\e7ca";
}

.icon2-battery-full:before {
    content: "\e7cb";
}

.icon2-battery-charging:before {
    content: "\e7cc";
}

.icon2-battery-charging2:before {
    content: "\e7cd";
}

.icon2-battery-charging3:before {
    content: "\e7ce";
}

.icon2-battery-charging4:before {
    content: "\e7cf";
}

.icon2-battery-charging5:before {
    content: "\e7d0";
}

.icon2-battery-charging6:before {
    content: "\e7d1";
}

.icon2-battery-charging7:before {
    content: "\e7d2";
}

.icon2-chip:before {
    content: "\e7d3";
}

.icon2-chip-x64:before {
    content: "\e7d4";
}

.icon2-chip-x86:before {
    content: "\e7d5";
}

.icon2-bubble:before {
    content: "\e7d6";
}

.icon2-bubbles:before {
    content: "\e7d7";
}

.icon2-bubble-dots:before {
    content: "\e7d8";
}

.icon2-bubble-alert:before {
    content: "\e7d9";
}

.icon2-bubble-question:before {
    content: "\e7da";
}

.icon2-bubble-text:before {
    content: "\e7db";
}

.icon2-bubble-pencil:before {
    content: "\e7dc";
}

.icon2-bubble-picture:before {
    content: "\e7dd";
}

.icon2-bubble-video:before {
    content: "\e7de";
}

.icon2-bubble-user:before {
    content: "\e7df";
}

.icon2-bubble-quote:before {
    content: "\e7e0";
}

.icon2-bubble-heart:before {
    content: "\e7e1";
}

.icon2-bubble-emoticon:before {
    content: "\e7e2";
}

.icon2-bubble-attachment:before {
    content: "\e7e3";
}

.icon2-phone-bubble:before {
    content: "\e7e4";
}

.icon2-quote-open:before {
    content: "\e7e5";
}

.icon2-quote-close:before {
    content: "\e7e6";
}

.icon2-dna:before {
    content: "\e7e7";
}

.icon2-heart-pulse:before {
    content: "\e7e8";
}

.icon2-pulse:before {
    content: "\e7e9";
}

.icon2-syringe:before {
    content: "\e7ea";
}

.icon2-pills:before {
    content: "\e7eb";
}

.icon2-first-aid:before {
    content: "\e7ec";
}

.icon2-lifebuoy:before {
    content: "\e7ed";
}

.icon2-bandage:before {
    content: "\e7ee";
}

.icon2-bandages:before {
    content: "\e7ef";
}

.icon2-thermometer:before {
    content: "\e7f0";
}

.icon2-microscope:before {
    content: "\e7f1";
}

.icon2-brain:before {
    content: "\e7f2";
}

.icon2-beaker:before {
    content: "\e7f3";
}

.icon2-skull:before {
    content: "\e7f4";
}

.icon2-bone:before {
    content: "\e7f5";
}

.icon2-construction:before {
    content: "\e7f6";
}

.icon2-construction-cone:before {
    content: "\e7f7";
}

.icon2-pie-chart:before {
    content: "\e7f8";
}

.icon2-pie-chart2:before {
    content: "\e7f9";
}

.icon2-graph:before {
    content: "\e7fa";
}

.icon2-chart-growth:before {
    content: "\e7fb";
}

.icon2-chart-bars:before {
    content: "\e7fc";
}

.icon2-chart-settings:before {
    content: "\e7fd";
}

.icon2-cake:before {
    content: "\e7fe";
}

.icon2-gift:before {
    content: "\e7ff";
}

.icon2-balloon:before {
    content: "\e800";
}

.icon2-rank:before {
    content: "\e801";
}

.icon2-rank2:before {
    content: "\e802";
}

.icon2-rank3:before {
    content: "\e803";
}

.icon2-crown:before {
    content: "\e804";
}

.icon2-lotus:before {
    content: "\e805";
}

.icon2-diamond:before {
    content: "\e806";
}

.icon2-diamond2:before {
    content: "\e807";
}

.icon2-diamond3:before {
    content: "\e808";
}

.icon2-diamond4:before {
    content: "\e809";
}

.icon2-linearicons:before {
    content: "\e80a";
}

.icon2-teacup:before {
    content: "\e80b";
}

.icon2-teapot:before {
    content: "\e80c";
}

.icon2-glass:before {
    content: "\e80d";
}

.icon2-bottle2:before {
    content: "\e80e";
}

.icon2-glass-cocktail:before {
    content: "\e80f";
}

.icon2-glass2:before {
    content: "\e810";
}

.icon2-dinner:before {
    content: "\e811";
}

.icon2-dinner2:before {
    content: "\e812";
}

.icon2-chef:before {
    content: "\e813";
}

.icon2-scale2:before {
    content: "\e814";
}

.icon2-egg:before {
    content: "\e815";
}

.icon2-egg2:before {
    content: "\e816";
}

.icon2-eggs:before {
    content: "\e817";
}

.icon2-platter:before {
    content: "\e818";
}

.icon2-steak:before {
    content: "\e819";
}

.icon2-hamburger:before {
    content: "\e81a";
}

.icon2-hotdog:before {
    content: "\e81b";
}

.icon2-pizza:before {
    content: "\e81c";
}

.icon2-sausage:before {
    content: "\e81d";
}

.icon2-chicken:before {
    content: "\e81e";
}

.icon2-fish:before {
    content: "\e81f";
}

.icon2-carrot:before {
    content: "\e820";
}

.icon2-cheese:before {
    content: "\e821";
}

.icon2-bread:before {
    content: "\e822";
}

.icon2-ice-cream:before {
    content: "\e823";
}

.icon2-ice-cream2:before {
    content: "\e824";
}

.icon2-candy:before {
    content: "\e825";
}

.icon2-lollipop:before {
    content: "\e826";
}

.icon2-coffee-bean:before {
    content: "\e827";
}

.icon2-coffee-cup:before {
    content: "\e828";
}

.icon2-cherry:before {
    content: "\e829";
}

.icon2-grapes:before {
    content: "\e82a";
}

.icon2-citrus:before {
    content: "\e82b";
}

.icon2-apple:before {
    content: "\e82c";
}

.icon2-leaf:before {
    content: "\e82d";
}

.icon2-landscape:before {
    content: "\e82e";
}

.icon2-pine-tree:before {
    content: "\e82f";
}

.icon2-tree:before {
    content: "\e830";
}

.icon2-cactus:before {
    content: "\e831";
}

.icon2-paw:before {
    content: "\e832";
}

.icon2-footprint:before {
    content: "\e833";
}

.icon2-speed-slow:before {
    content: "\e834";
}

.icon2-speed-medium:before {
    content: "\e835";
}

.icon2-speed-fast:before {
    content: "\e836";
}

.icon2-rocket:before {
    content: "\e837";
}

.icon2-hammer2:before {
    content: "\e838";
}

.icon2-balance:before {
    content: "\e839";
}

.icon2-briefcase:before {
    content: "\e83a";
}

.icon2-luggage-weight:before {
    content: "\e83b";
}

.icon2-dolly:before {
    content: "\e83c";
}

.icon2-plane:before {
    content: "\e83d";
}

.icon2-plane-crossed:before {
    content: "\e83e";
}

.icon2-helicopter:before {
    content: "\e83f";
}

.icon2-traffic-lights:before {
    content: "\e840";
}

.icon2-siren:before {
    content: "\e841";
}

.icon2-road:before {
    content: "\e842";
}

.icon2-engine:before {
    content: "\e843";
}

.icon2-oil-pressure:before {
    content: "\e844";
}

.icon2-coolant-temperature:before {
    content: "\e845";
}

.icon2-car-battery:before {
    content: "\e846";
}

.icon2-gas:before {
    content: "\e847";
}

.icon2-gallon:before {
    content: "\e848";
}

.icon2-transmission:before {
    content: "\e849";
}

.icon2-car:before {
    content: "\e84a";
}

.icon2-car-wash:before {
    content: "\e84b";
}

.icon2-car-wash2:before {
    content: "\e84c";
}

.icon2-bus:before {
    content: "\e84d";
}

.icon2-bus2:before {
    content: "\e84e";
}

.icon2-car2:before {
    content: "\e84f";
}

.icon2-parking:before {
    content: "\e850";
}

.icon2-car-lock:before {
    content: "\e851";
}

.icon2-taxi:before {
    content: "\e852";
}

.icon2-car-siren:before {
    content: "\e853";
}

.icon2-car-wash3:before {
    content: "\e854";
}

.icon2-car-wash4:before {
    content: "\e855";
}

.icon2-ambulance:before {
    content: "\e856";
}

.icon2-truck:before {
    content: "\e857";
}

.icon2-trailer:before {
    content: "\e858";
}

.icon2-scale-truck:before {
    content: "\e859";
}

.icon2-train:before {
    content: "\e85a";
}

.icon2-ship:before {
    content: "\e85b";
}

.icon2-ship2:before {
    content: "\e85c";
}

.icon2-anchor:before {
    content: "\e85d";
}

.icon2-boat:before {
    content: "\e85e";
}

.icon2-bicycle:before {
    content: "\e85f";
}

.icon2-bicycle2:before {
    content: "\e860";
}

.icon2-dumbbell:before {
    content: "\e861";
}

.icon2-bench-press:before {
    content: "\e862";
}

.icon2-swim:before {
    content: "\e863";
}

.icon2-football:before {
    content: "\e864";
}

.icon2-baseball-bat:before {
    content: "\e865";
}

.icon2-baseball:before {
    content: "\e866";
}

.icon2-tennis:before {
    content: "\e867";
}

.icon2-tennis2:before {
    content: "\e868";
}

.icon2-ping-pong:before {
    content: "\e869";
}

.icon2-hockey:before {
    content: "\e86a";
}

.icon2-8ball:before {
    content: "\e86b";
}

.icon2-bowling:before {
    content: "\e86c";
}

.icon2-bowling-pins:before {
    content: "\e86d";
}

.icon2-golf:before {
    content: "\e86e";
}

.icon2-golf2:before {
    content: "\e86f";
}

.icon2-archery:before {
    content: "\e870";
}

.icon2-slingshot:before {
    content: "\e871";
}

.icon2-soccer:before {
    content: "\e872";
}

.icon2-basketball:before {
    content: "\e873";
}

.icon2-cube:before {
    content: "\e874";
}

.icon2-3d-rotate:before {
    content: "\e875";
}

.icon2-puzzle:before {
    content: "\e876";
}

.icon2-glasses:before {
    content: "\e877";
}

.icon2-glasses2:before {
    content: "\e878";
}

.icon2-accessibility:before {
    content: "\e879";
}

.icon2-wheelchair:before {
    content: "\e87a";
}

.icon2-wall:before {
    content: "\e87b";
}

.icon2-fence:before {
    content: "\e87c";
}

.icon2-wall2:before {
    content: "\e87d";
}

.icon2-icons:before {
    content: "\e87e";
}

.icon2-resize-handle:before {
    content: "\e87f";
}

.icon2-icons2:before {
    content: "\e880";
}

.icon2-select:before {
    content: "\e881";
}

.icon2-select2:before {
    content: "\e882";
}

.icon2-site-map:before {
    content: "\e883";
}

.icon2-earth:before {
    content: "\e884";
}

.icon2-earth-lock:before {
    content: "\e885";
}

.icon2-network:before {
    content: "\e886";
}

.icon2-network-lock:before {
    content: "\e887";
}

.icon2-planet:before {
    content: "\e888";
}

.icon2-happy:before {
    content: "\e889";
}

.icon2-smile:before {
    content: "\e88a";
}

.icon2-grin:before {
    content: "\e88b";
}

.icon2-tongue:before {
    content: "\e88c";
}

.icon2-sad:before {
    content: "\e88d";
}

.icon2-wink:before {
    content: "\e88e";
}

.icon2-dream:before {
    content: "\e88f";
}

.icon2-shocked:before {
    content: "\e890";
}

.icon2-shocked2:before {
    content: "\e891";
}

.icon2-tongue2:before {
    content: "\e892";
}

.icon2-neutral:before {
    content: "\e893";
}

.icon2-happy-grin:before {
    content: "\e894";
}

.icon2-cool:before {
    content: "\e895";
}

.icon2-mad:before {
    content: "\e896";
}

.icon2-grin-evil:before {
    content: "\e897";
}

.icon2-evil:before {
    content: "\e898";
}

.icon2-wow:before {
    content: "\e899";
}

.icon2-annoyed:before {
    content: "\e89a";
}

.icon2-wondering:before {
    content: "\e89b";
}

.icon2-confused:before {
    content: "\e89c";
}

.icon2-zipped:before {
    content: "\e89d";
}

.icon2-grumpy:before {
    content: "\e89e";
}

.icon2-mustache:before {
    content: "\e89f";
}

.icon2-tombstone-hipster:before {
    content: "\e8a0";
}

.icon2-tombstone:before {
    content: "\e8a1";
}

.icon2-ghost:before {
    content: "\e8a2";
}

.icon2-ghost-hipster:before {
    content: "\e8a3";
}

.icon2-halloween:before {
    content: "\e8a4";
}

.icon2-christmas:before {
    content: "\e8a5";
}

.icon2-easter-egg:before {
    content: "\e8a6";
}

.icon2-mustache2:before {
    content: "\e8a7";
}

.icon2-mustache-glasses:before {
    content: "\e8a8";
}

.icon2-pipe:before {
    content: "\e8a9";
}

.icon2-alarm:before {
    content: "\e8aa";
}

.icon2-alarm-add:before {
    content: "\e8ab";
}

.icon2-alarm-snooze:before {
    content: "\e8ac";
}

.icon2-alarm-ringing:before {
    content: "\e8ad";
}

.icon2-bullhorn:before {
    content: "\e8ae";
}

.icon2-hearing:before {
    content: "\e8af";
}

.icon2-volume-high:before {
    content: "\e8b0";
}

.icon2-volume-medium:before {
    content: "\e8b1";
}

.icon2-volume-low:before {
    content: "\e8b2";
}

.icon2-volume:before {
    content: "\e8b3";
}

.icon2-mute:before {
    content: "\e8b4";
}

.icon2-lan:before {
    content: "\e8b5";
}

.icon2-lan2:before {
    content: "\e8b6";
}

.icon2-wifi:before {
    content: "\e8b7";
}

.icon2-wifi-lock:before {
    content: "\e8b8";
}

.icon2-wifi-blocked:before {
    content: "\e8b9";
}

.icon2-wifi-mid:before {
    content: "\e8ba";
}

.icon2-wifi-low:before {
    content: "\e8bb";
}

.icon2-wifi-low2:before {
    content: "\e8bc";
}

.icon2-wifi-alert:before {
    content: "\e8bd";
}

.icon2-wifi-alert-mid:before {
    content: "\e8be";
}

.icon2-wifi-alert-low:before {
    content: "\e8bf";
}

.icon2-wifi-alert-low2:before {
    content: "\e8c0";
}

.icon2-stream:before {
    content: "\e8c1";
}

.icon2-stream-check:before {
    content: "\e8c2";
}

.icon2-stream-error:before {
    content: "\e8c3";
}

.icon2-stream-alert:before {
    content: "\e8c4";
}

.icon2-communication:before {
    content: "\e8c5";
}

.icon2-communication-crossed:before {
    content: "\e8c6";
}

.icon2-broadcast:before {
    content: "\e8c7";
}

.icon2-antenna:before {
    content: "\e8c8";
}

.icon2-satellite:before {
    content: "\e8c9";
}

.icon2-satellite2:before {
    content: "\e8ca";
}

.icon2-mic:before {
    content: "\e8cb";
}

.icon2-mic-mute:before {
    content: "\e8cc";
}

.icon2-mic2:before {
    content: "\e8cd";
}

.icon2-spotlights:before {
    content: "\e8ce";
}

.icon2-hourglass:before {
    content: "\e8cf";
}

.icon2-loading:before {
    content: "\e8d0";
}

.icon2-loading2:before {
    content: "\e8d1";
}

.icon2-loading3:before {
    content: "\e8d2";
}

.icon2-refresh:before {
    content: "\e8d3";
}

.icon2-refresh2:before {
    content: "\e8d4";
}

.icon2-undo:before {
    content: "\e8d5";
}

.icon2-redo:before {
    content: "\e8d6";
}

.icon2-jump2:before {
    content: "\e8d7";
}

.icon2-undo2:before {
    content: "\e8d8";
}

.icon2-redo2:before {
    content: "\e8d9";
}

.icon2-sync:before {
    content: "\e8da";
}

.icon2-repeat-one2:before {
    content: "\e8db";
}

.icon2-sync-crossed:before {
    content: "\e8dc";
}

.icon2-sync2:before {
    content: "\e8dd";
}

.icon2-repeat-one3:before {
    content: "\e8de";
}

.icon2-sync-crossed2:before {
    content: "\e8df";
}

.icon2-return:before {
    content: "\e8e0";
}

.icon2-return2:before {
    content: "\e8e1";
}

.icon2-refund:before {
    content: "\e8e2";
}

.icon2-history:before {
    content: "\e8e3";
}

.icon2-history2:before {
    content: "\e8e4";
}

.icon2-self-timer:before {
    content: "\e8e5";
}

.icon2-clock:before {
    content: "\e8e6";
}

.icon2-clock2:before {
    content: "\e8e7";
}

.icon2-clock3:before {
    content: "\e8e8";
}

.icon2-watch:before {
    content: "\e8e9";
}

.icon2-alarm2:before {
    content: "\e8ea";
}

.icon2-alarm-add2:before {
    content: "\e8eb";
}

.icon2-alarm-remove:before {
    content: "\e8ec";
}

.icon2-alarm-check:before {
    content: "\e8ed";
}

.icon2-alarm-error:before {
    content: "\e8ee";
}

.icon2-timer:before {
    content: "\e8ef";
}

.icon2-timer-crossed:before {
    content: "\e8f0";
}

.icon2-timer2:before {
    content: "\e8f1";
}

.icon2-timer-crossed2:before {
    content: "\e8f2";
}

.icon2-download:before {
    content: "\e8f3";
}

.icon2-upload:before {
    content: "\e8f4";
}

.icon2-download2:before {
    content: "\e8f5";
}

.icon2-upload2:before {
    content: "\e8f6";
}

.icon2-enter-up:before {
    content: "\e8f7";
}

.icon2-enter-down:before {
    content: "\e8f8";
}

.icon2-enter-left:before {
    content: "\e8f9";
}

.icon2-enter-right:before {
    content: "\e8fa";
}

.icon2-exit-up:before {
    content: "\e8fb";
}

.icon2-exit-down:before {
    content: "\e8fc";
}

.icon2-exit-left:before {
    content: "\e8fd";
}

.icon2-exit-right:before {
    content: "\e8fe";
}

.icon2-enter-up2:before {
    content: "\e8ff";
}

.icon2-enter-down2:before {
    content: "\e900";
}

.icon2-enter-vertical:before {
    content: "\e901";
}

.icon2-enter-left2:before {
    content: "\e902";
}

.icon2-enter-right2:before {
    content: "\e903";
}

.icon2-enter-horizontal:before {
    content: "\e904";
}

.icon2-exit-up2:before {
    content: "\e905";
}

.icon2-exit-down2:before {
    content: "\e906";
}

.icon2-exit-left2:before {
    content: "\e907";
}

.icon2-exit-right2:before {
    content: "\e908";
}

.icon2-cli:before {
    content: "\e909";
}

.icon2-bug:before {
    content: "\e90a";
}

.icon2-code:before {
    content: "\e90b";
}

.icon2-file-code:before {
    content: "\e90c";
}

.icon2-file-image:before {
    content: "\e90d";
}

.icon2-file-zip:before {
    content: "\e90e";
}

.icon2-file-audio:before {
    content: "\e90f";
}

.icon2-file-video:before {
    content: "\e910";
}

.icon2-file-preview:before {
    content: "\e911";
}

.icon2-file-charts:before {
    content: "\e912";
}

.icon2-file-stats:before {
    content: "\e913";
}

.icon2-file-spreadsheet:before {
    content: "\e914";
}

.icon2-link:before {
    content: "\e915";
}

.icon2-unlink:before {
    content: "\e916";
}

.icon2-link2:before {
    content: "\e917";
}

.icon2-unlink2:before {
    content: "\e918";
}

.icon2-thumbs-up:before {
    content: "\e919";
}

.icon2-thumbs-down:before {
    content: "\e91a";
}

.icon2-thumbs-up2:before {
    content: "\e91b";
}

.icon2-thumbs-down2:before {
    content: "\e91c";
}

.icon2-thumbs-up3:before {
    content: "\e91d";
}

.icon2-thumbs-down3:before {
    content: "\e91e";
}

.icon2-share:before {
    content: "\e91f";
}

.icon2-share2:before {
    content: "\e920";
}

.icon2-share3:before {
    content: "\e921";
}

.icon2-magnifier:before {
    content: "\e922";
}

.icon2-file-search:before {
    content: "\e923";
}

.icon2-find-replace:before {
    content: "\e924";
}

.icon2-zoom-in:before {
    content: "\e925";
}

.icon2-zoom-out:before {
    content: "\e926";
}

.icon2-loupe:before {
    content: "\e927";
}

.icon2-loupe-zoom-in:before {
    content: "\e928";
}

.icon2-loupe-zoom-out:before {
    content: "\e929";
}

.icon2-cross:before {
    content: "\e92a";
}

.icon2-menu:before {
    content: "\e92b";
}

.icon2-list:before {
    content: "\e92c";
}

.icon2-list2:before {
    content: "\e92d";
}

.icon2-list3:before {
    content: "\e92e";
}

.icon2-menu2:before {
    content: "\e92f";
}

.icon2-list4:before {
    content: "\e930";
}

.icon2-menu3:before {
    content: "\e931";
}

.icon2-exclamation:before {
    content: "\e932";
}

.icon2-question:before {
    content: "\e933";
}

.icon2-check:before {
    content: "\e934";
}

.icon2-cross2:before {
    content: "\e935";
}

.icon2-plus:before {
    content: "\e936";
}

.icon2-minus:before {
    content: "\e937";
}

.icon2-percent:before {
    content: "\e938";
}

.icon2-chevron-up:before {
    content: "\e939";
}

.icon2-chevron-down:before {
    content: "\e93a";
}

.icon2-chevron-left:before {
    content: "\e93b";
}

.icon2-chevron-right:before {
    content: "\e93c";
}

.icon2-chevrons-expand-vertical:before {
    content: "\e93d";
}

.icon2-chevrons-expand-horizontal:before {
    content: "\e93e";
}

.icon2-chevrons-contract-vertical:before {
    content: "\e93f";
}

.icon2-chevrons-contract-horizontal:before {
    content: "\e940";
}

.icon2-arrow-up:before {
    content: "\e941";
}

.icon2-arrow-down:before {
    content: "\e942";
}

.icon2-arrow-left:before {
    content: "\e943";
}

.icon2-arrow-right:before {
    content: "\e944";
}

.icon2-arrow-up-right:before {
    content: "\e945";
}

.icon2-arrows-merge:before {
    content: "\e946";
}

.icon2-arrows-split:before {
    content: "\e947";
}

.icon2-arrow-divert:before {
    content: "\e948";
}

.icon2-arrow-return:before {
    content: "\e949";
}

.icon2-expand:before {
    content: "\e94a";
}

.icon2-contract:before {
    content: "\e94b";
}

.icon2-expand2:before {
    content: "\e94c";
}

.icon2-contract2:before {
    content: "\e94d";
}

.icon2-move:before {
    content: "\e94e";
}

.icon2-tab:before {
    content: "\e94f";
}

.icon2-arrow-wave:before {
    content: "\e950";
}

.icon2-expand3:before {
    content: "\e951";
}

.icon2-expand4:before {
    content: "\e952";
}

.icon2-contract3:before {
    content: "\e953";
}

.icon2-notification:before {
    content: "\e954";
}

.icon2-warning:before {
    content: "\e955";
}

.icon2-notification-circle:before {
    content: "\e956";
}

.icon2-question-circle:before {
    content: "\e957";
}

.icon2-menu-circle:before {
    content: "\e958";
}

.icon2-checkmark-circle:before {
    content: "\e959";
}

.icon2-cross-circle:before {
    content: "\e95a";
}

.icon2-plus-circle:before {
    content: "\e95b";
}

.icon2-circle-minus:before {
    content: "\e95c";
}

.icon2-percent-circle:before {
    content: "\e95d";
}

.icon2-arrow-up-circle:before {
    content: "\e95e";
}

.icon2-arrow-down-circle:before {
    content: "\e95f";
}

.icon2-arrow-left-circle:before {
    content: "\e960";
}

.icon2-arrow-right-circle:before {
    content: "\e961";
}

.icon2-chevron-up-circle:before {
    content: "\e962";
}

.icon2-chevron-down-circle:before {
    content: "\e963";
}

.icon2-chevron-left-circle:before {
    content: "\e964";
}

.icon2-chevron-right-circle:before {
    content: "\e965";
}

.icon2-backward-circle:before {
    content: "\e966";
}

.icon2-first-circle:before {
    content: "\e967";
}

.icon2-previous-circle:before {
    content: "\e968";
}

.icon2-stop-circle:before {
    content: "\e969";
}

.icon2-play-circle:before {
    content: "\e96a";
}

.icon2-pause-circle:before {
    content: "\e96b";
}

.icon2-next-circle:before {
    content: "\e96c";
}

.icon2-last-circle:before {
    content: "\e96d";
}

.icon2-forward-circle:before {
    content: "\e96e";
}

.icon2-eject-circle:before {
    content: "\e96f";
}

.icon2-crop:before {
    content: "\e970";
}

.icon2-frame-expand:before {
    content: "\e971";
}

.icon2-frame-contract:before {
    content: "\e972";
}

.icon2-focus:before {
    content: "\e973";
}

.icon2-transform:before {
    content: "\e974";
}

.icon2-grid:before {
    content: "\e975";
}

.icon2-grid-crossed:before {
    content: "\e976";
}

.icon2-layers:before {
    content: "\e977";
}

.icon2-layers-crossed:before {
    content: "\e978";
}

.icon2-toggle:before {
    content: "\e979";
}

.icon2-rulers:before {
    content: "\e97a";
}

.icon2-ruler:before {
    content: "\e97b";
}

.icon2-funnel:before {
    content: "\e97c";
}

.icon2-flip-horizontal:before {
    content: "\e97d";
}

.icon2-flip-vertical:before {
    content: "\e97e";
}

.icon2-flip-horizontal2:before {
    content: "\e97f";
}

.icon2-flip-vertical2:before {
    content: "\e980";
}

.icon2-angle:before {
    content: "\e981";
}

.icon2-angle2:before {
    content: "\e982";
}

.icon2-subtract:before {
    content: "\e983";
}

.icon2-combine:before {
    content: "\e984";
}

.icon2-intersect:before {
    content: "\e985";
}

.icon2-exclude:before {
    content: "\e986";
}

.icon2-align-center-vertical:before {
    content: "\e987";
}

.icon2-align-right:before {
    content: "\e988";
}

.icon2-align-bottom:before {
    content: "\e989";
}

.icon2-align-left:before {
    content: "\e98a";
}

.icon2-align-center-horizontal:before {
    content: "\e98b";
}

.icon2-align-top:before {
    content: "\e98c";
}

.icon2-square:before {
    content: "\e98d";
}

.icon2-plus-square:before {
    content: "\e98e";
}

.icon2-minus-square:before {
    content: "\e98f";
}

.icon2-percent-square:before {
    content: "\e990";
}

.icon2-arrow-up-square:before {
    content: "\e991";
}

.icon2-arrow-down-square:before {
    content: "\e992";
}

.icon2-arrow-left-square:before {
    content: "\e993";
}

.icon2-arrow-right-square:before {
    content: "\e994";
}

.icon2-chevron-up-square:before {
    content: "\e995";
}

.icon2-chevron-down-square:before {
    content: "\e996";
}

.icon2-chevron-left-square:before {
    content: "\e997";
}

.icon2-chevron-right-square:before {
    content: "\e998";
}

.icon2-check-square:before {
    content: "\e999";
}

.icon2-cross-square:before {
    content: "\e99a";
}

.icon2-menu-square:before {
    content: "\e99b";
}

.icon2-prohibited:before {
    content: "\e99c";
}

.icon2-circle:before {
    content: "\e99d";
}

.icon2-radio-button:before {
    content: "\e99e";
}

.icon2-ligature:before {
    content: "\e99f";
}

.icon2-text-format:before {
    content: "\e9a0";
}

.icon2-text-format-remove:before {
    content: "\e9a1";
}

.icon2-text-size:before {
    content: "\e9a2";
}

.icon2-bold:before {
    content: "\e9a3";
}

.icon2-italic:before {
    content: "\e9a4";
}

.icon2-underline:before {
    content: "\e9a5";
}

.icon2-strikethrough:before {
    content: "\e9a6";
}

.icon2-highlight:before {
    content: "\e9a7";
}

.icon2-text-align-left:before {
    content: "\e9a8";
}

.icon2-text-align-center:before {
    content: "\e9a9";
}

.icon2-text-align-right:before {
    content: "\e9aa";
}

.icon2-text-align-justify:before {
    content: "\e9ab";
}

.icon2-line-spacing:before {
    content: "\e9ac";
}

.icon2-indent-increase:before {
    content: "\e9ad";
}

.icon2-indent-decrease:before {
    content: "\e9ae";
}

.icon2-text-wrap:before {
    content: "\e9af";
}

.icon2-pilcrow:before {
    content: "\e9b0";
}

.icon2-direction-ltr:before {
    content: "\e9b1";
}

.icon2-direction-rtl:before {
    content: "\e9b2";
}

.icon2-page-break:before {
    content: "\e9b3";
}

.icon2-page-break2:before {
    content: "\e9b4";
}

.icon2-sort-alpha-asc:before {
    content: "\e9b5";
}

.icon2-sort-alpha-desc:before {
    content: "\e9b6";
}

.icon2-sort-numeric-asc:before {
    content: "\e9b7";
}

.icon2-sort-numeric-desc:before {
    content: "\e9b8";
}

.icon2-sort-amount-asc:before {
    content: "\e9b9";
}

.icon2-sort-amount-desc:before {
    content: "\e9ba";
}

.icon2-sort-time-asc:before {
    content: "\e9bb";
}

.icon2-sort-time-desc:before {
    content: "\e9bc";
}

.icon2-sigma:before {
    content: "\e9bd";
}

.icon2-pencil-line:before {
    content: "\e9be";
}

.icon2-hand:before {
    content: "\e9bf";
}

.icon2-pointer-up:before {
    content: "\e9c0";
}

.icon2-pointer-right:before {
    content: "\e9c1";
}

.icon2-pointer-down:before {
    content: "\e9c2";
}

.icon2-pointer-left:before {
    content: "\e9c3";
}

.icon2-finger-tap:before {
    content: "\e9c4";
}

.icon2-fingers-tap:before {
    content: "\e9c5";
}

.icon2-reminder:before {
    content: "\e9c6";
}

.icon2-fingers-crossed:before {
    content: "\e9c7";
}

.icon2-fingers-victory:before {
    content: "\e9c8";
}

.icon2-gesture-zoom:before {
    content: "\e9c9";
}

.icon2-gesture-pinch:before {
    content: "\e9ca";
}

.icon2-fingers-scroll-horizontal:before {
    content: "\e9cb";
}

.icon2-fingers-scroll-vertical:before {
    content: "\e9cc";
}

.icon2-fingers-scroll-left:before {
    content: "\e9cd";
}

.icon2-fingers-scroll-right:before {
    content: "\e9ce";
}

.icon2-hand2:before {
    content: "\e9cf";
}

.icon2-pointer-up2:before {
    content: "\e9d0";
}

.icon2-pointer-right2:before {
    content: "\e9d1";
}

.icon2-pointer-down2:before {
    content: "\e9d2";
}

.icon2-pointer-left2:before {
    content: "\e9d3";
}

.icon2-finger-tap2:before {
    content: "\e9d4";
}

.icon2-fingers-tap2:before {
    content: "\e9d5";
}

.icon2-reminder2:before {
    content: "\e9d6";
}

.icon2-gesture-zoom2:before {
    content: "\e9d7";
}

.icon2-gesture-pinch2:before {
    content: "\e9d8";
}

.icon2-fingers-scroll-horizontal2:before {
    content: "\e9d9";
}

.icon2-fingers-scroll-vertical2:before {
    content: "\e9da";
}

.icon2-fingers-scroll-left2:before {
    content: "\e9db";
}

.icon2-fingers-scroll-right2:before {
    content: "\e9dc";
}

.icon2-fingers-scroll-vertical3:before {
    content: "\e9dd";
}

.icon2-border-style:before {
    content: "\e9de";
}

.icon2-border-all:before {
    content: "\e9df";
}

.icon2-border-outer:before {
    content: "\e9e0";
}

.icon2-border-inner:before {
    content: "\e9e1";
}

.icon2-border-top:before {
    content: "\e9e2";
}

.icon2-border-horizontal:before {
    content: "\e9e3";
}

.icon2-border-bottom:before {
    content: "\e9e4";
}

.icon2-border-left:before {
    content: "\e9e5";
}

.icon2-border-vertical:before {
    content: "\e9e6";
}

.icon2-border-right:before {
    content: "\e9e7";
}

.icon2-border-none:before {
    content: "\e9e8";
}

.icon2-ellipsis:before {
    content: "\e9e9";
}

.icon2-uni21:before {
    content: "\21";
}

.icon2-uni22:before {
    content: "\22";
}

.icon2-uni23:before {
    content: "\23";
}

.icon2-uni24:before {
    content: "\24";
}

.icon2-uni25:before {
    content: "\25";
}

.icon2-uni26:before {
    content: "\26";
}

.icon2-uni27:before {
    content: "\27";
}

.icon2-uni28:before {
    content: "\28";
}

.icon2-uni29:before {
    content: "\29";
}

.icon2-uni2a:before {
    content: "\2a";
}

.icon2-uni2b:before {
    content: "\2b";
}

.icon2-uni2c:before {
    content: "\2c";
}

.icon2-uni2d:before {
    content: "\2d";
}

.icon2-uni2e:before {
    content: "\2e";
}

.icon2-uni2f:before {
    content: "\2f";
}

.icon2-uni30:before {
    content: "\30";
}

.icon2-uni31:before {
    content: "\31";
}

.icon2-uni32:before {
    content: "\32";
}

.icon2-uni33:before {
    content: "\33";
}

.icon2-uni34:before {
    content: "\34";
}

.icon2-uni35:before {
    content: "\35";
}

.icon2-uni36:before {
    content: "\36";
}

.icon2-uni37:before {
    content: "\37";
}

.icon2-uni38:before {
    content: "\38";
}

.icon2-uni39:before {
    content: "\39";
}

.icon2-uni3a:before {
    content: "\3a";
}

.icon2-uni3b:before {
    content: "\3b";
}

.icon2-uni3c:before {
    content: "\3c";
}

.icon2-uni3d:before {
    content: "\3d";
}

.icon2-uni3e:before {
    content: "\3e";
}

.icon2-uni3f:before {
    content: "\3f";
}

.icon2-uni40:before {
    content: "\40";
}

.icon2-uni41:before {
    content: "\41";
}

.icon2-uni42:before {
    content: "\42";
}

.icon2-uni43:before {
    content: "\43";
}

.icon2-uni44:before {
    content: "\44";
}

.icon2-uni45:before {
    content: "\45";
}

.icon2-uni46:before {
    content: "\46";
}

.icon2-uni47:before {
    content: "\47";
}

.icon2-uni48:before {
    content: "\48";
}

.icon2-uni49:before {
    content: "\49";
}

.icon2-uni4a:before {
    content: "\4a";
}

.icon2-uni4b:before {
    content: "\4b";
}

.icon2-uni4c:before {
    content: "\4c";
}

.icon2-uni4d:before {
    content: "\4d";
}

.icon2-uni4e:before {
    content: "\4e";
}

.icon2-uni4f:before {
    content: "\4f";
}

.icon2-uni50:before {
    content: "\50";
}

.icon2-uni51:before {
    content: "\51";
}

.icon2-uni52:before {
    content: "\52";
}

.icon2-uni53:before {
    content: "\53";
}

.icon2-uni54:before {
    content: "\54";
}

.icon2-uni55:before {
    content: "\55";
}

.icon2-uni56:before {
    content: "\56";
}

.icon2-uni57:before {
    content: "\57";
}

.icon2-uni58:before {
    content: "\58";
}

.icon2-uni59:before {
    content: "\59";
}

.icon2-uni5a:before {
    content: "\5a";
}

.icon2-uni5b:before {
    content: "\5b";
}

.icon2-uni5c:before {
    content: "\5c";
}

.icon2-uni5d:before {
    content: "\5d";
}

.icon2-uni5e:before {
    content: "\5e";
}

.icon2-uni5f:before {
    content: "\5f";
}

.icon2-uni60:before {
    content: "\60";
}

.icon2-uni61:before {
    content: "\61";
}

.icon2-uni62:before {
    content: "\62";
}

.icon2-uni63:before {
    content: "\63";
}

.icon2-uni64:before {
    content: "\64";
}

.icon2-uni65:before {
    content: "\65";
}

.icon2-uni66:before {
    content: "\66";
}

.icon2-uni67:before {
    content: "\67";
}

.icon2-uni68:before {
    content: "\68";
}

.icon2-uni69:before {
    content: "\69";
}

.icon2-uni6a:before {
    content: "\6a";
}

.icon2-uni6b:before {
    content: "\6b";
}

.icon2-uni6c:before {
    content: "\6c";
}

.icon2-uni6d:before {
    content: "\6d";
}

.icon2-uni6e:before {
    content: "\6e";
}

.icon2-uni6f:before {
    content: "\6f";
}

.icon2-uni70:before {
    content: "\70";
}

.icon2-uni71:before {
    content: "\71";
}

.icon2-uni72:before {
    content: "\72";
}

.icon2-uni73:before {
    content: "\73";
}

.icon2-uni74:before {
    content: "\74";
}

.icon2-uni75:before {
    content: "\75";
}

.icon2-uni76:before {
    content: "\76";
}

.icon2-uni77:before {
    content: "\77";
}

.icon2-uni78:before {
    content: "\78";
}

.icon2-uni79:before {
    content: "\79";
}

.icon2-uni7a:before {
    content: "\7a";
}

.icon2-uni7b:before {
    content: "\7b";
}

.icon2-uni7c:before {
    content: "\7c";
}

.icon2-uni7d:before {
    content: "\7d";
}

.icon2-uni7e:before {
    content: "\7e";
}

.icon2-copyright:before {
    content: "\a9";
}


@media (min-width: 48rem) {
    .salary-guide .site-header {
        height: 3.75rem;
        text-align: left;
        padding: 1.125rem 20px;
    }

    .salary-guide .nav-container nav .nav-links-section .dropdown-menu {
        position: absolute;
        background-color: rgba(51, 51, 51, 0.95);
        margin-left: -14px;
        margin: 0;
        margin-top: 22px;
        display: none;
        margin-right: 0px;
    }

    .salary-guide .nav-container nav .nav-links-section a.main-menu:hover {
        text-decoration: none;
        margin-bottom: -1px;
    }
}

.salary-guide .page-title {
    font-size: 40px;
    line-height: 100px;
    text-align: center;
    color: #ed1c24;
    font-family: houschka_rounded-bold !important;
    position: relative;
    /*    background: url(assets/images/backgrounds/banner-bg.jpg) no-repeat 50% 50%;*/
    background-size: cover;
    padding: 0 20%;
    text-align: center;
}

    .salary-guide .page-title h1 {
        position: relative;
        z-index: 10;
        padding: 10px 0;
        margin: 0 auto;
        max-width: 950px;
        font-weight: 400;
        text-align: center;
        color: #ed1c24;
        display: inline-block;
        vertical-align: middle;
        text-transform: capitalize;
        font-size: 40px;
    }

.salary-guide .page-banner {
    display: inline-block;
    width: 100%;
    /*        height: 400px;*/
    background: url(assets/images/backgrounds/bg-services-lg.png) no-repeat center center fixed;
    /*-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;*/
    background-size: cover;
    margin-bottom: -5px;
}

.salary-guide .txt-banner {
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    color: #fff;
    margin-top: 40px;
    text-indent: 20px; /*        font-family: houschka_rounded-bold!important;*/
}

.salary-guide .salary-banner {
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    margin-top: 30px;
}

    .salary-guide .salary-banner img {
        display: inline-block;
    }

.list-job-salary {
    list-style: none;
    font-size: 18px;
    margin-right: 0px;
    margin-left: 0px;
    overflow-y: scroll;
    height: 367px;
}

    .list-job-salary li div {
        border-bottom: 1px solid #ccc;
        line-height: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-left: 10px;
        cursor: pointer;
        padding-right: 20px;
    }

    .list-job-salary li {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0px;
        padding-left: 0px;
    }

        .list-job-salary li div:hover {
            background-color: #ddd;
        }

        .list-job-salary li div.active {
            background-color: #ed1c24;
            color: white;
            -webkit-border-radius: 7px;
            -moz-border-radius: 7px;
            border-radius: 7px;
        }

            .list-job-salary li div.active:after {
                content: "\e965";
                font-family: 'Linearicons';
                speak: none;
                font-style: normal;
                font-weight: normal;
                font-variant: normal;
                text-transform: none;
                line-height: 1;
                /* Enable Ligatures ================ */
                -webkit-font-feature-settings: "liga";
                -moz-font-feature-settings: "liga=1";
                -moz-font-feature-settings: "liga";
                /*-ms-font-feature-settings: "liga" 1;*/
                /*-o-font-feature-settings: "liga";*/
                font-feature-settings: "liga";
                /* Better Font Rendering =========== */
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                font-size: 20px;
                margin-right: -10px;
                display: inline-block;
                float: right;
            }


#list-position {
    margin-left: 20px;
    margin-right: 20px;
}

    #list-position .search {
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        width: 100%;
        border: none;
        border: 1px solid #ddd;
        font-size: 17px;
        line-height: 35px;
        text-indent: 20px;
    }

.apply__profile-header .icon {
    font-size: 50px;
    /*    color: #222;*/
    margin-right: 10px;
}

.salary-guide .head {
    top: 0 !important;
}

.job-des {
    padding: 0 20px;
}

    .job-des table {
        width: 100%;
    }

        .job-des table td {
            padding: 10px;
            border: 1px solid #ccc;
            font-size: 18px;
            text-align: center;
        }

            .job-des table td.left {
                text-align: left;
            }

.txt-black {
    color: black;
    font-weight: 800;
}

.txt-red {
    color: #ed1c24;
}

.salary-top {
    display: inline-block;
    width: 100%;
    text-align: center;
}

    .salary-top p {
        padding-right: 0px !important;
    }

tr.bg-color td {
    background-color: #f5f5f5;
}

.btn-des {
    border-bottom: none;
    cursor: pointer;
    color: #f1575d
}

    .btn-des:hover {
        border-bottom: none;
        cursor: pointer;
        color: #344;
    }

    .btn-des.active {
        border-bottom: 2px solid #ed1c24 !important;
        color: #ed1c24;
    }

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    top: 30px;
}

/*@media only screen and (min-height: 600px) {
    .modal-dialog {
        top: 50px;
    }
}*/

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
    text-align: center;
}

.modal-body {
    position: relative;
    padding: 15px;
    overflow: auto;
    text-align: left;
    max-width: 1100px;
}

.modal-dialog {
    text-align: center;
}

#popup-event .modal-dialog {
    text-align: center;
    position: absolute;
    float: left;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    #popup-event .modal-dialog .close {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 42px;
        opacity: 1;
        color: #fff;
        background: #231f20;
        border-radius: 30px;
        width: 45px;
        height: 45px;
    }

        #popup-event .modal-dialog .close:hover {
            color: #231f20;
            background: #fff;
        }

@media (max-width:48rem) {
    #popup-event .modal-dialog {
        position: relative;
        margin: 0 auto;
        padding: 0;
    }
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    /*width: fit-content;*/
    height: 100%;
    text-align: left;
}

@media (min-width:48rem) {
    .modal-content {
        padding: 20px;
        display: inline-block;
    }
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}


.home-hcs-service {
    background: url('assets/images/backgrounds/bg-generic-gradient.png') center no-repeat #c5191f;
    background-size: cover;
    padding: 1.5rem 0
}

    .home-hcs-service:after,
    .home-hcs-service:before {
        content: " ";
        display: table
    }

@media (min-width:48rem) {
    .promo__article .promo-inline-image {
        right: 1.25rem
    }

    .home-hcs-service {
        background-image: url(assets/images/backgrounds/bg-home-hcs-service.jpg);
        height: 300px
    }

        .home-hcs-service .content {
            margin-top: 3rem;
            width: 65%
        }
}

.home-hcs-service .content .btn {
    display: block !important
}

.home-hcs-service h1 {
    font-size: 2.1875rem;
    line-height: 2.1875rem;
    color: #fff;
    margin-bottom: .5rem;
    margin-top: 0
}

@media (min-width:48rem) {
    .home-hcs-service .content .btn {
        display: inline-block !important
    }

    .home-hcs-service h1 {
        font-size: 2.5rem;
        line-height: 2.5rem
    }
}

@media (min-width:62rem) {
    .home-hcs-service {
        height: 535px
    }

        .home-hcs-service .content {
            width: 60%
        }

        .home-hcs-service h1 {
            font-size: 3.75rem;
            line-height: 3.75rem;
            margin-bottom: 1rem
        }
}

@media (min-width:75rem) {
    .home-hcs-service {
        height: 535px
    }

        .home-hcs-service h1 {
            font-size: 4.375rem;
            line-height: 4.375rem;
            margin-bottom: 1.5rem
        }
}

.home-hcs-service p {
    color: #fff;
    margin-bottom: 1.5rem
}

@media (min-width:62rem) {
    .home-hcs-service p {
        font-size: 1.25rem;
        line-height: 1.25rem
    }
}

@media (min-width:75rem) {
    .home-hcs-service p {
        font-size: 1.9rem;
        line-height: 2.5rem;
        margin-bottom: 2rem
    }
}

.home-hcs-service .logo-adecco {
    display: none
}

@media (min-width:48rem) {
    .home-hcs-service .logo-adecco {
        display: inline-block;
        margin-bottom: 1rem
    }
}

.home-hcs-service li {
    font-family: houschka_headmedium, Helvetica, Arial, sans-serif;
}

.bg-ebook {
    background: white;
}

    .bg-ebook img {
        padding: 20px;
    }

    .bg-ebook img {
        padding: 20px;
    }

    .bg-ebook h4 {
        margin-bottom: 10px;
    }

    .bg-ebook p {
        margin-top: 5px;
        font-size: 20px;
    }

@media (max-width: 48rem) {
    .bg-ebook-text {
        text-align: center;
        margin-bottom: 25px;
    }
}

@media (min-width: 62rem) {
    .special-project p, .walk-in p {
        font-size: 17px;
        line-height: 22px;
        color: #000;
        font-weight: 200 !important;
    }
}

@media (max-width:576px) {
    .title-dot, detail-dot, list-unstyled {
        height: auto;
    }

    .icon-pin-outline {
        margin-left: -5px;
    }
}

@media (min-width:576px) {
    .title-dot {
        height: 50px;
    }

    .detail-dot {
        height: 115px;
    }

    .list-unstyled-location-date {
        height: 80px;
    }

    .list-unstyled-location {
        height: 50px;
    }
}

img {
    max-width: 100%
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-item .item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}

.job-card .item {
    display: flex;
    height: 650px;
}

    .job-card .item .card img {
        max-height: 275px;
        width: 100%
    }

#cookieConsent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
}

    #cookieConsent .cookie-policy {
        line-height: 40px;
        background: #231f20;
    }

        #cookieConsent .cookie-policy div {
            padding: 4px 24px 4px 24px;
            font-size: 16px;
            line-height: 1.5em;
            color: #fff;
            display: flex;
            align-items: center;
            min-height: 50px;
            border-top: 3px solid #ffffff;
        }

    #cookieConsent .btn {
        color: #fff;
        border-radius: 0;
        padding: 1rem;
        cursor: pointer;
        border-top: 3px solid #ffffff;
    }

    @media only screen and (max-width: 600px) {
        #cookieConsent .cookie-policy div {
            padding: 4px 24px 4px 24px;
            font-size: 14px;
            line-height: 18px;
            color: #fff;
            display: flex;
            align-items: center;
            min-height: 50px;
            border-top: 1px solid #fff;
        }
        
        #cookieConsent .btn {
            color: #fff;
            border-radius: 0;
            cursor: pointer;
            border-top: 1px solid #fff;
            font-size: 16px;
            line-height: 40px;
            min-height: 40px;
            padding: 0px;
        }
        }

    #cookieConsent .btn-black {
        background-color: #231f20;
    }

        #cookieConsent .btn-black:hover {
            color: #000 !important;
            background-color: #fff !important;
        }

    #cookieConsent .btn-red {
        background: #ed1c24;
    }

        #cookieConsent .btn-red:hover {
            background-color: rgb(255, 84, 74);
        }

    #cookieConsent .cookie-policy-collape, #cookieConsent .cookie-policy-setting-collape, #cookieConsent .cookie-policy-setting {
        color: #fff;
        background-color: #231f20;
    }

    #cookieConsent .cookie-policy-collape, #cookieConsent .cookie-policy-setting-collape {
        width: 200px;
        text-align: center;
        line-height: 40px;
        margin-left: 40px;
        border-radius: 10px 10px 0px 0px;
        cursor: pointer;
        border: 1px solid #fff;
        border-bottom: 0px;
        float: left;
    }

    #cookieConsent .cookie-policy-setting-collape {
        width: 250px;
    }

section.cookie-policy-setting .head-section p.h4, section.cookie-policy-setting .body-section h6 {
    float: left;
}

section.cookie-policy-setting .head-section .base-form, section.cookie-policy-setting .body-section .base-form {
    float: right;
    min-width: 100px;
    height: 90px;
}

section.cookie-policy-setting .body-section .topic {
    float: right;
}

    section.cookie-policy-setting .body-section .topic .title {
        cursor: pointer;
        border-bottom: 1px solid #000;
    }

    section.cookie-policy-setting .body-section .topic .btn-collapse {
        margin-top: 22px;
        display: inline-block;
        text-align: center;
        color: #c5191f;
        border: 1px solid #fff;
        border-radius: .4rem;
        font-weight: 800;
        background-color: transparent;
        width: 36px;
        height: 30px;
        font-size: 170%;
        vertical-align: baseline;
        /*float: right;*/
    }

section.cookie-policy-setting .body-section table {
    margin-top: 20px;
    width: 100%;
    border: 1px solid #ed1c24;
    border-radius: 3px 4px 0px 0px;
}

    section.cookie-policy-setting .body-section table tfoot {
        border-top: 1px solid #ed1c24;
    }

    section.cookie-policy-setting .body-section table th {
        text-align: center;
        background-color: #ed1c24;
        color: white;
    }

        section.cookie-policy-setting .body-section table th.third-party-title {
            text-align: center;
            color: #ed1c24;
            background-color: white;
            border-top: 1px solid #ed1c24;
            border-bottom: 1px solid #ed1c24;
            padding-top: 10px;
            padding-bottom: 10px;
        }

    section.cookie-policy-setting .body-section table td {
        text-align: left;
        padding: 5px;
        vertical-align: top;
    }

    section.cookie-policy-setting .body-section table th:nth-child(1) {
        width: 25%;
    }

    section.cookie-policy-setting .body-section table th:nth-child(2) {
        width: 15%;
    }

    section.cookie-policy-setting .body-section table th:nth-child(3) {
        width: 45%;
    }

    section.cookie-policy-setting .body-section table th:nth-child(4) {
        width: 15%;
    }

    section.cookie-policy-setting .body-section table td:nth-child(1),
    section.cookie-policy-setting .body-section table td:nth-child(3),
    section.cookie-policy-setting .body-section table td:nth-child(4) {
        text-align: left;
    }

    section.cookie-policy-setting .body-section table td:nth-child(2) {
        text-align: center;
    }

section.cookie-policy-setting .content #btn-cookie-policy-save {
    font-size: 24px;
    padding: 8px 40px;
    margin-bottom: 25px
}

@media (min-width: 34rem) {
    .modal-dialog.modal-lg.consent {
        max-width: 950px;
        margin: 1.75rem auto;
    }
}

@media (min-width:34rem) {
    .consent .title-th {
        font-size: 2.75rem;
    }
}

.consent .modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-right: 0.5rem;
    /*padding: 1rem;
    border-bottom: 1px solid #e9ecef;*/
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

    .consent .modal-header .close {
        padding: 1rem;
        margin: -1rem -1rem -1rem auto;
    }

.consent .modal-body .content {
    height: 200px;
    overflow-y: scroll;
    border-radius: 6px;
    text-align: left;
    border: 1px solid #dad9d9;
    padding-bottom: 1rem;
    margin: auto;
    width: 95%
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

option:disabled {
    color: lightgrey;
}

/*-----------Check_Choice_AccountSetting------------------*/

.email-preferences .choice {
    padding-bottom: 10px;
}

.email-preferences .choice_L {
    font-weight: normal;
    line-height: 20px;
}

.rdo-list2.email-preferences input.radio:hover:not(:checked) ~ label:before {
    padding-top: 17px;
}

.rdo-list2.email-preferences input.radio:checked ~ label:before {
    padding-top: 17px;
}
/*----------------------------------------------------*/

.notisucceed {
    width: 100%;
    height: 100%;
    background-color: #00B398;
    background-color: rgba(0, 179, 152, 0.95);
    color: white;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
}

@media (max-width:1320px) {
    .image-center {
        width: 100%;
    }
}

.grecaptcha-badge {
    margin-bottom: 60px;
    box-shadow: none;
}

.salary-search .btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.salary-search .btn-salary-search {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid #aaa;
    position: absolute;
    border-radius: 4px;
}

.salary-search .select2-container {
    margin-left: 37px;
}

.salary-search .select2-selection__rendered {
    line-height: 31px !important;
}

.salary-search .select2-container--default .select2-selection--single {
    height: 36px !important;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.salary-search .select2-selection__arrow {
    height: 34px !important;
}

.salary-search .select2-selection__placeholder {
    font-size: 18px;
}

#serach-field {
    padding: 10px 40px 25px 40px;
}

.home-content__industry-list__2021 {
    background-image: url('assets/images/backgrounds/bg-salary-guide-search.png');
    padding: 50px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
}


    .home-content__industry-list__2021 h2 {
        margin-top: 0;
        text-align: center;
    }

.PositionList span[class*="icon2-"]:before {
    font-family: 'Linearicons' !important;
    color: #ed1c24;
    margin-left: 20px;
    margin-right: 10px;
    font-size: 39px;
    position: absolute;
}

.PositionList .txt-category {
    margin-left: 72px;
    font-size: 29px;
    vertical-align: -webkit-baseline-middle;
}

@media (max-width: 767px) {
    .home-content__industry-list__2021 {
        height: 300px !important;
    }

    .home-content__download__2021 {
        text-align: center;
    }

    .PositionList .txt-category {
        margin-left: 60px;
        font-size: 19px;
    }

    .PositionList span[class*="icon2-"]:before {
        font-size: 30px;
    }
}

.cms .site-header {
    height: 3.75rem;
}

.cms .side-list ul li a {
    font-family: houschka_headdemibold, Helvetica, Arial, sans-serif;
    font-size: 15px;
    /*line-height: 10px;*/
    line-height: initial;
    display: block;
    padding-right: 40px;
    color: #000;
}

.cms .side-list ul li {
    margin: 0;
    padding: 10px 0;
    position: relative;
    border-bottom: 1px solid #dad9d9;
}

.cms .side-list h5 {
    font-size: 18px;
    margin: 0.3rem 0 0.5rem 0;
}

.cms .side-list ul li a:after {
    content: '\55';
    font-family: adecco-font-1;
    font-size: 3rem;
    line-height: 1.875rem;
    float: right;
    position: absolute;
    right: 0;
    top: 10px;
    height: 20px;
}

.cms .side-list ul li a:after {
    content: '\55';
    font-family: adecco-font-1;
    font-size: 2rem;
    line-height: 1.875rem;
    float: right;
    position: absolute;
    right: 0;
    top: 10px;
    height: 20px;
}


.cms .bc a:after {
    content: '\55';
    font-family: adecco-font-1;
    font-size: 2rem;
    line-height: 1.875rem;
    float: right;
    position: absolute;
    right: 0;
    top: 10px;
    height: 20px;
}

.cms {
    background-color: #efefef;
}

    .cms .fa.fa-arrow-right.txt-small {
        font-size: 15px;
        line-height: 35px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .cms .btn-input-search {
        color: #fff;
        background-color: #ed1c24;
        border-radius: 3px;
        width: 100%;
        display: inline-block;
        text-align: center;
        font-size: 20px;
        line-height: 40px;
    }

.input-search1 {
    width: 80%;
    display: inline-block;
    float: left;
}

    .input-search1 input {
        -webkit-border-top-right-radius: 0px;
        -webkit-border-bottom-right-radius: 0px;
        -moz-border-radius-topright: 0px;
        -moz-border-radius-bottomright: 0px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
    }

.input-search2 {
    width: 20%;
    display: inline-block;
    float: left;
}

    .input-search2 .btn-input-search {
        -webkit-border-top-left-radius: 0px;
        -webkit-border-bottom-left-radius: 0px;
        -moz-border-radius-topleft: 0px;
        -moz-border-radius-bottomleft: 0px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }

.cms .one-row .form-group {
    margin-bottom: 0;
}

.cms .Breadcrumb {
    color: #ed1c24;
    font-weight: 900;
}

.cms .btn-submit {
    color: #fff;
    background-color: #ed1c24;
    border-radius: .4rem;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 15px;
    line-height: 40px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 800;
}

.cms .btn-cancel {
    color: #ed1c24;
    border: 1px solid #ed1c24;
    border-radius: .4rem;
    /* width: 100%; */
    display: inline-block;
    text-align: center;
    font-size: 15px;
    line-height: 40px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 800;
    background-color: transparent;
}

.cms .txt-header {
    font-size: 30px;
    color: black;
    font-weight: 900;
    margin-bottom: 5px;
    display: inline-block;
}

.cms hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: .0725rem solid #ccc;
}

.cms .dataTables_info {
    text-align: center;
    margin-top: 15px;
    float: left;
    margin-left: 5px;
}

.switch {
    cursor: pointer;
}

    .switch input {
        display: none;
    }

        .switch input + span {
            width: 48px;
            height: 28px;
            border-radius: 14px;
            transition: all .3s ease;
            display: block;
            position: relative;
            background: #FF4651;
            box-shadow: 0 8px 16px -1px rgba(255, 70, 81, 0.2);
        }

            .switch input + span:before, .switch input + span:after {
                content: '';
                display: block;
                position: absolute;
                transition: all .3s ease;
            }

            .switch input + span:before {
                top: 5px;
                left: 5px;
                width: 18px;
                height: 18px;
                border-radius: 9px;
                border: 5px solid #fff;
            }

            .switch input + span:after {
                top: 5px;
                left: 32px;
                width: 6px;
                height: 18px;
                border-radius: 40%;
                -webkit-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
                background: #fff;
                opacity: 0;
            }

            .switch input + span:active {
                -webkit-transform: scale(0.92);
                transform: scale(0.92);
            }

        .switch input:checked + span {
            background: #48EA8B;
            box-shadow: 0 8px 16px -1px rgba(72, 234, 139, 0.2);
        }

            .switch input:checked + span:before {
                width: 0px;
                border-radius: 3px;
                margin-left: 27px;
                border-width: 3px;
                background: #fff;
            }

            .switch input:checked + span:after {
                -webkit-animation: blobChecked .35s linear forwards .2s;
                animation: blobChecked .35s linear forwards .2s;
            }

        .switch input:not(:checked) + span:before {
            -webkit-animation: blob .85s linear forwards .2s;
            animation: blob .85s linear forwards .2s;
        }

@-webkit-keyframes blob {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scale(1.12, 0.94);
        transform: scale(1.12, 0.94);
    }

    60% {
        -webkit-transform: scale(0.96, 1.06);
        transform: scale(0.96, 1.06);
    }
}

@keyframes blob {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scale(1.12, 0.94);
        transform: scale(1.12, 0.94);
    }

    60% {
        -webkit-transform: scale(0.96, 1.06);
        transform: scale(0.96, 1.06);
    }
}

@-webkit-keyframes blobChecked {
    0% {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    30% {
        -webkit-transform: scaleX(1.44);
        transform: scaleX(1.44);
    }

    70% {
        -webkit-transform: scaleX(1.18);
        transform: scaleX(1.18);
    }

    50%, 99% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        opacity: 0;
    }
}

@keyframes blobChecked {
    0% {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    30% {
        -webkit-transform: scaleX(1.44);
        transform: scaleX(1.44);
    }

    70% {
        -webkit-transform: scaleX(1.18);
        transform: scaleX(1.18);
    }

    50%, 99% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        opacity: 0;
    }
}



.btn-sort {
    font-size: 17px;
    line-height: 30px;
    color: #FF4651;
}

    .btn-sort:hover {
        color: #48EA8B;
    }

.cms .btn-sort-position {
    position: absolute;
    left: -8px;
    margin-top: 50px;
}



.cms ol li {
    margin: 0;
    padding: 0;
}

.cms ol li, .cms ol {
    margin: 0;
    padding: 0;
}

.cms .dragged {
    position: absolute;
    opacity: 1;
    z-index: 2000;
}

    .cms .dragged .box-white {
        /* border: 2px solid #ed1c24; */
        margin-top: -100px;
        margin-left: -15px;
        box-shadow: -3px 3px 29px -1px rgba(0,0,0,0.5);
        -webkit-box-shadow: -3px 3px 29px -1px rgba(0,0,0,0.5);
        -moz-box-shadow: -3px 3px 29px -1px rgba(0,0,0,0.5);
    }

.cms ol.example li.placeholder {
    position: relative;
    /** More li styles **/
    opacity: 0.5;
}

    .cms ol.example li.placeholder:before {
        position: absolute;
        /** Define arrowhead **/
    }

.btn-hide-menu {
    cursor: pointer;
    color: #000;
}

.main-section.active .section-a {
    display: none;
}

.main-section .section-a {
    display: inline-block;
}

.main-section.active .section-b {
    width: 100%;
}

a.btn-input-search.btn-browse {
    color: #ed1c24;
    background-color: #ffffff;
    line-height: 37px;
    border: 1px solid #ed1c24;
    border-radius: 3px;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 20px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.tokenfield {
    height: auto;
    min-height: 2.689655172413793em;
}

    .tokenfield .token {
        line-height: 2;
        border: 1px solid;
        padding: 5px;
    }

        .tokenfield .token .close {
            font-size: 20px;
            color: #c5191f;
        }

    .tokenfield .token-input {
        display: none;
    }

.ctrl-header {
    background-color: #cbd6e4;
}

.ctrl-item {
    background-color: #ecf0f5;
}

.sidebar {
    display: none;
}

.btn-show-menu {
    display: none;
    color: #fff;
    border: 1px solid #fff;
    border-radius: .4rem;
    font-weight: 800;
    background-color: transparent;
    width: 36px;
    height: 30px;
    font-size: 170%;
    vertical-align: baseline;
}

@media (min-width:34rem) {
    .sidebar {
        display: none;
    }
}

@media (min-width:48rem) {
    .sidebar {
        display: block;
    }
}

.btn-show-menu {
    display: inline-block;
    text-align: center;
}

.main-section {
    min-height: 400px;
}
/*--------------------------------------------------------------
6.0 - Forms
--------------------------------------------------------------*/
::-webkit-input-placeholder {
  color: #999;
}
:-moz-placeholder {
  color: #999;
}
::-moz-placeholder {
  color: #999;
}
:-ms-input-placeholder {
  color: #999;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 1.5862068965517242em;
  font-size: 21.75px;
  line-height: inherit;
  color: #666666;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0.3448275862068966em;
/*  margin-top: 10px;*/
  font-weight: 600;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 0.27586206896551724em 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
   
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
select {
  -webkit-appearance: select;
  -webkit-border-radius: 0px !important;
/*
    margin-top: 10px;
    margin-bottom: 10px;
*/
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: none;
}
output {
  display: block;
  padding-top: 1.5517241379310345rem;
  font-size: 14.5px;
  line-height: 1.6;
  color: #666666;
}
.form-control {
  display: block;
  width: 100%;
  height: 2.689655172413793em;
  padding: 0.5517241379310345rem;
  font-size: 14.5px;
  line-height: 1.6;
  color: #666666;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  outline: none;
}

.form-group.margin-bottom{

    margin-bottom: 0px;

}
.form-control:focus {
  border-color: #ee2e24;
  outline: none;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color:#eeeeee;
  opacity: 1;
  filter: alpha(opacity=100);
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  line-height: 2.689655172413793em;
  line-height: 1.6 \0;
}
input[type="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm {
  line-height: 20.46551724137931px;
}
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg {
  line-height: 3.306206896551724em;
}
.form-group {
  margin-bottom: 1.0344827586206897em;
}
.radio,
.checkbox {
  position: relative;
  display: inline-block;
  /*min-height: 1.5862068965517242em;*/ 
  margin-top: 0.6896551724137931em;
  margin-bottom: 0.6896551724137931em;
}
.radio label,
.checkbox label {
  padding-left: 1.3793103448275863em;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -1.3793103448275863em;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -0.3448275862068966em;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.input-sm {
  height: 20.46551724137931px;
  padding: 0.4827586206896552rem 0.8275862068965517rem;
  font-size: 13px;
  line-height: 1.5;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
select.input-sm {
  height: 20.46551724137931px;
  line-height: 20.46551724137931px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.input-lg {
  height: 3.306206896551724em;
  padding: 0.8275862068965517rem 1.2413793103448276rem;
  font-size: 1.2413793103448276em;
  line-height: 1.33;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
select.input-lg {
  height: 3.306206896551724em;
  line-height: 3.306206896551724em;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}

.link-center{
line-height: 30px;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.box-white .form-a h3 {
    text-align: center;
    width: 100%;
    margin-top: 0px;
    font-size: 25px;
    color: black;
    text-align: left;
}
.col-fix50-1 {
    width: 48%;
    margin-right: 2%;
    display: inline-block;
}
.col-fix50-2 {
     width: 48%;
    margin-left: 2%;
    display: inline-block;
}
html, body {
    min-height: 100%;
}

body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

.login-page {
    background-image: url(/assets/images/backgrounds/bg-cms-login.png);
    background-size: cover;
}

.login-box, .register-box {
    width: 360px;
    margin: 7% auto;
}

.login-logo {
    color: #fff;
}

.login-logo, .register-logo {
    font-size: 35px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 300;
}

.login-box-body, .register-box-body {
    background: #fff;
    padding: 20px;
    border-top: 0;
    color: #666;
}

.login-box-msg, .register-box-msg {
    margin: 0;
    text-align: center;
    padding: 0 20px 20px 20px;
}

.has-feedback {
    position: relative;
}

    .has-feedback .form-control {
        padding-right: 42.5px;
    }

.login-box-body .form-control-feedback, .register-box-body .form-control-feedback {
    color: #777;
}

.icheck > label {
    padding-left: 0;
}

a {
    color: #ed1c24;
}

.btn.btn--red-on-white {
    color: #ed1c24;
    background-color: transparent;
    border: 1px solid #ed1c24;
    min-width: 80px;
    padding: inherit;
    min-height: 40px;
}

    .btn.btn--red-on-white:active {
        color: #fff;
        background-color: #ed1c24;
        border: 1px solid transparent;
    }

