* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  font-family: sans-serif; }

body {
  background-color: #141414; }

a {
  text-decoration: none; }

#content {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-bottom: 50px; }

#container {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative; }

.hiding {
  display: none; }

#left_menu {
  position: fixed;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  background-color: #000000e8;
  z-index: 2; }
  #left_menu .top {
    display: flex;
    justify-content: space-between;
    position: relative; }
    #left_menu .top .left {
      display: flex;
      justify-content: center; }
      #left_menu .top .left .logo img {
        padding: 5px 10px 0 10px; }
    #left_menu .top .right {
      display: flex;
      align-items: center;
      position: absolute;
      right: 0; }
      #left_menu .top .right .login_btn {
        border: 1px solid #FFB000;
        padding: 7px 10px;
        margin-right: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 14px;
        color: white; }
      #left_menu .top .right .ham {
        display: block;
        padding: 30px 10px;
        cursor: pointer; }
        #left_menu .top .right .ham span:first-of-type {
          display: block;
          padding: 1.5px;
          width: 30px;
          border: 1px solid #FFB000;
          transform: rotate(-45deg);
          -webkit-transform: rotate(-45deg); }
        #left_menu .top .right .ham span:last-of-type {
          display: block;
          margin-top: -5px;
          padding: 1.5px;
          width: 30px;
          border: 1px solid #FFB000;
          transform: rotate(-135deg);
          -webkit-transform: rotate(-135deg); }
  #left_menu .links {
    display: flex;
    flex-direction: column;
    padding: 40px 10px;
    border-top: 2px solid white; }
    #left_menu .links .link {
      margin: 10px;
      display: flex;
      justify-content: space-between; }
      #left_menu .links .link span {
        color: #ffffff;
        font-size: 18px;
        font-weight: bold; }
  #left_menu .contact {
    display: flex;
    justify-content: space-evenly;
    padding: 40px 0;
    color:white;
    border-top: 2px solid white; }
  #left_menu .contact a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #left_menu .contact a .wa_phone {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: white;
  }
  #left_menu .info {
    display: flex;
    margin: 20px 40px;
    font-size: 14px;
    text-align: center;
    color: white; }

#top_nav {
  width: 100%;
  border-bottom: 1px solid #6D6D6D; }
  #top_nav .top {
    display: flex;
    justify-content: space-between; }
    #top_nav .top .left {
      display: flex;
      justify-content: center; }
      #top_nav .top .left .ham {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 20px 10px;
        cursor: pointer; }
        #top_nav .top .left .ham span {
          padding: 1.5px;
          width: 30px;
          border: 1px solid #FFB000; }
      #top_nav .top .left .logo img {
        padding-top: 5px; }
    #top_nav .top .right {
      display: flex;
      align-items: center; }
      #top_nav .top .right .balance {
        display: flex;
        margin-right: 5px;
        color: white; }
        #top_nav .top .right .balance #balance_value {
          margin-left: 5px;
          font-size: 14px; }
      #top_nav .top .right .login_btn {
        border: 1px solid #FFB000;
        padding: 10px;
        margin-right: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 14px;
        color: #FFB000; }

