.wheel-wrapper {
    /* Hide UI during page load */
    visibility: hidden;
    position: relative;
    width: 100% !important;
    height: 500px !important;
    /* overflow: hidden; */
}

.wheel-wrapper .spin-layer{
    position: absolute;
    right: calc(50% - (81.5px / 2));
    top: calc(50% - (80px / 2));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    cursor: pointer;
    user-select: none;
}

.wheel-wrapper .spin-layer button{
    user-select: none;
    margin: 0;
    padding: 5px;
    border: none;
    outline: none;
    border-radius: 50%;
    height: 100px !important;
    width: 100px !important;
    background-color: transparent;
    color: #fff;
    font-size: 13px;
    line-height: 1.75;
    text-align: center;
}

.wheel-wrapper canvas{
    pointer-events: none !important;
}

.wheel-wrapper .gui-wrapper {
    padding: 10px;
    background-color: #f3f3f3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wheel-wrapper .gui-wrapper > div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.wheel-wrapper select {
    padding: 2px;
}

.wheel-wrapper label {
    margin-right: 5px;
}

.wheel-wrapper button {
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
    max-width: 100px;
}
