#svg *, .svg * {
    -moz-user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.monopoly-container-all {
    position: fixed;
    left: calc(50vw - 30vh);
    top: 0;
    width: 100vh;
    height: 100vh;
}

.monopoly-container-all > * {
    position: absolute;
    width: 100vh;
    height: 100vh;
}

.monopoly-container-icons > * {
    width: 4.5vh;
    height: 4.5vh;
    border-radius: 50%;
    position: absolute;
    left: calc(var(--x) * 100vh - 2.25vh);
    top: calc(var(--y) * 100vh - 2.25vh);
    line-height: 4.5vh;
    font-size: 3vh;
    background-color: #FFF5;
    color: white;
    text-align: center;
}

.monopoly-container-players > * {
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    position: absolute;
    left: calc(var(--x) * 100vh - 2.5vh);
    top: calc(var(--y) * 100vh - 5vh);
}

.monopoly-left-div {
    position: fixed;
    top: 20vh;
    left: calc(50vw - 65vh);
    width: 30vh;
}

.monopoly-left-div > p {
    font-size: 3.5vh;
    font-weight: 500;
    text-align: center;
    cursor: default;
}

.monopoly-left-div > p:nth-child(1) {
    margin: 0;
    color: #ffffff;
}

.monopoly-left-div > p:nth-child(2) {
    margin: 0 0 3.5vh 0;
    color: #fcee21;
}

.monopoly-left-div > p:nth-child(3) {
    margin: 0 0 3.5vh 0;
    color: white;
}

.monopoly-left-div > button {
    color: #fff;
    background-color: #ff8138;
    font-size: 5vh;
    border: none;
    width: 100%;
    height: 10vh;
    border-radius: 2vh;
    font-weight: bold;
    transition: 0.3s background-color;
    cursor: pointer;
}

.monopoly-left-div > button:hover {
    background-color: #ca351e;
}

.monopoly-left-div > button:active {
    background-color: #f73517;
}