body {
    background-color: #000;
    color: white;
    font-family: 'Recursive', sans-serif;
    font-size: 16px;
    margin: 0;
}

main {
    margin-top: 80px;
    height: 100%;
    width: 100%;
    min-height: 94vh;
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.scroll-disabled {
    overflow: hidden;
}

.blur {
    filter: blur(1px);
}

a {
    color: #c89b00;
}

a:focus, a:hover {
    color: #cb0c59;
}

img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.highscore-password {
    text-transform: uppercase;
}

.container {
    max-width: 1024px;
}

.main-bg {
    background-color: #000;
    height: 100%;
    width: 100%;
    min-height: 94vh;
    opacity: 0.1;
    position: fixed;
    background: rgba(0, 0, 0, 0) url("https://www.whiteninjastudio.com//media/250856_1668967335935814.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    transition: background 1s ease-out 0s;
    background-blend-mode: luminosity;
    filter: blur(2px) sepia(80%) grayscale(20%);
}

#menu-sm {
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: #111;
    color: white;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 999999;
    overflow-y: scroll;
}

#menu-sm.active {
    display: none;
}

#menu-sm .menu-content
{
    min-height: 100%;
    overflow-y: scroll;
 
    position: relative;
    padding-bottom: 80px;
}

#menu-sm .user-dashboard 
{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    padding-bottom: 15px;
    border-bottom: 1px solid #232b2b;
}

#menu-sm .user-dashboard img
{
    width: 100px;
    height: 100px;
    padding: 5px;
    margin-right: 5px;
    margin-left: 5px;
}

#menu-sm .user-dashboard .dashboard-content
{
    width: 100%;
}

#menu-sm .menu-items 
{
    display: flex;
    flex-direction: column;
}

#menu-sm .menu-item
{
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    text-transform: uppercase;
    text-align: left;
    margin-left: 15px;
    width: 100%;
    padding: 15px 5px;
}

#menu-sm .menu-item::after
{
    content:"";
    width: 100%;
    display: block;
    border-bottom: 1px solid #232b2b;
    position: absolute;
    left:0;
    margin-top: 15px;
   
}

.title.username 
{
    overflow: hidden;
    margin-bottom: 5px;
}

section.game
{
    margin-bottom: 40px;
}

section.game .game-title
{
    font-size: 38px;
    margin-bottom: 5px;
}


.game-nav
{
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;

}

.game-nav a
{
    padding: 8px 16px;
    border: 1px solid #232b2b;
    color: rgba(255,255,255, 0.5);
    font-size: 14px;
    transition: all 250ms ease-out;
}

.game-nav a i
{
    margin-right: 5px;
}

.game-nav a:hover,
.game-nav a:focus
{
    color: rgba(255,255,255, 0.8);
    background-color: #2196F3;
    border-color: #2196F3;
}


.game-nav a + a
{
    margin-left: 15px;
}

.title.username:after
{
    content:"";
    display: inline-block;
    height: 2px;
    vertical-align: middle;
    width: 100%;
    margin-right: -100%;
    margin-left: 10px;
    border-top: 1px solid white;
}

.user-metas
{
    display: flex;
    flex-direction: row;
    color: rgba(255,255,255, 0.8);
    margin-bottom: 40px;
    font-size: 14.5px;
}

.user-presentation
{
    font-size: 18px;
}

.player-location
{
    margin-top: 10px;
}


.small-title
{
    font-size: 14px;
    color: #777;
}

.filter
{
    margin-bottom: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.filter .submit
{
    margin-top:0;
}

.filter form input,
.filter form select
{
    border: 1px solid #232b2b;
    color: rgba(255,255,255,0.6);
}

.filter .submit input
{
    background-color: #111;
    border: 1px solid #232b2b;
    padding: 18px 28px;
    
}

.filter .small-title
{
    text-align: right;
    margin-bottom: 5px;
}

.filter .row
{
    justify-content: right;
}

.user-metas span 
{
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255, 0.2);
    border-radius: 3px;
}

.user-metas span i
{
    margin-right: 10px;
}

.user-metas span + span
{
    margin-left: 20px;
}

/* Navbar */

.navbar {
    padding-left: 10px;
    padding-right: 10px;
    /*background-color: #37123e;*/
    background: rgb(55, 44, 62);
    background: linear-gradient(180deg, rgba(55, 44, 62, 1) 0%, rgba(37, 31, 48, 1) 50%, rgba(35, 26, 40, 1) 100%);
    color: white;
    height: 80px;
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    user-select: none;
    font-family: 'Recursive', sans-serif;
}

