/* Contact Query Manager — shared styles */

/* Front-end form */
.cqm-form-wrap {
	max-width: 560px;
	margin: 0 auto;
}
.cqm-form-title {
	margin-bottom: 1em;
}
.cqm-field {
	margin-bottom: 1.1em;
	display: flex;
	flex-direction: column;
}
.cqm-field label {
	font-weight: 600;
	margin-bottom: 0.35em;
}
.cqm-required {
	color: #d63638;
}
.cqm-field input[type="text"],
.cqm-field input[type="email"],
.cqm-field input[type="tel"],
.cqm-field input[type="number"],
.cqm-field select,
.cqm-field textarea {
	width: 100%;
	padding: 0.6em 0.75em;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	font-size: 15px;
	box-sizing: border-box;
}
.cqm-field textarea {
	resize: vertical;
}
.cqm-submit-row {
	margin-top: 0.5em;
}
.cqm-submit-btn {
	background: #2271b1;
	color: #fff;
	border: none;
	padding: 0.75em 1.75em;
	border-radius: 4px;
	font-size: 15px;
	cursor: pointer;
}
.cqm-submit-btn:hover {
	background: #135e96;
}
.cqm-notice {
	padding: 0.9em 1.1em;
	border-radius: 4px;
	margin-bottom: 1.2em;
}
.cqm-notice-success {
	background: #edfaef;
	border: 1px solid #46b450;
	color: #1e5a2a;
}
.cqm-notice-error {
	background: #fbeaea;
	border: 1px solid #d63638;
	color: #7a1a1a;
}
.cqm-honeypot {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	height: 0;
	overflow: hidden;
}

/* Admin settings page */
#cqm-fields-table th,
#cqm-fields-table td {
	vertical-align: middle;
	padding: 8px 10px;
}
.cqm-drag-handle {
	cursor: move;
	color: #999;
	text-align: center;
}
.cqm-remove-field {
	color: #b32d2e;
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
}
.cqm-details-table th {
	background: #f6f7f7;
}
