.background-job-wrapper {
    position: fixed;
    right: 0;
    z-index: 99;
    border-radius: 8px 0px 0px 8px;
    height: 202px;
    overflow: auto;
    top: 80px;
    animation-name: example;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    overflow-x: hidden;
}
.background-job-box {
    margin-right: -640px;
    position: relative;
    z-index: 2100;
    transition-duration: 0.8s;
}
.background-job-box.show {
    margin-right: 0;
}
.spin-icon {
    background: #1ab394;
    position: absolute;
    padding: 10px 12px 10px 12px;
    border-radius: 20px 0 0 20px;
    font-size: 16px;
    top: 0;
    left: 0;
    width: 40px;
    color: #fff;
    cursor: pointer;
    min-height: 37px;
}
.background-job-content {
    width: 640px;
    margin-left: 40px;
    background: #f3f3f4;
    border-radius: 0 0 0 5px;
    padding-bottom: 10px;
}
.background-job-content .title {
    background: #1ab394;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    padding: 10px 15px;
    font-size: 12px;
    color: white;
    margin-bottom: 15px;
    min-height: 42px;
}
.job-item {
    display: list-item;
    margin-left: 40px;
    padding: 10px 15px;
    position: relative;
}

.mention:before {
    content: " ";
    position: absolute;
    top: 0;
    width: 100%;
    height: 0px;
    left: 0;
    border: 0.5px solid gray;
    opacity: 0.5;
}

.mention {
    margin-top: 15px;
    margin-left: 0px;
    padding: 10px 15px;
    position: relative;
    text-align: center;
    opacity: 0.5;
    color: gray;
}