/**
 * Click-to-reveal dealer phones.
 */

a.wpct-phone {
	display: inline-flex !important;
	flex-wrap: nowrap;
	align-items: baseline;
	max-width: 100%;
	text-decoration: none !important;
	cursor: pointer;
	white-space: nowrap;
	vertical-align: baseline;
}

a.wpct-phone.wpct-loading {
	opacity: 0.7;
	pointer-events: none;
}

a.wpct-phone .wpct-prefix,
a.wpct-phone .wpct-show-label,
a.wpct-phone .wpct-digits {
	display: inline !important;
	float: none !important;
	white-space: nowrap;
	line-height: inherit;
}

a.wpct-phone .wpct-prefix {
	color: #333;
	font-weight: 700;
	flex: 0 0 auto;
}

a.wpct-phone .wpct-show-label {
	color: #9a9a9a;
	font-weight: 400;
	margin-left: 0.25em;
	flex: 0 0 auto;
	transition: color 0.2s ease;
}

a.wpct-phone:hover .wpct-show-label {
	color: #6b6b6b;
}

a.wpct-phone .wpct-digits {
	display: inline-block !important;
	max-width: 0;
	margin-left: 0;
	overflow: hidden;
	opacity: 0;
	vertical-align: bottom;
	color: #333;
	font-weight: 700;
	flex: 0 1 auto;
	transition: max-width 0.45s ease, opacity 0.35s ease, margin-left 0.45s ease;
}

a.wpct-phone.wpct-ready .wpct-show-label {
	display: none !important;
}

a.wpct-phone.wpct-revealed .wpct-digits {
	max-width: 16em;
	margin-left: 0.25em;
	opacity: 1;
}

a.wpct-phone.wpct-revealed {
	cursor: pointer;
}
