/*///////////////////////////////////////////////////////
// Reset
//////////////////////////////////////////////////////*/
#main {
    overflow: inherit;
}


/*///////////////////////////////////////////////////////
// Job search
//////////////////////////////////////////////////////*/
#jobSearchForm {
    position: absolute;
    z-index: 30;
    width: 100%;
    max-width: 1440px;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 45px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 10px;
    transition: all 400ms ease-in-out;

    border: 1px solid var(--color-gray2);
    transform: translate(-50%, 77%);
    border-radius: 20px;
}
#jobSearchForm.extended {
    transition: all 400ms ease-in-out;
    padding: 45px 45px 180px 45px;
}
.jobListingHeadline {
    width: 100%;
    font-size: 36px;
    line-height: 36px;
    text-align: left;
    color: var(--color-elvigray1);
}
.searchFields {
    width: calc(100% - 180px);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-flow: row wrap;
}
.searchMain {
    width: 100%;
    position: relative;
    display: flex;
}
/* ToDo Tony: Warum werden hier Animationen ausgelöst? */
.tooltipIcon {
    position: absolute;
    opacity: 0;
    /*transform: scale(0);*/
    animation-fill-mode: forwards;
    width: 150px;
    height: 50px;
    top: -66px;
    left: 50%;
    margin-left: -75px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transform: translateY(0);
    /*animation: MoveUpDown 4s linear infinite;*/
    transition: transform 250ms ease-in-out, opacity 250ms ease-in-out;
}
.tooltipVoice {
    background-image: url('../Images/tooltip_voice.svg');
    width: 125px;
    left: 50%;
    margin-left: -62px;
    top: -58px;
    /*transform: translateY(0);
    animation: MoveUpDown 3s linear infinite;*/
}
.tooltipVoice svg {
    width: 125px !important;
    height: 50px !important;
}
.tooltipSearch {
    background-image: url('../Images/tooltip_search.svg');
}
.tooltipIcon:before {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    transform: rotate(10deg);
}
@keyframes MoveUpDown {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8%);
    }
    50% {
        transform: translateY(-16%);
    }
    75% {
        transform: translateY(-8%);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes expand-bounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes shrink {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
.jobfilterVoice {
    width: 55px;
}
.jobfilterVoice > span {
    position: relative;
    z-index: 20;
    display: inline-block;
    border: 1px solid var(--color-gray2);
    border-radius: 50%;
    font-size: 53px;
    transition: color 250ms;
    cursor: pointer;
}
.voiceAnimation {
    transition: all 250ms;
    opacity: 0;
    z-index: 10;
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.jobfilterVoice.record .voiceAnimation {
    opacity: 1;
}
.jobfilterVoice .icon-microphone {
    position: relative;
    transition: 250ms color linear;
}
.jobfilterVoice.record .icon-microphone {
    animation: voiceColor 0.5s 2s linear infinite;
}
@keyframes voiceColor {
    from {
        color: var(--color-elvipurple);
    }
    to {
        color: var(--color-darkgray1);
    }
}
/*.jobfilterVoice.record .icon-microphone:after {
    content: '';
    z-index: -1;
    position: absolute;
    display: block;
    border-radius: 50%;
    opacity: 0;
    width: 60%;
    height: 60%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    filter: blur(15px);
    transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    animation: iconGlow 2s reverse infinite;
}
@keyframes iconGlow {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
}*/
.searchText {
    position: relative;
    width: calc(65% - 85px);
    margin: 0 10px 0 20px;
}
.searchInput {
    width: 100%;
}
#jobSearchForm input[type="text"]:focus, #jobSearchForm input[type="text"]:active {
    outline: 0;
}
#jobSearchForm .showSearchExtended {
    position: absolute;
    color: #2B2B2B;
    right: 10px;
    top: 50%;
    font-size: 35px;
    cursor: pointer;
    transform: translateY(-50%);
    opacity: 1;
    transition: opacity 500ms ease-in-out;
}
#jobSearchForm.extended .showSearchExtended {
    opacity: 0
}
#jobSearchForm.extended > div, #jobSearchForm.extended .searchExtended {
    opacity: 1;
    max-height: 100%;
    transition: max-height 500ms ease-in-out, opacity 500ms ease-in-out;
}
.hideSearchExtended {
    float: right;
    display: flex;
    cursor: pointer;
    padding: 25px 0 0 0;
}
.hideSearchExtended > span {
    display: block;
    line-height: 35px;
}
.hideSearchExtended span:first-child {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding-right: 10px;
    color: var(--color-elvigray1);
}
.hideSearchExtended span:last-child {
    font-size: 35px;
}
.searchLocations {
    width: 35%;
    text-align: left;
}
#jobSearchForm .searchUserLocation {
    width: 60%;
    float: left;
}
#jobSearchForm .searchUserRadius {
    width: calc(40% - 10px);
    margin-left: 10px;
    float: left;
    background: url('../Icons/arrow_down.svg') no-repeat top 53% right 88% / 10px 6px;
    text-align: left;
    padding-left: 38px;
}
#jobSearchForm .searchUserRadius:disabled {
    background-color: #f0f0f0;
}
.searchCategory > div {
    width: calc(50% - 5px);
}
.searchSubmit {
    width: 180px;
    position: relative;
}
#jobSearchForm .searchBtn {
    position: absolute;
    bottom: 2px;
    right: 0;
    font-family: "DIN", Arial, Helvetica, sans-serif;
    background: var(--color-elvigray2);
    color: var(--color-light);
    border-radius: 2px;
    border: 0;
    text-transform: uppercase;
    font-size: 21px;
    font-weight: normal;
    padding: 14px 55px;
    cursor: pointer;
    transition: all 500ms ease-in-out;
}
#jobSearchForm.extended .searchBtn {
    bottom: -133px;
}
@media (hover: hover) and (pointer: fine) {
    .jobfilterVoice:hover:not(.record) > span {
        border: 1px solid var(--color-gray2);
        background: var(--color-gray2);
        color: var(--color-light);
    }
    .jobfilterVoice:hover.record > span {
        border: 1px solid var(--color-elvipurple);
        color: var(--color-elvipurple);
    }
    .jobfilterVoice:hover .tooltipVoice {
        opacity: 1;
    }
    .searchText .icon-plus:hover {
        color: var(--color-elvipurple);
    }
    .hideSearchExtended:hover span {
        color: var(--color-elvipurple);
    }
    #jobSearchForm .searchBtn:hover {
        background: var(--button-background);
        color: var(--color-light);
        transition: background-color 300ms ease-in-out;
    }
    #jobSearchForm .showSearchExtended:hover .tooltipSearch {
        opacity: 1;
    }
}
@media (max-width: 1024px) {
    .tooltipIcon {
        display: none;
    }
}
@media (max-width: 767px) {
    .jobListingHeadline {
        font-size: 24px;
        line-height: 24px;
    }
    #jobSearchForm.extended .searchBtn {
        bottom: auto;
    }
}


