/* SECTION */
.checklist {
    padding: 80px 20px;
}

/* OUTER CONTAINER */
.checklist__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* TITLE ABOVE BOX */
.checklist__title {
    margin-bottom: 24px;
}

/* INNER BOX */
.checklist__inner {
    padding: 32px;
    border-radius: 24px;
}

/* LIST */
.checklist__list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ITEM */
.checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* ICON */
.checklist__icon {
    width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #7DB9E8;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

/* TEXT */
.checklist__text {
    line-height: 1.6;
}

/* ALIGNMENTS */
.checklist.align-left {
    text-align: left;
}

.checklist.align-center {
    text-align: center;
}

.checklist.align-right {
    text-align: right;
}

/* FIX ALIGNMENT FOR LIST */
.checklist.align-center .checklist__item {
    justify-content: center;
}

.checklist.align-right .checklist__item {
    justify-content: flex-end;
}