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


/*///////////////////////////////////////////////////////
// Company Search
//////////////////////////////////////////////////////*/
#companySearchForm {
    position: absolute;
    z-index: 30;
    width: 100%;
    max-width: 1440px;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 30px 45px 40px 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;
}
#companySearchForm.extended {
    transition: all 400ms ease-in-out;
    padding: 45px 45px 180px 45px;
}
.companyListingHeadline {
    width: 100%;
    font-size: 24px;
    line-height: 24px;
    text-align: left;
    color: var(--color-elvigray1);
}
.searchFields {
    width: calc(100% - 180px);
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}
.searchMain {
    width: 100%;
    position: relative;
    display: flex;
}
.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);
    }
}
.companyfilterVoice {
    width: 55px;
}
.companyfilterVoice > 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%);
}
.companyfilterVoice.record .voiceAnimation {
    opacity: 1;
}
.companyfilterVoice .icon-microphone {
    position: relative;
    transition: 250ms color linear;
}
.companyfilterVoice.record .icon-microphone {
    animation: voiceColor 0.5s 2s linear infinite;
}
@keyframes voiceColor {
    from {
        color: var(--color-elvipurple);
    }
    to {
        color: var(--color-darkgray1);
    }
}
/*.companyfilterVoice.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;
}
.searchInputCompanies {
    width: 100%;
}
#companySearchForm input[type="text"]:focus, #companySearchForm input[type="text"]:active {
    outline: 0;
}
#companySearchForm .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;
}
#companySearchForm.extended .showSearchExtended {
    opacity: 0
}
#companySearchForm.extended > div, #companySearchForm.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;
}
#companySearchForm .searchUserLocation {
    width: 60%;
    float: left;
}
#companySearchForm .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;
}
#companySearchForm .searchUserRadius:disabled {
    background-color: #f0f0f0;
    opacity: 0.3;
}
/*#companySearchForm .searchUserRadius[disabled="disabled"] {
    color: #dadada;
}*/
.searchCategory > div {
    width: calc(50% - 5px);
}
.searchSubmit {
    width: 180px;
    position: relative;
}
#companySearchForm .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;
}
#companySearchForm.extended .searchBtn {
    bottom: -133px;
}
@media (hover: hover) and (pointer: fine) {
    .companyfilterVoice:hover:not(.record) > span {
        border: 1px solid var(--color-gray2);
        background: var(--color-gray2);
        color: var(--color-light);
    }
    .companyfilterVoice:hover.record > span {
        border: 1px solid var(--color-elvipurple);
        color: var(--color-elvipurple);
    }
    .companyfilterVoice:hover .tooltipVoice {
        opacity: 1;
    }
    .searchText .icon-plus:hover {
        color: var(--color-elvipurple);
    }
    .hideSearchExtended:hover span {
        color: var(--color-elvipurple);
    }
    #companySearchForm .searchBtn:hover {
        background: var(--button-background);
        color: var(--color-light);
        transition: background-color 300ms ease-in-out;
    }
    #companySearchForm .showSearchExtended:hover .tooltipSearch {
        opacity: 1;
    }
}
@media (max-width: 1024px) {
    .tooltipIcon {
        display: none;
    }
}
@media (max-width: 767px) {
    #companySearchForm {
        transform: translate(-50%, 80%);
    }
    #companySearchForm.extended .searchBtn {
        bottom: auto;
    }
    #companySearchForm .searchUserRadius {
        padding-left: 30px;
    }
}


