@font-face {
    font-family: 'Verlag Compressed Book';
    src: url('/css/fonts/verlag/VerlagCompressed-Book.woff2') format('woff2'),
        url('/css/fonts/verlag/VerlagCompressed-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Verlag Condensed Bold';
    src: url('/css/fonts/verlag/VerlagCondensed-Bold.woff2') format('woff2'),
        url('/css/fonts/verlag/VerlagCondensed-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
#current-day-date {
	position: fixed;
	top: 127px;
	left: 50%;
	margin-left: -697px;
	color: #fff;
	font-family: 'Verlag Condensed Bold';
	font-size: 15px;
	font-weight: bold;
	width: 185px;
	text-align: center;
}
#current-day-offer-reminder {
	position: fixed;
	top: 60px;
	left: 50%;
	margin-left: 505px;	
	font-family: 'Verlag Condensed Bold';
	font-size: 16px;
	text-align: center;
	color: #000;
	max-width: 250px;
	min-width: 200px;
	transform-origin: top center;
	animation: swingbox 5s cubic-bezier(.3,.32,.83,.8) infinite;
}
#current-day-offer-reminder:hover {
	animation-play-state: paused;
}
#current-day-offer-reminder .pin {
	background: #000;
	border-radius: 150px;
	width: 20px;
	height: 20px;
	margin: 0 auto;
	box-shadow: 0 -1px 0 1px #535353 inset, 0 2px 2px rgba(0, 0, 0, 0.17), 0 5px rgba(255, 255, 255, 0.28) inset;
}
#current-day-offer-reminder .vertical-line {
	width: 0;
	height: 40px;
	border-right: 1px dashed #a3aaba;
	border-top-rightradius: 10px;
	margin: 0 auto;
}
#current-day-offer-reminder .reminder-box {
	border: 1px dashed #a3aaba;
	background: #fff;
	border-radius: 20px;
	padding: 10px;
}
#current-day-offer-reminder .reminder-box span {
	display: block;
	margin: 6px 0;
}
#current-day-offer-reminder .reminder-box .title {
	font-weight: bold;
	font-size: 18px;
	color: #000000;
}
#current-day-offer-reminder .reminder-box .subtitle img {
	width: 90px;
}
#current-day-offer-reminder .reminder-box .details u {
	font-weight: 900;
	color: #ff3131;
	text-decoration: none;
	font-size: 17px;
}
#current-day-offer-reminder .reminder-box .nodisplay {
	display: none;
}
@keyframes swingbox {
	0%  { transform: rotate(0deg); }
	5%  { transform: rotate(0.5deg); }
	30% { transform: rotate(3deg);	}
	70% { transform: rotate(-3deg);	}
	95%  { transform: rotate(-0.5deg); }
	100%  { transform: rotate(0); }
}
@media screen and (max-width: 970px) {
	#current-day-offer-reminder {
		display: none;
	}
}