/*///////////////////////////////////////////////////////
// Job Search Filter
//////////////////////////////////////////////////////*/
#jobSearchForm select, .jobSort select {
    width: 100%;
    cursor: pointer;
    background: url('../Icons/arrow_double.svg') no-repeat 95% center / 15px auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    padding: 12px 28px 12px 12px;
    color: #333;
    border: 1px solid #e5e5e5;
    font-size: 16px;
}
#jobSearchForm select option, .jobSort select option {
    color: #333;
    border: 0;
    outline: 0;
}
#jobSearchForm input[type="text"], #jobSearchForm select {
    border: 1px solid var(--color-gray2);
    border-radius: 5px;
    font-size: 18px;
    color: var(--color-elvigray1);
    padding: 14px 55px 14px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#jobSearchForm .searchExtended {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding-left: 75px;
    position: absolute;
    bottom: 53px;
    height: 130px;
}
#jobSearchForm.extended .searchExtended {
    visibility: visible;
    width: calc(100% - 278px);
    opacity: 1;
    max-height: 100%;
}
.searchExtended .searchType {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
}
.searchType, .searchCategory {
    margin-top: 12px;
}
.searchCategory {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.searchExtended .searchCategory > div {
    display: none;
}
.searchExtended .searchCategory > div.active {
    display: inline-block;
    width: 49%;
}
.searchCategory > div {
    width: 49%;
}
.searchCategoryMain select option:first-child, .searchCategorySub select option:first-child {
    color: #666 !important;
}
.searchCategoryMain select, .searchCategorySub, .searchCategorySub select {
    display: none;
}
.searchCategoryMain select.active, .searchCategorySub.active, .searchCategorySub select.active {
    display: inline-block;
}
.searchType .radioGroup {
    position: relative;
    display: flex;
    padding-right: 30px;
    padding-top: 6px;
}
.searchType .radioLabel {
    display: flex;
    color: var(--color-elvigray1);
    font-size: 18px;
    cursor: pointer;
    white-space: nowrap;
}
@media (max-width: 1540px) {
    #jobSearchForm {
        width: calc(100% - 60px);
    }
}
@media (max-width: 1279px) {
    .searchMain {
        display: block;
    }
    .searchText, .searchLocations {
        width: calc(100% - 85px);
    }
    .searchLocations {
        margin: 10px 10px 0 20px;
        padding-right: 0;
    }
    .jobfilterVoice, .searchText, .searchLocations {
        float: left;
    }
    #jobSearchForm .searchUserRadius {
        background: url('../Icons/arrow_down.svg') no-repeat top 53% right 94% / 11px 7px;
    }
}
@media (max-width: 1023px) {
    #jobSearchForm {
        padding-bottom: 100px;
    }
    .searchFields {
        width: 100%;
    }
    .searchSubmit {
        position: initial;
    }
    #jobSearchForm .searchBtn {
        bottom: 30px;
        right: 55px;
    }
    #jobSearchForm.extended .searchExtended {
        width: calc(100% - 100px);
        opacity: 1;
        max-height: 100%;
    }
}
@media (max-width: 767px) {
    #jobSearchForm {
        width: 100%;
        padding: 50px 25px;
        transform: translate(-50%, 77%);
        /*border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;*/
    }
    #jobSearchForm input[type="text"], #jobSearchForm select {
        padding: 14px 40px 14px 20px;
    }
    #jobSearchForm.extended {
        padding: 30px;
    }
    #jobSearchForm.extended .searchExtended {
        width: 100%;
        padding-left: 0;
        position: relative;
        bottom: auto;
        height: auto;
    }
    #jobSearchForm .searchExtended > div {
        width: 0;
    }
    #jobSearchForm.extended .searchExtended > div {
        width: 100%;
    }
    .searchLocations.active {
        display: block;
    }
    .searchLocations {
        margin: 10px 0 0 15px;
        padding-right: 0;
    }
    .searchText, .searchLocations {
        width: calc(100% - 70px);
    }
    .searchExtended .searchType {
        display: block;
    }
    .searchType .radioGroup {
        float: left;
        padding-right: 12px;
        padding-top: 12px;
    }
    .searchType .radioGroup:first-of-type {
        padding: 0;
        width: 100%;
    }
    .searchType .radioGroup input[type="radio"] + .radioLabel:before {
        margin-right: 8px;
    }
    .hideSearchExtended {
        width: 100%;
        margin-top: 10px;
        padding: 0;
    }
    .searchExtended .searchCategory > div.active {
        width: 100%;
        margin: 5px 0;
    }
    #jobSearchForm .searchBtn {
        right: 35px;
    }

    #jobSearchForm {
        padding: 25px;
        /*transform: none;
        left: auto;
        bottom: 0;*/

        width: calc(100% - 20px);
    }
    .searchText {
        width: calc(100% - 70px);
        margin: 0 0 0 15px;
    }
    .searchExtended {
        padding-left: 0;
    }
    .searchExtended .searchLocations {
        width: 100%;
        margin: 10px 0 0 0;
        padding: 0;
    }
    .searchRadio {
        padding: 0;
    }
    .searchRadio label {
        white-space: nowrap;
    }
    #jobSearchForm input[type="text"].searchUserLocation {
        border-right: 0;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        width: 66.66%;
    }
    #jobSearchForm .searchUserRadius {
        margin-left: 0;
        border-left: 0;
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
        padding-right: 5px;
        width: 33.33%;
    }
    .searchExtended .searchType {
        display: inline-block;
        padding: 0;
    }
    .hideSearchExtended {
        justify-content: flex-end;
        margin: 0 0 10px 0;
    }
    .searchSubmit {
        width: 100%;
        margin-top: 20px;
    }
    #jobSearchForm .searchBtn {
        width: 100%;
        position: relative;
        right: auto;
        bottom: auto;
        border-radius: 5px;
    }
}


