﻿:root {
    --relate-job-item-tim: #602ACB;
    --relate-job-item-tim-nhat: #b797f8;
}

.rlj-item {
    border: 0.5px solid rgba(183, 151, 248, 0.3);
    border-radius: 8px;
    padding: 1em;
    margin-top: 1em;
    background: #ffffff;
    transition: border-color 0.1s ease-in-out;
}

.rlj-item:hover {
    border: 1px solid var(--relate-job-item-tim);
    cursor: pointer;
    box-shadow: 0 1px 7px var(--relate-job-item-tim-nhat);
}

.rlj-item:hover .info .job-title {
    color: rgb(126, 65, 246);
}

.rlj-item .logo {
    float: left;
    width: 100px;
    height: 100px;
    display: block;
    margin-right: 1em;
    object-fit: contain;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #e9eaec;
    border-radius: 8px;
}

.rlj-item .info {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rlj-item .info .job-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: .3em;
}

.rlj-item .info .company-name {
    font-size: 14px;
    color: #454545;
}

.rlj-item .bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.rlj-item .labels {
    display: inline-block;
}

.rlj-item .labels label {
    background: #80cbc41c;
    color: #000000;
    font-size: 12px;
    padding: 4px 8px;
    margin-right: 5px;
    border-radius: 15px;
    border: 0.5px solid rgba(183, 151, 248, 0.3);
}

.rlj-item .bottom-content .act-btns {
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .rlj-item .hide-on-mobile {
        display: none;
    }

    .rlj-item .bottom-content {
        justify-content: right;
    }
}