.er-sticky-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 40px;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 99;
}
.er-sticky-bar a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.er-sticky-bar a .text {
  margin-left: 5px;
  width: min-content;
  line-height: 1;
}
.er-sticky-bar .mobile {
  background-color: #00bbe7;
}
.er-sticky-bar .contact {
  background-color: #ff5730;
}
.er-sticky-bar .whatsapp {
  background-color: #029d00;
}
.er-sticky-bar .mobile svg {
  fill: #fff;
  width: 20px;
  height: auto;
}
.er-sticky-bar .contact svg {
  fill: #fff;
  width: 25px;
  height: auto;
}
.er-sticky-bar .whatsapp svg {
  fill: #fff;
  width: 20px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .er-sticky-bar {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  body {
    padding-bottom: 60px !important;
  }
}
