/*------------------------------------------------------------------
0. basic settings
1. preloader
2. automat
2.1 lights
2.2 winner digits
4. help classes
-------------------------------------------------------------------*/
/*
0. basic settings
-------------------------------------------------------------------*/
@font-face {
	font-family: 'DSDIGI';
	src: url('./DSDIGI.eot');
	src: local('DSDIGI'), url('./DSDIGI.woff') format('woff'), url('./DSDIGI.ttf') format('truetype');
}
body{
	margin:0;
}
.wrap {
	width: 100%;
	margin: 0 auto;
}
.slot_place {
	height: auto;
}
/*
0. /basic settings
-------------------------------------------------------------------*/
/*
1. preloader
-------------------------------------------------------------------*/
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 1;
}
/*
1. /preloader
-------------------------------------------------------------------*/
/*
2. automat
-------------------------------------------------------------------*/
.slot_machine {
	width: 400px;
	height: 400px;
	margin: auto;
	position: fixed;
	top: 0%;
	margin-top: 0px;
	left: 0%;
	margin-left: 0px;
	background-color: transparent;
	z-index: 2;
}

.machine {
	z-index: 5;
	position: absolute;
}
#slot {
	margin: 0;
	margin-right: 23px; 
	float: left;
	padding: 0;
	list-style-type: none;
	position: relative;
}

#slot li {
	transition: all 400ms ease;
}

#slot img {
	width: 85px;
	height: 85px;
}
.plumbing,
.electronics,
.appliance {
	z-index: 1;
}
.all_slots {
	padding-left: 54px;
}
.slot_window {
	overflow: hidden;
	height: 105px;
	width: 88px;
	position: relative;
	top: 130px;
	float: left;
	margin-right: 15px;
	background-color: #fff;
}
.button_spin {
	position: absolute;
	z-index: 5;
	bottom: 9px;
	right: 30px;
	cursor: pointer;
}
/*
2. /automat
-------------------------------------------------------------------*/
/*
2.1 lights
-------------------------------------------------------------------*/
.lights {
	position: absolute;
    z-index: 12;
    top: -26px;
    left: 66px;
	-webkit-transition: opacity 200ms ease-in-out;
	   -moz-transition: opacity 200ms ease-in-out;
	    -ms-transition: opacity 200ms ease-in-out;
	     -o-transition: opacity 200ms ease-in-out;
	        transition: opacity 200ms ease-in-out;
}
/*
2.1 /lights
-------------------------------------------------------------------*/
/*
2.2 winner digits
-------------------------------------------------------------------*/
.digits {
	font-family: "DSDIGI" !important;
	position: absolute;
	bottom: 120px;
	left: 63px;
	z-index: 50;
	font-size: 28px;
	color: red;
}
.digits p {
	margin: 0;
}
.credit, .bet, .win_paid {
	display: inline-block;
	margin-right: 15px;
}
.credit {
	width: 96px;
}
.bet {
	width: 40px;
}
/*
2.2 /winner digits
-------------------------------------------------------------------*/
/*
4. help classes
-------------------------------------------------------------------*/
.disabled {
	opacity: 0;
}

.sticked {
	position: relative;
	top: 0 !important;
	margin-top: 0;
}
/*
4. help classes
-------------------------------------------------------------------*/


