:root {
    --color-1: #ff3958;
    --color-2: #579d89;
    --color-3: #70c9af;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0px;
    color: #2A384A; /* Couleur du texte */
    font-size: 18px;
    background: #f1f1f1;
  
}


 .google-signin-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            color: #3c4043;
            border: 1px solid #dadce0;
            border-radius: 24px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s ease;
            font-family: 'Google Sans', 'Roboto', Arial, sans-serif;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            min-width: 200px;
        }

        .google-signin-btn:hover {
            background: #f8f9fa;
            border-color: #c6c6c6;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .google-signin-btn:active {
            background: #f1f3f4;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .google-signin-btn:disabled {
            background: #f8f9fa;
            color: #9aa0a6;
            border-color: #e8eaed;
            cursor: not-allowed;
            box-shadow: none;
        }

        .google-icon {
            width: 18px;
            height: 18px;
            margin-right: 8px;
        }

        /* Modal pour le bouton Google */
        .google-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999999;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .google-modal-content {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            text-align: center;
            min-width: 350px;
            position: relative;
        }

        .google-modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }

        .google-modal h3 {
            margin: 0 0 20px 0;
            color: #333;
        }
        
 .baseline {
        width: 100%;
        max-width: 1200px;
        position: relative;
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 20px;
        margin: 0 auto;
    }

    .baseline_msg {
        opacity: 0;
        padding: 20px 40px;
        color: white;
        font-size: 30px;
        font-weight: 700;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        border-radius: 15px;
        margin: 10px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        height: 100px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1.3);
    }

    .baseline_msg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transform: skewX(-15deg) translateX(-100%);
        transition: all 0.5s;
    }

    .baseline_msg:hover::before {
        transform: skewX(-15deg) translateX(100%);
    }

    .baseline_msg.from-left {
        transform: translateX(-100px);
        animation-name: fromLeft;
        justify-content: flex-start;
        width: 80%;
        align-self: flex-start;
    }

    .baseline_msg.from-right {
        transform: translateX(100px);
        animation-name: fromRight;
        justify-content: flex-end;
        width: 80%;
        align-self: flex-end;
    }

    #msg1 {
        
         background: linear-gradient(135deg, #212529, #606972) !important;
        animation-delay: 0.5s;
    }

    #msg2 {
       background: linear-gradient(135deg, #ff3958, #ff7b8f);
        animation-delay: 1.5s;
    }

    #msg3 {
         
         background: linear-gradient(135deg, #212529, #606972) !important;
        animation-delay: 2.5s;
    }

    @keyframes fromLeft {
        0% {
            opacity: 0;
            transform: translateX(-100px);
        }
        20% {
            opacity: 1;
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fromRight {
        0% {
            opacity: 0;
            transform: translateX(100px);
        }
        20% {
            opacity: 1;
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @media (max-width: 768px) {
        .baseline_msg {
            font-size: 1.8rem;
            padding: 15px 25px;
            height: 80px;
        }
        
        .baseline {
            height: 400px;
        }
    }

    @media (max-width: 480px) {
        .baseline_msg {
            font-size: 1.2rem;
            padding: 10px 20px;
            height: 60px;
        }
        
        .baseline {
            height: 300px;
        }
    }

/* Structure de base */
.champ-group {
    margin-bottom: 15px;
}

.label-group {
    margin-bottom: 5px;
}

.inputs-group {
    position: relative;
    width: 100%;
}

/* Style pour le bouton de correction (apparaît au focus) */
.correction-btn {
    position: absolute;
    top: -45px; /* Positionne le bouton au-dessus du champ */
    right: 0;
   
    display: none; /* Caché par défaut */
    align-items: center;
    z-index: 5;
}

/* Affiche le bouton quand le textarea/input a le focus */
.input-wrapper:focus-within .correction-btn,
.textarea-wrapper:focus-within .correction-btn {
    display: flex;
}


.correction-notification {
    position: absolute;
    bottom: -25px;
    right: 0;
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    display: none;
    z-index: 5;
}


/* Style pour l'overlay de chargement */
.overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.loading-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dots {
    display: inline-block;
    width: 24px;
    text-align: left;
}

@keyframes dot-animation {
    0% { content: "."; }
    33% { content: ".."; }
    66% { content: "..."; }
}

.dots::after {
    content: "";
    animation: dot-animation 1.5s infinite;
}

.section_carousel{
    background-image: url('../img/fond-carousel.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
   
}

.custom-carousel {
    position: relative;
   
    z-index: 1;
}

.custom-carousel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.carousel-inner {
    position: relative;
    z-index: 1;
}

.carousel-item {
    position: relative;
    z-index: 2;
}

.fixed-bottom {
    position: fixed;
    bottom: 0; /* Positionné en dehors de l'écran initialement */
    left: 0;
    width: 100%;
    background-color: var(--color-1);
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 16px;
    z-index: 1000;
    
}



.hidden {
    display: none;
}

.iframe-container2 {
            width: 400px; /* Largeur typique d'un smartphone */
            height: 680px; /* Hauteur typique d'un smartphone */
            border: 16px solid #000; /* Bordure pour simuler le cadre d'un smartphone */
            border-radius: 36px; /* Coins arrondis */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Ombre pour un effet réaliste */
           
            overflow: hidden;
            margin: auto;
           
        }

        .iframe-container {
            width: 360px; /* Largeur typique d'un smartphone */
            height: 640px; /* Hauteur typique d'un smartphone */
            border: 16px solid #000; /* Bordure pour simuler le cadre d'un smartphone */
            border-radius: 36px; /* Coins arrondis */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Ombre pour un effet réaliste */
            background-color: #fff;
            overflow: hidden;
            margin: auto;
           
        }
        .iframe-container iframe {
            width: 100%;
            height: 100%;
        }


        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color:var(--color-1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);

        }
        .carousel-control-prev {
            left: 10%;
        }
        .carousel-control-next {
            right: 10%;
        }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
             background-color:var(--color-1);
            border-radius: 50%;

        }

.navbar{
    background: #FFF;
    padding: 20px 0 20px 0;
}
 
}


.advantages-block {
           
        }
        .advantages-block h2 {
            text-align: center;
            color: #333;
        }
        .advantages-block ul {
            list-style-type: none;
            padding: 0;
        }
        .advantages-block li {
            padding: 15px 0;
           
            display: flex;
            align-items: center;
        }
        .advantages-block li i {
            color: var(--color-1);
            margin-right: 10px;
            font-size: 30px;
        }
        .advantages-block li:last-child {
            border-bottom: none;
        }


a{
    color: inherit;
   text-decoration: none;
}

a.underline{
    text-decoration: underline !important;
}

a.noTrait{
    text-decoration:none;
}

a:hover{
    color: inherit;
}

.equal-height {
    display: flex;
}

.equal-height .col-md-6 {
    flex-grow: 1; /* Permet à chaque colonne de prendre la même hauteur */
    display: flex;
    flex-direction: column; /* Permet au contenu interne de s’empiler en colonne */
}

.gras{
    font-weight:bold;
}

.progress-bar {
            min-width: 80px; /* Ajustez cette valeur en fonction de la taille du texte */
        }

p{
   
    padding: 0;
}

.bloc_blanc_ico{
    background: #FFFF;
    padding: 10px;
    text-align: center;
    color: #333;
}

.bloc_blanc_ico i{
    font-size: 30px;
    color:var(--color-1);
}

.blocGris{
    background: #F4F4F4;
    padding: 10px;
    margin: 5px 0 5px 0;
}

.input-group-addon{
    position: absolute;
    right: 5px;
    top: 15px;
    text-align: center;
    width: 30px;
    border-left: 1px solid #ddd;
}


@font-face {
    font-family: 'logo'; /* Nom que vous donnez à la police pour l'utiliser dans CSS */
    src: url('../font/LTRenovate-Bold.otf') format('opentype');
}

.btn-custum{
    background: linear-gradient(135deg, #ff3958, #ff7b8f);
    border:none;
    color: #FFF;
}

.btn-custum:hover{
    opacity: 0.9;
    color: #FFF;
}

.btn-custum:active {
    opacity: 1;
    color: #FFF;
}

.btn-custum:focus{
   
    box-shadow: 1px var(--color-1) !important;
}

.btn-dark{
    background: linear-gradient(135deg, #212529, #606972) !important;
    border:none;
}

.enBasDroite{
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 1000; 
}

.icon-custum{
    color:var(--color-1);
}
.compteur{
    width: 100px;
    height: 50px;
    font-weight: bold;
}

a.active{
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.grandeIcone{
    font-size: 100px;
    color: #333;
    background: #F7F7F7;
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    line-height: 200px;
    text-align: center;

}

.miniProfil{
     width: 34px;
    height: 34px;
    border-radius: 17px;
    line-height: 34px;
    text-align: center;
}

.petitTexte{
    font-size: 10px;
    color: #333;
}

#logo{
     font-family: 'logo', sans-serif;
     font-size: 40px;
    color: #2A384A;
    margin: 0;
    padding: 0;
    line-height: 30px;
    text-align: center;
}

#logo2{
     font-family: 'logo', sans-serif;
     font-size: 40px;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 30px;
   
}

.banniere{
    background: #FFF !important;
    border-bottom: 1px solid #ddd;
}

.bg_accueil {
    background-image: url('../img/test-3.jpg'); /* Chemin vers votre image */
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scan {
   
    font-size: 24px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
}


.fond-blanc-transp {
    background-color: rgba(0, 0, 0, 0.4); /* Fond blanc semi-transparent */
    border-radius: 20px; /* Bordures arrondies */
    padding: 50px; /* Espace autour du texte */
   color: #fff;
}

/* Assurez-vous que l'image ne dépasse pas le cadre du conteneur */
.fond-blanc-transp img {
    max-width: 100%;
    height: auto;
}



.form-check-input:checked {
  background-color: var(--color-1); 
  border-color: var(--color-1);
}

.form-check-input:focus {
  border-color: var(--color-1);
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2A384A;
    font-weight: bold;
}

h1{
    font-size: 30px;
    
}

h2{
    font-size: 30px;
}



#logo span:nth-of-type(1) {
 
}

#logo span:nth-of-type(2) {
  color: var(--color-1);
}

#logo span:nth-of-type(3) {
  color: var(--color-1);
}

#logo2 span:nth-of-type(1) {
 
}

