@import "../../style/mixin";

.Yep-toast{
  position: fixed;
  width: 100%;
  top: 40%;
  left: 0;
  z-index: $toastZIndex;
  font-size: 32px;
  text-align: center;

  &-mask{
    display: flex;
    justify-content: center;
  }
  &-bottom{
    top: 86%;
  }
  &-notice{
    padding: 30px 40px;
    border-radius: 12px;
    color: #fff;
    min-width: 208px;
    max-width: 412px;
    background: rgba(0, 0, 0, .7);
    &-icon{
      font-size: $icon-size-lg;
    }
    &-message{

      //padding: 10px 30px;
    }
    &-icon + &-message{
      margin-top: 25px;
    }
  }
}