#bets_page_wrapper {
  position: fixed;
  width: calc( 100vw - 40px);
  height: calc( 100vh - 80px);
  background-color: #2B2B2B;
  padding: 10px;
  margin: 10px;
  border-radius: 20px;
  z-index: 2; }
  #bets_page_wrapper #bets_page {
    display: flex;
    flex-direction: column;
    color: white;
    height: 100%;
    overflow: scroll;
    scrollbar-width: none; }
    #bets_page_wrapper #bets_page .head {
      display: flex;
      justify-content: center;
      position: relative; }
      #bets_page_wrapper #bets_page .head span {
        font-weight: bold;
        font-size: 18px; }
      #bets_page_wrapper #bets_page .head #Fiche_close_cross {
        position: absolute;
        right: 10px;
        font-size: 16px;
        cursor: pointer;
        padding: 3px 7px;
        border-radius: 15px;
        background-color: #6D6D6D; }
    #bets_page_wrapper #bets_page .nav {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #6D6D6D; }
      #bets_page_wrapper #bets_page .nav .nav_btn {
        padding: 25px 20px 10px 20px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer; }
    #bets_page_wrapper #bets_page #all_board #multi_board #multi_bets ._bet_, #bets_page_wrapper #bets_page #all_board #multi_board #seul_bets ._bet_ {
      display: flex;
      flex-direction: column;
      background-color: black;
      color: #ececec;
      margin: 5px 0;
      padding: 10px;
      border: 1px solid black;
      width: calc( 100% - 22px);
      border-radius: 10px; }
      #bets_page_wrapper #bets_page #all_board #multi_board #multi_bets ._bet_ .head, #bets_page_wrapper #bets_page #all_board #multi_board #seul_bets ._bet_ .head {
        display: flex;
        justify-content: space-between;
        font-size: 12px; }
        #bets_page_wrapper #bets_page #all_board #multi_board #multi_bets ._bet_ .head .bet_close_cross, #bets_page_wrapper #bets_page #all_board #multi_board #seul_bets ._bet_ .head .bet_close_cross {
          font-size: 18px;
          cursor: pointer; }
      #bets_page_wrapper #bets_page #all_board #multi_board #multi_bets ._bet_ .match_name, #bets_page_wrapper #bets_page #all_board #multi_board #seul_bets ._bet_ .match_name {
        font-size: 14px;
        font-weight: bold; }
      #bets_page_wrapper #bets_page #all_board #multi_board #multi_bets ._bet_ .bottom, #bets_page_wrapper #bets_page #all_board #multi_board #seul_bets ._bet_ .bottom {
        display: flex;
        justify-content: space-between;
        font-weight: bold;
        margin-top: 5px; }
      #bets_page_wrapper #bets_page #all_board #multi_board #multi_bets ._bet_ .seul_specific, #bets_page_wrapper #bets_page #all_board #multi_board #seul_bets ._bet_ .seul_specific {
        display: flex;
        justify-content: space-between;
        margin-top: 5px; }
        #bets_page_wrapper #bets_page #all_board #multi_board #multi_bets ._bet_ .seul_specific .seul_mise_input, #bets_page_wrapper #bets_page #all_board #multi_board #seul_bets ._bet_ .seul_specific .seul_mise_input {
          display: flex;
          width: 100px;
          border-radius: 10px;
          font-size: 15px;
          padding: 5px 10px;
          border: 2px solid #B5B5B5; }
        #bets_page_wrapper #bets_page #all_board #multi_board #multi_bets ._bet_ .seul_specific .Gagner_wrapper, #bets_page_wrapper #bets_page #all_board #multi_board #seul_bets ._bet_ .seul_specific .Gagner_wrapper {
          display: flex;
          margin-top: 8px; }
          #bets_page_wrapper #bets_page #all_board #multi_board #multi_bets ._bet_ .seul_specific .Gagner_wrapper .Gagner, #bets_page_wrapper #bets_page #all_board #multi_board #seul_bets ._bet_ .seul_specific .Gagner_wrapper .Gagner {
            font-weight: bold; }
    #bets_page_wrapper #bets_page #all_board #multi_board .board .mise_wrapper {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-top: 1px solid #6D6D6D;
      border-bottom: 1px solid #6D6D6D;
      padding: 5px; }
      #bets_page_wrapper #bets_page #all_board #multi_board .board .mise_wrapper span {
        margin-top: 5px;
        font-size: 18px; }
      #bets_page_wrapper #bets_page #all_board #multi_board .board .mise_wrapper #multiple_mise #multiple_mise_input {
        width: 100px;
        border-radius: 5px;
        font-size: 15px;
        padding: 5px 10px; }
    #bets_page_wrapper #bets_page #all_board #multi_board .board .board_line {
      display: flex;
      justify-content: space-between;
      padding: 10px 0; }
      #bets_page_wrapper #bets_page #all_board #multi_board .board .board_line .board_line_number {
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px; }
    #bets_page_wrapper #bets_page #all_board #multi_board .board #multi_place_bet_btn {
      display: flex;
      justify-content: center;
      align-content: center;
      margin: 10px 0 40px 0;
      padding: 10px;
      background: linear-gradient(0.5turn, #ffdf53, #ffb300);
      color: #ffffff;
      font-size: 18px;
      font-weight: bold;
      text-align: center;
      width: calc( 100vw - 60px);
      border-radius: 10px;
      border: none;
      cursor: pointer; }

