#instagram-btn {
  position: fixed;
  bottom: 70px;
  left: 10px;
  z-index: 1000;
}

#instagram-btn button:focus {
  outline: none;
}

#instagram-btn button {
  position: absolute;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.2s ease;
  animation: pulse-instagram 2s infinite;
  padding: 0;
}

#instagram-btn span {
    position: absolute;
    right: -16px;
    width: 203px;
    margin-top: 10px;
    background-color: #919191;
    height: 30px;
    color: #FFF;
    padding: 10px;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 10px;
    z-index: -1;

}

#instagram-btn .fa-instagram {
  font-size: 2em;
}

#instagram-link-btn {
  line-height: 0.5rem;
}

#instagram-btn .box-option {
  display: none;
  background-color: #eee5de;
  width: 220px;
  padding: 5px 10px;
  position: absolute;
  bottom: 5px;
  border-radius: 19px;
  border: 1px solid #d2ccc5;
  font-size: 13px;
}
@-webkit-keyframes pulse-instagram {
  0% {
    -webkit-box-shadow: 0 0 0 0 #524cd8;
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@keyframes pulse-instagram {
  0% {
    -moz-box-shadow: 0 0 0 0 #524cd8;
    box-shadow: 0 0 0 0 #524cd8;
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(75, 78, 219, 0);
    box-shadow: 0 0 0 10px rgba(75, 78, 219, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
