<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Chat*/
.chat-hidden {
	display: none;
}
.chat-window {
	position:absolute;
	cursor:move;
	top:100px;
	left:100px;
	z-index:500;
	background: -moz-linear-gradient(top, rgba(60,60,60,0.5) 0%, rgba(0,0,0,0.5) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(60,60,60,0.5)), color-stop(100%, rgba(0,0,0,0.5)));
	background: -webkit-linear-gradient(top, rgba(60,60,60,0.5) 0%, rgba(0,0,0,0.5) 100%);
	background: -o-linear-gradient(top, rgba(60,60,60,0.5) 0%, rgba(0,0,0,0.5) 100%);
	background: -ms-linear-gradient(top, rgba(60,60,60,0.5) 0%, rgba(0,0,0,0.5) 100%);
	background: linear-gradient(to bottom, rgba(60,60,60,0.5) 0%, rgba(0,0,0,0.5) 100%);
	padding: 9px 115px 9px 9px;
	border-radius:16px;
	-moz-border-radius:16px;
	-webkit-border-radius:16px;
	font-family:"MyriadProRegular", "Trebuchet MS", Arial, Helvetica, sans-serif;
	min-width: 754px; /*Ð•ÑÐ»Ð¸ ÑƒÐ±Ñ€Ð°Ñ‚ÑŒ ÑÑ‚Ð¾ ÑÐ²Ð¾Ð¹ÑÑ‚Ð²Ð¾ Ñ‡Ð°Ñ‚ Ð¼Ð¾Ð¶Ð½Ð¾ ÑÐ¶Ð°Ñ‚ÑŒ Ð·Ð½Ð°Ñ‡Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾ ÑƒÐ¶Ðµ*/
	box-sizing: border-box;
}

.chat-window .close {
	cursor:pointer;
	position:absolute;
	display:block;
	width:57px;
	height:55px;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	background:url(../img/close.png) no-repeat 50% 50%, rgba(0, 0, 0, 0.25);
	top:24px;
	right:20px;
}
.chat-window .close:hover {background-color: rgba(0, 0, 0, 0.5);}

.chat-window .mainbg {
	background:#ededed;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	box-shadow:0 0 5px rgba(0, 0, 0, 0.7);
	-moz-box-shadow:0 0 5px rgba(0, 0, 0, 0.7);
	-webkit-box-shadow:0 0 5px rgba(0, 0, 0, 0.7);
	padding:251px 15px 9px 15px;
	position:relative;
	cursor:default;
	min-width: 600px; /*Ð•ÑÐ»Ð¸ ÑƒÐ±Ñ€Ð°Ñ‚ÑŒ ÑÑ‚Ð¾ ÑÐ²Ð¾Ð¹ÑÑ‚Ð²Ð¾ Ñ‡Ð°Ñ‚ Ð¼Ð¾Ð¶Ð½Ð¾ ÑÐ¶Ð°Ñ‚ÑŒ Ð·Ð½Ð°Ñ‡Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾ ÑƒÐ¶Ðµ*/
	box-sizing: content-box;
}

.chat-window .top-line1 {
	display: none;
	position:absolute;
	height: 41px;
	border-bottom: solid #fff 1px;
	width: 100%;
	top: 0;
	border-radius: 6px 6px 0 0;
	-moz-border-radius: 6px 6px 0 0;
	-webkit-border-radius: 6px 6px 0 0;
	background: -webkit-linear-gradient(top, rgba(254,254,254,0.5) 0%, rgba(249,249,249,0.5) 30%, rgba(243,243,243,0.5) 60%, rgba(239,239,239,0.5) 100%);
	background: linear-gradient(to bottom, rgba(254,254,254,0.5) 0%, rgba(249,249,249,0.5) 30%, rgba(243,243,243,0.5) 60%, rgba(239,239,239,0.5) 100%);
}

.chat-window .top-line1 .left {
	float: left;
	font:normal 15px/15px "MyriadProSemibold", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin-left: 22px;
	margin-top: 13px;
}
.chat-window .top-line1 .text {
	font-weight: normal;
}

.chat-window .top-line1 .right {
	float: right;
	padding-top: 11px;
	padding-right: 7px;
}

.chat-window .l:after,
.chat-window .r:after,
.chat-window .t:after,
.chat-window .b:after {
	box-shadow:1px 1px 0 #fff, inset 0 1px 2px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:1px 1px 0 #fff, inset 0 1px 2px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:1px 1px 0 #fff, inset 0 1px 2px rgba(0, 0, 0, 0.5);
	position:absolute;
	content:'';
	display:block;
}

.chat-window .l,
.chat-window .r {
	width:3px;
	z-index:20;
	position:absolute;
	top:6px;
	bottom:6px;
	overflow:hidden;
	z-index:30;
}