.navbar .container {
    display: flex;
}

.navbar-items {
    display: flex;
    justify-content: right;
    line-height: 80px;
    position: relative;
}

.navbar-items .account {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 40px;
}

.navbar-items .account:hover {
    cursor: pointer;
}

.navbar-items .account img {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    line-height: 80px;
}

.navbar-items .account {
    text-transform: uppercase;
    line-height: 80px;
}

.navbar-item, .navbar-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    text-transform: uppercase;
}

.navbar-item, .navbar-item+.navbar-item {
    margin-left: 15px;
}

.navbar .navbar-item:hover, .navbar .navbar-link:hover, .navbar .navbar-item:focus, .navbar .navbar-link:focus, .navbar .navbar-item:active, .navbar .navbar-link:active {
    background-color: transparent;
    color: white;
}

#menu {
    display: block;
}

#menu.navbar-menu {
    margin-left: auto;
}

.container>.navbar .navbar-brand, .navbar>.container .navbar-brand {
    margin-left: 0px;
}

.navbar-brand a {
    font-size: 36px;
    color: white;
    font-weight: bold;
    line-height: 80px;
    font-family: 'Recursive', sans-serif;
    font-family: 'Bungee';
}

.navbar-burger {
    line-height: 80px;
    display: inline-block;
    font-size: 34px;
    color: white;
    display: none;
}

.navbar-burger:focus,
.navbar-burger:hover
{
    color: white;
    cursor: pointer;
}

.navbar-submenu {
    padding: 20px;
    background-color: #4a235a;
    color: white;
    position: absolute;
    top: 80px;
    font-size: 16px;
    line-height: 1;
    z-index: 9999;
    font-size: 14px;
}


.password-check
{
     
    background-color: #111;
    border: #212121;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.password-check .password
{
    padding: 15px 26px;
    font-size: 22px;
    font-weight: bold;
    color: white;
    width: 80%;
    padding: 15px 26px;
}

.password-check .password-result
{
    padding: 15px 26px;
    background-color: #222;
    font-family: "Fugaz One";
    font-weight: bold;
    font-size: 18px;
    margin-left:auto;
    width: 20%;
    text-transform: uppercase;
}

.password-check .password-valid
{
    color: #00ff9f;
}

.password-check .password-invalid
{
    color: #cb0c59;
    text-transform: uppercase;
}

/* form */

.input+.input {
    margin-top: 32px;
}

.input label {
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
    color: #ddd;
    text-transform: uppercase;
}

label+.error-message {
    margin-top: 15px;
}

input[type="text"], input[type="email"], input[type="password"], select, textarea {
    border: 1px solid #22a0b6;
    background-color: #111;
    color: white;
    border-radius: 0;
    display: block;
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    font-size: 18px;
}

input[type="text"].form-error, input[type="email"].form-error, input[type="password"].form-error, select.form-error, textarea.form-error, input[type="text"].form-error:focus, input[type="email"].form-error:focus, input[type="password"].form-error:focus, select.form-error:focus, textarea.form-error:focus {
    border-color: #7b1346;
}

textarea {
    resize: none;
    border-radius: 0;
    min-height: 400px;
}

input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="password"]::placeholder, textarea::placeholder {
    color: #777;
}

input[type="text"]:focus::placeholder, input[type="email"]:focus::placeholder, input[type="password"]:focus::placeholder, textarea:focus::placeholder {
    color: #0c4383;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, .textarea:focus {
    border-color: #0c4383;
}

input[type="submit"]:hover, input[type="submit"]:focus {
    cursor: pointer;
    background-color: #43008f;
    color: white;
}

.submit {
    margin-top: 40px;
}

.button {
    background-color: #c89b00;
    border: none;
    color: white;
    border-radius: 0;
    text-transform: uppercase;
    padding: 12px 22px;
    font-size: 16px;
    border-radius: 2;
    transition: all 250ms ease-out;
}

.button:hover, .button:focus {
    cursor: pointer;
    background-color: #43008f;
    color: white;
}

h1.title::before {
    content: ' ';
    display: block;
    width: 5px;
    background-color: #0c4383;
    border-left: 5px solid #22a0b6;
}

h1.title {
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Fugaz One";
    text-transform: uppercase;
}

