/** Shopify CDN: Minification failed

Line 82:0 Unexpected "}"

**/
.wa_wrapper{
  position:fixed;
  z-index:100;
  width:60px;
  height:60px;
  border-radius:50%;
  bottom:40px;
  right:25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  -o-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.whatsapp_btn {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    /* -webkit-transition: .3s; */
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    /* transition: .3s; */
}
@keyframes waPulse{
0%{
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;}
50%{
    opacity: .5;
}
100%{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
}
}
.wa_btnpulse {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    display: block!important;
    left: -10px;
    top: -10px;
    z-index: -1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-animation: 2s infinite waPulse;
    -moz-animation: 2s infinite waPulse;
    -ms-animation: waPulse 2s infinite;
    -o-animation: 2s infinite waPulse;
    animation: 2s infinite waPulse;
    background-color: #2db742;
}

}.wa_btnpulse:nth-of-type(2n) {
    -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -ms-animation-delay: .5s;
    -o-animation-delay: .5s;
    animation-delay: .5s;
}