.bx-modal{
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%,-50%);
  width: 72%;
  border-radius: 6px;
  font-size: 17px;
  color: @textColorPrimary;
  background-color: #fff;
  .bx-modal-header{
    position: relative;
    padding: 12px 15px;
    &:after{
      .border-bottom()
    }
    .bx-modal-close{
      position: absolute;
      top: 0;
      left: 0;
      z-index: 9;
      padding: 12px 15px;
      border-radius: 6px;
      .bx-icon{
        font-size: 14px;
        &:before{
          content: "\E6BF";
        }
      }
    }
    .bx-modal-title{
      .ellipsis();
      text-align: center;
    }
  }
  .bx-modal-body{
    padding: 12px 15px;
    .bx-modal-inner{
      text-align: center;
      .bx-modal-title{
        padding: 8px 0;
        +.bx-modal-content{
          font-size: 14px;
          padding: 0 0 8px 0;
        }
      }
      .bx-modal-content{
        padding:20px 0;
      }
    }
  }
  .bx-modal-footer{
    position: relative;
    &:before{
      .border-top()
    }
    .bx-modal-buttons{
      width: 100%;
      font-size: 16px;
      .flexbox();
      .bx-modal-btn{
        .flex();
        position: relative;
        padding: 15px 0;
        text-align: center;
        &:after{
          .border-left();
        }
        &:first-child{
          &:after{
            content: '';
            width: 0;
          }
        }
      }

    }

  }
  .bx-modal-link{
    color: @colorPrimary;
  }
}
.bx-modal-overlay{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  background-color: rgba(0,0,0,0.6);
}
.bx-toast{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 10px 15px;
  border-radius: 3px;
  font-size: 13px;
  color: #fff;
  background-color: rgba(51,51,51,.8);
  .bx-icon{
    display: block;
    margin-bottom: 6px;
    font-size: 36px;
    font-weight: normal;
    text-align: center;
  }
  &.bx-toast--success{
    .bx-icon:before{
      content: "\E6B9";
    }
  }
  &.bx-toast--error{
    .bx-icon:before{
      content: "\E6BD";
    }
  }
  &.bx-toast--warn{
    .bx-icon:before{
      content: "\E6C6";
    }
  }
}
