.boletos-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items:center;
    padding: 10px;
    margin-top: 1rem;
    
}

.background-img {
    /* background-color: blueviolet; */
    position: absolute;
    /* top: 0;
    left: 0; */
    width: 200%;
    height: 200%;
    object-fit: cover;
    object-position: center;
    z-index: -1; 
    filter: blur(15px); /* agrega un efecto de desenfoque */
    -webkit-backdrop-filter: blur(5px); /* para compatibilidad con Safari */
}

.boleto{
    width: 60%;
    display: grid;
    grid-template-columns: 15% 15% 60% 10%;
    position: relative;
    overflow: hidden;
    padding: 10px;
    margin-top: 1rem;
    border-radius: 10px;
    height: 240px;
}

.boleto-pasado{
    width: 60%;
    display: grid;
    grid-template-columns: 20% 50% 30%;
    position: relative;
    overflow: hidden;
    padding: 10px;
    margin-top: 1rem;
    border-radius: 10px;
    

}

.info-boleto{
    align-self: center;
}

.info-boleto p, .info-boleto h2{
    color:white;
}

.banner-event{
    width: 100px;
    height: 150px;
    position: relative;
    border-radius: 5px;
    
}

.banner-event img{
    position: absolute;
    /* top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1; 
    
}

.date-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.date-container p{
    color:white;
    font-weight: 600;
}

.see-more{
    align-self: center;
    justify-self: center;
}
.orden-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    color: white;
}

.orden-container p{
    color: white;
}

.buttons-event{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: start;
    align-items: center;

}

.buttons-event a{
    display: flex;
    align-items: center;
    width: 170px;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    margin: 10px;
    text-decoration: none;
}

.buttons-event .see-ticket{
    padding: 3px;
    background-clip: content-box;
    background-color: white;
    border: solid rgb(255, 255, 255) 3px;
    border-radius: 5px;
    font-weight: 600;
    color: rgb(29, 29, 29);
    font-size: 18px;
    margin-left: 0;
    left: 2px;
    top: 2px;
}

.buttons-event .see-streaming{
    border: solid #fff 3px;
    border-radius: 5px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    font-size: 18px;
    margin-left: 0;
}
.see-streaming svg{
    margin-right: 3px;
}
.links-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;

}

.links-container button{
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    height: 40px;
    margin: 5px;
    font-weight: 600;
}

.links-container .button-link{
    background-color: rgb(0, 131, 218);
    color: white;
}

.links-container .button-refresh{
    background-color: rgb(13, 196, 52);
    color: white;
}
.links-container .button-streaming{
    background-color: rgb(255, 0, 85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    height: 40px;
    border-radius: 5px;
    margin: 5px;
    color: white;
    padding: 1px 6px;
    text-decoration: none;
}
.links-container .button-streaming svg{
    margin-right: 2px;
}

@media (max-width: 992px) {
    .boleto{
        width: 80%;
    }
}

@media (max-width: 768px){

    .banner-event{
        width: 50px;
        height: 50px;
        position: relative;
        align-self: center;
        border-radius: 50%;
        
    }
    
    .banner-event img{
        position: absolute;
        /* top: 0;
        left: 0; */
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: -1; 
        border-radius: 50%;
        
    }

    

    .boleto{
        width: 100%;
        grid-template-columns: 15% 10% 50% 20%;
        column-gap: 5px;
    }

    .boleto-pasado{
        width: 100%;
        grid-template-columns: 20% 50% 30%;
        column-gap: 5px;
    
    }
    .boletos-container{
        padding: 0;
    }
    .info-boleto p, .info-boleto h2{

        font-size: 14px;
    }

    .info-boleto h2{
        font-weight: 600;

    }
}