.required-indicator {
	color: #ff0000;
}

#loginform p {
	display: flex;
	justify-content: flex-end;
}
#loginform p.login-submit,
#loginform p.login-remember {
	justify-content: center;
}
#loginform label {
	padding-right: 15px;
}

.crm-form-group.login-form {
	width: auto;
	margin: 0 auto;
	background-color: #f0f0f0;
	box-shadow: 2px 3px 5px rgba(0,0,0,0.4);
}
.crm-form-group.login-form > .flex-item {
}

/** Calendars { **/

h1.calendar-title {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
.calendar-title a.month-picker {
	font-size: 14px;
}

.crm-calendar,
.crm-calendar * {
	box-sizing: border-box;
}
.crm-calendar .calendar-week {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	border-width: 0 0 1px 1px;
	border-style: solid;
	border-color: #808080;
}
.crm-calendar h1 {
	padding-bottom: 20px;
}
.crm-calendar .calendar-day {
	width: 14.28571429%;
	border-right: 1px solid #808080;
}
.crm-calendar .calendar-day.other-month {
	background-color: #f0f0f0;
}
.crm-calendar .calendar-day.today {
	font-weight: 700;
	background-color: #e8ffe0;
}
.crm-calendar .calendar-day .day-of-week {
	display: none;
}


.crm-calendar .calendar-day .day-box {
	width: 100%;
	min-height: 10vw;
	padding: 8px;
	font-size: 12px;
}
.crm-calendar .day-box .date {
	padding-bottom: 8px;
	text-align: right;
	line-height: 12px;
}
.crm-calendar .calendar-week:first-of-type .calendar-day .day-of-week {
	display: block;
	padding: 8px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	color: #ffffff;
	background-color: #808080;
	border-width: 1px 1px 1px 0;
	border-style: solid;
	border-color: #808080;
	border-right-color: #ffffff;
}

.crm-calendar .day-box .appointment {
	margin: 0 0 5px;
	padding: 8px;
	background-color: #f8f8f8;
	border: 1px solid #a0a0a0;
}

.contact-card.lost,
.quote-card.lost,
.order-card.cancelled,
.crm-calendar .day-box .appointment.past-due {
	background-color: #fff0f0;
}

/** } End Calendars **/

/** Base { **/

a.ajax-edit {
	margin-left: 10px;
	cursor: pointer;
}

.crm-scripted .noscript {
	display: none;
}

.text-bold {
	font-weight: 700;
}

.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}

a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: #3063ad;
}

.grecaptcha-badge {
	display: none !important;
}
p:last-of-type {
	padding-bottom: 1em !important;
}
p:not(.has-background):last-child,
p:not(.has-background):last-of-type:last-child {
	padding-bottom: 0 !important;
}
.text-center {
	text-align: center;
}

ul.spaced > li,
ol.spaced > li {
	padding-bottom: 1em;
}

a.et_pb_button,
a.button,
button {
	display: inline-block;
	text-align: center;
}

sup {
	display: inline-block;
	vertical-align: middle;
	font-size: 90%;
	line-height: 1.0;
}

.block {
	display: block;
}
.inline-block {
	display: inline-block;
}

ul:not(.nav) li,
ol li {
	padding-bottom: 8px;
	line-height: 1.4;
}
ul:not(.nav) li li:first-child,
ol li li:first-child {
	padding-top: 8px;
}
ul:not(.nav) li:last-child,
ol li:last-child {
	padding-bottom: 0;
}

ul.inline-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	margin: 0;
	padding: 0;
}
ul.inline-list li {
	position: relative;
	padding: 0 25px 10px;
}
ul.inline-list li:before {
	content: " ";
	display: inline-block;
	position: absolute;
	top: 9px;
	left: 10px;
	width: 7px;
	height: 7px;
	background-color: #171717;
	border-radius: 100%;
}
@media (min-width:768px) {
	ul.two-cols,
	ol.two-cols {
		column-count: 2;
		column-gap: 40px;
		padding-bottom: 0;
	}
	ul.two-cols > li,
	ol.two-cols > li {
		break-inside: avoid;
	}
}
@media (min-width:981px) {
	ul.two-cols,
	ol.two-cols {
		column-gap: 60px;
	}
}



