.newslettergate-section {
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  * {
     box-sizing: border-box;
  }

  > table {
    width: 100%;
    display: none;

    > tbody > tr {
      > td,
      > th {
        padding: 15px;
      }
    }
  }

  .newslettergate-section-title {
    position: relative;
    padding: 15px;
    margin: 0;
    cursor: pointer;

    &:after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 15px;
      border: 5px solid transparent;
      border-top-color: #000;
      width: 0;
      height: 0;
      margin: auto;
    }

    h2 {
      margin: 0;
    }

    .description {
      margin-top: 0.25em;
      margin-bottom: 0;
    }

  }

  &.opened {
    > table {
      display: table;
    }

    .newslettergate-section-title {
      border-bottom: 1px solid rgba(0,0,0,0.15);

      &:after {
        border-top-color: transparent;
        border-bottom-color: #000;
      }
    }
  }

}