/*///////////////////////////////////////////////////////
// Company Search Filter
//////////////////////////////////////////////////////*/
#companySearchForm select, .companySort 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;
}
#companySearchForm select option, .companySort select option {
    color: #333;
    border: 0;
    outline: 0;
}
#companySearchForm input[type="text"], #companySearchForm select {
    border: 1px solid var(--color-gray2);
    border-radius: 5px;
    font-size: 18px;
    color: var(--color-elvigray1);
    padding: 14px 14px 14px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#companySearchForm .searchExtended {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding-left: 75px;
    position: absolute;
    bottom: 53px;
    height: 130px;
}
#companySearchForm.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: inline-block;
    padding-right: 30px;
    padding-top: 6px;
}
.searchType .radioLabel {
    color: var(--color-elvigray1);
    font-size: 18px;
    cursor: pointer;
    white-space: nowrap;
}
@media (max-width: 1540px) {
    #companySearchForm {
        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;
    }
    .companyfilterVoice, .searchText, .searchLocations {
        float: left;
    }
    #companySearchForm .searchUserRadius {
        background: url('../Icons/arrow_down.svg') no-repeat top 53% right 94% / 11px 7px;
    }
}
@media (max-width: 1023px) {
    #companySearchForm {
        padding-bottom: 100px;
    }
    .searchFields {
        width: 100%;
    }
    .searchSubmit {
        position: initial;
    }
    #companySearchForm .searchBtn {
        bottom: 30px;
        right: 55px;
    }
    #companySearchForm.extended .searchExtended {
        width: calc(100% - 100px);
        opacity: 1;
        max-height: 100%;
    }
}
@media (max-width: 767px) {
    #companySearchForm {
        width: 100%;
        padding: 50px 25px;
        /*transform: translate(-50%, -100%);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;*/
    }
    #companySearchForm input[type="text"], #companySearchForm select {
        padding: 14px 40px 14px 20px;
    }
    #companySearchForm.extended {
        padding: 30px;
    }
    #companySearchForm.extended .searchExtended {
        width: 100%;
        padding-left: 0;
        position: relative;
        bottom: auto;
        height: auto;
    }
    #companySearchForm .searchExtended > div {
        width: 0;
    }
    #companySearchForm.extended .searchExtended > div {
        width: 100%;
    }
    #companySearchForm .searchUserRadius {
        background: url('../Icons/arrow_down.svg') no-repeat top 53% right 85% / 11px 7px;
    }
    .searchLocations.active {
        display: block;
    }
    .searchLocations {
        display: flex;
        margin: 15px 0 0 0;
        padding-right: 0;
    }
    .searchLocations .searchSubmit {
        margin: 0;
        width: 25%;
    }
    .searchText, .searchLocations {
        width: 100%;
    }
    .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;
    }
    #companySearchForm .searchBtn {
        right: 35px;
    }

    #companySearchForm {
        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;
    }
    #companySearchForm input[type="text"].searchUserLocation {
        width: 40%;
    }
    #companySearchForm .searchUserRadius {
        padding-right: 5px;
        width: calc(35% - 20px);
        margin: 0 10px;
    }
    .searchExtended .searchType {
        display: inline-block;
        padding: 0;
    }
    .hideSearchExtended {
        justify-content: flex-end;
        margin: 0 0 10px 0;
    }
    .searchSubmit {
        width: 100%;
        margin-top: 20px;
    }
    #companySearchForm .searchBtn {
        width: 100%;
        padding: 14px 10px;
        position: relative;
        right: auto;
        bottom: auto;
        border-radius: 5px;
    }
}


/*///////////////////////////////////////////////////////
// Company Listing
//////////////////////////////////////////////////////*/
.companyProfileListing {
    padding: 100px 0 100px 0;
}
.companyProfileListing > .innerWrap {
    max-width: 1440px;
    display: flex;
    flex-wrap: wrap;
}
.companyProfileListing .innerWrap:first-child {
    margin-top: 50px;
}
.cpList {
    padding-right: 90px;
    width: 60%;
}
.companyListingHeader {
    position: relative;
    z-index: 20;
    width: 100%;
}

