:root {
  --message-text-font-family: "Blasphemous II";
  --message-text-font-size: 1rem;

  --message-description-font-family: "Blasphemous II";
  --message-description-font-size: 1rem;

  --message-success-color: #51a351;
  --message-success-bar-color: #162e16;

  --message-info-color: #2f96b4;
  --message-info-bar-color: #154552;

  --message-alert-color: #b42f2f;
  --message-alert-bar-color: #521515;

  --pixelFont: "Blasphemous II";
}

.marker-editor-bg {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 75%);
  animation: fadeIn 0.25s;
  -webkit-animation: fadeIn 0.25s;
  -moz-animation: fadeIn 0.25s;
  -o-animation: fadeIn 0.25s;
  -ms-animation: fadeIn 0.25s;
  z-index: 3001;
}
.marker-editor-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 580px;
  height: auto;
  max-height: 80vh;
  overflow: auto;
  margin: auto;
  z-index: 3005;
  animation: fadeIn 0.25s;
  -webkit-animation: fadeIn 0.25s;
  -moz-animation: fadeIn 0.25s;
  -o-animation: fadeIn 0.25s;
  -ms-animation: fadeIn 0.25s;
  display: block;
}
.screen {
  width: 100%;
  overflow: auto;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #0e0e0e;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.marker-edit .debug {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: #adff2f;
  font-size: 12px;
}
.marker-edit .debug .info:last-child{
  margin-left: 15px;
}
.marker-edit .error {
  display: none;
  background-color: #a32929;
  color: #fff;
  padding: 2px 16px;
  border-radius: 3px;
  text-shadow: 0 1px 1px #000;
  font-weight: 500;
  font-size: 14px;
  z-index: 3006;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  width: 300px;
  top: 10px;
  left: 0;
  right: 0;
}
.marker-edit .marker-edit-header,
.marker-remove-wrapper .marker-remove-header,
.delete-category-wrapper .marker-remove-header {
  display: flex;
  font-family: var(--pixelFont);
  font-size: 1.5rem;
  color: #f5f5f5;
  padding: 12px 16px 10px;
  background-color: #121212;
}
.marker-edit .close {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 16px;
  height: 16px;
  background: 0 0;
  background-image: url(../../assets/images/close.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  z-index: 3001;
}
.marker-edit .close:hover {
  background-image: url(../../assets/images/close-hover.png);
}
.marker-edit .marker-edit-content {
  display: flex;
  flex-direction: column;
  padding: 0;
  font-family: var(--pixelFont);
}

.marker-edit .section-title {
  display: flex;
  background-color: #191c20;
  color: #d5d5d5;
  font-family: var(--pixelFont);
  font-size: 14px;
  align-items: center;
  padding: 5px 10px;
}

.marker-edit .marker-category-title {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2px 5px 2px;
  margin: 5px 0;
  font-family: var(--pixelFont);
  font-size: 1rem;
  color: #f5f5f5;
  border: 1px solid #222222;
  border-radius: 2px;
  cursor: pointer;
}
.marker-edit .icon-selection-content {
  font-family: var(--pixelFont);
  margin-top: 5px;
}
.delete-category-wrapper,
.marker-remove-wrapper {
  height: 125px;
  width: 280px;
  overflow: auto;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3001;
  animation: fadeIn 0.25s;
  -webkit-animation: fadeIn 0.25s;
  -moz-animation: fadeIn 0.25s;
  -o-animation: fadeIn 0.25s;
  -ms-animation: fadeIn 0.25s;
  box-shadow: rgb(0 0 0 / 25%) 0px 13px 27px -5px, rgb(0 0 0 / 30%) 0px 8px 16px -8px;
}
.delete-category-wrapper .buttons,
.marker-remove-wrapper .buttons {
  display: flex;
  justify-content: center;
  margin: 1rem;
}
.delete-category-wrapper .center,
.marker-remove-wrapper .center {
  justify-content: center;
}
.delete-category-wrapper .ui-button,
.marker-remove-wrapper .ui-button {
  background-color: #383838;
  color: #f5f5f5;
  font-size: 16px;
  font-family: var(--pixelFont);
  padding: 5px 15px;
  border: none;
  transition: 0.5s all;
}
.delete-category-wrapper .ui-button:hover,
.marker-remove-wrapper .ui-button:hover {
  background-color: #2c2c2c;
}
.marker-edit .save-marker.ui-button {
  background: #289b2d;
  color: #fff;
}
.marker-edit .save-marker.ui-button:hover {
  background: #1f7a23;
}
.marker-edit .remove-marker.ui-button,
.delete-category-wrapper .ui-button.delete-category-confirm
.marker-remove-wrapper .ui-button.remove-marker-confirm {
  background-color: #a32929;
  color: #fff;
}
.marker-edit .remove-marker.ui-button:hover,
.delete-category-wrapper .ui-button.delete-category-confirm:hover,
.marker-remove-wrapper .ui-button.remove-marker-confirm:hover {
  background: #ad1f23;
}
.marker-edit .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  background: #121212;
  padding: 10px 16px;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
}
.marker-edit .buttons .ui-button:nth-child(2) {
  margin-left: auto;
}
.marker-edit .buttons .ui-button:last-child {
  margin-left: 10px;
}
.marker-editor-wrapper .ui-button {
  background-color: #383838;
  color: #f5f5f5;
  font-size: 1.2rem;
  font-family: var(--pixelFont);
  padding: 5px 15px;
  border: none;
}
.marker-editor-wrapper .ui-button:hover {
  background-color: #2c2c2c;
}
.marker-remove-wrapper .ui-button:last-child {
  margin-left: 10px;
}
.marker-edit .row-wrapper {
  display: flex;
  width: 100%;
}
.row-wrapper > .field,
.row-wrapper > .row-wrapper {
  flex: 1;
  min-width: 0;
}
.marker-edit .field-wrapper {
  position: relative;
}
.marker-edit .field-wrapper .field-button {
  margin: 0.5rem;
}
.marker-edit .field.category-select {
  flex-shrink: 0;
}
.marker-edit .field.marker-icon-select {
  width: 128px;
  margin-left: 0;
  margin-right: 0;
  max-width: 128px;
}
.marker-edit .field.marker-icon-select button {
  margin: 0 0.5rem;
}
.marker-edit .info-text {
  display: flex;
  justify-content: space-between;
}
.marker-edit input {
  padding: 2px 5px 2px;
  font-size: 1rem;
  font-family: var(--pixelFont);
  color: #f5f5f5;
  border: 1px solid #222222;
  border-radius: 2px;
}
.marker-edit .field input {
    margin: 5px 0;
    box-sizing: border-box;
}
.marker-edit .title-input {
  padding: 0 8px;
}
.marker-edit .title-input.relative {
  position: relative;
}
.marker-edit input.red-border {
  border-color: rgb(229 87 87);
}


