.circle-button-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.circle-button-container .text {
  font: 500 24px/36px "IBM Plex Sans", sans-serif;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  flex-grow: 0;
  z-index: 24;
  color: #FFFFFF;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.circle-button-container .text:hover ~ .button-wrapper:after {
  transform: scale(0.85);
}
.circle-button-container .button-wrapper {
  z-index: 23;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  margin-left: -50%;
  margin-top: -50%;
  border-radius: 100%;
  cursor: pointer;
}
.circle-button-container .button-wrapper:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: transform 800ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  will-change: transform;
}
.circle-button-container .button-wrapper:after {
  background: #EA3D26;
}
.circle-button-container .button-wrapper:hover:after {
  transform: scale(0.85);
}

#circle-button button.text {
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
  text-transform: none;
  padding: 0;
  left: 0;
  border-radius: 0;
  transform: translateX(0px);
}
#circle-button button.text:before {
  display: none;
}