.stickyButtons .sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    z-index: 995;
  }
  .stickyButtons .sticky-btn {
    width: 22%;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  .stickyButtons .sticky-btn.whiteButton {
    color: #ED1C24;
    background-color: #fff;
    border: 2px solid #ED1C24;
  }
  .stickyButtons .sticky-btn.whiteButton:hover {
    box-shadow: 0 5px 7px rgba(228, 24, 32, .4);
}
  .stickyButtons .sticky-btn.redButton {
    color: #fff;
    background-color: #ED1C24;
    border: 2px solid #ED1C24;
  }
  .stickyButtons .sticky-btn.redButton:hover {
    color: #fff;
    box-shadow: 0 8px 12px rgba(237, 28, 36, .2);
}
    .stickyButtons .arrow-icon {
    width: 21px;
    height: 21px;
    display: inline-block;
    margin-left: 5px;
}


  @media (max-width: 768px) {
    .stickyButtons .sticky-buttons {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .stickyButtons .sticky-btn {
      width: 80%;
    }
  }
