body {
    cursor: default;
    padding: 0;
    border: 0;
    margin: 0;

    text-align: center;
    background: #60c6e8 url("../images/frame-slice.png");
    background-size: 50%;
    font-family: Helvetica, Verdana, Arial, sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
}

body, canvas, div {
    outline: none;

    /* Убираем лонгтап на IOS */
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    user-select: none;
    /* /Убираем лонгтап на IOS */
}

/* Remove spin of input type number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

canvas {
    background-color: rgba(0, 0, 0, 0);
}

#GameDiv {
    margin: 0 auto;
    position: relative;
    /*border:5px solid black;*/
    /*border-radius: 10px;*/
    /*box-shadow: 0 5px 50px #333;*/
    /*background: white;*/
    width: 100%;
    height: 100%;
    /*width:1024px;*/
    /*height:768px;*/
    overflow: hidden;
    border-image: url("../images/frame-corner.png") 20 fill / 20px / 10px;
}

#Cocos3dGameContainer, #GameCanvas {
    width: 100%;
    height: 100%;
}

/*Cocos3dGameContainer*/
.desktop body {
    min-width: 512px;
    min-height: 288px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
.mobile.portrait #GameDiv {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    position: absolute;
}*/