.image-block {
  padding: 0.5rem;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #232428;
}

.image-block-header {
  color: #fff;
  font-size: 1rem;
}

.image-block-left {
  flex: 1;
  position: relative;
  box-sizing: border-box;
}

.image-block-right {
  width: 100px;
  height: 50px;
  border: 1px solid #2e2e2e;
  background: #000000;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.image-block-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-block .remove-btn {
  background: url(../../assets/images/close.png);
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  color: white;
  padding: 0;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  position: absolute;
  top: -5px;
  right: -113px;
  width: 20px;
  height: 20px;
  background-size: contain;
}
.image-block .remove-btn:hover {
  background: url(../../assets/images/close-hover.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.error-box {
  background: #ffeded;
  color: #c0392b;
  padding: 2px 6px;
  font-size: 14px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 30%;
  display: none;
}

.add-image-button {
  width: fit-content;
  margin: 0.5rem auto;
}




.marker-edit .field {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background-color: #191c20;
  padding-bottom: 0px;
  margin: 0.5rem 0.5rem 0;
  min-height: 64px;
}

.field.icon-select {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  padding: 8px 8px;
  margin-left: 0px;
  cursor: pointer;
  max-width: 64px;
}

.field.icon-select .marker-icon {
  display: flex;
  padding: 5px 8px 6px;
}
.field.icon-select .marker-icon {
  width: 48px;
  height: 48px;
  padding: 2px;
  background-color: #121212;
  background-size: contain;
  border: 1px solid #303238;
}
.field.icon-select .marker-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  margin: 0 auto;
}

.field input.marker-title {
  background-color: #0a0705;
  border: 1px solid #6d4d28;
  color: #af966f;
  min-height: 26px;
  padding: 2px 5px;
  font-size: 14px;
}
.marker-edit .title {
  display: flex;
  color: #d5d5d5;
  font-family: var(--pixelFont);
  font-size: 1rem;
  align-items: center;
  padding: 5px 10px;
  border-bottom: 1px solid #232428;
}
.padding-0-10 {
  padding: 0 10px;
}
.margin-5-8 {
  margin: 5px 8px;
}

.field-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  height: 28px;
  padding: 0 16px;
}
.field-toggle:hover {
  background-color: #2e3137;
}
.field-toggle.active {
  background-color: #1b2532;
  margin-bottom: 0px;
}
.field-toggle:after {
  content: "";
  background: 0 0;
  background-image: url(../../assets/icons/plus-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  transition: background-image .5s;
}
.field-toggle.active:after {
  background-image: url(../../assets/icons/minus-red.svg);
}

.marker-editor-wrapper .category-list .category-list-items {
  list-style: none;
  font-size: 14px;
  color: #f5f5f5;
  padding: 0;
  margin: 0;
  border: 1px solid #222222;
  border-radius: 2px;
  max-height: 180px;
  overflow-y: scroll;
  position: absolute;
  z-index: 100;
  background-color: #131313;
  width: max-content;
  min-width: 334px;
}

.marker-editor-wrapper .center {
  justify-content: center;
}
.marker-edit input.icon-list-finder {
  font-family: var(--pixelFont) !important;
  font-size: 1.25rem;
}
.marker-edit .default-icons {
  padding: 0 0.5rem;
}
/* Hide icon search */
/* 
.marker-edit input.icon-list-finder {
  display: none;
} */

.marker-edit .category-list .category {
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid #303238;
  color: #d5d5d5;
  padding: 2px 10px;
  margin: 0;
  cursor: pointer;
  width: 100%
}
.marker-edit .category-list .category:hover {
  background-color: #202019;
  color: #ecbd31;
}
.marker-edit .category-list .category.selected {
  background-color: #202019;
  color: #ff9800;
}

.icon-selection .title {
  padding: 5px 10px;
  text-align: center;
}
.icon-list-finder {
  margin: 0.375rem 0;
}
.icon-list.names {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px, 1fr ));
  grid-template-rows: repeat(auto-fill, 50px);
  border: 1px solid #303238;
  max-height: 246px;
  min-height: 246px;
  overflow-y: auto;
  margin-bottom: 0.5rem;
}
.icon-list.icons-only {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(60px,60px));
  border: 1px solid #303238;
  max-height: 246px;
  overflow-y: auto;
  margin-bottom: 0.5rem;
}
.icon-list .icon-block {
  display: flex;
  align-items: center;
  margin-bottom: -1px;
  border: 1px solid #303238;
  cursor: pointer;
  max-height: 60px;
}
.icon-list .icon-block.selected,
.icon-list .icon-block:hover {
  background-color: #171717;
}
.icon-list .icon-block.selected {
  animation-name: anim;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
  background-color: #171717;
}
.icon-list .icon-block .icon {
  display: flex;
  padding: 8px;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
}
.icon-list .icon-block .icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  margin: 0 auto;
}
.icon-list .icon-block .icon-name {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px 5px;
  margin: 0;
  width: 100%;
  min-height: 32px;
  text-transform: capitalize;
  word-wrap: break-word;
  text-align: center;
  color: #fff;
  font-family: var(--pixelFont) !important;
  font-size: 1rem;
}
.icon-block.toggle.filtered {
  display: none;
}
.icon-selection .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@keyframes anim {
  to {
    background-color: #444444;
  }
}
@keyframes anim-half {
  50% {
    background-color: #707070;
  }
}

