@media all and (orientation:portrait) {
    #myProgressBarCont {
        top: 50%;
        left: 10%;
        width: 80%;
        height: 0.7%;
    }
}
@media all and (orientation:landscape) {
    #myProgressBarCont {
        top: 64%;
        left: 30%;
        width: 40%;
        height: 0.7%;
    }
}


/* ##############################

PATH_PREFIX_NAME="/touchgames/tesla-v1.15.0/varRes/";
ALWAYS USE THIS PREFIX IN FRONT OF PATHS, because w2d and rabcat use different folder structure

################################ */

.rabcatStyle {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    line-height: normal;
    font-family: arial, sans-serif; /* default */
    color: black;/* default */
    text-align: left;/* default */display: block;list-style: none;border-collapse: collapse;
    border-spacing: 0;
}

body {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    width: 100%;
    height: 100%;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.rabcat-no-touch {
    pointer-events: none;
}

#gameContainer {
    background-color: black;
    left: 0;
    top: 0;
    width : 100%;
    height : 100%;
    position: fixed;
}

/* ---------------------- resizing ---------------------------- */

#messagePopups > div {
    position:fixed !important;
}

#fullScreenOverlay{
    width:100%;
    height:100%;
    position:absolute;
    top:0px;
    left:0px;
    transform-origin: 0px 0px;
    transform: scale(1);
    z-index:500000;
    background-color:rgba(0,0,0,0.8);
    overflow:visible !important;
    display:none;
}


/*----------------------------- css image spinner ----------------------------------*/

.spinningElement {
    /*position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin:-60px 0 0 -60px;*/
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

/* ------------------------------------------------------------ JACKPOT WIN & BANNER STYLE ---------------------------------------------------------*/

.webkitSpan {
    text-align: center;
    font-family: 'bentwood', Serif;
    font-weight: bolder;
    background: linear-gradient(#BD953E 23%, #E4CC7E 40%, #FFF8BF 50%, #E5BC65 55%, #7F5019 78%);/*-webkit-linear-gradient(#FDF2B4, #C09A45);*/
    -moz-background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;

    -moz-text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.jackpotBanner {
    text-align: right;
    font-size: 27px;
    font-family: monotype;
    color: white;
}

/* ------------------------------------------------------------ OPTIONS MENU STYLE ---------------------------------------------------------*/

.paytableContainer {
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
}

.optionMenuButton {
    /* for disabling scrolling */
}