#logo2 span:nth-of-type(2) {
  color: var(--color-1);
}

#logo2 span:nth-of-type(3) {
  color: var(--color-1);
}
.gradient-hr {
        border: none;
        height: 2px; /* Hauteur de la ligne */
        background: linear-gradient(to right, white, gray, white);
    }

.progress-bar2 {
    width: 100%;
    height: 20px; /* Ajustez la hauteur de la barre selon vos besoins */
    background-color: #e0e0e0; /* Couleur de fond de la barre */
    border-radius: 5px; /* Pour arrondir les coins de la barre */
    overflow: hidden; /* Pour s'assurer que le remplissage ne déborde pas */
}

.progress-fill {
    height: 100%;
    background-color: #d99b9b; /* Couleur du remplissage */
    width: 0%; /* Valeur initiale, sera modifiée en fonction du pourcentage */
    border-radius: 5px 0 0 5px; /* Pour arrondir le coin gauche du remplissage */
    transition: width 0.3s ease; /* Pour animer la barre lorsqu'elle se remplit */
}

.progress-text {
    font-weight: bold;
}

.pourcent_trad,.pourcent_trad2{
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
  z-index: 100000;
    background: var(--color-1);
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.4); /* Ajustez les valeurs selon vos besoins */
    color: #fff;
    text-align: center;
    padding: 30px;
}

