@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}

body {
  background-color: #1B0448;
}
body *:not(.text-blue) {
  color: white;
}
body .text-blue p, body p.text-blue, body .text-blue a, body a.text-blue {
  color: #1B0448;
}
body .bold {
  font-weight: 700;
}
body p, body input, body label, body a, body ul, body li, body h3 {
  font-family: "Rubik";
}
body p, body li {
  font-size: 1em;
  line-height: 1.7em;
}
body button, body .btn {
  z-index: 1;
  font-size: 1.1em;
  background: transparent;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  transition: all 0.3s ease;
}
body button.classic-btn, body .btn.classic-btn {
  padding: 20px 30px;
  border-radius: 30px;
}
body button.round-btn, body .btn.round-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
}
body button.actif, body .btn.actif {
  cursor: pointer;
}
body button.actif.btn-blue, body .btn.actif.btn-blue {
  border: solid 2px #1B0448;
  color: #1B0448;
}
body button.actif.btn-blue i, body .btn.actif.btn-blue i {
  color: #1B0448;
}
body button.actif.btn-white, body .btn.actif.btn-white {
  border: solid 2px white;
  color: white;
}
body button.actif.btn-white i, body .btn.actif.btn-white i {
  color: white;
}
body button.actif:hover, body .btn.actif:hover {
  border-color: rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
}
body button.actif::before, body .btn.actif::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 0;
  height: 100%;
  background: radial-gradient(103.08% 197.33% at 2.64% 15.67%, #5416AF 17.56%, #7554E2 57.52%, #73CADB 90.69%);
  z-index: -1;
  transition: all 0.5s ease;
}
body button.actif:hover::before, body .btn.actif:hover::before {
  left: 0;
  width: 100%;
}
body button.inactif, body .btn.inactif {
  border: solid 2px rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.3);
}
body button.inactif i, body .btn.inactif i {
  color: rgba(255, 255, 255, 0.3);
}
body button.selected, body .btn.selected {
  color: white;
  background-color: white;
  border: none;
}
body button.neon, body .btn.neon {
  border: solid 2px white;
  color: white;
}
body button.neon:hover, body .btn.neon:hover {
  box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 0.8156862745) inset, 0px 0px 8px 2px rgba(255, 255, 255, 0.8156862745);
}
body h2, body h1 {
  font-family: "Inter";
  color: white;
  text-transform: uppercase;
  font-weight: 800;
}
body h1 {
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: white;
}
body h1 span {
  font-size: 4.2rem;
}
body h2 {
  font-size: 2.5rem;
}
body h3 {
  text-transform: uppercase;
  font-size: 1.4em;
}
body #horaires {
  scroll-padding: 200px;
}
body form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  color: white;
}
body form label {
  font-weight: 700;
  font-size: 1.1em;
}
body form input {
  padding: 15px 20px;
  border-radius: 30px;
  border: solid 2px white;
  color: white;
  background-color: transparent;
  font-size: 0.95em;
  transition: all 0.2s ease-in-out;
}
body form input:focus-visible {
  outline: none;
}
body form input:focus-within {
  box-shadow: 0px 0px 10px 2px rgba(163, 255, 214, 0.2588235294) inset, 0px 0px 10px 2px rgba(163, 255, 214, 0.2588235294);
}

.bg-custom {
  background-color: #EC00F0 !important;
}

section:not(.full-width) {
  margin: 160px 7%;
}

.max-width {
  max-width: 940px;
}

/* NAVBAR */
nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 20px 7%;
  text-transform: uppercase;
}
nav img {
  height: 60px;
}
nav .links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
nav #dropdown {
  position: relative;
  height: fit-content;
}
nav #dropdown button {
  background-color: #EC00F0;
  border: none;
  text-transform: uppercase;
  font-size: 1em;
  cursor: pointer;
}
nav #dropdown button i {
  margin-left: 5px;
}
nav #dropdown #dropdown-links {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 5px;
  background-color: #EC00F0;
  border-radius: 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
nav #dropdown #dropdown-links a {
  padding: 10px 30px;
  font-weight: 500;
}

