@charset "UTF-8";
:root {
  --theme-color: #1E74FD;
  --ck-image-style-spacing: 1.5em;
  --ck-inline-image-style-spacing: calc(var(--ck-image-style-spacing)/2);
  --ck-color-image-caption-background: #f7f7f7;
  --ck-color-image-caption-text: #333;
  --ck-color-image-caption-highligted-background: #fd0;
}

.bg-primary {
  background-color: var(--theme-color) !important;
}

.profileBox {
  background-color: var(--theme-color) !important;
}

.nav-tabs.lined .nav-item .nav-link.active {
  color: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
}

.form-group .input-wrapper.active .label {
  color: var(--theme-color) !important;
}

.form-group.boxed .form-control:focus {
  border-color: var(--theme-color) !important;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary.active {
  background: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
}

.btn-text-primary {
  color: var(--theme-color) !important;
}

.product-detail-header .detail-footer .price .current-price {
  color: var(--theme-color) !important;
}

.text-primary, a.text-primary {
  color: var(--theme-color) !important;
}

body {
  max-width: initial !important;
}

#appCapsule {
  max-width: 960px;
  min-height: 78vh;
  margin: auto;
}

.flex-h-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-h-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex-v-left {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.flex-h-center > img {
  margin: 5px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 23% 23% 23% 23%;
  grid-gap: 2%;
}

.avatar {
  max-width: 100%;
  width: 5vmin;
  height: 5vmin;
  border-radius: 50%;
  overflow: hidden;
}

.avatar img {
  width: 150% !important;
  height: 150%;
  object-fit: contain;
  margin-top: -20%;
  margin-left: -25%;
}

.avatar.big {
  width: 10vmin;
  height: 10vmin;
}

.choose_partenaires .user {
  cursor: pointer;
  transition: 0.2s;
  border-radius: 5px;
}

.cb_enregistre {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cb_enregistre .iconedbox.iconedbox-sm {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.cb_enregistre span:last-of-type {
  margin-left: 5px;
}

.hide {
  display: none;
}

.actualites .card {
  width: 100%;
}

.actualites .card .image {
  height: 40vh;
  overflow: hidden;
}


.btn.disabled {
  pointer-events: none;
}

.courtCard.bg-success {
  background: rgba(52, 199, 89, 0.3) !important;
  color: initial !important;
}

.btn_creneau.unselected {
  opacity: 0.5 !important;
}

.card.unselected {
  opacity: 0.5 !important;
}

.courtCard .visuels {
  position: relative;
}

.courtCard .visuels .sponsor {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  padding-left: 5px;
}

.visuels .images {
  display: block;
  position: relative;
}

.visuels .sponsor {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
}

.cacherImportant {
  display: none !important;
}

.footer-logo {
  width: 200px;
  height: auto !important;
}

#sidebarPanel .modal-content {
  max-width: initial;
  margin: initial;
}

/*TABLE CUSTOM*/
.noborder td, .noborder th {
  border: none !important;
}

.table-sm td, .table-sm th {
  padding: 0.3rem;
}

/*TEXT CUSTOM*/
.text-muted {
  color: #A1A1A2 !important;
}

.modal-header, .modal-content {
  max-width: 960px;
  margin: auto !important;
  width: 100%;
}

/******* TABLEAU ARBRE ******/
/*contenaire*/
.tableau__container {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
}

.tableau__content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  word-wrap: normal;
  padding-top: 24px;
  word-wrap: normal;
  overflow-y: hidden;
  overflow-x: scroll;
}

/*tour*/
.tableau_tour {
  display: block;
  flex: 1;
  box-sizing: border-box;
}

.tableau_list {
  list-style: none;
  margin: 0;
  margin-left: 0px;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-flow: row wrap;
  min-height: 100%;
}

.tableau_tour.current .tableau_list {
  margin-left: 16px;
}

.tableau_tour:first-child .tableau_list {
  margin-left: 24px;
}

/*LI*/
.tableau_list {
  list-style: none;
}

.tableau_item {
  min-height: 64px;
  min-width: 100%;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  flex: 0 1 auto;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.2s linear;
}

.tableau_item::before {
  content: "";
  top: 50%;
  left: 0;
  width: 8px;
  margin-left: -8px;
  position: absolute;
  border-color: #909090;
  border-color: var(--color-grey7, #909090);
  border-top: 1px solid #909090;
  border-top-color: rgb(144, 144, 144);
  border-top-color: var(--color-grey7, #909090);
}

.tableau_tour.current .tableau_list .tableau_item::before {
  width: 24px;
  margin-left: -24px;
}

.tableau_tour:first-child .tableau_list .tableau_item::before {
  width: 0;
  margin-left: -24px;
}

.tableau_item::after {
  position: absolute;
  right: -7px;
  width: 7px;
  content: "";
  display: block;
  height: 100%;
  border-color: #909090;
  border-left-color: var(--color-grey7, #909090);
  border-bottom-color: var(--color-grey7, #909090);
  border-right: 1px solid #909090;
  border-right-color: rgb(144, 144, 144);
  border-right-color: var(--color-grey7, #909090);
  border-top-color: var(--color-grey7, #909090);
}

.tableau_item:nth-child(2n+1)::after {
  top: 50%;
  border-color: #909090;
  border-color: var(--color-grey7, #909090);
  border-top: 1px solid #909090;
  border-top-color: rgb(144, 144, 144);
  border-top-color: var(--color-grey7, #909090);
}

.tableau_item:nth-child(2n)::after {
  bottom: 50%;
  border-color: #909090;
  border-left-color: var(--color-grey7, #909090);
  border-bottom: 1px solid #909090;
  border-bottom-color: rgb(144, 144, 144);
  border-bottom-color: var(--color-grey7, #909090);
  border-right-color: var(--color-grey7, #909090);
  border-top-color: var(--color-grey7, #909090);
}

.tableau_tour:last-child .tableau_list .tableau_item::after {
  border: none;
}

.tableau_item.inactif::after {
  border-color: #FFF;
}

.tableau_event {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  height: 64px;
  background: #f7f7f7;
  width: 100%;
  box-sizing: border-box;
  border-radius: 15px;
}

.tableau_event.myself {
  background-color: #bee5eb;
}

.match {
  display: flex;
  padding: 5px 16px 4px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
  font-size: 12px;
}

.match_teams {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 2;
  padding-right: 8px;
}

.match_team {
  display: block;
  line-height: 28px;
  font-weight: 400;
  width: 100%;
  position: relative;
}

.match_team--away {
  margin-top: -4px;
}

.match__flag, .match_name {
  display: inline-block;
  vertical-align: middle;
}

.match_name {
  padding-left: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match_name.winner {
  line-height: 28px;
  font-weight: 400;
}

.match_teamInfos {
  display: inline-block;
  color: #7b7b7a;
  font-size: 10px;
  line-height: 28px;
  margin-left: 2px;
  vertical-align: middle;
}

.match_teamInfos {
  position: absolute;
  bottom: 0;
  margin-left: 4px;
}

.match_name {
  white-space: nowrap;
}

.match_name.winner {
  line-height: 28px;
  color: #FE9500;
}

.match_player:not(:first-child)::before {
  color: #1d1d1b;
  content: "/";
  margin-right: -2px;
  margin-left: -2px;
}

.match_name.winner .match_player:not(:first-child)::before {
  color: #FE9500;
}

/*score*/
.match_scores {
  display: block;
}

.match_score {
  display: flex;
  line-height: 28px;
  font-weight: 400;
  text-align: right;
}

.match_set {
  display: inline-block;
  margin: 0 3px;
  max-width: 8px;
}

.match_set.winner {
  font-weight: bold;
}

.match_set, .match_set.winner {
  line-height: 28px;
}

.match_reason, .match_date {
  color: #7b7b7a;
  text-align: right;
  margin: auto;
}

.match_date {
  font-size: 10px;
}

/*INFOS COMPTE */
.star_level {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star_level i {
  font-size: 32px;
  color: #FE9500;
}

.star_level .level {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  position: absolute;
}

.home #appCapsule.hasPartner {
  padding-top: 0;
}

.home .partenaires {
  padding-top: calc(env(safe-area-inset-top, 0) + 56px);
}

.home .partenaires.bottom {
  padding-top: 0;
  border-bottom: 0;
}

.home .partenaires .centerPartner {
  max-width: 960px;
  margin: auto;
}

.partenaires img {
  height: 100px;
}

.partenaires.mobile {
  display: none;
}

.home .partenaires.mobile a {
  width: 25%;
}

@media (max-width: 960px) {
  .partenaires.desktop {
    display: none;
  }
  .partenaires.mobile {
    display: block;
  }
}
.partenaires img {
  height: 100px;
}

/*ACCORDEON INPUT AUTOCOMPLETE*/
.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-widget {
  font-size: 14px;
  width: 100%;
  margin-left: 0px;
  margin-top: 10px;
}

.ui-widget.ui-widget-content {
  border: 1px solid #30487B;
  max-width: 90%;
  background: #f9f9f9 !important;
  color: #30487B;
  padding: 0;
  z-index: 99999999;
  max-height: 70vh;
  overflow: auto;
  border-radius: 0;
}

@media (max-height: 500px) {
  .ui-widget.ui-widget-content {
    max-height: 40vh;
  }
}
.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px;
  text-transform: uppercase;
  font-variant-numeric: diagonal-fractions;
}

.ui-menu .ui-menu-item:hover,
.ui-menu .ui-menu-item:active,
.ui-menu .ui-menu-item-wrapper:hover,
.ui-menu .ui-menu-item-wrapper:active {
  color: #484848;
  background: #FFF !important;
  border: 0;
}

/******* QRCODE ******/
.qr-code-generator {
  width: 500px;
  margin: 0 auto;
}

.qr-code-generator * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#qrcode {
  width: 128px;
  height: 128px;
  margin: 0 auto;
  text-align: center;
}

#qrcode a {
  font-size: 0.8em;
}

.qr-url, .qr-size {
  padding: 0.5em;
  border: 1px solid #ddd;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.qr-url {
  width: 79%;
}

.qr-size {
  width: 20%;
}

.generate-qr-code {
  display: block;
  width: 100%;
  margin: 0.5em 0 0;
  padding: 0.25em;
  font-size: 1.2em;
  border: none;
  cursor: pointer;
  background-color: #e5554e;
  color: #fff;
}

iframe #inputField {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  box-sizing: content-box;
  color: rgb(113, 113, 113);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 14.7px;
  letter-spacing: normal;
  margin: 2px 0px 0px;
  max-height: none;
  min-height: 0px;
  min-width: 0px;
  opacity: 1;
  outline: currentcolor none 0px;
  padding: 4px 0px;
  text-align: start;
  text-decoration: rgb(113, 113, 113);
  text-shadow: none;
  user-select: auto;
  vertical-align: middle;
  visibility: visible;
  white-space: normal;
  width: 100%;
  border: 0px solid black;
  display: inline-block;
}

.appFooter {
  padding-bottom: 56px;
  margin-bottom: 15%;
}

@media (max-width: 960px) {
  .event .product-detail-header .detail-footer {
    margin-top: 60px;
  }
  #appCapsule {
    padding-top: calc(env(safe-area-inset-top, 0) + 56px);
  }
  .footer-logo {
    width: 35%;
  }
}
.ui-widget.ui-widget-content {
  max-width: 90%;
  width: 500px;
}

.ext_inscr_select {
  padding: 6px 8px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background-color: #fff;
  color: #6c757d;
}

#extBackButton:hover {
  cursor: pointer;
}

.home .partenaires a {
  width: 16.6%;
  padding: 10px;
  margin: 0 !important;
}
@media (max-width: 960px) {
  .home .partenaires {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bloc_joueurs .form-check-inline .form-check-label {
  padding-left: 30px;
}
.bloc_joueurs .form-check .form-check-label {
  line-height: 1;
}

.input_level, .input_level_partie {
  position: relative;
  width: fit-content;
}
.input_level i, .input_level_partie i {
  font-size: 60px;
  color: #FE9500;
}
.input_level select, .input_level_partie select {
  position: absolute;
  background: transparent;
  width: 40px;
  appearance: none;
  padding: 0;
  height: 35px;
  text-align: center;
  margin-top: 5px;
  border: none;
}
.input_level select:focus, .input_level_partie select:focus {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}

.noCreaPartieRedAlert {
  color: #EC4433;
}

.openmodalpartenaires, .insertInfosPartners {
  text-align: center;
}

.blocOnePlayer .input_level {
  position: absolute;
  left: 0;
  top: 25px;
}

.blocOnePlayer .input_level i, button .input_level i {
  font-size: 30px;
}

.blocOnePlayer .input_level p, button .input_level p {
  position: absolute;
  top: 7px;
  font-size: 11px;
  color: #fff;
}

.splide__slide {
  position: relative;
}

.allplayers .input_level {
  left: -15px;
  top: -10px;
  position: absolute;
}

.allplayers .input_certif {
  left: 35px;
  top: -10px;
  position: absolute;
}

.input_level.big {
  left: 15px;
}

.input_certif.big {
  left: 70px;
}

.splide__slide .input_level_partie {
  right: -10px;
  top: 50px;
  position: absolute;
}

.allplayers .input_level p {
  position: absolute;
  top: 7px;
  font-size: 11px;
  color: #fff;
}

.confirmResaTxt .input_level p {
  font-size: 14px;
}

.input_level_partie p {
  position: absolute;
  top: 7px;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}

.splide__slide .iconForCreaPartie {
  width: 1.5em;
  height: 1.5em;
  color: #EC4433;
  margin-top: -15px;
  margin-bottom: 5px;
}

.playerInPartieCss {
  position: relative;
}

.allplayers .input_level .bi-star-fill, input_level_resa i {
  font-size: 30px;
}

.confirmResaTxt .input_level .bi-star-fill {
  font-size: 35px;
}

.input_level_partie .bi-star-fill {
  font-size: 40px;
}

.openPartieOrNot {
  margin-top: 10px !important;
  margin-bottom: 20px;
}

.openPartieOrNot .miniinfo {
  font-size: 10px;
  font-weight: 100;
}

.iconForCreaPartie {
  height: 3em;
  width: 3em;
}

.openPartieOrNot label {
  width: 100%;
  font-size: 13px;
}

.update-level .input-wrapper:not(.label_licence) {
  background: var(--theme-color) !important;
  color: #fff;
  border-radius: 5px;
}
.update-level .input_level p {
  color: #fff;
  position: absolute;
}

.askCancelPlayer {
  color: #c10000;
  font-size: 25px;
  margin-bottom: 10px;
}

.splide__list .timer {
  font-size: 10px;
  text-align: center;
  font-style: italic;
}

.modal.actu_home #appCapsule {
  height: 87vh;
}
.modal.actu_home #appCapsule .carousel-slider .imaged.w-100 {
  height: 80vh;
  max-width: 100%;
  object-fit: contain;
}
.modal.actu_home #appCapsule .modal-content {
  background-color: transparent !important;
  border: 0;
}

@media (max-width: 380px) {
  .flex-verysm-column {
    flex-direction: column;
  }
}
.checkActivityButtons {
  background: transparent;
  border-color: #592BCA !important;
  color: #592BCA !important;
}

.checkActivityButtons:hover {
  background: rgba(89, 43, 202, 0.15) !important;
  border-color: #592BCA !important;
  color: #592BCA !important;
}

.checkActivityBtn:checked + .checkActivityButtons {
  background: #592BCA !important;
  border-color: #592BCA !important;
}

.checkSportAllchecked {
  color: #5cb85c;
  font-size: 1.5em;
}

.checkSportNoCheck {
  color: #f0ad4e;
  font-size: 1.5em;
}

.progress-bar__background {
  width: 100%;
  height: 100%;
  display: flex;
  margin: -2px;
  height: 22px;
  width: 22px;
  transform: rotate(-90deg);
}

.progress-bar__background {
  stroke-dashoffset: 0;
  stroke: #e2eff0;
  stroke-width: 2;
}

.progress-bar__progress {
  fill: none;
  stroke: #e2eff0;
  stroke: #5cb85c;
  stroke-linecap: round;
  stroke-width: 2;
  transition: stroke-dashoffset 1s ease-in-out;
}

.pe-auto {
  cursor: pointer;
}

.participantsListDiv {
  max-height: 200px;
  overflow: auto;
}

.payment {
  border: 1px solid #f2f2f2;
  border-radius: 20px;
  background: #fff;
}

.payment_header {
  background: var(--theme-color);
  padding: 20px;
  border-radius: 20px 20px 0px 0px;
}

.check {
  margin: 0px auto;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #fff;
  text-align: center;
}
.check .paiement_succes_icon {
  font-size: 2.5em;
  color: #5cb85c;
  align-self: center;
}
.check .paiement_fail_icon {
  font-size: 2.5em;
  color: #d70e0e;
  align-self: center;
}

.check i {
  vertical-align: middle;
  line-height: 50px;
  font-size: 30px;
}

.paiement_succes_content {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.paiement_succes_content a {
  width: 200px;
  height: 35px;
  color: #fff;
  border-radius: 30px;
  padding: 5px 10px;
  background: var(--theme-color);
  transition: all ease-in-out 0.3s;
  margin: 0 0 1em;
  align-self: center;
}
.paiement_succes_content p {
  margin: 0 1rem 1rem 1rem;
}

.paiement_succes_content h1 {
  font-size: 25px;
  padding-top: 25px;
}

.paiement_succes_content a:hover {
  text-decoration: none;
  background: #000;
}

.opaqueImage:hover {
  opacity: 0.5 !important;
}

.opaqueImage:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-lock-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2z'%3E%3C/path%3E%3C/svg%3E") !important;
  background-color: #fff !important;
}

@media (hover: hover) and (pointer: fine) {
  .opaqueImage:hover {
    opacity: 0.5 !important;
  }
  .opaqueImage:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-lock-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2z'%3E%3C/path%3E%3C/svg%3E") !important;
    background-color: #fff !important;
  }
}
.participantsListDiv {
  max-height: 200px;
  overflow: auto;
}

.card_credits_balance {
  max-width: 450px;
  margin: auto;
}

.event-info-specialPrice {
  font-size: 0.8em;
  margin-top: 1em;
}
.event-info-specialPrice p {
  margin: unset;
}

#modal_inscript_event .changeprice {
  margin-top: 5px;
}

.info-circle {
  padding-bottom: 0;
  float: left;
  float: right;
  margin-right: 20px !important;
  font-size: 1.3em;
  color: orange !important;
  cursor: pointer;
}

.info-circle a:focus, .info-circle a:visited, .info-circle a:active {
  color: orange !important;
  text-decoration: none;
}

.overlay-info {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 10000;
}

.overlay-info:target {
  visibility: visible;
  opacity: 1;
}

.info-popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  min-height: 56px;
}

.info-popup-content {
  max-height: 30%;
  overflow: auto;
  border: 1px solid #ddd;
  background-color: #ddd;
  border-radius: 3px;
  padding: 1em;
}

.info-popup-content ul {
  list-style-type: none;
}

.info-popup-content img {
  width: 17px;
  height: 16px;
}

.space-evenly {
  display: flex;
  justify-content: space-around;
}

.popup-detail-debit {
  background-color: #fff;
  border: none;
}

.popup-detail-debit p:first-of-type {
  padding-top: 1em;
}

.recapDiv {
  max-height: 500px;
  overflow: auto;
}

.info-popup-close {
  text-align: center;
  margin-top: 1em;
  padding: 0.5em;
  border: 1px solid #6c757d;
  background-color: #6c757d;
  color: #f8f9fa;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}

.clear {
  border-top: 1px solid #ddd;
  padding: 1em;
}

.info-popup-close:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

@media screen and (max-width: 700px) {
  .info-popup {
    width: 100%;
    margin: 0;
  }
}
.accepted_cgv, .kr-field-control.kr-checkbox {
  font-style: italic !important;
  font-family: "Inter", sans-serif !important;
  font-size: 11px !important;
  color: #999 !important;
  line-height: 12px !important;
}

.kr-checkbox-control-indicator {
  width: 36px !important;
}

.kr-field-control a, .accepted_cgv a {
  font-style: italic !important;
  font-family: "Inter", sans-serif !important;
  font-size: 11px !important;
  line-height: 12px !important;
  transition: 0.2s all !important;
  color: #1E74FD !important;
  outline: 0 !important;
  cursor: pointer !important;
}

.waitforloadresa {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  z-index: 900;
  opacity: 0.8;
}

.card_credits_balance {
  max-width: 450px;
  margin: auto;
}

.event-info-specialPrice {
  font-size: 0.8em;
  margin-top: 1em;
}

.listviewEvent {
  width: calc(100% + 64px);
  margin-left: -32px;
  border: none;
  background: #f9f9f9;
}

.iconApp {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  /*color:var(--theme-color) !important*/
  color: #30487B;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.specBlocLeft {
  padding-left: 0px;
  padding-right: 8px;
}

.specBlocRight {
  padding-left: 8px;
  padding-right: 0px;
}

ul.ul-nostyle {
  list-style: none;
  text-align: center;
  padding: 0 10px;
}
ul.ul-nostyle li {
  margin-top: 10px;
}

.card .card-title {
  text-align: center;
}

.adVipCalendar {
  width: 100%;
  font-size: 12px;
  color: #c1c1c1;
}

.d-float-50-100 {
  float: left;
  width: 50%;
}

.ajustMyLastresa {
  width: 60%;
  margin-left: 20%;
}

span.indications {
  font-size: 10px;
  font-weight: 100;
  text-align: center;
  width: 100%;
}

.alert-outline-dark {
  background: transparent;
  color: #333;
  border: 1px solid #555;
  line-height: 1.5em;
}

.vipCard ul {
  list-style: none;
}

@media (max-width: 768px) {
  .alert .alert-title,
  .card .card-title {
    font-size: 15px;
    text-align: center;
  }
  .alert {
    font-size: 11px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 15px;
  }
  h3 {
    font-size: 14px;
  }
  body {
    font-size: 12px;
  }
  .btn {
    font-size: 11px;
  }
  .specBlocLeft {
    padding-left: 0px;
    padding-right: 4px;
  }
  .specBlocRight {
    padding-left: 4px;
    padding-right: 0px;
  }
  .card .card-body {
    padding: 24px 8px;
  }
  .allplayers .input_level {
    left: -10px;
  }
  .carousel-multiple .allplayers .input_level {
    left: 2px;
  }
  .allplayers .input_level .bi-star-fill {
    font-size: 20px;
  }
  .allplayers .input_level p {
    top: 3px;
    font-size: 10px;
  }
  .d-float-50-100 {
    width: 100%;
  }
  .ajustMyLastresa {
    width: 95%;
    margin-left: 2.5%;
  }
  .alert .alert-title {
    font-size: 12px;
  }
}
.infoPopupModal img {
  width: 100%;
}

.infoPopupModal .image {
  clear: both;
  display: table;
  margin: 0.9em auto;
  min-width: 50px;
  text-align: center;
  position: relative;
}

.infoPopupModal .image-inline {
  align-items: flex-start;
  display: inline-flex;
  max-width: 100%;
}

.infoPopupModal .image-style-align-left, .infoPopupModal .infoPopupModal .image-style-align-right {
  clear: none;
}

.infoPopupModal .image-inline.image-style-align-left {
  margin-right: var(--ck-inline-image-style-spacing);
}

.infoPopupModal .image-inline.image-style-align-left, .infoPopupModal .image-inline.image-style-align-right {
  margin-bottom: var(--ck-inline-image-style-spacing);
  margin-top: var(--ck-inline-image-style-spacing);
}

.infoPopupModal .image-inline.image-style-align-left {
  margin-right: var(--ck-inline-image-style-spacing);
}

.infoPopupModal .image-style-align-right {
  float: right;
  margin-left: var(--ck-image-style-spacing);
}

.infoPopupModal .image-inline.image-style-align-right {
  margin-left: var(--ck-inline-image-style-spacing);
}

.infoPopupModal .image-style-align-left {
  float: left;
  margin-right: var(--ck-image-style-spacing);
}

.infoPopupModal .image.image_resized > figcaption {
  display: block;
}

.infoPopupModal .image > figcaption {
  background-color: var(--ck-color-image-caption-background);
  caption-side: bottom;
  color: var(--ck-color-image-caption-text);
  display: table-caption;
  font-size: 0.75em;
  outline-offset: -1px;
  padding: 0.6em;
  word-break: break-word;
}

.infoPopupModal .text-tiny {
  font-size: 0.7em;
}

.infoPopupModal .text-small {
  font-size: 0.85em;
}

.infoPopupModal .text-big {
  font-size: 1.4em;
}

.infoPopupModal .text-huge {
  font-size: 1.8em;
}

.loaderText {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
}

.pageTitleClub {
  position: absolute;
  bottom: 0;
  font-size: 9px;
  font-style: oblique;
}

.globe-principal {
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  width: 90px;
  justify-content: center;
  margin-left: calc(50% - 45px);
  font-weight: bold;
  position: relative;
}
.globe-principal:before {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50px;
  top: 3px;
  left: 5px;
  background-color: #30487B;
  outline: 3px inset rgba(48, 72, 123, 0.4);
  position: absolute;
  z-index: -1;
}

.appBottomMenu .item .globe-principal ion-icon {
  color: #fff;
}

.check-pm:checked ~ .check-pm-label::after,
.check-pm-noshow:checked ~ .check-pm-label::after {
  background-color: #5cb85c !important;
  border-color: #5cb85c !important;
}

.form-check .check-pm-label::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}

.pm-logo {
  width: 32px;
}

.choice-pm-container {
  gap: 1em;
}

.choice-pm-container label b {
  font-weight: 600 !important;
}

.avatar-container .star-container {
  top: -7px !important;
  left: -10px !important;
  font-size: 24px !important;
}

.star-icon .star-p {
  left: 8px !important;
  top: 2px !important;
  font-size: 10px !important;
}

.certif-icon .star-p {
  left: 7px !important;
  top: 1px !important;
  font-size: 10px !important;
}

.text-certif-icon {
  left: 9px !important;
  top: 4px !important;
}

@media (max-width: 750px) {
  .star-icon .star-p {
    top: 4px !important;
  }
  .certif-icon .star-p {
    top: 3px !important;
  }
}
.imaged.rounded.w36 {
  height: 36px !important;
}

.certif-icon {
  background: radial-gradient(circle, rgb(52, 199, 89) 50%, rgba(52, 199, 89, 0) 50%);
}

.PartyCertified .card {
  border: 5px solid #34C759;
}

.PartyNotCertified .card {
  border: 5px solid #FFF;
}

i.reduc_icon {
  font-size: 45px !important;
}

.ui-autocomplete-loading {
  background: url("../../../img/elements/loadingBar.gif") no-repeat right center !important;
  background-size: 50px !important;
}

span.infosBtnProduct {
  padding: 5px;
  font-weight: bold;
}

.max_price_stripe_pay {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

#max_price_stripe_pay {
  font-weight: bold;
  font-size: 16px;
}

.splide__list {
  margin: 0px 0px 10px 0px !important;
}

.splide__list li:not(#actu_home .splide__list li) {
  min-width: 293px;
  margin-right: 16px;
  max-width: 10vw;
  position: relative;
}

@media (max-width: 768px) {
  .splide__list li {
    min-width: 293px;
    margin-right: 16px;
    max-width: 95vw;
  }
}
.effective_price_stripe_pay,
.caution_stripe_pay,
.max_price_stripe_pay {
  line-height: 1;
  margin-bottom: 10px;
}

.effective_price_stripe_pay em,
.caution_stripe_pay em {
  font-size: 10px;
}

#resamember .user p {
  text-transform: capitalize;
}

.disabled-element {
  pointer-events: none;
  opacity: 0.5;
}

/****BLOCK LIMITES******/
.limite-resa-player-element.background-visible {
  padding: 1em;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.limite-resa-player-element .limits-title {
  margin-bottom: 2em;
  text-align: center;
}

.limite-resa-player-element .limit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.limite-resa-player-element .label.label-visible {
  width: 45%;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
}

.limite-resa-player-element .progress-container {
  position: relative;
  height: 24px;
  background: #f1f1f1;
  border-radius: 6px;
  overflow: hidden;
}

.limite-resa-player-element .progress-container.w100 {
  width: 100%;
}

.limite-resa-player-element .progress-container.w50 {
  width: 50%;
}

.limite-resa-player-element .progress-fill {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; /* texte centré */
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
  transition: width 0.3s ease;
}

.limite-resa-player-element .progress-fill.green {
  background-color: #28a745;
}

.limite-resa-player-element .progress-fill.red {
  background-color: #EC4433;
}

.limite-resa-player-element .progress-fill.empty {
  background-color: transparent; /* pas de couleur */
  color: #333; /* texte bien visible sur fond vide */
  width: 100% !important; /* étend le texte sur toute la barre vide */
  border: 1px solid #ddd;
}

.limite-resa-player-element .progress-text {
  text-align: center;
  width: 100%;
}

/****!BLOCK LIMITES******/

/*# sourceMappingURL=custom.css.map */
