.root{
  width: 100%;
  display: table;
  padding-top: 25px;
  border-top: 1px solid $color-grey-2;
}

.content{
  display: table-cell;
  width: 100%;
}

@supports(display: flex) {
  .root{
    display: flex;
    flex-direction: row;
  }
  .content{
    display: block;
  }
}
