/*
 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
*/


/* mobile menu */
button.menu-toggle, .has-inline-mobile-toggle #site-navigation.toggled {
	background-color: transparent!important;
}

/* Cookie-Notice Button */
#cookie-notice .cn-button.bbs-button {
    background-color: #2daae1;
    color: #fff;
    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: rgba(255,255,255,0);
    color: var(--accent);
    letter-spacing: 2px;
    display: inline-flex;
    font-weight: 400;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease 0s;
    border: 1px solid var(--accent);
    padding: 8px 16px
}
input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    background-color: var(--accent);
    color: var(--base-3);
}
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;
    }
}