﻿* { padding: 0; border: 0; margin: 0; box-sizing: border-box; }

body, html {
    height: 100vh;
    width: 100vw;
}

body {
    background: #f323b5;
    padding: 0;
    margin: 0;
    position: relative;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

#debug-box { position: absolute; top: 0; left: 0; z-index: 10000; background: #fff200; color: #000; }
#debug-box2 { position: absolute; top: 20%; left: 0; z-index: 10001; background: #ff6600; color: #000; }

.game-wrapper__iframebox {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    border: none;
}

.game-wrapper__iframe {
    width: 100%;
    height: 100%;
    position: absolute; 
    top: 0;
    left: 0;
    border: none;
    outline: 0;
}

#game-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#game-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 550px;
}

#orientation-warning {
    width:100%;
    height:100%;
    position:fixed;
    inset: 0px;
    background-color:#333333;
    background-image:url('rotate_device.jpg');
    background-repeat:no-repeat;
    background-position: 50%;
    background-size: cover;
    display: block !important;
}