.menu__dropdownHolder {
    z-index: 999;
}

/* Card styling */
.card__job {
    border: 1px solid white;
    padding: 0px;
}
.card__job a{
    display: block;
}
.link-job-wrap {
    cursor: pointer;
    padding: 16px;
}

.card__job:last-child {
    margin-bottom: 0px;
}

/* Inner card styling */
.card__job-c {
    position: relative;
    width: calc(100% - 90px);
    display: inline-block;
    font-size: 0;
}
.card__job-link {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--purple-dark);
}
.card__job-logo {
    width: 60px;
    padding: 5px;
    margin-right: 24px;
    vertical-align: top;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid #F0F0F0;
}
.card__job-empname-label {
    color: var(--purple);
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    line-height: 22px;
}
.card__job-snippet-logo {
    position: relative;
    width: 100%;
    display: inline-block;
    top: 5px;
}
.card__job-location * {
    font-size: 14px;
    color: var(--nero);
    line-height: 22px;
}
.card__job-location {
    font-weight: 400;
}
.card__job-empname {
    padding: 0px 5px 0px 0px;
    margin-bottom: 5px;
}
.card__job-info {
    padding: 0px 0px 0px 0px;
}
.card__job-title {
    margin-bottom: 0px;
    margin-right: 50px;
}
.card__job-snippet {
    color: var(--grey);
    line-height: 18px;
    overflow: hidden;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-width: 450px;

    font-weight: 400;
    font-size: 12px;
}
.c-card__jobDatePosted{
    font-weight: 400;
    font-size: 12px;
    line-height: 28px;
    color: var(--grey);
}

/* Three dot menu */
.card__menu{
    position: absolute;
    right: 0;
    padding: 16px 16px 0 16px;
    cursor: pointer;
    z-index: 1;
}
.card__menu--dot{
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background-color: var(--grey);
    margin-bottom: 3px;
}
.card__menu:hover {
    z-index: 1;
}
.card__menu .menu__dropdown {
    padding: unset;
    display: none !important;
}
.card__menu .menu__dropdown--show {
    display: block !important;
}
.card__menu  .menu__listElement a {
    padding: 9px 24px;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
}
.card__menu  .menu__listElement a:hover {
    font-weight: 600;
    color: #691F74;
}
.card__menu .menu__dropdownHolder{
    right: 16px;
    padding-top: 18px;
    width: 168px;
}

/* Save option state change */
.is-saved .menu__listElement--unsave,
.not-saved .menu__listElement--save {
    display: block;
}
.is-saved .menu__listElement--save,
.not-saved .menu__listElement--unsave {
    display: none;
}

.is-saved .card__job--unsave,
.not-saved .card__job--save {
    display: block;
}

.is-saved .card__job--save,
.not-saved .card__job--unsave {
    display: none;
}



.card__job-favorite {
    position: absolute;
    right: 0;
    padding: 16px 16px 0 16px;
    cursor: pointer;
    z-index: 1;
}

/* Job saved notification (Bottom of job card) */
.card__job-saved {
    display: none;
}
.card__job-saved.is-saved {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ECECEC;
    margin-top: 10px;
    padding-top: 10px;
}
.card__job-saved > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #30183F;
    gap: 8px;
}
.card__job-saved a {
    color: #691F74;
}
.card__job-saved a:hover {
    text-decoration: underline;
}