/*///////////////////////////////////////////////////////
// Job listing
//////////////////////////////////////////////////////*/
.jobListingHeader {
    font-size: 16px;
    width: 100%;
    padding-bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-elvigray1);
}
.jobCountDisplay span {
    font-weight: 600;
}
.jobSort {
    display: inline-block;
}
.jobSortTitle {
    display: none;
    font-weight: 600;
    padding-right: 5px;
}
.jobSortTitle.active {
    display: inline-block;
}
.jobSort * {
    white-space: nowrap;
}
.jobSort select[name="jobSort"] {
    background: url('../Icons/arrow_down_light.svg') no-repeat 95% 12px / 8px 5px;
    display: inline-block;
    text-align: right;
    direction: rtl;
    padding: 3px 25px 3px 0;
    border: 0;
    outline: 0;
    width: auto;
    color: var(--color-elvigray1);
}

/* Custom DropDown */
.jobLocationMultiple {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.jobLocationMultiple select {
    background-color: transparent;
    color: #727272;
    font-size: 16px;
    padding-right: 0.5em;
    border: 0;
    margin: 0;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-family: "DIN", Arial, Helvetica, sans-serif;
    cursor: pointer;
}
.jobLocationMultiple select option[value="0"][selected="selected"] {
    color: var(--color-elvipurple);
}
.jobLocationMultiple select::-ms-expand {
    display: none;
}
.jobLocationMultiple::before, .jobLocationMultiple::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
/*.jobLocationMultiple::after {
    content: "\25BC";
    height: 1em;
    font-size: 9px;
    line-height: 1;
    right: 0.7em;
    top: 50%;
    margin-top: -.45em;
    color: #BABABA;
}*/
.jobLocationMultiple::before {
    width: 2em;
    right: 0;
    top: 0;
    bottom: 0;
}
.jobLocationMultiple select[disabled] {
    color: rgba(0,0,0,.25);
}


/* Listing */
.jobListing {
    position: relative;
    z-index: 20;
    padding-top: 135px;
    padding-bottom: 100px;
    transition: all 300ms ease-in-out;
}
.jobListing.extended {
    padding-top: 240px;
}
.jobListing .innerWrap {
    max-width: 1440px;
    display: flex;
}
.jobList {
    padding: 50px 100px 0 0;
    width: 60%;
}
.jobListMessages span {
    display: none;
}
.jobListResults {
    position: relative;
}
.jobItem:first-child {
    border-top: 1px solid var(--color-lightgray2);
}
.jobItem {
    width: 100%;
    border-bottom: 1px solid var(--color-lightgray2);
}
.jobLink {
    padding: 22px 22px 22px 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.jobItem .companyLogo {
    width: 110px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80% auto;
    border: 1px solid var(--color-lightgray2);
    border-radius: 5px;
}
.jobItem .companyLogo:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.jobInfo {
    width: calc(100% - 110px);
    padding-left: 25px;
}
.jobTitle {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 10px;
}
.jobTitle, .jobSub h3 {
    color: var(--color-elvigray1);
    display: inline-block;
}
.jobSub * {
    line-height: 16px;
}
.jobSub h3 {
    position: relative;
    font-size: 16px;
    margin-right: 15px;
    padding-left: 18px;
    color: #727272;
}
.jobSub h3:last-child {
    margin-right: 0;
}
.jobSub i {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    font-size: 10px;
    color: #959191;
}
.jobSub i.icon-house {
    padding-right: 8px;
}
.jobSub i.icon-marker {
    padding-right: 4px;
    font-size: 12px;
    margin-left: -1px;
}
.jobPreloader {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.jobListResults .jobPreloader:last-child {
    padding: 25px 0;
}
.jobPreloader svg {
    transition: all 300ms;
    width: 0;
    height: 0;
}
.jobPreloader.active svg {
    width: 100px;
    height: 100px;
}
.jobListing .jobListLoadMore {
    width: 100%;
    background-color: var(--color-elvigray2);
    color: var(--color-light);
    text-align: center;
    margin: 50px 0 0 0;
    font-size: 21px;
    text-transform: uppercase;
    transition: background-color 300ms ease-in-out;
}
.f3-widget-paginator, .jobCountHidden, .locationCountHidden {
    display: none;
}

/*///////////////////////////////////////////////////////
// Google Maps Custom Infowindow Overlay
//////////////////////////////////////////////////////*/

.colorLayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    background: var(--button-background);
}
.colorLayer[data-category="1"], .colorLayer[data-category="9"] {background-color: #3fc572;}
.colorLayer[data-category="2"], .colorLayer[data-category="8"] {background-color: var(--color-elviblue);}
.colorLayer[data-category="3"] {background-color: var(--color-elvipurple);}
.colorLayer[data-category="4"], .colorLayer[data-category="10"] {background-color: #27babc;}
.colorLayer[data-category="5"] {background-color: #FF2779;}
.colorLayer[data-category="6"], .colorLayer[data-category="11"] {background-color: var(--color-elvigray2);}
.colorLayer[data-category="7"] {background-color: #F8D32F;}
.jobMapInfo {
    position: relative;
    left: 15%;
    width: 85%;
    padding: 40px;
}
#overlay .markerHeadline * {
    font-size: 2.625rem;
    line-height: 1em;
    color: var(--color-elvigray1);
    margin: 0 0 15px 0;
}
.jobMapClose {
    display: none;
    position: absolute;
    z-index: 30;
    right: 30px;
    top: 30px;
    width: 40px;
    height: 40px;
    background: var(--color-light);
    border: 1px solid var(--color-elvigray2);
    border-radius: 50%;
}
.jobMapClose span {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.jobMapClose span:before, .jobMapClose span:after {
    content: "";
    position: absolute;
    background: #000;
    transform: rotate(45deg);
}
.jobMapClose span:before {
    width: 50%;
    height: 2px;
}
.jobMapClose span:after {
    width: 2px;
    height: 50%;
}
.gmapsConsentOverlay {
    position: absolute;
    z-index: 20;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gmapsConsent {
    max-width: 200px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
}


.gmapsPreview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.gmapsMap, .gmapsInfo {
    position: absolute;
}
.gmapsMap {
    object-fit: cover;
    object-position: center;
    filter: blur(4px);
}
.gmapsInfo {
    width: 75%;
    height: auto;
    cursor: pointer;
}
body.mapActive {
    padding-bottom: 55px;
}
body.mapActive > .jobListing .jobMapWrap {
    margin: 0;
}
body.mapActive .jobMapClose {
    display: block;
}
body.mapActive .jobMapExpand, body.mapActive #header, body.mapActive #footer, body.mapActive .jobHeader, body.mapActive .jobList {
    display: none;
}

/*///////////////////////////////////////////////////////
// Google Maps
//////////////////////////////////////////////////////*/
.jobMapWrap {
    display: flex;
    align-items: center;
    position: sticky;
    top: 64px;
    overflow: hidden;
    width: 40%;
    height: 100%;
    min-height: 90vh;
    border-radius: 15px;
    background: url('../Images/gmaps.jpg') no-repeat center center / cover;
}
#jobMap {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
#jobMap .gm-ui-hover-effect {
    width: 45px !important;
    height: 50px !important;
}
#jobMap .gm-ui-hover-effect span {
    width: 24px !important;
    height: 24px !important;
}
.mapPreview {
    display: none;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    cursor: pointer;
}
.mapPreview img {
    width: 100%;
    height: auto;
}
.jobMapExpand {
    display: none;
}
@media (max-width: 1280px) {
    .jobListing {
        padding-top: 185px;
    }
    .jobListing.extended {
        padding-top: 290px;
    }
}
@media (min-width: 1025px) {
    .jobTitle {
        transition: color 300ms;
    }
    /*.jobItem.hover {
        background-color: #FCFCFC;
    }*/
    .jobItem.hover .jobTitle {
        color: var(--color-elvipurple);
        transition: color 300ms;
    }
    .jobListing .jobListLoadMore:hover {
        background: var(--button-background);
        color: var(--color-light);
    }
}
@media (max-width: 1540px) {
    .jobList {
        padding: 25px 50px 25px 25px;
    }
}
@media (max-width: 1024px) {
    .jobListing .innerWrap {
        flex-direction: column-reverse;
        padding: 0 25px;
    }
    .jobList {
        width: 100%;
    }
    .jobMapWrap {
        position: relative;
        top: auto;
        width: calc(100% - 50px);
        left: auto;
        margin-left: 25px;
        min-height: 0;
        overflow: auto;
        height: 350px;
    }
    .jobMapWrap #jobMap {
        filter: blur(2px);
    }
    body.mapActive .jobMapWrap {
        display: block;
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }
    body.mapActive .jobMapWrap #jobMap {
        filter: none;
    }
    .jobMapExpand {
        display: block;
        position: absolute;
        z-index: 100;
        background: #fff;
        border-radius: 20px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 9px 49px;
        white-space: nowrap;
    }
    .companyMapExpand span {
        padding-left: 22px;
        position: relative;
        top: 3px;
    }
    .uc-embedding-container + .jobMapExpand {
        display: none;
    }
    #overlay .markerHeadline * {
        font-size: 2rem;
    }
    .colorLayer {
        width: 10%;
    }
    .jobMapInfo {
        left: 10%;
        width: 90%;
        padding: 20px;
    }
}
@media (max-width: 1500px) {
    .jobListing > .innerWrap {
        padding: 0 25px;
    }
}
@media (max-width: 810px) {
    .jobList {
        width: 100%;
    }
    .jobSub h3 {
        width: 100%;
        margin-bottom: 5px;
    }
}
@media (max-width: 860px) {
    .jobListing {
        display: flex;
        flex-direction: column-reverse;
    }
    .jobListing > .innerWrap {
        display: flex;
        flex-direction: column-reverse;
    }
    .jobList {
        width: 100%;
        padding-right: 0;
    }
    .jobItem {
        width: 100%;
    }
    .jobMapWrap {
        position: relative;
        top: auto;
        width: 100%;
        left: auto;
        margin: 0 0 25px 0;
        min-height: 0;
        height: 350px;
    }
    .jobMapWrap #jobMap {
        filter: blur(2px);
        transition: all 1000ms ease-in-out;
    }
    .jobMapWrap:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: rgba(0,0,0,0.3);
    }
    .mapActive .jobMapWrap:after {
        display: none;
    }
    body.mapActive .jobMapWrap {
        display: block;
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }
    body.mapActive .jobMapWrap #jobMap {
        filter: none;
    }
    .jobMapExpand {
        position: absolute;
        z-index: 100;
        background: #fff;
        border-radius: 20px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 4px 5px 6px 20px;
        white-space: nowrap;
        display: flex;
        align-items: center;
    }
    .jobMapExpand span {
        padding-left: 22px;
        position: relative;
        top: 3px;
    }
    #overlay .markerHeadline * {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .jobList {
        padding: 0;
    }
    .jobLink {
        padding: 22px 0;
        align-items: flex-start;
    }
    .jobItem .companyLogo {
        width: 90px;
    }
    .jobTitle {
        word-break: break-word;
        hyphens: auto;
    }
    .colorLayer {
        width: 5%;
    }
    .jobMapInfo {
        left: 5%;
        width: 95%;
        padding: 15px;
    }
    #overlay .markerHeadline * {
        font-size: 1.5rem;
    }
}

