* {
    padding: 0;
    margin: 0;
    font-family: Arial;
}
.unselectable {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
}
.game {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    background-image: url('../image/bg.jpg');
    background-size: cover;
}
.finish-screen, .game-screen {
    display: none;
}
.field{
    cursor: url('../image/cursor.png') 60 60, default;
}
.start-screen h1 {
    color: #cc0000;
    margin-bottom: 10px;
    text-align: center;
}
.start-screen p.logo img {
    height: 100px;
    margin-top: 100px;
}
.start-screen .our {
    text-align: center;
    color: #cc0000;
    font-weight: bold;
}
.start-screen p {
    text-align: center;
    margin-top: 10px;
}
.start-screen .stars img{
    height: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}
.start-screen input,
.start-screen button {
    border: 0;
    width: 300px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;

}
.start-screen button {
    width: 330px;
    background-color: #cc0000;
    color: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
    cursor: pointer;
    font-weight: bold;
    border-bottom: 5px solid #8c0000;
    transition: 300ms;
    border-top: 1px solid #8c0000;
}
.start-screen button:not(.disabled):hover {
    border-bottom: 1px solid #8c0000;
    border-top: 5px solid #8c0000;
    transition: 300ms;
}
.disabled {
    opacity: 0.1;
    cursor: default;
}
.disabled:hover {
    cursor: default !important;
}
p.instr {
    width: 800px;
    margin: 0 auto;
    color: #fff;
    font-size: 25px;
    text-align: justify;
    text-shadow: 0 0 15px rgba(0, 0, 0, 1);
    box-shadow: 0 0 11px 9px rgba(0,0,0,0.5);;
    background-color: rgba(0,0,0,0.5);
    padding: 30px;
}
.instr .head {
    font-weight: bold;
    font-size: 50px;
}
.communism {
    color: #cc0000;
    font-weight: bold;
    text-transform: uppercase;
}

.game-screen {
    overflow: hidden;
}
.game-screen .panel {
    padding: 20px 20px;
    background-color: rgba(255,255,255,0.85);
    width: calc(100vw - 70px);
    position: absolute;
    top: 15px;
    left: 15px;
    height: 50px;
    border-radius: 5px;
    box-shadow: 0 0 1px rgba(0,0,0,0.5);
    z-index: 5;
}
.game-screen .field {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
.panel .logo img {
    height: 50px;
    float: left;
}
.panel .item.logo {
    position: static;
}
.panel .item {
    display: inline-block;
    height: 50px;
    /*position: relative;*/
    /*top: -20px;*/
    font-weight: bold;
}
.comet {
    position: absolute;
}
.comet.small {
    background: url('../image/metheor.png') no-repeat center center;
    width: 50px;
    height: 50px;
    background-size: 100% 100%;
}
.comet.big {
    width: 100px;
    height: 100px;
    background: url('../image/metheor2.png') no-repeat center center;
    background-size: 100% 100%;

}
@keyframes  parachute{
    from {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
    to {
        transform: rotate(-5deg);
    }
}
.parachute {
    background: url('../image/parachute.png') no-repeat center center;
    background-size: 100% 100%;
    position: relative;
    animation-name: parachute;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.small .parachute {
    height: 140px;
    width: 70px;
    top: -135px;
    transform-origin: 35px 140px 0;
}
.big .parachute {
    height: 250px;
    width: 120px;
    top: -245px;
    left: 7px;
    transform-origin: 60px 250px 0;
}

.username-block {
    font-size: 25px;
    position: relative;
    top: -3px;
    margin-left: 20px;
    cursor: default;
}
.font-control, .sound, .pause {
    float: right;
}
.sound, .pause {
    margin-left: 20px;
    cursor: pointer;
    transition: 300ms;
}
.sound:not(.disabled):hover, .pause:hover {
    opacity: 0.5;
    transition: 300ms;
}
.sound img, .pause img {
    height: 50px;
}
.font-control div {
    display: inline-block;
    font-size: 50px;
    transition: 300ms;
    margin-left: 20px;
    position: relative;
    top: -1px;
}
.font-control div:not(.disabled):hover {
    opacity: 0.5;
    transition: 300ms;
    cursor: pointer;
}

.finish-screen h1 {
    color: #cc0000;
    margin-bottom: 10px;
    text-align: center;
}
.finish-screen p.logo img {
    height: 100px;
    margin-top: 10px;
}
.finish-screen .our {
    text-align: center;
    color: #cc0000;
    font-weight: bold;
}
.finish-screen p {
    text-align: center;
    margin-top: 10px;
}
.finish-screen .stars img{
    height: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}
.your-result, .results {
    padding: 10px;
    width: 500px;
    text-align: center;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.78);
    margin: 10px auto 0;
    box-shadow: 0 0 5px rgba(0,0,0,.3);
}
.finish-screen .your-result p {
    margin: 0;
}
.your-result {
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    width: 480px;
}
.results {
    height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;

}
.results::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}
.results::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #D62929;
}
.results::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}
.results table {
    width: 500px;
    border-collapse: collapse;
}
.results table tr td {
    font-size: 20px;
    padding: 10px;
}
.results table tr {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.results table tr:last-child {
    border-bottom: 0;
}
.tovarisch {
    color: #cc0000;
    font-weight: bold;
}
.finish-screen button {
    border: 0;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    width: 520px;
    background-color: #cc0000;
    color: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    border-bottom: 5px solid #8c0000;
    transition: 300ms;
    border-top: 1px solid #8c0000;
}
.finish-screen button:hover {
    border-bottom: 1px solid #8c0000;
    border-top: 5px solid #8c0000;
    /*position: relative;*/
    /*top: 3px;*/
    transition: 300ms;
}
.button {
    text-align: center;
}
.pause-block {
    position: absolute;
    padding: 20px 20px;
    background-color: rgba(255,255,255,0.85);
    width: calc(100vw - 70px);
    height: calc(100vh - 175px);
    top: 120px;
    left: 15px;
    border-radius: 5px;
    box-shadow: 0 0 1px rgba(0,0,0,0.5);
    z-index: 5;
    text-align: center;
    display: none;
}
.pause-block h1 {
    margin-top: 100px;
}
.pause-block h2{
    width: 500px;
    margin: 20px auto;
}