.flex {
	display: flex;
}
.inline-flex {
	display: inline-flex;
}
.et_pb_row,
.et_pb_row_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 90%;
}
.et-fb-layers-view--layer.et_pb_row,
.et-fb-layers-view--layer .et_pb_row_inner {
	display: block !important;
}
.et_pb_row:after,
.et_pb_row_inner:after {
	content: "";
	display: none;
}

.nowrap {
	flex-wrap: nowrap;
}
.wrap {
	flex-wrap: wrap;
}

.align-items-start {
	align-items: flex-start;
}
.align-items-center {
	align-items: center;
}
.align-items-stretch {
	align-items: stretch;
}
.align-items-end {
	align-items: flex-end;
}
.justify-start {
	justify-content: flex-start;
}
.justify-center {
	justify-content: center !important;
}
.justify-space-between {
	justify-content: space-between;
}
.justify-space-around {
	justify-content: space-around;
}
.justify-end {
	justify-content: flex-end;
}
.row,
.et_pb_column.row {
	flex-direction: row;
}
.row-reverse {
	flex-direction: row-reverse;
}
.column {
	flex-direction: column;
}

.table {
	display: table;
	width: 100%;
}
.table-row {
	display: table-row;
}
.table-cell,
.table-head {
	display: table-cell;
	padding-right: 10px;
}
.table-cell:first-child {
	width: 100%;
	white-space: nowrap;
}
.table-cell:last-child {
	padding-right: 0;
}

#report-table-wrapper {
	width: 100%;
	max-width: 100%;
	overflow: auto;
	padding-bottom: 10px;
}
.table.report-table {
	margin-top: 45px;
	border-width: 0 0 1px 1px;
	border-style: solid;
	border-color: #404040;
}
.report-table .table-head {
	font-weight: 700;
	white-space: nowrap;
	line-height: 1.0;
	cursor: pointer;
}
.table-head i {
	display: none;
	padding-left: 8px;
}
.table-head.sort-by i {
	display: none;
}
.table-head.sort-by[data-order="desc"] i.sort-desc {
	display: inline-block;
}
.table-head.sort-by[data-order="asc"] i.sort-asc {
	display: inline-block;
}


.report-table .table-cell,
.report-table .table-head {
	padding: 6px 8px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-color: #404040;
}

.report-table .table-row:nth-child(2n) .table-cell {
	background-color: #f0f0f0;
}
.report-table .media_name {
	min-width: 200px;
}

.table-head i.sort-desc {
	
}

.report-table.channel .territory_id,
.report-table.channel .dealer_id,
.report-table.source .territory_id,
.report-table.source .dealer_id,
.report-table.channel .media_code,
.report-table.channel .media_name {
	display: none;
}
.report-tools .flex {
	margin: 0 -8px;
}

.et_pb_column {
	display: inline-flex;
	flex-direction: column;
	float: none !important;
	margin-right: 0 !important;
}
.et_pb_column.row {
	flex-wrap: wrap;
}
.parallax-container {
	position: relative;
}

.contact-card button,
a.button,
button.button,
.contact-card input[type="button"],
.contact-card input[type="submit"] {
	display: inline-block;
	padding: 3px 12px;
	color: #ffffff;
	background-color: #3063ad;
	border: none;
	cursor: pointer;
}

a.button.add-item,
button.add-item {
	margin-top: 10px !important;
	cursor: pointer;
}

.clutch-crm-wrapper h1 {
	margin-top: 30px;
}

a.icon {
	display: inline-block;
	margin-left: 30px;
}
a.icon:first-of-type {
	margin-left: 0;
}
h4 .icon {
	font-size: 14px;
}

.form-preview a.icon:first-of-type {
	margin-left: 30px;
}

a.delete,
a.delete-item {
	color: #aa0000;
	cursor: pointer;
}

.text-red {
	color: #cc0000;
}

/** } End Base **/

