/* Minification failed. Returning unminified contents.
(44,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-white'
(58,32): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(59,35): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(68,67): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(87,57): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(92,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-off-black'
(120,3): run-time error CSS1030: Expected identifier, found ' '
(120,3): run-time error CSS1019: Unexpected token, found ' '
(122,40): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(131,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(172,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(173,35): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(178,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(188,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(189,35): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(238,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-white'
(258,35): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(275,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(283,29): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
(291,17): run-time error CSS1039: Token not allowed after unary operator: '-brand-white'
(298,66): run-time error CSS1039: Token not allowed after unary operator: '-brand-yellow'
(328,75): run-time error CSS1039: Token not allowed after unary operator: '-brand-purple'
 */
/* ---------- COMPANY INDEX PAGE SECTION ----------*/
.contain-img {
    height: 100%;
    width: 100%;
}

.contain-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.primary-btn-arrow {
    box-sizing: border-box;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.75rem;
    width: fit-content;
}

.arrow-icon {
    position: relative;
    padding: 0.5rem;
    height: 1rem;
    width: 1rem;
    transition: all .4s ease-in-out;
}
/* ---------- HERO SECTION ----------*/
.companies-banner {
    background: url(/assets/img/index-banner.png) no-repeat center;
    background-position: center;
    background-size: cover;
}

.companies-banner .banner-container { padding: 2rem 1rem; }

.companies-banner .banner-container .banner-header {
    padding: 1.25rem 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: darken;
    border-radius: 0.25rem;
    color: var(--brand-white);
}

.companies-banner .banner-container .banner-header p {
    padding-top: 1rem;
    font-size: 1.1rem;
    font-weight: 200;
}

.companies-banner .banner-container .banner-header .bold-font { font-weight: 500; }

.companies-alphabet { margin: 1rem 0.75rem; }

.companies-alphabet .alphabet-list {
    border-top: 1px solid var(--brand-off-black);
    border-bottom: 1px solid var(--brand-off-black);
    padding: 0.5rem 0.25rem;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem 0.75rem;
}

.companies-alphabet .alphabet-list li { place-self: center; }

.companies-alphabet .alphabet-list li .main-link-hv { color: var(--brand-off-black); }

.companies-list { padding: 2rem 1rem; }

.companies-card-container { padding: 1rem 0.75rem; }

.companies-card-container li { padding: 0.75rem 0; }

.companies-card {
    box-shadow: 0 0 6px rgba(102, 51, 153, 0.5);
    border-radius: 0.25rem;
    padding: 1rem;
    display: grid;
}

.companies-card:hover { box-shadow: 0 0 6px rgba(102, 51, 153, 0.8); }

.companies-card:focus { outline: none; }

.companies-card:focus-visible { outline: 1px solid var(--brand-purple); }

.companies-card .card-inner {
    display: grid;
    gap: 0.5rem;
    color: var(--brand-off-black);
}

.companies-card .bookmark-icon {
    visibility: hidden;
    display: inline-block;
    height: 1.5rem;
    width: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease-out;
    background: url('/assets/img/icons/bookmark-blk.svg') no-repeat;
    place-self: end;
}

.companies-card .companies-logo {
    width: 6rem;
    height: 6rem;
    place-self: center;
}

.companies-card .companies-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

./*companies-card h3 { 
    padding-top: 0.5rem; 
}*/

.companies-card:hover h3 { color: var(--brand-purple); }

.companies-card p {
    /*padding: 0.5rem 0;*/
    font-size: 0.9rem;
}

.companies-card .companies-link {
    justify-self: end;
    color: var(--brand-purple);
    font-weight: 300;
    font-size: 1rem;
    display: flex;
    align-items: center;
    width: fit-content;
}

.companies-card .companies-link::after {
    content: '';
    display: inline-block;
    height: 1rem;
    width: 1rem;
    margin-left: 0.5rem;
    background: url('/assets/img/icons/apply-btn-pur.svg') no-repeat;
}
/* ---------- END HERO SECTION ----------*/

/* ---------- PAGINATION SECTION ----------*/
.hidden { display: none; }

.pagination-container {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    justify-content: space-between;
}

.pagination-number,
.pagination-button {
    font-size: 1rem;
    margin: 0 0.5rem;
    cursor: pointer;
    height: 1.5rem;
    width: auto;
}

.pagination-number:hover,
.pagination-button:not(.disabled):hover {
    box-sizing: border-box;
    transition: all .4s ease-in-out;
    color: var(--brand-purple);
    border-bottom: 2px solid var(--brand-purple);
}

.pagination-number:focus,
.pagination-button:focus {
    color: var(--brand-purple);
    outline: auto;
}

    .pagination-button.disabled {
        cursor: default;
        color: #ccc;
    }

.pagination-number.active {
    color: var(--brand-purple);
    border-bottom: 2px solid var(--brand-purple);
    font-weight: 500;
}
/* ---------- END PAGINATION SECTION ----------*/
/* ---------- END COMPANY INDEX PAGE SECTION ----------*/

