/* popups, balloons, bubbles and info windows */

.GooglePopupWindow {
  overflow: hidden;
  font-size: 8pt;
  color: green;
  height: 40px;
}

.popup {
  border: solid 3px #444;
  font-weight: normal;
  padding-left: 4px;
  padding-top: 4px;
  padding-right: 4px;
  padding-bottom: 4px;
  position: absolute;
}

.popupContent {
  background: #eee;
  border: solid 2px #666;
  font-weight: normal;
  padding-left: 2px;
  padding-top: 2px;
  padding-right: 2px;
  padding-bottom: 2px;
  position: absolute;
  white-space: nowrap;
}

.popup {
  z-index: 10001; /* must be above all map layers */
  opacity: 0.8;
  visibility: visible;
  background-color: darkslategray;
}

.popup .container {
  float: left;
  padding-left: 4px;
  position: relative;
  padding-bottom: 16px;
  padding-right: 4px;
}

.hiddenContainer {
  display: inline-block;
  position: absolute;
  padding: 0px;
  border: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.popupContent {
  visibility: visible;
}

.popup .expanding {
  width: 16px;
  height: 16px;
}

.popup .heading {
  font-size: 1.5em; /* 14px */
  color: #000;
  padding-top: 0px;
  padding-bottom: 1px;
  white-space: nowrap;
}

.popup .name {
  font-weight: normal;
}

.popup .bodyLine {
  font-size: 1.3em; /* 12px; */
  color: #888;
  padding-top: 1px;
  padding-bottom: 1px;
  white-space: nowrap;
}

.popup .bodyLine .value {
  font-weight: bold;
  color: #444;
}

/*Close button*/
 .popup .closebutton
    {
        width:16px;
        height:16px;
        float:right;
        text-decoration:none;
    }

 .popup .closebutton .icon
    {
        background: transparent url("../../css/images/buttons.close.png") -15px -2px no-repeat;
        width: 13px;
        height: 13px;
        display: block;
        border: 1px solid #444;
    }

.popup .closebutton:hover .icon
    {
        background: transparent url("../../css/images/buttons.close.png") -59px -1px no-repeat;
    }