.l-sticky-form-slide-in {
  position: fixed;
  right: 0;
  top: 25vh;
  z-index: 10;
}

.c-sticky-form-slide-in__inner {
  position: relative;
}

.c-sticky-form-slide-in__tab {
  background-color: var(--orange-color);
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  height: 220px;
  padding: 15px;
  position: relative;
  width: 60px;
}

.c-sticky-form-slide-in__tab-title {
  color: var(--primary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin:0;
  position: relative;
  right: -2px;
  text-wrap: nowrap;
  transform: rotate(-90deg);
  white-space: nowrap;
}

.c-sticky-form-slide-in__tab-icon {
  bottom: 15px;
  position: absolute;
}

.c-sticky-form-slide-in__form {
  background: var(--white-color);
  border-bottom-left-radius: 10px;
  box-shadow: 0 0 15px 3px rgba(0,0,0,.15);
  color: var(--primary_color);
  height: 0;
  overflow: scroll;
  padding: 0;
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  width: 0;
}

.c-sticky-form-slide-in__form.c-sticky-form-slide-in__form--open {
  height: 60vh;
  overflow: scroll;
  padding: 4em 1em 1em 1em;
  width: 80vw;
}

#js-cta-popup-form--close {
  color: var(--orange-color);
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 10px;
}

@media(min-width:1024px) {
  .c-sticky-form-slide-in__form.c-sticky-form-slide-in__form--open {
    width: 50vw;
  }
/* ===== OUTER WRAPPER POSITIONING ===== */
#yourStickyID {
  position: fixed !important;
  bottom: 0 !important;
  right: 0 !important;
  left: auto !important;
  top: auto !important;
  margin: 0 !important;
  z-index: 99999 !important;
}

/* ===== PANEL (HIDDEN BY DEFAULT - OFF SCREEN RIGHT) ===== */
#yourPanelID {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

/* ===== ACTIVE STATE (SLIDES IN FROM RIGHT) ===== */
#yourStickyID.active #yourPanelID {
  transform: translateX(0);
}