﻿/* CSS talk bubble */
.talk-bubble {
    margin: 70px 0;
    display: inline-block;
    position: relative;
    width: 179px;
    height: auto;
    background-color: #ffffff;
    cursor: pointer;
    box-shadow: 1px 1px 10px -1px #aaa;
}

.border {
    border: 2px solid #d88c36 !important;
}

.round {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}


/*Right triangle, placed bottom right side slightly in*/
.tri-right.border.btm-right-in:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 34px;
    bottom: -13px;
    border: 6px solid;
    border-color: #d88c36 #d88c36 transparent transparent;
}

.tri-right.btm-right-in:after {
    content: ' ';
    position: absolute;
    width: 0px;
    height: 0;
    left: auto;
    right: 36px;
    bottom: -8px;
    border: 4px solid;
    border-color: #fff #fff transparent transparent;
}

/*Right triangle, placed bottom right side slightly in*/
.tri-right.border.btm-right:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: -8px;
    bottom: -40px;
    border: 20px solid;
    border-color: #666 #666 transparent transparent;
}

.tri-right.btm-right:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 0px;
    bottom: -20px;
    border: 12px solid;
    border-color: lightyellow lightyellow transparent transparent;
}

/* Right triangle, right side slightly down*/
.tri-right.border.right-in:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: -40px;
    top: 30px;
    bottom: auto;
    border: 20px solid;
    border-color: #666 transparent transparent #666;
}

.tri-right.right-in:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: -20px;
    top: 38px;
    bottom: auto;
    border: 12px solid;
    border-color: lightyellow transparent transparent lightyellow;
}

/* Right triangle placed top right flush. */
.tri-right.border.right-top:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: -40px;
    top: -8px;
    bottom: auto;
    border: 32px solid;
    border-color: #666 transparent transparent transparent;
}

.tri-right.right-top:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: -20px;
    top: 0px;
    bottom: auto;
    border: 20px solid;
    border-color: lightyellow transparent transparent transparent;
}

/* talk bubble contents */
.talktext {
    padding: 0.5em 0.5em 0.5em 0.85em;
    text-align: left;
    line-height: 1.5em;
    color: #484747;
}

    .talktext p {
        /* remove webkit p margins */
        -webkit-margin-before: 0em;
        -webkit-margin-after: 0em;
    }

.chatQuote {
    background: #0463a0;
    padding: 5px 10px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}



/* CSS talk bubble */





/*.csrHello-bubble {*/
    /* margin: 70px 0;
    display: inline-block;*/
    /*position: relative;
    display:inherit;
    width: 40px;
    height: 19px;
    background-color: #c3e5f8;
    border: 2px solid #1ca2ec;
    cursor: pointer;
    box-shadow: 1px 1px 10px -1px #aaa;
    border-radius:5px;
}

    .csrHello-bubble:after {
        border-top: 2px solid #1ca2ec;
        border-right: 2px solid #1ca2ec;
        display: inline-block;
        content: '';
        position: absolute;
        background-color: #c3e5f8;
        height: 5px;
        width: 5px;
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        top: 0;
        bottom: 0;
        margin: auto;
        right: -5px;
        border-radius: 0 2px 0 0;
        box-shadow: 1px -1px 4px 0 #eee;
    }
#csrspan {
    margin-left: 4px;
    position: relative;
    top: -5px;
}
#csrNewspan {
    margin-left: 6px;
    position: relative;
    top: 1px;
}*/