/* FOOTER */
footer {
  background: #1C1678;
  color: #f4f4f4;
  font-family: "Inter";
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .top-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 80%;
}
footer .top-container h1 {
  font-family: "Rubik";
}
footer .top-container .bowling-base {
  width: 50%;
}
footer .top-container .bowling-base p {
  font-size: 0.9em;
}
footer .top-container .bowling-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
footer .top-container .bowling-links .footer-title {
  font-family: "Rubik";
}
footer .top-container .bowling-links a {
  color: #f4f4f4;
  text-decoration: none;
  opacity: 0.8;
  transition: ease-in-out 0.2s;
}
footer .top-container .bowling-links a:hover {
  opacity: 1;
  transition: ease-in-out 0.2s;
}
footer .middle-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .middle-container .footer-contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
footer .middle-container .footer-contact img {
  padding: 0 10px;
}
footer .middle-container .footer-contact a {
  color: #f4f4f4;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
  transition: ease-in-out 0.2s;
}
footer .middle-container .footer-contact a:hover {
  opacity: 1;
  transition: ease-in-out 0.2s;
}
footer .bottom-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: solid 2px #665FCC;
  width: 80%;
}
footer .bottom-container p {
  opacity: 0.7;
  font-size: 0.9em;
}
footer .bottom-container img {
  width: 30px;
  opacity: 0.7;
  transition: ease-in-out 0.2s;
}
footer .bottom-container img:hover {
  opacity: 1;
  transition: ease-in-out 0.2s;
}

body header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin: 100px 7%;
}
body header div.text-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  max-width: 500px;
}
body main #inner-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 80px;
  background-color: white;
  border-radius: 80px;
  padding: 35px 100px;
  width: fit-content;
  margin: 0 auto 180px;
  color: #1B0448;
}
body main #inner-nav div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
}
body main #inner-nav div a {
  font-weight: 500;
}
body main #inner-nav div a svg {
  height: 40px;
}
body main #inner-nav div a svg path {
  fill: #1B0448;
}
body main #inner-nav hr {
  height: 60px;
  width: 1px;
  background-color: #1B0448;
  border: 2px solid #1B0448;
  border-radius: 80px;
}
body main section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body main section h2:not(.infos h2, #experiences h2, #map h2) {
  margin-bottom: 80px;
}
body main section.infos {
  position: relative;
  padding: 70px;
  width: 86%;
  border: 2px white solid;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
}
body main section.infos h2 {
  position: absolute;
  top: -25px;
  left: 40px;
  padding: 0 40px;
  background-color: #1B0448;
}
body main section.infos table {
  font-family: "Rubik";
  table-layout: fixed;
}
body main section.infos table .legend {
  font-size: 0.8em;
  font-weight: 400;
}
body main section.infos table thead th {
  text-align: center;
  padding-bottom: 25px;
}
body main section.infos table thead th:first-of-type {
  width: 300px;
}
body main section.infos table thead th:nth-of-type(2), body main section.infos table thead th:nth-of-type(3) {
  width: 200px;
}
body main section.infos table.horaires thead th:first-of-type {
  width: 100px;
}
body main section.infos table.horaires thead th:nth-of-type(2), body main section.infos table.horaires thead th:nth-of-type(3) {
  width: 220px;
}
body main section.infos table.horaires tbody td {
  padding: 5px 0;
}
body main section.infos table.tarifs thead th:first-of-type {
  width: 300px;
}
body main section.infos table.tarifs thead th:nth-of-type(2), body main section.infos table.tarifs thead th:nth-of-type(3) {
  width: 200px;
}
body main section.infos table.tarifs tbody td {
  padding: 10px 0;
}
body main section.infos table tbody tr th {
  text-align: left;
}
body main section.infos table tbody tr td {
  text-align: center;
}
body main section.infos table tbody tr td[colspan="3"] {
  text-align: left;
}
body main section.infos table tbody tr.special td,
body main section.infos table tbody tr.special th {
  padding: 30px 0 0 !important;
}
body main section.infos hr {
  margin: 10px auto;
  width: 70%;
  height: 1px;
  background-color: white;
  border: none;
}
body main section.infos div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
body main section#experiences h2 {
  margin-bottom: 30px;
}
body main section#experiences #exp-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4%;
  width: 100%;
  margin-top: 20px;
}
body main section#experiences #exp-container .card-exp-container {
  min-width: 300px;
  width: 100%;
  min-height: 340px;
  height: calc(340px + 2.4vw);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  margin-top: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 960px) {
  body main section#experiences #exp-container .card-exp-container {
    height: calc(340px + 2vw);
    width: 48%;
  }
}
@media screen and (min-width: 1240px) {
  body main section#experiences #exp-container .card-exp-container {
    width: 48%;
  }
}
body main section#experiences #exp-container .card-exp-container:hover {
  background-blend-mode: color-burn;
}
body main section#experiences #exp-container .card-exp-container .card-exp-blur {
  width: 100%;
  min-width: 400px;
  min-height: 340px;
  height: 340px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.25s ease-in-out;
}
@media screen and (min-width: 960px) {
  body main section#experiences #exp-container .card-exp-container .card-exp-blur {
    height: calc(340px + 2.4vw);
  }
}
body main section#experiences #exp-container .card-exp-container .card-exp-blur:hover {
  backdrop-filter: blur(3px);
}
body main section#experiences #exp-container .card-exp-container .card-exp-blur .card-exp-content {
  padding: 15px 35px;
  border-radius: 20px;
  width: 100%;
  height: fit-content;
  transition: all 0.25s ease-in-out;
}
body main section#experiences #exp-container .card-exp-container .card-exp-blur .card-exp-content .title {
  text-transform: uppercase;
  font-size: 1.5em;
}
body main section#experiences #exp-container .card-exp-container .card-exp-blur .card-exp-content .text-content {
  font-size: 0.9em;
  font-weight: 500;
  height: 0;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
