﻿
/** page structure **/
.bubblecontainer {
    /*padding: 20px 20px;*/
    /*padding-top: 5px;
    padding-bottom: 20px;*/
    /*padding-right: 40px;*/
    margin: 0 auto;
    max-width: 600px;
}

    .bubblecontainer p {
        margin-bottom: 0px;
    }

.bubbledatestamp {
    padding-top: 20px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    /*margin-bottom: 8px;*/
    width: 100%;
    color: #8b91a0;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.6);
}



.bubbledatestamp-alt {
    text-align: right;
}


/** ios1-ios6 bubbles **/
.bubble {
    /*display: inline-block;*/
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 8px;
    padding-bottom: 10px;
    box-sizing: border-box;
    float: left;
    width: auto;
    min-width: 65px;
    max-width: 80%;
    position: relative;
    clear: both;
    background: #95c2fd;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.15, #bee2ff), color-stop(1, #95c2fd));
    background-image: -webkit-linear-gradient(bottom, #bee2ff 15%, #95c2fd 100%);
    background-image: -moz-linear-gradient(bottom, #bee2ff 15%, #95c2fd 100%);
    background-image: -ms-linear-gradient(bottom, #bee2ff 15%, #95c2fd 100%);
    background-image: -o-linear-gradient(bottom, #bee2ff 15%, #95c2fd 100%);
    background-image: linear-gradient(bottom, #bee2ff 15%, #95c2fd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#95c2fd', endColorstr='#bee2ff');
    border: solid 1px rgba(0,0,0,0.5);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: inset 0 8px 5px rgba(255,255,255,0.65), 0 1px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 8px 5px rgba(255,255,255,0.65), 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: inset 0 8px 5px rgba(255,255,255,0.65), 0 1px 2px rgba(0,0,0,0.2);
    /*margin-bottom: 20px;*/
    /*padding: 6px 20px;*/
    color: #000;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
    word-wrap: break-word;
}

    .bubble:before, .bubble:after {
        border-radius: 20px / 5px;
        content: '';
        display: block;
        position: absolute;
    }

    .bubble:before {
        border: 10px solid transparent;
        border-bottom-color: rgba(0,0,0,0.5);
        bottom: 0px;
        left: -7px;
        /* z-index: -2; */
    }

    .bubble:after {
        border: 9.4px solid transparent;
        border-bottom-color: #bee2ff; /* arrow color */
        bottom: 1px;
        left: -5px;
    }

.bubble-alt {
    float: right;
    display: block;
}

    .bubble-alt:before {
        left: auto;
        right: -7px;
    }

    .bubble-alt:after {
        left: auto;
        right: -5px;
    }

.bubble p {
    font-size: 12px;
}

/* yellow bubble */
.bubbleyellow {
    background: #7acd47;
    background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.15, #fcf3c3),color-stop(1, #f4e371));
    background-image: -webkit-linear-gradient(bottom, #fcf3c3 15%, #f4e371 100%);
    background-image: -moz-linear-gradient(bottom, #fcf3c3 15%, #f4e371 100%);
    background-image: -ms-linear-gradient(bottom, #fcf3c3 15%, #f4e371 100%);
    background-image: -o-linear-gradient(bottom, #fcf3c3 15%, #f4e371 100%);
    background-image: linear-gradient(bottom, #fcf3c3 15%, #f4e371 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#f4e371', endColorstr='#fcf3c3');
}

    .bubbleyellow:after {
        border-bottom-color: #fcf3c3;
    }

/* white bubble */
.bubblewhite {
    background: #7acd47;
    background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.15, #e5e5e5),color-stop(1, #dbdbdb));
    background-image: -webkit-linear-gradient(bottom, #e5e5e5 15%, #dbdbdb 100%);
    background-image: -moz-linear-gradient(bottom, #e5e5e5 15%, #dbdbdb 100%);
    background-image: -ms-linear-gradient(bottom, #e5e5e5 15%, #dbdbdb 100%);
    background-image: -o-linear-gradient(bottom, #e5e5e5 15%, #dbdbdb 100%);
    background-image: linear-gradient(bottom, #e5e5e5 15%, #dbdbdb 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#dbdbdb', endColorstr='#e5e5e5');
}

    .bubblewhite:after {
        border-bottom-color: #e5e5e5;
    }

/* green bubble */
.bubblegreen {
    background: #7acd47;
    background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.15, #ace44b),color-stop(1, #7acd47));
    background-image: -webkit-linear-gradient(bottom, #ace44b 15%, #7acd47 100%);
    background-image: -moz-linear-gradient(bottom, #ace44b 15%, #7acd47 100%);
    background-image: -ms-linear-gradient(bottom, #ace44b 15%, #7acd47 100%);
    background-image: -o-linear-gradient(bottom, #ace44b 15%, #7acd47 100%);
    background-image: linear-gradient(bottom, #ace44b 15%, #7acd47 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#7acd47', endColorstr='#ace44b');
}

    .bubblegreen:after {
        border-bottom-color: #ace44b;
    }


.bubblered {
    background: #DC143C;
    background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.15, #FA8072),color-stop(1, #DC143C));
    background-image: -webkit-linear-gradient(bottom, #FA8072 15%, #DC143C 100%);
    background-image: -moz-linear-gradient(bottom, #FA8072 15%, #DC143C 100%);
    background-image: -ms-linear-gradient(bottom, #FA8072 15%, #DC143C 100%);
    background-image: -o-linear-gradient(bottom, #FA8072 15%, #DC143C 100%);
    background-image: linear-gradient(bottom, #FA8072 15%, #DC143C 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#DC143C', endColorstr='#FA8072');
}

    .bubblered:after {
        border-bottom-color: #FA8072;
    }



.textarea TEXTAREA {
    /*width: 450px !important;
        min-width: 450px !important;
        height: 50px;
        min-height: 50px;*/
    border: none;
    background-color: #ffffff;
    /*font-family: 'Myriad Pro';
        font-size: 15px;*/
    color: rgba(0, 0, 0, 0.8);
    padding: 5px;
    margin: 0px 20px 0px 0px;
    box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.2), 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}


.sms_info {
    background-color: #F6F6F6;
    border-radius: 5px;
    padding: 20px 15px 15px 15px;
    margin: 10px 0px 20px 0px;
    font-size: 16px;
    text-align: center;
}

    .sms_info b {
        font-size: 18px;
    }

    .sms_info hr {
        display: block;
        background-color: white;
        margin: 15px 0px 20px 0px;
        padding: 0px;
        height: 2px;
        border: none;
    }

#sms_details {
}

    #sms_details .udh,
    #sms_details .regular,
    #sms_details .unicode,
    #sms_details .special {
        float: left;
        color: white;
        font-family: monospace;
        text-align: center;
        padding: 2px 0px;
        margin: 1px;
        font-size: 10px;
    }

    #sms_details .udh,
    #sms_details .special {
        background-color: #636363;
    }

    #sms_details .unicode {
        background-color: #3b6fcf;
    }

    #sms_details .regular {
        background-color: #949494;
    }

.charset_unicode div {
    width: 20px;
}

.charset_unicode .udh {
    width: 64px;
}

.charset_regular div {
    width: 10px;
}

.charset_regular .udh {
    width: 82px;
}

#sms_details .sms_part {
    border: 1px solid gray;
    border-radius: 3px;
    width: 100%;
    padding: 3px;
    margin: 5px 0px;
    background-color: white;
}
