.list-items {
  box-sizing: border-box; 
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  }

div.item-player {
    box-sizing: border-box;
    color: #444;
    background-color: white;
    flex: 0 1 auto;
    font-size: 14px;
    line-height: 20px;
    width: 28%;
    margin-bottom:20px;
    margin-right: 15px;
  }
  
  @media only screen and (max-width: 991px) {
    .player-list .item-player {
      width: 50%;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .player-list .item-player {
      width: 100%;
    }
  }
  
  
  
  
  div.item-player figure {
    box-sizing: border-box;
    object-fit:cover;
    color: #23527c;
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    position: relative;
  }
  
  div.item-player figure:after {
    background-position: center bottom;
    background-repeat: no-repeat no-repeat;
    bottom: 0;
    content: "";
    height: 20px;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    width: 20px;
  }
  
  
  
  div.player-info-preview.clearfix {
    background-color: #32946d;
    box-sizing: border-box;
    color: #f1fbf7;
    font-size: 14px;
    line-height: 20px;
    min-height: 70px;
    padding: 15px;
  }
  
  div.player-info-preview.clearfix:after {
    clear: both;
    content: " ";
    display: table;
  }
  
  div.player-info-preview.clearfix:before {
    content: " ";
    display: table;
  }
  
  span.dib.player-number {
    border-right: 1px solid #fff;
    box-sizing: border-box;
    color: #ac944d;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    line-height: 40px;
    margin-right: 10px;
    padding-right: 10px;
    text-align: left;
    width: 20%;
  }


  @media only screen and (max-width: 991px) {
    span.dib.player-number {
      font-size: small;
      width: 40%;
    }
  }
  
  @media only screen and (max-width: 767px) {
    span.dib.player-number {
      font-size: small;
      border-right: 0;
      width: 40%;
    }
  }

  
  div.dib.player-names {
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.8571px;
    text-transform: uppercase;
    width: 65%;
  }

  @media only screen and (max-width: 991px) {
    div.dib.player-names {
      width: 100%;
      font-size:smaller;
    }
  
  @media only screen and (max-width: 767px) {
    div.dib.player-names {
      font-size:smaller;
      width: 100%;
    }
  }


  
  div.pl-name {
    box-sizing: border-box;
  }
  
  div.pl-surname {
    box-sizing: border-box;
  }