body main section#experiences #exp-container .card-exp-container:hover .card-exp-blur .card-exp-content {
  padding: 25px 35px;
}
body main section#experiences #exp-container .card-exp-container:hover .card-exp-blur .card-exp-content .text-content {
  margin-top: 10px;
}
body main section#experiences #exp-container .card-exp-container#bar {
  background-image: url("../img/bar-0vBis6I.png");
}
body main section#experiences #exp-container .card-exp-container#bar:hover {
  background-image: url("../img/bar-0vBis6I.png"), linear-gradient(0deg, rgba(255, 70, 144, 0.15) 0%, rgba(255, 70, 144, 0.15) 100%);
}
body main section#experiences #exp-container .card-exp-container#bar:hover .card-exp-blur .card-exp-content {
  background-color: rgba(194, 5, 81, 0.9);
}
body main section#experiences #exp-container .card-exp-container#bar .card-exp-content {
  background-color: rgba(194, 5, 81, 0.8);
}
body main section#experiences #exp-container .card-exp-container#pistes {
  background-image: url("../img/pistes-1qsyVPT.png");
}
body main section#experiences #exp-container .card-exp-container#pistes:hover {
  background-image: url("../img/pistes-1qsyVPT.png"), linear-gradient(0deg, rgba(115, 202, 219, 0.3) 0%, rgba(115, 202, 219, 0.3) 100%);
}
body main section#experiences #exp-container .card-exp-container#pistes:hover .card-exp-blur .card-exp-content {
  background-color: rgba(4, 105, 160, 0.9);
}
body main section#experiences #exp-container .card-exp-container#pistes .card-exp-content {
  background-color: rgba(4, 105, 160, 0.8);
}
body main section#experiences #exp-container .card-exp-container#arcades {
  background-image: url("../img/arcades-4fN0LIa.png");
}
body main section#experiences #exp-container .card-exp-container#arcades:hover {
  background-image: url("../img/arcades-4fN0LIa.png"), linear-gradient(0deg, rgba(236, 0, 240, 0.25) 0%, rgba(236, 0, 240, 0.25) 100%);
}
body main section#experiences #exp-container .card-exp-container#arcades:hover .card-exp-blur .card-exp-content {
  background-color: rgba(201, 13, 204, 0.9);
}
body main section#experiences #exp-container .card-exp-container#arcades .card-exp-content {
  background-color: rgba(201, 13, 204, 0.8);
}
body main section#experiences #exp-container .card-exp-container#billards {
  background-image: url("../img/billards-vNPyi5h.png");
}
body main section#experiences #exp-container .card-exp-container#billards:hover {
  background-image: url("../img/billards-vNPyi5h.png"), linear-gradient(0deg, rgba(107, 222, 178, 0.25) 0%, rgba(107, 222, 178, 0.25) 100%);
}
body main section#experiences #exp-container .card-exp-container#billards:hover .card-exp-blur .card-exp-content {
  background-color: rgba(3, 130, 81, 0.9);
}
body main section#experiences #exp-container .card-exp-container#billards .card-exp-content {
  background-color: rgba(3, 130, 81, 0.8);
}
body main section#experiences #exp-container .card-exp-container#private-room {
  background-image: url("../img/private_room-epQpBNB.png");
}
body main section#experiences #exp-container .card-exp-container#private-room:hover {
  background-image: url("../img/private_room-epQpBNB.png"), linear-gradient(0deg, rgba(174, 87, 251, 0.2) 0%, rgba(174, 87, 251, 0.2) 100%);
}
body main section#experiences #exp-container .card-exp-container#private-room:hover .card-exp-blur .card-exp-content {
  background-color: rgba(140, 41, 227, 0.9);
}
body main section#experiences #exp-container .card-exp-container#private-room .card-exp-content {
  background-color: rgba(140, 41, 227, 0.8);
}
body main section#nouveautes #event-slider-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  gap: 50px;
}
body main section#nouveautes #event-slider-container .btn {
  margin-top: 350px;
}
body main section#nouveautes #event-slider-container #event-container {
  height: 540px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
