
.ui-mask {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  animation: fade-enter .3s ease-out;
  background-color: rgba(0, 0, 0, .4);
  z-index: $base-zindex-mask;

  &.light {
    background-color: rgba(255, 255, 255, .3);
  }

  &.transparent {
    background-color: transparent;
  }
}