.contact-fix {
  display: none;
}

@media (max-width: 767px) {
  .contact-fix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9999;

    padding: 10px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 2px;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
  }

  .contact-fix__btn {
    position: relative;
    overflow: hidden;
    height: 64px;

    border: 1px solid rgba(125, 27, 27, 0.35);
    background: #6b1f1f;
    color: #fff;
    border-radius: 1px;

    display: grid;
    place-items: center;

    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.06em;
  }

  .contact-fix__btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    border: 0.5px solid #fff;
    pointer-events: none;
  }

  body:not(.page-id-14) {
    padding-bottom: 110px;
  }
	
  body:has(.drawer.is-open) .contact-fix,
  body:has(#topicsSearchModal.is-open) .contact-fix,
  body:has(#topicsSearchModal .is-open) .contact-fix {
    display: none !important;
  }
}
