@import "../../constants/style/color";

.content {
  text-align: center;
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  padding: 40px 0;

  .mainText {
    margin-top: 20px;
    font-size: 16px;
    color: #000;
    line-height: 18px;
    .color:hover {
      cursor: pointer;
    }
  }

  .subText {
    margin-top: 10px;
    font-size: 12px;
    color: #777;
    max-width: 320px;
    white-space: pre-wrap;
    .color:hover {
      cursor: pointer;
    }
  }

  &.intentPrimary {
    .mainText,
    .subText {
      .color {
        color: #3366cc;
      }
    }
  }
  &.intentDanger {
    .mainText,
    .subText {
      .color {
        color: $danger;
      }
    }
  }
}

.iconSizeXs {}

.iconSizeS {}

.iconSizeM {
  height: 40px;
}

.iconSizeL {
  height: 60px;
}

.iconSizeXl {}
