.desktop .game-scene {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
}

.desktop .game-scene .close {
    width: 60px;
    height: 60px;
    border-radius: 0px 0px 0px 18px;
    border-left: 5px solid rgba(169, 102, 0, 0.50);
    border-bottom: 5px solid rgba(169, 102, 0, 0.50);
    background: linear-gradient(180deg, #FB9F00 0%, #FB9F00 0%, #C64E00 49.65%, #FF4409 100%);
    box-shadow: 0px 10px 2px 2px rgba(255, 255, 255, 0.50) inset, 0px 4px 5px 3px rgba(0, 0, 0, 0.40), 0px -5px 4px 0px rgba(0, 0, 0, 0.25) inset;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.desktop .game-scene .close svg {
    width: 40px;
    height: 40px;
}

.desktop .game-scene iframe {
    width: 100vw;
    height: 100vh;
    outline: 0;
    border: 0;
}

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

    100% {
        -webkit-transform: rotate(0deg);
        transform:rotate(0deg);
    }
}

.desktop .game-scene.loading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktop .game-scene.loading .svg-loader {
    -webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
    width: 250px;
    height: 250px;
}