/* Filter Tags */
.companyProfileFilter {
    position: relative;
    z-index: 50;
    width: 100%;
    margin-bottom: 25px;
}
.companyProfileFilter .filterTags {
    display: block;
    position: relative;
    width: 100%;
    left: auto;
    transform: none;
}
.companyProfileFilter .filterTag {
    background-color: transparent;
    padding: 10px 15px 10px 20px;
}
.companyProfileFilter .filterTag.disabled {
    user-select: none;
    opacity: 0.5;
}
.companyProfileFilter .filterTag.hovered {
    background: var(--button-background);
    border-color: transparent;
}
.companyProfileFilter .filterTag.hovered .filterTagTitle {
    color: var(--color-light);
}
.companyProfileFilter .filterTag.active, .companyProfileFilter .filterTag.hasValue {
    border: 1px solid transparent;
    background: var(--button-background);
}
.companyProfileFilter .filterTag.disabled {
    border: 1px solid rgb(82, 82, 82);
    background-color: var(--color-light);
}
.filterTag.disabled .filterTagTitle {
    color: rgb(82, 82, 82);
}
.companyProfileFilter .filterTags .slick-slide > div {
    padding: 0 5px;
}
.companyProfileFilter .filterTags.overflown .slick-list {
    overflow: visible;
}
.companyProfileFilter .benefitTag {
    background: transparent;
    border: 0;
}
.companyProfileFilter .filterTagTitle {
    display: flex;
    align-items: center;
}
.cpListStatus {
    margin-bottom: 20px;
}
.companyListResults {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.companyCount {
    font-weight: 600;
}
.companyCountHidden {
    display: none;
}
.cpListItem {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(50% - 25px);
    overflow: hidden;
    border-radius: 7px;
    margin-bottom: 44px;
}
.cpListItem.hasTopEntry {
    background: #DAD0FF;
    padding: 7px;
}
/*.cpListItem.hasTopEntry .cpBorder {
    border: 7px solid #DAD0FF;
    border-radius: 7px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.cpListItem.hasTopEntry .cpItemContent {
    border: 0;
    border-radius: 0;
}*/
.cpListItem .profileTopEntryBadge {
    position: absolute;
    z-index: 30;
    top: 7px;
    right: 7px;
    width: 106px;
    height: 26px;
}
.cpItemHeader {
    position: relative;
    width: 100%;
}
.cpItemHeader > a {
    display: block;
}
.cpItemImage {
    aspect-ratio: 5 / 4;
}
.cpItemImage img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.cpItemLogo {
    position: absolute;
    z-index: 30;
    left: 30px;
    bottom: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    padding: 10px;
    background: var(--color-light);
    border: 1px solid var(--color-lightgray2);
    border-radius: 7px;
}
.cpItemLogo img {
    object-fit: contain;
    width: 100%;
    height: auto;
}
.cpItemContent {
    position: relative;
    height: 100%;
    padding: 40px 10px 80px 30px;
    background-color: var(--color-light);
    border: 1px solid var(--color-lightgray2);
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    border-top: 0;
}
.cpItemHeadline {
    margin-bottom: 8px;
}
.cpItemHeadline a {
    display: block;
    width: 100%;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 27px;
    color: var(--color-elvigray1);
}
.cpItemLocation {
    margin-bottom: 3px;
}
.cpItemBenefits {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}
.cpItemButton {
    display: block;
    padding: 6px 30px 4px 30px;
    font-family: 'DIN', Arial, Helvetica, sans-serif;
    font-size: 1.125rem;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-elvigray1);
    border-radius: 7px;
    background: #fff;
    border: 1px solid var(--color-lightgray2);
    transition: all 150ms ease;
    position: absolute;
    bottom: 30px;
    width: calc(100% - 60px);
    left: 30px;
}
.companyListLoadMore {
    width: 100%;
    background: var(--color-elvigray2);
    color: var(--color-light);
}
.companyPreloader {
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}
.companyPreloader:last-child {
    padding: 25px 0;
}
.companyPreloader svg {
    transition: all 300ms;
    width: 0;
    height: 0;
}
.companyPreloader.active {
    display: flex;
}
.companyPreloader.active svg {
    width: 100px;
    height: 100px;
}
.noResults {
    display: none;
}

/*** Google Maps ***/
.companyMapWrap {
    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;
}
#companyMap {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
#companyMap .gm-ui-hover-effect {
    width: 45px !important;
    height: 50px !important;
}
#companyMap .gm-ui-hover-effect span {
    width: 24px !important;
    height: 24px !important;
}

