#sticky-footer {
	width: 100%;
	height: 100px;
	background: #E75660;
	color: #fff;
	position:fixed;
		z-index: 999999;
	bottom:-100px;
	left:0;
	animation: .5s slide-in linear forwards 1s;
	box-sizing: border-box;
	overflow: hidden;
}
@keyframes slide-in {
	0% {
		bottom:-100px;
	}
	100% {
		bottom:0px;
	}
}
#sticky-footer .close {
	display: block;
	position: absolute;
	top: 5px;
	left: 5px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 18px;
	text-align: center;
	float: left;
	background: RGBA(0,0,0,0);
	padding: 0;
	outline: 0;
	border: 0;
	color: #000;
	background: #fff;
	cursor: pointer;
	border-radius: 200px;
}
#sticky-footer .holder {
	width: 80%;
	height: auto;
	margin: 0 auto;
}
#sticky-footer .main {
	width: 100%;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	font-weight: 700;
	margin-top: 10px;
}
#sticky-footer .sub {
	width: 100%;
	height: 30px;
	line-height: 16px;
	font-size: 16px;
}
#sticky-footer .text-hold {
	width: 50%;
	height: 100px;
	float: left;
}
#sticky-footer #countdown {
	width: 50%;
	height: 100px;
	line-height: 100px;
	text-align: center;
	font-size: 25px;
	float: left;
	font-weight: 700;
}
#sticky-footer #countdown b{
	font-weight: normal;
	font-size: 20px;
}
@media screen and (max-width: 1400px) /* Small Screen & Tablet */ {
	#sticky-footer {
		height: 150px;
		bottom:-150px;
	}
	#sticky-footer .holder {
		width: 100%;
	}
	#sticky-footer .text-hold {
		width: 100%;
		height: 80px !important;
		text-align: center;
	}
	#sticky-footer .main {
		height: 50px;
		line-height: 50px;
		font-size: 20px;
	}
	#sticky-footer .sub {
		height: 30px;
		line-height: 30px;
		font-size: 15px;
	}
	#sticky-footer #countdown {
		width: 100%;
		text-align: center;
		height: 50px;
		line-height: 50px;
		margin-top: 15px;
	}
	@keyframes slide-in {
		0% {
			bottom:-150px;
		}
		100% {
			bottom:0px;
		}
	}
}
@media screen and (max-width: 800px) /* Mobile */ {
	#sticky-footer .main,
	#sticky-footer .sub {
		font-size: 18px !important;
	}
	#sticky-footer .main {
		height: 50px;
		line-height: 20px;
		font-size: 34px;
	}
	#sticky-footer .sub {
		height: 20px;
		line-height: 20px;
	}
	#sticky-footer .text-hold{
		width: 100%;
		height: 60px !important;
		text-align: center;
		margin-top: 15px;
	}
	#sticky-footer #countdown {
		font-size: 18px;
	}
}