.fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  translate: 0 100%;
  transition: translate 0.3s ease;
}

.fixed-bar.is-visible {
  translate: 0 0;
}

.fixed-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100px;
  padding: 10px 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.fixed-bar__item--phone {
  background-color: #fbfbfb;
  color: var(--wp--custom--color--brand);
}

.fixed-bar__item--line {
  background-color: #06c755;
  color: #fff;
}

.fixed-bar__item--map {
  background-color: #2469b2;
  color: #fff;
}

.fixed-bar__icon {
  width: 20px;
  height: 20px;
}

.fixed-bar__icon--phone {
  width: 13px;
}

@media (min-width: 1094px) {
  .fixed-bar__item {
    flex-direction: row;
    height: 64px;
    font-size: 14px;
    gap: 8px;
  }
}
