/*///////////////////////////////////////////////////////
// Module: Company Careers
//////////////////////////////////////////////////////*/
.benefitsAccordion {
    overflow: hidden;
}
.companyProfileDetail .careerOffers {
    padding: 40px 0;
}
.careerHeader {
    margin-bottom: 35px;
}
.careerHeader h2 {
    margin-bottom: 0;
}
.careerTabs {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
    left: auto;
    transform: none;
}
.careerTabs .filterTag {
    padding: 8px 20px;
    cursor: pointer;
}
.careerTabs .filterTag.active {
    border: 1px solid transparent;
    background: var(--button-background);
}
.careerTabs .filterTag.active .filterTagTitle {
    color: var(--color-light);
}
.careerTabs .slick-dots {
    display: flex;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
    transform: none;
    text-align: left;
    margin: 0;
    transition: all 500ms ease-in-out;
}
.careerTabs .slick-dots li {
    float: left;
    position: relative;
    width: auto;
    height: auto;
    cursor: pointer;
    margin: 0 10px 10px 0;
    text-align: center;
    transition: all 250ms ease-in-out;
}
.careerTabs ul {
    display: flex;
}
.careerTabs ul li {
    margin-right: 10px;
}
.careerTabs li.slick-active .filterTag {
    border: transparent;
    background: var(--button-background);
    transition: all 250ms ease;
}
.careerTabs li.slick-active .filterTag .rangeFaderTabLink {
    color: var(--color-light);
    transition: all 250ms ease;
}
.careerGroup, .careerOffersContent .careerItem {
    display: none;
}
.careerGroups, .careerGroup.active, .careerOffersContent .careerItem.active {
    display: flex;
}
.careerGroups, .careerGroup.active {
    flex-wrap: wrap;
}
.careerItem {
    position: relative;
    display: flex;
    margin: 0 20px 15px 0;
    float: left;
    cursor: default;
    border: 1px solid var(--color-elvigray3);
    border-radius: 5px;
    overflow: hidden;
}
.careerItemLink {
    position: absolute;
    z-index: 40;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.careerItem[data-category="0"] .careerBackground {
    background-color: var(--color-elvigray1);
}
.careerItem[data-category="1"] .careerBackground {
    background-color: var(--color-elvigreen);
}
.careerItem[data-category="2"] .careerBackground {
    background-color: var(--color-elviblue);
}
.careerItem[data-category="3"] .careerBackground {
    background-color: var(--color-elvipurple);
}
.careerItem[data-category="4"] .careerBackground {
    background-color: var(--color-elvimint);
}
.careerItem[data-category="5"] .careerBackground {
    background-color: var(--color-elvipink);
}
.careerItem[data-category="6"] .careerBackground {
    background-color: var(--color-elvigray1);
}

.careerItem[data-degree="Bachelor of Science"] .careerBackground {background-color: rgb(6,101,83);  background: linear-gradient(-135deg, rgba(6,101,83,1) 0%, rgba(148,217,121,1) 100%);}
.careerItem[data-degree="Bachelor of Laws"] .careerBackground {background-color: rgb(113,80,233);  background: linear-gradient(-135deg, rgba(113,80,233,1) 0%, rgba(255,39,121,1) 100%);}
.careerItem[data-degree="Bachelor of Education"] .careerBackground {background-color: rgb(245,176,113);  background: linear-gradient(-135deg, rgba(245,176,113,1) 0%, rgba(255,39,121,1) 100%);}
.careerItem[data-degree="Bachelor of Arts"] .careerBackground {background-color: rgb(36,194,196); background: linear-gradient(135deg, rgba(36,194,196,1) 0%, rgba(42,130,204,1) 100%);}
.careerItem[data-degree="Bachelor of Engineering"] .careerBackground {background-color: rgb(113,80,233); background: linear-gradient(-135deg, rgba(113,80,233,1) 0%, rgba(42,130,204,1) 100%);}

.careerIcon {
    position: relative;
    z-index: 2;
    display: none;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    width: 55px;
}
.careerItem.hasIcon .careerIcon {
    display: flex;
}
.careerIcon img {
    position: absolute;
    width: 65%;
    height: 65%;
    object-fit: contain;
}
.careerBackground {
    width: 15px;
    min-width: 15px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}
.careerItem.hasIcon .careerBackground {
    width: 55px;
    min-width: 55px;
}
.careerTitle {
    position: relative;
    z-index: 30;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-elvigray1);
    padding: 15px 25px;
    white-space: nowrap;
    transition: color 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
    .careerItem.hasLink:hover .careerBackground {
        width: 100%;
        min-width: auto;
    }
    .careerItem.hasLink:hover .careerTitle {
        color: var(--color-light);
    }
}
@media (max-width: 1023px) {
    .careerTabs ul {
        overflow: auto;
    }
}
@media (max-width: 767px) {
    .careerHeader {
        margin-bottom: 20px;
    }
    .careerTabs .filterTag {
        padding: 6px 12px;
    }
    .careerItem, .careerTitle {
        width: 100%;
    }
    .careerTitle {
        font-size: 15px;
        line-height: 18px;
        white-space: normal;
    }
}