/* Job Previews */
.card__job--preview {
    border: 1px solid  var(--purple);
}
.card--preview {
    position: fixed;
    padding: 0px;
    display:none;
    z-index: 1;
}
.totalHolder{
    float: right;text-transform:none
}
.jobsPreview {
    background-color: white;
    border-radius: 8px;
    padding: 24px;
}
.jobPreview__header--title {
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    margin-right: 50px;
    overflow: hidden;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    color: #30183F;
}
.jobPreview__header--location {
    color: var(--nero);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.jobPreview__header--source {
    font-size: 10px;
    color: var(--violet);
    line-height: 15px;
}
.jobPreview__header--ctaWrapper {
    display: flex;
    margin-top: 11.5px;
    align-items: center;
    gap: 8px;
}
.jobPreview__header--ctaWrapper .button {
    height: 36px;
    padding: 0 24px;
}
.jobPreview__header--ctaWrapper a {
    display: flex;
    align-items: center;
}
.jobPreview__header--ctaWrapper svg{
    vertical-align: middle;
    margin-right: 4px;
}
.jobPreview__header--ctaWrapper button,
.jobPreview__header--ctaWrapper span {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}
.button--favJobPreview:hover svg{
    filter: brightness(0) invert(1);
}

.button--shareJob{
    margin-left: 3px;
}
.button--applyJobPreview.is--disable {
    opacity: 0.5;
    background-color: var(--orange);
}

.jobPreview__header--ctaWrapper .button--favJobPreview svg {
    margin: 0;
}

.jobPreview__header--company {
    color: var(--purple);
    font-size: 14px;
    line-height: 21px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 500;
}
.jobPreview__header--wrapper {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 23.5px;
}
.jobPreview__body--wrapper {
    color: var(--nero);
    overflow-y: scroll;
    margin-right: -16px;
    overflow-x: hidden;
}
.jobPreview__body--wrapper * {
    color: var(--nero);
}
.jobPreview__body--title {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 16px !important;
    line-height: 27px;
}
.jobPreview__body--description * {
    color: inherit;
    font-size: 14px;
    word-break: break-word;
}
.jobPrewview__footer .c-card__jobDatePosted{
    color: var(--grey);
}

.jobPreview__body--description .card.card--message {
    font-weight: 400;
    line-height: 195%;
    color: var(--nero);
    width: 100%;
}
.jobPreview__body--description ul {
    margin-bottom: 16px;
    line-height: 20px;
    list-style-position: inside;
}
.jobPreview__body--description li {
    display: block;
    position: relative;
    padding-left: 28px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.jobPreview__body--description li:before {
    content: "\2022";
    color: inherit;
    position: absolute;
    font-size: 20px;
    left: 13px;
}
.jobPreview__body--description br {
    display: block;
    margin: 10px 0;
    line-height: 22px;
    content: " ";
}
.jobPreview__body--description u {
    text-decoration: none;
    opacity: 1;
    font-weight: bold;
}
.jobPreview__body--description p {
    line-height: 20px;
    margin-bottom: 16px;
}
.jobsPreview .icon--closeIcon{
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-color: rgba(225, 220, 226, 0.4);
}
.jobPrewview__footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 0;
    border-top: 1px solid  rgba(225, 220, 226, 0.4);;
}
.c-card__reportFlag{
    font-weight: 600;
    font-size: 12px;
    line-height: 19px;
    color: #691F74;
    display: flex;
    align-items: baseline;
}
.c-card__reportFlag svg {
    margin-right: 5px;
}


/* Effects */
.card__job:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.card__job-link:hover:not(span) {
    text-decoration: underline;
}
.card__job:hover .card__job-title a{
    text-decoration:underline;
}
.card__job-other-locations:hover {
    text-decoration: underline;
}


/* Badges */
.card__job-badge-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
    font-weight: 500;
    max-width: 100%;
    text-overflow: ellipsis;
    background-color: var(--grey-light);
    padding: 4px 8px;
    border-radius: 4px;
    color: #57437C;
}

.card__job-badge-wrap svg{
    padding: 3px;
}
.card__job-badges-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 8px 0px;
}
.badge--separator{
    margin-top: 8px;
}

/* Tags */
.c-tagWrapper{
    display: flex;
    align-items: center;
    margin-bottom: 11px;
}
.c-tagWrapper .separator{
    width: 6px;
    height: 6px;
    background-color: #F6F6F9;
    border-radius: 60px;
    margin: 0 5px;
}
.card__job-sponsored{
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: var(--purple-dark);
}
.card__job--new {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: var(--orange);
}

