.whatsapp-icon {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  background-color: #2db742;
  background-image: url("../imgs/icon-whatsapp.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.whatsapp-icon:hover {
  background-color: #288e38;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.whatsapp-box {
  position: fixed;
  width: 55px;
  height: 55px;
  right: 10px;
  bottom: 40px;
  z-index: 9001;
}

.whatsapp-box * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.whatsapp-box p {
  margin: 0;
}

.whatsapp-box .wpp-content {
  position: fixed;
  bottom: 20px;
  right: -600px;
  width: 335px;
  visibility: 0;
  z-index: -100;
  background-color: #fff;
  border-radius: 6px 25px 6px 6px;
  -webkit-box-shadow: 0 20px 40px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 20px 40px 8px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.whatsapp-box .wpp-content .wpp-close {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #2db742;
  position: absolute;
  left: -30px;
  top: 0;
  cursor: pointer;
  background: url("../imgs/wpp-close.png") center center no-repeat #fff;
  background-size: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.whatsapp-box .wpp-content .wpp-close:hover {
  background-color: #e0e0e0;
}

.whatsapp-box .wpp-content .wpp-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: url("../imgs/icon-whatsapp.png") center center no-repeat;
  background-size: contain;
  margin-left: 20px;
}

.whatsapp-box .wpp-content .wpp-icon.green {
  margin: 4px 0 0 0;
  background-image: url("../imgs/icon-whatsapp-green.png");
}

.whatsapp-box .wpp-content .wpp-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #2db742;
  color: #fff;
  font-size: 20px;
  padding: 17.5px 20px;
  border-radius: 5px 25px 0 0;
}

.whatsapp-box .wpp-content .wpp-sub-tit {
  font-size: 13px;
  color: #969696;
  padding: 15px 0;
  text-align: center;
}

.whatsapp-box .wpp-content .wpp-itens {
  padding: 0 15px 15px 15px;
  max-height: 300px;
  overflow: auto;
}

.whatsapp-box .wpp-content .wpp-itens .wpp-item {
  background-color: #f1f1f1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  outline: none;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 12px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.whatsapp-box .wpp-content .wpp-itens .wpp-item .wpp-txt {
  width: 100%;
  color: #000;
  padding-left: 12px;
}

.whatsapp-box .wpp-content .wpp-itens .wpp-item .wpp-txt p {
  font-size: 17px;
}

.whatsapp-box .wpp-content .wpp-itens .wpp-item .wpp-txt span {
  font-size: 13px;
  line-height: 17px;
  display: block;
  color: #969696;
  margin-top: 1px;
}

.whatsapp-box .wpp-content .wpp-itens .wpp-item:hover {
  background-color: #e2e2e2;
}

.whatsapp-box.active .whatsapp-icon {
  display: none;
}

.whatsapp-box.active .wpp-content {
  opacity: 1;
  visibility: visible;
  z-index: 100;
  display: block;
  right: 20px;
}

.whatsapp-box.left {
  left: 10px;
  right: auto;
}

.whatsapp-box.left .wpp-content {
  left: -600px;
  right: auto;
}

.whatsapp-box.left .wpp-content .wpp-close {
  right: -30px;
  left: auto;
}

.whatsapp-box.left.active .wpp-content {
  left: 20px;
  right: auto;
}

@media (max-width: 575.98px) {
  .whatsapp-box .wpp-content {
    max-width: 83%;
  }
  .whatsapp-box .wpp-content .wpp-head {
    font-size: 15px;
  }
}
/*# sourceMappingURL=style.css.map */