/** Default Class Prefix **/
.ED_MultiMap {
  color: #000000;
}

/** Light Theme Class Prefix **/
.mojo-theme-light .ED_MultiMap {
  color: #111111;
}

/** Dark Theme Class Prefix **/
.mojo-theme-dark .ED_MultiMap {
  color: #FFFFFF;
}

.ED_MultiMap .active {
  stroke: #111111;
  stroke-width: 2px;
}

.mojo-theme-dark .ED_MultiMap .active {
  stroke: #ffffff;
  stroke-width: 2px;
}

.ED_MultiMap .counties {
  fill: none
}

.ED_MultiMap .feature {
  fill: none;
  stroke: #eee;
  stroke-linejoin: round
}

.ED_MultiMap .county:hover {
  opacity: .6;
}

.ED_MultiMap .states,
.ED_MultiMap .regions, .ED_MultiMap .pdpregions {
  fill: none;
  stroke: #fff;
  stroke-linejoin: round;
  pointer-events: none;
}


.ED_MultiMap .map-legend {
  pointer-events: none;
}

.ED_MultiMap .map-legend-background {
  fill: #fff;
  fill-opacity: .8
}

.ED_MultiMap .map-legend-text {
  fill: #777;
  font: 400 10px Arial
}

.ED_MultiMap .map-legend-title {
  fill: #555;
  font: 600 9px Arial;
  max-width: 200px;
  word-break: normal;
}

.mojo-theme-dark .ED_MultiMap .map-legend-title {
  fill: #ccc;
}

.mojo-theme-dark .ED_MultiMap .states,
.mojo-theme-dark .ED_MultiMap .regions {
  fill: none;
  stroke: #000000;
  stroke-linejoin: round
}

.mojo-theme-dark .ED_MultiMap .map-background {
  background-color: #1f1f1f;
  fill: #1f1f1f;
}

.mojo-theme-dark .ED_MultiMap .map-legend-background {
  fill: #1f1f1f;
  fill-opacity: .8
}

.ED_MultiMap .nv-legend-text {
  fill: #777
}

.ED_MultiMap g.nv-series {
  cursor: pointer
}

.ED_MultiMap g.nv-series.disabled circle {
  fill-opacity: 0
}

.ED_MultiMap svg text {
  font: 400 11px Arial;
  fill: #666
}

.ED_MultiMap .bubble {
  /*opacity: 0.75;*/
  stroke: #000;
  stroke-width: .6px;
  pointer-events: none;
}

.mojo-theme-dark .ED_MultiMap .bubble {
  stroke: #000;
}

/**************************
* Controls Styles
***************************/

.ED_MultiMap .control-group {
  display: block;
  position: absolute;
  min-height: 25px;
  top: 10px;
  right: 10px;
}

.ED_MultiMap .control-group.visible .optionsButton{
  display: none;
}

.ED_MultiMap .control-group .optionsButton {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  display: block;
  border: 1px solid rgba(255, 255, 255, .75);
  background-size: 22px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("images/menu.svg");
  background-color: rgba(255, 255, 255, .75);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
}

.mojo-theme-dark .ED_MultiMap .control-group .optionsButton {
  border: 1px solid rgba(31, 31, 31, .75);
  background-color: rgba(31, 31, 31, .75);
}

.ED_MultiMap .control-group:not(.open) .optionsButton:hover {
  background-color: #ffffff;
  border: 1px solid #cecece;
}

.mojo-theme-dark .control-group:not(.open) .optionsButton:hover {
  background-color: #1f1f1f;
  border-color: #595959;
}

.ED_MultiMap .control-group.open .optionsButton {
  background-color: #ffffff;
  border: 1px solid #cecece;
  border-bottom: none;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}

.mojo-theme-dark .ED_MultiMap .control-group.open .optionsButton {
  background-color: #1f1f1f;
  border-color: #595959;
}

.ED_MultiMap .control-group .optionsPanel {
  display: none;
  position: absolute;
  right: 0px;
  top: 30px;
  background-color: #ffffff;
  padding: 10px;
  border: 1px solid #cecece;
  width: 150px;
  -webkit-border-radius: 4px 0 4px 4px;
  -moz-border-radius: 4px 0 4px 4px;
  border-radius: 4px 0 4px 4px;
}

.ED_MultiMap .control-group.visible .optionsPanel {
  top: 0px;
  right: -5px;
  background-color: rgba(255,255,255,.8);
  padding: 5px;
  width: 110px;
  border-color: transparent;
}

