/* dftopmarquee - sticky top bar */
.dftopmarquee-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: #1a3a2a;
  padding: 8px 20px;
  text-align: center;
  box-sizing: border-box;
}

.dftopmarquee-text {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Push page content down so it doesn't hide under the bar */
body {
  padding-top: 36px !important;
}

@media (max-width: 768px) {
  .dftopmarquee-text {
    white-space: normal;
    font-size: 12px;
  }

  body {
    padding-top: 50px !important;
  }
}