#LatestPromo {
	position : fixed;
	text-align : center;
	top : 0px;
	background-color : rgba(200,200,200, 0.8);
	width : 100%;
	height : 100%;
	z-index : 2000;
}
.stop-annoy {
	position : absolute;
	right : 10px;
	top : 10px;
	font-size : 30px;
	color : red;
	cursor : pointer;
}
.annoy-img {
	position : absolute;
	top : 50%;
	left : 50%;
	width : 90%;
	height : auto;
	transform : translate(-50%,-50%);
}
#counter {
	position : fixed;
	top : 0px;
	height : 10px;
	width : 100%;
	background-color : #651E5A;
	animation-name: example;
  	animation-duration: 5s;
	
}
@keyframes example {
  from {width : 100%;}
  to {width: 0%;}
}
@media screen and (orientation:portrait) {
.annoy-im{
	width : 90%;
	height : auto;
	}
}
@media screen and (orientation:landscape) {
.annoy-img{
	width : auto;
	height : 90%;
	}
}