#employerPopup .container {
    inset: auto 90px 65px auto;
    z-index: 10;
}

#employerPopup .bubble {
    background-color: #fff;
    box-shadow: 0px 4px 24px 0px #0000001A;
    border: 1px solid #D8DEE2;
}

#employerPopup .advisor {
    width: 80px;
    height: 94px;
    line-height: 18px;
    z-index: 5;
}

#employerPopup .jobCardWrapper {
    display: contents;
    text-align: inherit;
}

#employerPopup .job {
    width: 465px;
    margin-right: 18px;
}

#employerPopup .employer {
    width: 310px;
}

#employerPopup .job:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #D8DEE2;
    right: -10px;
    bottom: 20px;
}

#employerPopup .job:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid #fff;
    right: -9px;
    bottom: 21px;
}

#employerPopup .header {
    background-color: #F5F7FA;
    line-height: 22px;
    border-bottom: 1px solid rgba(216, 222, 226, 0.7);
    border-radius: 3px 3px 0 0;
}

#employerPopup .companyName {
    max-width: 160px;
}

#employerPopup .close {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid #D8DEE2;
    inset: 8px auto auto 475px;
}

#employerPopup .employer-close {
    inset: 8px auto auto 320px;
    cursor: pointer;
}

@media screen and (max-width: 820px) {
    #employerPopup .container {
        inset: auto 15px 17px auto;
    }
}

@media screen and (max-width: 767px) {
    #employerPopup .container:before {
        content: "";
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 80%);
    }

    #employerPopup .job {
        margin-right: 0;
        margin-bottom: 18px;
        width: calc(100vw - 30px);
        height: 100%;
    }

    #employerPopup .job:before {
        border: 0;
        border-right: 8px solid transparent;
        border-left: 8px solid transparent;
        border-top: 10px solid #D8DEE2;
        bottom: -10px;
        right: 32px;
    }

    #employerPopup .job:after {
        border: 0;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-top: 9px solid #FFF;
        bottom: -9px;
        right: 33px;
    }

    #employerPopup .close {
        inset: -38px 0 auto auto;
    }

}
#employerPopup{
    display: none !important;
    z-index: 999;
    bottom: 20px;
    right: 0;
}
#employerPopup.bounce-in-right{
    display: flex !important;
}
.bounce-in-right {
    animation: bounce-in-right 2s ease;
}
@keyframes bounce-in-right {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    60% {
        opacity: 1 !important;
        transform: translateX(-30px);
    }
    80% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}