.aff-panel {
  width: 100%;
  display: block;
  box-sizing: border-box;
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,.04);
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.04);
  box-shadow: 0 1px 1px rgba(0,0,0,.04);
  border: 1px solid #e5e5e5;
  background-color: #fff;
  color: #555;
  font-size: 13px;
  margin-bottom: 25px;

  &-header,
  &-body,
  &-footer {
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  &-header {
    border-bottom: 1px solid #eee;
  }

  &-body {
    background-color: white;
  }

  &-footer {
    border-top: 1px solid #eee;
    background: #fafafa;
  }

  &-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
  }

  &-success {
    border-color: #77c770;

    .aff-panel {
      &-header,
      &-footer {
        background-color: #F3FAEB;
        border-color: #77c770;
      }
    }
  }

  &-danger {
    border-color: #F4B5B5;

    .aff-panel {
      &-header,
      &-footer {
        background-color: #FEE6E6;
        border-color: #F4B5B5;
      }
    }
  }
}
