/*******************
WP-ShowEmail plugin styles
******************/


a.uk_show_email {
  font-size: 16px;
  line-height: normal;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.3em 0.9em 0.4em 0.7em;
  min-width: 160px;
  letter-spacing: 0px;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  border-radius: 25px;
}
a.uk_show_email:hover {
  transform: translateY(-8px);
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a.uk_show_email i {
  display: inline-block;
  align-content: center;
  color: lightgoldenrodyellow !important;
  padding: 10px;
  transition: all 0.5s ease-in-out;
  border-radius: 50%;
  margin: 0 10px 1px 0;
  animation: animate-pulse 3s linear infinite;
}

@keyframes animate-pulse{
  0%{
      box-shadow: 0 0 0 0 rgba(169, 169, 169, 0.562),  0 0 0 0 rgba(211, 211, 211, 0.7);
  }
  40%{
      box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.0),  0 0 0 0 rgba(211, 211, 211, 0.7);
  }
  80%{
      box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.0),  0 0 0 30px rgba(255, 255, 255, 0);
  }
  100%{
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.0),  0 0 0 30px rgba(255, 255, 255, 0);
  }
}
