.checklist {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    background-color: #fff;

    max-height: 80%;
    width: 500px;

    font-family: "OpenSans";
    color: #2c2c2c;
    font-weight: 600;
    font-size: 0.7em;
}

.checklist__header {
    background-color: #c9d6df;
    display: flex;
    padding: 18px 24px 18px 20px;
    justify-content: space-between;
}

.checklist__tittle {
    color: black;
    font-size: 18px;
    line-height: 24px;
}

.checklist__close-btn {
    width: 22px;
    height: 22px;

    border: none;
    border-radius: 50%;

    background-image: url("../../images/close_form_icon.svg");

    cursor: pointer;
}

.checklist__close-btn:hover {
    background-image: url("../../images/close_form_icon_hover.svg");
}

.checklist__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;

    padding: 10px 20px;
}

.checklist__checkbox {
}

.checklist__label {
    position: relative;
    color: black;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    width: calc(50% - 15px);
    gap:10px;
    font-size: 14px;
}

.checklist__button {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 7px 20px;
    height: 30px;

    cursor: pointer;
    border-radius: 22px;
    border: 1px solid #1e2022;
    transition: all ease-in-out 0.2s;
    background-color: #c9d6df;

    color: #1e2022;
    font-weight: 400;
    font-family: "OpenSans";
    font-size: 14px;

    text-transform: capitalize;
}

.checklist__button:hover {
    background-color: #656b6d;
    color: white;
}
