/* CARRUSEL */
#carrusel {
    position: relative;
}

#carruselCartas {
    width: 80%;
    display: flex;
    flex-wrap: nowrap;

    overflow: hidden;
    scroll-behavior: smooth;
}

#carruselCartas>div {
    /* Tamanyos */
    flex: 0 0 calc(100%/5);
    min-width: 0px;

    /* Relleno */
    padding-left: 1%;
    padding-right: 1%;
}

@media (max-width: 1200px) {
    #carruselCartas>div {
        flex: 0 0 calc(100%/4);
    }
}

@media (max-width: 991px) {
    #carruselCartas>div {
        flex: 0 0 calc(100%/3);
    }
}

#carruselCartas .card {
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    height: 100%;
}


/* BOTONES DE ANTERIOR Y SIGUIENTE */
.botCarrusel {
    /* Color */
    background-color: rgba(168, 168, 168, 0.5);
    box-shadow: 2px 2px 5px 0 rgba(22, 22, 26, 0.5);

    /* Tamanyo */
    width: 60px;
    height: 60px;

    /* Bordes */
    border-radius: 100%;

    /* Posicionamiento */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 18%;
    width: auto;
    aspect-ratio:1;
}

.botCarrusel:hover {
    background-color: rgba(168, 168, 168, 0.9);
}

#botAnterior {
    left: 10px;
}

#botSiguiente {
    right: 10px;
}

/* CORAZON */
.addCorazon:hover, .addCorazon:active{
    .coraSinRelleno{
        display:none;
    }
    .coraMedioRelleno{
        display:inline !important;
    }
}
.quitarCorazon:hover, .quitarCorazon:active{
    .coraConRelleno{
        display:none;
    }
    .coraMedioRelleno{
        display:inline !important;
    }
}