@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.top-bar-rotate {
  width: 100%;
  height: 58px;
  overflow: hidden;
  padding: 0;
  background: var(--top-bar-image-background, #1874ce);
  line-height: 0;
  white-space: nowrap;
  display: flex;
  gap: 0;
}

.top-bar-image {
  height: inherit;
  display: block;
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

.top-bar-image img {
  display: block;
  vertical-align: top;
  height: inherit;
  width: 100%;
  margin: 0;
}

.top-bar-rotate-mobile {
  display: none;
}

@media (max-width: 780px) {
  .top-bar-rotate-desktop {
    display: none;
  }

  .top-bar-rotate-mobile {
    display: flex;
  }
}
