.talkbubble-wrapper{
    position: relative;
    height: 0;
}
.talkbubble {
    position:absolute;
    display:none;
    top:0;
    left:0;
    width: auto;
    height: auto;
    background: red;
    -moz-border-radius:    2px;
    -webkit-border-radius: 2px;
    border-radius:         2px;
}
.talkbubble:before {
    content:"";
    position: absolute;
    right: 75%;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-top: 26px solid red;
    border-right: 13px solid transparent;
}
.talkbubble > p{
    color:white;
    font-size: 16px;
    padding:10px 20px;
    margin:0;
    text-align: center;
}
#contact-bubble{
    top:auto;
    bottom:-50px;
}
#contact-bubble:before{
    top:-26px;
    border-left: 13px solid transparent;
    border-top: none;
    border-right: 13px solid transparent;
    border-bottom: 26px solid red;
}
button{
    width:50%;
}