.NAGBar{
    width: auto;
    height: 100%;
    display: inline-flex;
    top: 0;
    color: #FFF;
    white-space: nowrap;
    position: relative;
}

.NBarBtn{
    margin-left: 3rem;
    cursor: pointer;
    height: 100%;
    width: auto;
    display: inline-block;
    border: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    pointer-events: auto;
}

.NAGBar > *{
  position: relative;
  animation-name: ticker;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.NAGBanner{
    height: 100%;
    width: 100%;
    white-space: nowrap;
}

@keyframes ticker {
    0% {
        left: 0;}
    100% {
        left: -100%;}
}

.NAGBar > p{
    height: 100%;
    margin: 0;
    padding-left: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: abel, sans-serif;
}

.NAGBar > p.draft-message{
  display: none;
}

body.draft p.draft-message{
  display: flex;
}

body.draft p.free-message{
  display: none;
}

.NBarBtn:focus{
    outline: none;
}

#scrollNAG{
    cursor: pointer;
    pointer-events: auto;
    display: none;
    background-color: rgba(0, 0, 0, 0.808);
    z-index: 5;
    overflow: hidden;
    position: relative;
    height: 3rem;
}

body.free-cast #scrollNAG{
  display: flex;
}

body.draft #scrollNAG{
  display: flex;
  background-color: rgba(127, 0, 0, 0.808);
}

body.active360 #scrollNAG{
  display: none;
}
