@font-face {
    font-family: 'Luckiest Guy';
    src: url('../../fonts/LuckiestGuy-Regular.woff2') format('woff2'),
        url('../../fonts/LuckiestGuy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background: #000;
    width: 100vw;
    height: 100vh;
    font-family: 'Luckiest Guy';
}

.mobile .viewport {
    width: 1280px;
    height: 720px;
    position: fixed;
    overflow: hidden;
}

.mobile .screen {
    width: 1280px;
    height: 720px;
    overflow: hidden;
}

.mobile .background {
    width: 1280px;
    height: 720px;
    position: absolute;
    z-index: -1;
}

.mobile .background .main-bg {
    width: 1280px;
    height: 720px;
    background-image: url(../images/background/static-bg.png);
    background-size: 100%;
}

.mobile .background .ground {
    width: 1280px;
    height: 720px;
    background-image: url(../images/background/static-bg-ground.png);
    background-size: 100%;
    position: absolute;
}

.mobile .background .overlay {
    width: 1280px;
    height: 720px;
    background-image: url(../images/background/static-bg-overlay.png);
    background-size: 100%;
    position: absolute;
}

.mobile .toolbar {
    width: 103px;
    height: 198px;
    background-image: url(../images/main-panel-bg.png);
    background-size: 100%;
    position: fixed;
    right: -81px;
    top: calc((720px - 198px) / 2);
    z-index: 2;
    transition: right 300ms;
}

.mobile .toolbar.active {
    right: -12px;
    transition: right 300ms;
}

.mobile .toolbar.active .close {
    transform: rotate(0deg);
}

.mobile .toolbar .close {
    width: 69px;
    height: 69px;
    background: url(../images/main-panel-button.png);
    background-size: 100%;
    position: relative;
    margin-top: calc((198px - 69px) / 2);
    margin-left: -39px;
    cursor: pointer;
    transform: rotate(180deg);
}

.mobile .toolbar .buttons {
    width: 61px;
    height: 156px;
    position: relative;
    margin-top: -114px;
    margin-left: 22px;
}

.mobile .toolbar .buttons .button {
    width: 61px;
    height: 61px;
    background-image: url(../images/main-panel-language.png);
    cursor: pointer;
    background-size: 100%;
}

.mobile .toolbar .buttons .button img {
    width: 42px;
    height: 42px;
    margin: 10px;
    /* border: 1px solid #000; */
    border-radius: 50%;
}

.mobile .toolbar .buttons .button:nth-child(2) {margin-top: 32px;}

.mobile .toolbar .buttons .button.sounds {
    background: url(../images/main-panel-sounds.png);
    background-size: 100%;
}

.mobile .toolbar .buttons .button.sounds.muted::after {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    background-image: url(../images/main-panel-sounds-muted.png);
    margin-left: calc((61px - 38px) / 2);
    margin-top: calc((61px - 36px) / 2);
    background-size: 100%;
}

games-scroll::-webkit-scrollbar {
    width: 0px;
}

games-scroll::-webkit-scrollbar-track {
    width: 0px;
}
games-scroll::-webkit-scrollbar-thumb {
    width: 0px;
}

.mobile .login-toolbar {width: 92px;height: 210px;position: absolute;right: 40px;top: 40px;z-index: 100;}

.mobile .login-toolbar.active {
    right: -12px;
    transition: right 300ms;
}

.mobile .login-toolbar.active .close {
    transform: rotate(0deg);
}

.mobile .login-toolbar .close {
    width: 104px;
    height: 104px;
    background: url(../images/main-panel-button.png);
    position: relative;
    margin-top: calc((298px - 104px) / 2);
    margin-left: -65px;
    cursor: pointer;
    transform: rotate(180deg);
}

.mobile .login-toolbar .buttons {
    width: 92px;
    height: 292px;
    position: relative;
}

.mobile .login-toolbar .buttons .button {
    width: 92px;
    height: 92px;
    background-image: url(../images/main-panel-language.png);
    cursor: pointer;
    background-size: 100%;
}

.mobile .login-toolbar .buttons .button img {
    width: 64px;
    height: 64px;
    margin: 13px;
    /* border: 1px solid #000; */
    border-radius: 50%;
}

.mobile .login-toolbar .buttons .button:nth-child(2) {margin-top: 25px;}

.mobile .login-toolbar .buttons .button.sounds {
    background: url(../images/main-panel-sounds.png);
    background-size: 100%;
}

.mobile .login-toolbar .buttons .button.sounds.muted::after {
    content: '';
    position: absolute;
    width: 58px;
    height: 56px;
    background-image: url(../images/main-panel-sounds-muted.png);
    background-size: 100%;
    margin-left: calc((92px - 58px) / 2);
    margin-top: calc((92px - 56px) / 2);
}

.mobile #background-video {
    width: 1280px;
    height: 720px;
}