* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
  user-select: none;
}

h4 {
  font-size: 18px;
  margin: 10px 0;
}

h3 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.container {
  width: 100%;
  padding: 0 15px;
}

.content {
  border: 1px solid #ddd;

  & .content-header {
    color: #333;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;

    div + div {
      flex-grow: 1;

      h4,
      h3 {
        font-family: inherit;
        font-weight: 500;
        line-height: 1.1;
        color: inherit;
        text-align: right;
      }
    }
  }

  & .content-body {
    padding: 15px;
    color: #333;
  }

  .table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    text-wrap: wrap;

    h4, h3 {
        font-family: inherit;
        font-weight: 500;
        line-height: 1.1;
        color: inherit;
      }

    thead {
      background-color: #f5f5f5;
      th {
        position: relative;
        padding: 5px;
        border: 1px solid #ddd;
      }
    }

    tbody {
      display: table-row-group;
      vertical-align: middle;
      unicode-bidi: isolate;
      border-color: inherit;

      td {
        position: relative;
      }
    }

    td {
      border: 1px solid #ddd;
      padding: 5px;
    }
  }
}

.table-first {
  @media (min-width: 768px) {
    td:first-child {
      width: 16.66666667%;
    }
  }
}

.label-info {
  position: absolute;
  right: 10px;

  background-color: #5bc0de;
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}
