/*Whatsapp Styling 1 button with text mode
=================================================*/

.uae_whatsapp_wrap {
    
}

.uae-whatsapp-link-1 {
    padding: 13px 25px;
    font-size: 20px;
    margin: 0px;
    color: #fff;
    background-color: #05453E;
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    box-shadow: 0px 10px 55px 0px rgba(0, 0, 0, 0.4);
    display: inline-block;
}
.uae-whatsapp-link-1:hover {
    background-color: #25D366;
}

/*Whatsapp Styling 2 only button mode
=================================================*/

.uae-whatsapp-link-2 {
    margin: 0px;
    text-decoration: none;
}

.uae-whatsapp-link-2 {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
    flex-direction: row;
  -webkit-box-pack: center;
    justify-content: center;
  -webkit-box-align: center;
    align-items: center;
  height: 70px;
  width: 70px;
  border-radius: 100%;
  background: #25d366;
  color: #fff;
  transition: transform .4s; /* Animation */
  box-shadow: 0 0 20px 0 rgba(37,211,102,0.5);
  box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
}
.uae-whatsapp-link-2 span {
  position: relative;
  font-size: 40px;
  /*top: 5px;
  left: -5px;*/
}

.uae-whatsapp-link-2::after {
  opacity: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
    flex-direction: row;
  -webkit-box-pack: center;
    justify-content: center;
  -webkit-box-align: center;
    align-items: center;
  position: absolute;
  top: -5px;
  left: -5px;
  right: 0;
  bottom: 0;
  content: '';
  height: 100%;
  width: 100%;
  border: 5px solid rgba(37,211,102,0.5);
  border-radius: 100%;
  -webkit-animation-name: ripple;
    animation-name: ripple;
  -webkit-animation-duration: 3s;
    animation-duration: 3s;
  -webkit-animation-delay: 0s;
    animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: 0;
  -webkit-box-sizing: initial;
  box-sizing: initial;
}
.uae-whatsapp-link-2::before {
  opacity: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
    flex-direction: row;
  -webkit-box-pack: center;
    justify-content: center;
  -webkit-box-align: center;
    align-items: center;
  position: absolute;
  top: -5px;
  left: -5px;
  right: 0;
  bottom: 0;
  content: '';
  height: 100%;
  width: 100%;
  border: 5px solid rgba(37,211,102,0.5);
  border-radius: 100%;
  -webkit-animation-name: ripple;
    animation-name: ripple;
  -webkit-animation-duration: 3s;
    animation-duration: 3s;
  -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: 0;
  -webkit-box-sizing: initial;
  box-sizing: initial;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale3d(0.75, 0.75, 1);
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1);
    transform: scale3d(1.5, 1.5, 1);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale3d(0.75, 0.75, 1);
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1);
    transform: scale3d(1.5, 1.5, 1);
  }
}

.uae-whatsapp-link-2:hover {
    transform: scale(1.1) ;
}

.wa_btn_tooltip_txt {
    position: absolute;
    width: 156px;
    right: 100%;
    background-color: #f5f7f9;
    font-size: 12px;
    color: #43474e;
    top: 23px;
    padding: 2px 0 2px 12px;
    margin-right: 18px;
    letter-spacing: -.03em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
}
.uae-whatsapp-link-2:hover .wa_btn_tooltip_txt {
    transform: scale(0.9) !important; 
    margin-right: 6px;  
}

.uae-whatsapp-link-3:hover .wa_btn_tooltip_txt {
    transform: scale(0.9) !important; 
    margin-right: 6px;  
}

.uae_wa_btn_popup {
    position: fixed;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    z-index: 999;
}
