@charset "UTF-8";

/*
     # * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * #
     *                                                                       *
     * project:       Slot Machine                                           *
     * filename:      style.css                                              *
     * created on:    15-03-2018 - 12:02:46 GMT+0100                         *
     * last modified: 19-03-2024 - 14:57:57 GMT+1                            *
     *                                                                       *
     * (c) 2024 Stefan 'Stefko' Kohler - eMail: stefko@lobsterlounge.de      *
     *                                     web: http://www.lobsterlounge.de  *
     *                                                                       *
     # * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * #

*/


/* ====================================
     Allgemeines
   ==================================== */



*:focus {
	/* verhindert den blauen Schatten */
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

html {
	height: 100%;
	background: #404040;
}

body {
	font-family: Helvetica, Arial, sans-serif;
}



/* ====================================
     Las Vegas Sign
   ==================================== */

header {
	margin:0 auto;
}

.sign {
	position: absolute;
	top: 130px;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg) skew(20deg, 20deg);
	transform: translate(-50%, -50%) rotate(-45deg) skew(20deg, 20deg);
	width: 250px;
	height: 250px;
	background: #efefef;
	-webkit-box-shadow: inset 0 0 0 10px #ffCB3A;
	box-shadow: inset 0 0 0 10px #ffCB3A;
	border: 5px dotted #E6D1b2;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
.text {
	position: absolute;
	top: 118px;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	white-space: nowrap;
	font-family: Helvetica, sans-serif;
	color: #0261DF;
}
.welcome {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 5px;
}
.welcome span {
	display: inline-block;
	width: 22px;
	height: 20px;
	margin:2px;
	padding: 10px;
	font-size: 20px;
	font-weight: bold;
	color: #FF020D;
	background: #EAE7DF;
	border: 1px solid #DEC08C;
	border-radius: 50%;
	-webkit-box-shadow: 0px 5px 5px #5D646E, inset 0 0 0 3px #ffCB3A;;
	box-shadow: 0px 5px 5px #5D646E, inset 0 0 0 3px #ff993A;;

}
.text .to {
	position: relative;
	top: 15px;
	left: -115px;
	font-family: 'Open Sans';
	font-size: 15px;
	line-height:15px;
	font-weight: 400;
}
.text .fab {
	position: relative;
	top: -23px;
	left: 15px;
	font-family: 'Mr Dafoe';
	font-size: 54px;
	line-height: 40px;
	letter-spacing: 5px;
}
.text .title {
	position: relative;
	top: -20px;
	left: 2px;
	font-size: 50px;
	font-weight: 600;
	letter-spacing: 3px;
	color: red;
}
.text .name {
	position: relative;
	top: -12px;
	left: 0;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 3px;
}


/* ====================================
     Slotmachine
   ==================================== */


main {
	margin-top:260px;
	min-height: calc(100vh - 287px);
}


/* ~~~ Hintergrundbild */
main:before {
	content: "";
	position: fixed;
	left: 0;
	right: 0;
	margin-top:-260px;
	height: 100vh;
	width: 100vw;
	z-index: -1;
	background: url("../images/LasVegas-1.jpg") no-repeat top left;
	background-size: cover;
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
	-o-filter: blur(10px);
	-ms-filter: blur(10px);
	filter: blur(10px);
}

main.lost:before {
	margin-top: 0px;
	height: 100vh;
	width: 100vw;
	background: url("../images/LasVegas-2.jpg") no-repeat top left;
}

/* ~~~ Slotmachine */
.container {
	position:relative;
	margin: 0 auto;
	width: 462px;
/*	min-height:326px;*/
	background: url("../images/slotmachine-bg.svg") no-repeat top center;
}

/* ~~~ Wrapper für Walzen */
.slot-wrapper {
	position:relative;
	display:block;
	top:96px;
	left:76px;
}

/* ~~~ einzelne Walze */
.slot {
	display: inline-block;
	background: url("../images/reel_normal.png") repeat-y;
	width: 86px;
	height: 90px;
	float: left;
	background-position: 0 4px;
	margin-right:27px;
}

#slot1 {

}

.motion {
	background: url("../images/reel_blur.png") repeat-y;
}

