.gf-btn-wrapper {
  display: flex;
  visibility: hidden;
  transform: scale(0);
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 12px;
  bottom: 40px;
  width: 180px;
  transition: 150ms ease all;
  z-index: 5;
}

@media screen and (max-width: 600px) {
  .gf-btn-wrapper {
    bottom: 24px;
    left: 20px;
  }

  .gf-btn {
    font-size: 16px;
    padding: 8px;
  }
}

.gf-btn-wrapper.gf-btn-wrapper_show {
  visibility: visible;
  transform: scale(1);
}

.gf-btn-wrapper .gf-btn {
   width: 100%;
  font-size: 12px;
  padding: 8px 6px;
  line-height: 16px;
  background: radial-gradient(74.85% 355.03% at 77.77% -56.58%, #e23333 0%, #ff7e03 47.15%, #FF954F 100%);
  overflow: hidden;
  border-radius: 8px;
}

.gf-btn-close {
  background: none;
  border: none;
  outline: none;
  font-family: monospace;
  font-size: 14px;
  padding: 8px;
  cursor: pointer;
}

.gf-btn-close:focus,
.gf-btn-close:active {
  outline: none;
}