.mobile-action-bar {
  font-weight: 600;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-inline: 2rem;
  padding-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  z-index: 999;
}
.mobile-action-bar .contact-info {
  background-color: var(--accent1);
  border-radius: 5rem;
  width: auto;
  padding: 0.5rem 0;
  margin-inline: auto;
}
.mobile-action-bar .contact-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-action-bar .contact-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0 2rem;
  position: relative;
}
.mobile-action-bar .contact-info li:not(:last-child)::after {
  content: "";
  background-color: #fff;
  height: 50%;
  width: 1px;
  right: 0;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.mobile-action-bar .contact-info a {
  text-decoration: none;
  color: #fff;
}
.mobile-action-bar .scroll-top button {
  background-color: var(--accent1);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 5rem;
  height: 100%;
  aspect-ratio: 1/1;
}

@media (min-width: 768px) {
  .mobile-action-bar {
    opacity: 0 !important;
    pointer-events: none;
  }
}
@media (max-width: 480px) {
  .mobile-action-bar {
  }
}