.classificationBanner {
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    line-height: 0;
    overflow: hidden;
    z-index: 99;
  }

  .classificationBanner.unclassified {
    border-top: 4px solid #007a33;
    background: #007a33;
    color: #fff;
  }

  .classificationBanner.controlled {
    border-top: 4px solid #502b85;
    background: #502b85;
    color: #fff;
  }

  .classificationBanner.cui {
    border-top: 4px solid #502b85;
    background: #502b85;
    color: #fff;
  }

  .classificationBanner.confidential {
    border-top: 4px solid #0033a0;
    background: #0033a0;
    color: #fff;
  }

  .classificationBanner.secret {
    border-top: 4px solid #c8102e;
    background: #c8102e;
    color: #fff;
  }

  .classificationBanner.topsecret {
    border-top: 4px solid #ff8c00;
    background: #ff8c00;
    color: #000;
  }

  .classificationBanner.topsecretsci {
    border-top: 4px solid #fce83a;
    background: #fce83a;
    color: #000;
  }
  
  .classificationBanner.content {
    font-family: 'Avenir Next', 'Helvetica Neue', Arial;
    font-size: 0.6rem !important;
    line-height: 1.71;
    height: 0.8rem;
    position: relative;
    display: inline-block;
    padding: 0 0.8rem 0.2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  
  .classificationBanner.content::before,
  .classificationBanner.content::after {
    content: '';
    position: absolute;
    width: 4px;
    top: 0;
    height: 21px;
    z-index: -1;
    transform: perspective(2px) rotateX(-30deg);
  }
  
  .classificationBanner.content::before {
    left: -2px;
  }
  
  .classificationBanner.content::after {
    right: -2px;
  }
  