/**
 * Marketo elements
 */
.mktoErrorMsg {
	color: rgb(255,0,0);
}

/**
 * errors
 */
.rf-form .rf-error {
	color: rgb(255,0,0);
	margin-bottom: 12px;
	margin-top: 12px;
}
.rf-form .rf-interest-error {
	color: rgb(255,0,0);
	margin-bottom: 12px;
	margin-top: 12px;
}
.rf-form .rf-blacklisted-error {
	color: rgb(255,0,0);
	margin-bottom: 12px;
	margin-top: 12px;
}
.rf-form .field-error input,
.rf-form .field-error textarea,
.rf-form .field-error select {
	border: 1px solid red;
	background: rgba(255,0,0,0.1);
}

/**
 * form elements
 */
.rf-form input,
.rf-form select {
	height: 35px;
	text-indent: 10px;
	padding: 0 5px 0 5px;
	border-radius: 2px;
	border: solid 1px #ccc;
}
.rf-form select {
	background: url(/wp-content/themes/pei-events/assets/build/img/expand-button.svg) no-repeat right 10px center;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-overflow: '';
	padding: 4px 30px 0 0;
	font-size: 16px;
}
.rf-form .rf-terms a {
	text-decoration: underline;
}

/**
 * rf-custom-checkbox
 */
.rf-form .rf-custom-checkbox {
	display: flex;
	align-items: center;
}
.rf-form .rf-custom-checkbox .checkmark-unchecked {
	border: solid 2px #ccc;
	height: 22px;
	width: 26px;
	margin-right: 15px;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.rf-form .rf-custom-checkbox .checkmark-checked {
	border: solid 2px #ccc;
	width: 26px;
	height: 22px;
	margin-right: 15px;
}
.rf-form .rf-custom-checkbox .checkmark {
	display: inline-block;
	-ms-transform: rotate(45deg); /* IE 9 */
	-webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
	transform: rotate(45deg);
}
.rf-form .rf-custom-checkbox .checkmark_stem {
	width: 3px;
	height: 12px;
	background-color: black;
	margin-left: -7px;
	margin-top: -14px;
}
.rf-form .rf-custom-checkbox .checkmark_kick {
	width: 5px;
	height: 3px;
	background-color: black;
	margin-left: -11px;
	margin-top: -3px;
}
.rf-form .rf-custom-checkbox .display-visible {
	display: inline-block;
}
.rf-form .rf-custom-checkbox .display-none {
	display: none;
}
@media (max-width: 699px) {
	.rf-form .rf-custom-checkbox .checkmark_kick {
		margin-left: -3px;
		margin-top: -3px;
	}
	.rf-form .rf-custom-checkbox .checkmark_stem {
		margin-left: 1px;
		margin-top: -21px;
	}
}

/**
 * rf-terms
 */
.rf-form p.rf-terms {
	margin-top: 28px;
}
.rf-form-groups .options-disclaimer {
	display:block;
	width: 100%;
}