.ptIcone {
            width: 100px;
            height: 100px;
            background-color: #F4F4F4;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
            margin: 5px;
            border-radius: 10px;
        }
        .ptIcone.selected {
            background-color: var(--color-1);
            color: #FFF;
        }

.ptIcone i{
    font-size: 50px;
}

#listeIcones {
    display: flex;
    flex-wrap: wrap; /* Permet aux éléments de se replier sur plusieurs lignes */
    justify-content: flex-start; /* Assure que les éléments commencent bien au début de la ligne */
}

.blocModule{
    position: relative;
    display: flex; /* Utilisez flexbox pour centrer les contenus */
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    background-color: #F7F7F7;
    width: 200px;
    height: 200px;
    text-align: center;
    text-decoration: none; /* Supprime le soulignement des liens */
    color: #333; /* Couleur du texte */
    margin: 4px;
    border-radius: 25px;

}

.blocModule:hover {
    color: var(--color-1);
}

.blocModule i{
    font-size: 50px;
    color: inherit; /* Prend la couleur du parent, utile si vous utilisez des icônes */
}

.handle {
        position: absolute;
        bottom: 10px;
        right: 10px;
        cursor: grab; /* Ajoute un curseur de déplacement pour indiquer la fonctionnalité de tri */
    }
.handle2{
    cursor: grab;
}

    .handle i,.handle2 i {
        font-size: 20px;
    }

