.phone-fixed {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
}
.phone-fixed .phone {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(72, 140, 191);
  border-radius: 50%;
}
.phone-fixed .phone svg {
  width: 25px;
  height: 25px;
}
@media screen and (min-width:767px) {
  .phone-fixed {
    display: none;
  }
}