.mirror-toast {
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 6px;
  background: rgba(20, 24, 31, .92);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.mirror-mobile-drawer {
  display: none;
}
@media (max-width: 767px) {
  .mirror-mobile-drawer[data-open="true"] {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 9998;
  }
  .mirror-mobile-drawer__mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
  }
  .mirror-mobile-drawer__panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(360px, calc(100vw - 30px));
    display: flex;
    flex-direction: column;
    background: var(--ui-color-bg-base, #fff);
    color: var(--ui-color-text, #354052);
    box-shadow: 6px 0 24px rgba(0, 0, 0, .16);
  }
  .mirror-mobile-drawer__header {
    min-height: 56px;
    padding: 12px 8px 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ui-color-border-secondary, #eceef1);
    font-size: 16px;
    font-weight: 600;
  }
  .mirror-mobile-drawer__close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: inherit;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }
  .mirror-mobile-drawer__body {
    flex: 1;
    min-height: 0;
    overflow: auto;
  }
  .mirror-mobile-drawer__body .g-sidebar {
    width: 100%;
    height: 100%;
  }
}