@charset "UTF-8";
html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/***************************************************************/
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #020F4B;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  padding: 4px 0px 8px 0px;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

p {
  font-size: 1em;
}

a {
  color: #082198;
  text-decoration: underline;
}

a:hover {
  color: #020F4B;
}

.bold {
  font-weight: 700;
}

.small-text {
  font-size: 14px;
}

.tiny-text {
  font-size: 12px;
}

.AE-name {
  font-variant-caps: small-caps;
  font-weight: 700;
}

/* COLORS */
/* GRADIENT */
/* BACKGROUND COLORS */
/* TEXT COLORS */
/* MESSAGE COLORS */
/******************************************/
/* MEDIA QUERIES */
/* Mixin definition */
.btn {
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  margin: 8px 0;
  padding: 4px 12px;
  border: none;
  cursor: pointer;
  line-height: 1.5rem;
  min-height: 1.5rem;
  /* Button sizes */
  /* Button display */
  /* Specific */
  /* Button variation */
}
.btn.large {
  padding: 8px 16px;
}
.btn.fullwidth {
  width: 100%;
  justify-content: center;
  /* Tablette & Desktop display */
}
@media screen and (min-width: 393px) {
  .btn.fullwidth {
    max-width: 360px;
  }
}
.btn.non-cliquable {
  pointer-events: none;
}
.btn.disabled {
  color: #929292;
  background-color: #E5E5E5;
  border: none;
  pointer-events: none;
}
.btn--filled.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #1E5CFB 0%, #4F3BF7 100%);
}
.btn--filled.primary:hover {
  background: none;
  background-color: #082198;
}
.btn--filled.secondary {
  color: #020F4B;
  background-color: #59D9C0;
}
.btn--filled.secondary:hover {
  background-color: rgb(130.5, 226.5, 207.75);
}
.btn--filled.warning {
  color: #ffffff;
  background-color: #B65E0E;
}
.btn--filled.warning:hover {
  background-color: #F07F17;
}
.btn--outlined {
  color: #031466;
  border: 2px solid #031466;
  background-color: transparent;
}
.btn--outlined:hover {
  background-color: #F3F5F8;
}

.btn__text {
  display: none;
  /* Desktop display */
}
@media screen and (min-width: 1024px) {
  .btn__text {
    display: block;
  }
}

/* BLOC */
.input {
  display: block;
  margin: 0.7rem 0rem;
}
.input.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ELEMENTS */
.input__label {
  display: block;
  margin-bottom: 4px;
  color: #031466;
}

.input__description {
  color: #939393;
}

.input__input {
  border-radius: 0.5rem;
  display: block;
  margin-bottom: 8px;
  color: #031466;
  background-color: #EAECF0;
  border: none;
  margin: 4px 0px;
  padding: 8px 16px;
  width: 100%;
  min-height: 2.5rem;
  /* Tablette & Desktop display */
}
.input__input.searchInput {
  margin-bottom: 1rem;
  align-self: end;
}
@media screen and (min-width: 481px) {
  .input__input {
    max-width: 360px;
  }
}
.input__input:disabled {
  color: #929292;
  background-color: #E5E5E5;
}

/* MODIFICATOR */
.input__input--quantity_selection {
  display: block;
  margin-bottom: 8px;
  color: #031466;
  background-color: #EAECF0;
  border: none;
  margin: 4px 0px;
  padding: 8px 16px;
  width: auto;
  max-width: 150px;
  height: 50px;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 600;
  border-radius: 1rem;
}

.searchInputContainer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 107%;
  /* Tablette & Desktop display */
}
@media screen and (min-width: 481px) {
  .searchInputContainer {
    width: 100%;
  }
}
.searchInputContainer::after {
  content: url(".././public/img/svg/SearchSharp.svg");
  position: relative;
  top: -2px;
  right: 32px;
}

.drop-zone {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  background-color: #EAECF0;
  border: 1px dashed #031466;
  height: 8rem;
}
.drop-zone.drag {
  background-color: #031466;
}

