.lottery-container{
    height:87%;
}

.lottery{
    position:relative;
    /* background-color:white; */
    height:733px;
    width:582px;

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


    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.lottery-image{
    background-color:white;
}

.lottery-img{
    object-fit: cover;
}

.lottery-content-container{
    padding:30px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:space-between;
    /* height:fill; */
    flex-grow: 1;
    color:white;

    background-color:rgba(50, 50, 50, 0.9);
}


.lottery-title {
    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:700px){
    .lottery{
        width:100%;
    }
    .lottery-container{
        width:100%;
    }
}

@media(max-width:500px){
    .lottery{
        width:100%;
        height:auto;
        margin-bottom:20px;
    }

    .lottery-container{
        padding:0px;
    }

    .jm-countdown{
        flex-wrap:wrap;
        height:fit-content;
    }

    .lottery-container{
        height:fit-content;
    }

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