.chat-window *,
.chat-window *:after,
.chat-window *:before {-webkit-box-sizing: border-box;box-sizing: border-box;}
.chat-window button:focus {-webkit-tap-highlight-color: rgba(255,255,255,0);-webkit-tap-highlight-color: transparent;outline: none;}

@keyframes chat_window_anim {
	from{
		transform: translateY(50px);
		opacity: 0;
	}
	to{
		transform: translateY(0);
		opacity: 1;
	}
}

.chat-window {
    position: fixed;
    bottom: 0;
    right: 120px;
    width: 320px;
    margin: 0 auto;
    overflow: hidden;
	border-radius: 8px 8px 0 0;
    color: #474c57;
    font-family: Arial, Verdana, sans-serif;
	z-index: 999999;
	box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	border: 1px solid rgba(0, 0, 0, 0.11);
	border-bottom: 0;
	animation: chat_window_anim;
	animation-duration: .3s;
}

.chat-messages {
	height: 400px !important;
	overflow-x: hidden;
	overflow-y: auto;
	width: 100%;
	position: relative;
	background: #f8fbfc;
}

.chat-messages-list {
	list-style-type: none;
	margin: 0;
	width: 100%;
	padding: 15px;
}

.chat-message {
	position: relative;
	font-size: 0;
	margin-bottom: 10px;
}

.chat-message-effect {
	position: absolute;
}

.chat-message-bubble {
	display: inline-block;
	font-size: 14px;
	max-width: 350px;
	background: #eee;
	padding: 8px 14px;
	border-radius: 18px;
	min-width: 0;
	word-break: break-word;
}
.chat-message-bubble a{color: #0097e2;font-size:14px}
.chat-message-bubble a:hover{color: #0076bb;}
.chat-message-self .chat-message-bubble a{color:#ddffed;}
.chat-message-self .chat-message-bubble a:hover{color:white;}

.chat-message-self.chat-message-merge-start .chat-message-bubble {
	border-bottom-right-radius: 0;
}

.chat-message-self.chat-message-merge-middle .chat-message-bubble {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.chat-message-self.chat-message-merge-end .chat-message-bubble {
	border-top-right-radius: 0;
}

.chat-message-self {
	text-align: right;
}

.chat-message-self .chat-message-bubble,
.chat-message-effect .chat-message-bubble { 
	background: #69b28b;
	color: #fff;
	text-align: left;
}

.chat-input-bar {
	position: relative;
	background: white;
	border-top: 1px solid #e0e0e0;
	box-shadow: 0 0 2px rgba(0, 0, 0, .1);
}

.chat-input-wrapper {
	position: relative;
	z-index: 2;
	padding: 0.5em 0;
	border-radius: 0 0 2px 2px;
	color: #333;
}
.chat-send{
	display: block;
	position: absolute;
	top: 8px;
	right: 10px;
	width: 39px;
	height: 39px;
	padding: 0;
	background: #84c1a1 url('//imgrabo.com/design/_opoznai.bg/messenger_send_icon.png') center no-repeat;
	background-size: cover;
	border-radius: 50%;
	z-index:10;
	border:0;
}
.chat-send.active{background-color: #9ac79c;}
.chat-send:hover{background-color: #6daf8c;}
.chat-send:active{background-color: #548e6d;}

.chat-input-wrapper,
.chat-send {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	font-size: 16px;
}

.chat-input-tool {
	display: none !important;
	background: transparent;
	border: none;
	padding: 0 0.75em;
	color: inherit;
}

.chat-input {
	outline: none;
	resize: none;
	overflow: hidden;
	min-height: 38px;
	-webkit-flex: 1;
	flex: 1;
	font-size: 14px;
	padding: 10px 60px 7px 15px;
	cursor: text;
}

.chat-input:empty::before {
	content: "Напишете съобщение...";
	color: #c1c1c1;
}

.chat-input:focus::before {
	content: "";
}

.chat-effect-container {
	display: none !important;
	position: absolute;
	top: -100px;
	width: 100%;
}

.chat-effect-bar {
	background: #69b28b;
	position: absolute;
	top: 100px;
	width: 100%;
	height: 40px;
	-webkit-transform: rotateY(0);
	transform: rotateY(0);
}

.chat-effect-dots {
	position: absolute;
}

.chat-effect-dot {
	background: #69b28b;
	position: absolute;
	width: 15px;
	height: 15px;
	border-radius: 100%;
}

.chat-info-container {
	position: absolute;
	top: -20px;
	font-size: 12px;
	color: #2B8EC2;
}

.chat-info-typing {
	position: absolute;
	left: 80px;
	white-space: nowrap;
}




.chat-user-info {
	border-bottom: 1px solid #f1f1f1;
	padding: 7px 14px;
	height: 47px;
	color: #949494;
	background-color: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 3;
}
.chat-user-info .guide_review_user_pic{ }
.chat-user-fullname{
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 14px;
	line-height:32px;
	color: #333;
}
.close-chat{
	display: block;
	float: right;
	background: url('//imgrabo.com/design/_opoznai.bg/close_icon_14x14.png') no-repeat;
	width: 13px;
	height: 13px;
	cursor: pointer;
	margin: 10px 0 0 10px;
	opacity:.2;
}
.close-chat:hover{opacity:.4;}
.close-chat:active{opacity:.6;}

.chat-settings{
	display: block;
	float: right;
	position: relative;
	margin: 4px -5px 0 10px;
	overflow: visible;
}
.chat-settings-icon{
	display: inline-block;
	background:white url('//imgrabo.com/design/_opoznai.bg/cog_icon_16.png') center no-repeat;
	width: 26px;
	height: 25px;
	cursor: pointer;
	opacity:.2;
	position: relative;
	z-index:3;
	border:1px solid transparent;
	box-sizing: border-box;
}
.chat-settings-dropdown{
	display: none;
	position: absolute;
	top:24px;
	right:0;
	background: white;
	min-width:100px;
	border:1px solid #dddddd;
	z-index:2;
}
.chat-settings-dropdown a{
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	line-height: 32px;
	padding:0 20px 0 8px;
	color: #333;
	border-bottom: 1px solid #f7f7f7;
}
.chat-settings-dropdown a:last-of-type{
	border-bottom:0;
}
.chat-settings-dropdown a:hover{
	color: #017aa0;
	background: #fbfbfb;
}
.chat-settings-dropdown hr{
	padding: 0;
	border-top: 1px solid #e4e4e4;
	margin: -1px 0 0;
}
.chat-settings:hover .chat-settings-icon{
	border-color: #dddddd;
	border-bottom-color: white;
	opacity:1;
}
.chat-settings:hover .chat-settings-dropdown{
	display: block;
}
.messenger_write_blocked{
	display: table;
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width: 100%;
	height: 50px;
	border: 0;
	background: white;
	z-index:2;
}
.messenger_write_blocked_wrap{
	display: table-cell;
	vertical-align: middle;
	padding:4px 15px;
	font-family: Verdana, sans-serif;
	font-size: 11px;
	line-height: 1.3em;
	color: #a04848;
	text-align: center;
	box-sizing: border-box;
}
.messenger_write_blocked a{
	color: #017aa0;
	font-size: 11px;
}