.combobox .dropdown-content {
  display: none;
  list-style: none;
  font-style: italic;
  font-size: small;
}
.combobox .dropdown-content.active {
  display: block;
}

.tag {
  display: inline-block;
  border-radius: 20px;
  color: #ffffff;
  background-color: #929292;
  padding: 2px 10px;
  border: none;
}
.tag--green {
  background-color: #03A86D;
}
.tag--blue {
  background-color: #336CFF;
}
.tag--orange {
  background-color: #F07F17;
}
.tag--red {
  background-color: #FF2C2C;
}
.tag--yellow {
  background-color: #E6B024;
}
.tag--grey {
  background-color: #929292;
}

/* BLOC */
.card {
  color: #020F4B;
  background-color: #ffffff;
  border-radius: 0.5rem;
  flex: 0 0 100%; /* each card is full width */
  box-sizing: border-box;
  min-height: 140px;
  /* Tablette display */
  /* Desktop display */
}
@media screen and (min-width: 481px) {
  .card {
    flex: 0 0 calc(50% - 16px); /* Row of 2 */
  }
}
@media screen and (min-width: 1024px) {
  .card {
    flex: 0 0 calc(33.33% - 16px); /* Row of 3 */
  }
}

/* ELEMENT */
.card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 1rem;
}

