.top-bar {
  padding: 10px 20px;
  margin: 10px auto 15px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  position: relative;
}

.top-bar>div {
  justify-content: center;
}

.top-bar .top-bar__order-text {
  font-size: 12.8px;
}

.top-bar .social-icons {
  max-width: 100%;
  display: none;
}

.top-bar .social-icons .social-icon {
  color: var(--bs-primary);
  background-color: var(--bs-secondary);
}

@media (min-width: 481px) {
  .top-bar .social-icons .social-icon {
    color: var(--bs-secondary);
    background-color: transparent;
  }
}

@media (min-width: 576px) {
  .top-bar .top-bar__order-text {
    font-size: var(--bs-body-font-size);
  }
}

@media (min-width: 992px) {
  .top-bar {
    margin: 30px auto 25px;
  }

  .top-bar>div {
    justify-content: space-between;
  }

  .top-bar .top-bar__order {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .top-bar .social-icons {
    display: inline-flex;
  }
}

@media (min-width: 1200px) {
  .top-bar {
    padding: 10px 40px;
  }
}
