/**
 * Overwrite semantic css html height.
 * Important: DO NOT REMOVE THIS, IS USED FOR iFrameResizer.
 */
html {
    height: inherit;
}

/**
 * Fonts.
 */
@font-face {
    font-family: 'Neue Helvetica W01';
    src: url('../fonts/HelveticaNeueLTStd-Roman.woff');
}

@font-face {
    font-family: 'Neue Helvetica Light W01';
    src: url('../fonts/HelveticaNeueLTStd-Th.woff');
}

.smooth-loading {
    opacity: 0;
}

body {
    font-family: 'Neue Helvetica Light W01', Helvetica, Arial, sans-serif;
    font-weight:lighter;
    color: #484848;
    font-size: 16px;
    line-height: 19px;
    margin:0;
    padding:0;
    width: 1px;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/**
 * Typography.
 */
h1, h3, h4, h5, h6 {
    font-family: 'Neue Helvetica Light W01', Helvetica, Arial, sans-serif;
    font-size: 49px;
    line-height: 1.2em;
    color: #222;
    margin:0px;
}

h2 {
    padding-bottom: 1rem;
    margin-bottom: 15px;
    font-family: 'Neue Helvetica Light W01', Helvetica, Arial, sans-serif;
    font-weight: 200;
    font-size: 27px;
    line-height: 33px;
    color:#222;
    position:relative;
}

h2:after {
    width: 4rem;
    height: 4.2px;
    bottom: -2.1px;
    background: #222;
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-family: 'Neue Helvetica Light W01', Helvetica, Arial, sans-serif;
    margin-bottom: 20px;
    font-size: 29px;
}

b, strong {
    font-family: 'Neue Helvetica W01', Helvetica, Arial, sans-serif;
    margin-bottom:10px;
    display:block;
}

a {
    color: #222;
    text-decoration: none;
    transition: color .3s;
}

a:hover {
    color: #222;
}

ul {
    padding:0;
    margin:0;
}
li {
    list-style-type:none;
    margin-bottom:15px;
}
p {
    font-size: 22px;
    line-height: 30px;
    margin:0px;
}


/**
 * Layout
 */

#wrapper {
    width: 100%;
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding:0 10px;
    box-sizing: border-box;
}

.content {
    margin:0px 0px 80px;
    position:relative;
}

#careercenter-form-desktop {
    padding-top:90px;
}
#careercenter-form-mobile {
    padding-top:50px;
    display:none;
}
.multicolumn > * {
    display:table-cell;
    vertical-align: top;
    width:100%;
}

.width-75 {
    width:75%;
}

.width-50 {
    width:50%;
}

.width-66 {
    width:70%;
}

.width-33 {
    width:33.333%;
}

.width-25 {
    width:25%;
}

.separator {
    width: 30px;
}
/**
 * Form.
 */
