.floating-banner {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.floating-banner .left-button {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.floating-banner .left-button .left-button-a {
  padding: 15px 36px;
  background-color: rgb(60, 77, 105) !important;
  color: white;
  border-radius: 27px;
  font-size: 13px;
}
.floating-banner .right-button {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.floating-banner .right-button .right-button-a {
  padding: 15px 36px;
  background-color: white;
  color: rgb(60, 77, 105) !important;
  border-radius: 27px;
  font-size: 13px;
}

@media screen and (min-width: 1024px) {
  .floating-banner {
    display: none !important;
  }
}
@media screen and (max-width: 320px) {
  .left-button-a {
    font-size: 12px !important;
  }
  .right-button-a {
    font-size: 11px !important;
  }
}/*# sourceMappingURL=floatingBanner.css.map */