*{
	padding:0;
	border: 0;
}

#contenedor{
	width: 40%;
	background: #fff;
	margin: 0 auto;
	padding: 20px;
	border-radius: 12px;
	-moz-border-radius: 12px;
	-o-border-radius: 12px;
	-webkit-border-radius: 12px;
}

#caja-chat{
	width: 100%;
	height: 400px;
	overflow: auto;
}

#datos-chat{
	width: 100%;
	padding: 5px;
	margin-bottom: 5px;
	/*border-bottom: 1px solid silver;*/
	font-weight: bold;
	font-family: 'Mukta Vaani', sans-serif;
}

input[type='text']{
	width: 100%;
	height: 40px;
	border: 1px solid gray;
	border-radius: 5px;
}

input[type='submit']{
	width: 100%;
	height: 40px;
	border: 1px solid gray;
	border-radius: 5px;
	cursor: pointer;
}

textarea{
	width: 100%;
	height: 40px;
	border: 1px solid gray;
	border-radius: 5px;
}

input, textarea{
	margin-bottom: 3px;
}

.modalBG{
	background: rgba(0,0,0,0.8);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: 30;
	/* display: flex; */
	justify-content: center;
	align-items: center;
	display: none;
}
.modalCont{
	background: #fff;
	display: inline-block;
	padding: 1rem 4rem;
	border-radius: 5px;
	outline: 4px solid #D7EFFF;
	max-width: 50%;
}
.modalTitle > h4{
	margin: 0;
	color: #545454;
	font-size: 2rem;
	text-align: center;
}
.btn_modal{
	max-width: 6rem;
	min-width: 6rem;
}
.modalOptions{
	background: #eee;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 1.5rem 0;
	margin: 1.5rem 0;
	display: flex;
	justify-content: space-around;
}
.modal_Approve_Reject{
	max-width: 40%;
}
.btn-accept{
	background: #29B27C;
	color: #fff;
}
.btn-cancel{
	background: #BE5526;
	color: #fff;
}
.btn-cancel:hover{
	background: #c96232;
	color: #fff;
}
.btn-accept:hover{
	background: #30a576;
	color: #fff;
}
.platform-info{
	text-align: center;
}
.hiddenDivInfo{
	display: none;
}
.Chat__conversation__optionCont{
	margin-left: auto;
	font-size: 2rem;
	display: flex;
	justify-content: center;
	position: relative;
}
.Chat__conversation__optionListCont{
	background: white;
	list-style: none;
	font-size: 1.5rem;
	position: absolute;
	right: 0;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
	width: max-content;
    white-space: nowrap;
    padding: 0;
	z-index: 20;
	top: 2.5rem;
}
.Chat__conversation__optionListCont li{
	padding: 1rem;
	white-space: nowrap;
}
.Chat__conversation__optionListCont li:hover{
	background: #F5F6F6;
}
.Chat__DeleteMessageModal[open]{
	scale: 1;
	transition: scale .3s ease-in-out;
	@starting-style{
		scale:0
	}
}
.Chat__DeleteMessageModal{
	scale: 0;
	transition: scale .3s ease, display .3s ease allow-discrete;
}
@media (max-width: 768px){
	.modalCont{
		max-width: 90%;
	}
}