/* ---------------------------------------------
Table of contents
------------------------------------------------
01. Menu top 
02. Globale style
03. Index
04. Home - Lobby
05. Page Bet
06. Page Account
07. Page Close
08. Nouvelle Partie Page Register
09. Page Deposit
10. Page Withdraw
--------------------------------------------- */




/* 
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
01. global style
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
*/
nav {
    background-color: #1F2122;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-menu {
    height: 50px;
}

@media (max-width: 768px) {
    .logo-menu {
        height: 23px;
    }
    }

/* Styles pour l'icÃ´ne de notification */
.notification-container {
    position: relative;
    margin-left: 200px;
}


.no-hover {
  pointer-events: none;
}

 #my_video {
    /* padding: 10px 20px; */
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 700px;
    margin: auto;
  }



  #my_video button:hover {
    background-color: #218838;
  }

  #kickIframe {
    width: 100%;
    /* max-width: 640px; */
    height: 100%;
    /* border: none; */
  }

  @media screen and (max-width: 768px) {
    #kickIframe {
      height: 210px;
    }

    #my_video button {
      font-size: 0.95rem;
      padding: 10px 15px;
    }
  }

  @media screen and (max-width: 480px) {
    #kickIframe {
      height: 180px;
    }
  }

@media (max-width: 767px) {
    .notification-container {
        position: relative;
        margin-left: 10px;
        margin-right: 10px;
    }


  }

.notification-icon {
    position: relative;
    cursor: pointer;
}

.notification-icon img {
    width: 25px;
}

.notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

/* Dropdown de notifications */
.notification-dropdown {
    display: none;
    position: absolute;
    right: auto;
    top: 30px;
    background-color: #27292A;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px;
    z-index: 10;
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #575757;
    color: #fff;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-dropdown button {
    background: #1F2122;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 5px;
}

.notification-dropdown button:hover {
    background: #333;
}

.notification-time {
    font-size: 8px;
    color: #707070;
}

.span-dep {
    color: rgb(242, 255, 64);
}

.span-ret {
    color: rgb(255, 136, 0);
}



.menu-icon {
    display: none; 
    font-size: 1.5em;
    cursor: pointer;
    color: #00a870;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    margin: 0 1em;
}

.menu li a {
    color: #000000;
    text-decoration: none;
}


@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #081516;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .menu li {
        margin: 1em 0;
    }

    .menu li a {
        margin: 1em 0;
        color: white;
    }

    .menu-icon {
        display: block; 
        z-index: 2;
    }

    .menu.open {
        display: flex;
    }
}

@media (min-width: 769px) {
    .menu-icon {
        display: none; 
    }
}









/* 
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
02. Globale Style (USER BLOC / DATE / INFO COURSE/ BLOC PARTANTS)
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
*/
.user-block {
    display: flex;
    align-items: center;
    background-color: #27292A;
    padding: 5px 10px;
    border-radius: 20px;
    color: white;
    font-family: poppins;
}


@media only screen and (max-width: 600px) {
    .user-block {
        font-size: 13px;
        color: white;
        font-family: poppins;
        margin-right: 10px;
    }
  }


.user-name {
    font-size: 16px;
}

.user-score {
    color: #96fb96;
    font-size: 16px;
    padding-right: 5px;
    margin-left: 6px;
}

.user-block img {
    border-radius: 50%;
    margin-right: 10px;
}





.contenu-cache {
    display: none;
    margin-top: 10px;
    padding: 0px;
    border-radius: 5px;
    padding-top: 20px;
    padding-bottom: 7px;
}
.actif {
    border: 2px solid #32cd32;
}



.planning-block {
    display: flex;
    align-items: center;
    border-radius: 15px;
    padding-top: 0px;
    /* padding-bottom: 20px; */
    color: #fff;
}

.planning-date {
    font-size: 15px;
}

.calendar-icon-sec1 {
    width: 30px;
    margin-right: 10px;
}
.calendar-icon-sec8 {
    width: 30px;
}

.info-icon-close {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    background-color: #663030;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #ffffff;
    border: 1px solid #585858;
    border-radius: 7px;
}

.info-block {
    background-color: #27292A;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    justify-content: flex-start; 
    overflow: hidden; 
    border: 1px solid #585858;
}

.info-text {
    flex-grow: 1;
    font-family: 'poppins';
    flex: 1; /* Prend tout l'espace restant */
    overflow: hidden;
}

.title-hypo {
    margin: 0;
    color: #96fb96;
}

@media only screen and (max-width: 600px) {
    .title-hypo {
        font-size: 15px;
        padding-right: 10px;
        white-space: nowrap; /* EmpÃªche les retours Ã  la ligne */
        overflow: hidden;    /* Cache tout dÃ©bordement */
        text-overflow: ellipsis;
    }
  }

.desc-hypo {
    margin: 0;
    margin-top: 4px;
    
}

@media only screen and (max-width: 600px) {
    .desc-hypo {
        font-size: 13px;
        padding-right: 10px;
        white-space: nowrap; /* EmpÃªche les retours Ã  la ligne */
        overflow: hidden;    /* Cache tout dÃ©bordement */
        text-overflow: ellipsis;
    }
  }

.info-icon {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    background-color: #1A2122;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #ffffff;
    border: 1px solid #585858;
    border-radius: 7px;
}

