/* Style CSS for Floating Whatsapp Button */
.floating-whatsapp-wrap{
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  font-size: 16px;
  line-height: 1.625em;
  color: #262626;
}

.floating-whatsapp-wrap .button-whatsapp{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  bottom: 8px;
  right: 8px;
  height: 60px;
  min-width: 60px;
  max-width: 95vw;
	width: max-content;
    padding: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 30px;
  box-shadow: 1px 6px 24px 0 rgba(7,94,84,.24);
  cursor: pointer;
  transition: background-color .2s linear;
  -webkit-tap-highlight-color: transparent;
}

.floating-whatsapp-wrap .button-whatsapp:hover{
  background-color: #128c7e;
  transition: background-color 1.5s linear;
}

.floating-whatsapp-wrap .button-whatsapp .button-inside{
  display: block;
  height: 40px;
  width: 36px;
  -webkit-mask: url(../svgs/brands-whatsapp.svg) no-repeat 100% 100%;
  mask: url(../svgs/brands-whatsapp.svg) no-repeat 100% 100%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: white;
}

/* Button Floating with Text */
.floating-whatsapp-wrap.with-text .button-whatsapp{
  height: unset;
  min-height: 45px;
  padding: 12px 18px;
}
.floating-whatsapp-wrap.with-text .button-whatsapp .button-inside{
  height: 25px;
  width: 22px;
}
.floating-whatsapp-wrap.with-text .button-whatsapp .button-text {
  font-weight: 700;
  margin-left: 8px;
  font-size: 15px;
  display: block;
}

@media ( max-width:767px ){
  .floating-whatsapp-wrap.with-text .button-whatsapp{
    height: 60px;
    min-height: unset;
    padding: 0;
  }
  .floating-whatsapp-wrap.with-text .button-whatsapp .button-inside{
    height: 40px;
    width: 36px;
  }
  .floating-whatsapp-wrap.with-text .button-whatsapp .button-text {
    display: none;
  }
}

/* Button */
.btn-whatsapp{
	padding: 14px 25px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25d366;
    color: #fff !important;
    font-weight: 600;
    font-size: 1.05em;
    width: max-content;
    border-radius: 30px;
    box-shadow: 1px 6px 24px 0 rgb(7 94 84 / 24%);
    cursor: pointer;
    transition: background-color .2s linear;
    -webkit-tap-highlight-color: transparent;
}
.btn-whatsapp:hover, .btn-whatsapp:focus{
	background-color: #128c7e;
    transition: background-color 1.5s linear;
}
.btn-whatsapp.center{
	margin-left:auto;
	margin-right:auto;
}
.btn-whatsapp.left{
	margin-right:auto;
}
.btn-whatsapp.right{
	margin-left:auto;
}