/* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */

body {
    /*background-color: #f3f3f3;*/
    /*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
}

section {
    /*width: 650px;*/
    /*background-color: rgba(225,225,225,0.8);*/
    /*background-color: rgba(225,225,225,0.1);*/
/*    margin: 60px auto;
    background-attachment: fixed;
    background-repeat: no-repeat;
    border-radius: 10px;
    border: 1px solid #3E50B5;*/
    /*border:1px solid #fff;*/
    /*padding-bottom: 30px;*/
}

.chat {
    /*padding: 10px 15px 0px 15px;*/
    /*padding: 10px 15px 20px 15px;*/
}

.chat ul {
    list-style: none;
    /*padding: 0;*/
    margin: 0;
}

.chat ul li {
    margin: 45px 0 0 0;
    font-weight: 300;
}

.chat ul li a.user {
    margin: -30px 0 0 0;
    display: block;
    color: #333;
}

.chat ul li a.user img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #f3f3f3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.chat ul li .date {
    font-size: 14px;
    color: #a6a6a6;
}

.chat ul li .message {
    display: block;
    padding: 20px;
    position: relative;
    color: #fff;
    font-size: 15px;
    background-color: #3E50B5;
    /*background-color: #3498db;*/
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.chat ul .other .message {
    background-color: #3498db;
}

.chat ul .other .message:after {
    border-top: 17px solid #3498db;
}

.chat ul li .message:before {
    content: '';
    position: absolute;
    border-top: 16px solid rgba(0, 0, 0, 0.15);
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
}

.chat ul li .message:after {
    content: '';
    position: absolute;
    top: 0;
    border-top: 17px solid #3E50B5;
    /*border-top: 17px solid #3498db;*/
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
}

.chat ul li .message.blur p {
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
}

.chat ul li .message.blur .hider {
    opacity: 1;
    z-index: 1;
}

.chat ul li .message p {
    margin: 0;
    /*padding: 0;*/
    transition: all 0.1s;
}

.chat ul li .message .hider {
    opacity: 0;
    z-index: -1;
    position: absolute;
    height: 100%;
    width: 100%;
    margin: -10px;
    text-align: center;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.1s;
}

.chat ul li .message .hider span {
    display: block;
    position: relative;
    top: 50%;
    font-size: 16px;
    transform: translateY(-50%);
}

.chat ul li.other a.user {
    float: right;
}

.chat ul li.other .date {
    float: right;
    margin: -20px 10px 0 0;
}

.chat ul li.other .message {
    margin: 0 90px 0 0;
}

.chat ul li.other .message:before {
    margin: -20px -16px 0 0;
    right: 0;
}

.chat ul li.other .message:after {
    content: '';
    right: 0;
    margin: 0 -15px 0 0;
}

.chat ul li.you a.user {
    float: left;
}

.chat ul li.you .date {
    float: left;
    margin: -20px 0 0 10px;
}

.chat ul li.you .message {
    margin: 0 0 0 90px;
}

.chat ul li.you .message:before {
    margin: -20px 0 0 -16px;
    left: 0;
}

.chat ul li.you .message:after {
    content: '';
    left: 0;
    margin: 0 0 0 -15px;
}

.chat ul li {
    display: none;
}


/*    .form-control-static {
        padding-top: 6px;
    }*/