@font-face {
    font-family: HelveticaNeue;
    src: url("../fonts/HelveticaNeue-Light.ttf");
}

body{
	font-family: HelveticaNeue, sans-serif;
	color:#fff !important;
	font-size: 20px !important;
	background-image: url("img/bg.jpg");
	background-repeat: no-repeat;
    background-size: cover;
	background-position: right center;
	padding: 20px 0px 50px;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.jSlots-wrapper {
    overflow: hidden;
    height: 100px;
    display: inline-block; /* to size correctly, can use float too, or width*/
    border: none;
}

.slot {
    float: left;
}



/* ---------------------------------------------------------------------
   FANCY EXAMPLE
--------------------------------------------------------------------- */
.fancy {
	width: 350px;
	height: 350px;
	background-color: rgba(95, 97, 138, 0.7);
	border-radius: 100%;
	padding: 10px;
}

.fancy .jSlots-wrapper {
    overflow: hidden;
    height: 220px;
    display: inline-block; /* to size correctly, can use float too, or width*/
    border: none;
	margin-top: 60px;
}

.fancy .slot li {
    width: 250px;
    line-height: 100px;
    text-align: center;
    font-size: 200px;
    font-weight: bold;
    color: #fff;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
    font-family: 'Gravitas One', serif;
    border-left: 1px solid #999;
}

.fancy .slot:first-child li {
    border-left: none;
}

.fancy .slot li{
    /* background-color: #27b1ff; */
}

.fancy .slot li span {
    display: block;
	position: relative;
	top: -45px;
}

#abc li {
	text-align: center;
	padding: 15px;
	background-color: rgba(51, 51, 51, 0.73);
	box-shadow: 4px 4px 0 rgba(17, 17, 17, 0.75);
	border-radius: 15px;
}

#abc li span {
	font-size: 30px;
	color: #fff;
}

.btn-1 {
	display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    font-size: 25px !important;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    border: 0;
    -webkit-appearance: none;
    min-width: 258px;
    padding: 0;
    transition: all .3s;
    height: 60px;
    line-height: 60px;
	margin-top: 50px;
}

.btn-spin {
	color: #e9e9e9;
	background: rgba(206, 160, 9, 0.88);
	
}

.btn-spin:hover {
	color: #fff;
	background: #f1c120;
}

/* ---------------------------------------------------------------------
   ANIMATIONS
--------------------------------------------------------------------- */

@-webkit-keyframes winner {
    0%{
		-webkit-transform:scale(1.1);
		transform:scale(1.1);
		color: #ff0011;
	}
	50%{
		-webkit-transform:scale(0.9);
		transform:scale(0.9);
		color: yellow;
	}
	100%{
		-webkit-transform:scale(1.1);
		transform:scale(1.1);
		color: #00a8e8;
	}
}
@-moz-keyframes winner {
        0%, 50%, 100% {
            -moz-transform: rotate(0deg);
            font-size:170px;
            color: #fff;
        }
        25% {
            -moz-transform: rotate(20deg);
            font-size:190px;
            color: #FF0011;
        }
        75% {
            -moz-transform: rotate(-20deg);
            font-size:190px;
            color: yellow;
        }
}
@-ms-keyframes winner {
        0%, 50%, 100% {
            -ms-transform: rotate(0deg);
            font-size: 170px;
            color: #fff;
        }
        25% {
            -ms-transform: rotate(20deg);
            font-size:190px;
            color: #FF0011;
        }
        75% {
            -ms-transform: rotate(-20deg);
            font-size:190px;
            color: yellow;
        }
}


@-webkit-keyframes winnerBoxs {
        0%, 50%, 100% {
            box-shadow: inset 0 0  0px yellow;
            background-color: #FF0000;
        }
        25%, 75% {
            box-shadow: inset 0 0 30px yellow;
            background-color: aqua;
        }
}
@-moz-keyframes winnerBoxs {
        0%, 50%, 100% {
            box-shadow: inset 0 0  0px yellow;
            background-color: #FF0000;
        }
        25%, 75% {
            box-shadow: inset 0 0 30px yellow;
            background-color: aqua;
        }
}
@-ms-keyframes winnerBoxs {
        0%, 50%, 100% {
            box-shadow: inset 0 0  0px yellow;
            background-color: #FF0000;
        }
        25%, 75% {
            box-shadow: inset 0 0 30px yellow;
            background-color: aqua;
        }
}



.winner li {
    -webkit-animation: winnerBox 2s infinite linear;
       -moz-animation: winnerBox 2s infinite linear;
        -ms-animation: winnerBox 2s infinite linear;
}
.winner li span {
     -webkit-animation: winner 2s infinite linear;
        -moz-animation: winner 2s infinite linear;
         -ms-animation: winner 2s infinite linear;
}
