html {
    overflow: hidden;
}

body {
    user-select: none;
    margin: 0 !important;
    padding: 0 !important;
    background-color:  #151719;
}

#wrapperGameContainer {
    margin: 0 !important;
    padding: 0 !important;
}

#iframe:not(:root):fullscreen::backdrop {
    position: unset !important;
    top: unset !important;
    right: unset !important;
    bottom: unset !important;
    left: unset !important;
    background: unset !important;
}
.msgPanelContent {
    width: 100%;
    margin-top: -2px;
    padding: 0 15px 0 15px;
    font-size: 15px;
    padding-top: 5px;
    background-color: #797878;
    position: absolute;
    display: none;
    text-align: center;
    z-index: 2;
}

#msgPanelContent {
    display: inline-block;
}

.msgPanelButton {
    display: inline-block;
    margin-bottom: 5px;
}

.msgPanelButton a {
    background: grey;
    color: white;
}

.msgPanelButton a:hover {
    background: grey !important;
    color: white !important;
}

.wrapperLoading {
    position: relative;
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
    font-size: 60px;
    width: 100%;
    position: absolute;
    left: -10px;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
  
}

.wrapperLoading span {
     font-family: 'Arial';
     position: relative;
     display: inline-block;
     color: #fff;
     text-transform: uppercase;
     animation: flip 2s infinite;
     animation-delay: calc(.1s * var(--i));
}

@keyframes waviy {
    0%,40%,100% {
        transform: translateY(0)
    }
    20% {
        transform: translateY(-20px)
    }
}

@keyframes flip {
  0%,80% {
    transform: rotateY(360deg) 
  }
}

@media only screen and (orientation:portrait) {
    #msgPanelBar {
        bottom: 0 !important;
    }
}