body {
    background: #000;
    margin: 0px 0px 0px 0px;
    background-image: url(../assets/pattern.jpg);
    background-repeat: repeat;
    user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-text-size-adjust: none !important;
}

#sbc_game_content {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    touch-action: none;
    user-select: none;
    box-shadow: 0 0 30px black;
}

#sbc_orientation {
    touch-action: none;
    /*position: absolute;
    margin: 0px 0px 0px 0px;
    top: 0%;
    left: 0%;*/
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    z-index: 999;
    display: none;
}

#sbc_orientation img {
	touch-action: none;
    display: block;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* IE doesn't like transform - hack to patch selector for IE only */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
   #sbc_game_content {
    margin-right: auto;
    transform: translate(0%, 0%);
    box-shadow: none;
    margin: 0 auto;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
   }
}
