@media screen and (min-width: 768px) {
  #custom-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #171717;
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    font-size: 14px;
    border-top: 1px solid #ffa1cd;
    z-index: 9999;
  }

  /* Empuja solo los nav que están fixed */
  nav.fixed-top {
    top: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  #custom-bar {
    display: none !important;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#custom-bar {
  animation: slideDown 0.5s ease-out;
}

span.badge.badge-danger.position-absolute {
  background-color: black !important;
  color: white !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
}

span.badge.badge-danger.position-absolute.text-dark {
  color: white !important;
}

span.badge.badge-danger.position-absolute.bg-white {
  background-color: black !important;
}