/*///////////////////////////////////////////////////////
// Plugins
//////////////////////////////////////////////////////*/

/*FilterTeaserStart*/
.jobFilterTeaser #jobSearchForm {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
}
.jobFilterTeaser .showSearchExtended {
    display: none;
}

/*///////////////////////////////////////////////////////
// Google Maps Styles
//////////////////////////////////////////////////////*/
.gm-style .gm-style-iw-c {
    border-radius: 5px !important;
    box-shadow: none !important;
}
.gm-style-iw {
    max-width: 100% !important;
}
.gmapsInfoWindow {
    padding: 30px !important;
}
.gmapsHeader {
    display: flex;
    margin-bottom: 50px;
}
.gmapsHeader > .headerLeft {
    width: 66.66%;
    padding-right: 15px;
}
.gmapsHeader > .headerRight {
    width: 33.33%;
}
.gmapsHeader .headerLeft span {
    font-family: 'PT Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: var(--color-elvigray1);
}
.gmapsHeader .headerLeft i {
    font-size: 14px;
    margin-right: 10px;
}
.gmapsHeader .headerLeft i.icon-marker {
    font-size: 12px;
}
.gmapsHeader .headerLeft i:before {
    color: var(--color-elvigray1);
}
.gmapsHeader .headerLeft .cpItemLocation {
    margin-bottom: 5px;
}
.gmapsHeader .headerRight {
    text-align: right;
}
.gmapsHeadline {
    font-size: 24px !important;
    margin: 0 0 20px 0 !important;
    line-height: 28px;
}
.gmapsContent {
    display: inline-block;
}