Chat
{
	position: absolute;
	left: 100px;
	bottom: 20%;
	width: 600px;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	flex-direction: column;
	align-items: stretch;
	font-size: 20px;
	font-family: Poppins;
	font-weight: 600;
	gap: 10px;
	z-index: -1000;

	&.hide
	{
		opacity: 0;
	}

	.output
	{
		flex-grow: 1;
		flex-direction: column;
		justify-content: flex-end;
		align-items: stretch;
		gap: 5px;
		background-color: #333a;
		border-radius: 5px;
		backdrop-filter: blur( 10px );

		.chat_entry
		{
			padding: 6px;
			gap: 8px;
			border-radius: 2px;
			text-shadow: 2px 2px 0px #000d, 1px 1px 0px #000d;
			align-items: center;


			.avatar
			{
				width: 24px;
				height: 24px;
				background-position: center;
				background-size: cover;
				border-radius: 100px;
			}

			.author
			{
				color: #2d95ce;
				white-space: nowrap;
				flex-shrink: 0;
			}

			.message
			{
				color: #fff;
			}
		}
	}

	.input
	{
		color: white;

		.textentry
		{
			align-items: flex-start;
			white-space: normal;
		}
	}

	&.open
	{
		.input
		{
			background-image: linear-gradient( to right, rgba( black, 0.7 ), rgba( black, 0.4 ) );
			backdrop-filter: blur( 3px );
			border-radius: 2px;
		}
	}
}