.hide_eye {
  display: none; }

.result_wrapper {
  display: none;
  width: calc( 100% - 26px);
  padding: 10px;
  border-radius: 10px;
  height: 100%; }
  .result_wrapper .result_message {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: green; }

.up_arrow, .down_arrow {
  position: relative;
  border-radius: 50px;
  padding: 15px;
  background-color: #ffffff; }
  .up_arrow .arrow, .down_arrow .arrow {
    position: absolute;
    top: 11px;
    right: 12px;
    border: solid #6D6D6D;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 2px;
    color: white; }

.up_arrow {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg); }

.down_arrow {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); }

._up_arrow_white, ._down_arrow_white {
  border: solid white;
  border-width: 0 4px 4px 0;
  padding: 2px;
  height: 2px;
  width: 2px;
  margin-top: 2px; }

._up_arrow_white {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg); }

._down_arrow_white {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); }

.orange_bg {
  background-color: #FFB000 !important; }

.dark_orange_bg {
  background: #FFB000 !important; }

.return {
  display: flex;
  justify-content: space-between;
  margin: 5px 10px 0 10px;
  padding: 5px 10px;
  color: white;
  background-color: #2B2B2B;
  cursor: pointer;
  border: 1px solid #6D6D6D;
  border-radius: 10px; }
  .return a {
    color: white; }

.slide_active {
  color: #FFB000; }

.dark_slide_active {
  color: #ff7b00; }

.selected_quote {
  background-color: #FFB000 !important; }

.first_arrow {
  border: solid #ffffff;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 2px; }

.more_down_arrow {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); }

.more_right_arrow {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); }

.less_up_arrow {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg); }

.hidden {
  display: none; }

.disabled {
  opacity: 0.33; }

.working {
  opacity: 0.66; }

.more_matches {
  display: flex;
  align-self: center;
  justify-content: center;
  margin: 20px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  border-radius: 10px;
  background-color: #FFB000;
  padding: 10px 20px;
  cursor: pointer;
  width: 50%; }

.next_arrow, .prev_arrow {
  border: solid #ffffff;
  border-width: 0 6px 6px 0;
  display: inline-block;
  padding: 3px; }

.next_arrow {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); }

.prev_arrow {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg); }

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

.loader {
  display: flex;
  justify-self: center;
  align-self: center;
  border: 16px solid #f3f3f3;
  border-top: 16px solid #FFB000;
  border-radius: 50%;
  margin: 50px;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite; }

.small_loader {
  display: flex;
  justify-self: center;
  align-self: center;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #FFB000;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  animation: spin 2s linear infinite; }

#Mes_Paris {
  display: flex;
  position: fixed;
  background-color: #fff;
  right: -200px;
  bottom: 100px;
  z-index: 1;
  cursor: pointer; }
  #Mes_Paris .inner .right {
    padding: 5px 10px 5px 20px;
    text-align: right;
    color: black; }
    #Mes_Paris .inner .right span {
      font-size: 12px; }
    #Mes_Paris .inner .right #total_odds {
      font-size: 14px;
      font-weight: bold; }
  #Mes_Paris .inner .left {
    position: absolute;
    left: -35px;
    top: -3px;
    font-size: 18px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: #FFB000;
    width: 50px;
    height: 50px;
    font-weight: bold;
    display: flex;
    color: #ffffff;
    justify-content: center;
    align-items: center; }