.highscore-title a {
    color: white;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 40px;
}

table thead {
    border-bottom: 2px solid #00ff9f;
}

table th {
    font-weight: bold;
    background-color: #111;
}

table th, table td {
    padding: 15px;
    text-align: left;
}

table td {
    vertical-align: middle;
    width: 15%;
}

table td img.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    margin-right: 15px;
}

table td.difficulty, table td.stage {
    width: 15%;
}

table td.region {
    text-align: center;
    line-height: 40px;
}

table td.region img {
    width: auto;
    height: 40px;
    display: block;
}

table td.username {
    display: flex;
    line-height: 40px;
    width: 15%;
}

table tr {
    border: 1px solid #222;
    transition: all 250ms ease-out;
}

table tr.highscore:hover {
    background-color: #222;
    color: #c89b00;
    cursor: pointer;
}

.highscore-header {
    display: block;
    width: 100%;
    background-color: #232b2b;
    font-size: 22px;
    color: white;
    display: flex;
    justify-content: right;
}

.highscore-title {
    width: 100%;
    display: block;
    color: white;
    font-size: 26px;
    text-align: right;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.highscore-header>li a {
    display: block;
    color: white;
    height: 80px;
    font-size: 22px;
    padding: 16px 36px;
    line-height: 48px;
}

.highscore-header>li a:hover {
    background-color: #222;
}

.highscore-header>li a.active {
    background-color: #22a0b6;
}

.highscore-data {
    display: none;
}

.error-message {
    padding: 15px;
    font-weight: bold;
    background-color: #7b1346;
    margin-top: -15px;
    margin-bottom: 20px;
}

.message {
    padding: 22px 32px;
    display: block;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 30px;
    font-weight: bold;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

.message.success {
    background-color: #22a0b6;
}

.message.error {
    background-color: #cb0c59;
}

.message.info
{
    background-color: #232b2b;
}

.password-group {
    display: flex;
    height: 100%;
    background-color: #0f0a0b;
    border: 1px solid #43008f;
    color: white;
}

.new-highscore {
    height: 80px;
    margin-bottom: 120px;
}

.new-highscore h3 {
    font-size: 24px;
    text-align: right;
    font-style: italic;
    margin-bottom: 10px;
    font-family: 'Recursive', sans-serif;
    text-transform: none;
}

.new-highscore input[type="text"] {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 36px;
    padding-top: 15px;
    line-height: 36px;
    height: 100%;
}

.new-highscore form {
    display: block;
    height: 100%;
}

.password-send {
    display: block;
    background-color: #43008f;
    color: white;
    width: 30%;
    height: 100%;
    border: none;
    font-size: 24px;
    font-weight: bold;
    padding: 15px;
    line-height: 5px;
}

.player-card {
    background-color: #111;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0);
    text-align: center;
    transition: all 350ms ease-out;
    user-select: none;
}

.player-card .player-username {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
}

.player-card .player-avatar {
    width: 80%;
    height: auto;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 20px;
}

.player-card .player-location {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.player-card .player-bestscore .score {
    display: block;
    padding: 12px 18px;
    border-radius: 3px;
    border: 1px solid #c89b00;
    font-weight: bold;
    color: #c89b00;
    text-align: center;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 22px;
    margin-bottom: 15px;
}

.player-bestscore .game-title {
    text-transform: uppercase;
    font-size: 14px;
}

.description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

h1+.description {
    margin-top: -10px;
}

.actions {
    margin-top: 40px;
}

.account-form .avatar {
    display: flex;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #22a0b6;
    align-items: flex-start;
    align-content: flex-start;
}

.account-form button {
    display: block;
    position: relative;
}

.account-form .avatar img {
    display: block;
    width: 50%;
    height: auto;
    margin-right: 20px;
}

.button.upload {
    background-color: #22a0b6;
}

.button.delete {
    background-color: #cb0c59;
}

.button+.button {
    margin-top: 20px;
}

.account-menu {
    position: absolute;
    top: 65px;
    z-index: 99999;
    right: 0px;
    width: 200px;
    background-color: #111;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
    color: white;
    border-radius: 5px;
    display: none;
    line-height: 4;
}

.account-menu.active {
    display: block;
}

.account-menu .menu-wrapper>a {
    display: block;
    padding-left: 15px;
    font-size: 18px;
    border-bottom: 1px solid #212121;
    color: rgba(255, 255, 255, 0.7);
}

.account-menu .menu-wrapper>a:hover
{
    color:#0ee5ad;
}

.account-menu .menu-wrapper>a span.menu-icon {
    display: inline-block;
    margin-right: 15px;
}

.account-menu>a:last-child {
    border: none;
}

.input-file {
    display: none;
}

.player-card:hover {
    background-color: #212121;
    cursor: pointer;
}

.new-highscore input[type="text"]:required:focus:invalid {
    border-color: #43008f;
}

table.rank {
    user-select: none;
}

.game-card:hover {
    cursor: pointer;
}

.game-card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.game-card .game-card-wrapper {
    background-color: #111;
    padding: 20px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
    margin-top: 40px;
}

.pagination>li a {
    display: block;
    padding: 15px;
    font-size: 22px;
    border: 1px solid #222;
}

.pagination>li.active a {
    background-color: #111;
    color: white;
}

.pagination>li+li a {
    border-left: none;
}

tr.new {
    background-color: #37123e;
    font-weight: bold;
}

.checkbox {
    margin-top: 32px;
    display: block;
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: uppercase;
    line-height: 16px;
    color: #ddd;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #444;
}

.checkbox:hover input~.checkmark {
    border-color: #0ee5ad;
}

/* When the checkbox is checked, add a blue background */

.checkbox input:checked~.checkmark {
    background-color: #0ee5ad;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.checkbox input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #cb0c59;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

section+section {
    margin-top: 80px;
}

section .title {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: italic;
}

.question {
    display: block;
    background-color: #111;
    padding: 15px;
    border: 1px solid #222;
}

.question+.question {
    border-top: none;
}

.question .question-title {
    font-size: 22px;
    font-weight: bold;
}

.question .question-title:hover, .question .question-title:focus {
    color: #00ff9f;
    cursor: pointer;
}

.question.active .question-title {
    color: #00ff9f;
}

.question-answer {
    font-size: 16px;
    color: whitesmoke;
    display: none;
}

.description a {
    color: #b311de;
}

footer {
    margin-top: 60px;
    background-color: #111;
    padding: 20px;
    color: white;
    font-size: 14px;
    z-index: 99999;
    text-align: center;
    position: relative;
}

footer .copyright {
    display: block;
}

.cookie-advertising {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    z-index: 999999;
    background-color: #111;
    border-top: 1px solid #222;
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: all 250ms linear;
}

.cookie-advertising.active {
    opacity: 1;
}

.cookie-settings {
    display: none;
}

.cookie-settings .wrapper {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.cookie-settings .content {
    position: fixed;
    width: 50%;
    padding: 20px;
    background-color: #111;
    border: 1px solid #333;
    color: white;
    z-index: 999999;
    opacity: 1;
}

.cookie-settings .content .setting-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #22a0b6;
    cursor: pointer;
    font-size: 24px;
}

.cookie-settings .content .setting-close:hover {
    color: #0ee5ad;
}

.cookie-setting {
    padding: 15px;
    color: #22a0b6;
    border: 1px solid #22a0b6;
    background-color: #111;
    cursor: pointer;
}

.cookie-setting .setting-control {
    display: flex;
    align-items: center;
}

.cookie-setting .setting-status {
    font-size: 14px;
    color: #0ee5ad;
    margin-left: auto;
    margin-right: 10px;
}

.setting-description {
    margin-top: 15px;
    color: white;
    display: none;
}

.cookie-setting i {
    margin-right: 10px;
}

.cookie-setting+.cookie-setting {
    margin-top: 15px;
}

/* Toggle Switch ==================================================== */

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #222;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.game-tab
{
    margin-top: 20px;
    
    border: 1px solid #232b2b
}

.tab-nav
{
    border-bottom:1px solid #232b2b;
    display: flex;
    flex-direction: row;
    background-color: #111;
}

.tab-nav a
{
    padding: 8px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.tab-nav a:hover,
.tab-nav a:focus
{
    background-color: #333;
}


.tab-nav a + a 
{
    border-left: 1px solid #232b2b
}

.tab-nav .tab-nav-item.active
{
    background-color: #222;
}

.tab-item
{
    display: none;
}

.tab-content
{
    padding: 15px;
    height: 170px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #0f0a0b;
}

@media only screen and (max-device-width:1024px) {
    main {
        padding: 20px;
    }
    .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }
    .cookie-advertising {
        padding: 30px 30px;
    }
    .cookie-buttons {
        text-align: right;
    }
    .cookie-settings .content {
        width: 80%;
    }
    .new-highscore h3 {
        font-size: 22px;
    }
    .highscore-header>li a {
        font-size: 16px;
        height: auto;
        line-height: inherit;
    }

}

/* Medium devices ======================================= */

@media only screen and (max-device-width:992px) {}

/* Small devices ===================================== */

@media only screen and (max-device-width:992px) {

    .user-profile .user-avatar 
    {
        position: relative;
        overflow: hidden;
        height: 400px;
    }

    .user-profile .user-avatar img
    {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        top:0;
        left:0;
    }

    .user-profile .title.username
    {
        font-size: 36px;
    }

    #menu-sm.active {
        display: block;
    }

    .account-menu {
        display: block;
        left: 130px;
        background-color: #111;
        box-shadow: none;
    }
    .user-dashboard .username
    {
        font-size: 24px;
        margin-bottom: 0px;
    } 
    .dashboard-items {
        display: flex;
        align-items: flex-start;
        align-content: flex-start;
    }
    .dashboard-items > a {
        border: 1px solid #333;
        color: #0ee5ad;
        padding: 15px;
        font-size: 26px;
        line-height: 1;
        margin-right: 10px;
    }
    .navbar-burger {
        width: auto;
        font-size: 24px;
        display: inline-block;
        margin-left: auto;
    }
    .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }
    h1.username {
        font-size: 22px;
    }
    .question .question-title {
        font-size: 18px;
    }
    .navbar-items .account {
        display: none;
    }
    .navbar-items .account img {
        margin-left: 0;
        width: 100px;
        height: 100px;
        border-radius: 5px;
    }
    .navbar-items .account:after {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        margin-left: 40px;
        border-bottom: 1px solid #333;
        height: 140px;
    }
    .navbar-items .account .username {
        display: block;
        font-size: 36px;
        align-self: flex-start;
        margin-left: 20px;
        margin-top: 15px;
    }
    #menu {
        display: none;
        position: fixed;
        left: 0;
        top: 80px;
        height: 100vh;
        width: 100vw;
        background-color: #111;
        z-index: 999999;
        overflow-y: scroll;
        scroll-padding-bottom: 2em;
    }
    
    #menu.alone {
        top: 80px;
    }
    #menu .navbar-items {
        display: flex;
        flex-direction: column-reverse;
    }
    #menu .navbar-items .navbar-item {
        display: block;
        color: #0ee5ad;
        font-size: 22px;
        text-align: left;
        margin-left: 15px;
    }
    .navbar-items, .navbar-item+.navbar-item {
        margin-left: 0;
    }
    #menu .navbar-items .navbar-item::after {
        content: "";
        display: block;
        width: 100%;
        margin-left: -18px;
        border-bottom: 1px solid #333;
        position: absolute;
    }
    body {
        font-size: 14px;
    }
    .container {
        margin: 0 auto;
        width: auto;
        position: relative;
    }
    .navbar-brand a {
        font-size: 22px;
    }
    table {
        font-size: 18px;
        width: 100%;
    }
    table thead {
        border-bottom: 2px solid #00ff9f;
    }
    table th {
        font-weight: bold;
        background-color: #111;
    }
    table th, table td {
        padding: 10px;
        text-align: left;
    }
    table td {
        vertical-align: middle;
        width: 15%;
    }
    table td img.avatar {
        display: none;
    }
    table td.difficulty, table td.stage {
        width: 15%;
    }
    table td.region img {
        width: auto;
        height: 40px;
        display: block;
    }
    table td.username {
        display: table-cell;
        line-height: 20px;
        width: 15%;
    }
    table tr {
        border: 1px solid #222;
        transition: all 250ms ease-out;
    }
    table tr.highscore:hover {
        background-color: #222;
        color: #c89b00;
        cursor: pointer;
    }
    .description {
        font-size: 14px;
    }
    .highscore-header {
        font-size: 14px;
    }
    .highscore-header li a {
        padding: 16px 22px;
    }
    /* New Highscore ========================== */
    .new-highscore {
        height: 80px;
        margin-bottom: 120px;
        margin-top: 40px;
    }
    .new-highscore h3 {
        font-size: 14px;
        text-align: right;
        font-style: italic;
        margin-bottom: 10px;
        font-family: 'Recursive', sans-serif;
        text-transform: none;
    }
    .new-highscore input[type="text"] {
        background-color: transparent;
        border: none;
        color: white;
        font-size: 36px;
        padding-top: 15px;
        line-height: 36px;
        height: 100%;
        width: 70%;
    }
    .password-send {
        font-size: 24px;
    }
    .player-card .player-username {
        font-size: 22px;
    }
    .cookie-advertising {
        padding: 30px 30px;
    }
    .cookie-settings .wrapper .content {
        width: 100vw;
        height: 100vh;
        overflow-y: scroll;
        overflow-x: hidden;
        scroll-padding-bottom: 2em;
        border: none;
    }
    .cookie-settings .cookie-setting:last-child {
        margin-bottom: 15px;
    }


    .game .title.game-title
    {
        font-size: 26px;
    }

    .game-nav
    {
        margin-bottom: 20px;
    }

    .filter [class^='column-']
    {
        padding: 5px;
    }

    .filter .row
    {
        margin: -5px;
    }

    .filter .submit input
    {
        padding: 16px 24px;
    }

    .submit
    {
        text-align: right;
    }

    .message
    {
        padding: 10px;
    }

}