.conteiner-chx {
    background-color: #2a2c2e;
    padding: 5px;
    color: white;
    border: 1px solid #585858;
    border-radius: 20px;
}


.conteiner-b {
    margin: 20px 20px 140px 20px;
    background-color: #2a2c2e;
    padding: 20px;
    color: white;
    border: 1px solid #585858;
    border-radius: 20px;
}

.title-block-participants-sec1 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#title-participants-sec1 {
    font-size: 20px;
}


.info-partants {
    background-color: #27292A;
    padding: 10px;
    display: flex;
    align-items: center; /* Centre verticalement tout le contenu */
    justify-content: space-between; /* Espacement entre les Ã©lÃ©ments */
    margin-bottom: 20px;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    opacity: 0;
    transform: rotateX(90deg); /* Initial flip */
    transform-origin: bottom; /* Origine de la rotation */
    transition: opacity 0.5s ease, transform 0.5s ease;
    animation: flipIn 0.5s forwards;
}

/* Animation flip-in */
@keyframes flipIn {
    from {
        opacity: 0;
        transform: rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

/* Appliquer le dÃ©lai sÃ©quentiel */
.inner-participant-block-sec1.delay-1 { animation-delay: 0.3s; }
.inner-participant-block-sec1.delay-2 { animation-delay: 0.6s; }
.inner-participant-block-sec1.delay-3 { animation-delay: 0.9s; }
.inner-participant-block-sec1.delay-4 { animation-delay: 1.2s; }
.inner-participant-block-sec1.delay-5 { animation-delay: 1.5s; }
.inner-participant-block-sec1.delay-6 { animation-delay: 1.8s; }
.inner-participant-block-sec1.delay-7 { animation-delay: 2.1s; }
.inner-participant-block-sec1.delay-8 { animation-delay: 2.4s; }

.info-text-partants {
    flex-grow: 1;
    flex: 1; /* Prend tout l'espace restant */
    overflow: hidden; /* Cache le contenu dÃ©bordant */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-icon-partants {
    width: 65px;
    height: 65px;
    background-color: #27292A;
    box-shadow: inset 0 0 0 1px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px; /* Espacement Ã  droite */
    border-radius: 10px;
}

.title-partants {
    padding-bottom: 8px;
    color: #96fb96;
    font-family: 'poppins';
}

@media only screen and (max-width: 600px) {
    .title-partants {
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
  }

.desc-partants {
    font-family: poppins;
    color: white;
    font-size: 14px;
    line-height: 1.3em;
}

@media only screen and (max-width: 600px) {
    .desc-partants {
        font-size: 11px;
        padding-right: 10px;
        font-family: 'poppins';
    }
  }

.imgkzq {
    width: 50px;
}


.cost {
    color: #96fb96; /* Couleur du texte */
    margin-right: 5px; /* Espacement entre le chiffre et l'icÃ´ne */
}

@media (max-width: 767px) {
    .cost {
        font-size: 13px;
        color: #96fb96; /* Couleur du texte */
        margin-right: 5px; /* Espacement entre le chiffre et l'icÃ´ne */
        padding-left: 10px;
    }
  }









/* 
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
03. Index
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


#body-index {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/themes/v2/commons/img/backgrounds/e4.jpeg') no-repeat center center/cover;
    position: relative;
}

@media only screen and (max-width: 600px) {
    #body-index {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.overlay-login {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}


.login-container {
    position: relative;
    background: rgba(20, 20, 20, 0.7);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    max-width: 400px;
}




.logo {
    width: 100px;
    margin-bottom: 20px;
}

.login-form .input-group {
    margin-bottom: 15px;
    text-align: left;
}

.login-form label {
    display: block;
    font-weight: bold;
    color: white;
    font-family: poppins;
    font-weight: 300;
}

.login-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: poppins;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background: #98ff98;
    border: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-family: poppins;
}

.submit-btn:hover {
    background: #e68900;
}

.new-feature-card {
    margin-top: 15px;
    padding: 10px;
    background: rgba(253, 255, 222, 0.5);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.info-text {
    font-weight: 300;
    color: #ffffff;
    font-family: poppins;
}

.info-text-t {
    font-weight: 700;
    color: #ffffff;
    font-family: poppins;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.crypto-icons {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.crypto-icons img {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 20px;
}


#body-index {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/themes/v2/commons/img/backgrounds/giphy.gif') no-repeat center center/cover;
    position: relative;
}

@media only screen and (max-width: 600px) {
    #body-index {
        padding: 10px;
    }
}

.overlay-login {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}


.login-container {
    position: relative;
    background: rgba(20, 20, 20, 0.7);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    max-width: 400px;
}




.logo {
    width: 100px;
    margin-bottom: 20px;
}

.login-form .input-group {
    margin-bottom: 15px;
    text-align: left;
}

.login-form label {
    display: block;
    font-weight: bold;
    color: white;
    font-family: poppins;
    font-weight: 300;
}

.login-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: poppins;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background: #98ff98;
    border: none;
    color: rgb(0, 0, 0);
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-family: poppins;
}

.submit-btn:hover {
    background: #e68900;
}

.new-feature-card {
    margin-top: 15px;
    padding: 10px;
    background: rgba(110, 110, 109, 0.5);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.new-feature-card-t{
    padding: 10px;
    background: rgba(110, 110, 109, 0.5);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 20px;
}

.submit-btn-b {
    width: 100%;
    padding: 10px;
    background: #f7931a;
    border: none;
    color: rgb(0, 0, 0);
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-family: poppins;
    margin-top: 15px;
}

.info-text {
    font-weight: 300;
    color: #ffffff;
    font-family: poppins;
    font-size: 14px;
}

.info-text-b {
    font-weight: 300;
    color: #ffe600;
    font-family: poppins;
}

.info-text-t {
    font-weight: 700;
    color: #ffffff;
    font-family: poppins;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 15px;
}

.info-creation {
    margin-top: 120px;
    padding: 20px;
    background-color: #ffffff;
    color: black;
}

.crypto-icons {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.crypto-icons img {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 20px;
}

/* #body-index {
    background-color: #27292A;
    font-family: Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    padding: 20px;
    color: white;
    border: 1px solid #585858;
    border-radius: 20px;
    margin: 20px;
    text-align: center;
}

.logo {
    width: auto;
    height: auto;
    margin-bottom: 30px;
}

h2 {
    color: black;
    font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #FFFFFF !important;
    line-height: 2.6em;
    text-align: center;
}

.new-feature-card {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden;
    border: 0px solid #585858;
}

.new-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    border: 1px solid #fed81877;
}


.new-feature-card-first {
    position: relative;
    background-image: url('/themes/v2/commons/img/backgrounds/btc-image-index1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 0px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center; 
    overflow: hidden;
    border: 0px solid #585858;
}

.new-feature-card-first::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
    border: 1px solid #fed81877;
}

.feature-icon {
    font-size: 30px;  
    margin-bottom: 10px; 
    z-index: 2;  
}

.feature-content {
    z-index: 2; 
    text-align: center; 

.feature-content h3 {
    font-size: 18px;
    margin: 0;
}

.feature-content p {
    font-size: 14px;
    margin-top: 10px;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.input-field {
    width: 400px;
    padding: 17px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: none;
    background-color: white;
    color: black;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .input-field {
        width: 300px;
    }
}
*/
.submit-button {
    width: 150px;
    padding: 17px;
    border: none;
    border-radius: 4px;
    background-color: #00a870;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 20px;
    font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
}

@media only screen and (max-width: 600px) {
    .submit-button {
        width: 60%;
    }
}

.submit-button:hover {
    background-color: #ffffff;
    color: black;
}
 








/* 
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
04. Home - Lobby
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
*/
#body-home {
    margin: 0;
    padding: 0;
    background-color: #27292A;
    color: white;
    font-family: poppins;
    margin-bottom: 80px;
}

html {
    margin: 0;
    padding: 0;
    background-color: #27292A;
    color: white;
    font-family: poppins;
}

.container-home {
    background-color: #424546;
    padding: 20px;
    color: white;
    border: 1px solid #585858;
    border-radius: 20px;
    margin: 20px;
}

.custom-button-bet {
    text-decoration: underline white;
    padding: 10px 20px;
    background-color: white;
    width: 100%;
    color: black;
    border: 1px solid white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin: 0 auto; 
    font-family: poppins;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
}

.bouton-show {
    padding: 10px 20px;
    background-color: #27292A;
    border: 1px solid #585858;
    width: 100%;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 0px; 
    font-family: poppins;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
}

.voir-partant {
    width: 33px;
}





.custom-button-close {
    padding: 10px 20px;
    background-color: #ff1010;
    color: white;
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin: 0 auto; 
    font-family: poppins;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
}

.custom-button .fa-lock {
    font-size: 1.2em;
}









/* 
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
05. Page Bet
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
*/
#body-bet {
    margin: 0;
    padding: 0;
    background-color: #27292A;
    color: white;
    font-family: poppins;
    margin-bottom: 80px;

.container-bet {
    background-color: #424546;
    padding: 20px;
    color: white;
    border: 1px solid #585858;
    border-radius: 20px;
    margin: 20px;
}

.button-container {
    background-color: #2a2c2e;
    padding: 20px;
    color: white;
    border: 1px solid #585858;
    border-radius: 20px;
    margin: 20px;
}


.row-button { 
    background-color: #2a2c2e;
    gap: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    margin-bottom: 10px;
}

.row-button-t {
    background-color: #2a2c2e;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 12px;
    margin-bottom: 10px;
}

.row-button-t button {
    flex: 0 0 calc(20% - 14px); /* 5 boutons par ligne -8px pour l'espacement */
    margin-right: 10px;
    margin-bottom: 5px;
    align-items: center;
}

.row-button-t button:nth-child(5n) {
    margin-right: 0; /* évite le décalage en fin de ligne */
}


#title-bet {
    font-size: 20px;
}

.title-block-bet {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.button-gagnant {
    background-color: rgb(0, 157, 197);
    color: #ffffff;
    padding: 10px 0px;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    font-family: poppins;
    font-size: 17px;
    font-weight: 600;
    border: none;
}

.button-gagnant-place {
    background-color: rgb(0, 92, 197);
    color: #ffffff;
    padding: 10px 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    font-family: poppins;
    font-size: 17px;
    font-weight: 600;
}

.button-couple-gagnant {
    background-color: rgb(236, 102, 8);
    color: #ffffff;
    padding: 10px 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    font-family: poppins;
    font-size: 17px;
    font-weight: 600;
}

.button-couple-place {
    background-color: rgb(236, 61, 8);
    color: #ffffff;
    padding: 10px 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    font-family: poppins;
    font-size: 17px;
    font-weight: 600;
}

.button-trio {
    background-color: rgb(247, 166, 0);
    color: #ffffff;
    padding: 10px 0px;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    font-family: poppins;
    font-size: 17px;
    font-weight: 600;
    border: none;
}


.button-multi {
    background-color: rgb(230, 0, 126);
    color: #ffffff;
    padding: 10px 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    font-family: poppins;
    font-size: 17px;
    font-weight: 600;
}

.button-pick5 {
    background-color: rgb(239, 217, 0);
    color: red;
    padding: 10px 0px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    flex: 1;
    font-family: poppins;
    font-size: 17px;
    font-weight: 600;
}

.button-tierce {
    background-color: rgb(75, 160, 90);
    color: #ffffff;
    padding: 10px 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    font-family: poppins;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
}

.button-quarte {
    background-color: rgb(0, 123, 194);
    color: #ffffff;
    padding: 10px 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    font-family: poppins;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
}

.button-quinte {
    background-color: rgb(237, 28, 53);
    color: #ffffff;
    padding: 10px 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    font-family: poppins;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
}
.button-2sur4 {
    background-color: rgb(98, 43, 131);
    color: #ffffff;
    padding: 10px 0px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    flex: 1;
    font-family: poppins;
    font-size: 17px;
    font-weight: 600;
}




@media (max-width: 767px) {
    .button-gagnant {
        background-color: rgb(0, 157, 197);
        color: #ffffff;
        padding: 10px 0px;
        border-radius: 5px;
        cursor: pointer;
        flex: 1;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
        border: none;
    }
    
    .button-gagnant-place {
        background-color: rgb(0, 92, 197);
        color: #ffffff;
        padding: 10px 0px;
        border-radius: 5px;
        cursor: pointer;
        flex: 1;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
    }

    .button-couple-gagnant {
        background-color: rgb(236, 61, 8);
        color: #ffffff;
        padding: 10px 0px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        flex: 1;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
    }
    
    .button-couple-place {
        background-color: rgb(185, 48, 6);
        color: #ffffff;
        padding: 10px 0px;
        border-radius: 5px;
        cursor: pointer;
        flex: 1;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
    }

    .button-trio {
        background-color: rgb(228, 155, 10);
        color: #ffffff;
        padding: 10px 0px;
        border-radius: 5px;
        cursor: pointer;
        flex: 1;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
        border: none;
    }

    .button-multi {
        background-color: rgb(230, 0, 126);
        color: #ffffff;
        padding: 10px 0px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        flex: 1;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
    }
    
    .button-pick5 {
        background-color: rgb(239, 217, 0);
        color: red;
        padding: 10px 0px;
        border-radius: 5px;
        cursor: pointer;
        border: none;
        flex: 1;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
    }
    
    .button-tierce {
        background-color: rgb(75, 160, 90);
        color: #ffffff;
        padding: 10px 0px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        flex: 1;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
    }
    
    .button-quarte {
        background-color: rgb(0, 123, 194);
        color: #ffffff;
        padding: 10px 0px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        flex: 1;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
    }
    
    .button-quinte {
        background-color: rgb(237, 28, 53);
        color: #ffffff;
        padding: 10px 0px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        flex: 1;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
    }
    .button-2sur4 {
        background-color: rgb(98, 43, 131);
        color: #ffffff;
        padding: 10px 0px;
        border-radius: 5px;
        border: none;
        cursor: pointer;
        flex: 1;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
    }
  }


.container-bloc-bet {
    background-color: #181717;
    padding: 20px;
    color: white;
    border: 1px solid #585858;
    border-radius: 20px;
    margin: 20px;
}

.conteiner-back-button {
    background-color: #27292A;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
}

.button-back {
    background-color: #adadad;
    color: #1A2122;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    margin-left: 5px;
    font-family: poppins;
    font-size: 17px;
}

@media (max-width: 767px) {
    .button-back {
        background-color: #adadad;
        color: #1A2122;
        padding: 10px 0px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        flex: 1;
        margin-left: 5px;
        font-family: poppins;
        font-size: 13px;
        font-weight: 600;
    }
  }



.alert-message-maxbet .fa-solid {
    color: yellow;
}

.aler-number-maxbet {
    color: yellow;
}

.button-g {
    background-color: #1A2122;
    color: #ffffff;
    padding-left: auto;
    padding-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    margin-left: 5px;
    font-family: poppins;
    font-size: 17px;
    width: 5px !important;
}

.button-g-valid {
    background-color: #96fc96 !important;
    color: #1A2122;
    padding-left: auto;
    padding-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #96fc96;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    margin-left: 5px;
    font-family: poppins;
    font-size: 17px;
}

.button-g-nonpart {
    background-color: #2b2b2b;
    color: #535353;
    padding-left: auto;
    padding-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #535353;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    margin-left: 5px;
    font-family: poppins;
    font-size: 17px;
}

.button-g-nocell {
    background-color: #1A2122;
    color: #ff0000;
    padding-left: auto;
    padding-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #ff0000;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    margin-left: 5px;
    font-family: poppins;
    font-size: 17px;
}

.button-g:not(:last-child), .button-g-valid:not(:last-child), .button-g-nonpart:not(:last-child), .button-g-nocell:not(:last-child) {
    margin-right: 10px;
}

.conteiner-ticket {
    background-color: #141616;
    padding: 10px;
    display: flex;
    align-items: center; /* Centre verticalement tout le contenu */
    justify-content: space-between; /* Espacement entre les Ã©lÃ©ments */
    margin-bottom: 20px;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
}

.input-field-bet {
    background-color: #ebebeb;
    color: #1e1e1e;
    height: 25px;
    width: 90px;
    text-align: center;
    font-size: 16px;
    border-radius: 10px;
}

.valid-button {
    background-color: #7da87d;
    font-family: poppins;
    padding: 10px 30px;
    width: 250px;
    border-radius: 10px;
    display: block;
    margin: auto;
    margin-top: 20px;
    color: #181717;
    font-weight: 600;
    border: 1px solid #929292;
}

@media (max-width: 767px) {
    .valid-button {
        background-color: #ffffff;
        font-family: poppins;
        padding: 10px 15px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        color: #181717;
        font-size: 17px;
    }
  }

.conteiner-histo-ticket {
    background-color: #1F2122;
    max-width: auto;
    margin-top: 20px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
}

.info-bet-histo {
    flex-grow: 1;
}


@media only screen and (max-width: 600px) {
    .bet-histo-title {
        font-size: 14px;
        padding-right: 10px;
    }
  }

.bet-histo-desc {
    font-family: 'roboto';
    font-weight: 100;
    font-size: 14px;
    line-height: 1.3em;
}

@media only screen and (max-width: 600px) {
    .bet-histo-desc {
        font-size: 14px;
        padding-right: 10px;
    }
  }

  .total-style {
    color: #96fc96;
    font-size: 16px;
  }

  .total-style .fa-solid {
    color: #ff0000;
    font-size: 28px;
    float: right;
  }

  .total-allbet {
    text-align: center;
    margin: auto;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    font-size: 14px;
    float: right;
    width: auto;
    border-radius: 6px;
    font-family: poppins;
    font-weight: 600;
  }

  .number-type-b {
    text-align: center;
    margin-bottom: 5px;
    color: white;
    border-bottom: 1px solid white;
    background-color: #27292a;
}


.alert-message-maxbet {
    text-align: center;
}









/* 
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
06. Page Account
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
*/
#body-account {
    margin: 0;
    padding: 0;
    background-color: #27292A;
    color: white;
    font-family: poppins;
    margin-bottom: 80px;
}

.container-account {
    background-color: #1f2122;
    padding: 20px;
    color: white;
    border: 1px solid #585858;
    border-radius: 20px;
    margin: 20px 20px 140px 20px;
}

.info-bet {
    background-color: #27292A;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 2px solid rgb(110, 176, 252);
}

.date-hour {
    margin: 0;
    color: #c5c5c5;
    font-weight: 300;
}

.your-bet {
    font-family: 'roboto';
    font-weight: 100;
    font-size: 14px;
    line-height: 1.3em;
    color: #6dbdff;
}

.current-cash {
    color: #96fb96; /* Couleur du texte */
    margin-right: 5px;
    float: right;
    display: flex;
    justify-content: center;
    text-align: center;
}

.info-block-cashback {
    background-color: #27292A;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 2px solid rgb(225, 159, 255);
}

.cashback-text {
    color: rgb(225, 159, 255);
}

.bet-cashback {
    color: #ffffff;
    font-size: 14px;
}

.info-block-winner {
    background-color: #27292A;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 2px solid rgb(51, 255, 0);
}

.wincash-text {
    color: rgb(51, 255, 0);
}

.info-block-startrace {
    background-color: #27292A;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 2px solid rgb(240, 101, 101);
    border-right: 2px solid rgb(240, 101, 101);
    border-top: 2px solid rgb(240, 101, 101);
    border-bottom: 2px solid rgb(240, 101, 101);
    border-style: none solid none solid;
}

.start-racing {
    color: rgb(240, 101, 101);
    font-size: 14px;
    text-transform: uppercase;
}

.info-block-deposit {
    background-color: #27292A;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 2px solid rgb(242, 255, 64);
}

.cash-deposit {
    color: rgb(208, 255, 0);
    font-size: 14px;
}

.cash-withdraw {
    margin: 0;
    color: rgb(255, 136, 0);
}

.info-block-withdraw {
    background-color: #27292A;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 2px solid rgb(255, 136, 0);
    white-space: nowrap; /* EmpÃªche les retours Ã  la ligne */
    overflow: hidden;    /* Cache tout dÃ©bordement */
    text-overflow: ellipsis;
}

.info-arrive {
    background-color: #27292A;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 2px solid rgb(109, 175, 165);
    border-bottom: 2px solid rgb(109, 175, 165);
    border-style: none none none solid;
}

.finish-race {
    font-size: 14px;
    color: rgb(109, 175, 165);
}









/* 
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
07. Page Close
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
*/
.lottie-closed {
    margin: 0 auto;
}


.increm1 {
    background: url("/img/v2/g/flag1.png") 0 0 no-repeat !important;
    background-size: 10px 10px;
}

.increm2 {
    background: url("/img/v2/g/flag2.png") 0 0 no-repeat !important;

}

.increm3 {
    background: url("/img/v2/g/flag3.png") 0 0 no-repeat !important;
    top: 15px;
    float: left;
    padding-top: 7px;
    left: -36px;
}

.stdincrem {
    width: 49px !important;
    height: 46px !important;
    top: 8px;
    float: none;
    margin-left: -4px;
    
}

.increm4 {
    background: url("/img/v2/g/flag3.png") 0 0 no-repeat !important;
}

.increm5 {
    background: url("/img/v2/g/flag3.png") 0 0 no-repeat !important;
}



.selected {
    background-color: #4CAF50;
}
.chx_type{
    display: None;
}


#allerretour{
    padding-top: 15px;
    padding-bottom: 15px;
    width: 180px;
    display: flex;
}


.btn_ar{
    color: black;
    background: white;
    margin-left: 15px;
}






/* 
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
08. Nouvelle Partie - Page Register
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
*/
.button-register {
    text-decoration: none;
    width: 150px;
    padding: 10px 0px;
    border: 1px solid #00a870;
    border-radius: 20px;
    background-color: #081516;
    color: white;
    cursor: pointer;
    margin-top: 30px;
    font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
    font-size: 13px;
}

.button-register:hover {
    background-color: #ffffff;
    color: black;
}

#body-register {
    background-color: #081516;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


#ctaButton{
    font-size: 15px;
    align-items: center;
    background-color: #081516;
    padding: 8px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: yellow;
    cursor: pointer;
}


