.panel .contentWrapper {
    margin: 20px 0;
}

.kidBoxContainer {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: center;*/
}

.kidBox {
    flex: 40%;
    min-height: 200px;
    max-width: 350px;
    padding: 15px;
    margin: 15px;
    background-color: #f2f2f2;
    box-sizing: border-box;
}

/*.kidBox .button {*/
/*    max-width: 200px;*/
/*    margin: 20px auto;*/
/*}*/
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: #000; /* Kolor linii */
}

.timeline .stage {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}

.timeline .stage.current::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.7);
    background-color: #00c2ff;
}