.marker-text-block {
  border-top: 1px solid #393b42;
}
.marker-text-block.active {
  opacity: 1;
}

.marker-edit .toastui-editor-defaultUI .ProseMirror {
  padding: 10px 10px;
  font-family: var(--pixelFont);
  font-size: 1.4rem;
}
.marker-edit .toastui-editor-defaultUI-toolbar {
  background-color: #1e1e1e;
  border-bottom-color: #303238;
  padding: 0;
  width: 108%;
  height: 42px;
}
.marker-edit .toastui-editor-toolbar {
  overflow: hidden;
}
.marker-edit .toastui-editor-toolbar {
  background-color: #232428;
  height: auto;
  display: flex;
  flex-direction: column-reverse;
}
.marker-edit .toastui-editor-defaultUI-toolbar button {
  background-color: #161616;
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
  height: 32px;
  margin: 4px 5px;
  padding: 0;
  width: 32px;
}
.marker-edit .toastui-editor-md-tab-container .toastui-editor-tabs {
  height: 100%;
  margin-left: -1px;
  display: flex;
}
.marker-edit .toastui-editor-defaultUI .toastui-editor-md-tab-container {
  height: 30px;
}
.marker-edit .toastui-editor-md-tab-container .tab-item {
  width: 95px;
}
.marker-edit .toastui-editor-md-tab-container .toastui-editor-tabs .tab-item {
  margin-top: -3px;
}
.marker-edit .toastui-editor-popup-add-image .toastui-editor-tabs .tab-item:first-child {
  display: none;
}
.marker-edit .toastui-editor-defaultUI {
  border: none;
}
.marker-edit .toastui-editor-dark .toastui-editor-mode-switch {
  background: 0 0;
  top: -25px;
  right: 0;
}
.marker-edit .toastui-editor-popup-body input[type="text"].tui-colorpicker-palette-hex {
  width: 90px;
}
.marker-edit .toastui-editor-popup-color .tui-colorpicker-container ul {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(16px,1fr));
}
.marker-edit .toastui-editor-popup-color .tui-colorpicker-container li {
  display: flex;
  width: 100%;
  height: 100%;
}
.marker-edit .toastui-editor-popup-color button {
  height: 24px;
  width: 48px;
  top: 87px;
  right: 15px;
  padding: 0;
}
.marker-edit .toastui-editor-popup-color .tui-colorpicker-container .tui-colorpicker-palette-preview {
  margin-top: 4px;
  margin-left: -20px;
  user-select: none;
}
/* MAP SELECTION*/
.marker-edit .field.map-selection {
  flex-shrink: 0;
  box-sizing: border-box;
}
.marker-edit .map-selection-blocks {
  display: flex;
  flex-wrap: nowrap;

}
.marker-edit .map-selection-blocks.active {
  display: flex;
  pointer-events: all;
  opacity: 1;

}
.marker-edit .map-block {
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  height: 110px;
  position: relative;
  width: 100%;
  transition: 0.5s all;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  border: 2px solid transparent;
  cursor: pointer;
}
.map-block.selected {
  border: 2px solid #c19d53;
  filter: grayscale(0) saturate(125%);
  -webkit-filter: grayscale(0) saturate(125%);
  -moz-filter: grayscale(0) saturate(125%);
  z-index: 10;
}
.map-block .map-name {
  position: absolute;
  bottom: 3px;
  left: 5px;
  color: #fff;
  font-family: var(--pixelFont);
  font-size: 12px;
  z-index: 1;
}
.input-hidden {
  position: absolute;
  left: -9999px;
}
.editor-toolbar {
  display: flex;
  width: 100%;
  background: #080705;
  padding: 0;
  border: none;
}
.editor-toolbar h3 {
  margin: 0 0 20px 0;
  font-size: 30px;
  color: #2e3641;
}
.editor-toolbar input[type="text"] {
  padding-left: 15px;
  width: 100%;
  height: 45px;
  border: 1px solid #4d3922;
  box-shadow: inset 0 0 3px #4d3922;
  outline: 0;
  font-size: 24px;
  color: #f5f2d5;
  margin-bottom: 20px;
}
.editor-toolbar button {
  width: 100%;
  height: 45px;
  background: #080705;
  border: none;
  border-right: 1px solid #4d3922;
  color: #f5f2d5;
  outline: 0;
  border-radius: 0;
}
.editor-toolbar button:first-child {
  border-left: none;
}
.editor-toolbar button:last-child {
  border-right: none;
}
.editor-toolbar button.active,
.editor-toolbar button:hover {
  background: #6d4d28;
  color: #f5f2d5;
  border-color: transparent;
}
.editor-toolbar .text-color {
  display: flex;
  align-items: center;
  height: 45px;
  background: #080705;
  border: none;
  color: #f5f2d5;
  outline: 0;
  gap: 8px;
  padding: 0 8px;
}
.editor-toolbar:after {
  content: "";
  display: block;
  clear: both;
}
.edit-block.text .editor {
  min-height: 80px;
  width: 100%;
  resize: none;
  outline: 0;
  padding: 15px;
  box-sizing: border-box;
  background: #080705;
  color: #af966f;
}
.editor-toolbar .editor .saved {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  background: #080705;
  font-weight: normal;
  border-top-left-radius: 15px;
}
.editor-toolbar .buttons {
  float: right;
}
.editor-toolbar .buttons button {
  float: left;
  width: 120px;
  height: 45px;
  border: none;
  color: #fff;
  text-transform: uppercase;
  outline: 0;
  margin-right: 20px;
  font-weight: normal;
  background: #080705;
  text-decoration: none;
}
.editor-toolbar .buttons button:last-of-type {
  margin-right: 0;
  background: #f97e76;
}
.editor-toolbar .buttons button:last-of-type:hover {
  background: #fa958e;
}
.editor-toolbar .buttons button:active {
  box-shadow: inset 0 4px rgba(0, 0, 0, 0.05);
}
.editor-toolbar .buttons button:hover {
  background: #080705;
}
.editor-toolbar .buttons:after {
  content: "";
  display: block;
  clear: both;
}
.editor-toolbar:after {
  content: "";
  display: block;
  clear: both;
}
.editor .icon {
  vertical-align: middle;
}
.icons-wrapper {
  margin: 50px auto;
  width: 100%;
  max-width: 800px;
  min-width: 480px;
  background: #2b190c;
  display: flex;
  flex-wrap: wrap;
}
.icons-wrapper .icon {
  width: 64px;
  height: 64px;
}
.icons-wrapper .icon img {
  width: 100%;
}
.marker-edit-control {
  cursor: pointer;
  background-image: url(../../assets/icons/map-marker-edit-off.svg);
  /*../../assets/icons/*/
}
.marker-edit-control.active {
  background-image: url(../../assets/icons/map-marker-edit-on.svg);
}

