#getintouchsticky {
  background-color: var(--basic-dark);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 24px;
  box-shadow: 0px 0px 16px 0px #00000040;
  opacity: 0;
  transition: opacity 200ms ease-in;
  visibility: hidden;
}

#getintouchsticky.visible {
  opacity: 1;
}

#getintouchsticky a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  background-color: var(--basic-light);
  color: var(--basic-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

#getintouchsticky a .get-in-touch-arrow {
  margin-top: 0px;
}

@media (min-width: 768px) {
  #getintouchsticky.visible {
    display: none;
  }
}