/* CSS Tops des stats d'une vente */
.stats_tops_item {
  display:flex;
  width:100%;
  margin-bottom:10px;
}
.stats_tops_pos {
    font-size: 25px;
    font-weight: 600;
    color: #C19947;
    opacity: 0.7;
    padding:10px;
    width:12%;
    text-align:right;
    vertical-align:middle;
    display:flex;
    justify-content: center;
    align-items: center;
}
.stats_tops_infos {
  width:40%;
}

.stats_tops_name {
  font-size: 14px;
  color: #8C1D40;
}
.stats_tops_parents {
  font-size: 12px;
}
.stats_tops_av {
  font-size: 12px;
}
.stats_tops_prix {
  text-align:right;
  color: #C19947;
  font-size: 16px;
  width:25%;
    display:flex;
    /*justify-content: flex-end ;*/
    align-items: center;  
}

/* ---------------------- @NOTE RESPONSIVE 800px */

@media screen and (max-width: 800px) {
  .stats_tops_item {
    
    display:block;
  }
  .stats_tops_pos {
    font-size: 24px;
    align-items: flex-start ;
    justify-content: flex-start;
    padding:0;
    text-align:left;
  } 
  .stats_tops_infos {
    width:100%;
  }  
  .stats_tops_name {
    font-size: 16px;
    
  }
  .stats_tops_parents {
    font-size: 14px;
  }
  .stats_tops_av {
    font-size: 14px;
    color:#555;
  }  
  
  .stats_tops_prix {
   width:100%;
   font-size: 20px;
    align-items: flex-start ;
    justify-content: flex-start;
   white-space: nowrap;
  }   
    
}