.mapsvg {
  /* set map height to 100px for a preloader message - */
  /* real height will be set later by MapSVG */
  height: 100px;
  position: relative;
  overflow: hidden;
}
.mapsvg-wrap-all {
  text-align: left;
  flex-grow: 1;
  box-sizing: border-box;
}
.mapsvg-wrap-all * {
  box-sizing: border-box;
}
.mapsvg-wrap {
  position: relative;
  box-sizing: border-box;
  max-width: 100% !important;
  margin: 0 !important;
}
.mapsvg-wrap *,
.mapsvg * {
  outline: none !important;
  touch-action: manipulation;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}
.mapsvg.mapsvg-responsive {
  width: 100%;
  height: auto;
}
.mapsvg text,
.mapsvg tspan {
  pointer-events: none;
}
.mapsvg svg {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*overflow: visible !important;*/
  max-width: none !important;
  max-height: none !important;

  /* width: 100%; */
  height: auto;
  /*height: 100vh;*/
  position: relative;
  -webkit-transition: transform 0.4s;
  -moz-transition: transform 0.4s;
  -ms-transition: transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
  transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  /* will-change: transform; */
}
.mapsvg svg:not([width]) {
  min-width: min-content;
}
.mapsvg svg:not([height]) {
  min-height: min-content;
}

.mapsvg-relative {
  position: relative !important;
}
.mapsvg-absolute {
  position: absolute !important;
}
.mapsvg-fixed {
  position: fixed !important;
}

/* SMOOTH TRANSITIONS */
.mapsvg.no-transitions *,
.no-transitions {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  /*transform-origin: 0% 0%;*/
  /*-webkit-transform-origin: 0% 0%;*/
}
.mapsvg-bubble {
  -webkit-transition: transform 0.4s;
  -moz-transition: transform 0.4s;
  -ms-transition: transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
}
.mapsvg-scrollpane {
  -webkit-transition: transform 0.4s;
  -moz-transition: transform 0.4s;
  -ms-transition: transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform-origin: 0 0;
}
.mapsvg-scrollpane-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.mapsvg-with-google-map.mapsvg-google-map-loading svg,
.mapsvg-with-google-map.mapsvg-google-map-loading .mapsvg-scrollpane {
  opacity: 0;
}
.mapsvg-google-map-loading.mapsvg-fade-in svg,
.mapsvg-google-map-loading.mapsvg-fade-in .mapsvg-scrollpane {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out !important;
  -moz-transition: opacity 0.3s ease-out !important;
  -ms-transition: opacity 0.3s ease-out !important;
  -o-transition: opacity 0.3s ease-out !important;
  transition: opacity 0.3s ease-out !important;
}

.mapsvg-with-google-map .mapsvg-scrollpane,
.mapsvg-with-google-map svg,
.mapsvg-with-google-map .mapsvg-popover,
.mapsvg-with-google-map .mapsvg-marker,
.mapsvg-with-google-map .mapsvg-marker-cluster {
  /*-webkit-transition: transform .00s ease-out;*/
  /*-moz-transition: transform .00s ease-out;*/
  /*-ms-transition: transform .00s ease-out;*/
  /*-o-transition: transform .00s ease-out;*/
  /*transition: transform .00s ease-out;*/
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-transition-property: none !important;
  transition-property: none !important;
  -webkit-animation: none !important;
}

