.vied-job-header {
    padding: 10px 20px 0 20px;
    display: flex;
    justify-content: space-between;
}

.vied-job-header h1 {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-text-color);
}

.save_unsaved_job_wrapper {
    width: 35%;
    min-width: fit-content;
    display: flex;
    justify-content: right;
}

.vied-job-header button {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
    font-weight: 500;
    background: #c4f8c488;
    color: var(--active1);
    font-size: 14px;
    padding: 5px ;
    width: fit-content;
    border-radius: 5px;
    border: none;
    border: thin solid #fff;
    cursor: pointer;
    transition: 0.5s ease;
    position: relative;
}

.vied-job-header button:hover {
    border: thin solid #c4f8c488;
}

.vied-job-header button img {
    width: 15px;
    height: 15px;
}

.full-job-wrapper {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.job-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    max-width: 100%;
    flex-wrap: wrap;
}

.job-details p, .job-details div {
    border-right: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 20px;
    min-width: fit-content;
    border: none;
    background: #eee;
}

.job-details>:nth-child(1) {
    background: #fff5e3;
    box-shadow: 0 1px 1px #f5a623;
}

.job-details>:nth-child(2) {
    background: #e7f3ff;
    box-shadow: 0 1px 1px #248afd;
}

.job-details>:nth-child(3) {
    background: #ffe8e8;
    box-shadow: 0 1px 1px #ff4747;
}

.job-details>:nth-child(4) {
    background: #eeffe1;
    box-shadow: 0 1px 1px #71c02b;
}

.location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.location h1 {
    font-weight: 400;
    font-size: 12px;
    text-transform: capitalize;
    color: var(--secondary-text-color);
}

.location img {
    width: 16px;
}

.job-details p {
    text-transform: capitalize;
    font-size: 12px;
    color: var(--secondary-text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-details p span {
    color: var(--primary-text-color);
    font-weight: 500;
    display: flex;
}

.job-details p img {
   width: 16px;
}

.job-description {
    max-width: 100%;
    font-size: 14px;
    color: var(--secondary-text-color);
}

.job-description b {
    color: var(--primary-text-color);
}

.job-description h1 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-text-color);
    padding: 10px 0;
    text-align: center;
}

.job-description h2,
.job-description h3 {
    font-weight: 500;
    padding: 10px 0;
    color: var(--primary-text-color);
}

.job-description h2 {
    font-size: 18px;
    position: relative;
    padding: 5px;
    margin-bottom: 10px;
}

.job-description h2::before {
    content: "";
    background-color: var(--active1);
    min-height: 1px;
    margin-right: 6px;
    position: absolute;
    bottom: 1px;
    width: 50%;
}

.job-description h3 {
    font-size: 16px;
}

.job-description h4, .job-description h5, .job-description h6 {
    font-size: 15px;
}

.job-description p::first-letter {
    text-transform: uppercase;
}

.job-description a  {
    color: var(--active1);
    padding: 2px;
    background: #f2fff2;
    overflow-wrap: break-word;
}

.job-description ul {
    margin-left: 10px;
}

.job-description ol {
    margin-left: 15px;
}

.job-description ul li {
    position: relative;
    list-style: none;
}

.job-description ul li::before {
    content: "";
    background-color: var(--active1);
    min-height: 5px;
    width: 5px;
    margin-right: 10px;
    position: absolute;
    left: -10px;
    top: 7.1px;
    border-radius: 50%;
}

/* quill div manipulation */
.ql-tooltip, .ql-hidden {
    display: none;
}

.applyForJob {
    background: transparent;
    width: 100%;
    padding: 8px 10px;
    margin-top: 20px;
    text-transform: capitalize;
    text-align: center;
    border-radius: 6px;
    border: 1px solid var(--active1);
    color: var(--active1);
    font-weight: 500;
    transition: .2s ease;
}

.applyForJob:hover {
    background: var(--active1);
    color: #fff;
}

.share-heading {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.share img {
    width: 16px;
    border-radius: 5px;
}

.share a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 13px;
}

.share>:nth-child(1) {
    background: #1877F2;
}

.share>:nth-child(2) {
    background: #128c4d;
}

.share>:nth-child(3) {
    background: #0068a1;
}

.share>:nth-child(4) {
    background: #000;
}

.share div {
    background: #dadada;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 13px;
    cursor: pointer;
}


@media (min-width: 680px) {
    .vied-job-header h1 {
        font-size: 16px;
    }
    
    .location h1 {
        font-size: 14px;
    }
    
    .location img {
        width: 18px;
        height: 18px;
    }
    
    .job-details p {
        font-size: 14px;
    }

    .job-details p img {
        width: 18px;
    }

    .applyForJob {
        width: 26%;
        align-self: center;
    }
    
    .share-heading {
        font-size: 20px;
        margin-bottom: 22px;
    }
    
    .share img {
        width: 18px;
    }

    .share a {
        font-size: 14px;
    }
}

@media (min-width: 1200px) { 
    .vied-job-header h1 {
        font-size: 18px;
    }

    .location {
        gap: 7px;
    }
    
    .location h1 {
        font-size: 16px;
    }
    
    .location img {
        width: 20px;
        height: 20px;
    }
    
    .job-details p {
        font-size: 16px;
    }

    .job-details p img {
        width: 20px;
    }

    .job-description  {
        font-size: 15px;
    }

    .job-description h1 {
        font-size: 20px;
    }
    
    .job-description h2 {
        font-size: 18px;
    }
    
    .job-description h3 {
        font-size: 16px;
    }
    
    .job-description h4 {
        font-size: 19px;
    }
    
    .job-description h5, .job-description h6 {
        font-size: 18px;
    }
    
    .applyForJob {
        width: 15%;
        align-self: center;
    }
    
    .share-heading {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .share img {
        width: 20px;
    }

    .share a {
        font-size: 15px;
    }
}
