/* POPUP ADS */
	.popup-wrap{
		    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
	}

	.popup{
		position: relative;
		width: 720px;
		height: 410px;
		background-color: rgba(0,0,0,1);
/* 		margin: 100px auto; */
    top:40%;
    left:30%;
   
	}
	.popup-timer{
		width: auto;
		height: 25px;
		color: #232323;
		position: absolute;
		right: 25px;
		line-height: 25px;
		padding: 0px 10px;
    top:0;
	}
	.btn-close{
		background-color: #fff;
		width: 25px;
		height: 25px;
		text-align: center;
		line-height: 22px;
		position: absolute;
		right: -2px;
		top: -2px;
		cursor: pointer;
		transition: all 0.5s ease;
		border-radius: 50%;
	}
	.btn-close:hover{
		transform: rotate(360deg);
	}

@media screen and (max-width: 782px){
		.popup{
		width: 100%;
		height: 100%;
		top: 0%;
		left:0%;
/* 		background-color: rgba(0,0,0,0,); */
/*     top:40%;
    left:30%; */
   
	}
}
/*End POPUP ADS  */