+ border: 0;
+ background: #fff;
+ color: #333;
+ font-size: 12px;
+ display: inline-block;
+ border-radius: 4px;
+}
+
+.ideditor button:focus,
+.ideditor button:active,
+.ideditor button.hover {
+ background-color: #ececec;
+}
+@media (hover: hover) {
+ .ideditor button:hover {
+ background-color: #ececec;
+ }
+}
+.ideditor button.active {
+ background: #7092ff;
+}
+.ideditor button.disabled {
+ background-color: rgba(255,255,255,.25);
+ color: rgba(0,0,0,.4);
+ cursor: not-allowed;
+}
+
+.ideditor .joined > * {
+ border-radius: 0;
+ border-right: 1px solid rgba(0,0,0,.5);
+}
+.ideditor[dir='rtl'] .joined > * {
+ border-left: 1px solid rgba(0,0,0,.5);
+ border-right: none;
+}
+
+.ideditor .fillL .joined > * {
+ border-right: 1px solid #fff;
+}
+.ideditor .joined > *:first-child {
+ border-radius: 4px 0 0 4px;
+}
+.ideditor[dir='rtl'] .joined > *:first-child {
+ border-radius: 0 4px 4px 0;
+}
+.ideditor .joined > *:last-child {
+ border-right-width: 0;
+ border-radius: 0 4px 4px 0;
+}
+.ideditor[dir='rtl'] .joined > *.bar-button:last-child {
+ border-radius: 4px 0 0 4px;
+}
+
+
+/* Action buttons */
+.ideditor button.action {
+ background: #7092ff;
+ color: #fff;
+ font-weight: bold;
+}
+.ideditor button.action:focus,
+.ideditor button.action:active {
+ background: #597be7;
+}
+.ideditor button.secondary-action {
+ background: #ececec;
+ font-weight: bold;
+}
+.ideditor button.secondary-action:focus,
+.ideditor button.secondary-action:active {
+ background: #cccccc;
+}
+
+.ideditor button.action.disabled,
+.ideditor button[disabled].action {
+ background: #cccccc;
+ color: #888;
+ cursor: not-allowed;
+}
+
+.ideditor button.action,
+.ideditor button.secondary-action {
+ padding: 10px 5px;
+}
+
+@media (hover: hover) {
+ .ideditor button.action:hover {
+ background: #597be7;
+ }
+ .ideditor button.secondary-action:hover {
+ background: #cccccc;
+ }
+ .ideditor button.action.disabled:hover,
+ .ideditor button[disabled].action:hover {
+ background: #cccccc;
+ color: #888;
+ cursor: not-allowed;
+ }
+}
+
+
+/* Icons
+------------------------------------------------------- */
+.ideditor .icon {
+ vertical-align: middle;
+ width: 20px;
+ height: 20px;
+}
+
+.ideditor .icon.operation use {
+ fill: #222;
+ color: #79f;
+}
+.ideditor button.disabled .icon.operation use,
+.ideditor .icon.operation.disabled use {
+ fill: rgba(32,32,32,.2);
+ color: rgba(40,40,40,.2);
+}
+
+.ideditor .icon.monochrome use {
+ fill: currentColor;
+}
+
+.ideditor .icon.inline {
+ vertical-align: text-top;
+ display: inline-block;
+ width: 1.17em;
+ height: 1.17em;
+ margin: 0px 3px;
+}
+
+.ideditor .icon.pre-text {
+ margin-right: 5px;
+}
+.ideditor[dir='rtl'] .icon.pre-text {
+ margin-left: 5px;
+ margin-right: 0;
+}
+
+.ideditor .icon.pre-text.user-icon {
+ margin-left: 5px;
+ margin-right: 5px;
+}
+
+.ideditor .icon.light {
+ color: #fff;
+ fill: currentColor;
+}
+.ideditor .icon.created {
+ color: #00ca07;
+}
+.ideditor .icon.modified {
+ color: #666;
+}
+.ideditor .icon.deleted {
+ color: #ea0000;
+}
+
+.ideditor .user-icon {
+ max-height: 20px;
+ max-width: 20px;
+ height: auto;
+ width: auto;
+ border-radius: 3px;
+}
+
+.ideditor .icon-annotation {
+ color: #333;
+ vertical-align: baseline;
+}
+
+
+/* Toolbar / Persistent UI Elements
+------------------------------------------------------- */
+.ideditor .top-toolbar-wrap {
+ position: relative;
+ z-index: 101;
+}
+.ideditor .top-toolbar {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ padding: 10px 0 0 0;
+ overflow-x: auto;
+ overflow-y: hidden;
+ height: 100%;
+ width: 100%;
+
+ /* hide scrollbar but allow scrolling */
+ scrollbar-width: none; /* Firefox */
+ -ms-overflow-style: none; /* IE, Edge */
+}
+.ideditor .top-toolbar::-webkit-scrollbar {
+ display: none; /* Chrome, Safari, Opera */
+}
+.ideditor .top-toolbar .toolbar-item {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: column wrap;
+ flex-flow: column wrap;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+}
+.ideditor .top-toolbar .toolbar-item .item-content {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ height: 40px;
+ width: auto;
+ margin: 0 5px;
+}
+.ideditor[dir='ltr'] .top-toolbar .toolbar-item:last-child .item-content,
+.ideditor[dir='rtl'] .top-toolbar .toolbar-item:first-child .item-content {
+ margin-right: 10px;
+}
+.ideditor[dir='ltr'] .top-toolbar .toolbar-item:first-child .item-content,
+.ideditor[dir='rtl'] .top-toolbar .toolbar-item:last-child .item-content {
+ margin-left: 10px;
+}
+.ideditor[dir='ltr'] .top-toolbar .toolbar-item:last-child .item-label,
+.ideditor[dir='rtl'] .top-toolbar .toolbar-item:first-child .item-label {
+ padding-right: 5px;
+}
+.ideditor[dir='ltr'] .top-toolbar .toolbar-item:first-child .item-label,
+.ideditor[dir='rtl'] .top-toolbar .toolbar-item:last-child .item-label {
+ padding-left: 5px;
+}
+.ideditor .top-toolbar .toolbar-item .item-label {
+ text-align: center;
+ font-size: 11px;
+ white-space: nowrap;
+ margin: 1px 2px 2px 2px;
+}
+.ideditor .top-toolbar .toolbar-item.spacer {
+ width: 100%;
+ -webkit-box-flex: 2;
+ -ms-flex-positive: 2;
+ flex-grow: 2;
+}
+.ideditor .top-toolbar .toolbar-item:first-child {
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+}
+.ideditor .top-toolbar .toolbar-item:last-child {
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+}
+.ideditor .top-toolbar .toolbar-item:empty:not(.spacer) {
+ display: none;
+}
+.ideditor button.bar-button {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding: 0 10px;
+ min-width: 30px;
+ white-space: nowrap;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ font-weight: bold;
+}
+.ideditor button.bar-button .icon {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 20px;
+ flex: 0 0 20px;
+}
+.ideditor button.bar-button .label {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ padding: 0 5px;
+}
+
+.ideditor button.bar-button.dragging {
+ opacity: 0.75;
+ z-index: 200;
+}
+.ideditor button.bar-button.dragging .tooltip {
+ display: none;
+}
+.ideditor button.bar-button.dragging.removing {
+ cursor: url(<%= asset_path("iD/img/cursor-select-remove.png") %>), pointer;
+}
+
+.ideditor button.save .count {
+ display: inline-block;
+ min-width: 32px;
+ text-align: center;
+}
+
+.ideditor .help-pane svg.icon.inline.add-note,
+.ideditor button.add-note svg.icon {
+ height: 15px;
+ width: 15px;
+ color: rgba(0,0,0,0.25);
+ stroke: #333;
+ stroke-width: 60px;
+ margin-top: 3px;
+}
+.ideditor button.add-note svg.icon {
+ margin-left: unset;
+ margin-right: 4px;
+}
+.ideditor[dir='rtl'] button.add-note svg.icon {
+ margin-left: 4px;
+ margin-right: unset;
+}
+.ideditor .help-pane svg.icon.inline.add-note {
+ margin-left: 3px;
+ margin-right: 3px;
+}
+
+.ideditor .spinner {
+ opacity: .5;
+ position: absolute;
+ right: 4px;
+ bottom: 4px;
+ height: 20px;
+ width: 20px;
+}
+.ideditor .spinner img {
+ height: 100%;
+ width: 100%;
+ background: transparent;
+ border-radius: 100%;
+}
+.ideditor[dir='rtl'] .spinner img {
+ -webkit-transform: scaleX(-1);
+ -ms-transform: scaleX(-1);
+ transform: scaleX(-1);
+ -webkit-filter: FlipH;
+ filter: FlipH;
+ -ms-filter: "FlipH";
+}
+
+
+.ideditor .top-toolbar.narrow .spinner,
+.ideditor .top-toolbar.narrow button.bar-button .label {
+ display: none;
+}
+.ideditor .top-toolbar.narrow button .count {
+ border-left-width: 0;
+ border-right-width: 0;
+}
+
+.ideditor[dir='ltr'] .undo-redo button:first-of-type {
+ margin-right: 1px;
+}
+.ideditor[dir='rtl'] .undo-redo button:first-of-type {
+ margin-left: 1px;
+}
+
+/* Header for modals / panes
+------------------------------------------------------- */
+.ideditor .header {
+ border-bottom: 1px solid #ccc;
+ padding: 20px 40px;
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+}
+
+.ideditor .header h3 {
+ text-align: center;
+ margin-bottom: 0;
+ -o-text-overflow: ellipsis;
+ text-overflow: ellipsis;