/* ELEMENT */
.card__img {
  border-radius: 0.5rem 0.5rem 0px 0px;
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ELEMENT */
.card__content {
  padding: 0 1rem;
}

/* ELEMENT */
.card__bottom {
  display: flex;
  justify-content: end;
  padding: 0 1rem;
  gap: 0.5rem;
}

/* MODIFICATEUR */
.card__AE-card {
  border-radius: 0.5rem;
  color: #020F4B;
  border: 2px solid #031466;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
}

/* BLOC NAVBAR */
/* ELEMENT */
.navbar__logo img {
  width: 160px;
}

/* ELEMENT */
.navbar__label .navbar__menu {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 100;
  width: 50px;
  height: 50px;
  background: #59D9C0;
  border-radius: 50% 0% 0% 50%;
  transition: 0.5s ease-in-out;
  box-shadow: 0 0 0 0 #59D9C0, 0 0 0 0 #59D9C0;
  cursor: pointer;
}
.navbar__label .navbar__hamburger {
  position: absolute;
  top: 24px;
  left: 18px;
  width: 20px;
  height: 2px;
  background: #031466;
  display: block;
  transform-origin: center;
  transition: 0.5s ease-in-out;
}
.navbar__label .navbar__hamburger:after, .navbar__label .navbar__hamburger:before {
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #031466;
}
.navbar__label .navbar__hamburger:before {
  top: -10px;
}
.navbar__label .navbar__hamburger:after {
  bottom: -10px;
}
.navbar__label .navbar__input {
  display: none;
}
.navbar__label .navbar__input:checked + .navbar__menu {
  box-shadow: 0 0 0 100vw #59D9C0, 0 0 0 100vh #59D9C0;
  border-radius: 0;
}
.navbar__label .navbar__input:checked + .navbar__menu .navbar__hamburger {
  transform: rotate(45deg);
}
.navbar__label .navbar__input:checked + .navbar__menu .navbar__hamburger:after {
  transform: rotate(90deg);
  bottom: 0;
}
.navbar__label .navbar__input:checked + .navbar__menu .navbar__hamburger:before {
  transform: rotate(90deg);
  top: 0;
}
.navbar__label .navbar__input:checked + .navbar__menu + .navbar__ul {
  opacity: 1;
  display: block;
}
.navbar__label .navbar__ul {
  z-index: 200;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  display: none;
  transition: 0.25s 0s ease-in-out;
}
.navbar__label .navbar__ul .navbar__li {
  list-style: none;
}
.navbar__label .navbar__ul .navbar__li .navbar__link {
  margin-bottom: 1em;
  display: block;
  color: #031466;
  text-decoration: none;
}

/* Style the tab component */
.tabs {
  color: #031466;
  display: flex;
}

.tabs__tablink {
  background-color: #ffffff;
  color: #939393;
  border: none;
  display: flex; /* Enable Flexbox */
  align-items: center; /* Vertically center the elements*/
  justify-content: center; /* Horizontally center the elements */
  padding: 8px 16px;
  opacity: 75%;
}
.tabs__tablink:hover {
  background-color: #F3F5F8;
  opacity: 100%;
}
.tabs__tablink.active {
  background-color: #F3F5F8;
  color: #031466;
  opacity: 100%;
}

.tabs__tablink svg {
  margin-right: 8px; /* Add right spacing to the SVG */
  opacity: 75%;
}

/* Style the tab content (hidden by default) */
.tab-content {
  display: block;
}
.tab-content.hidden {
  display: none;
}

/* Style the tab component */
.switchViewBlock {
  display: flex;
  justify-content: space-between;
}

.switchView {
  border-radius: 0.5rem;
  background-color: #ffffff;
  display: flex;
  border: 2px solid #59D9C0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.switchView__button {
  border-radius: 0.5rem;
  background-color: #F3F5F8;
  border: none;
}
.switchView__button:hover {
  color: aqua;
}
.switchView__button.active {
  background-color: #59D9C0;
}

/* Style the tab content (hidden by default) */
.switchView-content {
  display: block;
}
.switchView-content.hidden {
  display: none;
}

#snackbar {
  width: 250px;
  height: 80px;
  margin-left: -125px; /* Divisez la largeur par deux */
  background-color: #031466; /* Couleur de fond noir */
  color: #fff; /* Texte blanc */
  text-align: center; /* Texte centré */
  border-radius: 2px; /* Coins arrondis */
  padding: 16px; /* Espacement autour du texte */
  position: fixed;
  z-index: 100; /* Situé sur les autres éléments */
  left: 38%; /* Centré horizontalement */
  top: 55%; /* 55% du haut */
  /* Tablette & Desktop display */
}
@media screen and (min-width: 481px) {
  #snackbar {
    left: 50%; /* Centré horizontalement */
    bottom: 30px; /* 30px du bas */
  }
}
#snackbar.hidden {
  display: none;
}
#snackbar.show {
  display: block;
  color: #fff;
  /* Animation to make the snackbar appear */
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#snackbar.show.success {
  background-color: #088759;
}
#snackbar.show.error {
  background-color: #E12A2A;
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.messageBox {
  border-radius: 0.5rem;
  display: flex;
  background-color: #F3F5F8;
  border: 2px solid #031466;
  color: #031466;
  margin: 1rem 1rem;
  padding: 1rem 1rem;
}
.messageBox.warning {
  border: 2px solid #F07F17;
  color: #F07F17;
}
.messageBox.validation {
  border: 2px solid #03A86D;
  color: #03A86D;
}

.messageBox__icon {
  width: 3rem;
}

