.no_jobs {
    text-align: center;
    padding: 4rem 10%;
}

.jobs {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.jobs h1 {
    padding-bottom: 2rem;
}

.jobs .uk-accordion-title {
    padding: 1rem 15px;
    margin-bottom: 2rem;
    position: relative;
}

.jobs .uk-accordion-content {
    padding-bottom: 2rem;
}

.jobs .uk-accordion-title .accordion_btn {
    border: 3px solid #4164B6;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-block;
    position: absolute;
    top: 11px;
    right: 15px;
}

.jobs .uk-accordion-title .accordion_btn::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 4px;
    background: #4164B6;
    left: 50%;
    margin-left: -9px;
    bottom: calc(50% - 2px);
    transition: all 0.5s ease;
    border-radius: 5px;
}

.jobs .uk-accordion-title .accordion_btn::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 18px;
    background: #4164B6;
    left: 50%;
    margin-left: -2px;
    bottom: calc(50% - 9px);
    transition: all 0.5s ease;
    border-radius: 5px;
}

.jobs .uk-accordion-title.uk-active .accordion_btn::before {
    left: calc(50% + 0.5px) !important;
    transform: scaleX(0.9) rotateZ(180deg);
}

.jobs .uk-accordion-title.uk-active .accordion_btn::after {
    left: calc(50% + 0.5px) !important;
    transform: scaleX(0.9) rotateZ(90deg);
}