@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';
} 

.desktop .viewport {
    width: 1920px;
    height: 1080px;
    position: fixed;
    overflow: hidden;
}

.desktop .screen {
    width: 1920px;
    height: 1080px;
    overflow: hidden;
}

.desktop .background {
    width: 1920px;
    height: 1080px;
    position: absolute;
    z-index: -1;
}

.desktop .background .main-bg {
    width: 1920px;
    height: 1080px;
    background-image: url(../images/background/static-bg.png);
}

.desktop .background .ground {
    width: 1920px;
    height: 1080px;
    background-image: url(../images/background/static-bg-ground.png);
    position: absolute;
}

.desktop .background .overlay {
    width: 1920px;
    height: 1080px;
    background-image: url(../images/background/static-bg-overlay.png);
    position: absolute;
}

.desktop .toolbar {
    width: 155px;
    height: 298px;
    background-image: url(../images/main-panel-bg.png);
    position: fixed;
    right: -124px;
    top: calc((1080px - 298px) / 2);
    z-index: 2;
    transition: right 300ms;
}

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

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

.desktop .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);
}

.desktop .toolbar .buttons {
    width: 92px;
    height: 292px;
    position: relative;
    margin-top: -170px;
    margin-left: 33px;
}

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

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

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

.desktop .toolbar .buttons .button.sounds {
    background: url(../images/main-panel-sounds.png);
}

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

body::-webkit-scrollbar {
    width: 5px;               /* ширина scrollbar */
}

body::-webkit-scrollbar-track {
    background: orange;        /* цвет дорожки */
}
body::-webkit-scrollbar-thumb {
    background-color: blue;    /* цвет плашки */
    border-radius: 5;       /* закругления плашки */
    border: 3px solid orange;  /* padding вокруг плашки */
}

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

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

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

.desktop .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);
}

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

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

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

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

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

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