.moduleActif{
    border: 2px solid var(--color-2);
    background-color: #f4fffe;
}

.miniIcone {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    align-items: center; /* Align items vertically in the container */
}

.miniIcone p {
    width: 40px;
    height: 40px;
    background: #E4E4E4;
    display: flex; /* Use flexbox for centering content in <p> */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin-right: 5px;
    margin-bottom: 5px; /* Add some space at the bottom to avoid sticking when wrapped */
    border-radius: 20px;
}

.apercuLivret {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Makes the container circular */
    overflow: hidden; /* Ensures the image stays within the container */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e4e4e4; /* Optional: Background color for the container */
    margin:auto;
}

.apercuLivret img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
}

.flag-container {
            display: inline-block;
            text-align: center;
            margin: 10px;
        }
        .flag-container img {
            display: block;
            margin: 0 auto;
            width:30px;
        }
        .flag-container input {
            display: block;
            margin: 10px auto;
        }

.flags img{
    width: 20px;
}
img{
    max-width: 100%;
    border-radius: 20px;
}

.qr-image {
  max-width: none !important;
  max-height: none !important;
}

  .flag-selector.selected {
    background-color: #CCC;
  }
  .qr-item {
    padding: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* La largeur sera définie dynamiquement via JavaScript */
  }
  .qr-text {
    white-space: pre-wrap; /* Respecte les retours à la ligne */
    word-wrap: break-word;
    overflow-wrap: break-word;
   
  }


.flags div{
    display: inline-block;
    width: 50px;
    text-align: center;
    background: #F4F4F4;
    border-radius: 5px;
    border: 1px solid #CCC;
    cursor: pointer;
}

.flags .sel{
    background: #CCC;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotating {
    animation: rotation 2s infinite linear;
}


.simulateur-smartphone {
            width: 360px;
            max-width: 100%;
            height: 600px;
            border: 16px solid black;
            border-top-width: 60px;
            border-bottom-width: 60px;
            border-radius: 36px;
            position: relative;
            background: white;
        }
        
        .screen {
            width: 100%;
            height: 100%;
     
            overflow: hidden;
        }
        iframe {
            width: 100%;
            height: 100%;
            border: none;
            overflow: auto;
        }

.footer{
    background: #2A384A;
    
}
.simulateur-smartphone-up {
    position: absolute;
    top: 0px; /* Ajustez pour aligner le haut de l'iframe avec l'écran du smartphone */
    left: 0px; /* Ajustez pour centrer l'iframe sur l'écran du smartphone */
    width: 90%; /* Ajustez à la largeur de l'écran du smartphone */
    height: 100%; /* Ajustez à la hauteur de l'écran du smartphone */
    border-radius: 20px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.1); /* 50% de transparence */
    display: none;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate {
    animation: rotation 2s infinite linear;
}

.col-md-3 video {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.vignette{
    width: 100px;
    height: 100px;
    border-radius: 50px;
}
.icone-survol {
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px; /* Ajustez la taille de l'icône */
    color: var(--color-1); /* Couleur de l'icône */
}

.simulateur-smartphone:hover .simulateur-smartphone-up {
    display: block; /* Affiche l'icône au survol */
}

.populaire{
    
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5) !important;
}

.populaire .populaire-banner,
        .populaire .rentabilise-banner {
            position: absolute;
            left: 0;
            right: 0;
            background: var(--color-1);
            color: white;
            padding: 5px 0;
            font-weight: bold;
            text-align: center;

        }

        .populaire .populaire-banner {
            top: -30px;
            border-radius: 10px 10px 0 0;
        }

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    text-decoration: none;
}



.blocCard,.blocCard2,.blocCard3 {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    
    text-align: center;
    
}