body main section#nouveautes #event-slider-container #event-container .event-card {
  background-color: white;
  border-radius: 30px;
  max-height: 390px;
  width: 340px;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
body main section#nouveautes #event-slider-container #event-container .event-card:hover {
  max-height: 500px;
}
body main section#nouveautes #event-slider-container #event-container .event-card:hover .card-content p.description {
  max-height: 400px;
}
body main section#nouveautes #event-slider-container #event-container .event-card .card-img {
  overflow: hidden;
  height: 200px;
  border-radius: 30px 30px 0 0;
}
body main section#nouveautes #event-slider-container #event-container .event-card .card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
body main section#nouveautes #event-slider-container #event-container .event-card .card-content {
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
body main section#nouveautes #event-slider-container #event-container .event-card .card-content p {
  font-weight: 500;
}
body main section#nouveautes #event-slider-container #event-container .event-card .card-content p.description {
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
body main section#privatiser h2 {
  margin-bottom: 80px;
}
body main section#privatiser .private-container {
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 80px 100px;
  box-shadow: 0px 0px 10px 3px rgba(132, 235, 232, 0.5) inset, 0px 0px 10px 3px rgba(132, 235, 232, 0.5);
}
body main section#privatiser .private-container ul {
  padding-left: 15px;
}
body main section#privatiser .private-container ul li {
  list-style: disc;
}
body main section#privatiser .private-container .bold:last-of-type {
  margin-top: 20px;
}
body main section#map {
  margin: 180px 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 520px;
}
body main section#map div.side-content {
  text-align: left;
  background-color: white;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 100px;
  width: 50%;
}
body main section#map div.side-content h2 {
  color: #1B0448;
  width: 100%;
}
body main section#map div.side-content .content {
  width: 100%;
}
body main section#map div.side-content .content .title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  text-transform: uppercase;
  font-size: 1.2em;
  gap: 10px;
  margin-bottom: 5px;
}
body main .rules {
  font-size: 0.8em;
  max-width: 940px;
  margin: -140px auto 150px;
}
body main #bandeau-anniversaire {
  width: 100%;
  height: 350px;
  padding: 80px 7%;
  position: relative;
  background: radial-gradient(152.07% 247.49% at 90.08% 148.1%, #ec00f0 0%, #5516af 100%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
}
body main #bandeau-anniversaire p {
  font-size: 2.9em;
  font-weight: 700;
}
body main #bandeau-anniversaire a {
  align-self: flex-end;
}
body main #bandeau-anniversaire img {
  position: absolute;
}
body main #bandeau-anniversaire img#balloons {
  top: -151px;
  right: 7%;
  height: 290px;
}
body main #bandeau-anniversaire img#confettis {
  height: 180px;
  bottom: -80px;
  left: 7%;
}
body main .slider-container {
  background-color: white;
  border-radius: 30px;
  padding: 70px;
  width: 700px;
  height: 450px;
  position: relative;
  overflow: hidden;
  color: #1B0448;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
body main .slider-container .slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
body main .slider-container .slider .slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  min-width: 100%;
  display: none;
}
body main .slider-container .slider .slide.active {
  display: flex;
}
body main .slider-container .slider .slide .stars {
  margin-bottom: 15px;
}
body main .slider-container .slider .slide .stars i {
  color: #1B0448;
}
body main .slider-container .slider-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
body main .slider-container .slider-nav button i {
  font-size: 1.1em;
  color: #1B0448;
}
body main .slider-container .slider-nav button:hover i {
  color: white;
}
body main .slider-container .slider-nav .dots {
  display: flex;
  gap: 15px;
  margin: 0 30px;
  width: fit-content;
}
body main .slider-container .slider-nav .dots .dot {
  width: 15px;
  height: 15px;
  background-color: rgba(27, 4, 72, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
body main .slider-container .slider-nav .dots .dot.active {
  background-color: #1B0448;
  width: 45px;
  border-radius: 50px;
}

#event #curent-event .card-slider-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 100%;
  background: linear-gradient(to right, rgb(27, 4, 72), rgba(27, 4, 72, 0));
  pointer-events: none;
  z-index: 2;
}
#event .event-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 3% auto;
}
#event .event-layout .card-slider-wrapper {
  overflow: hidden;
  position: relative;
}
#event .event-layout .card-slider-wrapper .card-slider {
  display: flex;
  flex-direction: row;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out;
  gap: 25px;
}
#event .event-layout .card-slider-wrapper .card-slider .card {
  flex: 0 0 350px;
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
  text-align: center;
}
#event .event-layout .card-slider-wrapper .card-slider .card img {
  width: 100%;
  height: 35vh;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
