/* Estil quan està en mode "pantalla completa / centrat" */
.centratErrors {
	position: fixed;
	top: 20%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80% !important;
	height: 1px;
	z-index: 1000;
	box-shadow: 0 5px 30px rgba(0,0,0,0.3);
	display:block !important;
	padding-top: 2.5rem !important; /* espai reservat per la creu */
	background: #f5f5f5 !important;
}

/* Fons fosc per darrere */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 999;
	display: none;
}

.overlay.actiu {
	display: block;
}

.btn-tancar {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;       /* o right si vols a la dreta */
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 0.25rem 0.5rem;
}

.btn-tancar:hover {
  color: #000;
}