/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./public/scss/whatsAppButton.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.WhatsAppBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  /* position: relative; */
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
  position: fixed;
  right: 20px;
  bottom: 20px;
  /* padding: 12px 20px; */
  z-index: 9999;
}

.whatsapp-sign {
  width: 200%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-sign svg {
  width: 25px;
}

.whatsapp-sign svg path {
  fill: white;
}

.whatsapp-text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

.WhatsAppBtn:hover {
  width: 100px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.WhatsAppBtn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.WhatsAppBtn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

.WhatsAppBtn:active {
  transform: translate(2px, 2px);
}
