@font-face {
    font-family: 'roboto';
    src: url('../fonts/roboto.ttf') format('truetype');
}

body {
    margin: 0;
    font-family: "roboto";
    background-color: black;
    overflow: hidden;
}

#main-section {
    position: absolute;
    background: black;
    color: white;
    opacity: 0;
    user-select: none;
}

#history-canvas {
    position: absolute;
    border: 0.1vw solid white;
    border-radius: 0.3vw;
    top: 6.985%;
    left: 8%;
    width: 86%;
    height: 7.03%;
}

#wheel-canvas {
    position: absolute;
    top: 21.015%;
    right: 6%;
    width: 72vh;
    height: 72vh;
}

.cold-numbers,
.hot-numbers {
    position: absolute;
    height: 33.8%;
    width: 12.25%;
    left: 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cold-numbers>.numbers,
.hot-numbers>.numbers {
    border: 0.1vw solid white;
    border-radius: 0.3vw;
    height: 97%;
    width: 28.3%;
    padding: 2%;
}

.numbers-text {
    left: 0%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1.2vw;
    font-family: 'roboto regular', sans-serif;
}

.numbers-text>span {
    white-space: pre-wrap;
    word-wrap: break-word;
    width: 100%;
    letter-spacing: 0.2vw;
    line-height: 1.35vw;
    text-align: center;
}

.probability {
    height: 100%;
    width: 30%;
    right: 0%;
    font-size: 1.2vw;
}

.probability>div {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cold-numbers {
    top: 21.015%;
}

.hot-numbers {
    top: 59.215%;
}

.cold-numbers>.numbers>img,
.hot-numbers>.numbers>img {
    position: relative;
    display: block;
    height: 19%;
    width: 100%;
}

.numbers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* STATISTIC */

.group {
    position: absolute;
    width: 25%;
    height: 11.9%;
    left: 23%;
}

.group>div>div {
    position: relative;
    width: 40%;
    height: 100%;
}

.group>div>div:nth-child(1) {
    display: flex;
    align-items: center;
}

.group>div>div:nth-child(2) {
    width: 70%;
}

.group>div {
    width: 100%;
    height: 20.6%;
    padding: 2% 0 2% 0;
    position: relative;
    display: flex;
}

.progress {
    border: 0.1vw solid white;
    border-radius: 0.3vw;
}

.progress>div {
    background: #36a50a;
    border-radius: 0.3vw;
    height: 100%;
    width: 0%;
}

.group1 {
    top: 21.015%;
}

.group2 {
    top: 39.915%;
}

.group3 {
    top: 58.815%;
}

.group4 {
    top: 81.115%;
}

#game-name {
    position: absolute;
    bottom: 1%;
    right: 1%;
    text-transform: uppercase;
    font-size: 1.3vw;
}

.vip #history-canvas,
.vip .cold-numbers>.numbers,
.vip .hot-numbers>.numbers,
.vip .group>div>div:nth-child(2) {
    border: 1px solid #e7e7e880 !important;
    border-radius: 0 !important;
    background-color: rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
}

.vip .cold-numbers>.numbers,
.vip .hot-numbers>.numbers {
    width: 32.3%;
}

.vip .progress>div {
    border-radius: 0 !important;
    background: #15a565;
}