:root{
}
.i-star{
    position:relative;
    
    display:inline-block;
    width:0;
    height:0;
    
    margin-left:.9rem;
    margin-right:.9rem;
    margin-bottom:1.2rem;
    
    border-right:.3rem solid transparent;
    border-bottom:.7rem  solid #FFC647;
    border-left:.3rem solid transparent;
    font-size:24px;
  }
.i-star::before, .i-star::after{
    content:'';
    
    display:block;
    width:0;
    height:0;
    
    position:absolute;
    top:.6rem;
    left:-1rem;
  
    border-right:1rem solid transparent;
    border-bottom:.7rem  solid #FFC647;
    border-left:1rem solid transparent;
  
    transform:rotate(-35deg);
  }
.i-star::after{  
    transform:rotate(35deg);
  }