.gooey-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-block-start: 0px !important;
}

.gooey-btn__filter {
  position: absolute;
  display: none;
}

.gooey-btn__link {
  position: relative;
  display: inline-flex;
  outline: none;
  filter: url(#buttonFilter);
}

.gooey-btn__link:focus {
  outline: none;
}

.gooey-btn__text-wrap {
  position: relative;
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  padding: 0.5rem 1.25rem;
  color: #d3114e;
  background-color: #fff;
  border: 2px solid #d3114e !important;
  transition: 1.5s;
}
.gooey-btn:hover {
  cursor: pointer;
}
.gooey-btn:hover .gooey-btn__text-wrap{
    border-style: none;
    border-width: 0px;
    background: linear-gradient(105deg,rgb(0,126,254) 0%,rgb(52,37,201) 25%,rgb(111,0,189) 43%,rgb(229,0,74) 100%);
    transition: 1.5s;
}
.gooey-btn:hover .gooey-btn__text-wrap div{
  color: #fff;
  line-height: 0;
}
.gooey-btn__text {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.gooey-btn__circle {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 9999px;
  background-color: #fff;
  border: 2px solid #d3114e;
  margin-left: -0.25rem;
  transition: transform 0.5s;
}

.gooey-btn:hover .gooey-btn__circle {
  background-color: #d3114e;
  transition: 2s;
}
.gooey-btn:hover .gooey-btn__circle {
  transform: translateX(0.75rem) rotate(45deg);
}

.gooey-btn__icon-wrap {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s;
} 

.gooey-btn:hover .gooey-btn__icon-wrap {
  transform: translateX(0.75rem) rotate(45deg);
}

.gooey-btn__icon-inner {
  position: relative;
  overflow: hidden;
  color: #000;
}

.gooey-btn__icon {
  position: relative;
  left: 0;
  top: 0;
  transition: transform 0.5s;
  transform: rotate(-45deg);
}

.gooey-btn__icon svg {
  height: 1.2rem;
  width: 1.2rem;
  stroke: #d3114e;
}
.gooey-btn:hover .gooey-btn__icon svg{
  stroke: #fff;
  transition: 0.3s;
}
.gooey-btn .gooey-btn__text div{
  line-height: 0;
}