+ cursor: pointer;
+}
+.ideditor[dir='rtl'] .combobox-caret {
+ margin-left: 0;
+ margin-right: -30px;
+}
+
+.ideditor .combobox-caret::after {
+ content: "";
+ height: 0; width: 0;
+ position: absolute;
+ left: 0; right: 0; bottom: 0; top: 0;
+ margin: auto;
+ border-top: 5px solid #ccc;
+ border-left: 5px solid transparent;
+ border-right: 5px solid transparent;
+}
+
+
+/* Field Help
+------------------------------------------------------- */
+.ideditor .field-help-body {
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 20px;
+ right: 20px;
+ margin: 5px;
+ padding: 8px;
+ border: 1px solid #ccc;
+ border-top: 0;
+ border-radius: 0 0 4px 4px;
+ z-index: 20;
+ background: rgba(255,255,255,0.95);
+ box-shadow: 0 0 30px 5px rgba(0,0,0,.4);
+}
+
+.ideditor .field-help-title h2 {
+ padding: 10px;
+ margin-bottom: 0px;
+ font-size: 17px;
+}
+.ideditor .field-help-title button {
+ width: 45px;
+ height: 55px;
+ border-radius: 0;
+}
+
+.ideditor .field-help-nav {
+ font-size: 13px;
+ font-weight: bold;
+ margin-bottom: 10px;
+}
+.ideditor .field-help-nav-item {
+ display: inline-block;
+ padding: 5px 10px;
+ cursor: pointer;
+ color: #666;
+}
+.ideditor .field-help-nav-item.active {
+ color: #7092ff;
+ border-bottom: 2px solid;
+}
+.ideditor .field-help-nav-item:hover {
+ color: #597be7;
+ background-color: #efefef;
+}
+
+.ideditor .field-help-content {
+ padding: 10px;
+ overflow-y: auto;
+ overflow-x: hidden;
+}
+.ideditor .field-help-content h3 {
+ font-size: 12px;
+ margin-bottom: 5px;
+}
+.ideditor .field-help-content p {
+ margin-bottom: 15px;
+}
+.ideditor .field-help-content ul li {
+ list-style: inside;
+ margin-bottom: 5px;
+}
+
+.ideditor .field-help-content .field-help-image {
+ width: 100%;
+ margin-bottom: 15px;
+}
+
+.ideditor .field-help-content svg.turn {
+ width: 40px;
+ height: 20px;
+}
+.ideditor .field-help-content svg.shadow {
+ opacity: 0.7;
+ width: 60px;
+ height: 20px;
+}
+.ideditor .field-help-content svg.from {
+ color: #777;
+}
+.ideditor .field-help-content svg.allow {
+ color: #5b3;
+}
+.ideditor .field-help-content svg.restrict {
+ color: #d53;
+}
+.ideditor .field-help-content svg.only {
+ color: #68f;
+}
+
+.ideditor .field-help-content p.from_shadow,
+.ideditor .field-help-content p.allow_shadow,
+.ideditor .field-help-content p.restrict_shadow,
+.ideditor .field-help-content p.allow_turn,
+.ideditor .field-help-content p.restrict_turn {
+ margin-bottom: 5px;
+}
+
+
+/* More Fields dropdown
+------------------------------------------------------- */
+.ideditor .more-fields {
+ padding: 0 20px 20px 20px;
+ font-weight: bold;
+}
+.ideditor .changeset-editor .more-fields {
+ padding: 15px 20px 0 20px;
+}
+
+.ideditor .more-fields label {
+ display: flex;
+ flex-flow: row nowrap;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.ideditor .more-fields input {
+ margin-left: 10px;
+ flex: 1 1 50%;
+}
+.ideditor[dir='rtl'] .more-fields input {
+ margin-left: auto;
+ margin-right: 10px;
+}
+
+.ideditor .form-field-input-wrap .label {
+ height: 30px;
+ background: #f6f6f6;
+ padding: 5px 10px;
+}
+
+
+/* Raw Tag Editor
+------------------------------------------------------- */
+.ideditor .raw-tag-options {
+ display: flex;
+ flex-flow: row nowrap;
+ flex-direction: row-reverse;
+ margin-top: -25px;
+ padding: 0 3px;
+}
+.ideditor button.raw-tag-option {
+ flex: 0 0 20px;
+ height: 20px;
+ width: 20px;
+ background: #aaa;
+ color: #eee;
+ margin: 0 3px;
+}
+.ideditor button.raw-tag-option:focus,
+.ideditor button.raw-tag-option:hover,
+.ideditor button.raw-tag-option.active {
+ color: #fff;
+ background: #597be7;
+}
+.ideditor button.raw-tag-option.selected {
+ color: #fff;
+ background: #7092ff;
+}
+.ideditor button.raw-tag-option svg.icon {
+ width: 14px;
+ height: 14px;
+ vertical-align: text-bottom;
+}
+.ideditor[dir='ltr'] button.raw-tag-option-list {
+ -moz-transform: scaleX(-1);
+ -o-transform: scaleX(-1);
+ -webkit-transform: scaleX(-1);
+ transform: scaleX(-1);
+ filter: FlipH;
+ -ms-filter: "FlipH";
+}
+
+
+.ideditor .tag-text {
+ width: 100%;
+ height: 100%;
+ font-family: monospace;
+ white-space: pre;
+}
+
+.ideditor .tag-text,
+.ideditor .tag-list {
+ margin-top: 10px;
+}
+.ideditor .tag-row {
+ width: 100%;
+ position: relative;
+}
+.ideditor .tag-row .inner-wrap {
+ display: flex;
+ flex-flow: row nowrap;
+ width: 100%;
+ position: relative;
+}
+.ideditor .tag-row .key-wrap,
+.ideditor .tag-row .value-wrap {
+ flex: 1 1 50%;
+}
+
+.ideditor .tag-text.readonly,
+.ideditor .tag-row.readonly,
+.ideditor .tag-row.readonly input.key,
+.ideditor .tag-row.readonly input.value,
+.ideditor .tag-row.readonly button.remove {
+ color: #777;
+ background-color: #eee;
+ cursor: not-allowed;
+}
+
+.ideditor .tag-row input {
+ height: 31px;
+ border: 0;
+ border-radius: 0;
+ border-bottom: 1px solid #ccc;
+ border-left: 1px solid #ccc;
+ width: 100%;
+}
+.ideditor[dir='rtl'] .tag-row input {
+ border-left: none;
+ border-right: 1px solid #ccc;
+}
+
+
+.ideditor .tag-row input.key {
+ font-weight: bold;
+ background-color: #f6f6f6;
+}
+
+.ideditor .tag-row input.value {
+ border-right: 1px solid #ccc;
+}
+.ideditor[dir='rtl'] .tag-row input.value {
+ border-left: 1px solid #ccc;
+}
+
+.ideditor .tag-row:first-child input.key {
+ border-top: 1px solid #ccc;
+ border-top-left-radius: 4px;
+}
+.ideditor[dir='rtl'] .tag-row:first-child input.key {
+ border-top-left-radius: 0;
+ border-top-right-radius: 4px;
+}
+
+.ideditor .tag-row:first-child input.value {
+ border-top: 1px solid #ccc;
+}
+.ideditor .tag-row button {
+ flex: 0 0 32px;
+ height: 31px;
+ width: 32px;
+ border: 1px solid #ccc;
+ border-top-width: 0;
+ border-left-width: 0;
+}
+.ideditor[dir='rtl'] .tag-row button {
+ border-left-width: 1px;
+ border-right-width: 0;
+}
+
+.ideditor .tag-row button:hover {
+ background: #f1f1f1;
+}
+.ideditor .tag-row button .icon {
+ opacity: .5;
+}
+.ideditor .tag-row:first-child button {
+ border-top-width: 1px;
+}
+
+.ideditor .tag-row:first-child .tag-reference-button {
+ border-top-right-radius: 4px;
+}
+.ideditor[dir='rtl'] .tag-row:first-child .tag-reference-button {
+ border-top-left-radius: 4px;
+ border-top-right-radius: 0;
+}
+
+.ideditor .tag-row:last-child .tag-reference-button {
+ border-bottom-right-radius: 4px;
+}
+.ideditor[dir='rtl'] .tag-row:last-child .tag-reference-button {
+ border-bottom-left-radius: 4px;
+ border-bottom-right-radius: 0;
+}
+
+.ideditor .tag-row .tag-reference-button {
+ border-radius: 0;
+}
+.ideditor[dir='rtl'] .tag-row .tag-reference-button {
+ border-left-width: 1px;
+ border-right-width: 0;
+}
+
+/* Tag reference */
+.ideditor .tag-reference-loading {
+ background-color: #f5f5f5;
+}
+.ideditor .tag-reference-loading .icon {
+ background-image: url(<%= asset_path("iD/img/mini-loader.gif") %>);
+ background-position: 0 0;
+}
+
+.ideditor .tag-reference-body {
+ flex: 1 1 auto;
+ width: 100%;
+ overflow: hidden;
+ display: none;
+ padding-top: 10px;
+}
+.ideditor .tag-reference-body.expanded {
+ padding-bottom: 10px;
+ display: inline-block;
+}
+.ideditor .tag-reference-description {
+
+}
+.ideditor .tag-reference-link {
+ display: block;
+}
+
+.ideditor img.tag-reference-wiki-image {
+ float: right;
+ width: 33.3333%;
+ border-radius: 4px;
+ margin: 0 0 0 5px;
+}
+.ideditor[dir='rtl'] img.tag-reference-wiki-image {
+ float: left;
+ margin: 0 5px 0 0;
+}
+
+.ideditor .preset-list .tag-reference-body {
+ position: relative;
+ width: 100%;
+}
+.ideditor .raw-tag-editor .tag-reference-body {
+ width: 100%;
+}
+.ideditor .raw-tag-editor .tag-row.readonly .tag-reference-body {
+ background: #f6f6f6;
+ color: #333;
+}
+.ideditor .raw-tag-editor .tag-row:not(:last-child) .tag-reference-body.expanded {
+ border-bottom: 1px solid #ccc;
+}
+.ideditor .raw-tag-editor .tag-row.readonly .tag-reference-body.expanded {
+ border-top: 1px solid #ccc;
+}
+
+
+/* Raw Member / Membership Editor
+------------------------------------------------------- */
+
+.ideditor .raw-member-editor .member-list,
+.ideditor .raw-membership-editor .member-list {
+ padding-top: 10px;
+}
+.ideditor .raw-member-editor .member-list li,
+.ideditor .raw-membership-editor .member-list li {
+ position: relative;
+ border-radius: 4px;
+ margin: 0;
+ padding-bottom: 10px;
+}
+.ideditor .raw-member-editor .member-row .member-entity-name,
+.ideditor .raw-membership-editor .member-row .member-entity-name {
+ font-weight: normal;
+ padding-left: 10px;
+}
+
+.ideditor[dir='rtl'] .raw-member-editor .member-row .member-entity-name,
+.ideditor[dir='rtl'] .raw-membership-editor .member-row .member-entity-name {
+ padding-left:0;
+ padding-right: 10px;
+}
+
+.ideditor .form-field-input-member > input.member-role {
+ border-radius: 0 0 0 4px;
+}
+.ideditor[dir='rtl'] .form-field-input-member > input.member-role {
+ border-radius: 0 0 4px 0;
+}
+
+.ideditor .member-incomplete .form-field-input-member > input.member-role,
+.ideditor[dir='rtl'] .member-incomplete .form-field-input-member > input.member-role {
+ border-radius: 0 0 4px 4px;
+}
+
+.ideditor .member-incomplete .member-delete {
+ display: none;
+}
+
+.ideditor .member-row-new .member-entity-input {
+ flex: 1 1 100%;
+ border-radius: 4px 4px 0 0;
+ border: 0;
+}
+
+.ideditor .raw-member-editor .member-row.dragging {
+ opacity: 0.75;
+ z-index: 3000;
+ /*
+ -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
+ -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
+ box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
+ */
+}
+
+/* preserve extra space at bottom of inspector to allow for dropdown options - #5280 */
+.ideditor .raw-membership-editor.inspector-inner {
+ margin-bottom: 150px;
+}
+
+/* hidden field to prevent user from tabbing out of the sidebar */
+.ideditor input.key-trap {
+ height: 0px;
+ width: 0px;
+ padding: 0px;
+ border: 1px solid rgba(0,0,0,0);
+}
+
+
+/* add tag, add relation buttons */
+.ideditor .add-row {
+ display: flex;
+ width: 100%;
+ flex-flow: row nowrap;
+}
+.ideditor .add-row .add-tag,
+.ideditor .add-row .add-relation,
+.ideditor .add-row .space-value {
+ flex: 1 1 50%;
+}
+.ideditor .add-row .space-buttons {
+ flex: 0 0 62px;
+}
+.ideditor .add-row button {
+ height: 30px;
+ background: rgba(0,0,0,.5);
+}
+.ideditor .add-row button:focus,
+.ideditor .add-row button:hover {
+ background: rgba(0,0,0,.8);
+}
+
+.ideditor .add-tag {
+ border-radius: 0 0 4px 4px;
+}
+.ideditor .add-relation {
+ margin-top: 10px;
+ border-radius: 4px;
+}
+
+
+/* OSM Note / KeepRight Editors
+------------------------------------------------------- */
+.ideditor .note-header,
+.ideditor .error-header {
+ background-color: #f6f6f6;
+ border-radius: 5px;
+ border: 1px solid #ccc;
+ display: flex;
+ flex-flow: row nowrap;
+ align-items: center;
+}
+
+.ideditor .note-header-icon,
+.ideditor .error-header-icon {
+ background-color: #fff;
+ padding: 10px;
+ flex: 0 0 62px;
+ position: relative;
+ width: 60px;
+ height: 60px;
+ border-right: 1px solid #ccc;
+ border-radius: 5px 0 0 5px;
+}
+.ideditor[dir='rtl'] .note-header-icon,
+.ideditor[dir='rtl'] .error-header-icon {
+ border-right: unset;
+ border-left: 1px solid #ccc;
+ border-radius: 0 5px 5px 0;
+}
+
+.ideditor .note-header-icon .icon-wrap,
+.ideditor .error-header-icon .icon-wrap {
+ position: absolute;
+ top: 0px;
+}
+.ideditor .preset-icon-28 {
+ position: absolute;
+ top: 16px;
+ left: 16px;
+ margin: auto;
+}
+.ideditor .preset-icon-28 .icon {
+ width: 28px;
+ height: 28px;
+}
+
+.ideditor .note-header-label,
+.ideditor .error-header-label {
+ background-color: #f6f6f6;
+ padding: 0 15px;
+ flex: 1 1 100%;
+ font-size: 14px;
+ font-weight: bold;
+ border-radius: 0 5px 5px 0;
+}
+.ideditor[dir='rtl'] .note-header-label,
+.ideditor[dir='rtl'] .error-header-label {
+ border-radius: 5px 0 0 5px;
+}
+
+.ideditor .note-category {
+ margin: 20px 0px;
+}
+
+.ideditor .comments-container {
+ background: #ececec;
+ padding: 1px 10px;
+ border-radius: 8px;
+ margin-top: 20px;
+}
+
+.ideditor .comment {
+ background-color: #fff;
+ border-radius: 5px;
+ border: 1px solid #ccc;
+ margin: 10px auto;
+ display: flex;
+ flex-flow: row nowrap;
+}
+.ideditor .comment-avatar {
+ padding: 10px;
+ flex: 0 0 62px;
+}
+.ideditor .comment-avatar .icon.comment-avatar-icon {
+ width: 40px;
+ height: 40px;
+ object-fit: cover;
+ border: 1px solid #ccc;
+ border-radius: 20px;
+}
+.ideditor .comment-main {
+ padding: 10px 10px 10px 0;
+ flex: 1 1 100%;
+ flex-flow: column nowrap;
+ overflow: hidden;
+ overflow-wrap: break-word;
+}
+.ideditor[dir='rtl'] .comment-main {
+ padding: 10px 0 10px 10px;
+}
+
+.ideditor .comment-metadata {
+ flex-flow: row nowrap;
+ justify-content: space-between;
+}
+.ideditor .comment-author {
+ font-weight: bold;
+ color: #333;
+}
+.ideditor .comment-date {
+ color: #aaa;
+}
+.ideditor .comment-text {
+ color: #333;
+ margin-top: 10px;
+ overflow-y: auto;
+ max-height: 250px;
+}
+.ideditor .comment-text::-webkit-scrollbar {
+ border-left: none;
+}
+
+.ideditor .note-save,
+.ideditor .error-save {
+ padding-top: 20px;
+}
+
+.ideditor .error-details {
+ padding: 10px;
+}
+.ideditor .error-details-container {
+ background: #ececec;
+ padding: 10px;
+ margin-top: 20px;
+ border-radius: 4px;
+ border: 1px solid #ccc;
+}
+.ideditor .error-details-description {
+ margin-bottom: 10px;
+}
+.ideditor .error-details-description-text::first-letter {
+ text-transform: capitalize;
+}
+.ideditor[dir='rtl'] .error-details-description-text::first-letter {
+ text-transform: none; /* #5877 */
+}
+
+.ideditor .note-save .new-comment-input,
+.ideditor .error-save .new-comment-input {
+ width: 100%;
+ height: 100px;
+ max-height: 300px;
+ min-height: 100px;
+}
+
+.ideditor .note-save .detail-section,
+.ideditor .error-save .detail-section {
+ margin: 10px 0;
+}
+
+.ideditor .note-report {
+ float: right;
+}
+
+
+/* Custom Data Editor
+------------------------------------------------------- */
+.ideditor .data-header {
+ background-color: #f6f6f6;
+ border-radius: 5px;
+ border: 1px solid #ccc;
+ display: flex;
+ flex-flow: row nowrap;
+ align-items: center;
+}
+
+.ideditor .data-header-icon {
+ background-color: #fff;
+ padding: 10px;
+ flex: 0 0 62px;
+ position: relative;
+ width: 60px;
+ height: 60px;
+ border-right: 1px solid #ccc;
+ border-radius: 5px 0 0 5px;
+}
+.ideditor[dir='rtl'] .data-header-icon {
+ border-right: unset;
+ border-left: 1px solid #ccc;
+ border-radius: 0 5px 5px 0;
+}
+
+.ideditor .data-header-icon .icon-wrap {
+ position: absolute;
+ top: 0px;
+}
+
+.ideditor .data-header-label {
+ background-color: #f6f6f6;
+ padding: 0 15px;
+ flex: 1 1 100%;
+ font-size: 14px;
+ font-weight: bold;
+ border-radius: 0 5px 5px 0;
+}
+.ideditor[dir='rtl'] .data-header-label {
+ border-radius: 5px 0 0 5px;
+}
+
+/* custom data editor - no info/delete buttons */
+.ideditor .data-editor.raw-tag-editor .tag-row button {
+ display: none;
+}
+.ideditor .data-editor.raw-tag-editor .tag-row .key-wrap,
+.ideditor .data-editor.raw-tag-editor .tag-row .value-wrap {
+ width: 50%;
+}
+
+
+/* Map Controls
+------------------------------------------------------- */
+.ideditor .map-controls {
+ right: 0;
+ top: 141px;
+ width: 40px;
+ position: absolute;
+ z-index: 100;
+}
+.ideditor[dir='rtl'] .map-controls {
+ left: 0;
+ right: auto;
+}
+
+.ideditor .map-control > button {
+ position: relative;
+ width: 40px;
+ background: rgba(0,0,0,.5);
+ border-radius: 0;
+}
+
+.ideditor .map-control > button:not(.disabled):hover,
+.ideditor .map-control > button:not(.disabled):focus {
+ background: rgba(0, 0, 0, .8);
+}
+
+.ideditor .map-control > button.active,
+.ideditor .map-control > button.active:hover {
+ background: #7092ff;
+}
+
+.ideditor .map-control > button.disabled .icon {
+ color: rgba(255, 255, 255, 0.5);
+}
+
+
+/* Fullscreen Button (disabled)
+------------------------------------------------------- */
+.ideditor div.full-screen {
+ display: inline-block;
+ width: 40px;
+ margin-right: 10px;
+ display: none;
+}
+
+.ideditor div.full-screen .tooltip {
+ min-width: 160px;
+}
+
+.ideditor div.full-screen > button, .ideditor div.full-screen > button.active {
+ width: 40px;
+ height: 40px;
+ background: transparent;
+}
+
+.ideditor div.full-screen > button:hover {
+ background-color: rgba(0, 0, 0, .8);
+}
+
+
+/* Zoom Buttons
+------------------------------------------------------- */
+.ideditor .zoombuttons > button.zoom-in {
+ border-radius: 4px 0 0 0;
+}
+.ideditor[dir='rtl'] .zoombuttons > button.zoom-in {
+ border-radius: 0 4px 0 0;
+}
+
+
+/* Geolocate Button
+------------------------------------------------------- */
+.ideditor .geolocate-control {
+ margin-bottom: 10px;
+}
+.ideditor .geolocate-control > button {
+ border-radius: 0 0 0 4px;