.balloon {
    display: none;
    position: absolute;
    background-color: #fff;
    opacity: 0.9;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
    border-radius: 5px;
    border: 1px solid #bebebe;
    bottom: 12px;
    left: -50px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border-top: 3px solid #537fc9;
}

.balloon:after, .balloon:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.balloon:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
}

.balloon:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
}

.balloon.dragged:after {
    border: none;
}

.balloon.dragged:before {
    border: none;
}
.balloon-head {
    height: 25px;
    cursor: move;
    background: rgba(188, 205, 255, 0.3);
}
.balloon-head:hover {
    background: rgba(245, 255, 0, 0.2);
}
.balloon-closer {
    text-decoration: none;
    position: absolute;
    top: 2px;
    right: 0px;
    width: 22px;
    height: 22px;
}

.balloon-closer:hover {
    opacity: 0.8;
}
/*
.balloon-closer:after {
	content: "✖";
}
*/
.balloon-inner {
    padding: 5px;
    min-width: 150px;
    margin: 0 10px 10px 10px;
}
.balloon-inner h4 {
    margin-top: 0px;
}
.balloon-inner .wd {
    min-width: 200px;
}