@charset "utf-8";

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

.dvCanvas {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: -60px;
    margin-top: -60px;
}

.dvLoading {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    font-weight: bold;
    font-size: 30px;
    color: white;
    text-align: center;
    z-index: 10;
    font-family: Tahoma, serif;
}

.jSlots-wrapper {
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: inline-block; /* to size correctly, can use float too, or width*/
    display: flex;
    justify-content: space-between;
}

/*.dvCenter {
	position			: relative;
	width				: 80%;
	height				: 70%;
	margin				: 0 auto;

	border				: 1px solid red;
} /**/

.dvGame {
    position: relative;
    margin: 0 auto;
    width: 80%;
    padding-bottom: 40%; /* 16:9 */
}

.dvGame > div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.dvCol {
    height: 100%;
    width: 19.6%;
    float: left;
    /*
    background: #222222;
    background: -moz-linear-gradient(top, #222222 0%, #444444 50%, #222222 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #222222), color-stop(50%, #444444), color-stop(100%, #222222));
    background: -webkit-linear-gradient(top, #222222 0%, #444444 50%, #222222 100%);
    background: -o-linear-gradient(top, #222222 0%, #444444 50%, #222222 100%);
    background: -ms-linear-gradient(top, #222222 0%, #444444 50%, #222222 100%);
    background: linear-gradient(to bottom, #222222 0%, #444444 50%, #222222 100%);

    background: linear-gradient(to bottom, #7AC 0%, #CCC 50%, #7AC 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#222222', GradientType=0);
    /**/
    background-image: url("../images/background/slot_row.png");
    background-size: cover;

    border: 1px solid silver;
    position: relative;
}

.ulSlot {
    width: 100%;
    height: 100%;
    opacity: 0;
}

.dvSizeNull {
    width: 0;
    height: 0;
}

/* ---- Specific ---- */

.objItem1, .objItem2, .objItem3, .objItem4, .objItem5, .objItem6, .objItem7, .objItem8, .objItem9, .objItem10, .objItem11, .objItem12 {
    height: 33.33%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75%;
    /*border				: 1px solid silver; /* TODO: Re-Add Border*/
}

.objItem1 {
    background-image: url('../images/items/187_hamburg.png');
}

.objItem2 {
    background-image: url('../images/items/womanVape.png');
}

.objItem3 {
    background-image: url('../images/items/smokingForbidden.png');
}

.objItem4 {
    background-image: url('../images/items/cloud.png');
}

.objItem5 {
    background-image: url('../images/items/hanfliquid.png');
}

.objItem6 {
    background-image: url('../images/items/vape-cloud.png');
}

.objItem7 {
    background-image: url('../images/items/liquid.png');
}

.objItem8 {
    background-image: url('../images/items/alex.png');
}

.objItem9 {
    background-image: url('../images/items/vapeMarket.png');
}

.objItem10 {
    background-image: url('../images/items/vape-pen.png');
}

.objItem11 {
    background-image: url('../images/items/vape1.png');
}

.objItem12 {
    background-image: url('../images/items/shisha.png');
}

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

@-webkit-keyframes winner {
    0%, 50%, 100% {
        -webkit-transform: rotate(0deg);
        font-size: 70px;
        color: #fff;
    }
    25% {
        -webkit-transform: rotate(20deg);
        font-size: 90px;
        color: #FF16D8;
    }
    75% {
        -webkit-transform: rotate(-20deg);
        font-size: 90px;
        color: #FF16D8;
    }
}

@-moz-keyframes winner {
    0%, 50%, 100% {
        -moz-transform: rotate(0deg);
        font-size: 70px;
        color: #fff;
    }
    25% {
        -moz-transform: rotate(20deg);
        font-size: 90px;
        color: #FF16D8;
    }
    75% {
        -moz-transform: rotate(-20deg);
        font-size: 90px;
        color: #FF16D8;
    }
}

@-ms-keyframes winner {
    0%, 50%, 100% {
        -ms-transform: rotate(0deg);
        font-size: 70px;
        color: #fff;
    }
    25% {
        -ms-transform: rotate(20deg);
        font-size: 90px;
        color: #FF16D8;
    }
    75% {
        -ms-transform: rotate(-20deg);
        font-size: 90px;
        color: #FF16D8;
    }
}


