*::-webkit-scrollbar{
    display: none;
}

img {
    user-select: none;
    -webkit-user-drag: none;
}

input[type="radio"] {
    visibility: hidden;
    position: relative;
    aspect-ratio: 1/1;
    vertical-align: middle;
}

input[type="radio"]::after {
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 100%;
    position: absolute;
    visibility: visible;
    content: attr(displayValue);
    background-color: white;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

input[type="radio"]:checked::after {
    background-color: #00ff48;
}