/*leaderboard positioning*/

@media all and (orientation: portrait) {
    /*intentionally left blank*/
}

@media all and (orientation: landscape) {
    /*.s_left {*/
        /*float: left;*/
        /*width: 50%;*/
    /*}*/

    /*.s_right {*/
        /*float: left;*/
        /*width: 50%;*/
    /*}*/
    #setting {
        float: right;
        margin-right: 1%;
        width: 19%;
    }
}

/*Canvas positioning*/

#canDiv {
    margin-left: 1%;
    float:left;
    position: relative;
    width: 79%;
    height: 80%;
    /*background-color: yellow;*/
}

#cannonCanvas {
    position: absolute;
    /*left: 0;*/

    width: 100%;
    height: 100%;
    /*background-color: blue;*/

    display: block;
    z-index: 3;
}

#myCanvas {
    position: absolute;
    /*left: 0;*/

    width: 100%;
    height: 100%;
    /*background-color: green;*/

    display: block;
    z-index: 1;
}

#liveCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    /*background-color: green;*/
    display: block;
    z-index: 4;
}

#pinCan {
    display: none;
}

/*hide the column toggle btn*/

.ui-table-columntoggle-btn {
    display: none !important;
}

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
    text-align: center;
}

#loading-image {
    position: absolute;
    top: 100px;
    left: 240px;
    z-index: 100;
}
