.powermail_fieldset {
    border: none;
    padding: 0;
}

.powermail_legend {
    margin-bottom: 20px;
}

.powermail_fieldwrap {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}

.powermail_field {
    position: relative;
}

.required-mark {
    right: 8px;
    top: 4px;
}

.powermail_input, .powermail_date, .powermail_textarea {
    font-size: clamp(1rem, 0.9375rem + 0.2vw, 1.125rem);
    line-height: 1.6;
    font-weight: 400;
    font-family: Roboto, sans-serif;
    width: calc(100% - 6px);
    border-radius: 0;
    border: 1px solid #DFDFDD;
    height: 20px;
    margin: 1px;
    padding: 2px;
}

.powermail_textarea  {
    height: 120px;
}

.powermail_label, .powermail_field {
    width: 50%;
}

.contactform .powermail_fieldwrap_type_check .checkbox label {
    font-weight: 500;
    display: flex;
}

.powermail_fieldwrap_type_check.nolabel .powermail_field,
.powermail_fieldwrap_type_html .powermail_field,
.powermail_fieldwrap_type_text .powermail_field {
    width: 100%;
}

.powermail_label {
    font-size: clamp(1rem, 0.9375rem + 0.2vw, 1.125rem);
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Roboto slab', sans-serif;
}

.powermail_select, .powermail_country, .powermail_file {
    font-size: clamp(1rem, 0.9375rem + 0.2vw, 1.125rem);
    line-height: 1.6;
    font-weight: 400;
    font-family: Roboto, sans-serif;
    width: calc(100% - 6px);
    border-radius: 0;
    border: 1px solid #DFDFDD;
    height: 26px;
    margin: 1px;
    padding: 2px;
}

.powermail_radio {
    width: 30px;
}

.powermail_submit {
    background-color: #EC6608;
    border: 1px solid #EC6608;
    border-radius: 8px;
    color: #fff;
    font-weight: 400;
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
    border: none;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}

.powermail_submit:hover {
    background-color: #fff;
    color: #EC6608;
     border: 1px solid #EC6608;
}

.powermail_fieldwrap_type_submit {
    justify-content: flex-end;
}

.powermail_fieldwrap_type_submit .powermail_field {
    text-align: right;
}

.contactform .formcheckbox + label::before {
    line-height: 14px;
    padding-left: 2px;
    padding-top: 3px;
}

.powermail_fieldwrap_type_captcha .powermail_field {
    display: flex;
    flex-direction: column;
}

.powermail_captchaimage {
    margin-bottom: 10px;
}

.powermail_fieldwrap_type_captcha .powermail_field input {
    height: 20px;
}

/* Checkbox stylen  BEGIN */
.powermail_fieldwrap_type_check input[type="checkbox"] {
    appearance: none;
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.powermail_fieldwrap_type_check label {
    position: relative;
    padding-left: 0px;
    cursor: pointer;
}

.powermail_fieldwrap_type_check .checkbox label {
    padding-left: 45px;
}

.powermail_fieldwrap_type_check .checkbox label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #EC6608;
    background-color: white;
}

.powermail_fieldwrap_type_checkinput[type="checkbox"]:checked + label::before {
            background-color: #EC6608;
            border-color: #EC6608;
}

/* Häkchen-Symbol bei Checkbox hinzufügen */
.powermail_fieldwrap_type_check input[type="checkbox"]:checked + label::after {
    content: '\2714';
    position: absolute;
    left: 4px;
    top: -2px;
    font-size: 16px;
    color: #EC6608;
}

/* Checkbox stylen  END */

.powermail_form hr {
    margin: 20px 0px;
}


.powermail_message.powermail_message_error a,
.powermail_message.powermail_message_error h3,
.powermail-errors-list li {
    color: #EC6608;
}