/*.credit-shop {*/
/*    .winner {*/
/*        height: 146px;*/
/*        display: flex;*/
/*        justify-content: center;*/
/*        align-items: center;*/
/*        flex-direction: column;*/

/*        .number {*/
/*            margin-top: 10px;*/
/*            font-weight: bold;*/
/*            font-size: 18px;*/
/*        }*/
/*    }*/
/*}*/

.raffle .raffle-price {
    border: 2px solid #000;
    padding: 10px;
    background: #ebe56f;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
}

.raffle .description {
    margin-bottom: 10px;
}

.raffle .rewards {
    margin-bottom: 20px;
}

.raffle .numbers {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-gap: 10px;
}

.raffle .number {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    background: #ccc;
    border: 2px solid #ccc;
    font-size: 1.5rem;
}

.raffle .number.allowed {
    background: #ccf;
    border-color: #ccf;
}

.raffle .number.allowed:hover, .raffle .number.active {
    background: #ccf;
    color: blue;
    text-decoration: none;
    border-color: blue;
}

.raffle .number.my {
    border-color: #afaf02;
}