/** Header Template { **/
header .account-links {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-end;
	max-width: 140px;
	margin: 0 0 0 auto;
}
header .account-links > a {
	display: inline-block;
	padding-left: 15px;
	color: #3063ad;
	font-weight: 700;
}
header .account-links > a.button {
	display: block;
	width: 100%;
	margin-top: 12px;
	color: #ffffff;
}
/** } End Header Template **/

/** Navigation { **/
ul.clutch-crm-submenu {
	list-style: none;
	padding: 0;
}
.clutch-crm-nav-wrapper {
	background-color: #808080;
	padding: 0;
}
ul.clutch-crm-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.clutch-crm-nav li {
	padding-bottom: 0;
}
ul.clutch-crm-nav li a {
	display: inline-block;
	padding: 6px 15px;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
}
ul.clutch-crm-nav li.active > a {
	background-color: rgba(255,255,255,0.2);
}

.clutch-crm-submenu-wrapper {
	flex: 1 1 auto;
}

ul.clutch-crm-submenu > li {
	margin: 3px 0;
	padding: 0;
}
.clutch-crm-submenu li:hover > a {
	background-color: rgba( 0,0,0,0.15 );
}

/** } End Navigation **/

/** Forms { **/

.success-message {
	margin-top: 15px;
	padding: 10px 20px;
	color: #000000;
	background-color: #00ff00;
}
body > .success-message {
	margin-top: 0;
}

.crm-form-success {
	display: none;
}

.hint {
	font-size: 14px;
}
.pad-top {
	padding-top: 15px;
}
.hint.pad-top {
	padding-top: 4px;
}
.pad-bottom {
	padding-bottom: 15px;
}
.clutch-crm-form {
	width: 100%;
	margin: 0 auto;
}
.clutch-crm-form,
.clutch-crm-form * {
	position: relative;
}
.opportunity-card {
	margin: 0 0 20px;
	padding: 20px;
	background-color: #f0f0f0;
}
.quote-card.sold,
.order-card.installed,
.contact-card.new,
.opportunity-card.new {
	background-color: #e8ffe0;
}
.clutch-crm-form.appointment {
	max-width: 720px;
	margin: 0 auto;
}
.crm-form-group {
	margin: 1em 0;
	padding: 30px;
}
.opportunity .crm-form-group.contact-histories {
	margin-top: 0 !important;
	padding: 0 0 0 20px;
}

img.crm-action {
	width: auto;
	height: 32px;
}

.opportunity-card .opportunity-data {
	padding-right: 30px;
}

.opportunity-card .opportunity-data .opportunity-tools a.icon:first-child {
	margin-left: 0;
}

.contact .crm-form-group.contact-histories {
	margin: 0.5em 0 !important;
	padding: 15px 20px 0;
}

@media (min-width: 600px) {
	.clutch-crm-form.opportunity .opportunity-data {
		width: 59%;
	}
	.clutch-crm-form.opportunity .contact-info {
		width: 39%;
	}
}

.clutch-crm-form.edit-form .crm-form-group {
	background-color: #f0f0f0;
}

.clutch-crm-form.edit-form.opportunity.new .crm-form-group {
	background-color: transparent;
}

.crm-form-field {
	padding: 0 0 15px
}
.form-preview {
	font-weight: 700;
}
.attachment-item {
	margin-top: 20px;
	padding-top: 0;
	padding-top: 35px;
	border-top: 1px solid #808080;
}
.attachment-item:not(:first-of-type) {
}

