.widget-container {
	color: #fff;
	width: 0px;
	height: 0px;
	position: fixed;
	z-index: 1000;
	bottom: 0px;
	right: 0px;
}

#widget-list {
	position: relative;
	bottom: 115px;
	right: 125px;
}

.ticket-widget {
	cursor: pointer;
	background-color: rgba(0,0,0,.7);
	color: #fff;
	padding: 20px;
	display: inline-block;
	border-radius: 10px;
	font-weight: bold;
	width: 100px;
	height: 100px;
}

.widget-icon {
	width: 100%;
	text-align: center;
	margin: 0;
	padding: 0;
}

.widget-icon img {
	-webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}

.widget-label {
	margin-top: 20px;
	text-transform: uppercase;
	text-align: center
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }