@import "./var.less";

.step-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  margin: 0;
  z-index: 99999999;

  @keyframes drawer-in {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .step-drawer__warper {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }

  .step-drawer__body {
    position: absolute;
    right: 0;
    height: 100%;
    width: 500px;
    box-sizing: border-box;
    background-color: @white;
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12);
    overflow: hidden;
    animation: drawer-in .3s 1ms;
  }
}
