.wiz_header {
    display:flex;
    justify-content:space-around;
    align-items:center;
    margin:1em;
    user-select: none;
}
.wiz_header > div {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#CCC;
    user-select: none;
}
.wiz_header > div > div:first-child {
    width:30px;
    height:30px;
    border-radius:50%;
    border:2px solid #CCC;
    background:#ccc;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
}
.wiz_header > div > div:last-child {
    justify-content:center;
    align-items:center;
}

.wiz_header > div.selected > div:first-child {
    background: #0088bc;
    border: 2px solid #666;
}
.wiz_header > div.selected > div:last-child {
    color:black;
}