.submit-btn-b {
    width: 100%;
    padding: 10px;
    background: #98ff98;
    border: none;
    color: rgb(0, 0, 0);
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-family: poppins;
}







/* 
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
09. Page Deposit
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
*/
.container-coursier {
    width: auto;
    height: auto;
    background-color: #1F2122;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #585858;
    margin-bottom: 50px;
}


.container-dep {
    width: auto;
    height: auto;
    background-color: #1F2122;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #585858;
    margin: 20px 20px 20px 20px;
}

.container-dep-t {
    width: auto;
    height: auto;
    background-color: #3d4142;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #585858;
    margin: 20px 20px 20px 20px;
}

.text-vip {
    font-size: 14px;
    padding-top: 20px;
    display: block;
    color: #fff;
}

.text-vip-t {
    font-size: 16px;
    padding-top: 20px;
    display: block;
    color: #fff;
    line-height: 1.5;
}

.span-vip-a {
    font-size: 16px;
    color: #ffe70f;
    line-height: 1.5;
}

.span-vip-b {
    font-size: 16px;
    color: #ff7b0f;
    line-height: 1.5;
}

.text-vip-a {
    color: #00fff2;
}

.text-vip-b {
    color: #48ff00;
}



.button-ddc {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: #1A2122;
    background-color: #ecff98;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.button-wha {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: #ffffff;
    background-color: #228647;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.button-tel {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: #ffffff;
    background-color: #0088CC;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.input-amount {
    margin-bottom: 10px;
    text-align: left;
}
@media (max-width: 767px) {
    .input-amount {
        margin-bottom: 15px;
        text-align: left;
    }
  }

