.toggle_liste_cadeaux {
    font-family: 'FuturaBT-Light', sans-serif;
    border: none;
    background: none;
    color: #E57373;
    font-weight: 600;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 25px;
}

@media screen and (max-width: 991px) {
    .toggle_liste_cadeaux {
        font-size: 18px;
    }
}

.toggle_liste_cadeaux .caret svg {
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

.toggle_liste_cadeaux[aria-expanded="true"] .caret svg {
    transform: rotate(-180deg);
}

#liste_cadeaux_panier {
    border: 2px solid #BEBEBE;
    padding: 10px;
    display: grid;
    align-items: end;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5em;
}

@media screen and (max-width: 1199px) {
    #liste_cadeaux_panier {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 991px) {
    #liste_cadeaux_panier {
        grid-template-columns: repeat(3, 1fr);
    }

    #liste_cadeaux_panier .grid-break {
        grid-column: 1/span 3;
    }
}

@media screen and (max-width: 320px) {
    #liste_cadeaux_panier {
        grid-template-columns: repeat(2, 1fr);
    }

    #liste_cadeaux_panier .grid-break {
        grid-column: 1/span 2;
    }
}

#liste_cadeaux_panier .cadeau {
    position: relative;
    padding-top: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#liste_cadeaux_panier .min-tranche {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'FuturaBT-Light', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
    color: #626262;
    white-space: nowrap;
}

@media screen and (max-width: 320px) {
    #liste_cadeaux_panier .cadeau {
        padding-top: 0;
    }

    #liste_cadeaux_panier .min-tranche {
        top: -22px
    }
}

#liste_cadeaux_panier .cadeau .inner {
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}

#liste_cadeaux_panier .cadeau .inner label {
    margin: 0;
}

#liste_cadeaux_panier .cadeau.not-available .inner {
    opacity: 0.7;
    filter: grayscale(75%);
    cursor: not-allowed;

}


#liste_cadeaux_panier .cadeau .cadeau_footer {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: flex-end;
    margin-top: auto;
}


#liste_cadeaux_panier .cadeau .cadeau_footer input {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

#liste_cadeaux_panier .cadeau .cadeau_footer input:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #BEBEBE;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#liste_cadeaux_panier .cadeau .cadeau_footer input:after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    background-color: #327FA8;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 3;
}

#liste_cadeaux_panier .cadeau .cadeau_footer input:checked:after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background-color: #327FA8;
}