/* Extra small devices ============================================== */

@media only screen and  (max-device-width:480px) {


    .game-nav i
    {
        display: none;
    }

    .user-profile .user-avatar 
    {
        position: relative;
        overflow: hidden;
        height: 200px;
    }


    .user-profile .title.username
    {
        font-size: 22px;
    }

    .player-card .player-username
    {
        font-size: 32px;
    }


    .navbar-burger {
        width: auto;
        font-size: 24px;
        display: inline-block;
        margin-left: auto;
    }
    .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }
    h1.username {
        font-size: 22px;
    }
    .question .question-title {
        font-size: 18px;
    }
    body {
        font-size: 14px;
    }
    .container {
        margin: 0 auto;
        width: auto;
        position: relative;
    }
    main {
        padding: 10px;
        padding-top: 20px;
    }
    .navbar-brand a {
        font-size: 22px;
    }
    table {
        font-size: 12px;
        width: 100%;
    }
    table thead {
        border-bottom: 2px solid #00ff9f;
    }
    table th {
        font-weight: bold;
        background-color: #111;
    }
    table th, table td {
        padding: 10px;
        text-align: left;
    }
    table td {
        vertical-align: middle;
        width: 15%;
    }
    table td img.avatar {
        display: none;
    }
    table td.difficulty, table td.stage {
        width: 15%;
    }
    table th.region, table td.region {
        display: none;
    }
    table td.region img {
        width: auto;
        height: 20px;
        display: block;
    }
    table td.username {
        display: flex;
        line-height: 20px;
        width: 15%;
    }
    table tr {
        border: 1px solid #222;
        transition: all 250ms ease-out;
    }
    table tr.highscore:hover {
        background-color: #222;
        color: #c89b00;
        cursor: pointer;
    }
    .description {
        font-size: 14px;
    }
    .highscore-header {
        font-size: 14px;
    }
    .highscore-header li a {
        display: block;
        font-size: 10px;
        text-align: center;
        padding: 8px 22px;
        height: auto;
        line-height: 14px;
        ;
    }
    /* New Highscore ========================== */
    .new-highscore {
        height: 40px;
        margin-bottom: 120px;
        margin-top: 40px;
    }
    .new-highscore h3 {
        font-size: 14px;
        text-align: right;
        font-style: italic;
        margin-bottom: 10px;
        font-family: 'Recursive', sans-serif;
        text-transform: none;
    }
    .new-highscore input[type="text"] {
        background-color: transparent;
        border: none;
        color: white;
        font-size: 24px;
        padding-top: 15px;
        line-height: 36px;
        height: 100%;
        width: 70%;
    }
    .password-send {
        font-size: 16px;
    }

    .cookie-advertising {
        padding: 30px 30px;
    }
    .cookie-settings .wrapper .content {
        width: 100vw;
        height: 100vh;
        overflow-y: scroll;
        overflow-x: hidden;
        scroll-padding-bottom: 2em;
        border: none;
    }
    .cookie-settings .cookie-setting:last-child {
        margin-bottom: 15px;
    }
    .dashboard-items > a {
        border: 1px solid #333;
        color: #0ee5ad;
        padding: 15px;
        font-size: 22px;
        line-height: 1;
        margin-right: 10px;
    }
}