#event .event-layout .card-slider-wrapper .card-slider .card .card-text {
  padding: 1% 5%;
}
#event .event-layout .card-slider-wrapper .card-slider .card .card-text h2 {
  margin: 16px 0 8px;
  font-size: 1.3em;
  color: #1B0448;
}
#event .event-layout .card-slider-wrapper .card-slider .card .card-text p {
  font-size: 14px;
  color: #1B0448;
}
#event .event-layout .event-text {
  flex: 0 0 25%;
  padding-left: 40px;
  margin-right: 10%;
  text-align: right;
}
#event h1 {
  font-family: "Rubik";
  font-size: 32px;
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
}
#event p {
  font-family: "Inter";
  color: #ddd;
  font-size: 16px;
  line-height: 1.5;
  margin: 10% 0;
}
#event .slider-buttons {
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
  font-family: "Inter";
  gap: 15px;
}
#event .slider-buttons button {
  background: white;
  border: none;
  font-size: 1.5rem;
  padding: 2px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
}
#event .slider-buttons button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
#event .slider-buttons #slider-indicator {
  color: white;
  font-size: 1rem;
}
#event .card-slider-wrapper.reverse .card-slider {
  flex-direction: row-reverse;
}
#event .event-divider {
  width: 80%;
  margin: 0 auto;
  height: 2px;
  background-color: #422182;
}
#event #upcoming-event {
  display: flex;
  flex-direction: row-reverse;
}
#event #upcoming-event .card-slider-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 100%;
  background: linear-gradient(to right, rgba(27, 4, 72, 0), rgb(27, 4, 72));
  pointer-events: none;
  z-index: 2;
}
#event #upcoming-event .card-slider-wrapper img {
  object-position: top;
}

/*# sourceMappingURL=app.css-W850-Aj.map */
