@import url("https://fonts.googleapis.com/css?family=Roboto");
@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 999;
  bottom: 0;
  right: 0px;
  padding: 5px;
  margin: 0px;
}

.nav-bottom:hover {
  transform: translateY(-1px);
  /* Move the element 50px to the right on hover */
}

@media (max-width: 360px) {
  .nav-bottom {
    width: 320px;
  }
}

.whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 8;
  transition: 0.3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: #fff;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
}

.circle-anime {
  display: flex;
  position: absolute;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  transition: 0.3s;
  background-color: #77bb4a;
  animation: pulse 1.2s 4s ease 4;
}

.popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  bottom: 85px;
  right: 20px;
  transition: 0.5s;
  border-radius: 10px;
  background-color: #ece5dd;
  animation: slideInRight 0.6s 0s both;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 680px) {
  .popup-whatsapp p {
    font-size: 0.9em;
  }
}

.popup-whatsapp > .content-whatsapp.-top {
  display: flex;
  flex-direction: column;
}

.popup-whatsapp > .content-whatsapp.-top p {
  color: #585858;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 1em;
}

.popup-whatsapp > .content-whatsapp.-bottom {
  display: flex;
  flex-direction: row;
}

.closePopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin: 0px 0px 15px 0px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #f76060;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.closePopup:hover {
  background-color: #f71d1d;
  transition: 0.3s;
}

.send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  background-color: #fff;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  z-index: 3;
}

img.body-wrap-img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
  bottom: 0;
}

.send-msPopup:hover {
  background-color: #f8f8f8;
  transition: 0.3s;
}

.is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight 0.6s 0s both;
  overflow: hidden;
}

input.whats-input[type="text"] {
  width: 250px;
  height: 40px;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  font-size: 1em;
  background-color: #fff;
  padding: 0px 0px 0px 10px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  outline: none;
  transition: 0.3s;
}

input.whats-input[type="text"]:focus {
  background-color: #f8f8f8;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  transition: 0.3s;
  border: 1px solid #000;
}

@media (max-width: 420px) {
  input.whats-input[type="text"] {
    width: 225px;
  }
}

input.whats-input {
  /* Most modern browsers support this now. */
}

input.whats-input::placeholder {
  color: rgba(68, 68, 68, 0.705);
  opacity: 1;
}

.icon-whatsapp-small {
  width: 24px;
  height: 24px;
}

.icon-whatsapp {
  width: 45px;
  height: 45px;
}

.icon-font-color {
  color: #fff;
}

.icon-font-color--black {
  color: #333;
}

.content-whatsapp-top {
  display: flex;
  width: 100%;
  cursor: pointer;
}

.header-top-wrapper {
  display: flex;
  justify-content: space-between;
  width: 103%;
  background: #128c7e;
  align-items: center;
  border-radius: 10px 10px 0 0;
  margin-top: -5px;
  margin-left: -5px;
  padding: 11px 20px;
  padding-right: 5px;
}

.header-top-wrapper button.closePopup {
  margin: 0;
  background: transparent;
  box-shadow: none;
}

.header-top-wrapper button.closePopup i {
  font-size: 18px;
}

.header-top-wrapper p {
  color: #fff;
  font-weight: bold;
}

.body-wrap {
  padding: 0 15px;
  margin-top: 300px;
}

.content-whatsapp.-bottom {
  display: flex;
  padding-bottom: 12px;
  margin-top: 18px;
}

.body-wrap p {
  background: #fff;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 4px;
}

/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2)
    format("woff2");
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.p-tag {
  color: black;
}