.input-amount label {
    font-size: 14px;
    padding-top: 20px;
    display: block;
    color: #fff;
    padding-bottom: 10px;
}
@media (max-width: 767px) {
    .input-amount label {
        font-size: 14px;
        padding-top: 20px;
        display: block;
        color: #fff;
    }
  }

.input-amount input {
    width: calc(100% - 20px);
    padding: 20px 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    background-color: #444;
    color: #fff;
    margin: 0 auto;
    display: block;
}
@media (max-width: 767px) {
    .input-amount input {
    width: calc(100%);
    padding: 7px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    background-color: #ffffff;
    color: #fff;
    margin: 0 auto;
    display: block;
    }
  }

.input-address {
    margin-bottom: 10px;
    text-align: left;
}

.input-address label {
    font-size: 14px;
    padding-top: 20px;
    display: block;
    color: #fff;
}

.input-address input {
    width: calc(100% - 20px);
    padding: 20px 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    background-color: #444;
    color: #fff;
    margin: 0 auto;
    display: block;
}
@media (max-width: 767px) {
    .input-address input {
        width: calc(100% - 20px);
        padding: 15px 10px;
        border-radius: 5px;
        border: none;
        font-size: 12px;
        background-color: #444;
        color: #fff;
        margin: 0 auto;
        display: block;
    }
  }