.chat-window .l:after,
.chat-window .r:after {
	top:-10px;
	bottom:-10px;
	width:30px;
}

.chat-window .l:after {
	left:0;
}

.chat-window .r:after {
	right:1px;
}

.chat-window .l {
	left:0;
}

.chat-window .r {
	right:-1px;
}

.chat-window .t,
.chat-window .b {
	position:absolute;
	left:0;
	right:-1px;
	height:6px;
	overflow:hidden;
	z-index:30;
}

.chat-window .t:after,
.chat-window .b:after {
	position:absolute;
	height:20px;
	left:0;
	right:1px;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

.chat-window .t {
	top:0;
}

.chat-window .b {
	bottom:0;
}

.chat-window .t:after {
	top:0;
}

.chat-window .b:after {
	bottom:1px;
}

.chat-window .top-hold {
	position:absolute;
	top:8px;
	left:15px;
	right:16px;
	bottom:144px;
	background: #f8f8f8;
	background: -moz-linear-gradient(top, #f8f8f8 0%, #dedede 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8f8f8), color-stop(100%, #dedede));
	background: -webkit-linear-gradient(top, #f8f8f8 0%, #dedede 100%);
	background: -o-linear-gradient(top, #f8f8f8 0%, #dedede 100%);
	background: -ms-linear-gradient(top, #f8f8f8 0%, #dedede 100%);
	background: linear-gradient(to bottom, #f8f8f8 0%, #dedede 100%);
	padding:10px;
}

.chat-window .bottom-hold {
	background: #dbe1e6;
	background: -moz-linear-gradient(top, #dbe1e6 0%, #e4e9ec 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dbe1e6), color-stop(100%, #e4e9ec));
	background: -webkit-linear-gradient(top, #dbe1e6 0%, #e4e9ec 100%);
	background: -o-linear-gradient(top, #dbe1e6 0%, #e4e9ec 100%);
	background: -ms-linear-gradient(top, #dbe1e6 0%, #e4e9ec 100%);
	background: linear-gradient(to bottom, #dbe1e6 0%, #e4e9ec 100%);
	padding:0 77px 0 10px;
	position:relative;
	height:126px;
	left: -2px;
	margin-left: 2px;
}

.chat-scroll {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	overflow:hidden;
	overflow-y:auto;
}

.chat-scroll .indent {
	display: flex; flex-direction: column;
	padding:6px 15px 10px 10px;
}
.chat-scroll .indent.hidden {display: none !important; visibility: hidden;}
.chat-scroll .indent:after {
	content: ' ';
	clear:both;
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	font-size: 0;
}

.corner {
	width:5px;
	height:5px;
	overflow:hidden;
	display:block;
	position:absolute;
	z-index:20;
}

.corner:after {
	display:block;
	width:10px;
	height:10px;
	overflow:hidden;
	border:10px solid #ededed;
	content:'';
	border-radius:15px;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	position:absolute;
}

.corner.tl {
	top:0;
	left:0;
}

.corner.tr {
	top:0;
	right:0;
}

.corner.bl {
	bottom:0;
	left:0;
}

.corner.br {
	bottom:0;
	right:0;
}

.corner.tl:after {
	top:-10px;
	left:-10px;
}

.corner.tr:after {
	top:-10px;
	right:-10px;
}

.corner.bl:after {
	bottom:-10px;
	left:-10px;
}

.corner.br:after {
	bottom:-10px;
	right:-10px;
}

.chat-window .bottom-hold textarea {
	background:none;
	display:block;
	margin:0;
	padding: 8px 0;
	border:0;
	height: 126px;
	min-height:47px;
	max-height:300px;
	min-width: 512px;
	width:578px;
	font-size:15px;
	line-height:18px;
	text-shadow:0 1px 0 rgba(255, 255, 255, 0.7);
	color:#444e5a;
	resize: both;
	font-family:"MyriadProRegular", "Trebuchet MS", Arial, Helvetica, sans-serif;
	box-sizing: border-box;
}

.chat-window .bottom-hold.disabled {
	background: none;
}

.chat-window .bottom-hold.disabled textarea {
	visibility: hidden;
}

.chat-window .bottom-hold .disabled-message {
	font-family: "Myriad Pro", sans-serif;
	font-size: 15px;
	line-height: 35px;
	color: #333;
	text-shadow: 0 1px rgba(255,255,255,.75);
	text-align: center;
	display: none;
}

.chat-window .bottom-hold.disabled .disabled-message {
	display: block;
}

.chat-window .bottom-hold input[type="submit"] {
	cursor:pointer;
	border:0;
	background:url(../img/message-submit2.png) no-repeat;
	width:55px;
	height:48px;
	margin:0;
	padding:0;
	position:absolute;
	top:7px;
	right:10px;
}

.chat-window .bottom-hold input[type="submit"]:hover:not(.disabled) {
	background-position:0 -48px;
}
.chat-window .bottom-hold input[type="submit"]:active:not(.disabled) {
	background-position:0 -96px;
}
.chat-window .bottom-hold input[type="submit"].disabled {
	background-position:0 -144px;
	cursor: default;
}

.chat-nav {
	list-style:none;
	position:absolute;
	bottom:9px;
	left:100%;
	margin:0 0 0 -115px;
	padding:8px 8px 8px 0;
	font-size:18px;
	line-height:58px;
	overflow:hidden;
	width: 141px;
	font-family:"MyriadProSemibold", "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.chat-nav:after {
	content:'';
	display:block;
	position:absolute;
	top:5px;
	bottom:8px;
	left:0;
	z-index:10;
	width:22px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,.5) 0%, rgba(0,0,0,.4) 20%, rgba(255,255,255,0) 100%);
	background-image: -moz-linear-gradient(left, rgba(0,0,0,.2), rgba(255,255,255,0));
	background-image: -o-linear-gradient(left, rgba(0,0,0,.2), rgba(255,255,255,0));
	background-image: -ms-linear-gradient(left, rgba(0,0,0,.2), rgba(255,255,255,0));
	background-image: linear-gradient(to right, #9f9f9f 0%, rgba(0,0,0,.3) 2%, rgba(0,0,0,.2) 20%, rgba(255,255,255,0) 100%);
}

.chat-nav li {
	margin:0;
	padding:0;
}

.chat-nav li:after {
	content: ' ';
	clear:both;
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	font-size: 0;
}

.chat-nav a {
	display:block;
	float:left;
	text-decoration:none;
	white-space:nowrap;
	position:relative;
	height:58px;
	color:#707070;
	text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);
	margin:-3px 0 0 -20px;
	padding:0 0 0 35px;
	min-width: 125px;
	box-shadow:0 1px 8px rgba(0, 0, 0, 0.8), inset 0 0 0 3px #fff;
	-moz-box-shadow:0 1px 8px rgba(0, 0, 0, 0.8), inset 0 0 0 3px #fff;
	-webkit-box-shadow:0 1px 8px rgba(0, 0, 0, 0.8), inset 0 0 0 3px #fff;
	-webkit-border-top-right-radius: 19px;
	-webkit-border-bottom-right-radius: 19px;
	-moz-border-radius-topright: 19px;
	-moz-border-radius-bottomright: 19px;
	border-top-right-radius: 19px;
	border-bottom-right-radius: 19px;
	z-index:1;
	background: #f7f7f7;
	background: linear-gradient(to bottom, #f7f7f7 0%, #e3e3e3 100%);
	box-sizing: border-box;
}

.chat-nav a.small {
	font-size: 16px;
	padding-left: 32px;
	width: 90px;
}

.chat-nav a:hover {
	background: #f7f7f7;
	background: -moz-linear-gradient(top, #f7f7f7 0%, #efeded 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #efeded));
	background: -webkit-linear-gradient(top, #f7f7f7 0%, #efeded 100%);
	background: -o-linear-gradient(top, #f7f7f7 0%, #efeded 100%);
	background: -ms-linear-gradient(top, #f7f7f7 0%, #efeded 100%);
	background: linear-gradient(to bottom, #f7f7f7 0%, #efeded 100%);
}

.chat-nav a.new-massage {
	transition: all 0.3s linear;
	padding-right: 36px;
}
.chat-nav a[iq=dontLike]{
	width: 51px;
}
.chat-nav a[iq=dontLike] .pic-like{
	display: none;
}

.chat-nav .active {
	background:#ededed!important;
	z-index:20;
	cursor:default;
}
.chat-nav .pic-new-mail {
	opacity:0;
	position:absolute;
	top:21px;
	right:14px;
}

.chat-nav a.new-massage .pic-new-mail {
	-webkit-transition: all 1s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	opacity:100;
}

.chat-nav .text {
	/*text-align:center;*/
	text-align: left;
	display: inline-block;
	padding-top: 10px;
	white-space: normal;
	line-height: 18px;
}
.pic-like {
	display:inline-block;
	vertical-align:middle;
	background:url(../img/like-btns.png) no-repeat 0 -9999px;
	width:43px;
	height:45px;
}

.pic-like.bg-like {
	background-position:0 -112px;
}

.pic-like.bg-dislike {
	background-position:0 0;
	width: 0px;
}

.pic-like.bg-qu {
	background-position:0 -55px;
}

.pic-new-mail {
	display:block;
	background:url(../img/mail.png) no-repeat;
	width:23px;
	height:15px;
	animation:mail-blink 1s infinite;
	-moz-animation:mail-blink 1s infinite; /* Firefox */
	-webkit-animation:mail-blink 1s infinite; /* Safari and Chrome */
}

@keyframes mail-blink {
	0% {
		box-shadow:0 0 13px -5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
	}
	50% {
		box-shadow:none;
	}
	100% {
		box-shadow:0 0 13px -5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
	}
}

/* ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½: ï¿½ï¿½ï¿½ï¿½ ï¿½ ï¿½ï¿½ï¿½ï¿½ï¿½
@-webkit-keyframes mail-blink {
0% {
-webkit-box-shadow:0 0 13px -5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
}
50% {
-webkit-box-shadow:none;
}
100% {
-webkit-box-shadow:0 0 13px -5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
}
}
}
*/

@-moz-keyframes
mail-blink {
	0% {
		-moz-box-shadow:0 0 13px -5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
	}
	50% {
		-moz-box-shadow:none;
	}
	100% {
		-moz-box-shadow:0 0 13px -5px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
	}
}

.people .pic-new-mail{
	position: absolute;
	top: 9px;
	right: 35px;
}
.orders .pic-new-mail{
	position: absolute;
	top: 14px;
	right: 37px;
	z-index: 10;
}
.orders .pic-new-mail a{
	display: block;
	width: 23px;
	height: 15px;
}
.side-link .pic-new-mail{
	font-size: 0px;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	margin: 7px 0px 0px 3px;
}

.message {
	display: flex; flex-direction: column;
	font-size:13px;
	line-height:18px;
	color:#000;
	text-shadow:0 1px 0 rgba(255, 255, 255, 0.3);
	margin:18px 0 0 0;
}

.message:first-child,
.sep + .message {
	margin:0;
}

.message header {
	color:#666;
}

.message header:after {
	content: ' ';
	clear:both;
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	font-size: 0;
}

.message .date1 {
	float:right;
	color:#666;
}

.message .author {
	float:left;
	min-width:65px;
	text-align:right;
	white-space:nowrap;
	color:#666;
}

.message .author1 {
	float:left;
	width:65px;
	white-space:nowrap;
	position:relative;
	overflow:hidden;
	text-overflow:ellipsis;
	text-align:right;
	color:#0060b8;
	margin:0 22px 0 0;
}

.message .pic-new-mail {
	float:right;
	margin:0 10px 0 0;
	cursor: pointer;
}

.chat-window .sep {
	margin:12px 0 6px 87px;
	zoom:1;
	overflow:hidden;
	font-size:13px;
	color:#666;
	line-height:18px;
	text-shadow:0 1px 0 rgba(255, 255, 255, 0.3);
}

.chat-window .sep span {
	float:left;
	margin:0 9px 0 0;
	font-weight: bold;
}

.chat-window .sep .line {
	height:1px;
	position:relative;
	overflow:hidden;
	background:rgba(255, 255, 255, 0.5);
	border-top:1px solid #b5b7bd;
	top:9px;
}

.action {
	float:left;
	clear:both;
	margin:22px 0 20px 74px;
	padding:19px 16px;
	background:#e1e1e1;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	box-shadow:0 1px 10px rgba(0, 0, 0, 0.75), inset 0 0 0 6px #fff;
	-moz-box-shadow:0 1px 10px rgba(0, 0, 0, 0.75), inset 0 0 0 6px #fff;
	-webkit-box-shadow:0 1px 10px rgba(0, 0, 0, 0.75), inset 0 0 0 6px #fff;
	position:relative;
}

.action ul {
	list-style:none;
	margin:0;
	padding:0;
	float:left;
}

.action ul li {
	float:left;
	margin:0 0 0 10px;
}

.action ul li:first-child {
	margin:0;
}

.action .btn2 {
	padding-left:0;
	padding-right:0;
	width:223px;
	font-size:16px;
	font-weight:normal;
	font-family:"PFDinTextProRegular", "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.action .text {
	position:absolute;
	top:100%;
	right:0;
	margin:3px 0 0 0;
	font:bold 13px/15px Arial, Helvetica, sans-serif;
	color:#637e00;
	text-shadow:0 1px 0 #fff;
}

.side-link {
	position:fixed;
	right:0;
	z-index:550;
	top: 50%;
	margin-top: 83px;
}

.side-link .hold {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	background:url(../img/side-btn-bg.png) no-repeat 50% 100%;
}

.side-link a {
	display:block;
	height:30px;
	position:relative;
	white-space:nowrap;
	font:normal 16px/33px "PFDinTextProMediumRegular", "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-decoration:none;
	text-shadow:-1px 0 0 #fff;
	border:1px solid #c9c9cb;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background:#d0d1d3 url(../img/side-btn.png) repeat-x;
	padding:0 14px;
	color:#707070;
	position:absolute;
	bottom:0;
	z-index:20;
}

.side-link .l {
	display:block;
	position:absolute;
	width:41px;
	height:36px;
	bottom:-1px;
	left:-41px;
	background:url(../img/side-btn-bg.png) no-repeat;
}

.side-link .r {
	display:block;
	position:absolute;
	width:41px;
	height:36px;
	bottom:-1px;
	right:-41px;
	background:url(../img/side-btn-bg.png) no-repeat 100% 0;
}

.side-link a.has-new {
	padding-right:50px;
}

.side-link a:hover {
	background-position:0 -37px;
	background-color:#dde0e5;
}

.side-link a:active {
	background:#ececec;
	box-shadow:inset 0 4px 7px rgba(0, 0, 0, 0.2);
	-moz-box-shadow:inset 0 4px 7px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow:inset 0 4px 7px rgba(0, 0, 0, 0.2);
}

.side-link .new-hold {
	position:absolute;
	right:0;
	top:0;
	display:block;
	border:1px solid #121111;
	background:#343232;
	width:27px;
	height:31px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;
}

.side-link .new {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	position:absolute;
	top:2px;
	left:0;
}

.top-hold .scrollBox {margin-top: -14px;}

.chat-window .vs_title {display: none;}
.chat-window .back_btn {display: none;}

/**
MOBILE ADAPTATION
 */
/*Ð”Ð»Ñ ÑÑ‚Ð°Ñ€Ñ‹Ñ… Ð°Ð¹Ñ„Ð¾Ð½Ð¾Ð² Ð¸ Ð´ÐµÐ²Ð°Ð¹ÑÐ¾Ð² Ð¼ÐµÐ½ÐµÐµ 4.2 Ð´ÑŽÐ¹Ð¼Ð° ÑÐºÑ€Ð°Ð½ */
@media screen and (max-width: 380px) {
	.chat-window {top: 0 !important; margin-top: 0 !important; left: 0 !important; margin-left: 0 !important; height: 100%; border-radius: 0; width: 100%; padding: 0; min-width: auto; position: fixed;}
	.chat-window .mainbg {border-radius: 0; min-width: auto; height: 100%; box-sizing: border-box; background: #dbdbdb;}
	.chat-window .top-line1 {background: #fff; box-shadow: 0 3px 3px rgba(0, 0, 0, .15); border-radius: 0; height: 57px; z-index: 5; display: block; left: 0;}
	.chat-window .top-line1 .left {margin-top: 10px; margin-left: 4px;}
	.chat-window .top-line1 .right {padding-top: 19px; display: none;}
	.chat-window .top-line2 {display: none !important;}
	.chat-window .top-hold {top: 62px; height: calc(100% - 65px); background: none;}
	.chat-window .bottom-hold {position: absolute; top: auto !important; bottom: 0; left: 0; background: #e9e9e9; width: 100%; height: auto !important; margin: 0;}
	.chat-window .bottom-hold textarea {min-width: 100%; width: 100%; padding-right: 5px; height: auto; min-height: 70px; max-height: 190px; overflow: hidden; /*resize: none;*/}
	.chat-window .t, .chat-window .b, .chat-window .l, .chat-window .r,
	.corner.tl, .corner.tr, .corner.bl, .corner.br {display: none;}
	.chat-scroll {padding-bottom: 70px;}
	.chat-scroll .indent {padding-right: 10px; overflow-y: auto; height: 100%;}
	.chat__links {display: none !important;}
	.message {position: relative; background: #fff; border-radius: 5px; padding: 10px 15px; width: 260px; margin-top: 30px;}
	.message.my_msg {background: #a7cfda; align-self: end;}
	.message header {padding-bottom: 4px;}
	.message .date1 {position: absolute; bottom: -18px; font-size: 12px;}
	.message.my_msg .date1 {right: 10px;}
	.message .author {color: #666666; text-align: left; text-shadow: none; font-size: 16px;}
	.chat-window .close {box-sizing: border-box; position: absolute; top: 10px; right: 5px; width: 50px; height: 40px; text-align: center; cursor: pointer; z-index: 10; border-left: 1px solid #e5e5e5; background: none; border-radius: 0;}
	.chat-window .close:before, .chat-window .close:after {content: ''; position: absolute; display: block;width: 26px;height: 3px; background-color: #4a728b; border-radius: 3px; margin: 0 0 3px;transition: all .2s ease-in-out;}
	.chat-window .close:before {transform: translateY(6px) rotate(135deg); top: 13px; left: 13px;}
	.chat-window .close:after {transform: translateY(-6px) rotate(-135deg); top: 24px; left: 13px;}
	.chat-window .back_btn {position: relative; width: 50px; height: 40px; display: inline-block; vertical-align: middle;}
	.chat-window .back_btn:before {content: ''; position: absolute; left: 0; top: 0; width: 50px; height: 40px; -webkit-mask: url('../images/chat/back.svg') no-repeat center; -webkit-mask-size: auto; background: #3e6e99; transform: rotate(180deg);}
	.chat-window .bottom-hold input[type="submit"] {width: 33px; height: 32px; background: #0aadd6 url("../images/chat/msg.svg") no-repeat center; border-radius: 50%; background-size: 19px 13px; top: 20px;}
	.chat-window .bottom-hold input[type="submit"]:hover {background-position: center !important;}
	.chat-window .bottom-hold input[type="submit"].disabled {background-position: center !important;}
	.back_btn:after {content: ''; position: absolute; right: 0; top: 0; width: 1px; height: 100%; border-right: 1px solid #e5e5e5;}
	.chat-window .order_number {margin-left: 12px;}
	.scrollBox {display: none;}
	.chat-window .order_number._hidden {display: none;}
	.chat-window .text._hidden {display: none;}
	.chat-window .vs_title {margin-left: 8px; display: inline;}
	.chat-window .vs_title._hidden {display: none;}
	.chat-window .chat-nav {width: 100%; margin: 0; left: 0; top: 58px; background: #f3f3f3; bottom: auto; z-index: 3; height: 100%; padding: 10px 0;}
	.chat-window .chat-nav._hidden {display: none;}
	.chat-window .chat-nav:after {display: none;}
	.chat-window .chat-nav a {width: 100%; background: none; border: 0; border-bottom: 1px solid #dcdcdc; box-shadow: none; box-sizing: border-box; border-radius: 0; margin: 0; color: #000; padding-left: 35px; padding-right: 0;}
	.chat-window .chat-nav .active {background:#FFFFFF!important;}
	.chat-window .pic-like.bg-qu {float: left; width: 16px; height: 16px; background: #e11a27; margin-top: 21px; margin-right: 7px; border-radius: 3px; position: relative;}
	.chat-window .pic-like.bg-qu:after {content: ''; position: absolute; left: 2px; top: 2px; width: 12px; height: 12px; -webkit-mask: url('../images/chat/acceptance_is_needed.svg') no-repeat center; -webkit-mask-size: contain; background: #fff;}
	.chat-window .pic-like.bg-like {float: left;width: 16px;height: 16px; background: url(../images/chat/good_to_manufacture.svg) no-repeat center; background-size: 100%; margin-top: 21px;margin-right: 7px;}
	.chat-window .pic-new-mail {top: 22px; right: 0; -webkit-mask: url(../images/chat/msg.svg) no-repeat center; background: #0aadd6; margin-right: 18px; float: right;}
	.chat-window .action {margin: 0;}
	.chat-window .action ul li {margin: 5px 0 5px 0; width: 100%; text-align: center;}
}

@media screen and (min-width: 381px) and (max-width: 480px) {
	.chat-window {top: 0 !important; margin-top: 0 !important; left: 0 !important; margin-left: 0 !important; height: 100%; border-radius: 0; width: 100%; padding: 0; min-width: auto; position: fixed;}
	.chat-window .mainbg {border-radius: 0; min-width: auto; height: 100%; box-sizing: border-box; background: #dbdbdb;}
	.chat-window .top-line1 {background: #fff; box-shadow: 0 3px 3px rgba(0, 0, 0, .15); border-radius: 0; height: 57px; z-index: 5; display: block; left: 0;}
	.chat-window .top-line1 .left {margin-top: 10px; margin-left: 4px;}
	.chat-window .top-line1 .right {padding-top: 19px; margin-right: 70px;}
	.chat-window .top-line2 {display: none !important;}
	.chat-window .top-hold {top: 62px; height: calc(100% - 65px); background: none;}
	.chat-window .bottom-hold {position: absolute; top: auto !important; bottom: 0; left: 0; background: #e9e9e9; width: 100%; height: auto !important; margin: 0;}
	.chat-window .bottom-hold textarea {min-width: 100%; width: 100%; padding-right: 5px; height: auto; min-height: 70px; max-height: 190px; overflow: hidden; /*resize: none;*/}
	.chat-window .t, .chat-window .b, .chat-window .l, .chat-window .r,
	.corner.tl, .corner.tr, .corner.bl, .corner.br {display: none;}
	.chat-scroll {padding-bottom: 70px;}
	.chat-scroll .indent {padding-right: 10px; overflow-y: auto; height: 100%;}
	.chat__links {display: none !important;}
	.message {position: relative; background: #fff; border-radius: 5px; padding: 10px 15px; width: 260px; margin-top: 30px;}
	.message.my_msg {background: #a7cfda; align-self: end;}
	.message header {padding-bottom: 4px;}
	.message .date1 {position: absolute; bottom: -18px; font-size: 12px;}
	.message.my_msg .date1 {right: 10px;}
	.message .author {color: #666666; text-align: left; text-shadow: none; font-size: 16px;}
	.chat-window .close {box-sizing: border-box; position: absolute; top: 10px; right: 5px; width: 50px; height: 40px; text-align: center; cursor: pointer; z-index: 10; border-left: 1px solid #e5e5e5; background: none; border-radius: 0;}
	.chat-window .close:before, .chat-window .close:after {content: ''; position: absolute; display: block;width: 26px;height: 3px; background-color: #4a728b; border-radius: 3px; margin: 0 0 3px;transition: all .2s ease-in-out;}
	.chat-window .close:before {transform: translateY(6px) rotate(135deg); top: 13px; left: 13px;}
	.chat-window .close:after {transform: translateY(-6px) rotate(-135deg); top: 24px; left: 13px;}
	.chat-window .back_btn {position: relative; width: 50px; height: 40px; display: inline-block; vertical-align: middle;}
	.chat-window .back_btn:before {content: ''; position: absolute; left: 0; top: 0; width: 50px; height: 40px; -webkit-mask: url('../images/chat/back.svg') no-repeat center; -webkit-mask-size: auto; background: #3e6e99; transform: rotate(180deg);}
	.chat-window .bottom-hold input[type="submit"] {width: 33px; height: 32px; background: #0aadd6 url("../images/chat/msg.svg") no-repeat center; border-radius: 50%; background-size: 19px 13px; top: 20px;}
	.chat-window .bottom-hold input[type="submit"]:hover {background-position: center !important;}
	.chat-window .bottom-hold input[type="submit"].disabled {background-position: center !important;}
	.back_btn:after {content: ''; position: absolute; right: 0; top: 0; width: 1px; height: 100%; border-right: 1px solid #e5e5e5;}
	.chat-window .order_number {margin-left: 12px;}
	.scrollBox {display: none;}
	.chat-window .order_number._hidden {display: none;}
	.chat-window .text._hidden {display: none;}
	.chat-window .vs_title {margin-left: 8px; display: inline;}
	.chat-window .vs_title._hidden {display: none;}
	.chat-window .chat-nav {width: 100%; margin: 0; left: 0; top: 58px; background: #f3f3f3; bottom: auto; z-index: 3; height: 100%; padding: 10px 0;}
	.chat-window .chat-nav._hidden {display: none;}
	.chat-window .chat-nav:after {display: none;}
	.chat-window .chat-nav a {width: 100%; background: none; border: 0; border-bottom: 1px solid #dcdcdc; box-shadow: none; box-sizing: border-box; border-radius: 0; margin: 0; color: #000; padding-left: 35px; padding-right: 0;}
	.chat-window .chat-nav .active {background:#FFFFFF!important;}
	.chat-window .pic-like.bg-qu {float: left; width: 16px; height: 16px; background: #e11a27; margin-top: 21px; margin-right: 7px; border-radius: 3px; position: relative;}
	.chat-window .pic-like.bg-qu:after {content: ''; position: absolute; left: 2px; top: 2px; width: 12px; height: 12px; -webkit-mask: url('../images/chat/acceptance_is_needed.svg') no-repeat center; -webkit-mask-size: contain; background: #fff;}
	.chat-window .pic-like.bg-like {float: left;width: 16px;height: 16px; background: url(../images/chat/good_to_manufacture.svg) no-repeat center; background-size: 100%; margin-top: 21px;margin-right: 7px;}
	.chat-window .pic-new-mail {top: 22px; right: 0; -webkit-mask: url(../images/chat/msg.svg) no-repeat center; background: #0aadd6; margin-right: 18px; float: right;}
	.chat-window .action {margin: 0;}
	.chat-window .action ul li {margin: 5px 0 5px 0; width: 100%; text-align: center;}
}

@media screen and (min-width: 481px) and (max-width: 768px) {
	.chat-window {top: 0 !important; margin-top: 0 !important; left: 0 !important; margin-left: 0 !important; height: 100%; border-radius: 0; width: 100%; padding: 0; min-width: auto; position: fixed;}
	.chat-window .mainbg {border-radius: 0; min-width: auto; height: 100%; box-sizing: border-box; background: #dbdbdb;}
	.chat-window .top-line1 {background: #fff; box-shadow: 0 3px 3px rgba(0, 0, 0, .15); border-radius: 0; height: 57px; z-index: 5; display: block; left: 0;}
	.chat-window .top-line1 .left {margin-top: 10px; margin-left: 4px;}
	.chat-window .top-line1 .right {padding-top: 19px; margin-right: 70px;}
	.chat-window .top-line2 {display: none !important;}
	.chat-window .top-hold {top: 62px; height: calc(100% - 65px); background: none;}
	.chat-window .bottom-hold {position: absolute; top: auto !important; bottom: 0; left: 0; background: #e9e9e9; width: 100%; height: auto !important; margin: 0;}
	.chat-window .bottom-hold textarea {min-width: 100%; width: 100%; padding-right: 5px; height: auto; min-height: 70px; max-height: 190px; overflow: hidden; /*resize: none;*/}
	.chat-window .t, .chat-window .b, .chat-window .l, .chat-window .r,
	.corner.tl, .corner.tr, .corner.bl, .corner.br {display: none;}
	.chat-scroll {padding-bottom: 70px;}
	.chat-scroll .indent {padding-right: 10px; overflow-y: auto; height: 100%;}
	.chat__links {display: none !important;}
	.message {position: relative; background: #fff; border-radius: 5px; padding: 10px 15px; width: 260px; margin-top: 30px;}
	.message.my_msg {background: #a7cfda; align-self: end;}
	.message header {padding-bottom: 4px;}
	.message .date1 {position: absolute; bottom: -18px; font-size: 12px;}
	.message.my_msg .date1 {right: 10px;}
	.message .author {color: #666666; text-align: left; text-shadow: none; font-size: 16px;}
	.chat-window .close {box-sizing: border-box; position: absolute; top: 10px; right: 5px; width: 50px; height: 40px; text-align: center; cursor: pointer; z-index: 10; border-left: 1px solid #e5e5e5; background: none; border-radius: 0;}
	.chat-window .close:before, .chat-window .close:after {content: ''; position: absolute; display: block;width: 26px;height: 3px; background-color: #4a728b; border-radius: 3px; margin: 0 0 3px;transition: all .2s ease-in-out;}
	.chat-window .close:before {transform: translateY(6px) rotate(135deg); top: 13px; left: 13px;}
	.chat-window .close:after {transform: translateY(-6px) rotate(-135deg); top: 24px; left: 13px;}
	.chat-window .back_btn {position: relative; width: 50px; height: 40px; display: inline-block; vertical-align: middle;}
	.chat-window .back_btn:before {content: ''; position: absolute; left: 0; top: 0; width: 50px; height: 40px; -webkit-mask: url('../images/chat/back.svg') no-repeat center; -webkit-mask-size: auto; background: #3e6e99; transform: rotate(180deg);}
	.chat-window .bottom-hold input[type="submit"] {width: 33px; height: 32px; background: #0aadd6 url("../images/chat/msg.svg") no-repeat center; border-radius: 50%; background-size: 19px 13px; top: 20px;}
	.chat-window .bottom-hold input[type="submit"]:hover {background-position: center !important;}
	.chat-window .bottom-hold input[type="submit"].disabled {background-position: center !important;}
	.back_btn:after {content: ''; position: absolute; right: 0; top: 0; width: 1px; height: 100%; border-right: 1px solid #e5e5e5;}
	.chat-window .order_number {margin-left: 12px;}
	.scrollBox {display: none;}
	.chat-window .order_number._hidden {display: none;}
	.chat-window .text._hidden {display: none;}
	.chat-window .vs_title {margin-left: 8px; display: inline;}
	.chat-window .vs_title._hidden {display: none;}
	.chat-window .chat-nav {width: 100%; margin: 0; left: 0; top: 58px; background: #f3f3f3; bottom: auto; z-index: 3; height: 100%; padding: 10px 0;}
	.chat-window .chat-nav._hidden {display: none;}
	.chat-window .chat-nav:after {display: none;}
	.chat-window .chat-nav a {width: 100%; background: none; border: 0; border-bottom: 1px solid #dcdcdc; box-shadow: none; box-sizing: border-box; border-radius: 0; margin: 0; color: #000; padding-left: 35px; padding-right: 0;}
	.chat-window .chat-nav .active {background:#FFFFFF!important;}
	.chat-window .pic-like.bg-qu {float: left; width: 16px; height: 16px; background: #e11a27; margin-top: 21px; margin-right: 7px; border-radius: 3px; position: relative;}
	.chat-window .pic-like.bg-qu:after {content: ''; position: absolute; left: 2px; top: 2px; width: 12px; height: 12px; -webkit-mask: url('../images/chat/acceptance_is_needed.svg') no-repeat center; -webkit-mask-size: contain; background: #fff;}
	.chat-window .pic-like.bg-like {float: left;width: 16px;height: 16px; background: url(../images/chat/good_to_manufacture.svg) no-repeat center; background-size: 100%; margin-top: 21px;margin-right: 7px;}
	.chat-window .pic-new-mail {top: 22px; right: 0; -webkit-mask: url(../images/chat/msg.svg) no-repeat center; background: #0aadd6; margin-right: 18px; float: right;}
	.chat-window .action {margin: 0;}
	.chat-window .action ul li {margin: 5px 0 5px 0; width: 100%; text-align: center;}
}

@media screen and (min-width: 769px) and (max-width: 992px) {

}
@media screen and (min-width: 993px) {
	.chat-window .bottom-hold form textarea {height: 100% !important; overflow: hidden; max-height: 120px; min-height: 120px;}
}</pre></body></html>