.floating-whatsapp-button {
  position:fixed;
  display:flex;
  justify-content:center;
  align-items:center;
  right:5%;
  bottom:5%;
  width:50px;
  height:20px;
  background-color:white;
  z-index:10000;
}

@media (max-width: 450px) {
  .floating-whatsapp-button {
    display:none;
  }
}

.whatsapp-icon-div {
  display:inline-block;
  background-color:transparent;
  /*color:white;*/
  font-size:50px;
  /*padding:10px;*/
  cursor:pointer;
  box-shadow:0 5px 5px 0 rgba(73,101,117,.7);
}

.whatsapp-icon-div i {
  background-color:green;
  color:white;
  padding:10px;
}

body {
  /*background-color:red;*/
}

