.camera_buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0px 10px 0px;
	position: absolute;
	bottom: 20px;
}

.camera_buttons button {
	margin: 5px;
}

audio {
	max-width: 100%;
}


.vh-100 {
	min-height: 100vh;
}

.w-400 {
	width: 400px;
}

.w-600 {
	width: 600px;
}

.fs-xs {
	font-size: 1rem;
}

.w-10 {
	width: 10%;
}

a {
	color: #abcd42;
	text-decoration: none;
}

.text-color {
	color: #212529;
}
.fs-big {
	font-size: 5rem !important;
}

.header {
	position: fixed;
	top: 0px;
	width: 70%;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 800px;
}


.reply {
	float: right;
	visibility: hidden;
	color: black;
	font-size: 20px;
	cursor: pointer;
  }

  .ltext:hover .reply {
	visibility: visible;
  }
  
  .rtext:hover .reply {
	visibility: visible;
  }
  
  #reply_to_text {
	width: 100%;
	display: none;
	min-height: 50px;
	padding: 10px 5px;
	border: 1px solid #c9c3c3;
	margin: 10px 0px;
  }

.reply_box {
	width: 80%;
	position: relative;
	display: block;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 10px;
	margin-top: -20px;
	border-radius: 10px;
	border: 1px solid #c7c7c7;
	cursor: pointer;
	color: #535252;
  }
  .chat_message_box {
	width: 100%;
	display: inline-block;
  }
  
  .highlight {
	border: 1px solid red !important;
	transition: border-color 0.5s ease, box-shadow 0.5s ease;
	box-shadow: 0 0 5px red;
  }



.content_chat {
	position: fixed;
	top: 100px;
	width: 100%;
	max-width: 800px;
}

.lightbox-thumbnails {
	text-align: center;
	display: inline-flex;
	position: relative;
	bottom: 20px;
	width: 100%;
	overflow-x: auto;
}

.lightbox-thumbnails img {
	max-width: 50px;
	max-height: 50px;
	margin: 5px;
	border: 1px solid white;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: transform 0.2s ease-in-out;
}

.lightbox-thumbnails img:hover {
	transform: scale(1.2);
	border-color: yellow;
}

.lb-closeContainer {
	position: relative;
	top: 10px;
	right: -44px;
}

.online {
	width: 10px;
	height: 10px;
	background: green;
	border-radius: 50%;
}

.delete_message {
	color: red;
	float: right;
	font-size: 20px;
	margin-left: 10px;
}

.equal-width-1 {
	width: 35%;
}


.chat_images {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	max-width: 100%;
	overflow: hidden;
}

.chat_images a {
	display: block;
}

.chat_images img {
	min-width: 130px;
	max-width: 130px;
	height: auto;
	padding: 5px;
	box-sizing: border-box;
}

.chat_images:has(a:only-child) img {
	min-width: 100%;
	max-width: 100%;
}




.equal-width-3 {
	width: 39%;
}

.equal-width-2 {
	width: 26%;
}

.fs-sm {
	font-size: 1.4rem;
}

small {
	color: #fff;
	font-size: 0.7rem;
	text-align: right;
}

.chat-box {
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 60vh;
}

.rtext {
	width: 65%;
	margin: 10px 0px;
	background: #0084ff;
	color: #fff;
	border-radius: 20px !important;
}

.ltext {
	width: 65%;
	margin: 10px 0px;
	background: #F0F0F0;
	color: #444;
	border-radius: 20px !important;
}

/* width */
*::-webkit-scrollbar {
	width: 3px;
}

/* Track */
*::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
*::-webkit-scrollbar-thumb {
	background: #aaa;
}

/* Handle on hover */
*::-webkit-scrollbar-thumb:hover {
	background: #3289c8;
}


@media (max-width: 768px) {

	.header {
		width: 100% !important;
		display: inline-block;
		align-items: start;
	}

	#cameraBtn {
		display: none;
	}

	.ltext,
	.rtext {
		width: 90% !important;
	}

	.chat-box {
		max-height: 55vh !important;
	}

	.lb-closeContainer {
		position: relative;
		top: 80px !important;
		right: 0px !important;
	}

}