@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="../..//./game/";
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;
}
/* HTML5 display-role reset for older browsers */
/****/

body {
    display: block;
    /* background-color: black; */
    /*margin: 0;
    padding: 0;
    width: 100%;
    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%;
}*/

/* fixing ios13 fullscreen swipe in portrait being blocked */
.rc-allow-vertical-scrolling {
    overflow-y: auto !important;
}

/* !important for overriding derivco's style */
.no-select {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent; !important
}

.rabcat-no-touch {
    pointer-events: none;
}

#gameContainer {
    background-color: black;
    left: 0;
    top: 0;
    width : 100%;
    height : 100%;
    position: fixed;
}

#scr {
    pointer-events:none;
    width:100%;
    height: 200%;
    z-index:100;
    position:absolute;
    top:0px;
    left:0px;
}

.vp {
    /* don't bother changing these, they get set dinamically */
    width:1200px;
    height:540px;
    /* Both of the transform commands are used to force a redraw in safari, therefore having a nice animation when scrolling to enter fullscreen*/
    transform-origin: 0px 0px;
    transform: scale(1);
    /* Position is fixed, so that it is always visible */
    position:fixed;
    top:0px;
    left:0px;
    /* overflow is visible, so that no white bar on the bottom is shown when in the enter-fullscreen swipe */
    overflow:visible !important;
}

#messagePopups > div {
    position:fixed !important;
}

/*----------------------------- 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); } }

/*----------------------------- Interaction Blocker and Rotation Notifier ----------------------------------*/

#rotate {
    position: absolute;
    display:none;
    left : 0;
    top : 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    background-repeat: no-repeat;
    opacity : 0;
    background-size: cover;
    background-color: #000000;
    background-position: 50% 0%;
    overflow:hidden;
}


#bookmarkbar {
    display:none;
    position: fixed;
    left : 0;
    top : 0;
    height: 100%;
    width: 100%;
    z-index: 999999;
    background-color: #1b1c1e;
}

#bookmarkText {
    text-align: center;
    color: white;
    font-weight: bold;
    font-family: 'arial', Serif;
    font-size: 20px;
    margin-top: 12%;
    white-space: nowrap;
}

#rotateText {
    text-align: center;
    color: white;
    font-weight: bold;
    font-family: 'arial', Serif;
    font-size: 24px;
    margin-top: 25%;
    white-space: nowrap;
}

/* ------------------------------------------------------------ OPTIONS MENU STYLE ---------------------------------------------------------*/

.paytableContainer {
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
}