/** Block Multi Cards **/
.multi-cards {
  padding: 5px;
}
.multi-cards .select-options {
  display: flex;
}

.multi-cards .select-options .option {
  display: flex;
  flex-direction: column;
  width: calc(100% * (1/5));
  align-items: center;
  color: #fff;
  position: relative;
  cursor: pointer;
  background: #0b0b0b;
}
.multi-cards .select-options .option.selected {
    background-color: #1b2532;
}
.multi-cards .select-options .option:hover {
  background-color: #1b2532;
}

.multi-cards .select-options .option i {
  display: flex;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 10px;
  opacity: 0.5;
}
.multi-cards .select-options .option.selected i {
  opacity: 1
}
.multi-cards .select-options .option .name {
  padding: 2px 8px 8px;
  opacity: .7;
}
.multi-cards .select-options .option.selected .name {
  opacity: 1;
}
.multi-cards .select-options .option .option-toggle {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 4px;
  top: 5px;
  background-image: url(../../assets/icons/plus-green.svg);
  opacity: .5;
  margin: 0;
}
.multi-cards .select-options .option.selected .option-toggle {
  background-image: url(../../assets/icons/minus-red.svg);
  opacity: .5;
  display: none;
}
.multi-cards .select-options .option:hover .option-toggle {
  display: flex;
  opacity: 1;
}

