.e-toast{
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  &[direction="vertical"]{
    .e-toast__wrap{
      min-height: 64px;
      .e-toast__wrap__box{
        padding: 20px 40px 20px 30px;
        .e-icon{
          &:before{
            font-size: 24px;
          }
        }
        .e-toast--text{
          vertical-align: middle;
          padding: 0 0 0 10px;
          line-height: 24px;
          display: inline-block;
        }
      }
    }
  }
  .e-mask{
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    z-index: 1;
  }
  .e-toast__wrap{
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    filter: alpha(opacity:1);
    display: inline-block;
    min-width:160px;
    min-height: 160px;
    margin: -80px 0 0 -80px;
    background-color: #fff;
    border-radius: 4px;
    z-index: 9;
    .e-toast__wrap__box{
      padding: 40px;
      text-align: center;
      font-size: 0;
      .e-icon{
        font-size: 0;
        &:before{
          font-size: 50px;
        }
      }
      .e-toast--text{
        padding: 10px 0 0;
        line-height: 20px;
        font-size: 14px;
        color: #333;
      }
    }
  }
}
