* {
    margin: 0;
    padding: 0;
    font-family: Roboto;
    font-weight: 300;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    cursor: default;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

html {
    background-color: black;
    color: rgba(255, 255, 255, 0.8);
    height: 100%;
}

body {
    height: 100%;
}

.background {
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    /*filter: blur(12px);*/
    position: fixed;
    transform: scale(1.1);
}

.content {
    max-width: 700px;
    width: 90%;
    left: calc(50% - 350px);
    position: absolute;
}

.map-name {
    font-size: 40px;
    margin: 50px;
    text-align: center;
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    display: block;
}

.play-container {
    width: 100%;
    display: block;
    text-align: center;
}

.play-map {
    display: inline-block;
    background-color: #ffffff;
    padding: 15px 35px;
    border-radius: 4px;
    color: rgb(0, 222, 184) !important;
    margin: 30px;
    /* font-weight: bold; */
    font-size: 20px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    transition: 0.15s;
}

.play-map:hover {
    transform: scale(1.02);
    background-color: rgb(0, 222, 184);
    color: #ffffff !important;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 770px) {
    .content {
        left: 5%;
    }
}

.score-list {
    color: rgba(0, 0, 0, 0.8);
}

.content > h2 {
    margin: 30px 10px;
    text-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
}

.user, .total-score {
    display: inline-block;
    pointer-events: none;
}

.individual-scores {
    margin-left: 20px;
}

.hidden h4 {
    font-weight: bold;
    margin-top: 15px;
}

.score[active] .hidden {
    display: block;
}

.hidden {
    width: 100%;
    display: none;
}

.score[active] .user, .score[active] .total-score {
    font-size: 23px;
}

.score-date {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

.score[active] .score-date {
    font-size: 13px;
    text-transform: none;
}

.user {
    font-weight: bold;
    transition: 0.1s;
}

.total-score {
    transition: 0.1s;
    float: right;
}

.score:first-child {
    box-shadow: none !important;
}

.score > div {
    pointer-events: none;
}

.score {
    pointer-events: all !important;
    padding: 10px;
    box-shadow: inset 0 1px 0 0 #00000014;
    border-radius: 5px;
    transition: 0.15s;
    cursor: pointer;
    margin-left: 25px;
}

.score[active] {
    cursor: default;
}

.score[active]:hover {
    background-color: transparent;
    transform: scale(1);
}

.score:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.01);
}

.score-list {
    background-color: #ffffffde;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    padding: 20px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 0;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.20);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:active {
    background-color: rgba(0, 0, 0, 0.60);
}

*:focus {
    outline: none;
}

*:link, *:visited {
    color: white;
    text-decoration: none;
}

::-moz-selection {
    color: white;
    background: #3b5d78;
}

::selection {
    color: white;
    background: #3b5d78;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

::-moz-placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

input[type=text], input[type=password], input[type=email], input[type=number] textarea {
    cursor: text;
}

input[type='button'], input[type='submit'], a[href] {
    cursor: pointer;
}