.multi-cards .select-options .option:hover > i {
  opacity: 1;
}
.multi-cards .select-options .option:hover > .name {
  opacity: 1;
}
/****/

/* Input Block */
.marker-edit .field .blocks .block-input {
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.marker-edit .block-multiple-input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.marker-edit .field .blocks {
    display: flex;
}

.marker-edit .field .blocks input {
    width: 100%;
}
.marker-edit .block-input i {
  display: flex;
  width: 26px;
  height: 26px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
  flex-shrink: 0;
}
.marker-edit .block-input i.delete-entry {
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #ff5722;
  cursor: pointer;
  display: none;
}
.marker-edit .block-input i.delete-entry:hover {
  color: #ff2222;
}
.marker-edit .block-input label {
  color: #fff;
  margin-right: 6px;
  flex-shrink: 0;
}
.marker-edit .block-input-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 140px;
  overflow-y: auto;
  margin-top: 5px;
}
.marker-edit .list-input {
  display: flex;
  align-items: center;
  padding-right: 25px;
}
.marker-edit .list-input:hover {
  background: #1b2532;
}
.marker-edit .block-multiple-input .block-amount {
    width: 30px;
}
.marker-edit .field input.block-amount {
  margin: 2px 0;
  text-align: center;
}
.marker-edit .field input.block-text {
  margin: 2px 0px;
}
.marker-edit .list-input-content {
  display: flex;
  padding-right: 5px;
  width: 100%;
  position: relative;
}
.marker-edit .block-input .block-input-amount {
    width: 50px;
}
.marker-edit .block-input .remove-list-item {
  display: none;
  background-image: url(../../assets/icons/minus-red.svg);
  width: 16px;
  height: 16px;
}
.marker-edit .block-input .list-input:hover .remove-list-item {
  display: flex;
  position: absolute;
  right: 30px;
  cursor: pointer;
}

