.checklist-item {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: normal !important;
}

/* Default checkbox */
.checklist-item input {
    /*position: absolute;*/
    /*opacity: 0;*/
    /*cursor: pointer;*/
    /*height: 0;*/
    /*width: 0;*/
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
}

/* Custom checkmark */
.checklist-item .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #f8f9fa;
    border: 1px solid #bbb;
}

.checklist-item:hover input ~ .checkmark {
    background-color: #eee;
}

.checklist-item:focus input ~ .checkmark {
    background-color: #000;
}

.checklist-item input:checked ~ .checkmark {
    background-color: #666;
}

.checklist-item .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    
    /* Hide checkmark when not checked */
    content: "";
    position: absolute;
    display: none;
}

/* Show checkmark when checked */
.checklist-item input:checked ~ .checkmark:after {
    display: block;
}

.cta, .cta-button,
html[type="button"], input.cta[type="button" i] {
    border: none !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    margin-bottom: 0 !important;
}

html {
  scroll-behavior: smooth;
}