/* ~~~ Ergebnis Ausgabe */
#result {
	width:85%;
	height:40px;
	margin: 136px auto;
	margin-bottom:0;
	padding: 5px 0 8px 20px;
	font-family: 'Mr Dafoe';
	text-align:left;
	font-size: 36px;
	font-weight: normal;
	text-shadow: 3px 3px 3px rgb(68, 40, 24);
	background: url("../images/result-bg.svg") repeat;
	border: 3px solid rgb(68, 40, 24);
	border-radius:10px;
}

#result .win {
	color: greenyellow;
}

#result .freegame {
	color: limegreen;
}

#result .lose {
	color: red;
}

/* ~~~ verbleibendes Geld */
#coins {
	float:right;
	width: 40px;
    height: 40px;
    margin: -54px 55px 0 0;
    padding: 9px 10px 0 5px;
	font-family: 'Mr Dafoe';
	color:aliceblue;
	text-align:center;
	font-size: 28px;
	font-weight: normal;
	text-shadow: 3px 3px 3px rgb(68, 40, 24);
/*	background: rgba(255,0,0,0.5);*/
	border-left: 3px solid rgba(68, 40, 24, 0.5);
}

#coins::before {
	content: "€";
	padding-right:10px;
}


/* ====================================
     Links
   ==================================== */

a:link,
a:visited {
	color: #0261DF;
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

a:hover,
a:active {
	color: #FF020D;
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}


/* ====================================
     Buttons
   ==================================== */

/* ~~~ Start, Stopp, Reset-Knopf */
button {
	display: block;
	width: 150px;
	height: 150px;
	border-radius: 30%;
	margin: 10px auto;
	margin-bottom: 20px;
	font-family: 'Mr Dafoe';
	color: red;
	font-size: 45px;
	text-shadow: 3px 3px 3px rgb(68, 40, 24);
	cursor: pointer;
	border: 2px solid #333;
	background: #fefcea;
	background: radial-gradient(ellipse at center, #fefcea 0%, #f4f738 100%);
	filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fefcea', endColorstr='#f4f738', GradientType=1);
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

button:disabled {
	color: #ccc;
	text-shadow:none;
	cursor:default;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

/*
button:active {
	margin: 15px auto;
	width: 140px;
	height: 140px;
	-webkit-box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.75);
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
*/


/* ====================================
     Footer
   ==================================== */

footer {
	width:100%;
	background:rgba(220, 175, 20, 0.3);
/*	background:rgba(255, 255, 255, 0.5);*/
	text-align: center;
	font-style: italic;
/*	line-height:14px;*/
	height: 20px;
  	margin-top: -18px;
	padding: 5px 0 0 0;
	-webkit-box-shadow: 0 -2px 0px rgba(220, 175, 20, 0.5);
	box-shadow: 0 -2px 0px rgba(220, 175, 20, 0.5);
}

footer .author {
	padding-right:10px;
}

footer .tut {
	padding-left:10px;
}


/* ====================================
     Verloren Seite
   ==================================== */

main.lost {
	margin-top:-100px;
/*	height: 100%;*/
	text-align: center;
}

main.lost h1 {
	font-family: 'Mr Dafoe';
	font-size:7rem;
	font-weight: 300;
	color:#eee;
	text-shadow: -5px -5px 10px #ffCB3A, 5px 5px 10px #0261DF;
/*	text-shadow:0 0 10px #ffCB3A, 0px 0px 20px #0261DF;*/
}

main.lost .back {
	position: absolute;
/*	top: 130px;*/
	margin-top:130px;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg) skew(20deg, 20deg);
	transform: translate(-50%, -50%) rotate(-45deg) skew(20deg, 20deg);
	width: 250px;
	height: 250px;
	background: #efefef;
	-webkit-box-shadow: inset 0 0 0 10px #ffCB3A;
	box-shadow: inset 0 0 0 10px #ffCB3A;
	border: 5px dotted #E6D1b2;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
}

main.lost h2 {
	font-family: 'Mr Dafoe';
	font-size:4rem;
	font-weight: 300;
	text-shadow: 3px 3px 3px #ffCB3A;
	margin:40px 0 0 5px;
	-webkit-transform:rotate(45deg) skew(20deg,-20deg);
	transform:rotate(45deg) skew(20deg,-20deg);
}



/* ====================================
     Diverses
   ==================================== */


/* ~~~ Clearfix */
.clear {
	clear: both;
}

/* ====================================
     Responsive
   ==================================== */

@media (min-width:980px) and (max-width:1140px) {

}

@media (max-height:765px) {

	footer {
		margin-top:50px;
	}
}
