/**
 * Theme Name:     ABRH
 * Author:         ABRH
 * Template:       generatepress
 * Text Domain:	   abrh
 * Description:    Child theme of GeneratePress
 */


/* Utility functions */
.abrh-logged-in-only {
	display: none;
}
body.abrh-is-member .abrh-logged-in-only {
	display: initial;
}

body.abrh-is-member .abrh-logged-out-only {
	display: none;
}




/* Forms */
.wpcf7-form .wpcf7-form-control:not(.wpcf7-submit) {
	width: 100%;
	border-color: var(--contrast-3);
    border-radius: 2px;
}

.wpcf7-form .wpcf7-form-control:focus {
	border-color: #0092fa;
}

.wpcf7-submit {
	border-radius: 128px;
    padding: .75rem 1.5rem;
}



/* Simple Membership forms */
/* Need to hack specificity to override !importants */
.swpm-form-builder div.swpm-legend {
	margin-left: 0;
    padding-left: 0;
}

.swpm-form-builder ul.swpm-section {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.swpm-form-builder li.swpm-item {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.swpm-text {
    border: 1px solid var(--contrast-3) !important;
}

.swpm-text:focus {
    border-color: #008025 !important;
}

.swpm-text.swpm-form-builder-error {
	border-color: var(--accent) !important;
}