/* Style prix des cours */
.base-price{
    font-size: 34px;
    font-weight: 600;
    color: #f96f33;
}

.base-price-discounted{
    font-size: 30px;
    font-weight: 500;
    color: #869898;
    text-decoration: line-through;
}

.plan-payement-price{
    font-size: 20px;
    font-weight: 600;
    color: #f96f33;
}

.plan-payement-price-discounted{
    font-size: 18px;
    font-weight: 500;
    color: #869898;
    text-decoration: line-through;
}


/* Conteneur des détails du cours */
.course-details {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 23px 15px;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto; /* Centre le conteneur horizontalement */
    margin-right: auto; /* Centre le conteneur horizontalement */
}

/* Élément de détail du cours */
.course-detail-item {
    flex: 1;
    text-align: center;
}

/* Label pour chaque détail */
.course-detail-label {
    font-weight: bold;
}

/* Style pour les dates */
.course-detail-date {
    font-weight: bold;
    color: #f96f33; /* Couleur pour les dates */
}

/* Style pour le bouton */
.button {
    background-color: #f96f33; /* Couleur de fond du bouton */
    color: #fff; /* Couleur du texte du bouton */
    font-size: 16px; /* Taille de la police du bouton */
    font-weight: 700; /* Poids de la police du bouton */
    padding: 10px 20px; /* Espace intérieur du bouton */
    border-radius: 5px; /* Coins arrondis du bouton */
    text-decoration: none; /* Enlève le soulignement du texte */
    display: inline-block; /* Affiche le bouton en ligne */
    transition: background-color 0.3s ease; /* Animation pour la couleur de fond */
}

/* Changement de couleur au survol du bouton */
.button:hover {
    background-color: #333; /* Couleur de fond au survol */
}


@media only screen and (max-width: 767px){	/* ----- TELEPHONE ----- */ 

	.course-details {
		flex-direction: column;
		gap: 28px;
	}

	.course-detail-item{
		font-size: 20px;
	}

    .course-detail-date{
        font-size: 23px;
    }


}