.hww-form {
    display: grid;
    gap: 1rem;
}

body .hww-form label, body .hww-form .hww-form-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

body .hww-form .wpcf7-radio label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.hww-contact-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    @media (min-width: 768px) {
        grid-template-columns: 1fr 1fr;
    }
} 


body .hww-form textarea {
    width: 100%;
    height: 100px;
}

body .hww-form-radiogroup .wpcf7-radio {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    @media (min-width: 768px) {
        flex-direction: row;
        gap: 1rem;
    }
}

body .hww-form-radiogroup .wpcf7-list-item {
    margin: 0;
}

body .hww-form .wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0 !important;
    font-size: 0.8rem !important;
}

body .hww-form .wpcf7-acceptance label {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: start !important;
    gap: 0.5rem;
    margin-bottom: 0;
} 

body .hww-form .required:after {
    content: '*';
    color: #bb1316;
    font-weight: bold;
    display: inline-block;   
}