#overlay .markerHeadline * {
    font-size: 2.625rem;
    line-height: 1em;
    color: var(--color-elvigray1);
    margin: 0 0 15px 0;
}
.companyMapExpand {
    display: none;
}
.companyMapClose {
    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%;
}
.companyMapClose span {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.companyMapClose span:before, .companyMapClose span:after {
    content: "";
    position: absolute;
    background: #000;
    transform: rotate(45deg);
}
.companyMapClose span:before {
    width: 50%;
    height: 2px;
}
.companyMapClose span:after {
    width: 2px;
    height: 50%;
}
body.mapActive {
    padding-bottom: 55px;
}
body.mapActive > .companyListing .companyMapWrap {
    margin: 0;
}
body.mapActive .companyMapClose {
    display: block;
}
body.mapActive .companyMapExpand, body.mapActive #header, body.mapActive #footer, body.mapActive .companyHeader, body.mapActive .companyList {
    display: none;
}
.cpJobLink, .cpJobLink span {
    color: var(--color-darkgray1);
    text-decoration: none;
}
.cpItemJobs {
    display: none;
}
@media (hover: hover) and (pointer: fine) {
    .cpItemButton:hover, .cpListItem:hover .cpItemButton, .companyListLoadMore:hover {
        background: var(--button-background);
        border-color: transparent;
        color: var(--color-light);
    }
}
@media (max-width: 1500px) {
    .companyProfileListing .innerWrap {
        padding: 0 25px;
    }
}
@media (max-width: 1280px) {
    .companyProfileListing {
        padding: 160px 0 100px 0;
    }
    .cpList {
        padding-right: 50px;
    }
    .cpListItem {
        width: calc(50% - 12px);
    }
}
@media (max-width: 1024px) {
    .companyProfileListing {
        padding: 220px 0 100px 0;
    }
    .cpList {
        width: 60%;
        padding-right: 25px;
    }
    .companyMapWrap {
        width: 40%;
    }
    /*.cpListItem {
        width: 100%;
    }*/
}
@media (max-width: 860px) {
    .cpListWrap {
        display: flex;
        flex-direction: column-reverse;
    }
    .companyProfileListing .innerWrap:nth-child(2) {
        display: flex;
        flex-direction: column-reverse;
    }
    .cpList {
        width: 100%;
        padding-right: 0;
    }
    .cpListItem {
        width: calc(50% - 25px);
    }
    .companyMapWrap {
        position: relative;
        top: auto;
        width: 100%;
        left: auto;
        margin: 0 0 25px 0;
        min-height: 0;
        height: 350px;
    }
    .companyMapWrap #companyMap {
        filter: blur(2px);
        transition: all 1000ms ease-in-out;
    }
    .companyMapWrap:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: rgba(0,0,0,0.3);
    }
    .mapActive .companyMapWrap:after {
        display: none;
    }
    body.mapActive .companyMapWrap {
        display: block;
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }
    body.mapActive .companyMapWrap #companyMap {
        filter: none;
    }
    .companyMapExpand {
        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;
    }
    .companyMapExpand span {
        padding-left: 22px;
        position: relative;
        top: 3px;
    }
    #overlay .markerHeadline * {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .companyProfileListing {
        padding: 160px 0 100px 0;
    }
    .companyProfileListing {
        background-color: var(--color-elvigray4);
        /*padding: 0;*/
    }
    .companyProfileListing .innerWrap:first-child {
        margin-top: 25px;
    }
    .cpListItem {
        width: calc(50% - 5px);
    }
    .companyProfileFilter .filterTag.active .filterTagList {
        max-width: 398px;
        margin: 0 auto;
    }
    .companyProfileFilter .filterTags {
        display: flex;
        overflow: auto;
    }
    .companyProfileFilter .filterTags, .companyProfileFilter .filterTag {
        position: unset;
    }
    .companyProfileFilter .filterTag {
        padding: 3px 15px 3px 20px;
    }
    .companyProfileFilter .filterTags, .cpListStatus {
        padding: 0 25px;
    }
    .companyProfileFilter .filterTag .icon-close {
        padding: 8px;
    }
    .companyProfileListing .innerWrap:first-child {
        padding: 0;
    }
    .cpItemContent {
        padding: 70px 10px 80px 10px;
    }
    .cpItemLogo {
        left: 10px;
        bottom: -50px;
        width: 100px;
        height: 100px;
        padding: 5px;
        border-radius: 4px;
    }
    .cpItemHeadline a, .cpItemContent .iconWrap span {
        font-size: 21px;
        line-height: 24px;
    }
    .cpItemContent .iconWrap span {
        font-size: 0.875rem;
        line-height: 1.1em;
    }
    .cpItemButton {
        bottom: 20px;
        width: calc(100% - 20px);
        left: 10px;
        padding: 6px 10px 4px 10px;
        border-radius: 4px;
        font-size: 1.1rem;
    }
}

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

.cpCompanyLink {
    color: var(--color-darkgray1);
    text-decoration: none;
}


