:root{
    --color-primario: #0fb1f1;
    
}

.contenedor-resumen-compra{
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    align-items: center;
}

.contenedor-info-resumen-evento{
    display: flex;
    flex-direction: column;
    width: 95%;
    border: 1.5px solid rgb(0, 31, 133);
    background-color: var(--color-primario);
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.contenedor-info-resumen-compra{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 90%;
    border: 2px solid rgb(223, 223, 223);
    border-radius: 1rem;
    align-items: center;
    padding: 1rem;
    justify-items: center;
    gap: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;

}
.contenedor-info-resumen-compra h2{
    grid-column: 1/3;
}



.linea-resumen{
    width: 100%;
    height: 2px;
    background-color: rgb(204, 204, 204);
    grid-column: 1/3;
}

.info-resumen{
    justify-self: start;
}

.info-total{
    justify-self: end;
}
.info-evento-resumen{
    display: flex;
    width: 100%;
    gap: 2rem;
    align-items: center;
}
.contenedor-resumen-compra-general{
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}
.contenedor-tablas-general{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.mostrador-detalles{
    display: flex;
    width: 50%;
    border-bottom: 2px solid #0fb1f1;
    justify-content: space-between;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;

}

.contenedor-pagos{
    padding: 1rem;
    width: 80%;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: auto;
}
.tipo-pago-img{
    width: 50px;
}

#formulario-mercado-pago{
    border: solid 2px #e7e7e7;
    border-radius: 1rem;
    -webkit-box-shadow: 16px 17px 24px -12px rgba(191,191,191,1);
    -moz-box-shadow: 16px 17px 24px -12px rgba(191,191,191,1);
    box-shadow: 16px 17px 24px -12px rgba(191,191,191,1);
}

.total_pagar_mercado_pago span{
    font-weight: bold;
}
.total_pagar_mercado_pago{
    width: 100%;
    
}
.boton-mercado-pago{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 1rem;
    border: none;
    border-radius: 1rem;
    background-color: #00bcff;
    color: rgb(255, 255, 255);
    font-size: 18px;
    transition: all 0.5s ease-in-out;
    padding: 0.5rem;
    
    width: 50%;
    height: 50px;
}
.boton-mercado-pago:hover{
    transform: scale(1.05);
    background-color: #0a0080;
}

.mostrador-detalles img{
    width: 40px;
}

.medios_pago_area{
    margin: auto;
    padding: 1rem;
    width: 40%;
    display: flex;
    align-items: flex-start;
}
.titulo-mercadoPago{
    font-size: 18px;
    margin: auto;
}

#contenedor_lista_boletos{
    overflow-x: hidden;
}
#chevron-detalles{
    
    transition:all 0.5s ease-in-out;
}
#chevron-detalles:hover{
    cursor: pointer;
    
}
.rotar-chevron{
    transform: rotateX(180deg);
}

.desaparece{
    display: none;
}
.aparece{
    display: flex;
}

@media (max-width:992px){


    .titulo-mercadoPago{
        font-size: 14px;
    }
    .contenedor-resumen-compra{
        width: 90%;
    }
    .mostrador-detalles{
        width: 80%;
    }

    .medios_pago_area{
        width: 90%;
    }
    
    
}

@media (max-width:420px){
    .boton-mercado-pago{
        width: 90%;
        font-size: 14px;
        font-weight: bold;
    }
}