 
.r-row {
    display: flex;
  }
.r-row .value {
    flex: 1;
  }
  
  .r-row .label { 
      flex: 1;
      font-weight: 600;
      font-style: italic;
      position: relative;
  }
  
  .r-row .label::after {
    content: ':';
    position: absolute;
    right: 10px;
    margin-right: 20px;
    font-style: normal;
  }
  