@import '../variables.less';

.wm-toast {
  position: absolute;
  display: flex;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  top: 40vh;

  .container {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 24px;
    border-radius: @border-radius-8;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-weight: 500;
    color: @color-white;
    font-size: @font-size-12;
    width: 480px;
    line-height: 32px;
    text-align: center;

    .icon-box {
      width: 48px;
      height: 48px;
      margin: 0 0 16px 0;

      .icon {
        width: 100%;
        height: 100%;
      }
    }
  }

  .icon-common {
    padding: 40px 24px;
  }

  .icon-container {
    width: 192px;
    height: 176px;
  }

  &-modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    background-color: transparent;
  }
}