#careercenter-form-desktop, #careercenter-form-mobile {
    position: relative;
}
.form input:not([type]),
.form input[type=date],
.form input[type=datetime-local],
.form input[type=email],
.form input[type=file],
.form input[type=number],
.form input[type=password],
.form input[type=search],
.form input[type=tel],
.form input[type=text],
.form input[type=time],
.form input[type=url],
.form textarea {
    font-family: 'Neue Helvetica Light W01', Helvetica, Arial, sans-serif;
    padding: 5px 3px;
    font-size: 24px;
    line-height: 28px;
    height: 53px;
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.form input:not([type]):focus,
.form input[type=date]:focus,
.form input[type=datetime-local]:focus,
.form input[type=email]:focus,
.form input[type=file]:focus,
.form input[type=number]:focus,
.form input[type=password]:focus,
.form input[type=search]:focus,
.form input[type=tel]:focus,
.form input[type=text]:focus,
.form input[type=time]:focus,
.form input[type=url]:focus,
.form textarea:focus {
    border: 1px solid transparent;
}

.search-container {
    position: relative;
    width: 66.666%;
    margin:0px auto 0;
    top:-75px;
}

.search-container .search-icon {
    display: block;
    background-color: transparent;
    z-index: 1060;
    height: 40px;
    width: 40px;
    background-size: 40px;
    position: absolute;
    right: 0px;
    top: 0px;
    background-image:url("../images/svg/icons/search.svg");
}

.search-container .search-icon.morphed {
    display: block;
    opacity: 1;
    background-color: transparent;
    height: 40px;
    width: 40px;
    background-size: 40px;
    transition: opacity .15s ease-in-out;
    position: absolute;
    right: 0;
    background-image:url("../images/svg/icons/cancel.svg");
}

.search-container .search-input {
    position: absolute;
    right: 0;
    height: 40px;
    width: 100%;
    border: 1px solid transparent;
    transition: all .25s ease-in-out;
    background-color: transparent;
    font-weight: 300;
    font-size: .875rem;
}

.search-container .search-input input {
    border-bottom:4.2px solid #222;
    border-radius: 0px;
}

.search-container .search-input input[type=search] {
    background: transparent;
    border: 0;
    color: #fcfcfc;
    height: 40px;
    opacity: 0;
    bottom: 0;
    position: absolute;
}
.search-container .open {
    width: 100%;
    transition: all .65s ease-in-out;
    opacity: 1;
    background: transparent;
}
.search-container-mobile {
    position: relative;
}
.form .search-container-mobile input {
    width: 100%;
    border: 1px solid #7eab99;
    border-radius: 40px;
    padding-left:20px;
    padding-right:20px;
}

.search-container-mobile .search-icon {
    display: block;
    background-color: transparent;
    z-index: 1060;
    height: 30px;
    width: 30px;
    background-size: 30px;
    position: absolute;
    right: 15px;
    top: 10px;
    background-image:url("../images/svg/icons/search.svg");
}

/* Chrome/Opera/Safari */
::-webkit-input-placeholder {
    color: #000000;
}

/* Firefox 19+ */
::-moz-placeholder {
    color: #000000;
}

/* IE 10+ */
:-ms-input-placeholder {
    color: #000000;
}

/* Firefox 18- */
:-moz-placeholder {
    color: #000000;
}

::placeholder {
    color:#000000;
}

/* Mobile Filters */
dt {
    padding:0px;
    overflow: auto;
    position:relative;
}
dd {
    display: none;
    margin: 0px;
}
.hex-country-mobile {
    display: inline-block;
    width: 70px;
    height: 70px;
    position: relative;
    float:left;
    margin-right: 10px;
}
.hex-country-mobile svg {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
}
.hex-country-mobile label {
    color: #fff;
    font-size: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.accordion-title > label {
    font-size: 29px;
    line-height: 32px;
    display:block;
    margin-top:20px;
}

.accordion-content ul {
    margin-left:90px;
}

.accordion-content li {
    width: 100%;
    overflow:auto;
    margin-bottom:0px;
    position:relative;
}
.accordion-content li svg {
    width:80px;
    height:80px;
    float:left
}
.accordion-content li.selected .hex-svg .hex-svg-path:not(.has-image) {
    fill:#c1c1c2;
}
.accordion-content li [type=checkbox] {
    position: absolute;
    left:0px;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.accordion-content li label {
    font-size: 22px;
    display:block;
    float:left;
    margin: 25px 0px 25px 10px;
}
.accordion-content .checkbox-group .checkbox li.none {
    float: right;
    width: 50%;
}
.accordion-content .multicolumn {
    margin:0;
}
.accordion-content .width-33 {
    display:table-cell;
    width:33.333%;
}
.accordion-content select {
    border:solid 1px;
    height:22px;
    padding:2px;
    width:100%;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
}


/**
 * Parsley
 */
.parsley-error {
    border: 1px solid #be505a !important;
}

label.parsley-error {
    border: 0 !important;
    color: #be505a;
}

.parsley-errors-list {
    color: #be505a;
    list-style: none;
    padding: 0;
    font-size: 14px;
    margin: 5px 0 10px 0;
}

/**
 * Button.
 */
.button, a.button {
    display: inline-block;
    margin:40px auto;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid #222;
    padding: 10px 12px 5px;
    text-transform: uppercase;
    border: 2px solid;
    box-shadow: none;
    transition: all .15s ease-in-out;
    color: #222;
    background-color: transparent;
}
.button[disabled],a.button[disabled] {
    opacity: .5;
    cursor: not-allowed;
}
.button:hover, a.button:hover {
    color:#fff;
    background-color: #222;
}
#careercenter-form-mobile .button {
    margin:20px 0px 60px;
    width:100%;
}

/**
 * Jobs.
 */
.ui.grid {
    margin-top:0;
    margin-bottom:0;
}
#jobs {
    width: 66.66667%;
    margin:70px auto 0;
    overflow: hidden;
    position:relative;
    display: none;
}
.reset {
    margin:0px;
    position:absolute;
    opacity: 0;
    right: 0;
    top:300px;
    transition: top 1.5s ease-in-out, opacity 1.5s ease-in-out 0.7s, background-color .15s ease-in-out, color .15s ease-in-out;;
    background:#fff;
    display: block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid #222;
    padding: 8px 12px 6px;
    text-transform: uppercase;
    box-shadow: none;
    color: #222;
    z-index:0;
}
.reset.show {
    top:58px;
    opacity: 1;
    z-index:1000;
}
.reset:hover {
    color:#fff;
    background-color: #000;
}
#jobs.pushed {
    margin-top:220px;
    transition: all .2s ease-in-out;
}
#ajax-loader {
    background-color: rgba(255,255,255,.85);
    background-image: url("../images/ajax-loader.gif");
    background-repeat: no-repeat;
    background-position: center 10%;
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    display:none;
}
.job {
    height:100%;
}
.job a {
    display: block;
    height:100%;
    background: #f1f1f1;
    text-align: center;
    padding:10px;
    box-sizing: border-box;
}
.more-jobs {
    display: block;
    margin:40px auto;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid #222;
    padding: 8px 12px 6px;
    text-transform: uppercase;
    border: 2px solid;
    box-shadow: none;
    transition: all .15s ease-in-out;
    color: #222;
    background-color: transparent;
}

