+.comment {
+ background-color: #fff;
+ border-radius: 5px;
+ border: 1px solid #ccc;
+ margin: 10px auto;
+ display: flex;
+ flex-flow: row nowrap;
+}
+.comment-avatar {
+ padding: 10px;
+ flex: 0 0 62px;
+}
+.comment-avatar .icon.comment-avatar-icon {
+ width: 40px;
+ height: 40px;
+ object-fit: cover;
+ border: 1px solid #ccc;
+ border-radius: 20px;
+}
+.comment-main {
+ padding: 10px 10px 10px 0;
+ flex: 1 1 100%;
+ flex-flow: column nowrap;
+ overflow: hidden;
+ overflow-wrap: break-word;
+}
+[dir='rtl'] .comment-main {
+ padding: 10px 0 10px 10px;
+}
+
+.comment-metadata {
+ flex-flow: row nowrap;
+ justify-content: space-between;
+}
+.comment-author {
+ font-weight: bold;
+ color: #333;
+}
+.comment-date {
+ color: #aaa;
+}
+.comment-text {
+ color: #333;
+ margin-top: 10px;
+ overflow-y: auto;
+ max-height: 250px;
+}
+.comment-text::-webkit-scrollbar {
+ border-left: none;
+}
+
+.note-save,
+.error-save {
+ padding-top: 20px;
+}
+
+.error-details {
+ padding: 10px;
+}
+.error-details-container {
+ background: #ececec;
+ padding: 10px;
+ margin-top: 20px;
+ border-radius: 4px;
+ border: 1px solid #ccc;
+}
+.error-details-description {
+ margin-bottom: 10px;
+}
+.error-details-description-text::first-letter {
+ text-transform: capitalize;
+}
+[dir='rtl'] .error-details-description-text::first-letter {
+ text-transform: none; /* #5877 */
+}
+
+.note-save .new-comment-input,
+.error-save .new-comment-input {
+ width: 100%;
+ height: 100px;
+ max-height: 300px;
+ min-height: 100px;
+}
+
+.note-save .detail-section,
+.error-save .detail-section {
+ margin: 10px 0;
+}
+
+.note-report {
+ float: right;
+}
+
+
+/* Custom Data Editor
+------------------------------------------------------- */
+.data-header {
+ background-color: #f6f6f6;
+ border-radius: 5px;
+ border: 1px solid #ccc;
+ display: flex;
+ flex-flow: row nowrap;
+ align-items: center;
+}
+
+.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;
+}
+[dir='rtl'] .data-header-icon {
+ border-right: unset;
+ border-left: 1px solid #ccc;
+ border-radius: 0 5px 5px 0;
+}
+
+.data-header-icon .icon-wrap {
+ position: absolute;
+ top: 0px;
+}
+
+.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;
+}
+[dir='rtl'] .data-header-label {
+ border-radius: 5px 0 0 5px;
+}
+
+/* custom data editor - no info/delete buttons */
+.data-editor.raw-tag-editor .tag-row button {
+ display: none;
+}
+.data-editor.raw-tag-editor .tag-row .key-wrap,
+.data-editor.raw-tag-editor .tag-row .value-wrap {
+ width: 50%;
+}
+
+
+/* Map Controls
+------------------------------------------------------- */
+.map-controls {
+ right: 0;
+ top: 141px;
+ width: 40px;
+ position: absolute;
+ z-index: 100;
+}
+[dir='rtl'] .map-controls {
+ left: 0;
+ right: auto;
+}
+
+.map-control > button {
+ position: relative;
+ width: 40px;
+ background: rgba(0,0,0,.5);
+ border-radius: 0;
+}
+
+.map-control > button:not(.disabled):hover,
+.map-control > button:not(.disabled):focus {
+ background: rgba(0, 0, 0, .8);
+}
+
+.map-control > button.active,
+.map-control > button.active:hover {
+ background: #7092ff;
+}
+
+.map-control > button.disabled .icon {
+ color: rgba(255, 255, 255, 0.5);
+}
+
+
+/* Fullscreen Button (disabled)
+------------------------------------------------------- */
+div.full-screen {
+ display: inline-block;
+ width: 40px;
+ margin-right: 10px;
+ display: none;
+}
+
+div.full-screen .tooltip {
+ min-width: 160px;
+}
+
+div.full-screen > button, div.full-screen > button.active {
+ width: 40px;
+ height: 40px;
+ background: transparent;
+}
+
+div.full-screen > button:hover {
+ background-color: rgba(0, 0, 0, .8);
+}
+
+
+/* Zoom Buttons
+------------------------------------------------------- */
+.zoombuttons > button.zoom-in {
+ border-radius: 4px 0 0 0;
+}
+[dir='rtl'] .zoombuttons > button.zoom-in {
+ border-radius: 0 4px 0 0;
+}
+
+
+/* Geolocate Button
+------------------------------------------------------- */
+.geolocate-control {
+ margin-bottom: 10px;
+}
+.geolocate-control > button {
+ border-radius: 0 0 0 4px;
+}
+[dir='rtl'] .geolocate-control > button {
+ border-radius: 0 0 4px 0;
+}
+
+
+/* Background / Map Data / Help Pane buttons
+------------------------------------------------------- */
+.background-control > button {
+ border-radius: 4px 0 0 0;
+}
+[dir='rtl'] .background-control > button {
+ border-radius: 0 4px 0 0;
+}
+
+.help-control > button {
+ border-radius: 0 0 0 4px;
+}
+[dir='rtl'] .help-control > button {
+ border-radius: 0 0 4px 0;
+}
+
+
+/* Background / Map Data Settings
+------------------------------------------------------- */
+.map-data-control,
+.background-control {
+ position: relative;
+}
+
+.imagery-faq {
+ margin-bottom: 10px;
+ white-space: nowrap;
+}
+
+.layer-list, .controls-list {
+ margin-bottom: 10px;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+}
+
+.layer-list > li {
+ height: 30px;
+ background-color: #fff;
+ color: #7092ff;
+ position: relative;
+ display: flex;
+}
+
+.layer-list:empty {
+ display: none;
+}
+
+.layer-list > li:first-child {
+ border-radius: 3px 3px 0 0;
+}
+.layer-list > li:last-child {
+ border-radius: 0 0 3px 3px;
+}
+.layer-list > li:only-child {
+ border-radius: 3px;
+}
+.layer-list li:not(:last-child) {
+ border-bottom: 1px solid #ccc;
+}
+.layer-list li:hover {
+ background-color: #ececec;
+}
+
+.layer-list li.active button,
+.layer-list li.switch button,
+.layer-list li.active,
+.layer-list li.switch {
+ background: #e8ebff;
+}
+
+.layer-list li.best > div.best {
+ padding: 5px;
+ flex: 0 0 auto;
+}
+
+[dir='rtl'] .list-item-data-browse svg {
+ transform: rotateY(180deg);
+}
+
+/* make sure tooltip fits in map-control panel */
+/* if too wide, placement will be wrong the first time it displays */
+.layer-list li.best .popover-inner {
+ max-width: 160px;
+}
+
+.layer-list label {
+ padding: 5px 10px;
+ cursor: pointer;
+ flex: 1 1 auto;
+}
+
+[dir='ltr'] .layer-list .indented label {
+ padding-left: 24px;
+}
+[dir='rtl'] .layer-list .indented label {
+ padding-right: 24px;
+}
+
+.layer-list label > span {
+ display: block;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+}
+
+.map-data-pane .layer-list button,
+.background-pane .layer-list button {
+ height: 100%;
+ border-left: 1px solid #ccc;
+ border-radius: 0;
+ padding-left: 4px;
+ padding-right: 4px;
+}
+[dir='rtl'] .map-data-pane .layer-list button,
+[dir='rtl'] .background-pane .layer-list button {
+ border-left: none;
+ border-right: 1px solid #ccc;
+}
+
+.map-data-pane .layer-list button .icon,
+.background-pane .layer-list button .icon {
+ opacity: 0.5;
+}
+
+.map-data-pane .layer-list button:last-of-type,
+.background-pane .layer-list button:last-of-type {
+ border-radius: 0 3px 3px 0;
+}
+[dir='rtl'] .map-data-pane .layer-list button:last-of-type,
+[dir='rtl'] .background-pane .layer-list button:last-of-type {
+ border-radius: 3px 0 0 3px;
+}
+
+.map-data-pane .vectortile-container .vectortile-header {
+ padding-bottom: 5px;
+}
+.map-data-pane .vectortile-container .vectortile-footer {
+ padding-bottom: 10px;
+}
+
+
+/* Issues
+------------------------------------------------------- */
+.issue {
+ overflow: hidden;
+}
+.issue .issue-label,
+.issue-label .issue-text {
+ width: 100%;
+ display: flex;
+ flex-flow: row nowrap;
+ cursor: pointer;
+}
+
+.issue-text .issue-icon {
+ flex: 0 0 auto;
+ padding: 5px 7px;
+}
+.issue-text .issue-message {
+ flex: 1 1 auto;
+ padding: 5px 0;
+}
+.issue-label .issue-autofix {
+ flex: 0 0 auto;
+ padding: 5px 8px;
+}
+.issue-label .issue-info-button {
+ height: unset;
+ width: 32px;
+ flex: 0 0 auto;
+ border-left: 1px solid #ccc;
+ background-color: rgba(0,0,0,0);
+}
+[dir='rtl'] .issue-label .issue-info-button {
+ border-left: 0;
+ border-right: 1px solid #ccc;
+}
+.issue-container .issue-label .issue-info-button .icon {
+ opacity: 0.5;
+}
+.issue-container.active .issue-label .issue-info-button .icon {
+ opacity: 0.7;
+}
+.issue-label .issue-info-button:last-child {
+ border-radius: 0 4px 4px 0;
+}
+[dir='rtl'] .issue-label .issue-info-button:last-child {
+ border-radius: 4px 0 0 4px;
+}
+
+button.autofix.action {
+ flex: 0 0 20px;
+ height: 20px;
+ width: 20px;
+ background: #7092ff;
+ color: #fff;
+}
+button.autofix.action:focus,
+button.autofix.action:hover,
+button.autofix.action.active {
+ background: #597be7;
+}
+
+/* fix all */
+.autofix-all {
+ display: flex;
+ flex-flow: row nowrap;
+ flex-direction: row-reverse;
+ margin-top: -25px;
+ padding-bottom: 5px;
+}
+.autofix-all-link-text {
+ padding: 0;
+}
+.autofix-all-link-icon svg {
+ margin: 0 9px;
+ background: currentColor;
+ border-radius: 4px;
+}
+.autofix-all-link-icon svg use {
+ color: #fff;
+}
+
+/* warning styles */
+.warnings-list,
+.warnings-list *,
+.issue-container.active .issue.severity-warning,
+.issue-container.active .issue.severity-warning * {
+ border-color: #fb2;
+}
+
+.warnings-list .issue.severity-warning .issue-label,
+.issue.severity-warning .issue-fix-list,
+.mode-save .warning-section {
+ background: #ffc;
+}
+
+.issue-container.active .issue.severity-warning .issue-label {
+ background: #ffa;
+}
+
+.warnings-list .issue.severity-warning .issue-label:hover,
+.issue.severity-warning .issue-fix-item.actionable:hover {
+ background: #ff8;
+}
+
+.issue.severity-warning .issue-icon {
+ color: #f90;
+}
+
+.issue.severity-warning .issue-fix-item.actionable,
+.issue-container.active .issue.severity-warning .issue-info-button {
+ color: #b15500;
+ fill: #b15500;
+ /*color: #7092ff;*/
+ /*fill: #7092ff;*/
+}
+.issue.severity-warning .issue-fix-item.actionable:hover,
+.issue-container.active .issue.severity-warning .issue-info-button:hover {
+ color: #7f3d00;
+ fill: #7f3d00;
+ /*color: #597be7;*/
+ /*fill: #597be7;*/
+}
+
+.notification-badge.warning {
+ color: #ffdf5c;
+}
+
+
+/* error styles */
+.errors-list,
+.errors-list *,
+.issue-container.active .issue.severity-error,
+.issue-container.active .issue.severity-error * {
+ border-color: #f77;
+}
+
+.errors-list .issue.severity-error .issue-label,
+.issue.severity-error .issue-fix-list,
+.mode-save .error-section {
+ background: #ffd6d6;
+}
+
+.issue-container.active .issue.severity-error .issue-label {
+ background: #ffc6c6;
+}
+
+.errors-list .issue.severity-error .issue-label:hover,
+.issue.severity-error .issue-fix-item.actionable:hover {
+ background: #ffb6b6;
+}
+
+.issue.severity-error .issue-icon {
+ color: #dd1400;
+}
+
+.issue.severity-error .issue-fix-item.actionable,
+.issue-container.active .issue.severity-error .issue-info-button {
+ color: #b91201;
+ fill: #b91201;
+ /*color: #7092ff;*/
+ /*fill: #7092ff;*/
+}
+.issue.severity-error .issue-fix-item.actionable:hover,
+.issue-container.active .issue.severity-error .issue-info-button:hover {
+ color: #840c00;
+ fill: #840c00;
+ /*color: #597be7;*/
+ /*fill: #597be7;*/
+}
+
+.notification-badge.error {
+ color: #ff0c05;
+}
+
+
+/* Issues Pane */
+.issues-options-container {
+ display: table;
+}
+.issues-option {
+ display: table-row;
+}
+.issues-option-title {
+ display: table-cell;
+ font-weight: bold;
+ padding-right: 10px;
+}
+[dir='rtl'] .issues-option-title {
+ padding-right: 0;
+ padding-left: 10px;
+}
+.issues-option label {
+ display: table-cell;
+ padding: 0 10px;