.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:15px;
	right:15px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:30px;
	box-shadow: 2px 2px 3px #999;
	z-index:100;
	display: block;
}

.my-float{
	margin-top:18px;
}

@media (max-width: 768px) {
  .float {
    display: none;
  }
}


.mobile-contact-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 9999;
  height: 60px;
}

.mobile-contact-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 3px 0;
  color: white;
  font-size: 36px;
  text-decoration: none;
}

.btn.phone {
  background-color: #e74c3c;
}

.btn.whatsapp {
  background-color: #2ecc71;
}

.btn.location {
  background-color: #f39c12;
}

@media (min-width: 768px) {
  .mobile-contact-buttons {
    display: none;
  }
}