.call-button-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.call-button {
  display: inline-block;
  padding: 10px;
  background-color: #0099ff;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.call-button i {
  margin-right: 5px;
}

.scrolling-banner {
  position: fixed;
  top: 0;
  width: 100%;
  height: 25px;
  background-color: #333;
  color: #fff;
  overflow: hidden;
  z-index: 9999;
}

.scrolling-banner {
  position: fixed;
  top: 0;
  width: 100%;
  height: 25px;
  background-color: #333;
  color: #fff;
  overflow: hidden;
  z-index: 9999;
}

.scrolling-banner span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  white-space: nowrap;
  animation: scroll 10s linear infinite;
}

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