/* No jobs found */
.c-nojobsFound__wrap{
    max-width: 950px;
    width: 100%;
    display: flex;
    gap: 22px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.c-col--nojobsFound .card{
    padding: 24px 42px;
}
.c-col--createAccount{
    width: 328px;
}
.c-nojobsFound__text{
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: var(--nero);
    width: 90%;
    margin: 16px auto;
    word-break: break-word;
}
.c-nojobsFound__img{
    display: block;
    width: 215px;
    height: 132px;
    margin: 0 auto;
}
.c-trendingSearch__wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.c-trendingSearch__bubble{
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 100px;
    padding: 14px 24px;
    font-size: 14px;
    line-height: 20px;
    color: #691F74;
    width: fit-content;
}

/* Create account no jobs found */
.c-col--createAccount .card {
    width: 100%;
    padding: 32px 16px;
}
.c-createAccount__header{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
}
.c-createAccount__header img{
    width: 102px;
    height: 88px;
}
.c-createAccount__title{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--purple-dark);
    margin-bottom: 4px;
}
.c-createAccount__text{
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: var(--grey);
}
.c-createAccount__button{
    display: block;
    margin: 24px auto 0;
    width: 207px;
}

/* Error messages */
.content__leftSide .card--message {
    background-size: 27px;
    background-position-x: 24px;
    padding: 20px 60px 20px 67.52px;
}
.content__leftSide .card--message__close {
    height: unset;
    width: 20px;
    right: 24px;
    top: 0;
    bottom: 0;
}
.content__leftSide .card--message__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
}

.c-card__relatedJobs{
    margin-top: 24px;
}
.c-card__relatedJobs .c-title{
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: var(--nero);
    margin-bottom: 8px;
}
.c-card__relatedJobs .c-relatedjobs__wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.c-card__relatedJobs .card__job {
    width: 49%;
    margin-bottom: 0;
}

.card__job-c > .card.card--message.has--success {
    margin: 16px 0 0 0;
    max-width: 300px;
    padding: 10px 48px;
}

.jobPreview__header--ctaWrapper.hide {
    display: none;
}

.disclaimer_box{
    display: flex;
    align-items: center;
}

.disclaimer_box svg{
    margin-left: 4px;
}

.jobPreview__header--datePosted{
    color: var(--grey-400, #676767);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

/*  Job features */

.job__details{
    padding: 0;
}

.job__details *{
    font-style: normal;
    line-height: normal;
}

.job__details-title,
.job__description-title{
    color: var(--grey-800, #222);
    font-size: 16px;
    font-weight: 700;
    margin:16px 0;
}

.job__details__field{
    display: flex;
    align-items: start;
}

.job__details__field:not(:last-child){
    margin-bottom: 24px;
}

.job__details__field-icon{
    margin-right: 8px;
}

.job__details__content-title{
    color: var(--grey-800, #222);
    font-size: 14px;
    font-weight: 600;
}

.job__details__content-value *{
    color: var(--grey-400, #676767);
    font-size: 12px;
    font-weight: 400;
}

.jobtypes-box{
    display: flex;
    align-items: center;
}

.jobtypes-box-separator{
    margin: 0 8px;
}

.jobtypes-box-separator:last-child{
    display: none;
}

.card__separator {
    border-bottom: 1px solid #ECECEC;
    margin: 16px 0;
}

.jobPreview__body--alerts .card.card--message{
    margin: 16px 0 0 0;
    min-width: 100%;
}

.jobPreview__header--ctaWrapper .button.ccStyle_uk{
    width: 48px;
    height: 48px;
    padding: 0;
}

.jobPreview__header--ctaWrapper .button--applyJobPreview.ccStyle_uk {
    width: unset;
    padding: 0 24px;
}

/* Media queries */
@media only screen and (max-width:  1400px){
    .card {
        width: 500px;
        margin-left: auto;
    }
    .content__rightSide .card.card--preview{
        width:600px;
    }
    .pagination {
        width: 500px;
    }
}
@media only screen and (max-width:  1250px){
    .card {
        width: 420px;
        margin-left: 17px;
    }
    .pagination {
        width: 420px;
    }
}