.marker-edit .block-multiple-input .add-input {
  display: flex;
  width: auto;
  color: #d5d5d5;
  font-family: var(--pixelFont);
  font-size: 13px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  cursor: pointer;
  margin: 5px auto;
  box-sizing: border-box;
  box-shadow: 0px 2px 1px #0a0a0a;
  background-color: #2e3137;
}
.block-input .add-input:hover,
.block-multiple-input .add-input:hover {background-color: #1b2532;box-shadow: 0px 0px 1px #0a0a0a;}
.block-input .add-input:after,
.block-multiple-input .add-input:after {
  content: "";
  background: 0 0;
  background-image: url(../../assets/icons/plus-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  transition: background-image .5s;
  margin-left: 5px;
}

.block-input-list .list-input .remove-list-item {
  display: none;
  width: 16px;
  height: 16px;
  background-image: url(../../assets/icons/minus-red.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 25px;
  cursor: pointer;
}
.block-input-list .list-input:hover .remove-list-item {
  display: flex;
}

/* Single Option Block*/
.single-option .selected-single-option {
  display: flex;
  min-height: 20px;
  cursor: pointer;
}
.single-option .selected-single-option .single-item {
  display: flex;
  align-items: center;
  padding: 2px 10px;
  cursor: pointer;
  margin: 1px 0;
  width: 100%;
}

.single-option .selected-single-option .single-item .item-content {
  display: flex;
  width: calc(100% - 28px);
  color: #d5d5d5;
  font-family: var(--pixelFont);
  font-size: 12px;
  align-items: center;
  margin-right: 8px;
}
.single-option .selected-single-option .single-item .item-content i {
  display: flex;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.single-option .selected-single-option .single-item .item-content i.fa-circle {
  margin-right: 0;
  padding-top: 1px;
  font-size: 5px;
  color: #d5d5d5;
}

.single-option .options-list-title {
  display: flex;
  color: #d5d5d5;
  font-family: var(--pixelFont);
  font-size: 14px;
  align-items: center;
  padding: 5px 10px;
  background-color: #1b2532;
  justify-content: space-between;
}

.single-option .close-single-options-list {
  background: 0 0;
  background-image: url(../../assets/icons/close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  transition: background-image .5s;
  margin-left: 5px;
  cursor: pointer;
}

.single-option .options-list {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-family: var(--pixelFont);
  color: #f5f5f5;
  padding: 0;
  margin: 0;
  border: 1px solid #222222;
  border-radius: 2px;
  max-height: 130px;
  overflow-y: scroll;
  background-color: #131313;
  width: 100%;
}

.single-option-list .single-option-item {
  display: flex;
  color: #d5d5d5;
  font-family: var(--pixelFont);
  font-size: 12px;
  align-items: center;
  padding: 2px 10px;
  cursor: pointer;
  margin: 1px 0;
  background-color: #0a0b0d;
}
.single-option-list .single-option-item:hover {
  background-color: #191c20;
  color: #ffc107;
}
.single-option-item.selected {
  background-color: #191c20;
  color: #ffc107;
}

.single-option-list .single-option-item i {
  display: flex;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
  align-items: center;
  justify-content: center;
}


/* List Items Block */
.list-items {
  min-height: 160px;
  position: relative;
}
.list-items .add-list-item {
  display: flex;
  width: auto;
  color: #d5d5d5;
  font-family: var(--pixelFont);
  font-size: 13px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  cursor: pointer;
  margin: 5px auto;
  box-sizing: border-box;
  box-shadow: 0px 2px 1px #0a0a0a;
  background-color: #2e3137;
}
.list-items .add-list-item:hover {
    background-color: #1b2532;
    box-shadow: 0px 0px 1px #0a0a0a;
}
.list-items .add-list-item:after {
  content: "";
  background: 0 0;
  background-image: url(../../assets/icons/plus-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  transition: background-image .5s;
  margin-left: 5px;
}
.list-items .list-items-options {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.list-items .options-list-title {
  display: flex;
  color: #d5d5d5;
  font-family: var(--pixelFont);
  font-size: 14px;
  align-items: center;
  padding: 5px 10px;
  background-color: #1b2532;
  justify-content: space-between;
}

.list-items .close-options-list {
  background: 0 0;
  background-image: url(../../assets/icons/close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  transition: background-image .5s;
  margin-left: 5px;
  cursor: pointer;
}



.list-items .options-list {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-family: var(--pixelFont);
  color: #f5f5f5;
  padding: 0;
  margin: 0;
  border: 1px solid #222222;
  border-radius: 2px;
  max-height: 130px;
  overflow-y: scroll;
  background-color: #131313;
  width: 100%;
}

.list-items .options-list .list-option {
  display: flex;
  color: #d5d5d5;
  font-family: var(--pixelFont);
  font-size: 12px;
  align-items: center;
  padding: 2px 10px;
  cursor: pointer;
  margin: 1px 0;
  background-color: #0a0b0d;
}
.list-items .options-list .list-option:hover {
  background-color: #191c20;
  color: #ffc107;
}

.list-items .options-list .list-option i {
  display: flex;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
  align-items: center;
  justify-content: center;
}
.list-items .options-list .list-option i.fa-circle {
  margin-right: 0;
  padding-top: 1px;
  font-size: 5px;
  color: #d5d5d5;
}

.list-items .list-icon {
  display: flex;
  flex-direction: column;
}

.list-items .list-icon .list-item {
  display: flex;
  align-items: center;
  padding: 2px 10px;
  cursor: pointer;
  margin: 1px 0;
}
.list-items .list-icon .list-item:hover {
  background-color: #1b2532;
}


.list-items .list-icon .list-item .list-item-content {
  display: flex;
  width: calc(100% - 28px);
  color: #d5d5d5;
  font-family: var(--pixelFont);
  font-size: 12px;
  align-items: center;
  margin-right: 8px;
}

.list-items .list-icon .list-item .list-item-content i {
  display: flex;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
  align-items: center;
  justify-content: center;
}
.list-items .list-icon .list-item .list-item-content .none {
  display: none;
}
.list-items .list-icon .list-item .list-item-content i.fa-circle {
  margin-right: 0;
  padding-top: 1px;
  font-size: 5px;
  color: #d5d5d5;
}

.list-items .list-icon .list-item .remove-list-item {
  display: none;
  width: 16px;
  height: 16px;
  background-image: url(../../assets/icons/minus-red.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.list-items .list-icon .list-item:hover .remove-list-item {
  display: flex;
}

.share-button {
  background-color: #333;
  color: #fff;
  padding: 5px 8px;
  font-size: 15px;
  cursor: pointer;
}


/* Tabs */

.tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 0.5rem;
  flex-wrap: wrap;
}
.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 420px) {
  .leaflet-popup-content {
    max-width: 320px;
  }
}

@media (max-width: 420px) {
  .tabs {
    grid-template-columns: 1fr;
  }
}
.tabs li {
  background-color: #191c20;
  color: #ECF0F1;
  display: flex;
  padding: 0.5rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.875rem;
  cursor: pointer;
}
.tabs li:hover {
  background-color: #433a1d;
}
.tabs li.active {
  background-color: #433a1d;
  color: #fff;
}

.tab {
  display: none;
  flex-direction: column;
  animation: fadeIn 1s;
  -moz-animation: fadeIn 1s; /* Firefox */
  -webkit-animation: fadeIn 1s; /* Safari and Chrome */
  -o-animation: fadeIn 1s; /* Opera */
}
.tab.active {
  display: flex;
  opacity: 1;
  max-height: 700px;
  overflow-y: auto;
  height: 100%;
  min-height: 380px;
}

.cloned-marker-info {
  display: none;
  width: 300px;
  height: fit-content;  
  overflow: auto;
  margin: 0 auto;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 3005;
  animation: fadeIn 0.25s;
  -webkit-animation: fadeIn 0.25s;
  -moz-animation: fadeIn 0.25s;
  -o-animation: fadeIn 0.25s;
  -ms-animation: fadeIn 0.25s;
  box-shadow: rgb(0 0 0 / 25%) 0px 13px 27px -5px, rgb(0 0 0 / 30%) 0px 8px 16px -8px;
  display: inline-table;
  color: #fff;
  background-color: #080705;
  border-radius: 3px;
}
.cloned-marker-info .cloned-marker-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px; 
  font-size: 16px;
  border-bottom: 1px solid #4e4e4e;
}
.cloned-marker-info .block {
  display: flex;
  align-items: center;
  padding: 5px;
  
}
.cloned-marker-info .block .marker-image {
  display: flex;
  width: 36px;
  height: 36px;
  padding: 5px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.cloned-marker-info .block .marker-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  margin: 0 auto;
}
.cloned-marker-info .block .marker-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cloned-marker-info .marker-details .marker-title {
  color: #fff;
  overflow: hidden;
  width: 200px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.cloned-marker-info  .marker-details .marker-category {
  color: #fff;
}

/* Message Box */
.message-box {
  display: none;
  position: fixed;
  top: 120px;
  right: 7px;
  z-index: 550;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  
}
.message {
  display: flex;
  display: none;
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 60px;
  width: 300px;
  min-height: 80px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-position: 10px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999;
  -webkit-box-shadow: 0 0 12px #999;
  box-shadow: 0 0 12px #999;
  color: #fff;
  opacity: 9;
  box-sizing: border-box;
  background-size: 32px;
  flex-direction: column;
  justify-content: center;
}
.message i {
  position: absolute;
  left: 11px;
  font-size: 28px;
  width: 36px;
  text-align: center;
}
.message .progressbar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background-color: #000;
  opacity: 0.4;
}
.message.success {
  background-color: var(--message-success-color);
  box-shadow: 0 0 12px var(--message-success-bar-color);
}
.message.info {
  background-color: var(--message-info-color);
  box-shadow: 0 0 12px var(--message-info-bar-color);
}
.message.alert {
  background-color: var(--message-alert-color);
  box-shadow: 0 0 12px var(--message-alert-bar-color);
}
.message .message-text {
  font-family: var(--pixelFont);
  font-size: 14px;
  line-height: 20px;
}

.message .message-text {
  font-family: var(--pixelFont);
  font-size: 1.2rem;
  line-height: 20px;
}
.message .message-description {
  font-family: var(--pixelFont);
  font-size: 1rem;
  line-height: 20px;
}
.hidden {
  display: none !important;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}