@import url('reset.css');
main {
    /* width: 70%; */
    margin: auto;
}


.container-select {
    background-color: transparent;
    padding: 1em;
    margin-bottom: 2em;
}
.container-select-2 {
    display: flex;
    flex-direction: row-reverse;
    min-height: 30vh;
}
.div-buscar {
    display: flex;
}
.buscar-boleto {
    font-size: small;
    font-family: var(--para-font);
}
.section-apartar .div-btn-apartar {
    padding: 2em;
    display: flex;
    flex-direction: row;
}
#totalCompra{
    text-align: center;
    font-size: xx-large;
}

.cantidad-boletos option {
    font-size: larger;
}

.grid-boletos , #boletos-select{
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.grid-boletos{
    max-height: 70vh;
    overflow-y: scroll;
}
#boletos-select {
    justify-content: flex-start;
    align-items: flex-start;
}
.btn-boletos {
    background-color: transparent;
    color: var(--second-color);
    font-size: 1.5vw;
    width: 7vw;
    /*max-height: 5vw;*/
    margin-bottom: .5vw;
}
.boleto-btn-select {
    background-color: chartreuse;
    margin: .3em;
}
.btn-boletos:hover {
    opacity: .8;
}
.comprado {
    background-color: lightgreen;
}
.seleccionado {
    background-color: chartreuse;
}
#boletos-select {
    /* background-color: rgba(255, 255, 255, .3);
    backdrop-filter: blur(5px); */
    font-size: 3vw;
    color: aliceblue;
    text-align: center;
    pad: 1em;
}
.btn-apartar {
    background-color: lightseagreen;
    width: 45%;
    height: 3em;
    border: none;
    border-radius: 10px;
    display: block;
    margin: auto;
    
}
.btn-aleatorio{
    width: 45%;
}
.encontrado {
    background-color: var(--second-color);
    color: white;
}
.section-boleto-digital {
    width: 70%;
    margin: auto;
}
.cantidad-label {
    font-size: x-large;
}
@media (max-width: 880px){
    main {
        width: 100%;
    }
    .btn-boletos {
        width: 100px;
        min-height: 25px;
        font-size: 1rem;
    }
    .container-select-2 {
        flex-direction: column;
    }
}