* {
    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: 100%;
    height: 100%;
    overflow: scroll;
    font-family: 'Arial', sans-serif;
    color: white;
}

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

#game {
    position: relative;
    -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: 12px;
}

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

.bld {
    font-weight: bolder;
}
