/*
 * @dogracer pulled this code together with much trial and error
*
* Courtesy of: http://www.ilikepixels.co.uk/drop/bubbler/
*
*/
.arrrdonate-bubble {
    position: relative;
    width: 240px;
    padding: 10px;
    background: #ffffff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: goldenrod solid 1px;
    text-align: center;
    overflow-wrap: break-word;
}
.arrrdonate-bubble:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 9px 0;
    border-color: #ffffff transparent;
    display: block;
    width: 0;
    z-index: 1;
    margin-left: -9px;
    bottom: -10px;
    left: 50%;
}
.arrrdonate-bubble:before {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 9px 0;
    border-color: goldenrod transparent;
    display: block;
    width: 0;
    z-index: 0;
    margin-left: -9px;
    bottom: -11px;
    left: 50%;
}
.arrrdonate-address {
    font-size: x-small;
    color: #666666;
    padding: 5px 0;
}
.arrrdonate {
    position: relative;
}
.arrrdonate-bubble {
    position: absolute;
    display: none; /* keeps the popup hidden if no JS available */
}
