
.events-container{
    margin-top: 1rem;
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    margin: auto;
}

.ticket-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    /* width: calc(33.33% - 10px); */
    /* max-width: 450px; */
    min-width: 300px;
    background-color: rgb(243, 243, 243);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    margin: 1rem;
}

.ticket-container .image-function{
    width: 80px;
    height: 80px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.ticket-container h2{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.image-function img{
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.solid-line {
    margin: auto;
    width: 100%;
    height: 1px;
    background-color: rgb(143, 143, 143);
    margin-top: 15px;
    margin-bottom: 15px;
    
}

.info-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
    
}

.child-info{
    display: flex;
    width: 100%;
    margin: auto;
}
.lead{
    background-color: rgb(20, 123, 241);
    color: white;
    font-weight: 600;
    font-size: 12px;
    border: solid rgb(20, 123, 241) 1.5px;
    padding: 1rem;
    width: 100%;
    margin-bottom: 0px;
}



.info{
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid rgb(20, 123, 241) 1.5px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;

}

.info button {
    border: none;
    background-color: rgb(0, 119, 230);
    padding: 5px;
    color: white;
    border-radius: 5px;
    width: 90%;
    margin: auto;

}

.top{
    border-top: none;
    /* border-bottom: none; */
}

.center {
    border-left: none;
    border-right: none;
}

.extra-info{
    width: 100%;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 1rem;

}

.extra-info-card{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    -webkit-box-shadow: 0 0 30px 0 rgb(66 1 131 / 14%);
    -moz-box-shadow: 0 0 30px 0 rgb(66 1 131 / 14%);
    box-shadow: 0 0 30px 0 rgb(66 1 131 / 14%);
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    background-color: white;
    margin: 1rem;
    position: relative;
    overflow: hidden;
}
.card-header h2{
    font-size: 14px;
}
.card-body{
    width: 100%;
}
.card-body h2{
    font-size: 16px;
    font-weight: 600;
    color: rgb(22, 22, 22);
}
.extra-info .first-raw, .extra-info .second-raw{

    width: 100%;
}

.footer-line{
    background-color: rgb(0, 119, 230);
    height: 3px;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.raw-info{
    display: flex;
    justify-content: space-between;

}

.raw-led{
    font-weight: 600;
}

.hide{
    display: none;
}

@media (max-width:673px) {
    .events-container{
        justify-content: center;
        align-items: center;
    }
}