

.mbBalloon {
  position: absolute; 
  background-color: #106dc6;
  border: 1px solid #333;

  color: #fff;

  min-height: 20px;
  min-width: 80px;
  max-width: 300px;
  padding: 20px;

  border-radius: 4px;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, .2);

}

.mbBalloon .arrow {
  position: absolute;
  width: 12px;
  height: 12px;

  border-color: transparent;
  border-style: solid;
  border-width: 12px;
}

.mbBalloon .arrow.border {
  /* Modify this attribute for the arrow border color*/
  border-color: transparent;
}

.mbBalloon .arrow.n {
  border-bottom-color: inherit;
  border-bottom-width: 12px;
  border-top-width: 0;
}

.mbBalloon .arrow.border.n {
  border-top-color: transparent!important;
  border-left-color: transparent!important;
  border-right-color: transparent!important;
  margin-top: 2px
}

.mbBalloon .arrow.s {
  border-top-color: inherit;
  border-top-width: 12px;
  border-bottom-width: 0;
}

.mbBalloon .arrow.border.s {
  border-bottom-color: transparent!important;
  border-left-color: transparent!important;
  border-right-color: transparent!important;
   margin-top: -2px
}

.mbBalloon .arrow.e {
  border-left-color: inherit;
  border-left-width: 12px;
  border-right-width: 0;
}

.mbBalloon .arrow.border.e {
  border-top-color: transparent!important;
  border-bottom-color: transparent!important;
  border-right-color: transparent!important;
   margin-left: -2px
}


.mbBalloon .arrow.w {
  border-right-color: inherit;
  border-right-width: 12px;
  border-left-width: 0;
}

.mbBalloon .arrow.border.w {
  border-top-color: transparent!important;
  border-left-color: transparent!important;
  border-bottom-color: transparent!important;
   margin-left: 2px
}

.mbBalloon .balloon-visible{
  display: block;
}

.mbBalloon .mbBalloonClose{
  position: absolute;
  right: 0;
  top: -2px;
  padding: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.5;
}

.mbBalloon .mbBalloonClose:hover{
  opacity: 1;
}

.mbBalloon.e .mbBalloonClose{
  right: auto;
  left: 5px;
}

.mbBalloonClose:before{
  content: '\e802';
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: block;
  text-decoration: inherit;
  font-variant: normal;
  text-transform: none;
  font-size: 120%;
  text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3);
  position: absolute;
  top: 5px;
  left: 0;
}

.mbBalloonOpener.highlight{
  z-index: 1001;
  box-shadow: 0 0 15px 8px rgba(0, 0, 255, 0.50);
  background-color: rgba(255, 255, 255, 1) !important;
}

.mbBalloonOverlay{
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.40);
  top:0;
  left: 0;
}


