.theme-menu-seven .navbar-toggler {
    background: #e84f1d;
}

.theme-menu-seven.white-vr.theme-main-menu.sticky-menu.fixed {
    background: #000d32;
}
.hero-banner-nine {
    background: #30224c;
    background-image: url(../img/cover-paris.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 240px 0 140px;
    position: relative;
    z-index: 5;
}
.partner-section-five .logo-wrapper .br-name {
  padding: 0 1.5%;
}
.partner-section-five .logo-wrapper .br-name {
  padding: 0 1.5%;
}
.br-name {
    padding: 0 1.5%;
  }
.theme-main-menu .signup-btn-two {
    line-height: 50px;
    border-radius: 28px;
    letter-spacing: -0.36px;
    color: #e84f1d;
    border: 2px solid #e84f1d;
    padding: 0 26px;
}
.partner-section-five {
    background: #e84f1d;
}
.tx-white {color:#FFF;}
.sc-title {color:#0099a7!important;}

.title-style-ten .main-title img {
    position: absolute;
    bottom: -13px;
    left: 0;
    z-index: -1;
}
.fancy-short-banner-twelve .shape-one {
    width: 35px;
    height: 35px;
    background: #04b1c1;
    top: 18%;
    right: 35%;
}
.footer-style-nine .shape-one {
    width: 70px;
    height: 70px;
    left: 13%;
    top: -35px;
    background: #0099a7;
}
.scroll-top {background-color: #e84f1d;}

/************ css pour toolkit *********/

.remove-runner {
    cursor: pointer;
    color: red;
    font-size: 1.5rem;
}

/* Rendre le tableau scrollable sur mobile */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Améliorer l'esthétique du tableau */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}
/* Rendre la première ligne fixe */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: #343a40;
    color: #fff;
    z-index: 2;
}

/* Cacher les lignes de détails par défaut */
.hidden {
    display: none;
}

/* Animation pour afficher les détails */
/* Cacher les lignes de détails avec une hauteur initiale de 0 */
/* Cacher les lignes de détails par défaut */
.details-row {
    max-height: 0; /* Assure que la hauteur initiale est nulle */
    overflow: hidden; /* Masque tout contenu débordant */
    visibility: hidden; /* Cache visuellement et pour l'accessibilité */
    opacity: 0; /* Rendre invisible */
    display: none;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out, visibility 0.5s, opacity 0.5s;
}

/* Lorsque la ligne est visible */
.details-row.expanded {
    max-height: 200px; /* Ajustez à une hauteur suffisante pour votre contenu */
    visibility: visible; /* Rendre la ligne visible */
    opacity: 1; /* Transition vers visible */
    display: table-row; /* Conserver le style de rangée */
    padding: 10px 0; /* Ajouter un espace visuel */
    transition: max-height 0.5s ease-out, padding 0.5s ease-out, visibility 0.5s, opacity 0.5s;
}

/* Style des lignes principales au survol */
.main-row:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

/* Style des détails */
.details {
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
/* Style pour la cellule contenant la flèche */
.arrow-cell {
width: 40px; /* Largeur fixe */
text-align: center;
cursor: pointer;
}

/* Style pour l'icône */
.arrow-icon {
transition: transform 0.3s ease; /* Animation de rotation */
}

/* Rotation lorsque la rangée est étendue */
.main-row.expanded .arrow-icon {
transform: rotate(180deg); /* La flèche pointe vers le haut */
}
/* Stacked table pour les petits écrans */
@media (max-width: 768px) {
    .table-responsive table {
        border: 0;
    }
    .table-responsive thead {
        display: none;
    }
    .table-responsive tr {
        display: block;
        margin-bottom: 1rem;
    }
    .table-responsive td {
        display: block;
        text-align: right;
        font-size: 0.8rem;
        border-bottom: 1px solid #dee2e6;
    }
    .table-responsive td::before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
        color: #6c757d;
    }
}
/* Conteneur des données */
.data-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

/* Styles des cartes */
.data-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* En-tête de la carte */
.card-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #f9f9f9;
    font-size: 0.8rem;
    /* font-weight: bold; */
}

/* Détails cachés par défaut */
.card-details {
    padding: 1rem;
    background-color: #fff;
    display: none; /* Masquer par défaut */
}

/* Flèche de la carte */
.arrow-icon {
    transition: transform 0.3s ease;
}

/* Rotation de la flèche lors de l'expansion */
.card-header.expanded .arrow-icon {
    transform: rotate(180deg);
}

/* Afficher les détails */
.card-details.hidden {
    display: none;
}

.card-details.expanded {
    display: block;
}

/* Responsivité */
@media (min-width: 768px) {
    .data-container {
        display: none; /* Masquer les cartes sur desktop */
    }

    .table-responsive {
        display: block; /* Afficher le tableau sur desktop */
    }
}

@media (max-width: 767px) {
    .table-responsive {
        display: none; /* Masquer le tableau sur mobile */
    }

    .data-container {
        display: flex; /* Afficher les cartes sur mobile */
    }
}
@media (max-width: 991px) {
  h1 {
    font-size: 25px;
  }
}
