#vehicle-slider .item {
	border-radius: 50%;
	overflow: hidden;
}

.roll-co-start {
	-webkit-animation: roll-co 0.5s ease-out both;
	-moz-animation: roll-co 0.5s ease-out both;
	-o-animation: roll-co 0.5s ease-out both;
	-ms-animation: roll-co 0.5s ease-out both;
	animation: roll-co 0.5s ease-out both;
}
.roll-start {
	-webkit-animation: roll 0.5s ease-out both;
	-moz-animation: roll 0.5s ease-out both;
	-o-animation: roll 0.5s ease-out both;
	-ms-animation: roll 0.5s ease-out both;
	animation: roll 0.5s ease-out both; /* fadeIn 1s ease-out both */
}

@-webkit-keyframes roll{
	0% {-webkit-transform: rotate(360deg); opacity: 1;}
	100% {-webkit-transform: rotate(0deg); opacity: 1;}
}
@-moz-keyframes roll{
	0% {-moz-transform: rotate(360deg); opacity: 1;}
	100% {-moz-transform: rotate(0deg); opacity: 1;}
}
@-o-keyframes roll{
	0% {-o-transform: rotate(360deg); opacity: 1;}
	100% {-o-transform: rotate(0deg); opacity: 1;}
}
@-ms-keyframes roll{
	0% {-ms-transform: rotate(360deg); opacity: 1;}
	100% {-ms-transform: rotate(0deg); opacity: 1;}
}
@keyframes roll{
	0% {transform: rotate(360deg); opacity: 1;}
	100% {transform: rotate(0deg); opacity: 1;}
}

@-webkit-keyframes roll-co{
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes roll-co{
	0% {-moz-transform: rotate(0deg); opacity: 1;}
	100% {-moz-transform: rotate(360deg); opacity: 1;}
}
@-o-keyframes roll-co{
	0% {-o-transform: rotate(0deg); opacity: 1;}
	100% {-o-transform: rotate(360deg); opacity: 1;}
}
@-ms-keyframes roll-co{
	0% {-ms-transform: rotate(0deg); opacity: 1;}
	100% {-ms-transform: rotate(360deg); opacity: 1;}
}
@keyframes roll-co{
	0% {transform: rotate(0deg); opacity: 1;}
	100% {transform: rotate(360deg); opacity: 1;}
}