body:has(.wpcf7-form) a.block-sticky-button {
  display: none;
}

a.block-sticky-button {
  display: block;
  position: fixed;
  bottom: -200px;
  z-index: 10;
  margin: auto;
  display: flex;
  width: 100vw;
  max-width: 100vw;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
a.block-sticky-button * {
  box-sizing: border-box;
}
a.block-sticky-button.active {
  bottom: 50px;
}
@media screen and (max-width: 768px) {
  a.block-sticky-button.active {
    bottom: 30px;
  }
}
a.block-sticky-button p {
  margin: 0;
  padding: 0px;
  color: white;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  a.block-sticky-button p {
    font-size: 16px;
    line-height: 100%;
  }
}
a.block-sticky-button p span {
  background: linear-gradient(90deg, rgb(11, 148, 233) 0%, rgb(75, 216, 96) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a.block-sticky-button .button {
  font-size: 24px;
  font-weight: 400;
  line-height: 110%;
  display: flex;
  align-items: center;
  gap: 27px;
  width: fit-content;
  background-color: #001429;
  padding: 12px 12px 12px 12px;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  a.block-sticky-button .button {
    width: fit-content;
    max-width: 90vw;
    padding: 15px 20px;
  }
}
a.block-sticky-button .button button {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--wp--preset--color--primary);
  background-color: var(--wp--preset--color--primary);
  font-size: 45px;
  font-weight: 200;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  a.block-sticky-button .button button {
    width: 30px;
    height: 30px;
    font-size: 20px;
    border-radius: 8px;
  }
}
a.block-sticky-button .button button svg {
  width: 27px;
  height: 27px;
}