#custom-header-bar {
  width: 100%;
  height: 70px;
  background-color: #292929;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  box-sizing: border-box;
  cursor: pointer;
}

#custom-header-bar p {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 7px;
  font-weight: 600;
  user-select: none;
}

@media (max-width: 767px) {
  #custom-header-bar {
    min-height: 70px;
    height: 70px;
    padding: 6px 7px;
    flex-wrap: nowrap;
    row-gap: 0;
  }

  .custom-header-link {
    font-size: 14px;
    line-height: 1.2;
    padding: 6px 7px;
    margin: 0;
    text-align: center;
    flex: 0 0 auto;
  }
}

@media (max-width: 478px) {
  #custom-header-bar {
    min-height: 70px;
    height: auto;
    padding: 6px 4px;
    flex-wrap: wrap;
    row-gap: 2px;
    align-content: center;
  }

  .custom-header-link {
    font-size: 12px;
    padding: 4px 7px;
  }
}
