.jobtek-notification {
    position: relative;
    width: 100%;
    color: #FFF;
    background: #092F51;
    padding: 15px 0;
}

.jobtek-notification p {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.825rem;
    font-weight: 400;
}

.jobtek-notification .loader {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0px;
    background: orange;
    animation: loading 3s linear 1 forwards;
}

@keyframes loading {
    0% {
        width: 0px;
    }
    100% {
        width: 100%;
    }
}