/* Suppression des flÃ¨ches haut/bas */
input[type="number"] {
    -moz-appearance: textfield; /* Pour Firefox */
    -webkit-appearance: none;   /* Pour Chrome, Safari, Edge */
    appearance: none;           /* Pour d'autres navigateurs */
}

.crypto-selector {
    display: flex;
    align-items: center;
    background-color: #444;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 0px;
    cursor: pointer;
    justify-content: space-between;
}

.crypto-selector img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.crypto-details {
    text-align: center;
}

.crypto-details .crypto-name {
    font-size: 16px;
    color: #98ff98;
}

.crypto-details .crypto-fullname {
    font-size: 12px;
    color: #bbb;
}

.dropdown-icon {
    font-size: 18px;
}

#crypto-dropdown {
    display: none;
    background-color: #2d2d2d;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    width: 100%;
    max-width: 96%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

@media (max-width: 767px) {
    #crypto-dropdown {
        display: none;
        background-color: #2d2d2d;
        padding: 10px;
        border-radius: 5px;
        position: absolute;
        width: 100%;
        max-width: 74%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }
  }

#crypto-dropdown div {
    padding: 8px;
    color: #f1f1f1;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#crypto-dropdown div img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

#crypto-dropdown div:hover {
    background-color: #444;
}