@media (min-width:768px) {
	.crm-form-row.two-cols,
	.crm-form-row.city-state-zip {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.page-tools .crm-form-row.city-state-zip {
		flex-wrap: nowrap;
	}
	.crm-form-row.two-cols > .crm-form-field {
		width: 48%;
	}
	.crm-form-row.city-state-zip {
		margin-left: -2%;
	}
	.crm-form-row.city-state-zip > .city {
		padding-left: 2%;
		flex: 1 1 auto;
	}
	.crm-form-row.city-state-zip > .state {
		flex: 1 1 auto;
		padding-left: 2%;
	}
	.clutch-crm-form.edit-form .crm-form-row.city-state-zip > .state {
		max-width: 300px;
	}
	.crm-form-row.city-state-zip > .zip {
		padding-left: 2%;
		max-width: 100px;
	}
}
@media (max-width:1023px) {
	.clutch-crm-form.contact,
	.opportunity-card {
		display: flex;
		flex-direction: column;
	}
	.clutch-crm-form.contact .main-form {
		order: 1;
	}
	.clutch-crm-form.contact .crm-form-group.contact-histories {
		order: 2;
	}
}
@media (min-width:768px) {
	.clutch-crm-form.contact .main-form {
		float: left;
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: space-between;
	}
	.clutch-crm-form.contact:after {
		content: " ";
		display: block;
		float: none;
		clear: both;
	}
	.clutch-crm-form.contact .main-form > .crm-form-group {
		margin: 0.5em 0;
		padding: 15px;
		width: 49%;
	}
}
@media (min-width:1024px) {
	.clutch-crm-form.contact .main-form {
		width: 73%;
	}
	.clutch-crm-form.contact .crm-form-group.contact-histories {
		float: right;
		width: 25%;
	}
}
.crm-form-field label {
	display: block;
	padding-bottom: 5px;
}
.crm-form-field label.flex {
	display: flex;
}
.crm-form-field label.required:after {
	content: " *";
	color: #990000;
}
.crm-form-field.radio-set label {
	display: inline-block;
	padding-right: 15px;
}
.radio-set p.label,
.radio-set p.label:last-of-type {
	margin-bottom: 0 !important;
	padding-bottom: 8px !important;
}
.crm-form-field input[type="text"],
.crm-form-field input[type="date"],
.crm-form-field input[type="email"],
.crm-form-field input[type="tel"],
.crm-form-field input[type="date"],
.crm-form-field input[type="number"],
.crm-form-field select,
.crm-form-field textarea,
.crm-form-field input[type="password"] {
	width: 100%;
	height: 34px;
	padding: 6px 10px;
	border: 1px solid #808080;
}
.crm-form-field textarea {
	display: block;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	height: 80px;
}
textarea[name="appointment_notes"] {
	height: 160px;
}
#other-invitees {
	margin: 0;
	height: 60px;
}
.crm-form-field select {
	padding: 6px 10px 6px 6px;
}

button[type="submit"] {
	font-weight: 700;
}

.clutch-crm-form.opportunity #opportunity_status {
	width: 100px;
}
.crm-form-field #wp-submit {
	padding: 8px 20px;
	color: #ffffff;
	text-align: center;
	font-weight: 600;
	background-color: #0c71c3;
	border: none;
}

.toggle-trigger {
	cursor: pointer;
	color: #3063ad;
}
h1 .toggle-trigger,
h2 .toggle-trigger,
h3 .toggle-trigger,
h4 .toggle-trigger {
	font-size: 14px;
}


.clutch-crm-form .submit-wrapper {
	clear: both;
	float: none;
	padding-top: 30px;
	text-align: center;
}
.clutch-crm-form .submit-wrapper button {
	padding: 8px 25px;
	font-size: 18px;
}
.crm-form-field .flex {
	margin: 0 -8px;
}
.clutch-crm-form .flex-item {
	flex: 1 1 auto;
	margin: 0 8px;
}

.clutch-crm-form .time-selection .flex-item,
.report-tools .flex-item {
	flex: 0 1 auto !important;
	margin: 8px;
}

.checkbox-set label {
	padding-top: 8px !important;
}
.custom-product .flex-item {
	padding-bottom: 15px;
}

/** } End Forms **/

/** Dash Cards { **/
.dash-card-wrapper,
.dash-card-wrapper * {
	position: relative;
}
.dash-card-wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	margin: 0 - 15px;
}
.dash-card-wrapper .dash-card {
	width: 100%;
	max-width: 330px;
	height: auto;
	margin: 15px;
	padding: 15px 25px 25px;
	background-color: #f0f0f0;
}
.dash-card-wrapper .dash-card.stats-card {
	padding-left: 0;
	padding-right: 0;
}

