.course-picker-trigger-row {
	display: block;
	width: 100%;
	margin: 13px 0 15px;
}

.course-picker-trigger {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	max-width: 100%;
	min-height: 40px;
	margin: 0;
	padding: 6px 14px 6px 7px;
	color: #174f6b;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	white-space: nowrap;
	background: rgba(255, 255, 255, .88);
	border: 1px solid rgba(23, 79, 107, .18);
	border-radius: 999px;
	box-shadow: 0 5px 16px rgba(23, 79, 107, .09);
	transition: color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.course-picker-trigger:hover,
.course-picker-trigger:focus {
	color: #0d405b;
	border-color: rgba(23, 79, 107, .38);
	box-shadow: 0 8px 20px rgba(23, 79, 107, .14);
	transform: translateY(-1px);
	outline: 0;
}

.course-picker-trigger-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 27px;
	width: 27px;
	height: 27px;
	color: #fff;
	background: #174f6b;
	border-radius: 50%;
}

.course-picker-trigger-arrow {
	color: #e45f36;
	font-size: 11px;
}

.course-picker .modal-dialog {
	width: calc(100% - 28px);
	max-width: 580px;
	margin: 7vh auto 20px;
}

.course-picker .modal-content {
	overflow: hidden;
	border: 0;
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(15, 43, 56, .28);
}

.course-picker-close {
	position: absolute;
	top: 12px;
	right: 14px;
	z-index: 2;
	width: 34px;
	height: 34px;
	padding: 0;
	color: #41606e;
	font-size: 29px;
	line-height: 30px;
	background: #edf4f5;
	border: 0;
	border-radius: 50%;
}

.course-picker-head {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	padding: 24px 58px 19px 26px;
	background: #fff;
}

.course-picker-head-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 39px;
	width: 39px;
	height: 39px;
	margin-top: 1px;
	color: #174f6b;
	font-size: 19px;
	background: #eaf3f4;
	border-radius: 10px;
}

.course-picker-head h2 {
	margin: 0 0 4px;
	color: #123f52;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.15;
}

.course-picker-head p,
.course-picker-result-note {
	margin: 0;
	color: #607681;
	font-size: 13px;
}

.course-picker-head p {
	text-align: center;
}

.course-picker-progress {
	height: 4px;
	background: #e8eff0;
}

.course-picker-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: #e45f36;
	transition: width .25s ease;
}

.course-picker-body {
	max-height: 56vh;
	min-height: 235px;
	padding: 19px 26px 22px;
	overflow-y: auto;
}

.course-picker-step {
	display: none;
}

.course-picker-step.is-active {
	display: block;
	animation: picker-in .2s ease both;
}

@keyframes picker-in {
	from { opacity: 0; transform: translateY(5px); }
	to { opacity: 1; transform: translateY(0); }
}

.course-picker-step h3 {
	margin: 0 0 13px;
	color: #173f50;
	font-size: 18px;
	font-weight: 800;
}

.course-picker-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.course-picker-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	padding: 10px 13px;
	color: #294f5f;
	font-size: 14px;
	font-weight: 700;
	text-align: left;
	background: #fff;
	border: 1px solid #dce7e9;
	border-radius: 10px;
	transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.course-picker-option:hover,
.course-picker-option:focus {
	color: #174f6b;
	background: #f3f8f8;
	border-color: #82aebd;
	transform: translateY(-1px);
	outline: 0;
}

.course-picker-option i {
	color: #e45f36;
	font-size: 18px;
}

.course-picker-back,
.course-picker-restart {
	float: right;
	padding: 2px 0;
	color: #607681;
	font-size: 12px;
	font-weight: 700;
	background: transparent;
	border: 0;
}

.course-picker-step[data-step="results"] {
	position: relative;
}

.course-picker-step[data-step="results"] .course-picker-restart {
	position: static;
	display: block;
	float: none;
	margin: 8px 0 10px auto;
	white-space: nowrap;
}

.course-picker-step[data-step="results"] h3 {
	margin-right: 0;
	margin-left: 0;
	text-align: center;
}

.course-picker-step[data-step="results"] .course-picker-result-note {
	text-align: center;
}

.course-picker-loading,
.course-picker-error,
.course-picker-empty {
	padding: 24px 12px;
	color: #607681;
	text-align: center;
}

.course-picker-error,
.course-picker-empty {
	background: #fff6f1;
	border-radius: 10px;
}

.course-picker-error {
	display: none;
}

.course-picker-result-note {
	margin: -7px 0 12px;
}

.course-picker-course {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr) auto;
	align-items: center;
	gap: 11px;
	margin-bottom: 8px;
	padding: 11px 12px;
	color: #173f50;
	background: #f7faf9;
	border: 1px solid #e0e9e9;
	border-radius: 11px;
}

.course-picker-course:hover,
.course-picker-course:focus {
	color: #173f50;
	text-decoration: none;
	border-color: #83afba;
}

.course-picker-rank {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: #fff;
	font-weight: 800;
	background: #e45f36;
	border-radius: 50%;
}

.course-picker-course-copy strong,
.course-picker-course-copy small {
	display: block;
}

.course-picker-course-copy strong {
	font-size: 14px;
	line-height: 1.25;
}

.course-picker-course-copy small {
	margin-top: 4px;
	color: #66808b;
}

.course-picker-view {
	color: #174f6b;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.course-picker-trigger-row {
		margin-bottom: 13px;
	}

	.course-picker-trigger {
		font-size: 12px;
	}

	.course-picker .modal-dialog {
		margin-top: 14px;
	}

	.course-picker-head {
		padding: 20px 50px 14px 18px;
	}

	.course-picker-head h2 {
		font-size: 21px;
	}

	.course-picker-body {
		max-height: 62vh;
		padding: 16px 18px 19px;
	}

	.course-picker-options {
		grid-template-columns: 1fr;
	}

	.course-picker-course {
		grid-template-columns: 30px minmax(0, 1fr);
	}

	.course-picker-step[data-step="results"] h3 {
		white-space: normal;
	}

	.course-picker-view {
		display: none;
	}

}

@media (max-width: 390px) {
	.course-picker-trigger {
		width: 100%;
		justify-content: flex-start;
		white-space: normal;
	}

	.course-picker-trigger-arrow {
		margin-left: auto;
	}
}

.wthreeproductdisplay .course-picker-trigger-row {
	text-align: center;
}
