.hotDealContainer {
    padding-top: 20px;
}
.hotDealContainer .hotDealArrows {
    position: absolute;
    top: 50%;
    font-size: 2.5em;
    transform: translate(0,-50%);
    cursor:pointer;
    opacity:0;
	display:none;
}
.hotDealContainer.showArrows .hotDealArrows {
	opacity:1;
	display:block;
}
.hotDealContainer .hotDealArrows.Left {
    left: 5px;
}
.hotDealContainer .hotDealArrows.Right {
    right: 5px;
}

.hotDealContainer .scrollItem,
.hotDealContainer .hotDealArrows {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out; /* IE10 is actually unprefixed */
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.scrollerTimer {
	position: absolute;
	background: white;
	top:10px;
	right:10px;
}

.scrollerTimer, .scrollerTimer * {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index:10;
}

.scrollerTimer {
	width: 16px;
	height: 16px;
}

.scrollerTimer .pie {
	width: 50%;
	height: 100%;
	transform-origin: 100% 50%;
	position: absolute;
	background: #e5e5e5;
	border: 1px solid rgba(0,0,0,0.5);
}

.scrollerTimer .spinner {
	border-radius: 100% 0 0 100% / 50% 0 0 50%;
	z-index: 200;
	border-right: none;
}

.scrollerTimer:hover .spinner,
.scrollerTimer:hover .filler,
.scrollerTimer:hover .mask {
	animation-play-state: running;
}

.scrollerTimer .filler {
	border-radius: 0 100% 100% 0 / 0 50% 50% 0;
	left: 50%;
	opacity: 0;
	z-index: 100;
	border-left: none;
}

.scrollerTimer .mask {
	width: 50%;
	height: 100%;
	position: absolute;
	background: inherit;
	opacity: 1;
	z-index: 300;
}
@keyframes rota {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes opa {
	0% {
		opacity: 1;
	}
	50%, 100% {
		opacity: 0;
	}
}

.scrollerTimer svg {
	width:200px;
	height:200px;
	-ms-transform: scale(.125); /* IE 9 */
	-ms-transform-origin: 0 0; /* IE 9 */
	-webkit-transform: scale(.125); /* Chrome, Safari, Opera */
	-webkit-transform-origin: 0 0; /* Chrome, Safari, Opera */
	transform: scale(.125);
	transform-origin: 0 0;
}