@media screen and (orientation: landscape) {
    #land {
        /*display: flex;*/
        display: none;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: #10182c;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }
    #land .icon {
        display: block;
        width: 30vw;
        height: 30vw;
        background-image: url('../images/image.png');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100%;
    }

    #root {
        /*display: none;*/
    }
}

@media screen and (orientation: portrait) {
    #root {
        display: block;
    }

    #land {
        display: none;
    }
}

#mt-h5-loading {
    width: 100%;
    height: 100vh;
    background: #0F2546;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 90000;
}

#mt-h5-loading .icon {
    width: 40px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

#mt-h5-loading .g-container {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 3px solid #7254FF;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

#mt-h5-loading .g-circle {
    position: absolute;
    top: -3px;
    left: -3px;
    bottom: -3px;
    right: -3px;
    border-radius: 50%;
    background: conic-gradient(#72F9FD 0%, transparent 90%, transparent);
    animation: rotate 1s linear infinite;
    transform-origin: 50% 50%;
}

#mt-h5-loading .g-circle::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    bottom: 3px;
    right: 3px;
    background: #0F2546;
    border-radius: 50%;
}


@keyframes rotate {
    100% {
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes rotate {
    100% {
        transform: rotate(-360deg);
    }
}

@-moz-keyframes rotate {
    100% {
        transform: rotate(-360deg);
    }
}

@-o-keyframes rotate {
    100% {
        transform: rotate(-360deg);
    }
}