.job-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.table-header  {
    border-bottom: 1px solid #D9DCE2;
    background: #F8F8F8;
}

.table-header > td {
    text-align: left;
    padding: 8px;
}

.table-header > td:first-of-type {
    font-weight: 600;
}

.table-row > td {
    text-align: left;
    padding: 8px;
}

.table-row > td:first-of-type {
    font-weight: 600;
}

.table-row {
    border-bottom: 1px solid #D9DCE2;
}
.table-row:last-child {
    border-bottom: none;
}
.anchor {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid #D1D1D1;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    width: 80px;
    color: #17172A;
    text-decoration: none;
}
.jobsContainer {
    display: flex;
    width: 100%;
    padding: 8px;
    flex-direction: column;
    align-items: center;
}



.job-desc-loader {
    border: 4px solid #eee;
    border-top: 4px solid #444;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    z-index: 999;
}
.job-desc-container {
    font-size: 18px;
    --jd-color-primary: #ed1d1d;
    --jd-color-hover: #fc4646;
    margin: 20px;
    text-align: left;
}

@media screen and (min-width: 1024px) {
    .job-desc-container {
        margin-right: calc(50% - 50vw + 450px);
    }
}

.job-desc-container .title {
    font-size: 38px;
    font-weight: 600;
}
.job-desc-container .location {
    padding-top: 5px;
    color: #444;
}
.job-desc-container .company-icon svg {
    height: 14px;
    margin-right: 5px;
    color: var(--jd-color-primary);
}
.job-desc-container .job-desc-heading {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
}
.job-desc-container .desc {
    color: #55555A;
}
.job-desc-container .link {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    user-select: none;
    position: relative;
    white-space: nowrap;
    vertical-align: middle;
    outline: transparent solid 2px;
    outline-offset: 2px;
    width: 197px;
    line-height: 1.2;
    border-radius: 2px;
    font-weight: 500;
    height: 48px;
    font-size: 18px;
    background: var(--jd-color-primary);
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 50px;
}
.job-desc-container .link:hover {
    background-color: var(--jd-color-hover);
}
.job-desc-container .link:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.6);;
}