.#{$pui}dialog {
  box-shadow: $shadow-default;
  background-color: $color-white;
  border-radius: $border-radius;
  padding: $dialog-padding;
  
  position: relative;
  z-index: 2;
  max-width: 440px;

  .title {
    font-size: $size-medium;
    font-weight: $font-weight-medium;
    margin-bottom: 6px;
  }

  .dialog-content {
    margin-bottom: 12px;
  }

  .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}