.slide-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -420px;
    width: 420px;
    overflow: hidden;
    height: 100%;
    background: var(--bg-darkgrey);
    color: white;
    border-left: 1px solid rgba(255, 255, 255, .05);
    z-index: 1100;
    padding: 12px 12px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: right .3s ease;
  }

  .slide-panel[aria-hidden="false"] {
    right: 0
  }

  .slide-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .slide-panel-body {
    padding-bottom: 20px
  }

  .footer-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-darkgrey);
    padding: 15px 20px;
    margin-top: 20px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: end;
    gap: 10px;
    z-index: 2;
  }

  @media (max-width: 800px) {
    .slide-panel {
      right: -100%;
      width: 100% !important;
    }
    
  }