/* ---------- COMPANY PROFILE SECTION ----------*/
/* ---------- HERO SECTION ----------*/
.company-banner { position: relative; }

.the-john-lewis-partnership .company-banner { background-position: top right -36rem!important; }

.company-banner .overlay-company {
    background-color: rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.company-banner .banner-container .banner-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.company-banner .banner-container {
    display: grid;
    align-content: space-between;
    gap: 1rem;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.company-banner .banner-container .banner-image {
    width: 70%;
    padding: 0.25rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0.25rem;
}

.company-banner .banner-container .banner-header {
    display: grid;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    background-blend-mode: darken;
    border-radius: 0.25rem;
    color: var(--brand-white);
    width: fit-content;
}

.company-banner .banner-container .banner-header p { font-size: 1rem; }

.company-banner .banner-container .banner-header h1,
.company-banner .banner-container .banner-header p  { width: fit-content; }
/* ---------- END HERO SECTION ----------*/

/* ---------- COMPANY HOME PAGE ---------- */
.company-profile .company-profile-container {
    display: grid;
    gap: 1rem;
    margin-bottom: 5rem;
    padding: 1.5rem 1rem;
}

.company-profile .company-intro {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--brand-purple);
}

.company-profile .company-intro .breadcrumb { 
    padding-bottom: 1rem; 
    display: none;
}

.company-profile .company-intro h1 { 
    font-size: 1.5rem; 
    padding-bottom: 1rem;
}

.company-profile .company-intro .company-cta-profile { padding-top: 1.25rem; }

.company-profile .company-intro .company-cta-profile .main-link-hv {
    display: inline-block;
    color: var(--brand-purple);
    text-decoration: underline;
    font-weight: 500;
}

.company-profile .company-intro .company-cta-profile .main-link-hv:hover { text-decoration: auto; }

.company-profile .company-intro .company-cta-profile .main-link-hv:focus {
    outline: 1px solid var(--brand-purple);
    transition: outline 0.2s ease;
    border-radius: 0.05rem;
    outline-offset: 2px;
}

.main-search.open .company-additional-filter {
    cursor: pointer;
    color: var(--brand-white);
    text-decoration: underline;
    place-self: end;
    padding-bottom: 2rem;
    transition: all .4s ease-in-out;
}

.main-search.open .company-additional-filter:hover { color: var(--brand-yellow); }

.main-search .company-additional-filter.open { display: none; }

.company-profile .company-filter-section {
    display: grid;
    justify-content: flex-end;
}

.company-profile .company-filter-section .filter-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.company-profile .company-filter-section .filter-icon::after {
    content: '';    
    display: inline-block;
    height: 2rem;
    width: 2rem;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: all .4s ease-in-out;
    background: url('/assets/img/icons/filters-blk.svg') no-repeat;
}

.company-profile .company-filter-section .filter-icon:hover::after,
.company-profile .company-filter-section .filter-icon:focus::after { background: url('/assets/img/icons/filters-pur.svg') no-repeat; }

.company-profile .company-filter-section .filter-icon:hover,
.company-profile .company-filter-section .filter-icon:focus { color: var(--brand-purple); }

.filters.open { margin-top: 3rem; }

.filter-radio-btns label { display: inline-block; }

.filter-container .other-location-input { margin: 0.5rem 0 1rem; }

.company-profile .job-feed { padding: 0 0; }

.company-profile .job-feed .job-card .cp-company-title,
.company-profile .job-feed .job-card .source-title { display: none; }

.company-profile .results-browse-links { padding: 1.5rem 0; }

.company-profile .company-email-signup {
    background-color: #FBF9FC;
    padding: 1rem;
    box-shadow: inset 0 0 6px rgba(102, 51, 153, 0.75);
    border-radius: 0.25rem;
}

.company-profile .company-email-signup .job-alerts-form fieldset {
    display: grid;
    gap: 0 0;
}

.company-profile .company-email-signup .consent-para { 
    text-align: left; 
    padding-top: 0.75rem;
}

.company-profile .company-email-signup .consent-para br { display: none; }
/* ---------- END COMPANY HOME PAGE ---------- */

.results-browse-links.no-more-company-data {
    padding: 1.1rem;
    border: none;
    border-radius: 0.25rem;
    color: #155724;
    background-color: #D4EDDA;
    height: fit-content;
    margin-bottom: 2rem;
}

.results-browse-links.no-more-company-data p { padding-bottom: 1.75rem; }

.cs-search-keywords { text-transform: capitalize; }
/* ---------- END  COMPANY PROFILE SECTION ----------*/

.the-john-lewis-partnership .company-banner .banner-container .banner-image,
.bupa .company-banner .banner-container .banner-image,
.ey .company-banner .banner-container .banner-image,
.turtle-bay .company-banner .banner-container .banner-image,
.touchpoint .company-banner .banner-container .banner-image,
.foodplus .company-banner .banner-container .banner-image,
.compass-technology .company-banner .banner-container .banner-image,
.compass-digital .company-banner .banner-container .banner-image,
.e15-group .company-banner .banner-container .banner-image,
.healthcare-digital .company-banner .banner-container .banner-image,
.holland-america .company-banner .banner-container .banner-image,
.strategic-dining-services .company-banner .banner-container .banner-image { background-color: initial; }

.the-john-lewis-partnership .company-banner .banner-container .banner-image,
.the-john-lewis-partnership .social-quote-container .social-quote-image { width: 12.5rem; }

@media only screen and (min-width: 28rem) {

    .the-john-lewis-partnership .company-banner { background-position: top right -29rem !important; }
    
    .company-banner .banner-container .banner-image {
        width: 17.5rem;
        height: fit-content;
    }

    .company-banner .primary-btn-arrow { width: 17.5rem;  }
    
    .results-browse-links.no-more-company-data { padding: 2.1rem; }

    .the-john-lewis-partnership .company-banner .banner-container .banner-image,
    .the-john-lewis-partnership .social-quote-container .social-quote-image { width: 12.5rem; }
}

@media only screen and (min-width: 30rem) {

    .companies-card p { font-size: 1rem; }

}

@media only screen and (min-width: 42rem) {

    .company-profile .company-email-signup .job-alerts-form {
        display: grid;
        grid-template-columns: 1fr 12rem;
    }

    .company-profile .company-email-signup .job-alerts-form fieldset { padding-right: 0.5rem; }

    .company-profile .company-email-signup .job-alerts-form p { font-size: 1rem; }

    .company-profile .company-email-signup .job-alerts-form .primary-btn {
        height: fit-content;
        place-self: end;
    }

    .company-profile .company-email-signup .consent-para { font-size: 0.9rem; }
}

@media only screen and (min-width: 47rem) {

    .companies-banner .banner-container .banner-header { max-width: 26rem; }

    .companies-alphabet .alphabet-list { grid-template-columns: repeat(9, 1fr); }

    .companies-card-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    
    .companies-card-container li { padding: 0 0; }

    .companies-card-container li:not(.hidden) {
        display: flex;
        flex-direction: row;
    }

    .companies-card-container li:not(.hidden) .companies-card { width: 100%; }
}

@media only screen and (min-width: 52.5rem) {
    
    .the-john-lewis-partnership .company-banner { background-position: center !important; }
    
    .company-banner .banner-container { padding: 2rem 2rem; }

}

@media only screen and (min-width: 60rem) {

    .companies-alphabet { margin: 1rem 2rem; }

}

@media only screen and (min-width: 65rem) {

    .companies-banner .banner-container,
    .companies-list { padding: 1.5rem 1.5rem; }

    .company-profile .company-profile-container {
        grid-template-columns: 1fr 19rem;
        grid-gap: 1.5rem 1.5rem;
        margin: 0 auto;
        padding: 1.5rem 1.5rem;
        grid-template-areas:
            'company-intro company-intro'
            'job-feed filter-section'
            'job-feed .';
    }
    
    .company-profile .company-intro { grid-area: company-intro; }

    .company-profile .search-section {
        grid-area: company-search;
        display: none;
    }

    .company-profile .company-additional-filter { display: none; }

    .company-profile .main-search .results-filter-form { padding: 0; }

    .company-profile .company-intro h1 { font-size: 2rem; }

    .company-profile .company-filter-section { display: none; }

    .company-profile .filter-section { grid-area: filter-section; }

    .company-profile .company-job-feed { grid-area: job-feed; }

    .company-job-feed .results-browse-links ul { grid-template-columns: repeat(2, 1fr); }
}

@media only screen and (min-width: 77rem) {

    .companies-alphabet .alphabet-list { grid-template-columns: repeat(11, 1fr); }

    .companies-card .card-inner {
        grid-template-columns: auto 1fr;
        gap: 0.25rem 1rem;
    }

    .companies-card .bookmark-icon { grid-column: 3; }

    .companies-card h3 {
        grid-column: 2;
        grid-row: 1;
    }

    .companies-card p { grid-column: 2; }

    .companies-card .companies-logo { grid-row: 1 / span 2; }

}

@media only screen and (min-width: 80rem) {

    .the-john-lewis-partnership .company-social-quote { background-position: center !important; }

    .company-banner .banner-container {
        width: 70rem;
        margin: 0 auto;
        padding: 3rem 0;
    }

    .company-profile .company-profile-container { max-width: 70rem; }

    .companies-banner .banner-container,
    .companies-list {
        width: 70rem;
        margin: 0 auto;
    }
}

@media only screen and (min-width: 100rem) {

    .company-banner .banner-container { width: 85rem; }

    .company-profile .company-profile-container { max-width: 85rem; }


    .companies-banner .banner-container,
    .companies-list { width: 85rem; }

    .companies-alphabet {
        max-width: 80rem;
        margin: 1rem auto;
    }

    .companies-alphabet .alphabet-list {
        grid-template-columns: 1fr;
        display: flex;
        justify-content: space-between;
    }

}

