/* ------------------------------------------- */
/* ------------------------------------------- */
/* ------------------------------------------- */
/* ------------------------------------------- */
.backend a {
  pointer-events: none !important;
}

.bloc-previous-burgers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.bloc-previous-burgers .previous-burger {
  border-radius: 1rem;
  width: 300px;
  height: 425px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bloc-previous-burgers .previous-burger:hover .box-content {
  opacity: 1;
}
.bloc-previous-burgers .previous-burger .box-content {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.bloc-previous-burgers .previous-burger .box-content h2 {
  color: #ffe37b;
  margin: 0;
}

.button-loading {
  display: block;
  font-family: "KC Bubble Shack", serif;
  font-size: 30px;
  line-height: 1;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: calc(1rem + 30px);
  color: #ffe37b;
  background-color: #4F8C97;
  margin: 2rem auto;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  cursor: pointer;
}
.button-loading:hover {
  color: #ffd32f;
  background-color: #4a838d;
}
.button-loading:focus, .button-loading:focus-visible, .button-loading:active {
  outline: 0;
  outline-color: transparent;
}
