/*Modal-Bug Report*/
	
.btnIcono.icoEmail::before{
	z-index: 2;
}

.btnIcono.icoNavBack::before {
	z-index: 2;
}
.modal_BugReport {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
	justify-content: center;
	align-items: center;
}

.modal_BugReport-content {
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	width: 80%;
	max-width: 500px;
	position: relative;
	text-align: center;
}

.close-button_BugR {
	position: absolute;
	top: 10px;
	right: 20px;
	cursor: pointer;
}

/* Contenedor del textarea para que el contador esté dentro */
.textarea-container_BugR {
	position: relative;
	width: 100%;
	max-width: 500px;
}

/* Estilos para el textarea */
#userComment_BugR {
	width: 100%;
	height: 150px;
	padding-bottom: 25px; /* Espacio extra para que el contador no cubra el texto */
	box-sizing: border-box;
	font-size: 10px;
	line-height: 1.5;
	resize: none;
}

/* Estilos para el contador */
.char-counter {
	position: absolute;
	bottom: 5px;
	right: 10px;
	font-size: 12px;
	color: #999;
}

