
/* WHATSAPP CSS  */
#float-open *,
#float-menu * {
  font-family: sans-serif;
  color: #444 !important;
  font-size: 14px !important;
}
#float-open small,
#float-menu small {
  font-size: 11px !important;
  opacity: 0.5;
}
#float-open,
#float-close {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#float-open {
  padding: 9px 25px;
  background-color: #4ecb71;
  position: fixed;
  right: 0;
  bottom: 136px;
  font-size: 14px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  z-index: 20;
}
#float-open:hover {
  background-color: #21a746;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#float-open.hide {
  display: none;
}
#float-open * {
  color: #fff !important;
}
#float-open > span {
  margin-left: 7px;
}
#float-close {
  padding: 10px 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-top: 15px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#float-close:hover {
  color: #fff;
  background-color: red;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#float-close:hover * {
  color: #fff !important;
}
#float-menu {
  display: none;
  position: fixed;
  background: #fff;
  padding: 25px 20px;
  right: 0;
  bottom: 20px;
  max-width: 300px;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  z-index: 23;
}
#float-menu.active {
  display: block;
}
#float-menu a,
#float-menu a:hover {
  color: #444;
  text-decoration: none;
}
#float-menu p {
  margin-bottom: 15px;
  margin-top: 0;
}
.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}
.contact-item:hover .contact-icon {
  background-color: #4ecb71;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#float-menu .contact-item:hover .contact-icon * {
  color: #fff !important;
}
.contact-item-sub {
  display: flex;
  align-items: center;
}
.contact-icon {
  background-color: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.contact-name {
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  #float-open span {
    display: none;
  }

  #float-menu small {
    margin-left: 5px;
  }
  .contact-icon {
    width: 25px;
    height: 25px;
  }
  .contact-icon svg {
    width: 14px;
    height: 14px;
  }
  #float-close {
    font-size: 12px;
  }
  #float-close svg {
    width: 14px;
    height: 14px;
  }
}
