* {
    touch-action: manipulation;
    box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: none;
	user-select: none;
    -webkit-user-select: none;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    overscroll-behavior-y: none;
}

::-webkit-scrollbar {
    display: none;
}

label,
input {
    pointer-events: all;
}

html {
    width: 100vw;
    height: 9999px;
    overflow: scroll;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    color: white;
    scrollbar-width: none;
}

body {
    position: fixed;
    background-color: black;
    overflow: hidden;
}

#game {
    position: absolute;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0; 
}

.clickable {
    cursor: pointer;
    touch-action: manipulation;
    pointer-events: auto;
}

.clickable-noactive {
    cursor: pointer;
    touch-action: manipulation;
    pointer-events: auto;
}

.round-button {
    font-size: 30px;
    font-weight: lighter;
    background-color: rgb(152 152 152 / 12%);
    border-radius: 100px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-content {
    position: relative;
    width: 500px;
    height: 350px;
    background-color: black;
}

.panel-title {
    width: 100%;
    height: 50px;
}

.cchdf {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cchdfc {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.rnd {
    border-radius: 9999px;
}

svg {
    fill: white;
    width: 100%;
    height: 100%;
}

.bld {
    font-weight: bolder;
}