
.sdv2-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: #1d2125c7;
  display: none;
  z-index: 1000;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}


.sdv2-container{
  background-color: var(--fw-white-000);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  /* border-radius: 8px 8px 0 0; */
  box-sizing: border-box;
}

.sdv2-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--fw-white-200);
  transition: background-color 0.2s ease;
}


.sdv2--close:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.sdv2--content {
  position: relative;
  width: 100%;
  height: 100%;
}

.sdv2-::-webkit-scrollbar {
  width: 6px;
}

.sdv2-::-webkit-scrollbar-track {
  background: transparent;
}

.sdv2-::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.sdv2-.dark::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}






.sideslider-container{
  height: 100%;
}

.sdv2-inline-drawer {
  --sdv2-inline-expanded-height: 220px;
  --sdv2-inline-duration: 220ms;
  border: 1px solid var(--fw-white-300);
  border-radius: 8px;
  background: var(--fw-white-000);
  overflow: hidden;
}

.sdv2-inline-drawer__header {
  width: 100%;
  border: 0;
  background: var(--fw-white-050);
  color: var(--fw-black-450);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  text-align: left;
}

.sdv2-inline-drawer__header:hover {
  background: var(--fw-white-100);
}

.sdv2-inline-drawer__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sdv2-inline-drawer__right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sdv2-inline-drawer__count {
  min-width: 22px;
  height: 22px;
  padding: 0px 7px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  background: var(--fw-white-200);
  color: var(--fw-black-450);
}

.sdv2-inline-drawer__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--fw-black-450);
  border-bottom: 2px solid var(--fw-black-450);
  transform: rotate(45deg);
  transition: transform var(--sdv2-inline-duration) ease;
  margin-top: -2px;
}

.sdv2-inline-drawer__panel {
  max-height: 0px;
  opacity: 0;
  transition: max-height var(--sdv2-inline-duration) ease, opacity var(--sdv2-inline-duration) ease;
  border-top: 1px solid var(--fw-white-250);
}

.sdv2-inline-drawer__content {
  max-height: var(--sdv2-inline-expanded-height);
  overflow-y: auto;
  padding: 8px 10px;
}

.sdv2-inline-drawer--open .sdv2-inline-drawer__chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}