.reseau a{
   

    padding: 10px;
}

.blocCard .t {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2A384A;
}

.blocCard .p {
    font-size: 30px;
    color: var(--color-1);
    margin-bottom: 10px;
    font-weight: bold;
}

.blocCard .e {
    font-size: 1em;
    color: #666;
}

.blocCard .bas {
    height: 50px;
    margin-top: 20px;
}

.blocCard2 .t {
    font-size: 24px;
    font-weight: bold;
    background: var(--color-1);
    border-radius: 25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    margin: auto;
}

.blocCard2 .p {
    font-size: 20px;
    font-weight: bold;
}

.blocCard2 .e {
    font-size: 1em;
    color: #666;
    height: 200px;
    margin-top: 40px;
}

.blocCard2 li{
    margin: 20px 0 20px 0;
}

.blocCard2 .i {
   
}

.ariane{
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-top: 0;
}

.ariane a{
   font-size: 12px;
}

.blocCard2 .bas {
    height: 50px;
    margin-top: 20px;
}

.blocCard3 .t {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2A384A;
}

.blocCard3 .e {
   margin-top: 40px;
}

.btn{
    padding: 10px 30px 10px 30px !important;
}

.fa-check {
    font-size: 24px;
    margin-right: 20px; /* Espace entre l'icône et le texte */
    flex-shrink: 0; /* Empêche l'icône de se redimensionner */
}

.blocCard3{
    font-size: 16px;
    
    height: 500px;
}

.blocCard3 ul li {
    display: flex;
    align-items: center; /* Aligne verticalement l'icône avec le texte */
    text-align: left;
    margin-bottom: 20px;

}


.fondCouleur1{
    background:#eee;
}

.fondCouleur1 h2{

  
}


.guide-selector {
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 20px;
}

.guide-selector label {
    
    display: block;
    font-style: italic;
}

.guide-selector button {
    background-color: var(--color-1);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}

.guide-selector button:hover {
    background-color: var(--color-1);
}

.guide-selector input {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0 5px;
}



