.map-editor-box {

}

.map-editor-box .map-value {
	position: absolute;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: calc(100% - 10px);
	top: 20px;
}

.map-editor-box .map-value-label {
	display: flex;
	color: #7f7f7f;
	font-size: 14px;
	width: 100%;
}

.map-editor-box .map-value-label:hover {
	color: var(--bs-link-hover-color);
	cursor: pointer;
}

.map-editor-box .btn.btn-map-editor {
	position: absolute;
	margin-top: -7px;
	right: 0px;
	height: 25px;
	width: 25px;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: none;
	box-shadow: none;
	z-index: 1001;
}


.map-editor-box .map-editor:has(.parsley-errors-list.filled)
,.block-layout-form .map-editor-box .map-editor:has(.parsley-errors-list.filled) {
	border: 2px red solid !important;
}

.map-editor-box .map-editor.mappoint-required
,.block-layout-form .map-editor-box .map-editor.mappoint-required {
	border-right: red 3px solid;
}

.map-editor-box .map-editor.mappoint-readonly
,.block-layout-form .map-editor-box .map-editor.mappoint-readonly {
	border: 2px solid #bec3c6 !important;
}


.block-layout-form .map-editor-box .parsley-errors-list.filled {
	top: -12px;
}

.map-editor-dlg .modal-header {
	padding: 10px 15px;
	background-color: #0066cc;
	color: #FFFFFF;
}

.map-editor-dlg .modal-header .modal-title {
	color: #FFFFFF;
	font-weight: bold
}

.map-editor-dlg.modal .modal-footer {
	padding-bottom: 10px;
	padding-top: 5px;
	justify-content: space-between;
}

.map-editor-dlg.modal .modal-dialog .modal-footer:before
, .map-editor-dlg.modal .modal-dialog .modal-footer:after {
	display: none;
}


.map-editor-dlg.modal .modal-footer .map-point-result {
	display: flex;
	flex-flow: row;
	align-items: center;
	gap: 1.5em;
	border: 1px solid var(--bs-border-color);
	border-radius: 5px;
	padding-left: 8px;
}

.map-editor-dlg.modal.show {
	display: flex;
}

.map-editor-dlg.modal .modal-content {
	width: 80dvw;
	height: 90dvh;
}

.map-editor-dlg.modal .modal-dialog {
	width: 80dvw;
	height: 90dvh;
	transition: transform 0.3s ease-out;
	transform: translate(0, 5dvh);
	margin: 0 auto;
}

.map-editor-dlg.modal .modal-dialog .modal-body {
	padding: 0px !important;
}

.map-editor-dlg.modal .modal-dialog .bootbox-body {
	height: 100%;
}

.map-editor-dlg.modal .modal-dialog .map-container {
	/*clip-path: inset(1px 16px);*/
	background-color: lightgreen;
	height: calc(100% - 30px);
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 15px;
}

.map-editor-dlg.modal .modal-dialog .map-search-box {
	position: absolute;
	width: 75%;
	z-index: 1001;
	margin-top: 15px;
	margin-left: 5%;
	padding-left: 40px;
}

.pac-container {
	z-index: calc(var(--sdk-index-modal) + 10);
}