

@-webkit-keyframes glow {
    0% {
      box-shadow: 0 0 0 0 #dc143c;
    }
    50% {
      box-shadow: 0 0 30px 0 #dc143c;
    }
    75% {
      box-shadow: 0 0 50px 0 #dc143c;
    }
  }

  @keyframes glow {
    0% {
      box-shadow: 0 0 0 0 #dc143c;
    }
    50% {
      box-shadow: 0 0 30px 0 #dc143c;
    }
    75% {
      box-shadow: 0 0 50px 0 #dc143c;
    }
  }@-webkit-keyframes glows {
    0% {
      box-shadow: 0 0 0 0 #01994e;
    }
    50% {
      box-shadow: 0 0 30px 0 #01994e;
    }
    75% {
      box-shadow: 0 0 50px 0 #01994e;
    }
  }

  @keyframes glows {
    0% {
      box-shadow: 0 0 0 0 #01994e;
    }
    50% {
      box-shadow: 0 0 30px 0 #01994e;
    }
    75% {
      box-shadow: 0 0 50px 0 #01994e;
    }
  }
.btn {
  background: #dc143c;
  color: inherit;
  font: inherit;
  border:1px #dc143c;
  outline: none;
  cursor: pointer;
}

.btn-glow {
  background: #fe0000 !important;
  border-radius:30px !important;
  color: #fff;
  font-size: 1.1em !important;
  line-height: 1.7em !important;
  font-weight: 400 !important;
  text-transform: capitalize;
  padding: 8px 12px !important;
  box-shadow: 0 0 0 0 #dc143c;
  -webkit-animation: glow 1s linear infinite;
  animation: glow 1s linear infinite;
  -webkit-border-radius:30px !important;
  -moz-border-radius:30px !important;
  -ms-border-radius:30px !important;
  -o-border-radius:30px !important;
  /* position: fixed; */
  left:65rem;
  bottom: 0.8rem;
  width:140px;
  z-index: 0;
}
