/**
 * CoDicts - Glow Button
**/

.single-products .elementor-95 .elementor-element.elementor-element-581a2ec .ts-btn-2.form-btn {
    padding: 28px !important;
}

.codicts-glow-button, .codicts-facebook-button {
  background: #1D1F20;
  position: relative;
  border-radius: 50px;
}
.codicts-glow-button:after {
  content: '';
  position: absolute;
  top: calc(-1 * 3px);
  left: calc(-1 * 3px);
  height: calc(100% + 3px * 2);
  width: calc(100% + 3px * 2);
  /* Multi Color background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);*/
  background: linear-gradient(60deg, #ff9f00, #ff8500, #ff6a00, #ff5722, #ff4500, #E63946, #D00000);
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
  border-radius: 50px;
}
.codicts-facebook-button:after {
  content: '';
  position: absolute;
  top: calc(-1 * 3px);
  left: calc(-1 * 3px);
  height: calc(100% + 3px * 2);
  width: calc(100% + 3px * 2);
  background: linear-gradient(60deg, #40E0D0, #00BFFF, #1E90FF, #6495ED, #00BFFF, #4169E1, #0000FF, #7DF9FF);
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
  border-radius: 50px;
}

@keyframes animatedgradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}