:root {
	font-family: system-ui, sans-serif;
	color: #172033;
	background: #f3f7fb
}
* {
	box-sizing: border-box
}
body {
	margin: 0
}
.shell {
	max-width: calc(100vw - 20px);
	margin: auto;
	padding: 0px 10px;
}
header {
	text-align: center
}
h1 {
	margin: 10px;
	padding: 10px;
	font-family: 'verdana', cursive;
	font-size: 76px;
}
h1:before, h1:after {
	content: "";
	display: inline-block;
	width: 100px;
	height: 100px;
	vertical-align: middle;
	background: url(../favicon/icon.png) no-repeat center;
	background-size: contain;
	padding: 0px;
	margin: 0px 30px 0px 30px;
}
h1:after {
	transform: rotateY(180deg);
}
.card {
	background: white;
	border-radius: 14px;
	padding: 22px;
	margin: 18px 0;
	box-shadow: 0 3px 14px #17203314
}
.hidden {
	display: none !important
}
label {
	display: block;
	margin: 12px 0;
	font-weight: 600
}
input, select, button, textarea {
	font: inherit;
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #c6d1dd;
	width: 100%;
	margin-top: 5px
}
button {
	cursor: pointer;
	background: #1769e0;
	color: white;
	border: 0;
	font-weight: 700;
	width: auto;
	margin-right: 8px;
	min-width: 150px;
}
.secondary, .info {
	background: #e7edf5;
	color: #172033
}
.danger {
	background: #c62936
}
.link {
	background: none;
	color: #1769e0
}
.choice {
	display: flex;
	gap: 8px;
	margin-top: 18px
}
.toolbar {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
	margin: 14px 0;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
}
.toolbar button {
	width: auto
}
.toolbar .btn_cnt {
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
#map {
	height: calc(100vh - 220px);
	border-radius: 14px;
	background: #dce7ef
}
.member {
	padding: 12px 0;
	border-bottom: 1px solid #e4e9ef;
	display: flex;
	align-items: center;
	gap: 9px
}
.member button {
	padding: 6px 9px;
	font-size: .85rem;
	margin-left: auto
}
.color-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
	flex: none;
	margin-right: 6px;
}
.ride-marker span {
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 50% 50% 50% 0;
	background: var(--marker-color);
	border: 3px solid white;
	box-shadow: 0 2px 5px #0006;
	transform: rotate(-45deg)
}
.ride-marker span::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: white;
	border-radius: 50%;
	margin: 7px
}
#toast {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #18212b;
	color: #fff;
	padding: 12px 16px;
	border-radius: 8px;
	opacity: 0;
	pointer-events: none;
	transition: .2s;
	white-space: pre-line
}
#toast.on {
	opacity: 1
}
.modal {
	position: fixed;
	inset: 0;
	background: #17203399;
	display: grid;
	place-items: center;
	padding: 16px;
	z-index: 1000
}
.modal-card {
	position: relative;
	background: #fff;
	border-radius: 14px;
	padding: 24px;
	width: min(480px, 100%)
}
.modal-card textarea {
	height: 160px;
	resize: vertical;
	line-height: 1.5
}
.modal-close {
	position: absolute;
	right: 10px;
	top: 10px;
	background: transparent;
	color: #172033;
	font-size: 26px;
	padding: 0;
	width: 32px
}
@media(max-width:600px) {
	#map {
		height: 320px
	}
	.toolbar {
		align-items: stretch
	}
	.toolbar>div {
		width: 100%
	}
	h1 {
		font-size: 48px;
	}
	h1:before, h1:after {
		display: none;
	}
}