.container {
    max-width: 600px;
}


.dot {
    background-color: #FFF;
    height: 100%;
    text-align: center;
    border: 4px solid #000;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    left: 22px;
    top: 50%;
    translate: -50% -50%;
    position: absolute;
}

.midline {
    margin: auto;
    width: 2px;
    height: 100%;
    left: 10px;
    translate: -50%;
    background-color: #000;
    position: absolute;
}

@media screen and (min-width: 576px) {
    .midline {
        left: 50%;
    }

    .dot {
        left: 50%;
    }

}

.icon {
    width: 1.8em;
    margin: 1.5px;
    align-self: center;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

.clickable {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.clickable:hover {
    transform: scale(1.03);
}

.icon.clickable:hover {
    transform: scale(1.2);
}

.sep::before {
    content: "·";
    margin: 0 0.5em;
}

@media print {
    .page-break {
        page-break-after: always;
    }
}