.empty_state {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.empty_state__img {
  width: 200px;
  opacity: 60%;
}

.specialBlock {
  display: flex;
  gap: 1rem;
  /* Desktop display */
}
@media screen and (min-width: 1024px) {
  .specialBlock {
    max-width: calc(33% - 1rem);
  }
}

.specialBlock__Button {
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  background: #031466;
  background: linear-gradient(135deg, #1E5CFB 0%, #4F3BF7 100%);
  padding: 1rem;
  width: 50%;
}
.specialBlock__Button:hover {
  background: none;
  background-color: #031466;
}

.specialBlock__Button__link {
  color: #ffffff;
  text-decoration: none;
}
.specialBlock__Button__link:hover {
  color: #F3F5F8;
}

/* BLOC */
.switch {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 40px;
  cursor: pointer;
  overflow: hidden;
}

/* ELEMENT */
.switch__input {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 0;
  height: 0;
}

.switch__input + .switch__span {
  border-radius: 0.5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #99b4df;
}

.switch__input:checked + .switch__span {
  background: #346abf;
}

.switch__input + .switch__span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 4px;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.switch__input:checked + .switch__span:before {
  left: 34px;
}

#map {
  height: 500px;
}

.custom-marker {
  background-image: url(".././public/img/mapscott/marker-icon.png"); /* link to custom marker */
  background-size: cover;
  width: 38px;
  height: 40px;
  cursor: pointer;
}

/* Style personnalisé pour la popup */
.mapboxgl-popup {
  max-width: 200px;
}

.mapboxgl-popup-content {
  text-align: center;
  font-family: "Arial", sans-serif;
  color: #333;
}

.mapboxgl-popup-content h3 {
  margin: 0;
  font-size: 16px;
  color: #031466;
}

.mapboxgl-popup-content p {
  margin: 0;
  font-size: 14px;
  color: #031466;
}

.mapboxgl-popup-tip {
  border-color: #031466 transparent transparent;
}

#lottie-animation {
  width: 300px; /* Ajustez la largeur */
  height: 300px; /* Ajustez la hauteur */
  position: absolute; /* Place l'animation au-dessus */
  top: 50%; /* Centre verticalement */
  left: 50%; /* Centre horizontalement */
  transform: translate(-50%, -50%); /* Centre la div exactement */
  z-index: 1000; /* Assurez-vous que l'animation est au-dessus des autres éléments */
}

.scopedMessage {
  border-radius: 0.5rem;
  border: 1px solid #59D9C0;
  background: #DEF7F2;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.site-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* vh = Viewport Height */
}

main {
  display: flex;
  flex-direction: column;
  flex: 1; /* Prevents content from growing and pushes the footer down */
  background-color: #F3F5F8;
}

/* BLOC CONTAINER */
.container {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  /* MODIFICATOR */
}
.container.full-height {
  flex: 1;
}
.container.primary-background {
  background-color: #031466;
}
.container.primary-background h1, .container.primary-background h2, .container.primary-background h3 {
  color: #ffffff;
}
.container.secondary-background {
  background-color: #9BE8D9;
}
.container.no-margin {
  margin: 0;
}
.container.padding-top {
  padding-top: 1rem;
}
.container--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container--reservation {
  flex: 1;
  background-color: #0F172B;
  background-image: url("../public/img/concert_people.webp");
  background-size: cover;
}

/* ELEMENT */
.container__title {
  display: flex;
  justify-content: space-between;
  height: 3rem;
}

/********************/
/* BLOC CARD */
.card_display {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
}

.header {
  background-color: #ffffff;
  border-bottom: 2px solid #F3F5F8;
  padding: 8px 16px;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  /* MODIFICATOR */
}
.header.header--light {
  justify-content: center;
}

.top_section {
  background-color: #031466;
  color: #ffffff;
  display: flex;
  justify-content: center;
}

.top_section__container {
  width: 100%;
  margin: 16px;
  display: flex;
  justify-content: space-between;
}

.top_section__left {
  width: 75%;
}

.top_section__left__title {
  font-size: 18px;
  font-weight: 500;
}

.top_section__right {
  width: 25%;
  display: flex;
  justify-content: end;
  align-items: center;
}

.top_section__img {
  max-width: 80px;
  max-height: 80px;
}

.topBar {
  width: 100%;
  display: flex;
  border-bottom: 2px solid #f5f4f5;
}

.topBar__backButton {
  background-color: #031466;
  height: 100%;
  width: 2.5rem;
  text-align: center;
}

.topBar__pageTitle {
  background-color: #F3F5F8;
  color: #031466;
  padding: 0 1rem;
  font-size: 1rem;
  width: 100%;
}

.topBar__tabs {
  font: "Roboto", sans-serif;
  font-size: 14px;
}

