.swal-wide{
    width:700px !important;
}
.custom-option {
    background-color: #20c997;
    color: #fff;
}
.overlay_alert {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.loading_docs_alert {
    position: fixed;
    top: 50%;
    left: 50%;
    width:50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.menu-collapsed .brand-logo{
    max-width: 30px;
}
.menu-collapsed .navigation-header{
    display: none;
}

.__card-product {
    width: auto;
    background: #fff;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.__card-product,
.__card-product img {
    transition: all 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
    position: relative;
}
.__card-product img {
    width: 100%;
    height: 450px;
}


.__card-product .__card-title {
    background-color: hsla(0, 0%, 100%, 0.7);
    width: 100%;
    position: absolute;
    bottom: 350px;
}

.__card-product .__card-title h3 {
    line-height: 48px;
    margin: auto;
    text-align: center;
    vertical-align: middle !important;
    color:#000 !important;
    font-weight: bold;
}
.__card-img-transparency {
    opacity: 0.2;
    cursor: auto;
}
.__descriptions-product {
    position: absolute;
    top: 0;
    left: 0;
    background-color: hsla(0, 0%, 100%, 0.9);
    width: 100%;
    height: 100%;
    transition: all 0.7s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
    clip-path: circle(0 at 100% 100%);
}
.__descriptions-product ul li {
    color: #000;
    text-decoration: none;
}
.__card-product:hover {
    transition: all 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    transform: scale(0.97);
}
.__card-product:hover .__descriptions-product {
    left: 0;
    transition: all 0.7s ease-in-out;
    clip-path: circle(75%);
}
.__card-product h1 {
    color: #ff3838;
    letter-spacing: 1px;
    margin: 0;
}
.__card-product p {
    line-height: 24px;
    height: 70%;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

.background-line {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 1; /* Placée en arrière-plan */
}

.progress-line {
    position: absolute;
    top: 25px;
    left: 0;
    height: 4px;
    background-color: #007bff;
    z-index: 2; /* Placée au-dessus de la ligne grise */
    width: 0; /* La largeur sera ajustée dynamiquement */
    transition: width 0.5s ease;
}

.timeline-step {
    position: relative;
    z-index: 3; /* Placée au-dessus des lignes */
    text-align: center;
}

.timeline-icon {
    background-color: #fff;
    border: 3px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 10px;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s, transform 0.3s ease;
}

.timeline-title {
    font-size: 14px;
    color: #555;
}

.timeline-step.active .timeline-icon {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.timeline-step.active:hover .timeline-icon {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: scale(1.8); /* Effet de survol qui agrandit la bulle */
}

/* Optionnel : Ajouter une légère ombre lors du survol */
.timeline-step.active:hover .timeline-icon {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Ajoute une ombre douce */
}

.icon-container {
     display: flex;
     justify-content: center;
     align-items: center;
 }

.icon-locked-wrapper {
    position: relative; /* Nécessaire pour le positionnement de l'infobulle */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; /* Largeur de la boîte */
    height: 40px; /* Hauteur de la boîte */
    background-color: #ff0000; /* Couleur de fond */
    border-radius: 10px; /* Coins arrondis */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Effet hover */
}

.icon-locked-wrapper i {
    color: white; /* Couleur de l'icône */
    font-size: 20px; /* Taille de l'icône */
}

.icon-locked-wrapper:hover {
    background-color: #ff4d4d; /* Changer la couleur de fond au survol */
    transform: scale(1.1); /* Effet d'agrandissement */
}

/* Style de l'infobulle */
.icon-locked-wrapper::after {
    content: attr(data-tooltip); /* Récupère le texte depuis l'attribut data-tooltip */
    position: absolute;
    top: 50%; /* Centrer verticalement par rapport à l'icône */
    right: 105%; /* Positionne l'infobulle à gauche de l'icône */
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    width: 200px; /* Largeur fixe de l'infobulle */
    text-align: center; /* Centrer le texte à l'intérieur de l'infobulle */
    white-space: normal; /* Permettre le retour à la ligne */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 12px;
    z-index: 10;
}

.icon-locked-wrapper:hover::after {
    opacity: 1;
}
.__card-product img.autres {
    height: 500px;
}
