.lap {
    border: 1px solid white;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 50px;
}

.lap-box, .lap-box > .questions {
    display: flex;
    flex-direction: column;
}

.questions {
    text-indent: 20px;
}

.questions label {
    margin-bottom: 10px;
}

input[type="checkbox"] {
    height: 18px;
    width: 18px;
}

.lap-box input[type="checkbox"] {
    margin-right: 10px;
}

.finished {
    text-decoration: line-through;
    font-style: italic;
}

label {
    margin-bottom: 5px;
    width: fit-content;
}

h3 {
    font-size: 2em;
    font-weight: lighter;
    margin-top: 5px;
    margin-bottom: 5px;
}

#bagContents {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.bag {
    border: 1px solid white;
    padding: 10px;
    margin: 10px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    min-width: fit-content;
    flex: 1 1 0;
}

.bag-break {
    flex-basis: 100%;
    height: 0;
}

.bag p.subtitle {
    text-align: center;
    font-size: 1.5em;
}

@media print {
    html, body {
        background-color: white;
        color: black;
    }

    .lap {
        border: none;
        padding: none;
        break-after: page;
        margin: none;
    }

    .lap-end, .questions {
        margin-top: 30px;
    }

    h1 {
        display: none;
    }

    .bag, .bag-overflow {
        break-inside: avoid;
        border-color: black;
        border-width: 3px;
    }

    .finished {
        text-decoration: none;
        font-style: normal;
    }
}

.two-col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}