$drawerPrefixCls: #{$prefixCls}-drawer;

.#{$drawerPrefixCls} {
  z-index: 10000;
  position: fixed;
  background-color: white;
  width: 100vw;
  top: 100vh;
  &.no-transition {
    top: auto;
    bottom: 0;
  }
}

.#{$drawerPrefixCls}-enter {
  transform: translateY(-100%);
  transition: all 0.35s ease-out;
}

.#{$drawerPrefixCls}-leave {
  transform: translateY(0);
  transition: all 0.25s ease-in;
}

.#{$drawerPrefixCls}-overlay {
  position: fixed;
  z-index: 9999;
  background-color: rgba($color: #000000, $alpha: 0.4);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.#{$drawerPrefixCls}-overlay-enter {
  transition: all 0.35s ease-out;
}

.#{$drawerPrefixCls}-overlay-leave {
  transition: all 0.25s ease-in;
}