.dash-card-wrapper .dash-card.stats-card h4 {
	padding-left: 25px;
}
.dash-card h4 {
	margin: 0;
	padding: 0 0 25px;
	line-height: 1.0;
}
.dash-card h4 a.icon {
	position: absolute;
	top: -5px;
	right: 10px;
	width: 40px;
	text-align: right;
}
.dash-card h4 a.icon img {
	height: 28px;
}
.dash-card.appointments .appointment {
	display: block;
	margin: 0 0 5px;
	padding: 6px 10px;
	background-color: #ffffff;
}
/** } End Dash Cards **/

/** Page Tools { **/
.page-tools {
	margin-top: 10px;
}
.page-tools.dashboard,
.page-tools.contacts > .clutch-crm-form,
.page-tools.opportunities > .clutch-crm-form,
.page-tools.quotes > .clutch-crm-form,
.page-tools.orders > .clutch-crm-form,
.page-tools.reports > .clutch-crm-form {
	position: relative;
	z-index: 10;
	width: 100%;
	padding: 15px 0;
}
.page-tools .crm-form-group {
	margin: 0;
	padding: 0;
}

.page-tools,
.page-tools * {
	position: relative;
}

.page-tools .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 10px 0 0;
	height: 29px !important;
	padding: 3px 12px !important;
	cursor: pointer;
	color: #ffffff;
	background-color: #3063ad;
	
	font-size: 15px !important;
	line-height: 15px !important;
	border: none !important;
	border-width: 0px !important;
}
@media (min-width:768px) {
	.page-tools > * {
		width: 50%;
	}
}



/** Date Picker { **/

.page-tools > .clutch-crm-form > .datepicker {
	max-width: 400px;
}

.toggled {
	visibility: none !important;
	opacity: 0 !important;
	max-height: 0 !important;
	box-sizing: border-box;
	transition: all 0.5s;
}
.toggled.open {
	visibility: visible !important;
	opacity: 1.0 !important;
	max-height: none !important;
}
.toggled:not(.open) {
	display: none;
}

.datepicker .date-range-picker {
	position: absolute;
	left: 0;
	right: auto;
	width: 100%;
	padding: 15px;
	box-shadow: 2px 3px 3px rgba(0,0,0,0.4);
	background-color: #ffffff;
}
.date-range-picker .crm-form-row.datepicker {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	max-width: 100%;
	padding-bottom: 10px;
}
.crm-form-row.datepicker > .crm-form-field {
	flex: 1 1 auto;
	padding-bottom: 0;
}
.crm-form-row.datepicker > .crm-form-field.separator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}
/** } End Date Picker **/

/** Search { **/
.page-tools .crm-form-group.advanced-search {
	display: none;
	position: absolute;
	right: 0;
	left: auto;
	padding: 25px;
	background-color: #ffffff;
	box-shadow: -2px 3px 3px rgba(0,0,0,0.4);
}
.page-tools .crm-form-group.advanced-search.open {
	display: block;
	width: 320px;
}

.crm-search {
	text-align: right;
}
.crm-search .simple-search {

}
.simple-search .crm-form-field input[type="text"] {
	padding-right: 32px;
}
.simple-search .crm-form-field button {
	position: absolute;
	left: auto;
	right: 0;
	width: 32px;
	height: 34px;
	color: #ffffff;
	background-color: #3063ad;
	border-width: 1px;
	border-color: #3063ad;
	border-style: solid;
}
.crm-search .toggle-trigger.advanced-search {
	font-size: 14px;
}
.simple-search .crm-form-field {
	text-align: right;
}

/** } End Search **/

/** } End Page Tools **/

/** Popovers { **/

.pop-trigger {
	cursor: pointer;
}

.crm-popover {
	display: none;
}
.crm-popover.popped {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999999;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

}
.crm-popover .pop-curtain {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
}
.crm-popover .pop-inner {
	z-index: 2;
	max-width: 600px;
	max-height: 90vh;
	padding: 20px;
	background-color: #ffffff;
	overflow: auto;
}
.crm-popover > form {
	
}

.crm-popover .button {
	padding: 8px 12px;
	font-weight: 700;
}

