.message-box {
	display: flex;
	align-items: center;
	/*max-width: 600px;*/
	margin: 30px 0 30px 42px;
	font-family: sans-serif;
}

.avatar {
	width: 56px;
	height: 56px;
	background-color: #e0e0e0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-weight: bold;
	margin-right: 10px;
	flex-shrink: 0;
}

.input-container {
	position: relative;
	flex: 1;
}

.input-container::before {
	content: '';
	position: absolute;
	left: -19px;
	top: 50%;
	transform: translateY(-50%);
	border: 10px solid transparent;
	border-right-color: #f5f5f5;
}

input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 4px;
	background-color: #f5f5f5;
	font-size: 14px;
	height: 50px;
	color: #666;
	box-sizing: border-box;
	outline: none;
}

input::placeholder {
	color: #999;
	opacity: 1;
}

.message__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-transform: uppercase;
	align-items: center;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 12px;
	margin: 30px 0 30px 42px;
}
.message__bottom span {
	background: #e5e5e5;
	padding: 8px;
	border-radius: 9px;
}
.message__right {
	display: flex;
	gap: 50px;
}
.message__right p {
	display: flex;
	color: #98bff6;
	font-size: 14px;
	white-space: nowrap;
	align-items: center;
}
.message__right svg {
	width: 35px;
}

@media (max-width: 768.5px) {
	.message-box {
		margin: 30px 30px 30px 9px;
	}
}

@media (max-width: 580.5px) {
	.message__bottom {
		flex-direction: column;
		font-size: 12px;
	}
	.message__bottom p {
		font-size: 12px;
	}
	.message__right {
		gap: 16px;
	}
}
