.Rtable {
  display: flex;
  flex-wrap: wrap;
}

.Rtable-cell {
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
  overflow: hidden;
  list-style: none;
}

.Rtable--2cols > .Rtable-cell {
  width: 50%;
}

.Rtable--3cols > .Rtable-cell {
  width: 33.33%;
}

.Rtable--4cols > .Rtable-cell {
  width: 25%;
}

.Rtable--5cols > .Rtable-cell {
  width: 20%;
}

.Rtable--6cols > .Rtable-cell {
  width: 16.6%;
}

@media all and (max-width: 500px) {
  .Rtable--collapse {
    display: block;
  }
  .Rtable--collapse > .Rtable-cell {
    width: 100% !important;
  }

  .hiddenSmall {
    display: none;
  }
}
.Accordion {
  width: 100%;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
@media all and (min-width: 500px) {
  .Accordion {
    display: none;
  }
}
.Accordion:hover, .Accordion:focus {
  outline: none;
}
.Accordion[aria-selected=true] {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-width: 0;
}
.Accordion::before {
  content: "+";
}
.Accordion[aria-selected=true]::before {
  content: "-";
}

.js-RtableAccordions {
  min-width: 240px;
}

.no-flexbox .Rtable {
  display: block;
}
.no-flexbox .Rtable > .Rtable-cell {
  width: 100%;
}

.Rtable {
  position: relative;
  top: 1px;
  left: 1px;
}

.Rtable-cell {
  padding: 1em;
  border: none;
  margin: -1px 0 0 -1px;
}

.Accordion {
  border: 1px solid red;
  margin-bottom: 1em;
  padding: 1em;
  border-radius: 0.5em;
  position: relative;
  top: -1px;
  left: -1px;
}

@media all and (max-width: 500px) {
  .Rtable--collapse > .Rtable-cell--foot {
    margin-bottom: 1em;
  }
}