@import url("https://fonts.googleapis.com/css?family=Open+Sans");
.map-wrapper {
  height: 800px;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.map-svg {
  max-width: calc(100% - 225px);
  height: 100%;
  overflow: auto;
  border: 1px solid #ccc;
}

.map-controls {
  display: flex;
  flex-direction: column;
  width: 225px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  overflow: hidden;
  align-self: flex-start;
  box-sizing: border-box;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.map-controls > button {
  font-family: "Open Sans", "Arial";
  box-sizing: border-box;
  padding: 10px;
  color: rgba(8, 50, 43, 0.86);
  box-sizing: border-box;
  font-size: 12px;
  border-top: none;
  border-right: none;
  border-left: none;
  background: #fafafa;
  border-bottom: 1px solid #ccc;
  outline: none;
  overflow: hidden;
}
.map-controls > button:hover {
  background-color: #ececec;
  cursor: pointer;
}

.color-picker {
  display: none;
  border-bottom: 1px solid #ccc;
}
.color-picker.open {
  display: block;
}
.color-picker .chrome-picker {
  box-shadow: none !important;
}

.width-picker {
  display: none;
  height: 80px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid #ccc;
}
.width-picker.open {
  display: flex;
}
.width-picker span {
  font-size: 14px;
  color: rgba(8, 50, 43, 0.86);
  font-weight: bold;
  margin-bottom: 10px;
}
.width-picker .slider {
  width: 100%;
  border-radius: 4px;
  height: 10px;
  background-color: #fafafa;
  border: 1px solid #bababa;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.width-picker .handle {
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background-color: #bababa;
  cursor: grab;
}

.icons-wrapper {
  display: none;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.icons-wrapper.open {
  display: flex;
}
.icons-wrapper .icons-select {
  font-family: "Open Sans", "Arial";
  font-size: 12px;
  color: rgba(8, 50, 43, 0.86);
  align-self: center;
}
.icons-wrapper .add-icon {
  display: flex;
  align-items: center;
}
.icons-wrapper .add-icon input {
  height: 24px;
  margin-right: 5px;
  border-radius: 2px;
  min-width: 0;
  border: 1px solid #ccc;
  box-sizing: border-box;
  width: 100%;
}
.icons-wrapper .add-icon button {
  height: 24px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
}

.tags-wrapper {
  display: none;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.tags-wrapper.open {
  display: flex;
}
.tags-wrapper .tags-select {
  font-family: "Open Sans", "Arial";
  font-size: 12px;
  color: rgba(8, 50, 43, 0.86);
  align-self: center;
}
.tags-wrapper .add-tag {
  display: flex;
  align-items: center;
}
.tags-wrapper .add-tag input {
  height: 24px;
  margin-right: 5px;
  border-radius: 2px;
  min-width: 0;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.tags-wrapper .add-tag button {
  height: 24px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
}
.tags-wrapper .tag {
  background-color: #125a12;
  box-sizing: border-box;
  display: flex;
  border-radius: 4px;
  align-self: flex-start;
  overflow: hidden;
  margin-bottom: 5px;
}
.tags-wrapper .tag .name {
  padding: 5px 10px;
  color: white;
  font-family: "Open Sans", "Arial";
  font-size: 12px;
}
.tags-wrapper .tag .close {
  padding: 5px;
  background-color: #0f470f;
  color: white;
  font-family: "Open Sans", "Arial";
  font-size: 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  border: none;
  outline: none;
}
.tags-wrapper .tag .close:hover {
  background-color: #0c3a0c;
}

.tag + .add-tag {
  margin-top: 20px;
}

.svg-icon {
  cursor: grab;
}

/*# sourceMappingURL=InteractiveMap.css.map */
