@import "../variables";

.Stats {
  position: relative;
  overflow: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-right: 5px;
  margin-bottom: 20px;
  > div {
    flex-grow: 1;
    position: relative;
    min-height: 200px;
    width: 280px;
    border: $border;
    border-radius: 3px;
    padding: 0 5px 5px 15px;
    > div {
      margin-bottom: 10px;
    }
  }
  label {
    margin-right: 5px;
    color: $color-text-minor;
    &::after {
      content: ":";
    }
  }
  h3 {
    span {
      position: absolute;
      top: 20px;
      right: 10px;
      color: $color-text-minor;
      font-weight: 300;
    }
  }
}
