.lotteryb-container{
    /* height:100%; */
    padding:16px;
    display:flex;
    align-items:center;
    justify-content:center;

}
.lotteryb{
    position:relative;
    background-color:white;
    height:fit-content;
    width:fit-content;

    display:flex;
    flex-direction:row;
    overflow:hidden;
    border-radius:10px;

    flex-wrap:wrap;


    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.lotteryb-image-container{
    width:500px;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;

    margin-top:auto;
    margin-bottom:auto;

}
.lotteryb-img{
    /* object-fit: cover; */
    height:100%;
    max-height: 500px;
    max-width:500px;
    width: auto;
}

.lottery-split{
    width:500px;
    
}

.lotteryb-content-container{
    padding:30px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:space-around;
    /* height:fill; */
    flex-grow: 1;
    border-top: 1px solid rgb(180, 180, 180);
}


.lottery-title-b {
    min-height:110px;
}

.lottery-details{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
}

.lottery-btn-container{
    width:100%;
    transition: all .5s ease;

}

/* .lottery-btn-container:hover{
    background-color:#F2B544;

} */

.lottery-btn-container a div span{

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.lottery-btn-container a{
    text-decoration:none;
    color:white;
}

@media(max-width: 1225px){
    /* .lotteryb-img{
        width:100%;
        height:auto;
    }

    .lotteryb-image-container{
        width:100%;
        height:fit-content;
    } */

    .lotteryb{
        width:500px;
    }
}

@media(max-width:500px){
    .lotteryb{
        width:100%;
    }

    .lotteryb-image-container {
        width: 100%;

    }

    .lotteryb-img{
        object-fit: cover;
        width:100%;
        height:auto;
    }

    .lottery-split {
        width: 100%;
    }

    .lottery-title-b {
        height:fit-content;
    }
}