.superfences-tabs {
    display: flex;
    position: relative;
    flex-wrap: wrap;
  }
  
  .superfences-tabs .highlight {
    background: #f5f5f5;
  }
  
  .superfences-tabs .superfences-content {
    display: none;
    order: 99;
    width: 100%;
  }
  
  .superfences-tabs label {
    width: auto;
    margin: 0 0.5em;
    padding: 0.25em;
    font-size: 120%;
    cursor: pointer;
  }
  
  .superfences-tabs input {
    position: absolute;
    opacity: 0;
  }
  
  .superfences-tabs input:nth-child(n+1) {
    color: #333333;
  }
  
  .superfences-tabs input:nth-child(n+1):checked + label {
      color: #75aadb;
  }
  
  .superfences-tabs input:nth-child(n+1):checked + label + .superfences-content {
      display: block;
  }
  