:root {

    --lot-primary:
        rgb(249,157,28);

    --lot-dark:
        rgb(174,110,20);
}

.pds_lotomania_ball {

    width: 56px;
    height: 56px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            var(--lot-primary),
            var(--lot-dark)
        );

    color: #ffffff;

    font-weight: 800;
}