.more-jobs:hover {
    color:#fff;
    background-color: #222;
}
.no-results {
    font-weight: 400;
    margin-top:50px!important;
}

/**
 * Footer
 */
.footer {
    max-width: 1366px;
    position: relative;
    background-color: #f1f1f1;
}
.footer:after {
    background-position: bottom;
    bottom: -1px;
    content: "";
    display: block;
    width: 100%;
    height: 128px;
    position: absolute;
    left: 0;
    background-size: cover;
    background-image: url(https://www.netcetera.com/.resources/neww-lite/webresources/images/arrow-bg.svg);
    background-repeat: no-repeat;
}
.footer .content {
    width:66.666%;
    height:100%;
    margin:0px auto;
    padding:87px;
    text-align: center;
}
.footer p {
    font-size:16px;
}
/**
 * Modul Jobabo
 */
.ui.dimmer {
    background-color: transparent;
}
.ui.modal {
    height: 750px;
    top:auto;
    bottom:200px;
    margin-top:0!important;
    border-radius: 0px;
    background: transparent;

}
.modal .modal-content {
    width: 100%;
    max-width: 930px;
    margin:0 auto;
    padding:0px;
    position:relative
}
#modal iframe {
    width:100%;
    display:block;
    min-height: 750px;
    overflow: hidden;
}

