.sticky {
  display: none;
}

@media screen and (max-width: 768px) {
  .sticky {
    display: block;
  }

  .sticky .sticky-container {
    position: fixed;
    opacity: 0;
    bottom: env(safe-area-inset-bottom, 0);
    left: 0;
    margin: 0;
    padding: 10px 20px;
    background-color: var(--white);
    box-shadow: none;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease-in;
    z-index: 10;
  }

  .show-sticky .sticky .sticky-container {
    opacity: 1;
    transition: all 0.3s ease-in;
  }

  .sticky.is-stuck input {
    width: auto;
  }
}