.alert-white{
    padding: 20px;
    display: block;
    background: #fff;
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

 .alert-white:hover {
            
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

.myTexte{
    width: 100%;
    height: 50px;
    background: #F4F4F4;
    border: 1px solid #cccccc5c;
    border-radius: 5px;
    margin: 5px 0 5px 0;
    padding-left: 10px;
}

textarea{
    padding-top: 10px;
}

.myTexte:focus{
    border: 1px solid #333;
    outline: none;
    box-shadow: 10px 10px 20px #CCC;
}

.myTexte::placeholder{
    color: #ccc;
}

.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    background-color: #fff; /* Fond blanc par défaut */
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

/* Apparence de la case cochée */
.custom-checkbox:checked {
    background-color: var(--color-1); /* Fond noir quand coché */
    border-color: var(--color-1); /* Bordure noire pour se fondre avec le fond */
}

/* Style de la coche lorsque la case est cochée */
.custom-checkbox:checked::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 4px;
    width: 6px;
    height: 12px;
    border: solid white; /* Coche blanche */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.nav-link{
    color:#2A384A !important;
    
}

@media (min-width: 721px) {

   

.navbar-expand-lg .navbar-nav {
  flex-direction: row; /* Organise les éléments de la liste horizontalement */
  
}

/* Distribue l'espace également entre les éléments de la liste */
.navbar-nav {
  display: flex; /* Utilise Flexbox */

}

.nav-item {
  
  text-align: center; /* Centre le texte dans nav-item */
  margin-left: 50px;
}



/* Optionnel: Ajuste le padding pour les liens, si nécessaire, pour un meilleur espacement */
.nav-link, .btn {
  flex-grow: 1;
  padding: 0.5rem 1rem; /* Ajustez selon vos besoins pour un meilleur espacement */
}
}

.dropdown-menu li{
    padding: 5px 0 5px 0;
    border-bottom: 1px solid #F4F4F4;
}

.colorPicker{
    border: 2px solid #000;
}

.pBarre {
    position: relative;
    display: inline-block;

}

.pBarre::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2px; /* Épaisseur du trait */
    background: #000;
    transform: translateY(-50%);
    animation: strikeThrough 2s ease-out forwards;
}

@keyframes strikeThrough {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* MOBILE */

@media (max-width: 720px){

h1{
    font-size: 24px;
}
    .cacheMobile{
        display: none;
    }


    .blocModule{
   
    width: 150px;
    height: 150px;

}




    .iframe-container2{

    }

    .iframe-container {
            max-width: 80%; 
           
           
        }

        .carousel-control-prev {
            left: 5px;
        }
        .carousel-control-next {
            right: 5px;
        }
        

        .navbar-nav{
            margin-top: 20px;
            margin-bottom: 20px;
            text-align: center;
        }

        .nav-item{
            
            border-bottom: 1px solid #ddd;
            padding-top: 15px;
            padding-bottom: 15px;
        }

a.active{
    font-weight: bold;
    border-bottom: none;
}



}

.youtube-shorts-container {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 3rem 2rem;
            margin: 2rem 0;
        }
        
        .shorts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .short-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .short-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .short-frame {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 15px 15px 0 0;
        }
        
        .short-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .client-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .client-role {
            color: #666;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        

        
        @media (max-width: 768px) {
            .shorts-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .youtube-shorts-container {
                padding: 2rem 1rem;
            }
            
            .short-frame {
                height: 350px;
            }
        }
        
        .section-title {
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }


.bunny-upload-container {
            max-width: 600px;
            margin: 20px auto;
            padding: 25px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .bunny-upload-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .bunny-upload-header h2 {
            color: #333;
            font-size: 1.8em;
            margin-bottom: 8px;
        }
        
        .bunny-upload-header p {
            color: #666;
            font-size: 1em;
        }
        
        .bunny-drop-zone {
            border: 3px dashed #ddd;
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
            background: #fafafa;
        }
        
        .bunny-drop-zone:hover,
        .bunny-drop-zone.dragover {
            border-color: var(--color-1);
            background: #fff1f1;
            transform: translateY(-2px);
        }
        
        .bunny-drop-zone i {
            font-size: 3em;
            color: var(--color-1);;
            margin-bottom: 15px;
        }
        
        .bunny-drop-zone h3 {
            color: #333;
            margin-bottom: 8px;
            font-size: 1.2em;
        }
        
        .bunny-drop-zone p {
            color: #666;
            margin-bottom: 5px;
        }
        
        .bunny-drop-zone small {
            color: #999;
        }
        
        .bunny-file-input {
            display: none;
        }
        
        .bunny-file-info {
            background: #e8f5e8;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
            border-left: 4px solid #28a745;
        }
        
        .bunny-file-info.show {
            display: block;
        }
        
        .bunny-file-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 10px;
        }
        
        .bunny-detail-item {
            background: white;
            padding: 10px;
            border-radius: 6px;
            text-align: center;
        }
        
        .bunny-detail-label {
            font-size: 0.85em;
            color: #666;
            margin-bottom: 3px;
        }
        
        .bunny-detail-value {
            font-weight: bold;
            color: #333;
        }
        
        .bunny-upload-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--color-1) 0%, #fff1f1 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }
        
        .bunny-upload-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,123,255,0.3);
        }
        
        .bunny-upload-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .bunny-progress-container {
            display: none;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .bunny-progress-container.show {
            display: block;
        }
        
        .bunny-progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .bunny-progress-text {
            font-weight: 600;
            color: #333;
        }
        
        .bunny-progress-percent {
            font-weight: bold;
            color: var(--color-1);;
            font-size: 1.1em;
        }
        
        .bunny-progress-bar {
            width: 100%;
            height: 12px;
            background: #e9ecef;
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 10px;
        }
        
        .bunny-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--color-1), #fff1f1);
            width: 0%;
            transition: width 0.3s ease;
            border-radius: 6px;
        }
        
        .bunny-progress-details {
            font-size: 0.9em;
            color: #666;
            text-align: center;
        }
        
        .bunny-status {
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
            display: none;
        }
        
        .bunny-status.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .bunny-status.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .bunny-status.show {
            display: block;
        }
        
        .bunny-status h4 {
            margin-bottom: 8px;
            font-size: 1.1em;
        }
        
        .bunny-status a {
            color: inherit;
            text-decoration: underline;
        }
        
        .bunny-status a:hover {
            text-decoration: none;
        }