.modal-close {
    transition: color .1s ease;
    -o-box-shadow: 0 0 10px rgba(0,0,0,.5);
    -ms-box-shadow: 0 0 10px rgba(0,0,0,.5);
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    background: rgba(0,0,0,.85);
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    top: -10px!important;
    right: -10px!important;
    cursor: pointer;
    z-index: 8040;
    position: absolute;
    width: 36px;
    height: 36px;
}
.modal-close:hover {
    color: #fff;
}
.modal-close:before {
    font-family: 'Neue Helvetica Light W01';
    font-weight: lighter;
    font-size: 32px;
    line-height: 30px;
    content: "\00d7"!important;
    transform: rotate(45deg);
}

@media screen and (max-width: 670px) {
    #modal iframe {
        min-height:847px;
    }
}


/**
 * Hex Grid
 */

.hex-1 .hex-svg .hex-svg-path:not(.has-image) {
    fill:#949497;
}
.hex-2 .hex-svg .hex-svg-path:not(.has-image), .de .hex-svg .hex-svg-path:not(.has-image) {
    fill:#baaa6b;
}
.hex-3 .hex-svg .hex-svg-path:not(.has-image), .mkd .hex-svg .hex-svg-path:not(.has-image) {
    fill:#b38487;
}
.hex-10 .hex-svg .hex-svg-path:not(.has-image) {
    fill:#f3c26e;
}
.hex-5 .hex-svg .hex-svg-path:not(.has-image), .ch .hex-svg .hex-svg-path:not(.has-image) {
    fill:#6a8cb4;
}
.hex-6 .hex-svg .hex-svg-path:not(.has-image), .li .hex-svg .hex-svg-path:not(.has-image) {
    fill:#7eaa98;
}
.hex-7 .hex-svg .hex-svg-path:not(.has-image), .are .hex-svg .hex-svg-path:not(.has-image) {
    fill:#c1c1c3;
}
.hex-8 .hex-svg .hex-svg-path:not(.has-image), .hex-4 .hex-svg .hex-svg-path:not(.has-image) {
    fill:#f0e6e7;
}
.hex-9 .hex-svg .hex-svg-path:not(.has-image), .at .hex-svg .hex-svg-path:not(.has-image) {
    fill:#e54f47;
}
.hex-11 .hex-svg .hex-svg-path:not(.has-image) {
    fill:#bac8c4;
}