.topPage {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.topPage__publicationStatus {
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  background-color: #F3F5F8;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
}

.topPage__info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.topPage__count {
  font-size: 12px;
  color: #929292;
}

.topPage__maplink {
  font-size: 12px;
  color: #3DA893;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topPage__buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* BLOCK */
.middle_block {
  border-radius: 0.5rem;
  background-color: #F3F5F8;
  width: 100%;
  padding: 2rem 2rem;
  display: flex;
  margin: auto;
  flex-direction: column;
  /* Tablette & Desktop display */
}
.middle_block.on_top_section {
  margin-top: -1rem;
  /* Tablette & Desktop display */
}
@media screen and (min-width: 481px) {
  .middle_block.on_top_section {
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
    margin-top: -1.5rem;
  }
}
@media screen and (min-width: 481px) {
  .middle_block {
    max-width: 400px;
  }
}

/* ELEMENTS */
.middle_block__title {
  margin-bottom: 1rem;
}

.middle_block__span {
  font-size: 12px;
  color: #929292;
}

.middle_block__toogleSwitch {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.middle_block__toogleSwitch__state {
  font-size: 14px;
  line-height: 0.8rem;
  padding: 0;
}

.middle_block__toogleSwitch__info {
  font-size: 12px;
}
.middle_block__toogleSwitch__info.brouillon {
  color: #F07F17;
}
.middle_block__toogleSwitch__info.public {
  color: #336CFF;
}

.middle_block__form {
  display: flex;
  flex-direction: column;
}

.middle_block__form__input {
  width: 100%;
}

/* MODIFICATOR */
.middle_block--reservation {
  border-radius: 0.5rem;
  width: 100%;
  display: flex;
  margin: auto;
  flex-direction: column;
  margin-top: 2rem;
  /* Tablette & Desktop display */
}
@media screen and (min-width: 481px) {
  .middle_block--reservation {
    max-width: 400px;
  }
}

/* ELEMENTS */
.middle_block__title--reservation {
  background-color: #F3F5F8;
  padding: 0 2rem;
  text-align: center;
}

.middle_block__artist--reservation {
  background-color: #F3F5F8;
  margin: 0px;
  padding: 0 2rem;
}

.middle_block__article--reservation {
  background-color: #F3F5F8;
  padding: 0.5rem 2rem;
}

.middle_block__form--reservation {
  display: flex;
  flex-direction: column;
  background-color: #F3F5F8;
  padding: 0 2rem;
}

footer {
  background-color: #0F172B;
  color: #ffffff;
  padding: 0px 16px;
  display: flex;
  justify-content: space-between;
  /* Tablette & Desktop display */
}
@media screen and (min-width: 481px) {
  footer {
    padding: 0px 32px;
  }
}

footer a {
  color: #ffffff;
}
footer a:hover {
  color: #59D9C0;
}

.container__subscription {
  min-width: 1200px;
  margin: 3rem auto;
}

.subscription-Cards {
  text-align: center;
  margin-top: 1rem;
  justify-content: space-between;
}

.subscription-Card {
  padding: 3rem 3rem;
  text-align: center;
}
.subscription-Card__top {
  height: 230px;
  align-content: end;
}
.subscription-Card__span {
  background: #000000;
  color: #ffffff;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}
.subscription-Card--freemium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 130px;
  padding: 0 3rem;
}
.subscription-Card--pushed {
  border: 2px solid #000000;
}

.subscription-Card__top {
  height: 220px;
  align-content: end;
}

.subscription-arguments {
  list-style: none; /* Masque les puces */
  padding: 1rem 0; /* Enlève l'indentation */
  margin: 0 1rem;
}

.subscription-argument {
  list-style-type: none;
  display: flex;
  align-items: center;
}

.subscription-argument > p {
  text-align: justify;
  padding: 0 1rem;
  margin: 0;
}

.subscribe-btn {
  margin: auto;
}/*# sourceMappingURL=main.css.map */