/* Căn giữa modal theo cả 2 chiều */
#promoModal .modal-dialog{
	top: 50%;
	left: 50%;
	margin: 0;
	width: auto;		/* co theo nội dung */
	max-width: 90vw;	/* responsive */
	position: absolute;
	transform: translate(-50%, -50%);
}
/* Chỉ hiện khung ảnh, bỏ nền trắng/shadow mặc định */
#promoModal .modal-content{
	border: 0;
	box-shadow: none;
	position: relative;
	display: inline-block;
	background: transparent;
}
/* Ảnh banner */
.promo-img{
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}
/* Nút close ở góc trên phải của ảnh */
#promoModal .close{
	top: 8px;
	right: 10px;
	width: 34px;
	height: 34px;
	color: #fff;
	opacity: 1;
	z-index: 20;
	text-shadow: none;
	position: absolute;
	line-height: 34px;
	text-align: center;
	border-radius: 50%;
	background: rgba(0,0,0,.55);
}
/* Tăng độ mờ backdrop cho giống popup quảng cáo */
.modal-backdrop.in {
	opacity: 0.75;
}