span.wpcf7-list-item-label {
    font-weight: normal;
}

span.wpcf7-list-item {
    margin: 0 1em 0 0;
}

span.wpcf7-list-item input[type=radio],
span.wpcf7-list-item input[type=checkbox] {
    margin: 10px 5px 0 0;
}

.wpcf7 h2 {
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.wpcf7 a {
    text-decoration: underline;
}

/* floating labels */

.wpcf7-form-control-wrap {
    display: block;
    position: relative;
}
.wpcf7 input:not([type='submit']),
.wpcf7 select,
.wpcf7 textarea {
    margin-top: 30px;
    color: #af1c1e;
}
.wpcf7 label {
    color: #02344a;
    white-space: nowrap;
}
.wpcf7 label:not(.floating) {
    margin-top: 10px;
    font-size: 12px;
}
.wpcf7 label:not(.floating) > * {
    font-size: 14px;
}
.wpcf7 label.floating {
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: text;
    transition: all .15s ease-in-out 0s;
    visibility: hidden;
}
.wpcf7 input:focus ~ label.floating,
.wpcf7 input:not(:placeholder-shown) ~ label.floating,
.wpcf7 textarea:focus ~ label.floating,
.wpcf7 textarea:not(:placeholder-shown) ~ label.floating,
.wpcf7 select:focus ~ label.floating,
.wpcf7 select:not(:placeholder-shown) ~ label.floating {
    visibility: visible;
    top: -22px;
    left: 0;
    cursor: pointer;
    font-size: 12px;
}
