.checkboxes {
    display: flex;
    flex-direction: row;
    margin-top: 16px;
    width: 100%;
    justify-content: end;

    p {
        margin: 0;
        padding-left: 6px;
    }
    span {
        font-size: 24px;
        margin-top: -8px;
        padding-left: 6px;
        color: #818181;
    }
}
.checkbox-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    margin-right: 16px;

    p {
        background: transparent;
    }
}
input[type="checkbox"] {
    display: none;
}
.custom-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #818181;
    border-right: none;

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
    position: relative;
}

.custom-checkbox.checked::after {
    content: '✓';
    color: #818181;
    font-size: 18px;
    position: absolute;
    left: 2px;
    top: -6px;
}
label {
    cursor: pointer;
}

.checkboxes-container {
    display: flex;
    flex-direction: row;

    p {
        white-space: nowrap;
        overflow: hidden;
    }
}