/* Styles par défaut */
.logo {
    width: 180px;
    height: auto;
}

.img-responsive {
    display: block; /* Retire l'espace en bas de l'image */
    max-width: 100%; /* L'image ne dépassera pas la largeur de son conteneur */
    height: auto; /* Maintient le ratio d'aspect de l'image */
}



.estimation-box {
            background-color: #f9f9f9;
            border-left: 4px solid #007bff;
            padding: 10px;
            border-radius: 5px;
            font-family: Arial, sans-serif;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            max-width: 370px;

            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9em;
            color: #555;
        }
        .icon {
            font-size: 17px;
            color: #007bff;
        }

       .collapsible {
            display: -webkit-box;
            -webkit-line-clamp: 1; /* Nombre de lignes visibles */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: max-height 0.25s ease-out;
            max-height: 1.2em; /* Ajuster en fonction de la hauteur de ligne */
        }

        .collapsible.expanded {
            max-height: 1000px; /* Augmentez cette valeur en fonction de la quantité de texte que vous avez */
            -webkit-line-clamp: unset;
        }

        .show-more {
            display: block;
            text-align: center;
            cursor: pointer;
            margin-top: 10px;
        }

        .show-more .bi {
            font-size: 16px; /* Ajustez la taille de l'icône selon vos besoins */
        }


               .custom-tooltip .tooltip-inner {
                max-width: 300px; /* Ajustez cette largeur comme souhaité */
                white-space: normal; /* Permet au texte de se mettre sur plusieurs lignes */
            }



            


            .captain-file-input-preview {
    max-width: 100%;
    max-height: 68px;
    min-height: 32px;
    object-fit: cover;
}




 .countdown-section {
    border: 1px solid #dfe2e1;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    margin-left: 3px;
    margin-right: 3px;
    padding: 14px 5px 26px;
    position: relative;
}
 .countdown-section .countdown-amount {
    color: #001e2b;
    display: inline-block;
    font-weight: 500;
    height: 50px;
    line-height: 1;
    line-height: 50px;
    margin-bottom: 15px;
    max-width: 100%;
    width: 50px;
}
.countdown-section .countdown-period {
    bottom: 10px;
    color: #889397;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
}
