@media screen and (max-width: 990px) {
  /* On impacte pas la version non responsive */
  .header {
    .logo {
      width: 95vw;

      a {
        img {
          /* max-height: inherit !important; */
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          margin: auto;
        }
      }
    }
  }

  .hidden_prior_990px {
    display: none !important;
  }

  .top-navbar-right {
    text-align: right;

    i {
      color: rgba(255, 255, 255, .7);
      font-size: 1.4em;
      margin-top: 5px;
    }
  }

  .header .header-wrapper + .header-wrapper .primary .navbar .navbar-collapse {
    /* left: -1px; */
    width: 102vw; /* 102 pour éviter un décalage graphique*/
    /*width: calc(200% + px);*/
  }

  .primary {
    width: 100%;

    .navbar {
      button {
        width: 100%;
        border: 1px solid !important;
        border-color: black;

        .menu_button_content {
          width: 75px;
          left: 0;
          right: 0;
          margin: auto;
        }
      }
    }

  }
}

.array {
  width: 100%;
  /*border: 1px solid grey;*/
}

.array td {
  /*border: 1px solid grey;*/
  padding: 10px;
}

/* BEGIN Responsive table pour interface client */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.responsive-table th {
  background-color: #f2f2f2;
}

@media screen and (max-width: 768px) {
  .responsive-table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table th,
  .responsive-table td,
  .responsive-table tr {
    display: block;
    width: 100%;
    border: none;
  }

  .responsive-table tr {
    margin-bottom: 15px;
  }

  .responsive-table td {
    text-align: center;
    /*padding-left: 50%;*/
    position: relative;
    padding: 5px !important;
  }

  .responsive-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;
  }

  .responsive-table thead tr {
    display: none;
  }
}


#points .amount {
  text-align: right;
  color: black;
  font-weight: bold;
}

#points .comment {
  text-align: left;
}
/* EOF Responsive table pour interface client */


.title {
  padding-top: 25px !important;
  font-size: 1.8em !important;
}

/* Carte adhérents — bulles d'info (InfoWindow Google Maps) */
.poi-info {
  font-size: 13px;
  line-height: 1.5;
  min-width: 220px;
  max-width: 300px;
}

.poi-info .poi-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f4f4f4;
  border-radius: 12px;
  padding: 2px 10px 2px 4px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #555;
}

.poi-info .poi-name {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.poi-info .poi-address {
  color: #444;
  margin-bottom: 8px;
}

.poi-info .poi-row {
  border-top: 1px solid #eee;
  padding-top: 6px;
  margin-top: 6px;
}

.poi-info .poi-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.poi-info .poi-footer {
  margin-top: 10px;
  text-align: right;
}

.poi-info .poi-copy {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  cursor: pointer;
}

.poi-info .poi-copy:hover {
  background: #f0f0f0;
}

.poi-info .poi-copy.copied {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}