/* CSS Document */
.page-filter li {
	margin-right: 1.5rem;
}
.page-filter li a {
	position: relative;
	padding-bottom: 8px;
	color: var(--dark);
}
.page-filter li.active a:before {
	content: '';
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--bg-color);
	position: absolute;
	left: 0;
	bottom: 0;
}
.page-filter li.active a, .page-filter li:hover a {
	color: var(--color-link);
}
.page-filter li.active a .st0, .page-filter li a:hover .st0 {
	fill: var(--color-link);
}

.chat-view {
	border: 2px solid #DDD;
}
.chat-view .chat-inner {
	padding: 15px;
	overflow-x: hidden;
	height: calc(100% - 103px);
}
.chat-view .message {
	margin-bottom: 10px;
	line-height: 30px;
	display: flex;
	max-width: 100%;
}
.chat-view .message.message-sent {
	justify-content: flex-end;
	text-align: right;
	align-self: flex-end;
}
.chat-view .message-content {
	align-items: flex-start;
	max-width: 70%;
}
.chat-view .message-received .message-content {
	align-items: flex-start;
}
.chat-view .message-sent .message-content {
	align-items: flex-end;
	position: relative;
	display: flex;
	flex-direction: column;
}
.chat-view .chat-bubble {
	position: relative;
	border-radius: 12px 12px 0 12px;
	padding: 4px 12px;
	font-size: 1rem;
	line-height: 1.2;
	white-space: normal;
}
.chat-view .chat-bubble > p {
	margin: 0;
}
.chat-view .message-sent .chat-bubble {
	background: #daeffd;
	color: #2c2c2c;
	border: 1px solid rgba(0, 0, 0, 0.07);
}
.chat-view .message-received .chat-bubble {
	color: #2c2c2c;
	background: #f0f0f0;
	position: relative;
	border: 1px solid #f0f5f8;
	border-radius: 12px 12px 12px 0;
}
.chat-view .chat-date {
	font-size: 0.75rem;
	color: #999;
	line-height: 1;
	margin-top: 8px;
}
.product-info {
	background-color: #f0f9ff;
	padding: 10px;
	margin: 10px;
}
.product-info .product-title h3 {
	font-size: 1rem;
	margin-bottom: 0;
}
.product-info .product-title h3 a {
	color: #333;
}
.product-info .product-title h3 a:hover {
	color: var(--color-link);
}
.product-info .product-price {
	font-size: 0.85rem;
	margin-bottom: 0;
	color: #333;
}
.product-info .product-price span {
	color: var(--red);
}