.hex-wrapper .hex-content {
    display: block;
    top: 5.19553px;
    bottom: 0;
    left: 16.666%;
    right: 16.666%;
    border-radius: 100%;
    z-index: 1000;
    transform: none;
}
.hex-wrapper .hex-content label {
    transition: all .15s ease;
    position:absolute;
    display: block;
    top: 0.19553px;
    bottom: 0;
    left: 0px;
    right: 0px;
    border-radius: 100%;
    z-index: 2000;
    width:100%;
}
.hex-wrapper .hex-content label span {
    position:absolute;
    display: block;
    top:48%;
    left:50%;
    transform:translate(-50%,-50%);
    width:80%;
}
.hex-wrapper .hex-svg, .hex-wrapper .hex-content label  {
    transition: transform .2s, z-index .4s;
}
.hex-wrapper.selected .hex-content {
    z-index: 1000;
}
.hex-wrapper.selected .hex-svg {
    z-index: 1000;
    transform: scale(1.3);
}
.hex-wrapper.selected .hex-content label {
    transform: scale(1.3);
}
.hex-wrapper.selected .hex-content label span {
    z-index: 1001;
}
.hex-content [type=radio], .children [type=checkbox] {
    display:none;
}
.hex-content label {
    font-size:1.9rem;
    line-height:2rem;
    cursor: pointer;
    padding: 0;
}
.hex-wrapper {
    position:relative;
}
.children {
    position: absolute;
    bottom: -12%;
    left: 0;
    margin-top:200px;
    width:100%;
}
.children > div {
    position:absolute;
    width:100%;
    text-align: center;
    display:none;
}
.children > div.active {
    display:block;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.child-0   { animation-delay: 0s }
.child-1   { animation-delay: 0.25s }
.child-2  { animation-delay: 0.5s }
.child-3  { animation-delay: 0.75s }

.children > div > div {
    display:inline-block;
    width:150px;
    height:150px;
    position:relative;
}
.children svg {
    width:150px;
    height:150px;
    position:absolute;
    top:0;
    left:0;
}
.children svg path {
    transition: fill .15s ease-in-out;
}
.children > div > div.selected .hex-svg .hex-svg-path:not(.has-image) {
    fill: #c1c1c2;
}
.children label {
    position: absolute;
    display: block;
    top: 0.19553px;
    bottom: 0;
    left: 0px;
    right: 0px;
    border-radius: 100%;
    width: 100%;
    cursor: pointer;
}
.children label span {
    color:#222;
    font-size:22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/**
 * Prefiltered URLs styles
 */
.sub .hex-grid, .sub .reset {
    display:none;
}

/**
 * Media Queries
 */
@media screen and (max-width: 1024px) {
    .hex-wrapper .hex-content label {
        font-size:1.4rem;
    }
    #reset.show {
        top: 130px;
    }
}
@media screen and (max-width: 880px) {
    .hex-content label {
        font-size:1.4rem;
    }
    .children {
        bottom: -10%
    }
    .children > div > div, .children svg {
        width:130px;
        height:130px;
    }
}
@media screen and (max-width: 677px) {
    #careercenter-form-desktop {
        display:none;
    }
    #careercenter-form-mobile {
        display:block;
    }
    .hex-grid {
        overflow:hidden;
        margin-top:-40px;
    }
    .hex-wrapper {
        margin-left:0px;
        margin-right:0px;
    }
    .hex-wrapper.selected .hex-svg {
        transform: scale(1.2);
    }
    .hex-wrapper .hex-content label span {
        width:100%;
        font-size:17px;
        line-height:21px;
        font-weight: bold;
    }
    .hex-grid .hex-2.mobile-selected, .hex-grid .hex-5.mobile-selected, .hex-grid .hex-7.mobile-selected {
        position:fixed;
        top:80px;
        left:50px;
    }
    .hex-grid .hex-3.mobile-selected, .hex-grid .hex-6.mobile-selected, .hex-grid .hex-9.mobile-selected {
        position:fixed;
        top:80px;
        left:-80px;
    }
    .hex-3 .hex-wrapper .hex-content label span, .hex-10 .hex-wrapper .hex-content label span {
        font-size:16px;
    }
    .children {
        bottom: 3%;
    }
    .children > div > div, .children svg {
        width:100px;
        height:100px;
    }
    .children label span {
        font-size:16px;
    }
    .reset.show {
        top:110px;
        font-size: 10px;
    }
    h2 {
        font-size:35px;
    }
    h2:after {
        height:3px;
        bottom:7px;
    }
    h3 {
       font-size:25px;
    }
    #jobs {
        width:100%;
        background: #fff;
        margin-top:-20px;
    }
    .job {
        width:100%;
        margin-left: 0px;
    }
    #jobs.pushed {
        margin-top:120px;
    }
    .job h2 {
        font-size:26px;
        line-height:36px;
        margin-bottom: 5px;
    }
    .job h2:after {
        height:3px;
        bottom:5px;
    }
    .more-jobs {
        margin:0 auto;
    }
    .footer .content {
        width:100%;
        padding:20px;
    }
    .footer:after {
        height:55px;
    }
    .search-container {
        width:100%;
        margin-top:20px;
    }
    .search-container .search-icon, .search-container .search-icon.morphed {
        height: 30px;
        width: 30px;
        background-size: 30px;
        top:10px;
    }
    .search-container .search-input input {
        height:43px;
        border-bottom: 2px solid #222;
    }
    .ui.modal {
        height: 847px;
        bottom:10px;
    }
}

@media screen and (max-width: 325px) {
    .hex-wrapper .hex-content label span {
        font-size: 14px;
        line-height: 18px;
    }
}