#map-viewer-window {
	background: #222;
	overflow-x: auto;
}
#map-area {
	position: relative;
	margin: auto;
	overflow: hidden;
}
#map-area.zoom-ease {
	-webkit-transition: width 400ms;
	-moz-transition: width 400ms;
	-o-transition: width 400ms;
	transition: width 400ms;
}
#map-parent {
	position: relative;
}
#map-parent .spinner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
#map-graphic {
	position: absolute;
	cursor: crosshair;
	-webkit-tap-highlight-color: transparent;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
#map-graphic .map-pin {
	fill-opacity: 0;
	cursor: pointer;
}
#map-graphic .map-pin-circle {
	fill-opacity: .5;
	pointer-events: none;
}
#map-graphic .map-pin-num-rect {
	fill-opacity: .5;
	fill: black;
	pointer-events: none;
}
#map-graphic .map-pin-num,
#map-graphic .map-pin-image {
	pointer-events: none;
}
#map-graphic .map-pin-num {
	text-anchor: middle;
}
#map-graphic .map-arrow,
#map-graphic .map-arrow-border {
	stroke-linecap: square;
	stroke-width: 35;
	pointer-events: none;
}
#map-graphic .map-arrow-border {
	stroke-width: 45;
	stroke: white;
}
#map-graphic .map-arrow-handle {
	fill-opacity: 0;
	cursor: pointer;
}
#map-graphic .map-arrow-circle {
	fill: white;
	fill-opacity: 0;
	pointer-events: none;
}
#map-graphic .map-arrow-circle.show-handle {
	fill-opacity: .35;
}
#map-graphic .grabbable {
	cursor: move;
	cursor: -moz-grab;
	cursor: -webkit-grab;
	cursor: grab;
}
#map-graphic.ghost,
#map-graphic circle.ghost,
#map-graphic line.ghost {
	pointer-events: none;
}
.active-pin-info {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-align-self: flex-start;
	align-self: flex-start;
	color: white;
	border-radius: .6em;
	padding: 0;
	margin: 1em .5em;
	overflow: hidden;
}
#map-viewer .active-pin-info {
	margin: 1em;
}
.active-pin-info .active-pin-info-image {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-align-self: stretch;
	align-self: stretch;
	background-color: #cccccc;
	padding: .3em;
}
.active-pin-info img {
	width: 3.6em;
	height: auto;
}
.active-pin-info .active-pin-info-text {
	font-size: 1.1em;
	margin: .4em 1em;
}
.map-pin-buttons {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	line-height: .8em;
	margin-top: .5em;
	margin-bottom: .5em;
}
.map-editor-toolbar .map-pin-buttons {
	margin: 1em 0 .8em 0;
}
.map-pin-button {
	width: 3em;
	height: 3em;
	margin: .1em;
	background: white;
	border: 1px solid #787878;
	border-radius: .5em;
	overflow: hidden;
	cursor: pointer;
}
.map-pin-button img {
	position: relative;
	width: auto;
	height: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	pointer-events: none;
}
.map-pin-button-active {
	background: #ebeced;
	box-shadow: inset 0 0.3em 0.5em rgba(0,0,0,.3);
}
.map-pin-button-active > img {
	opacity: .6;
}
.zoom-buttons {
	display: -webkit-flex;
	display: flex;
}
.map-editor-toolbar .zoom-buttons {
	margin-bottom: 1em;
}
.zoom-buttons button {
	-webkit-flex-grow: 1;
	flex-grow: 1;
}
.form-note,
.centered-note {
	font-size: .9em;
}
.centered-note {
	text-align: center;
	margin: .5em 0;
}
.map-editor-toolbar {
	display: none !important;
}
.progress-bar {
	display: -webkit-flex;
	display: flex;
	height: 1rem;
	background: #c3c3c3;
	border-radius: .5em;
	margin: .2em 0;
	overflow: hidden;
}
.progress-bar-fill {
	-webkit-flex: 0;
	flex: 0;
	line-height: 1rem;
	border-radius: .5em;
	color: white;
	white-space: nowrap;
	overflow: hidden;
}
.progress-bar-fill:last-child {
	background: transparent;
}
.progress-bar-label {
	font-size: .8em;
	text-align: center;
	margin-bottom: 1em;
}
textarea.map-notes {
	width: 100%;
	resize: vertical;
	overflow-x: hidden;
}
.my-map-list {
	margin-bottom: 1.5em;
}
.my-map-list-item {
	font-size: 1.2em;
	padding: .3em;
	margin: .2em 0;
	background: #cccccc;
	border-left-width: .4em;
	border-left-style: solid;
	overflow: hidden;
}
.my-map-list-title {
	-webkit-flex: 1;
	flex: 1;
	padding: .3em 0;
}
.my-map-list-title,
.my-map-list-buttons {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
.my-map-list-item.my-active-map {
	background: #e5c134;
}
.my-map-list-item .my-map-list-name {
	-webkit-flex: 1;
	flex: 1;
	padding: 0 .3em;
}
.my-map-list-item .my-map-list-protection {
	margin: 0 .8em;
	font-size: 1.2em;
	cursor: help;
}
.my-map-list-buttons button {
	white-space: nowrap;
}
.my-map-list-buttons .my-map-list-view,
.my-map-list-buttons .my-map-list-clone {
	-webkit-flex: 3;
	flex: 3;
}
.my-map-list-buttons .my-map-list-delete {
	-webkit-flex: 1;
	flex: 1;
}
.my-map-list-buttons button .icon-left {
	margin-right: .3em;
}
.my-map-list-buttons .my-map-list-button-text {
	display: inline;
}
.map-editor-no-full section {
	padding-top: 0;
	padding-bottom: 0;
}
@media only screen and (min-width: 900px) {
	.zoom-buttons {
		max-width: 28em;
		margin-right: auto;
		margin-left: auto;
	}
	.my-map-list-item {
		display: -webkit-flex;
		display: flex;
	}
	.my-map-list-title {
		padding: 0;
	}
	.my-map-list-buttons .my-map-list-view,
	.my-map-list-buttons .my-map-list-clone,
	.my-map-list-buttons .my-map-list-delete {
		-webkit-flex: none;
		flex: none;
	}
	.my-map-list-buttons button .icon-left {
		margin-right: 0;
	}
	.my-map-list-buttons .my-map-list-button-text {
		display: none;
	}
}
@media only screen and (min-width: 1125px) {
	 .map-editor-no-full {
	 	display: none !important;
	 }
	.map-editor-toolbar {
		display: -webkit-flex !important;
		display: flex !important;
	}
	.my-map-list-buttons button .icon-left {
		margin-right: .3em;
	}
	.my-map-list-buttons .my-map-list-button-text {
		display: inline;
	}
}