/*============================================================================================*/

/* Your custom styles below */

/*============================================================================================*/

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  color: #FFF;
  text-align: center;
  font-size: 35px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  color: #FFF;
  transform: scale(1.1);
}

.whatsapp-float i {
  line-height: 60px;
}

@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
  }
  
  .whatsapp-float i {
    line-height: 50px;
  }
}