#balloon-message {
    position: relative;
    display: inline-block;
    padding: 8px 5px 5px 10px;
    width: auto;
    min-width: 90px;
    width: 90px;
    height: 70px;
    color: #F6F6F6;
    text-align: left;
    background: #182e71;
    border-radius: 10px;
    z-index: 0;
    margin: 0 auto 0 auto;
    font-size:11px;
}
#balloon-message:before {
    content: "";
    position: absolute;
    bottom: 38px; left: -10px;
    margin-left: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: #182e71;
    border-radius: 0 30px 0 30px;
    z-index: -1;
}
#balloon-message:after {
    content: "";
    position: absolute;
    bottom: 50px; left: -23px;
    margin-left: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 0 30px 0 30px;
    z-index: -1;
    -webkit-transform: rotate(-20deg);
       -moz-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
         -o-transform: rotate(-20deg);
            transform: rotate(-20deg);
}
