.uppercase-input {
    text-transform: uppercase;
}

.selected-category {
    background: #1c5c3a;
    color: aliceblue;
    text-transform: uppercase;
}

div.categorie {
    border: 2px solid green;
    text-transform: uppercase;
    width: 350px;
    height: 120px;
}

@media (max-width: 767px) {
    div.categorie {
        height: 100px;
        text-align: center;
    }

}

a.btn.btn-info.accueil {
    margin-top: 5px;
    background: grey;
    color: aliceblue;
    font-weight: 800;
    font-size: xx-large;
}

a.btn.btn-warning.telecharger {
    color: aliceblue;
    font-weight: 800;
}

/* contact */
.email-link {
    color: #007bff;
    font-weight: bold;
}

.email-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Effet de clignotement */
@keyframes blink {

    0%,
    100% {
        background-color: rgba(255, 0, 0, 0.2);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }

    50% {
        background-color: rgba(255, 0, 0, 0.5);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
    }
}

/* Style pour le conteneur arrondi et animé */
#limite {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid red;
    border-radius: 50px;
    /* Encadrement rond */
    background-color: rgba(255, 255, 255, 0.9);
    /* Couleur de fond subtile */
    font-size: 1.2rem;
    font-weight: bold;
    color: red;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

/* Clignotement lorsqu'une mise à jour se produit */
#limite.blink {
    animation: blink 1.5s infinite;
    /* Clignotement fluide */
}

/* page de demmarrage */
.custom-badge {
    background-color: #034550;
    /* Couleur bleu clair */
    color: #ffffff;
    /* Texte blanc */
    padding: 12px;
    font-size: 1.5rem;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
    text-align: center;
}

.custom-text-muted {
    font-size: 1.8rem;
    color: #6c757d;
    /* Couleur gris clair */
    display: block;

}


.payment-method-form-orange {
    border: 1px solid #ffffff;
    margin-bottom: 10px;
    padding: 10px;
    height: 100%;
    box-shadow: inset 0 0 8px rgb(255 255 255 / 48%);
    border-radius: 8px;
}

.payment-method-form-telecel {
    border: 1px solid #ffffff;
    margin-bottom: 10px;
    padding: 10px;
    height: 100%;
    box-shadow: inset 0 0 8px rgb(255 255 255 / 48%);
    border-radius: 8px;

}


.payment-method-form-moov {
    border: 1px solid #ffffff;
    margin-bottom: 10px;
    padding: 10px;
    height: 100%;
    box-shadow: inset 0 0 8px rgb(255 255 255 / 48%);
    border-radius: 8px;

}


.pulse-border {
    border: 2px solid red;
    border-radius: 8px;
    animation: pulseRed 1.5s infinite;

    background-color: rgb(255, 255, 255);
    color: #d40000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.pulse-border2 {
    border: 2px solid green;
    border-radius: 8px;
    animation: pulseRed 1.5s infinite;

    background-color: green;
    color: whitesmoke;
    padding-top: 10px;
    padding-bottom: 10px;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 116, 64, 0.7);
    }

    90% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(43, 19, 19, 0);
    }
}

.highlight-message {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #d4edda, #c3e6cb);
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 15px;
    animation: pulse-border 1.5s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 10px #28a745;
    }

    50% {
        box-shadow: 0 0 20px #28a745;
    }

    100% {
        box-shadow: 0 0 10px #28a745;
    }
}


a.btn.btn-danger-custom {
    background-color: #ffffff;
    border: 1px solid red;
}


a.btn.btn-danger-custom:hover {

    color: #d40100;

}

.payment-method-form-card {
    border: 1px solid #ffffff;
    margin-bottom: 10px;
    padding: 10px;
    height: 100%;
    box-shadow: inset 0 0 8px rgb(255 255 255 / 48%);
    border-radius: 8px;

}

.contactsFooter {
    font-size: 12px;
    font-family: cursive;
}


@media (min-width: 481px) and (max-width: 767px) {

    .payment-method-form-orange {
        margin-top: 10px;
    }

    .payment-method-form-card {
        margin-top: 10px;
    }

}


@media (min-width: 320px) and (max-width: 480px) {


    .payment-method-form-orange {
        margin-top: 10px;
    }

    .payment-method-form-card {
        margin-top: 10px;
    }
}


.pulse-red {

    background-color: red;

}