#pricing {}

/*------------------------------------------------------------------------------*/

#pricing > .field {
	position: relative;
	padding: 25px 0;
	border-bottom: solid 1px rgba(0,0,0,.2);
}

#pricing > .field.price {
	line-height: 24px;
	font-size: 16px;
	font-weight: 400;
}

#pricing > .field > select {
	width: 100%; height: 24px;
	
	cursor: pointer;
}

#pricing > .field > .label {
	position: absolute; top: 25px; left: 0;
	display: flex; height: 24px; width: 100%;
	flex-direction: row;
	align-items: center;
	column-gap: 25px;
	
	background-color: #FFF;
	
	white-space: nowrap;
	
	pointer-events: none;
}
#pricing > .field > .label > .title {
	flex: 0 0 auto;
	
	font-size: 16px;
	font-weight: 400;
}
#pricing > .field > .label > label {
	flex: 1;
	font-size: 16px;
}
#pricing > .field > select[disabled] + .label > label { color: #AAA; }
#pricing > .field > .label > .cta-link {
	flex: 0 0 auto;
	
	font-size: 12px;
	font-weight: 400;
	color: #666;
}

#pricing > .field > .error {
	display: none;
	margin-top: 8px;
	
	line-height: 16px;
	font-size: 12px;
	color: #BA1717;
}
#pricing > .field.show-error > .error { display: block; }

/*------------------------------------------------------------------------------*/

#pricing > .purchase {
	margin-top: 25px;
	
	text-align: center;
}
#pricing > .purchase > .submit-btn {
	display: block; width: 100%;
	margin-bottom: 10px;
	
	font-size: 12px;
}
#pricing > .purchase > .cta-link {
	
}