@import url("https://fonts.googleapis.com/css?family=Roboto");
/* offset-x > | offset-y ^| blur-radius | spread-radius | color */
@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 {
  width: auto;
  height: auto;
  position: fixed;
  bottom: 20px;
  /*z-index: 8;*/
  right: 10px;
  padding: 5px;
  /*top:  480px !important;*/
  margin: 0px;
}

@media (min-width: 0px) and (max-width: 990px){
  .nav-bottom {
    /*top: 510px !important;*/
    bottom: 27px;
    
  }
}


@media screen and (min-width: 575.98px) and (max-width: 1300px) {
  .nav-bottom {
    top: 27.5em !important;
    
  }
}

.whatsapp-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  width: 90px;
  height: 90px;
  z-index: 8;
  right: -30px;
  transition: 0.3s;
  margin: 10px;
  margin-bottom: 20px !important;
  padding: 7px;
  bottom: 0.4em;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0);
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
 
}

@media (min-width: 100px) and (max-width: 579px) {
  .whatsapp-button {
    bottom: -0.9em;
  }

}

.whatsapp-button:focus {
  border: none !important;
}
.whatsapp-button:hover {
  border: none !important;
}
.whatsapp-button:active {
  border: none !important;
}

.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: #77bb4a00;
  animation: pulse 1.2s 4s ease 4;
}
.circle-anime:focus {
  border: none !important;
}
.circle-anime:hover {
  border: none !important;
}
.circle-anime:active {
  border: none !important;
}
.popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  padding: 10px;
  bottom: 85px;
  right: 6px;
  transition: 0.5s;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight 0.6s 0s both;
}
.popup-whatsapp > div {
  margin: 5px;
}
.popup-whatsapp:focus {
  border: none !important;
}
.popup-whatsapp:hover {
  border: none !important;
}
.popup-whatsapp:active {
  border: none !important;
}
@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;
  border: none !important;
}

.send-msPopup {
  position: relative;
  top: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0b3257;
  margin: 0px 0px 0px 5px;
  border: none;
  margin-top: 50px;
  outline: none;
  cursor: pointer;
  -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);
}
.send-msPopup:hover {
  background-color: #092a49;
  transition: 0.3s;
}

.send-msPopup i{
  color: #c4c4c4;
}

.is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight 0.6s 0s both;
}

input.whats-input[type=text] {
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  border: 0px solid #ffffff;
  border-radius: 20px;
  font-size: 1em;
  background-color: #ffffff;
  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;
}
@media (max-width: 420px) {
  input.whats-input[type=text] {
    width: 225px;
  }
}
input.whats-input::placeholder {
  /* Most modern browsers support this now. */
  color: rgba(68, 68, 68, 0.705);
  opacity: 1;
}
input.whats-input[type=text]:focus {
  background-color: #ebebeb;
  border: none !important;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  transition: 0.3s;
}

.icon-whatsapp-small {
  width: 20px;
  height: 20px;
}

.icon-whatsapp {
  width: 60px !important;
}

.icon-font-color {
  color: #ffffff;
}

.icon-font-color--black {
  color: #333333;
}