/* =============================================================================
								Geo Less
==============================================================================*/
.abcFieldMap {
  display: flex;
  padding: 0;
  margin-bottom: 0;
}
.abcFieldMap.abcFormat {
  overflow: hidden;
}
.abcFieldMap div.abcGeoMapList {
  display: none;
  width: 0;
}
.abcFieldMap.abcGeoMapEditor.abcGeoHasList div.abcGeoMapList {
  display: block;
  width: 20%;
  background: white;
}
.abcFieldMap .abcGeoMapToolBar {
  background: #708090;
  color: white;
  padding: .7rem;
}
.abcFieldMap .abcGeoMapToolBar .abcMapButton {
  font-family: 'Font Awesome 5 Pro';
  font-size: 1.5rem;
  margin: 0 .7rem;
}
.abcFieldMap.abcFullScreen .abcGeoMapField {
  height: 100%;
}
.abcFieldMap .abcGeoMapToolBar .abcGeoMapFullScreen:after {
  content: '\f31e';
}
.abcFieldMap.abcFullScreen .abcGeoMapToolBar .abcGeoMapFullScreen:after {
  content: '\f78c';
}
.abcFieldMap .abcGeoMapField {
  min-height: 420px;
  width: 100%;
  background: lavender;
}
.abcFieldMap.abcFormat .abcGeoMapField {
  min-height: unset;
  height: 100%;
}
.abcFieldMap.abcGeoMapEditor .abcGeoMapSearch {
  position: absolute;
  top: 12px;
  width: 60%;
  left: 32%;
  border: 1px solid gainsboro;
}
.abcFieldMap .abcMapButton {
  cursor: pointer;
}
.abcFieldMap.abcGeoMapEditor .abcGeoMapSearch .abcGeoMapSearchButton {
  position: absolute;
  right: 0;
  top: .3rem;
}
.abcFieldMap div.abcGeoMapList ul {
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-height: 100vh;
  list-style-type: none;
}
.abcFieldMap div.abcGeoMapList ul li {
  position: relative;
  min-height: 2.4rem;
  padding-top: .5rem;
}
.abcFieldMap div.abcGeoMapList ul li.abcActive {
  background: #ff7d00;
  color: white;
}
.abcFieldMap div.abcGeoMapList ul li:not(.abcActive):hover {
  background: lightblue;
  color: white;
}
.abcFieldMap div.abcGeoMapList .abcGeoElementType {
  position: absolute;
  right: .3rem;
  top: .3rem;
  font-size: 1rem;
  line-height: 1.6rem;
  vertical-align: middle;
  width: 1.9rem;
  height: 1.9rem;
  padding: .2rem;
  background: lightgrey;
  text-align: center;
  border-radius: 50%;
}
.abcFieldMap div.abcGeoMapList .abcGeoElementType:hover {
  background: #ff7d00;
  cursor: pointer;
}
.abcFieldMap div.abcGeoMapList .abcGeoElementType:before {
  font-family: 'Font Awesome 5 Pro';
}
.abcGeoMapFieldContainer .abcWrapper {
  height: 100%;
}
.abcGeoMapTypeToggle.point:before,
.abcGeoElementType.point:before {
  content: '\f3c5';
}
.abcGeoMapTypeToggle.line:before,
.abcGeoElementType.line:before {
  content: '\f089';
}
.abcGeoMapTypeToggle.polygon:before,
.abcGeoElementType.polygon:before {
  content: '\f005';
}
.abcScrollPageSection .abcGeoMapFieldContainer,
.abcScrollPageSection .abcGeoMapFieldContainer .abcGeoMap {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
