.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1010;
    display: none;
    max-width: 276px;
    padding: 1px;
    text-align: left;
    white-space: normal;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}
.popover.top {
    margin-top: -10px;
}
.popover {
    display: block;
}
.popover .close {
    position: absolute;
    right: 5px;
    top: 1px;
}
.close {
    float: right;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20);
}
.popover.top .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #fff;
    border-bottom-width: 0;
}
.popover .arrow {
    border-width: 11px;
}
.popover .arrow, .popover .arrow::after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.popover.top .arrow::after {
    bottom: 1px;
    margin-left: -10px;
    border-top-color: #fff;
    border-bottom-width: 0;
}
.popover .arrow::after {
    border-width: 10px;
    content: "";
}
.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 13px;
    font-weight: bold;
    line-height: 18px;
    border-radius: 10px 10px 0 0;
}
.popover-title span {
    display: inline-block;
    border-bottom: 2px solid #f8af2b;
    padding-bottom: 0px;
}
.popover-content {
    padding: 0px 14px 9px 14px;
    font-size: 13px;
    color: #868e96;
}