.tweha-qc__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.tweha-qc label,
.tweha-qc fieldset {
    display: grid;
    gap: .35rem;
    align-content: space-between;
}

.tweha-qc input, 
.tweha-qc select, 
.tweha-qc button {
    color: var(--color-content-text);
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    border: solid 1px var(--color-content-border-alt-3);
}

.tweha-qc__email {
    padding: 1rem;
    border: solid 1px rgba(255,255,255,0.15);
	border-radius: 2px;
    margin-block: 1.25rem;
}

.tweha-qc__form input[type="checkbox"] {
	width: 22px;
	height: 22px;
	padding: 0;
	border-radius: 2px;
}

.tweha-qc__check {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: start;
}

.tweha-qc__check input {
    width: auto;
    min-height: auto;
}

.tweha-qc__message {
    margin-block: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid #d97706;
    border-left: 5px solid #d97706;
    border-radius: var(--tweha-radius);
    background: #fff7e6 !important;
    color: #542f00 !important;
    font-weight: 600;
    line-height: 1.5;
}

.tweha-qc__message a,
.tweha-qc__message p,
.tweha-qc__message li {
    color: inherit !important;
}

.tweha-qc__message--error {
    border-color: #b42318;
    background: #fff1f0 !important;
    color: #7a271a !important;
}

.tweha-qc__result {
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 2px;
    background: #fff;
}

.tweha-qc__result-header {
    color: var(--color-content-heading);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    background: var(--color-content-bg);
    padding: 0.5rem;
    border-bottom: solid 1px var(--color-content-border);
}

.tweha-qc__result table {
    margin: 0 !important;
}

.tweha-qc__result th,
.tweha-qc__result td {
    border: 0;
    border-bottom: 1px solid var(--color-content-border);
}

.tweha-qc__result thead th {
    background: var(--color-content-bg);
    color: var(--color-content-heading);
}

.tweha-qc__result tbody tr:nth-child(even) {
    background: var(--color-content-bg);
}

.tweha-qc__result tbody tr:last-child th,
.tweha-qc__result tbody tr:last-child td {
    border-bottom: 0;
}

.tweha-qc__result-note {
    margin: 0;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-content-border);
    background: var(--color-content-bg);
    font-size: 15px;
}

.tweha-qc__restart {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.625em 1.75em;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--color-content-orange-700), var(--color-content-primary));
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    transition: ease 0.3s;
}
.tweha-qc__restart:hover {
    background: linear-gradient(90deg, var(--color-content-orange-700), var(--color-content-orange-500));
}

.tweha-qc__trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

@media (max-width: 680px) {
    .tweha-qc__grid {
        grid-template-columns: 1fr;
    }

    .tweha-qc__result-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .tweha-qc__result {
        overflow-x: auto;
    }
}
