* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:not(input) {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #09021b;
}

body {
    color: #fff;
    font-size: 24px;
    font-family: 'bpg_banner_caps', 'Intro-Regular';
}


body .menu-div {
	display: block;
}

.loader-div {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #000000;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 205px;
    height: 205px;
    margin: -102px 0 0 -102px;
    background: url('../Images/loader-logo.gif') no-repeat center / contain;
}

.loader-bar {
    width: 156px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 90px 0 0 -89px;
    border-radius: 1px;
}

.loader-background {
	position: absolute;
	width: 0;
	top: -1px;
	left: -5px;
	height: 5px;
	overflow: inherit !important;
	background: url('../Images/loader-background.png') no-repeat center / cover;
}

.loader-text {
    display: none;
}

.loader-icon {
	position: absolute;
	width: 24px;
	height: 21px;
	top: -8px;
	right: -12px;
	transition: .2s;
	transform: scale(0);
	will-change: transform;
	background: url('../Images/loader-icon.png');
}

.game-scene {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

.scene {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.game-content {
    position: relative;
    z-index: 2;
}

.sound-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    display: block;
}

.sound-popup-content {
    position: absolute;
    left: 5%;
    top: 50%;
    border-radius: 5px;
    background-image: -moz-linear-gradient( 90deg, rgba(18,18,16,0.7) 0%, rgba(42,42,42,0.7) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgba(18,18,16,0.7) 0%, rgba(42,42,42,0.7) 100%);
    background-image: -ms-linear-gradient( 90deg, rgba(18,18,16,0.7) 0%, rgba(42,42,42,0.7) 100%);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.7);
    width: 90%;
    height: 381px;
    margin: -190px 0 0 0;
}

.sound-popup-content-text {
    font-family: 'CrystalBetUni_Medium';
    text-align: center;
    color: #FFF;
    font-size: 50px;
    padding-top: 70px;
    height: 140px;
    box-sizing: content-box;
}

.sound-popup-content-buttons {
    text-align: center;
}

.sound-popup-content-buttons a {
    font-family: 'CrystalBetUni_Medium';
    display: inline-block;
    border-radius: 5px;
    background-color: rgb(62, 62, 62);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.7);
    width: 302px;
    height: 127px;
    text-align: center;
    line-height: 127px;
    font-size: 36px;
    color: #FFF;
    margin: 0 13px;
}

.sound-popup-content-buttons a.yes:before {
    content: '';
    display: inline-block;
    background: url('../Images/othergames-mobile-yes.png') no-repeat;
    width: 49px;
    height: 37px;
    vertical-align: top;
    margin-top: 45px;
    margin-right: 20px;
}

.sound-popup-content-buttons a.no:before {
    content: '';
    display: inline-block;
    background: url('../Images/othergames-mobile-no.png') no-repeat;
    width: 48px;
    height: 48px;
    vertical-align: top;
    margin-top: 40px;
    margin-right: 20px;
}


@media screen and (max-width: 1024px) {
    .sound-popup-content {
        height: 190px;
        margin: -95px 0 0 0;
    }

    .sound-popup-content-text {
        font-size: 25px;
        padding-top: 35px;
        height: 70px;
    }

    .sound-popup-content-buttons a {
        width: 135px;
        height: 63px;
        line-height: 63px;
        font-size: 18px;
        margin: 0 7px;
    }

    .sound-popup-content-buttons a.yes:before {
        background-size: cover;
        width: 25px;
        height: 19px;
        margin-top: 23px;
        margin-right: 10px;
    }

    .sound-popup-content-buttons a.no:before {
        background-size: cover;
        width: 24px;
        height: 24px;
        margin-top: 20px;
        margin-right: 10px;
    }
}