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

.jobtek-notification p {
  padding: 0;
  margin: 0;
  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%;
  }
}