@-webkit-keyframes winnerBox {
    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 winnerBox {
    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 winnerBox {
    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 {
    -webkit-animation: winnerBox 2s infinite linear;
    -moz-animation: winnerBox 2s infinite linear;
    -ms-animation: winnerBox 2s infinite linear;
}

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

/**
NOTE: START NEW CSS
 */

* {
    -webkit-tap-highlight-color: transparent
}

.container * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none
}

.container {
    position: relative;
    width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    height: 853px
}

.headlineContainer {
    position: relative;
    width: 1280px;
    height: 133px;
    z-index: 1
}

.gameContainer {
    position: relative;
    width: 1280px;
    height: 604px;
    z-index: 1;
    background-repeat: no-repeat
}

.mainControlBox, .mainControlBoxBG {
    position: relative;
    width: 1280px;
    height: 116px;
    z-index: 3
}

.gameContainer {
    background-image: url('../images/background/bg_middle.png')
}

.headlineContainer {
    background-image: url('../images/background/bg_top.png')
}

.mainControlBoxBG {
    background-image: url(../images/background/bg_bottom.png)
}

.mainControlBox .webConsole {
    /*background-image: url(../images/background/bg_bottom.png) /**/
}

.webConsole .userInfoContainer.userInfo {
    background-image: url(../images/controls/infobox-standard.png)
}

.webConsole .controlButton_paytable {
    background-image: url(../images/controls/button-paytable.png)
}

.webConsole .controlButton_paytable:hover {
    background-image: url(../images/controls/button-paytable-mo.png)
}

.webConsole .controlButton_paytable:active {
    background-image: url(../images/controls/button-paytable-press.png)
}

.webConsole .controlButtonGreen {
    background-image: url(../images/controls/button-green.png)
}

.webConsole .controlButtonGreen:hover {
    background-image: url(../images/controls/button-green-mo.png)
}

.webConsole .controlButtonGreen:active {
    background-image: url(../images/controls/button-green-press.png)
}

.webConsole .controlButtonGreen.isPulsing.pulse {
    background-image: url(../images/controls/button-green-pulse.png)
}

.webConsole .controlButtonGreen.isPulsing.pulse:hover {
    background-image: url(../images/controls/button-green-mo.png)
}

.webConsole .controlButtonGreen.isPulsing.pulse:active {
    background-image: url(../images/controls/button-green-press.png)
}

.webConsole .spinButton {
    background-image: url(../images/controls/buttons-spin.png)
}

.webConsole .spinButton {
    background-position: top left
}

.webConsole .spinButton:hover {
    background-position: bottom left
}

.webConsole .spinButton:active {
    background-position: top right
}

.webConsole .spinButton.isPulsing.pulse {
    background-position: center right
}

.webConsole .spinButton.isPulsing.pulse:hover {
    background-position: bottom left
}

.webConsole .spinButton.isPulsing.pulse:active {
    background-position: top right
}

.webConsole .controlButtonOrange {
    background-image: url(../images/controls/button-orange.png)
}

.webConsole .controlButtonOrange .clickArea.plus {
    background-image: url(../images/controls/button-orange-plus.png)
}

.webConsole .controlButtonOrange .clickArea.plus:active, .webConsole .controlButtonOrange .clickArea.plus:hover {
    background-image: url(../images/controls/button-orange-plus-mo.png)
}

.webConsole .controlButtonOrange .clickArea.minus {
    background-image: url(../images/controls/button-orange-minus.png)
}

.webConsole .controlButtonOrange .clickArea.minus:active, .webConsole .controlButtonOrange .clickArea.minus:hover {
    background-image: url(../images/controls/button-orange-minus-mo.png)
}

.webConsole .controlButtonViolet {
    background-image: url(../images/controls/button-violet.png)
}

.webConsole .controlButtonViolet:hover {
    background-image: url(../images/controls/button-violet-mo.png)
}

.webConsole .controlButtonViolet:active {
    background-image: url(../images/controls/button-violet-press.png)
}

.webConsole .controlButtonViolet.isPulsing.pulse {
    background-image: url(../images/controls/button-violet-pulse.png)
}

.webConsole .controlButtonViolet.isPulsing.pulse:hover {
    background-image: url(../images/controls/button-violet-mo.png)
}

.webConsole .controlButtonViolet.isPulsing.pulse:active {
    background-image: url(../images/controls/button-violet-press.png)
}

.webConsole .controlButton_fullscreen {
    background-image: url(../images/controls/buttons-fullscreen.png)
}

.webConsole .controlButton_fullscreen:active, .webConsole .controlButton_fullscreen:hover {
    background-position: bottom
}

.console .controlButton {
    background-repeat: no-repeat
}

.console {
    position: absolute;
    z-index: 200;
    font-family: 'Roboto Condensed', Arial;
    font-weight: 700;
    padding-top: 6px
}

.webConsole {
    left: 50px;
    width: 1180px;
    height: 110px
}

.console .versionDisplay {
    position: absolute;
    padding: 0 8px;
    background-color: rgba(0, 0, 0, .7);
    font-size: 16px;
    color: #fff;
    top: -737px;
    left: -50px
}

.console .controlButton {
    position: relative;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer
}

.console .controlButton.justShow {
    cursor: default
}

.console .clickArea {
    cursor: pointer
}

.console .userInfoContainer {
    position: relative;
    overflow: hidden;
    color: #fff;
    right: -62px;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none
}

.webConsole .controlButton {
    width: 98px;
    height: 69px;
    margin-left: 2px;
    padding: 36px 3px 2px 1px;
    border-radius: 3px;
    font-size: 28px
}

.webConsole .controlButton.tiny {
    width: 50px
}

.webConsole .controlButton.small {
    width: 70px
}

.webConsole .controlButton.big {
    width: 148px
}

.webConsole .mainBox {
    position: relative
}

.webConsole .actionButtons {
    position: absolute;
    top: 0;
    right: 107px
}

.webConsole .controlButton.twolined {
    height: 84px;
    padding-top: 21px;
    line-height: 32px
}

.webConsole .userInfoContainer {
    height: 107px;
    margin-left: 2px
}

.webConsole .userInfoContainer .row1, .webConsole .userInfoContainer .row1 .userInfoBox {
    position: relative;
    height: 66px
}

.webConsole .userInfoContainer .row1 .userInfoBox {
    padding-top: 14px;
    font-size: 38px;
    font-weight: 700
}

.webConsole .userInfoContainer.userInfo .row1 .userInfoBox {
    width: 570px;
    left: 14px
}

.webConsole .userInfoContainer .row2, .webConsole .userInfoContainer .row2 .userInfoBox {
    height: 44px
}

.webConsole .userInfoContainer .row2 .userInfoBox .infoLabel {
    font-size: 16px
}

.webConsole .userInfoContainer.orangeButtonsActWinContainer {
    width: 150px
}

.webConsole .userInfoContainer.orangeButtonsActWinContainer .orangeButtonsBox .controlButtonOrange {
    width: 70px;
    margin: 0;
    cursor: default
}

.webConsole .userInfoContainer.orangeButtonsActWinContainer .orangeButtonsBox .controlButtonOrange .clickArea {
    position: absolute;
    left: 6px;
    width: 61px;
    height: 23px;
    cursor: pointer
}

.webConsole .userInfoContainer.orangeButtonsActWinContainer .orangeButtonsBox .controlButtonOrange .clickArea.controlButton_linebetplus, .webConsole .userInfoContainer.orangeButtonsActWinContainer .orangeButtonsBox .controlButtonOrange .clickArea.controlButton_linesplus {
    top: 2px
}

.webConsole .userInfoContainer.orangeButtonsActWinContainer .orangeButtonsBox .controlButtonOrange .clickArea.controlButton_linebetminus, .webConsole .userInfoContainer.orangeButtonsActWinContainer .orangeButtonsBox .controlButtonOrange .clickArea.controlButton_linesminus {
    top: 79px
}

.webConsole .userInfoContainer.orangeButtonsActWinContainer .orangeButtonsBox .controlButtonOrange .infoArea {
    position: relative;
    width: 70px;
    height: 52px;
    margin-top: -8px
}

.webConsole .userInfoContainer.orangeButtonsActWinContainer .orangeButtonsBox .controlButtonOrange .infoArea .infoValue {
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 70px;
    height: 34px;
    overflow: hidden;
    font-size: 28px
}

.webConsole .userInfoContainer.orangeButtonsActWinContainer .orangeButtonsBox .controlButtonOrange .infoArea .infoLabel {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 20px;
    font-size: 16px
}

.webConsole .userInfoContainer.userInfo {
    width: 598px
}

.webConsole .userInfoContainer .row2 {
    position: relative
}

.webConsole .userInfoContainer.userInfo .row2 .userInfoBox.leftBox {
    position: absolute;
    left: 14px;
    text-align: left
}

.webConsole .userInfoContainer.userInfo .row2 .userInfoBox.rightBox {
    position: absolute;
    right: 14px;
    text-align: right
}

.webConsole .userInfoContainer.userInfo .row2 .userInfoBox.value_money .infoLabel.moneyLabel {
    display: inline
}

.webConsole .userInfoContainer.userInfo .row2 .userInfoBox .infoValue {
    padding-left: 8px;
    font-size: 28px
}

.webConsole .userInfoContainer.userInfo .row2 .userInfoBox .infoValue .currLeft {
    padding-right: 3px
}

.webConsole .userInfoContainer.userInfo .userInfoBox .info_win .value .currLeft {
    padding-right: 5px
}

.webConsole .headlineButtons {
    position: absolute;
    top: -702px;
    left: -18px
}

.webConsole .headlineButtons .controlButton {
    width: 34px;
    height: 32px;
    padding: 0;
    margin: 0
}

.webConsole .headlineButtons .controlButton + .controlButton {
    margin-left: 5px
}

.webConsole.bg .controlButtonViolet {
    font-size: 26px
}

.webConsole.et .controlButton_autospin {
    font-size: 16px;
    padding-top: 42px;
    height: 63px
}

.fl {
    float: left
}

.fr {
    float: right
}

.clear {
    clear: both
}

.hidden {
    display: none
}

.visible {
    display: block
}
