.slots {
	position: relative;
	width: 70%;
	zoom: 0.70;
	display: flex;
	justify-content: space-between;
	background-image: linear-gradient(to right, #eb3941, #f15e64, #e14e53, #e2373f);  box-shadow: 0 5px 15px rgba(242, 97, 103, .4);
	border-radius: 15px;
	padding: 10px;
	margin:30px 0 10px;
}

.slots::before, .slots::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 10px;
	height: 2px;
}

.slots::before {
	left: 0;
}

.slots::after {
	right: 0;
	transform: translate(200%, -50%);
}

@keyframes win1 {
	0% {
		background: linear-gradient(45deg, orange 0%, yellow 100%);
		box-shadow: 0 0 80px orange;
	}
	100% {
		background: linear-gradient(45deg, #fdc9d4 0%, lightgrey 100%);
		box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.3);
	}
}

@keyframes win2 {
	0% {
		background: linear-gradient(45deg, lightblue 0%, lightgreen 100%);
		box-shadow: 0 0 80px lightgreen;
	}
	100% {
		background: linear-gradient(45deg, grey 0%, lightgrey 100%);
		box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.3);
	}
}

.slots.win1 {
	animation: win1 200ms steps(2, end) infinite;
}

.slots.win2 {
	animation: win2 200ms steps(2, end) infinite;
}

.slots .reel {
	position: relative;
	width: 79px;
	height: 237px;
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 3px;
	overflow: hidden;
	background-image: url(../images/slot.jpg);
	background-position: 0 0;
	background-repeat: repeat-y;
}

.slots .reel::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.4) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.4) 100%);
	box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);
}

.slots p {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	transform: translate(-50%, calc(100% + 30px));
	text-align: center;
	font-size: 0.8rem;
	color: #444;
}

.button {
	width: 200px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	margin: 20px;
	padding: 10px;
	height: 55px;
	text-align:center;
	border: none;
	background-size: 300% 100%;

	border-radius: 50px;
	moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.button:hover {
	background-position: 100% 0;
	moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.button:focus {
	outline: none;
}


.button.color-4 {
	background-image: linear-gradient(to right, #fc6076, #ff9a44, #ef9d43, #e75516);
	box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
}

.button.color-11 {
	background-image: linear-gradient(to right, #eb3941, #f15e64, #e14e53, #e2373f);  box-shadow: 0 5px 15px rgba(242, 97, 103, .4);
}