.address-group {
    margin-top: 10px;
    background-color: #444;
    padding: 0px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.calendar-icon-sec1-t {
    width: 15px;
    margin-right: 3px;
}

.copy-icon {
    cursor: pointer;
}

.qr-code {
    width: auto;
    height: auto;
    margin: 20px auto;
    background-color: #252829;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 20px;
}


  .qr-code img {
    width: 80px;
    height: 80px;
}

.button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: #1A2122;
    background-color: #98ff98;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}
@media (max-width: 767px) {
    .button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        color: #1A2122;
        background-color: #98ff98;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 5px;
    }
  }

  .text-size {
    font-size: 16px;
    color: yellow;
    margin-top: 4px;
    margin-bottom: 4px;
}
  @media (max-width: 767px) {
    .text-size {
        font-size: 12px;
        color: yellow;
    }
  }
}









/* 
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
10. Page Withdraw
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
*/
.container-withdraw {
    width: auto;
    height: auto;
    background-color: #1F2122;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #585858;
    margin: 20px 20px 140px 20px;
}

.input-group-withdraw {
    margin-bottom: 20px;
    text-align: left;
}

.input-group-withdraw label {
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 20px;
    display: block;
    color: #fff;
}

.input-group-withdraw input {
    width: calc(100%);
    padding: 7px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    background-color: #ffffff;
    color: #fff;
    margin: 0 auto;
    display: block;
}

