.pt-menu-usuario{
	width: fit-content;
	position: relative;

}
.pt-menu-usuario-mensajes{
	cursor: pointer;
	position: relative;
}

.pt-menu-usuario-icon {
	font-size: 18px !important;
	transition: all .3s ease-in-out;
}

.pt-menu-usuario-icon.active {
	transform: rotate(180deg);
}

.pt-menu-usuario-content{
	position: absolute;
	width: 120%;
	max-height: 0px;
	margin-top: 10px;
	padding: 5px;
	left: -10%;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	z-index: 999 !important;
	box-shadow: none;
	overflow: hidden;
	background-color: white;
}

@keyframes active-menu {
	0% {
		max-height: 0px;
	}
	100% {
		max-height: 300px;
	}
	
}
	
.pt-menu-usuario-content.active{
	animation: active-menu .3s ease-in-out forwards;
	box-shadow: 0px 7px 5px 2px rgb(94 88 88 / 35%);
	max-height: 300px;
}

.pt-menu-usuario-content ul{
	list-style: none;
	padding: 0px;
	margin: 5px 0px 5px 0px;
	max-height: 300px;
	overflow: auto;
}

.pt-menu-usuario-content ul li{
	margin: 0px;
	padding: 0px;
	display: flex;
	justify-content: center;
	padding: 12px 0px;
	text-transform: uppercase;
	border-bottom: 1px solid #d2d2d2;
	cursor: pointer;
	transition: color 0.2s;
}

.pt-menu-usuario-content ul li:last-of-type{
	border: none;
}
.pt-menu-usuario-content ul li a{
	color: black;
	text-decoration: none;
}
.pt-menu-usuario-content ul li a:hover{
	color: #6a40a4;
}