.mapsvg-with-google-map.scrolling * {
  -webkit-transition-property: none !important;
  transition-property: none !important;
  /*!* These doesn't affect anything, but, just in case. *!*/
  -webkit-animation: none !important;
  animation: none !important;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.mapsvg.scrolling .mapsvg-scrollpane {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

.mapsvg.mapsvg-scrollable {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

/* (Optional) Apply a "closed-hand" cursor during drag operation. */
.mapsvg.scrolling {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

/* PRELOADER */
.mapsvg-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  padding: 7px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid #ccc;
  background: #f5f5f2;
  transform: translate(-50%, -50%);
  text-align: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  line-height: 11px;
}
.mapsvg-loading-text {
  display: inline-block;
  font-size: 12px !important;
  color: #999;
  font-family: "Helvetica", sans-serif;
}
.mapsvg-loading .spinner-border {
  display: inline-block;
  margin: 0 auto;
  color: #888;
  margin-right: 5px;
}

/* ZOOM BUTTONS */
.mapsvg-buttons {
  z-index: 2;
  position: absolute;
  margin: 10px;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mapsvg-buttons.right {
  right: 0;
}
.mapsvg-buttons.left {
  left: 0;
}
.mapsvg-btn-map,
.mapsvg-btn {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 2px;
  display: block;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  padding: 0;
}
.mapsvg-btn-map {
  box-shadow: 0 0 5px #999;
  overflow: hidden;
}
.mapsvg-btn-location {
  /*display: none;*/
  text-align: center;
  vertical-align: middle;
}
.mapsvg-btn-location svg {
  width: 12px;
  opacity: 0.7;
  pointer-events: none;
  display: block;
  margin: 0 auto;
  margin-top: 50%;
  transform: translateY(-50%);
}
.mapsvg-btn-zoom-reset {
  /*display: none;*/
  text-align: center;
  vertical-align: middle;
}
.mapsvg-btn-zoom-reset svg {
  width: 12px;
  opacity: 0.7;
  pointer-events: none;
  display: block;
  margin: 0 auto;
  margin-top: 50%;
  transform: translateY(-50%);
}
.mapsvg-btn-group {
  margin-bottom: 10px;
  box-shadow: 0 0 5px #999;
}
.mapsvg-btn-group > .mapsvg-btn-map {
  box-shadow: none;
}

.mapsvg-btn-map:hover,
.mapsvg-btn:hover {
  background-color: #f2f2f2;
}
.mapsvg-btn-map.mapsvg-in {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 1px solid #ddd;
}
.mapsvg-btn-map.mapsvg-out {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.mapsvg-btn-back:before {
  content: "&lsaquo;";
  display: block;
  position: absolute;
  color: #999;
  height: 24px;
  width: 24px;
  line-height: 24px;
  font-size: 14px;
  pointer-events: none;
}
.mapsvg-btn-map.mapsvg-in:before,
.mapsvg-btn-map.mapsvg-out:before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 6px;
  background-color: #999;
  height: 1px;
  width: 12px;
  pointer-events: none;
}
.mapsvg-btn-map.mapsvg-in:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 11px;
  background-color: #999;
  height: 12px;
  width: 1px;
  pointer-events: none;
}

.mapsvg-choropleth-legend {
  background-color: #ffffff;
  border-radius: 3px;
  position: absolute;
  bottom: 50px;
  right: 10px;
  max-width: 50%;
  min-width: 10%;
  font-size: 12px;
  line-height: 15px !important;
  color: #666666;
  padding: 0px 0px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 2;
}

.mapsvg-wrap {
  display: flex;
  flex-flow: row;
}
.mapsvg-top-container {
  position: relative;
}
.mapsvg-sidebar {
  flex-basis: 250px;
}

.mapsvg-header,
.mapsvg-footer {
  z-index: 3;
}
.mapsvg-footer .mapsvg-form-builder {
  padding-top: 10px;
}
.mapsvg-controller-view {
  position: relative;
  height: 100%;
  pointer-events: auto;
  /*border-right: 1px solid #eee;*/
}

.mapsvg-controller-view-wrap.nano {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.mapsvg-controller-view-content {
  padding: 15px;
  box-sizing: border-box;
}
.mapsvg-controller-no-padding .mapsvg-controller-view-content {
  padding: 0;
}
.mapsvg-mobile-buttons {
  height: 50px;
  background-color: #eee;
  position: relative;
  display: none;
}
.mapsvg-button-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  left: 50%;
  bottom: 0;
  line-height: 50px;
  cursor: pointer;
  color: #222;
  text-align: center;
  border: 1px solid #ddd;
}
.mapsvg-button-map {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 50%;
  bottom: 0;
  line-height: 50px;
  cursor: pointer;
  color: #444;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-right: 0;
}
.mapsvg-button-menu:hover,
.mapsvg-button-map:hover {
  background-color: #e2e2e2;
}
.mapsvg-button-menu.active,
.mapsvg-button-map.active {
  background-color: #ccc;
  border-color: #ccc;
  color: #fff;
}
.mapsvg-wrap .mapsvg {
  flex: 1 0;
  min-width: 0; /* firefox flex fix */
}
.mapsvg-filter-tags {
  padding: 10px;
}
.mapsvg > .mapsvg-filter-tags {
  position: absolute;
}
.mapsvg-filter-tags:empty {
  display: none;
}
.mapsvg-header .mapsvg-filter-tags,
.mapsvg-footer .mapsvg-filter-tags {
  padding: 0 0 10px 0;
}
.mapsvg-filter-tag {
  background: #ddd;
  color: #666;
  display: inline-block;
  padding: 0 8px;
  line-height: 27px;
  border-radius: 5px;
  font-size: 13px;
  margin-right: 4px;
  font-family:
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mapsvg-filter-delete {
  display: inline-block;
  color: #444;
  font-size: 16px;
  padding-left: 3px;
}
.mapsvg-filter-delete:hover {
  color: #999;
  cursor: pointer;
}

.mapsvg-map-container {
  flex-grow: 1;
  position: relative;
}
.mapsvg-layers-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mapsvg-layer {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mapsvg-layer > * {
  pointer-events: all;
}
.mapsvg-layer.mapsvg-layer-labels > * {
  pointer-events: none;
}
.mapsvg-layer-gm {
  pointer-events: none;
}
.mapsvg-layer-gm img {
  opacity: 1;
  max-width: none;
}

.mapsvg-layer-markers {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

/* PAGINATION  (bootstrap styles) */
.mapsvg-pagination .pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.mapsvg-with-pagination .mapsvg-pagination .pager {
  display: block;
}
.mapsvg-pagination .pager li {
  display: inline-block;
  margin: 0 2px;
}
.mapsvg-pagination .pager li > a,
.mapsvg-pagination .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  line-height: 1.5;
  font-family: Helvetica;
  box-shadow: none;
  text-decoration: none;
  font-size: 13px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.mapsvg-pagination .pager li > a:hover,
.mapsvg-pagination .pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.mapsvg-pagination .pager .next > a,
.mapsvg-pagination .pager .next > span {
  float: right;
}
.mapsvg-pagination .pager .previous > a,
.mapsvg-pagination .pager .previous > span {
  float: left;
}
.mapsvg-pagination .pager .disabled > a,
.mapsvg-pagination .pager .disabled > a:hover,
.mapsvg-pagination .pager .disabled > a:focus,
.mapsvg-pagination .pager .disabled > span {
  color: #ccc;
  cursor: not-allowed;
  background-color: #fff;
}
.mapsvg-pagination li.disabled {
  pointer-events: none;
}

/* pagination when directory is switched off */
.mapsvg > .mapsvg-pagination {
  position: absolute;
  bottom: 10px;
  left: 7px;
  z-index: 2;
  user-select: none;
}
.mapsvg > .mapsvg-pagination ul {
  margin: 0;
}
.mapsvg-filter-label:empty {
  display: none;
}
/* GROUPS CONTROL */
.mapsvg-layers-control {
  max-width: 200px;
  position: absolute;
  font-size: 12px;
  text-align: left;
  padding: 10px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.mapsvg-layers-control.closed {
  pointer-events: none;
}
.mapsvg-layers-control.closed .mapsvg-layers-label {
  pointer-events: all;
}
.mapsvg-layers-control {
  pointer-events: none;
}
.mapsvg-layers-label {
  pointer-events: all;
}
.mapsvg-layers-item {
  pointer-events: all;
}
.mapsvg-layers-control.mapsvg-top-left {
  top: 0px;
  left: 0px;
}
.mapsvg-layers-control.mapsvg-top-left {
  top: 0px;
  left: 0px;
}
.mapsvg-layers-control.mapsvg-top-right {
  top: 0px;
  right: 0px;
}
.mapsvg-layers-control.mapsvg-bottom-right {
  bottom: 0px;
  right: 0px;
}
.mapsvg-layers-control.mapsvg-bottom-left {
  bottom: 0px;
  left: 0px;
}
.mapsvg-layers-control .mapsvg-layers-label {
  height: 23px;
  line-height: 23px;
  background: rgba(255, 255, 255, 0.7);
  font-family:
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
  padding: 0 7px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mapsvg-layers-label {
  pointer-events: all;
}
.mapsvg-layers-label:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-bottom: 4px dashed;
  border-bottom: 4px solid\9;
  border-top: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.mapsvg-layers-control.closed .mapsvg-layers-list-wrap {
  display: none;
}
.mapsvg-layers-control.closed .mapsvg-layers-label:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 0;
}

.mapsvg-layers-list-wrap {
  position: absolute;
  top: 33px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.mapsvg-layers-list-wrap .nano {
  height: 100% !important;
}
.mapsvg-layers-list {
  pointer-events: none;
}
.mapsvg-layers-item {
  pointer-events: all;
  padding: 3px 7px;
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.mapsvg-layers-item label {
  cursor: pointer;
}

/* FLOORS */
.mapsvg-floors-control {
  max-width: 200px;
  position: absolute;
  font-size: 12px;
  text-align: left;
  padding: 10px;
  height: 100%;
  pointer-events: none;
}
.mapsvg-floors-control.mapsvg-top-left {
  top: 0px;
  left: 0px;
}
.mapsvg-floors-control.mapsvg-top-right {
  top: 0px;
  right: 0px;
}
.mapsvg-floors-control.mapsvg-bottom-right {
  bottom: 0px;
  right: 0px;
}
.mapsvg-floors-control.mapsvg-bottom-left {
  bottom: 0px;
  left: 0px;
}
.mapsvg-floors-control .mapsvg-floors-label {
  height: 23px;
  line-height: 23px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0 7px;
  cursor: pointer;
}
.mapsvg-floors-label {
  pointer-events: all;
}
.mapsvg-floors-label:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-bottom: 4px dashed;
  border-bottom: 4px solid\9;
  border-top: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.mapsvg-floors-control.closed .mapsvg-floors-list-wrap {
  display: none;
}
.mapsvg-floors-control.closed .mapsvg-floors-label:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 0;
}
.mapsvg-floors-list-wrap {
  position: absolute;
  top: 33px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.mapsvg-floors-list-wrap .nano {
  height: 100% !important;
}
.mapsvg-floors-item {
  padding: 3px 7px;
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  pointer-events: all;
}
.mapsvg-floors-item label {
  cursor: pointer;
}

.mapsvg-no-results {
  padding: 10px;
  color: #666;
  font-family: "Helvetica", "sans-serif";
  font-size: 14px;
  font-weight: normal;
}
.mapsvg-layers-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mapsvg-btn-previous-map svg {
  width: 22px;
  opacity: 0.7;
  pointer-events: none;
  display: block;
  margin: 1px auto;
}

/* MOBILE DEVICES */
@media (max-width: 812px) {
  /* 812px = iPhone X, all others phones are smaller */

  .select2-container {
    z-index: 10000;
  }

  .mapsvg-sidebar {
    flex-grow: 1;
  }
  .mapsvg-sidebar-right {
    /*display: none !important;*/
  }
  .mapsvg-top-container {
    display: none;
  }

  .mapsvg-layers-control {
    left: auto !important;
  }
  /* zoom buttons for mobile devices */
  .mapsvg-btn-map {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
  .mapsvg-btn-map.mapsvg-in:before,
  .mapsvg-btn-map.mapsvg-out:before {
    top: 15px;
    left: 6px;
    height: 1px;
    width: 20px;
  }
  .mapsvg-btn-map.mapsvg-in:after {
    top: 6px;
    left: 15px;
    height: 21px;
    width: 1px;
  }
  .mapsvg-btn-map svg {
    width: 15px;
  }
  .mapsvg-mobile-buttons {
    display: block;
    margin: 0 !important;
  }
  .mapsvg-hide-map-list-buttons .mapsvg-mobile-buttons {
    display: none;
  }
  .mapsvg-directory-visible .mapsvg-sidebar-left,
  .mapsvg-directory-visible .mapsvg-sidebar-right {
    flex-basis: 0 !important;
  }
  .mapsvg-button-map,
  .mapsvg-button-menu {
    display: block;
  }

  .mapsvg-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .mapsvg-controller-view {
    width: 100% !important;
  }

  .mapsvg-btn-previous-map svg {
    margin: 4px auto;
    width: 25px;
  }
}

/* ICONS */
@font-face {
  font-family: "mapsvg-icons";
  src: url("../css/font/mapsvg-icons.eot?98971180");
  src:
    url("../css/font/mapsvg-icons.eot?98971180#iefix") format("embedded-opentype"),
    url("../css/font/mapsvg-icons.woff2?98971180") format("woff2"),
    url("../css/font/mapsvg-icons.woff?98971180") format("woff"),
    url("../css/font/mapsvg-icons.ttf?98971180") format("truetype"),
    url("../css/font/mapsvg-icons.svg?98971180#mapsvg-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="mapsvg-icon-"]:before,
[class*=" mapsvg-icon-"]:before {
  font-family: "mapsvg-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.mapsvg-icon-menu:before {
  content: "\f0c9";
} /* '' */
.mapsvg-icon-map:before {
  content: "\f278";
} /* '' */

/* ANIMATIONS */
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

iframe.mapsvg-iframe-shortcode,
iframe.mapsvg-iframe-post {
  border: 0;
  overflow: hidden;
}

.mapsvg-hidden {
  display: none;
}
.mapsvg-invisible {
  opacity: 0;
  pointer-events: none;
}
.mapsvg-invisible * {
  pointer-events: none;
}
.mapsvg-bubble {
  background-color: transparent;
  border-radius: 50%;
  text-align: center;
  color: black;
  border: 1px solid black;
  line-height: 23px;
  vertical-align: middle;
}

.mapsvg:not(.bubbles-regions-on) .mapsvg-region-bubble {
  display: none;
}

.mapsvg:not(.bubbles-database-on) .mapsvg-marker-bubble {
  display: none;
}

.mapsvg.bubbles-database-on .mapsvg-marker {
  border-radius: 50%;
}

.mapsvg-bubble.mapsvg-empty {
  display: none;
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 2px;
}

.mapsvg-choropleth-source-field {
  background-color: #ffffff;
  border-radius: 3px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  max-width: 50%;
  min-width: 167px;
  font-size: 12px !important;
  line-height: 15px !important;
  color: #666666;
  padding: 0px 0px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  -webkit-box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 50%);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 50%);
  z-index: 2;
}

.mapsvg-choropleth-source-field select {
  width: 100%;
}
.mapsvg-coloring-subitem-label {
  font-weight: bold;
  padding-top: 7px;
  margin-bottom: 0;
  text-align: right;
}
.mapsvg-coloring-subitem-content {
  border-left: 1px solid #999;
}
.mapsvg-coloring-no-data,
.mapsvg-coloring-palette-out-of-range,
.mapsvg-coloring-pallete-color {
  padding: 10px 0;
  margin-bottom: 20px;
}
.mapsvg-choropleth-segment-details {
  position: absolute;
  background: white;
  padding: 5px 10px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
}
.bubbles-database-on .mapsvg-marker img {
  display: none !important;
}

.mapsvg-choropleth-legend > * {
  margin: 10px 10px;
  font-size: 12px;
}

.mapsvg-choropleth-legend-vertical .mapsvg-choropleth-legend-gradient-colors {
  width: 30%;
  height: 50%;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;
  color: black;
}

.mapsvg-choropleth-legend-vertical .mapsvg-choropleth-legend-gradient-no-data {
  width: 30%;
  height: auto;
  display: flex;
  flex-flow: row;
  justify-content: center;
  color: black;
  margin-bottom: 10px;
  text-align: center;
}

.mapsvg-choropleth-legend-horizontal .mapsvg-choropleth-legend-gradient {
  width: auto;
  height: 30%;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  color: black;
}

.mapsvg-choropleth-legend-horizontal .mapsvg-choropleth-legend-gradient-colors {
  width: 85%;
  display: flex;
  flex-flow: row;
  justify-content: space-evenly;
  color: black;
}

.mapsvg-choropleth-legend-horizontal .mapsvg-choropleth-legend-gradient-no-data {
  width: 12%;
  height: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: black;
  text-align: center;
}

.mapsvg-choropleth-legend-title {
  font-weight: bold;
}

.mapsvg-choropleth-legend-container-top-right {
  top: 10px;
  right: 50px;
  bottom: unset;
}

.mapsvg-choropleth-legend-container-top-left {
  top: 10px;
  left: 10px;
  right: unset;
  bottom: unset;
}

.mapsvg-choropleth-legend-container-bottom-left {
  left: 10px;
  bottom: 10px;
  right: unset;
}

.mapsvg-choropleth-legend-gradient-colors > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mapsvg-choropleth-legend-vertical .mapsvg-choropleth-legend-palette {
  display: flex;
  flex-flow: column-reverse;
}

.mapsvg-choropleth-legend-vertical
  .mapsvg-choropleth-legend-palette-color-wrap[data-idx="out-of-range"],
.mapsvg-choropleth-legend-vertical
  .mapsvg-choropleth-legend-palette-color-wrap[data-idx="no-data"] {
  margin-top: 25px;
}

.mapsvg.bubbles-database-on .mapsvg-choropleth-legend-palette-color-wrap[data-idx="no-data"],
.mapsvg.bubbles-regions-on .mapsvg-choropleth-legend-palette-color-wrap[data-idx="no-data"] {
  display: none;
}

.mapsvg-choropleth-legend-horizontal .mapsvg-choropleth-legend-palette {
  display: flex;
  flex-flow: row;
}

.mapsvg-choropleth-legend-horizontal .mapsvg-choropleth-legend-palette-color-wrap {
  display: flex;
  flex-flow: column;
  width: 60px;
  margin-right: 20px;
}

.mapsvg-choropleth-legend-vertical .mapsvg-choropleth-legend-palette-color-wrap {
  display: flex;
  flex-flow: row;
}

.mapsvg-choropleth-legend-palette-color {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  display: block;
}

.mapsvg-choropleth-legend-horizontal .mapsvg-choropleth-legend-palette-color {
  margin-bottom: 10px;
}

.mapsvg-choropleth-legend-vertical .mapsvg-choropleth-legend-palette-color {
  margin-right: 10px;
}

.mapsvg-choropleth-legend-palette-color-description {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

/* OLD CHORO */
/* CHOROPLETH MAPS */
.mapsvg-gauge {
  background-color: #ffffff;
  border-radius: 3px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  max-width: 50%;
  min-width: 10%;
  font-size: 11px !important;
  line-height: 15px !important;
  color: #666666;
  padding: 0px 0px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.mapsvg-gauge table {
  width: auto;
  margin: 0;
  border: 0;
  padding: 0;
}
.mapsvg-gauge .mapsvg-gauge-gradient {
  min-width: 100px;
}
.mapsvg-gauge table tr {
  border: 0 !important;
}
.mapsvg-gauge table td {
  padding: 2px 7px;
  border: 0 !important;
}
.form-text:empty {
  display: none;
}

.btn-group-xs > .btn,
.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* IOS SWITCHES */
input[type="checkbox"].ios8-switch {
  position: absolute;
  margin: 8px 0 0 16px;
  display: none;
}
input[type="checkbox"].ios8-switch + label {
  position: relative;
  padding: 5px 0 0 50px;
  line-height: 2em;
  font-weight: normal;
}
input[type="checkbox"].ios8-switch + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 40px; /* x*5 */
  height: 24px; /* x*3 */
  border-radius: 16px; /* x*2 */
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
input[type="checkbox"].ios8-switch + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 24px; /* x*3 */
  height: 24px; /* x*3 */
  border-radius: 16px; /* x*2 */
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
input[type="checkbox"].ios8-switch + label:hover:after {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
input[type="checkbox"].ios8-switch:checked + label:after {
  margin-left: 16px;
}
input[type="checkbox"].ios8-switch:checked + label:before {
  background: #55d069;
}

/* SMALL */

input[type="checkbox"].ios8-switch-sm {
  margin: 5px 0 0 10px;
}
input[type="checkbox"].ios8-switch-sm + label {
  position: relative;
  padding: 0 0 0 32px;
  line-height: 1.3em;
}
input[type="checkbox"].ios8-switch-sm + label:before {
  width: 25px; /* x*5 */
  height: 15px; /* x*3 */
  border-radius: 10px; /* x*2 */
}
input[type="checkbox"].ios8-switch-sm + label:after {
  width: 15px; /* x*3 */
  height: 15px; /* x*3 */
  border-radius: 10px; /* x*2 */
}
input[type="checkbox"].ios8-switch-sm + label:hover:after {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
input[type="checkbox"].ios8-switch-sm:checked + label:after {
  margin-left: 10px; /* x*2 */
}

/* LARGE */
input[type="checkbox"].ios8-switch-lg {
  margin: 10px 0 0 20px;
}
input[type="checkbox"].ios8-switch-lg + label {
  position: relative;
  padding: 7px 0 0 60px;
  line-height: 2.3em;
}
input[type="checkbox"].ios8-switch-lg + label:before {
  width: 50px; /* x*5 */
  height: 30px; /* x*3 */
  border-radius: 20px; /* x*2 */
}
input[type="checkbox"].ios8-switch-lg + label:after {
  width: 30px; /* x*3 */
  height: 30px; /* x*3 */
  border-radius: 20px; /* x*2 */
}
input[type="checkbox"].ios8-switch-lg + label:hover:after {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
input[type="checkbox"].ios8-switch-lg:checked + label:after {
  margin-left: 20px; /* x*2 */
}
.radio .disabled {
  pointer-events: none;
}

@media screen and (min-width: 1025px) {
  .mapsvg-controller-view-content {
    padding-bottom: 80px;
  }
}

/** CLOSE BUTTON **/
body.mapsvg-modal-fullscreen {
  overflow: hidden;
}

/* DEFAULT TEMPLATES */
.mapsvg-imageTitle-content {
  display: flex;
  align-items: center;
}
.mapsvg-imageTitle-image {
  width: 40px;
  margin-right: 10px;
  flex-shrink: 0;
}
.mapsvg-imageTitle-image img {
  border-radius: 20px;
}
.mapsvg-imageTitle-title {
  flex-grow: 1;
}

.mapsvg-details-flex {
  display: flex;
  flex-flow: column;
}
.mapsvg-details-hero {
  text-align: center;
}
.mapsvg-details-hero-image {
  margin: 0 -30px;
}
.mapsvg-details-list {
  display: flex;
  flex-flow: column;
  margin-top: 30px;
  gap: 10px;
}
.mapsvg-details-list-item {
  display: flex;
  flex-flow: row;
}
.mapsvg-details-list-item-image {
  width: 100px;
  margin-right: 15px;
  border-radius: 3px;
  flex-shrink: 0;
}
.mapsvg-details-flex img {
  margin-bottom: 20px;
}
.mapsvg-details-address {
  color: #bbb;
  margin-bottom: 5px;
}
.mapsvg-details-category {
  color: #aaa;
}
.tt-menu.tt-open {
  z-index: 999999999;
}
