/*
 * SOLD SECURE LOCK GUIDANCE
 *
 * Panel beneath each bicycle value field, hidden until a value is entered
 * (assets/js/sold-secure.js). Follows the existing .info-popup treatment in
 * quote-style.css so the two info affordances on this field look related.
 */
.sold-secure-notice {
	clear: both;
	float: none;
	width: 100%;
	margin-top: 12px;
	padding: 15px;
	background: #efefef;
	border-radius: 2px;
	color: #4a4a4a;
	font-size: 14px;
	line-height: 1.5;
	overflow: hidden;
}

.sold-secure-notice[hidden] {
	display: none;
}

.sold-secure-notice__icon {
	float: left;
	width: 19px;
	height: 19px;
	margin: 2px 12px 0 0;
	background: url(../images/info-icon.svg) no-repeat left 0;
}

.sold-secure-notice__body {
	overflow: hidden;
}

.sold-secure-notice p {
	margin: 0 0 10px;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.sold-secure-notice p.sold-secure-notice__help {
	margin-bottom: 0;
}

.sold-secure-notice a {
	color: #0087cc;
	text-decoration: underline;
}

.sold-secure-notice a:hover {
	color: #4a4a4a;
}

@media (max-width: 575px) {
	.sold-secure-notice {
		padding: 12px;
		font-size: 13px;
	}
}
