:root{
	--header-rojo:#cb1d1d;
}
div.info_user {
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	align-items: center;
	height: 10px;
	transform: translateY(-60px);
	position: relative;
	z-index: 15;
}
div.info_user>div.abajo{
	display: flex;
	align-items: center;
	justify-content: right;
	width: 100%;
	gap: 5px;
}
div.info_user > div.nombre {
	margin-top: 20px;
	text-align: right;
	font-size: 12px;
	font-weight: bold;
	padding-right: 5px;
}
div.info_user > div.icono {
	background-position: center;
	background-repeat: no-repeat;
	height: 32px;
	width: 32px;
	position: relative;
	margin-right: 20px;
}
div.info_user div.email,
div.info_user div.gases,
div.info_user a.clave{
	display: block;
	cursor: pointer;
	width: 25px;
	height: 25px;
	border-radius: 12.5px;
	position: relative;
	opacity: 1;
}
div.info_user div.email,
div.info_user div.gases,
div.info_user div.email>div,
div.info_user div.gases>div{
	background-color: var(--header-rojo);
	color: #fff;
}
div.info_user div.gases i{
	font-weight: bold;
	font-size: 14px;
	font-style: normal;
}
div.info_user a.clave,
div.info_user a.clave>div {
	font-weight: bold;
	background-color: #369;
	text-decoration: none;
	color: #fff;
}
div.info_user a.clave>div,
div.info_user div.gases>div,
div.info_user div.email>div{
	transition: ease all .3s;
	display: flex;
	gap: 0;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 12.5px;
	min-width: 25px;
	height: 25px;
	position: absolute;
	right: 0;
	top: 0;
}
div.info_user a.clave i,
div.info_user div.email i {
	font-size: 15px;
}
div.info_user a.clave:hover>div,
div.info_user div.gases:hover>div,
div.info_user div.email:hover>div{
	gap: 5px;
	padding: 0 10px;
}
div.info_user a.clave > div > span,
div.info_user div.gases > div > span,
div.info_user div.email > div > span{
	display: block;
	overflow: hidden;
	max-width: 0px;
	transition: ease all .3s;
	font-size: 12px;
	font-weight: bold;
}
div.info_user a.clave:hover>div > span,
div.info_user div.gases:hover>div > span,
div.info_user div.email:hover>div > span {
	max-width: 150px;
}
div.info_user div.nombre {
	font-size: 12px;
	font-weight: bold;
	margin-right: 10px;
}
.titila{
	animation-name: titila;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.titila:hover{
	animation: none;
}
@keyframes titila {
  0%   {opacity: 1;}
  100% {opacity: 0;}
}

div.notificaciones{
	position: relative;
	width: 25px;
	height: 25px;
}
div.notificaciones > div.boton {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: var(--header-rojo);
	cursor: pointer;
}
div.notificaciones > div.boton > *{
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	position: absolute;
	display: block;
	transition: ease all .2s;
}
div.notificaciones > div.boton span {
	color: #FFFFFF;
	font-weight: bold;
	opacity: 1;
	font-size: 14px;
	line-height: 14px;
}
div.notificaciones > div.boton div.cruz{
	opacity: 0;
	background-color: #ffffff;
	height: 3px;
	width: 20px;
	border-radius: 2px;
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
div.notificaciones > div.boton div.cruz:nth-child(1){
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
#notificaciones {
	display: none;
	/*aspect-ratio: 1.61;*/
	width: 300px;
	position: absolute;
	right: 0;
	top: 30px;
	border: solid 1px #888;
	box-sizing: border-box;
	background-color: #FFFFFF;
	border-radius: 4px;
	box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03), 0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03), 0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05), 0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
	animation: fade-in2 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 10px;
}
div.notificaciones.show #notificaciones{
	display: flex;
}
div.notificaciones.show>div.boton span{
	opacity: 0;
}
div.notificaciones.show > div.boton div.cruz{
	opacity: 1;
}
@keyframes fade-in2 {
	0% {
		margin-top: -50px;
		visibility: hidden;
		opacity: 0;
	}

	100% {
		margin-top: 0px;
		visibility: visible;
		opacity: 1;
	}
}
#notificaciones > div {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 5px;
	background-color: #eee;
	font-size: 13px;
	transition: ease all .2s;
}
#notificaciones > div:nth-child(2n){
	background-color: #dddddd;
}
#notificaciones > div:hover{
	background-color: #d4d3d3;
}
#notificaciones > div button {
	cursor: pointer;
	border: solid 1px #8f8f9d;
	border-radius: 4px;
	padding: 3px 5px;
	background-color: #e9e9ed;
}
#notificaciones > div button:hover{
	background-color: #d0d0d7;
}
