.adaptive-select-modal__header {
	padding: 14px 16px 10px;
	background: #f9f9fb;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	text-align: center;
}

.adaptive-select-modal__title {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.2px;
	color: #111;
	line-height: 1.2;
}

.adaptive-select-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: #fff;
	display: flex;
	flex-direction: column;
}

.adaptive-select-modal__body {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

#adaptive-select-modal__picker {
	width: 100%;
	min-height: 160px;
	position: relative;
}
#adaptive-select-modal__picker canvas {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.adaptive-select-modal__footer {
	padding: 12px 16px;
	background: #f9f9fb;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.adaptive-select-modal__footer button {
	width: 100%;
	height: 50px;

	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.2px;

	color: #007aff;
	background: #ffffff;

	border: none;
	border-radius: 12px;

	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.06),
		0 0 0 1px rgba(0, 0, 0, 0.04);

	transition:
		transform 0.06s ease,
		box-shadow 0.12s ease,
		background 0.12s ease;

	-webkit-tap-highlight-color: transparent;
}
