/* WELL */
.well {
	background-image: linear-gradient(to bottom,#f1f5f8 0,#f1f5f8  100%);
	box-shadow: none;
	border-color: #f1f5f8;
	border-radius:5px;
}
.well:hover {
	background-image: linear-gradient(to bottom,#d7dadc 0,#d7dadc 100%);
	transition: all 0.2s ease;
	border-color: #d7dadc;
}

/* CHATBOT */
#chatBotOuterContainer {
	background-color:#f1f5f8; padding:30px;
}
#chatBotInnerContainer {
	background-color:#fff; border-radius:5px; padding:30px; -moz-box-shadow: 0px 10px 5px 0px #c0c0c0;
	-webkit-box-shadow: 0px 10px 5px 0px #c0c0c0;
	-o-box-shadow: 0px 10px 5px 0px #c0c0c0;
	box-shadow: 0px 10px 5px 0px #c0c0c0;
	filter:progid:DXImageTransform.Microsoft.Shadow(color=#c0c0c0, Direction=180, Strength=5);
}

#chatContainer {
    min-height: 400px;
}
.chatBox {
    clear:both;
}

.chatInput {
  /* max-width: 600px; */
	border-top:1px solid #f1f5f8;
	padding-top:20px;
}
.botAvatar {
    width:48px;
    height:48px;
    border-radius:50%;
}

.botIcon {
    width:50px;
    height:50px;
    border-radius:50%;
}

.bubble {
    box-sizing: border-box;
    width: auto;
    max-width: 80%;
    position: relative;
    clear: both;
    /* background: #eaeaea; */
		background:#f1f5f8;
    /* border: solid 1px rgba(234,234,234,1); */
		border: solid 1px rgba(241,245,248,1);
    /* -webkit-border-radius: 20px; */
    /* -moz-border-radius: 20px; */
    /* border-radius: 20px; */
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius:5px;
    margin-bottom: 20px;
    padding: 6px 20px;
    color: #000;
    word-wrap: break-word;
    display:inline-block;
}

.bubble:before, .bubble:after {
    border-radius: 20px / 5px;
    content: '';
    display: block;
    position: absolute;
}
.bubble:before {
    border: 10px solid transparent;
    border-bottom-color: rgba(234,234,234,1);
    bottom: 0px;
    left: -7px;
    z-index: -2;
}
.bubble:after {
    /* border: 8px solid transparent; */
    /* border-bottom-color: #eaeaea; */ /* arrow color */
		/* bottom: 1px; */
    /* left: -5px; */
}

.bubble-alt {
    float: right;
    /* background: #0084ff; */
		background: #509de1;
    /* border: solid 1px rgba(0,132,255,1); */
		border: solid 1px rgba(80,157,225,1);
    color:#fff;
}
.bubble-alt:before {
    left: auto;
    right: -7px;
}
.bubble-alt:after {
    left: auto;
    right: -5px;
    border-bottom-color: #0084ff;
}

.bubble p {
    font-size: 1.4em;
}

.bubble .btn {
	margin:20px 0 15px 0;
}


/*** Style pour sticky bottom right ***/
.chatbot-sticky{
    position: fixed;
    z-index: 1031;
}

.sticky-top{
    top: 0;
}

.sticky-bottom{
    bottom: 0;
}
.sticky-left{
    left: 15px;
}
.sticky-right{
    right: 15px;
}

.chatbot-sticky .panel{
     margin-bottom: 0;
}
.chatbot-sticky .panel-heading{
    position: relative;
}
.chatbot-sticky .panel-heading .fa-remove{
    display: none;
}

.sticky-bottom .panel{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.sticky-top .panel{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.chatbot-sticky.in .panel-heading .fa-remove{
    display: block;
    position: absolute;
    top: 10px;
    right: 5px;
}

.chatbot-sticky .panel-body{
    display: none;
    padding: 0;
    height: 400px;
}

/*** Style Iframe ***/
.chatbot-sticky .panel-body iframe {
    border: 0;
    height: 400px;
}

#standAloneChatContainer .chatInput {
	position: fixed;
	border: 5px solid #fff;
	bottom: 0;
	right: 0;
	left: 0;
}

#standAloneChatContainer #chatContainer {
    overflow: hidden;
    margin: 0;
    padding:10px;
}
