.container {
  width: 30%;
  display: grid;
  grid-template-columns: 10% 350% 5%;

  float: left;
  margin-left: 1px;
  /* margin-right: -5%; */
}
.table .table-row > div:not(.lite) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
}
.table .table-row > div .title,
.table .table-row > div > div .title {
  font-size: 16px;
  display: block;
}
.table .table-row > div .subtitle,
.table .table-row > div > div .subtitle {
  display: block;
  font-size: 11px;
  color: #bdbdbd;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.table .table-row > div > div.main {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
  float: left;
  display: block;
  min-width: 0;
  margin-right: 8px;
}
.table .table-row > div:last-child,
.table .table-row > div > div:last-child {
  margin-right: 0;
}
.table {
  margin-bottom: 8px;
}
.table,
.table .table-row {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.table .table-row {
  background-color: #fff;
  align-items: stretch;
  justify-content: stretch;
  border-radius: 2px;
  text-align: initial;
  user-select: initial;
  -moz-user-select: initial;
  -ms-user-select: initial;
  -webkit-user-select: initial;
  cursor: auto;
}
.table .table-row,
.table > a {
  display: block;
  margin-bottom: 4px;
}
.table .table-row:last-child,
.table > a:last-child {
  margin-bottom: 0;
}
.table a > .table-row {
  cursor: pointer;
  color: initial;
  transition: box-shadow 0.15s ease-in-out, border 0.15s ease-in-out;
  border: 1px solid #91740c3d;
  border-radius: 5px;
}
.table a:hover > .table-row {
  background-color: #e4cb6821;
  box-shadow: 0 4px 21px -3px rgba(51, 51, 51, 0.15);
  border-color: #91740c;
}
@media (min-width: 800px) {
  .table.trio {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .table.trio > a {
    display: inline-block;
    margin-right: 4px;
    width: calc(33% - 2px);
    flex-basis: calc(33% - 2px);
  }
  /* .table.trio > a:nth-child(2n) {
    margin-right: 0;
  } */
}
@media (max-width: 700px) {
  .table a > .table-row {
    border: none;
    border-bottom: 1px solid #91740c26;
    border-radius: 0;
  }
  .table a:hover > .table-row {
    border-color: transparent;
  }
}
@media (min-width: 1200px) {
  .table.trio > a {
    width: 33%;
    flex-basis: 33%;
  }
  /* .table.trio > a:nth-child(2n) {
    margin-right: 4px;
  }
  .table.trio > a:nth-child(3n) {
    margin-right: 0;
  } */
}
