﻿
/* The location pointed to by the popup tip. */
.cpopup-tip-anchor {
    height: 0;
    position: absolute;
    /* The max width of the info window. */
    width: 200px;
}
.cpopup-bubble-content {
    position: absolute;
    bottom: 1px;
    /*left: 50%;*/
    transform: translate(-50%);
    color: white;
    padding: 8px;
    border-radius: 50%;
    /* overflow-y: auto; */
    /* max-height: 60px; */
    box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.5);
    border: solid 1px #fff;
    background-color: #f999f3;
    line-height: normal;
    display: inline-block;
}
.cpopup-bubble-content:hover {
    cursor: pointer;
}
.cpopup-info {
    position: absolute;
    background-color: #fff;
    transform: translate(-50%);
    box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.5);
    line-height: normal;
    display: inline-block;
    padding: 10px;
}
.cpopup-close {
    line-height: 1em;
    position: absolute;
    top: 3px;
    right: 3px;
    color: #999;
    text-decoration:none !important;
}
    .cpopup-close:before {
        content: '\1F5D9';
    }