<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#sticky-buttons {
  display: none;
}

@media (max-width: 768px) {
  #sticky-buttons {
    position: sticky;
    bottom: 0;
    z-index: 14;
    background: white;
    width: 100%;
    box-shadow: 1px -1px 10px #333;
    display: block;
  }
  #sticky-buttons .sticky-buttons-inner {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    padding: 20px 10px;
    flex-wrap: wrap;
  }
  #sticky-buttons .sticky-buttons-inner .sticky-btn {
    padding: 7px 12px;
    font-weight: bold;
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #51ad51;
    color: white !important;
  }
  #sticky-buttons .sticky-buttons-inner .sticky-btn + .sticky-btn {
    border: 1px solid #51ad51;
    background: none;
    color: #7b7b7b !important;
  }
}

/*# sourceMappingURL=stickybtns.css.map */
</pre></body></html>