
.map-search {
    margin-bottom: 10px;
}

.map-search:after {
    display: block;
    content: " ";
    clear: both;
}

.map-widget button.search {
    min-width: 120px;
    float: right;
    margin-top: 0;
}

.map-widget .map-search input.input-text {
    min-width: 500px;
}

.map-widget .map-loader {
    text-align: center;
    padding: 30px;
}

.map-area {
    height: 300px;
}

.map-widget {
    position: relative;
  }

  .map-editor * {
    box-sizing: border-box;
  }

  .map-editor {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #33333388;
  }

  .map-editor__wrapper {
    width: 300px;
    padding: 24px;
    position: relative;

    background-color: #fff;
    border: 1px solid #b9b9b9;
    border-radius: 4px;
  }

  .map-editor__title {
    margin: 0 0 16px;
  }

  .map-editor__form {
    display: flex;
    flex-direction: column;
  }

  .map-editor__label {
    width: 100%;
    margin-bottom: 16px;
  }

  .map-editor__input {
    float: right;
    min-height: 32px;
    min-width: 100px;
    padding: 0px 12px;

    background-color: transparent;
    border: 2px solid #cccccc;
    transition: .3s;
  }
  .map-editor__input:focus,
  .map-editor__input:focus-visible {
    border-color: #0089ec;
  }

  .map-editor__btn {
    margin: 0 0 16px;
    padding: 4px 8px;

    background-color: #31a20588;
    border: 1px solid #b9b9b9;
    border-radius: 4px;
    cursor: pointer;
    transition: .3s;
  }

  .map-editor__btn:last-child {
    margin-bottom: 0;
  }
  .map-editor__btn:hover {
    background-color: #31a205aa;
    border-color: #cccccc;
  }
  .map-editor__btn--delete {
    background-color: rgba(255, 0, 0, 0.53);
  }
  .map-editor__btn--delete:hover {
    background-color: rgba(255, 0, 0, 0.67);
  }

  .map-editor__close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;

    border-radius: 4px;
    transition: .3s;
    cursor: pointer;
  }

  .map-editor__close:hover {
    background-color: #33333333;
  }

  .map-editor__close:before,
  .map-editor__close:after {
    content: '';
    position: absolute;
    top: 7px;
    display: block;
    width: 16px;
    height: 2px;
    background-color: #333333;
  }

  .map-editor__close:before {
    transform: rotate(45deg);
  }

  .map-editor__close:after {
    transform: rotate(-45deg);
  }