.ED_MultiMap .control-group *:not(:last-child) {
  margin-bottom: 8px;
}

.mojo-theme-dark .ED_MultiMap .control-group .optionsPanel {
  background-color: #1f1f1f;
  color: #cdcdc8;
  border-color: #595959;
}

.mojo-theme-dark .ED_MultiMap .control-group.visible .optionsPanel {
  background-color: rgba(31,31,31,.8);
  border-color: transparent;
}

.ED_MultiMap .control-group.open .optionsPanel, .ED_MultiMap .control-group.visible .optionsPanel {
  display: block;
}

.ED_MultiMap .optionsPanel .optionsLabel {
  margin-bottom: 4px;
  color: #555;
  font-size: 10px;
  font-weight: bold;
  display: block;
  text-align: left;
  line-height: 1;
}

.mojo-theme-dark .ED_MultiMap .optionsPanel .optionsLabel {
  color: #ccc;
}

.ED_MultiMap .control-group.visible .optionsLabel {
  text-align: center;
}

.ED_MultiMap .optionsPanel .select + .optionsLabel {
  padding-top: 4px;
}

.ED_MultiMap .control-group .optionsPanel .select {
  /*-moz-appearance: none;*/
  /*-webkit-appearance: none;*/
  /*appearance: none;*/

  padding: 0;
  height: 20px;
  display: block;
  width: 100%;
  border: 1px solid #cecece;
  border-radius: 2px;
  font-size: 10px;
  line-height: 1;
}

.mojo-theme-dark .ED_MultiMap .control-group .optionsPanel .select {
  background-color: #1f1f1f;
  color: #eeeeee;
  border-color: #595959;
}

/**************************
* Tool Tip Styles
***************************/

.ED_MultiMap .d3tooltip {
  position: absolute;
  padding: 8px;

  z-index: 10000;

  color: #FFF;
  background-color: #333;
  border: none;

  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  pointer-events: none;

  white-space: nowrap;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.ED_MultiMap .d3tooltip h4 {
  margin: 0;
  padding-bottom: 6px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: bold;
}

.ED_MultiMap .d3tooltip p {
  margin: 0;
  padding: 4px 6px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 300;
}

.ED_MultiMap .d3tooltip-pending-removal {
  position: absolute;
  pointer-events: none;
}

.ED_MultiMap .arrow-tooltip-down:not(.no-arrow):after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 8px 8px 0;
  border-color: #333 transparent;
  display: block;
  width: 0;
  z-index: 1;
  margin-left: -8px;
  bottom: -8px;
  left: 50%;
}

.ED_MultiMap .arrow-tooltip-up:not(.no-arrow):after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: #333 transparent;
  display: block;
  width: 0;
  z-index: 1;
  margin-left: -8px;
  top: -8px;
  left: 50%;
}

.ED_MultiMap .arrow-tooltip-left:not(.no-arrow):after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #333;
  display: block;
  width: 0;
  z-index: 1;
  margin-top: -8px;
  left: -7px;
  top: 50%;
}

.ED_MultiMap .arrow-tooltip-right:not(.no-arrow):after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent #333;
  display: block;
  width: 0;
  z-index: 1;
  margin-top: -8px;
  right: -7px;
  top: 50%;
}

.mojo-theme-dark .ED_MultiMap .d3tooltip {
  color: #444;
  background-color: #f1f1f1;
}

.mojo-theme-dark .ED_MultiMap .arrow-tooltip-down:not(.no-arrow):after,
.mojo-theme-dark .ED_MultiMap .arrow-tooltip-up:not(.no-arrow):after {
  border-color: #f1f1f1 transparent;
}

.mojo-theme-dark .ED_MultiMap .arrow-tooltip-left:not(.no-arrow):after,
.mojo-theme-dark .ED_MultiMap .arrow-tooltip-right:not(.no-arrow):after {
  border-color: transparent #f1f1f1;
}

.ED_MultiMap .slider{
   width: 65px;
   position: relative;
   display: inline-block;
 }

.ED_MultiMap .slider-text{
  width: 30px;
  position: relative;
  top: -5px;
  padding: 2px;
  margin: 0 0 0 2px;
  font-size: 10px;
  border: 1px solid #cecece;
  border-radius: 2px;
  display: inline-block;
}
