html, body {
    height: 100%;
}

#divBody {
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

/* ------------- NEW -------------- */
body {
    touch-action: none;
    background: transparent;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.load::before,
.load::after {
    visibility: hidden;
    opacity: 0;
}

.loading::before,
.loading::after {
    content: "";
    position: fixed;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.loading::before {
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.loading::after {
    top: 50%;
    left: 50%;
    z-index: 999;
    width: 96px;
    height: 96px;
    background-image: url(../images/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    object-fit: contain;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loaded::before,
.loaded::after {
    visibility: hidden;
    opacity: 0;
}

.btn-bg .item-top {
    opacity: 0;
}

.btn-bg:hover .item-background {
    opacity: 0;
}

.btn-bg:hover .item-top {
    opacity: 1;
}

.draggable-zone {
    opacity: 0.001;
}

.draggable-zone:focus {
    outline: none !important;
}

.rect-button {
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer;
}

.pointer-none {
    pointer-events: none;
}

.cursor-draggable {
    cursor: move; /* fallback: no `url()` support or images disabled */
    cursor: url(../images/openhand.png); /* fallback: Internet Explorer */
    cursor: -webkit-grab; /* Chrome 1-21, Safari 4+ */
    cursor:    -moz-grab; /* Firefox 1.5-26 */
    cursor:         grab; /* W3C standards syntax, should come least */
}

.cursor-draggable:active {
    cursor: url(../images/closedhand.png);
    cursor: -webkit-grabbing;
    cursor:    -moz-grabbing;
    cursor:         grabbing;
}

g[id*="disable"] .rect-button {
    cursor: default;
}
@font-face {
    font-family: "rounded-mplus-1c-medium";
    src: url(../font/rounded-mplus-1c-medium.woff);
}
