/* New Item Ribbon */
.newItem{
  position:absolute;
  background:#3498db;
  padding:.25rem 1rem;
  color:white;
  font-weight:bold;
}
.newItem:empty:before{
  content:'New';
}
.newItem::after{
  height:100%;
  width:1.5rem;
  position:absolute;top:0;left:100%;
  background:#3498db;
  content:'';
  border-radius:0 0 100% 0;
}