.crypto-selector-withdraw {
    display: flex;
    align-items: center;
    background-color: #444;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 0px;
    cursor: pointer;
    justify-content: space-between;
    color: #98ff98;
}

.crypto-selector-withdraw img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.crypto-details-withdraw {
    text-align: center;
}

.crypto-details-withdraw .crypto-name-withdraw {
    font-size: 16px;
}

.crypto-details-withdraw .crypto-fullname-withdraw {
    font-size: 12px;
    color: #bbb;
}

.dropdown-icon-withdraw {
    font-size: 18px;
}

#crypto-dropdown-withdraw {
    display: none;
    background-color: #2d2d2d;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    width: 100%;
    max-width: 96%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

@media (max-width: 767px) {
    #crypto-dropdown-withdraw {
        display: none;
        background-color: #2d2d2d;
        padding: 10px;
        border-radius: 5px;
        position: absolute;
        width: 100%;
        max-width: 74%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }
  }

#crypto-dropdown-withdraw div {
    padding: 8px;
    color: #f1f1f1;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#crypto-dropdown-withdraw div img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

#crypto-dropdown-withdraw div:hover {
    background-color: #444;
}

.button-withdraw {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: #1A2122;
    background-color: #98ff98;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}


.lottie-closed{
    margin: auto;
    width: fit-content;
}


.lien_ext{
    text-decoration: none;
    color: white;
    font-family: poppins;
}

.scrolling-text-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    color: white;
    font-size: 18px;
    font-weight: bold;
    animation: scrollText 20s linear infinite;
    font-family: poppins;
}

