.wpcf7-list-item .wpcf7-list-item-label {
    display: inline;
}

.wpcf7-list-item {
    margin-left: 0;
}
.wpcf7-list-item-label {
    width: fit-content;
}

.wpcf7-list-item .wpcf7-list-item-label::before {
    content: "";
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid var(--ts-shade-4);
    border-radius: 7px;
    cursor: pointer;
    display: inline-flex;
    margin-right: 8px;
    position: relative;
    top: 3px;
}

.wpcf7-list-item input[type="checkbox"]:checked ~ .wpcf7-list-item-label::before {
    background: var(--e-global-color-accent);
    border-color: var(--e-global-color-accent);
}

.wpcf7-list-item input:checked~span::after {
    content: "";
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 9px;
    left: 5px;
    width: 10px;
    height: 6px;
    border: 2px solid #fff;
    border-top-style: none;
    border-right-style: none;
    position: absolute;
}

.dark-text .wpcf7-list-item-label, .dark-text .wpcf7-response-output {
    color: var(--ts-shade-7) !important;
}
.ts-form .wpcf7-submit.bg-primary-500 {
    background-color: var(--e-global-color-accent);
    border-color: var(--e-global-color-accent);
}