/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  GeneratePress child theme
 Author:       Digitalszene - Michael Moebius
 Author URI:   https://www.digitalszene.de
 Template:     generatepress
 Version:      0.1
*/


/* Cookie-Notice Button */
#cookie-notice .cn-button.kl-button {
    background-color: #084e8d;
    color: #f3bc0b;
    padding: 5px 10px;
	font-size: 15px;
}
#cookie-notice .cn-close-icon,
#cookie-notice .cn-close-icon {
    display: none;
}

/* Buttons */
input[type="button"], input[type="reset"], input[type="submit"] {
    background-color: var(--accent);
    color: var(--accent-2);
    display: inline-flex;
	font-weight: 600;
    justify-content: center;
    text-align: center;
    transition: all 0.5s ease 0s;
	border-radius: 4px;
    padding: 12px 22px
}
input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    background-color: var(--accent-3);
    color: var(--accent);
}
input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover .gb-shape svg {
    transition: all 0.5s ease 0s
}

/* Contact Form 7 - Input Fix */
span.wpcf7-list-item {
    margin: 0;
}
.wpcf7-form .small {
    font-size: .8em;
}
textarea.wpcf7-textarea {
    max-height: 120px;
}

/* Contact Form 7 - Checkbox/Radio Liste */
.wpcf7-form-control.wpcf7-checkbox,
.wpcf7-form-control.wpcf7-radio {
    display: grid;
}

/* Contact Form 7 - Column Grid */
.dwp-form {
    width: 100%;
    margin: 0 auto;
}
.dwp-form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.dwp-form-row .wpcf7-form-control,
.wpcf7-form label {
    width: 100%;
}
.dwp-form-column {
    flex: 1;
    padding: 0.5rem 0;
    width: 100%;
}
.dwp-form-column:first-of-type {
    padding-left: 0;
}
.dwp-form-column:last-of-type {
    padding-right: 0;
}
/* Notebook / Desktop */
@media only screen and ( min-width: 48em ) {
    .dwp-form-row {
        flex-direction: row;
    }
    .dwp-form-column {
        padding: 0.5rem 1rem;
    }
}