@keyframes scrollText {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.mess-a {
    color: rgb(255, 0, 212);
}

.mess-b {
    color: rgb(0, 225, 255);
}

.mess-c {
    color: rgb(0, 255, 42);
}




.chxbaseq1+label {
    background: url("/img/v2/g/cx1_off.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
}

.chxbaseq1:checked+label {
    background: url("/img/v2/g/cx1.png") 0 0 no-repeat !important;
    filter: hue-rotate(192deg);
    background-size: 40px 40px !important;
}

.chxbaseq1.actif+label {
    background: url("/img/v2/g/cx1.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
    filter: hue-rotate(140deg);
}

.chxbaseq2+label {
    background: url("/img/v2/g/cx2_off.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
}

.chxbaseq2:checked+label {
    background: url("/img/v2/g/cx2.png") 0 0 no-repeat !important;
    filter: hue-rotate(192deg);
    background-size: 40px 40px !important;
}

.chxbaseq2.actif+label {
    background: url("/img/v2/g/cx2.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
    filter: hue-rotate(140deg);
}

.chxbaseq3+label {
    background: url("/img/v2/g/cx3_off.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
}

.chxbaseq3:checked+label {
    background: url("/img/v2/g/cx3.png") 0 0 no-repeat !important;
    filter: hue-rotate(192deg);
    background-size: 40px 40px !important;
}

.chxbaseq3.actif+label {
    background: url("/img/v2/g/cx3.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
    filter: hue-rotate(140deg);
}

.chxbaseq4+label {
    background: url("/img/v2/g/cx4_off.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
}

.chxbaseq4:checked+label {
    background: url("/img/v2/g/cx4.png") 0 0 no-repeat !important;
    filter: hue-rotate(192deg);
    background-size: 40px 40px !important;
}

.chxbaseq4.actif+label {
    background: url("/img/v2/g/cx4.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
    filter: hue-rotate(140deg);
}

.chxbaseq5+label {
    background: url("/img/v2/g/cx5_off.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
}

.chxbaseq5:checked+label {
    background: url("/img/v2/g/cx5.png") 0 0 no-repeat !important;
    filter: hue-rotate(192deg);
    background-size: 40px 40px !important;
}

.chxbaseq5.actif+label {
    background: url("/img/v2/g/cx5.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
    filter: hue-rotate(140deg);
}

.chxbaseq6+label {
    background: url("/img/v2/g/cx6_off.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
}

.chxbaseq6:checked+label {
    background: url("/img/v2/g/cx6.png") 0 0 no-repeat !important;
    filter: hue-rotate(192deg);
    background-size: 40px 40px !important;
}

.chxbaseq6.actif+label {
    background: url("/img/v2/g/cx6.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
    filter: hue-rotate(140deg);
}

.chxbaseq7+label {
    background: url("/img/v2/g/cx7_off.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
}

.chxbaseq7:checked+label {
    background: url("/img/v2/g/cx7.png") 0 0 no-repeat !important;
    filter: hue-rotate(192deg);
    background-size: 40px 40px !important;
}

.chxbaseq7.actif+label {
    background: url("/img/v2/g/cx7.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
    filter: hue-rotate(140deg);
}

.chxbaseq8+label {
    background: url("/img/v2/g/cx8_off.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
}

.chxbaseq8:checked+label {
    background: url("/img/v2/g/cx8.png") 0 0 no-repeat !important;
    filter: hue-rotate(192deg);
    background-size: 40px 40px !important;
}

.chxbaseq8.actif+label {
    background: url("/img/v2/g/cx8.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
    filter: hue-rotate(140deg);
}

.chxbaseq9+label {
    background: url("/img/v2/g/cx9_off.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
}

.chxbaseq9:checked+label {
    background: url("/img/v2/g/cx9.png") 0 0 no-repeat !important;
    filter: hue-rotate(192deg);
    background-size: 40px 40px !important;
}

.chxbaseq9.actif+label {
    background: url("/img/v2/g/cx9.png") 0 0 no-repeat !important;
    background-size: 40px 40px !important;
    filter: hue-rotate(140deg);
}

.boulebase {
    display: block;
    min-height: 180px;
    margin-top: -13px;
}


.checkboxFour input[type=checkbox]:checked+label {
	background: #2DA72F;
	border-color: #fff;
	color: #fff;
	font-weight: bold;
}

.checkboxFour2 input[type=checkbox]:checked {
	background: #a72d84;
	top: 63px;
	left: 25px;
	height: 5px;
}

.checkboxFour2 input[type=checkbox]+label {
	background: #a72d84;
	/* border-color: #fff;
	color: #fff; */
	top: 63px;
	/* font-weight: bold; */
	left: 25px;
	height: 20px;
}
.boulebase .checkboxFour label,
.boulebaseQQ .checkboxFour label {

    background-image: linear-gradient(353deg, #182342 45%, #2b354b);

    width: 26px;
    height: 47px;

    font-size: 18px;
    color: white;

    position: relative;
    line-height: 31px;

    padding-left: 0px;
    padding-top: 6px;

    text-align: center;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;

    padding-left: 2px;
    text-align: center;
    padding-right: 6px;

}

.boulebase .checkboxFour input[type=checkbox]:disabled+label {
    border-color: #c0c0c0;
}

.bbasexxx {
    width: 100%;
    position: relative;
    top: 0px;
    margin-top: 0px;
    height: 0px;
}
.quarboule+label {
    width: 52px !important;
    height: 50px !important;
    top: 12px;
    float: left;
    padding-top: 7px;
    margin-left: 0.5px;
    position: absolute;
}

.quarte .chxbaseq1+label {
    margin-right: 4px;
}

.quarte .boulebase .checkboxFour label {
    margin-right: 2px;
}

.boulebase .checkboxFour label,
.boulebaseQQ .checkboxFour label {
    background-image: linear-gradient(353deg, #182342 45%, #2b354b);
    width: 26px;
    height: 47px;
    font-size: 18px;
    color: white;
    position: relative;
    line-height: 31px;
    padding-left: 0px;
    padding-top: 6px;
    text-align: center;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    padding-left: 2px;
    text-align: center;
    padding-right: 6px;

}

.boulebase .checkboxFour input[type=checkbox]:disabled+label {
    border-color: #c0c0c0;
}


input[type=checkbox] {
    visibility: hidden;
}

#c1,
#c2,
#c3,
#c4,
#c5,
#c6,
#c7,
#c8,
#c9 {
    border-color: #b63939;
    border-radius: 6px;
    text-align: center;
    font-size: 22px;
    color: #000;
}



#chxselect {
    left: -27px;
}

#chxselect input[type=text] {
    font-size: 16px !important;
}
.selectg {
    width: 45px !important;
    height: 35px;
    position: relative;
    margin-right: 5px;
    flex: 1;
}
.selectg:disabled {
    background-color: blueviolet !important;
    color: gold !important;
    opacity: 1;
    visibility: visible;
    -webkit-text-fill-color: gold;
    font-size: 25px !important;
}

.row-input {
    padding: 10px;
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    border-radius: 12px;
    gap: 5px; 
}

.row-input input {
    flex: 0 0 calc(20% - 9px);
}


.t-blcs{
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 10px 2px 10px 2px;
    border: 1px solid gray;
    border-radius: 6px;
}

.info-block-live {
    background: linear-gradient(to right, #12966f, #004d40);
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #3b3d3d; /* épaisseur */
    border-radius: 5px;
    justify-content: flex-start; 
    overflow: hidden; 
}

.info-block-stop {
    background: linear-gradient(to right, #b91212, #4d0000);
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #3b3d3d; /* épaisseur */
    border-radius: 5px;
    justify-content: flex-start; 
    overflow: hidden; 
}


.info-badge {
    margin-left: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: #e9eaeb;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    position: relative;
    color: #000;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #000;
}
