.st--listing-agenda.st-listing-cards .st-cards-wrapper .st-card-container {
  display: block;
}
.st--listing-agenda.st-listing-cards .st-cards-wrapper .st-card-container .st-card {
  padding-left: 0;
}
.st--listing-agenda.st-listing-cards .st-cards-wrapper .st-card-container .st-card .st-surtitre-cat {
  order: 3;
}
.st--listing-agenda.st-listing-cards .st-cards-wrapper .st-card-container .st-btn {
  width: 100%;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper {
  background-color: grey;
  border-radius: 0;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-close {
  background-color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
  padding: 10px;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container {
  gap: 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  grid-template-areas: "img caption" "content content";
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-image {
  width: 100px;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-caption {
  display: flex;
  flex-direction: column;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-caption .st-surtitre-cat {
  order: -1;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-caption .st-title-card {
  order: inherit;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle {
  border-top: solid 1px #dddddd;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  grid-area: content;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-content:not(:empty) {
  width: 100%;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-left {
  flex: 1;
  color: white;
  padding: 0 5px;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-left:not(:empty) .loading {
  height: 180px;
  position: relative;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-left:not(:empty) .loading-circle {
  position: absolute;
  width: 95px;
  height: 95px;
  border: 15px solid #00B1EB;
  border-top-color: transparent;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation: chargement 1s linear infinite;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-right {
  border-left: solid 1px #dddddd;
  width: calc(50% + 5px);
  text-align: center;
  padding: 0px 5px;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-right .st-amount {
  color: white;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-right .st-amount .st-frequentation {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  flex-shrink: 0;
  margin: 5px auto;
  line-height: 16px;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-right .st-amount .st-frequentation.orange {
  background-color: #ff470f;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-right .st-amount .st-frequentation.green {
  background-color: #40a040;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-right .st-amount .st-frequentation.grey, .st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-right .st-amount .st-frequentation.white {
  background-color: #9E9E9E;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-right .st-amount .st-frequentation.red {
  background-color: #FF0F0F;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-card-container .st-middle .st-right .st-amount .st-frequentation.black {
  background-color: #000000;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-content-wrapper .st-btn {
  width: 100%;
}
.st--listing-agenda.st-listing-cards .leaflet-popup-tip {
  background-color: grey;
}

@keyframes chargement {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}