/** } End Popovers **/

.clutch-crm-form .lineitem-data {
	flex: 1 1 auto;
}


/** Contact Cards { **/

.opportunity-card-list .contact-info p,
.opportunity-card-list .contact-info p:last-child,
.opportunity-card-list .contact-info p:last-of-type {
	margin-bottom: 0 !important;
	padding-bottom: 10px !important;
}




.contact-card {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin: 15px 0;
	background-color: #f0f0f0;
}

.quote-card,
.order-card {
	margin: 15px 0;
	padding: 15px;
	background-color: #f0f0f0;
	border: 2px solid #ffffff;
}

@media (min-width:768px) {
	.quote-card-list,
	.order-card-list {
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: space-between;
	}
	.quote-card-list .quote-card,
	.order-card-list .order-card {
		width: 49%;
	}
	.quote-card-list .crm-form-row.two-cols > .crm-form-field,
	.order-card-list .crm-form-row.two-cols > .crm-form-field {
		width: auto;
		flex: 1 1 auto;
	}
}
@media (min-width:1024px) {
	.quote-card-list .quote-card,
	.order-card-list .order-card {
		width: 32%;
	}
}

.contact-card > * {
	padding: 15px;
}
.contact-card h4 span.status {
	font-size: 14px;
	font-weight: 400;
}
.contact-card h4 {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}
.contact-card .contact-phones,
.contact-card .contact-emails,
.contact-card .contact-addresses {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.contact-card .contact-phones .contact-phone.preferred-1,
.contact-card .contact-emails .contact-email.preferred-1,
.contact-card .contact-addresses .contact-address.preferred-1 {
	order: 1;
}
.contact-card .contact-phones .contact-phone.preferred-0,
.contact-card .contact-emails .contact-email.preferred-0,
.contact-card .contact-addresses .contact-address.preferred-0 {
	order: 2;
}

.contact-card .contact-phones .contact-phone.preferred-0:before {
	content: "Alternate Phone: ";
}
.contact-card .contact-phones .contact-phone.preferred-1:before {
	content: "Primary Phone: ";
}

.contact-card .contact-emails .contact-email.preferred-0:before {
	content: "Alternate Email: ";
}
.contact-card .contact-emails .contact-email.preferred-1:before {
	content: "Primary Email: ";
}
.contact-card .action-menu .menu-items {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
}
.action-menu .menu-item {
	padding: 15px 30px;
	font-size: 14px;
	text-align: center;
}
a.action-menu-trigger {
	display: inline-flex;
	justify-content: center;
	width: 24px;
}

.contact-card > .contact-info {
	width: 100%;
}

@media (min-width:768px) {
	.contact-card-list,
	.opportunity-card-list {
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: space-between;
		width: 100%;
	}
	.contact-card-list .contact-card,
	.opportunity-card-list .opportunity-card {
		width: 49%;
	}
}
@media (min-width:1024px) {
	.contact-card-list .contact-card,
	.opportunity-card-list .opportunity-card {
		width: 32%;
	}
}

/** } End Contact Cards **/

.history-card {
	padding-bottom: 15px;
	font-size: 14px !important;
}

/** Pagination { **/
.pagination p,
.pagination p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 8px !important;
}
.pagination-tools input.hidden {
	width: 0px;
	height: 0px;
	margin: 0;
	padding: 0;
	border: none !important;
	overflow: hidden;
}
.pagination {
	font-size: 14px;
}
.pagination-tools button[type="submit"]:not(.hidden) {
	height: 24px;
	background-color: #3063ad;
	color: #ffffff;
	border: none;
}
.pagination-tools input[type="number"] {
	height: 24px;
	border: 1px solid #808080;
}
/** } End Pagination **/

/** Quotes and Orders { **/



.clutch-crm-form.quote .submit-wrapper,
.clutch-crm-form.order .submit-wrapper {
	display: none;
}
@media (min-width:1024px) {
	.quote-form-wrapper,
	.order-form-wrapper {
		width: 100%;
		max-width: 900px;
		margin: 0 auto;
	}
}
/** } End Quotes and Orders **/