/* Hide everywhere by default */
.cs-slide-tab,
.cs-slide-panel,
.cs-slide-backdrop {
  display: none;
}

/* Desktop only */
@media (min-width: 1025px) {
  .cs-slide-tab,
  .cs-slide-panel,
  .cs-slide-backdrop {
    display: block;
  }

  .cs-slide-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    z-index: 9999;

    border: 0;
    padding: 16px 8px;
    cursor: pointer;

    background: #ff6a00;
    color: #fff;

    gap: 10px;
    color: var(--Colors-Neutral-25, #FFF);
text-align: center;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Instrument Sans", sans-serif;
font-size: var(--Font-Size-Body-Body-XSmall, 14px);
font-style: normal;
font-weight: 500;
line-height: var(--Font-Line-Height-18, 18px); /* 128.571% */
  }

  .cs-slide-tab__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .cs-slide-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(420px, 92vw);
    background: var(--Colors-Tertiary-25, #F0F4FE);
    z-index: 10000;

    transform: translateX(100%);
    transition: transform 220ms ease;

    box-shadow: -10px 0 30px rgba(0,0,0,.18);
    padding: 122px 32px;
  }

  .cs-slide-panel.is-open {
    transform: translateX(0);
     display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cs-slide-panel__close {
   position: absolute;
    right: 0;
    top: 0;
    /* width: 38px; */
    /* height: 38px; */
    border: 0;
    color: #8E8F93;
    background: transparent;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
  }
  .cs-slide-panel__close:hover {
    color: #8E8F93;
    background: transparent;
  }

  .cs-slide-panel__content h3 {
   color: var(--Colors-Neutral-800, #3B3D41);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Instrument Sans", sans-serif;
font-size: var(--Font-Size-Headings-Heading-3, 32px);
font-style: normal;
font-weight: 500;
line-height: var(--Font-Line-Height-40, 40px);
  }
  .cs-slide-panel__content h3 span {
    font-family: "Instrument Sans", sans-serif;
font-size: var(--Font-Size-Headings-Heading-3, 32px);
font-style: normal;
font-weight: 500;
line-height: var(--Font-Line-Height-40, 40px);
  }

  .cs-slide-panel__content p {
    margin: 0 0 14px;
    opacity: .8;
  }

  .cs-slide-panel__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 4px;
    background: #ff6a00;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    color: var(--Text-Inverse-Primary, #FFF);
text-align: center;
font-size: var(--Font-Size-Body-Body-Small, 16px);
font-style: normal;
font-weight: 600;
line-height: var(--Font-Line-Height-24, 24px); /* 150% */
    font-family: "Instrument Sans", sans-serif;
  }
  .cs-slide-panel__btn:hover {
    background: #E86300;
    color: #fff;
  }


  .cs-slide-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(25, 26, 28, 0.90);
backdrop-filter: blur(2px);
    z-index: 9998;
  }

  .cs-slide-backdrop[hidden] {
    display: none;
  }
}
