@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.hidden {
  display: none;
}

/* 🚫 Hide initial redirect content - we only want our loading animation! */
#initialContent {
  display: none !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #152a6f 0%, #1f1f21 50%);
  color: #ffffff;
  overflow-x: hidden;
}

input {
  all: unset;
  /* Resets all user-agent styles */
  display: inline-block;
  /* Reset to ensure it still displays properly */
  color: #f5f5f5;
  /* Makes input text white */
}

button {
  all: unset;
  /* Resets all user-agent styles */
}

/* Top Banner */
.app-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1f1f21;
  /*padding: 20px;*/
  width: 100%;
}

.app-logo {
  width: 70px;
  height: auto;
  margin-left: 20px;
}

.app-description {
  flex: 1;
  font-size: 16px;
  padding-left: 15px;
}

.app-open-button {
  background: #1c3996;
  border: none;
  padding: 12px 30px;
  color: white;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin: 10px 20px;
}

.app-open-button:hover {
  background: #14143a;
}

/* Event Image and Overlay */
.event-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}

.event-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.event-image-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.event-overlay {
  position: absolute;
  bottom: -10px;
  left: 50%;
  /* Start from the center horizontally */
  transform: translateX(-50%);
  /* Shift back by half of its own width */
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  width: 800px;
  z-index: 10;
}

.event-age {
  background: linear-gradient(90deg, #1c3996 0%, #1f1f21 45%);
  padding: 5px 50px;
  border-radius: 40px;
  align-items: center;
  justify-items: center;
  justify-content: center;
  color: #f0f0f0;
  font-size: 14px;
  font-weight: 200;
  position: relative;
  z-index: 15;
}

.event-dresscode-container {
  background: linear-gradient(270deg, #1c3996 0%, #1f1f21 45%);
  padding: 5px 10px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 100;
  font-size: 14px;
  position: relative;
  z-index: 15;
}

.event-overlay button {
  background: #1f1f21;
  padding: 10px 20px;
  color: var(--a, #f0f0f0);
  font-weight: 200;
  display: inline-flex;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  align-items: flex-start;
  justify-content: center;
  max-width: 400px;
  position: relative;
  z-index: 15;
}

.event-dresscode p {
  font-weight: 10;
}

.event-dresscode-container img {
  width: auto;
  height: auto;
  margin-left: 15px;
}

/* Event Details Section */
.event-details-container {
  position: relative;
  margin-left: 50px;
}

.event-name {
  font-size: 45px;
  font-weight: 700;
  margin-left: 50px;
  margin-top: 30px;
  text-align: left;
  text-transform: uppercase;
}

.left-aligned-title-tickets-title {
  margin-left: 50px;
}

.combined-club-date {
  display: flex;
  justify-content: left;
  gap: 5px;
  font-size: 22px;
  margin-left: 50px;
  font-weight: 300;
}

.event-date {
  color: #c49721;
}

.event-club-name {
  color: #ffffff;
}

.event-music_type {
  font-weight: 300;
  font-family: "poppins", sans-serif;
}

.event-music_types {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 8px;
  align-items: center;
}

.music_type {
  background: rgba(31, 31, 33, 0.9);
  border: 1px solid rgba(240, 240, 240, 0.3);
  border-radius: 15px;
  padding: 4px 12px;
  font-size: 10px;
  color: #f0f0f0;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.music_type:hover {
  transform: translateY(-1px);
  background: rgba(28, 57, 150, 0.8);
  box-shadow: 0 4px 12px rgba(28, 57, 150, 0.3);
  border-color: rgba(196, 151, 33, 0.6);
}

.countdown-title {
  margin-top: 10px;
  font-size: 22px;
  font-weight: bold;
  text-align: left;
}

.table-title {
  margin-top: 10px;
  font-size: 30px;
  margin-left: 100px;
  margin-bottom: -10px;
  font-weight: bold;
  align-self: flex-start;
}

.event-lineup-title {
  margin-top: 10px;
  font-size: 42px;
  font-weight: bold;
  text-align: left;
}

/* Countdown Section */
.countdown-container {
  text-align: left;
  color: #c49721;
  background: none;
  border-radius: 20px;
  font-size: 22px;
  font-weight: 600;
  margin-left: 50px;
  margin-top: 10px;
}

.dj-lineup-section {
  text-align: center;
  color: #fff;
  margin: 15px 0;
}

.dj-profiles-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: 50px;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.dj-profile {
  width: 100px;
}

.dj-profile img {
  width: 100px;
  height: 100px;
  border-radius: 70px;
  object-fit: cover;
  margin-bottom: 10px;
}

.dj-name {
  font-size: 16px;
  color: #fff;
}

.bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.Onsale-Fewtickets-container {
  display: flex;
  flex-direction: row;
}

.Onsale-container {
  margin-left: 5px;
  display: inline-flex;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  background: -webkit-linear-gradient(90deg, #07b89c 0%, #171b68 80%);
  border-radius: 10px;
}

.Onsale text {
  font-size: 15px;
}

.Fewtickets-container {
  margin-left: 5px;
  display: inline-flex;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;

  background: -webkit-linear-gradient(90deg, #07b89c 0%, #171b68 80%);
  border-radius: 10px;
}

.Fewtickets text {
  color: "white";
  font-size: 15px;
}

.Ticket-countdown-container {
  display: flex;
  display: inline-flex;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  background: grey;
  border-radius: 10px;
  margin-right: 5px;
}

#entranceChoice {
  display: flex;
  /*justify-content: center;
    align-items: center;
    position: center;*/
  flex-direction: column;
  width: 100%;
}

#entranceChoiceContainer {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  flex-direction: column;
  width: 100%;
}

#entryoptions-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}

#Big-tables-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  width: 100%;
}

.EntryOptionContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 3px 0;
  align-items: flex-start;
  position: relative;
  justify-content: flex-start;
  padding-bottom: 10px;
}

.EntryOption {
  width: 80%;
  max-width: 600px;
  margin: 0px 100px 0px 100px;
  padding: 15px 15px 10px 15px;
  background: #fff;
  color: #363943;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.EntryOptionTicketType {
  font-weight: 600;
  text-transform: capitalize;
}

.EntryOptionDescription {
  font-size: 14px;
  padding-bottom: 10px;
  color: #979797;
}

.EntryOptionDescriptionandPrice {
  flex-direction: row;
  font-size: 18px;
  text-align: left;
  text-transform: lowercase;
  display: flex;
  padding-bottom: 0px;
  justify-content: space-between;
  width: 100%;
}

.EntryOptionPrice {
  font-weight: bold;
  color: #111;
}

.entryoption-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* Ensures all children are vertically aligned */
}

.entryoption-ticket-countdown-container {
  display: inline-flex;
  padding: 10px 20px;
  background: rgba(31, 31, 33, 0.1);
  border-radius: 3px;
  color: #111;
  font-size: 14px;
  justify-content: right;
  /* Horizontally center countdown text */
  align-items: flex-start;
  /* Vertically center countdown text */
}

/* New container to group the "On Sale" and "Few Tickets" boxes */
.entryoption-status-group {
  display: flex;
  flex-direction: row;
  gap: 5px;
  /* Consistent 5px space between the two boxes */
}

/* Center text inside these boxes */
.entryoption-onsale-container,
.entryoption-fewtickets-container {
  display: flex;
  /* Use flexbox to center text */
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */
  border-radius: 3px;
  font-size: 12px;
  font-weight: 100;
  text-align: center;
  /* Ensures text is centered within its line */
}

.entryoption-onsale-container {
  color: #fff;
  padding: 10px 30px;
  background: linear-gradient(90deg, #1c3996 0%, #1f1f21 30%);
}

.entryoption-fewtickets-container {
  color: #fff;
  padding: 10px 20px;
  background: linear-gradient(90deg, #b60000 0%, #1f1f21 30%);
}

#TablesOptionContainer {
  width: 100%;
  height: 125px;
  /*margin-left: 50px;*/
  display: flex;
  margin-top: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  position: center;
}

#TablesOption {
  width: 80%;
  max-width: 600px;
  background-color: white;
  color: #071f30;
  margin: 0px 100px 0px 100px;
  padding: 15px 15px 10px 15px;
  border: none;
  border-radius: 3px;
  height: 100%;
}

#TablesOptionTicketType {
  top: 20px;
  left: 20px;
  color: black;
  font-weight: bolder;
}

#TablesOptionTicketType text {
  font-size: 18px;
  color: black;
  font-weight: 600;
}

#TablesOptionDescriptionandPrice {
  flex-direction: row;
}

#TablesOptionDescription {
  left: 20px;
  font-size: 15px;
  color: #979797;
}

/* Tables Section */
.TablesOption-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: left;
  margin-top: 10px;
}

.TablesOption-Onsale-Fewtickets-container {
  display: flex;
  flex-direction: row;
  font-size: 12px;
}

.TablesOption-Onsale-container {
  background: linear-gradient(90deg, #1c3996 0%, #1f1f21 30%);
  padding: 10px 30px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.TablesOption-Onsale text {
  font-size: 12px;
  color: white;
  font-weight: 200;
}

#guestOptions h3 {
  font-size: 24px;
  color: #fff;
}

#guestOptions button {
  font-size: 24px;
  color: black;
}

#guestOptions button {
  padding: 10px 20px;
  /* Slightly larger padding for a bigger button appearance */
  margin-top: 15px;
  /* Ensures there's a bit of margin between buttons for better spacing */
}

#pattUserForm input,
#guest-gender {
  width: 80%;
  padding: 15px 5px 15px 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  /* Increases the font size for better readability */
  border-radius: 3px;
  /* Optional: Adds rounded corners */
  border: 0cap;
  /* Subtle border color */
  background-color: #1f1f21;
  color: white;
}

#guestForm {
  margin-left: 30%;
  position: center;
  justify-content: center;
  margin-top: 10px;
  max-width: 600px;
}

#guestForm input {
  width: 76.5%;
  padding: 15px 5px 15px 10px;
  font-size: 12px;
  border-radius: 3px;
  background-color: #1f1f21;
  color: white;
}

.name-container {
  display: flex;
  gap: 10px;
  width: 86%;
  margin: 10px 0px 10px 0px;
}

.name-container input {
  border: 0px;
}

#paymentForm {
  align-items: center;
  margin-left: 30%;
  position: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 40px;
  max-width: 600px;
}

#paymentForm h2 {
  width: 76.5%;
  font-size: 24px;
  color: #f5f5f5;
  margin-bottom: 20px;
  font-weight: 500;
}

#paymentForm input {
  width: 76.5%;
  padding: 15px 5px 15px 10px;
  font-size: 12px;
  border-radius: 3px;
  background-color: #f0f0f01a;
  border-width: 0cap;
  color: white;
}

#paymentForm #payment-element-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  margin: 10px 0px 0px 0px;
  font-size: 18px;
  border-radius: 3px;
  background-color: none;
}

#paymentForm #payment-element {
  width: 100%;
  margin: 10px 0;
  font-size: 18px;
  padding: 20px;
  justify-content: center;
  border-radius: 3px;
  background-color: #fff;
  color: #071f30;
}

#paymentForm button,
#guestForm button {
  width: 96%;
  padding: 15px 5px 15px 10px;
  font-size: 12px;
  border-radius: 3px;
  border-width: 0cap;
  background-color: #f0f0f01a;
  text-align: center;
  background: linear-gradient(90deg, #c49721 0%, #f0f0f00e 40%);
  transition: background-color 0.3s, transform 0.2s;
  color: #f0f0f0;
  /*color: #979797;*/
}

#pattUserForm input:focus,
#guestForm input:focus {
  outline: 2px solid #71f3;
  border-color: #71f3;
}

#paymentForm input:focus {
  outline: 2px solid #71f3;
  border-color: #71f3;
}

#pattUserForm button,
#EntranceOptions button,
#guestOptions button {
  font-size: 18px;
  /* Increased font size */
  padding: 20px 40px;
  /* Increased padding for a bigger button */
  /* Ensure there's a bit of margin for spacing */
  cursor: pointer;
  /* Optional: Ensures the cursor changes to a pointer on hover */
  border-radius: 8px;
  /* Optional: Adds a bit of border-radius for rounded corners */
  border: 2px solid #ffffff;
  /* Optional: Adds a solid border to make the button stand out */
  background-color: white;
  /* Optional: Adjust the background color if needed */
  color: black;
  /* Adjust text color for better contrast */
  transition: background-color 0.3s, transform 0.2s;
  /* Smooth background color change on hover and slight transform */
}

.back-btn {
  font-size: 18px;
  padding: 20px 40px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid #ffffff;
  background-color: #f2f2f2;
  color: #000;
  transition: background-color 0.3s, transform 0.2s;
}

.back-btn:hover {
  background-color: #e6e6e6;
  transform: scale(1.05);
}

#pattUserForm button:hover,
#guestForm button:hover,
#paymentForm button:hover,
#entranceChoice button:hover,
#EntranceOptions button:hover,
#guestOptions button:hover {
  transform: scale(1.05);
}

#paymentForm .submit-btn #guestForm .submit-btn {
  font-size: 18px;
  font-weight: 300;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 3px;
  border: 0px solid #ffffff;
  background: linear-gradient(90deg, #1c3996 0%, #f0f0f00e 30%);
  color: white;
  transition: background-color 0.3s, transform 0.2s;
}

#paymentForm .submit-btn:hover #guestForm .submit-btn:hover {
  background-color: black;
  transform: scale(1.05);
}

/* PROFESSIONAL LOADING OVERLAY */
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #152a6f 0%, #1f1f21 50%, #0d1b3f 100%);
  backdrop-filter: blur(10px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#overlay.show {
  opacity: 1;
}

/* SPECTACULAR LOADING INDICATORS */
#loadingIndicator,
#guestloadingIndicator,
#pattuserloadingIndicator,
#initialLoadingIndicator {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  text-align: center;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#loadingIndicator.show,
#guestloadingIndicator.show,
#pattuserloadingIndicator.show,
#initialLoadingIndicator.show {
  opacity: 1;
}

/* MAIN LOADING CONTAINER */
.patt-loading-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(31, 31, 33, 0.95);
  border-radius: 20px;
  border: 1px solid rgba(196, 151, 33, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(28, 57, 150, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  min-width: 300px;
  max-width: 400px;
  animation: loadingContainerPulse 2s ease-in-out infinite alternate;
}

@keyframes loadingContainerPulse {
  0% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(28, 57, 150, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(28, 57, 150, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

/* SPECTACULAR SPINNING LOGO */
.patt-loading-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  position: relative;
  animation: logoFloat 3s ease-in-out infinite;
}

.patt-loading-logo::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(28, 57, 150, 0.8),
    rgba(196, 151, 33, 0.8),
    transparent
  );
  animation: logoSpin 2s linear infinite;
  z-index: -1;
}

.patt-loading-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(31, 31, 33, 0.9);
  padding: 15px;
  border: 2px solid rgba(196, 151, 33, 0.5);
  box-shadow: 0 0 30px rgba(28, 57, 150, 0.3);
}

@keyframes logoSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ANIMATED PROGRESS RINGS */
.patt-loading-rings {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
}

.patt-loading-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: ringRotate 2s linear infinite;
}

.patt-loading-ring:nth-child(1) {
  width: 120px;
  height: 120px;
  border-top: 2px solid rgba(28, 57, 150, 0.8);
  border-right: 2px solid rgba(28, 57, 150, 0.4);
  animation-duration: 2s;
}

.patt-loading-ring:nth-child(2) {
  width: 90px;
  height: 90px;
  top: 15px;
  left: 15px;
  border-top: 2px solid rgba(196, 151, 33, 0.8);
  border-left: 2px solid rgba(196, 151, 33, 0.4);
  animation-duration: 1.5s;
  animation-direction: reverse;
}

.patt-loading-ring:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 30px;
  left: 30px;
  border-top: 2px solid rgba(240, 240, 240, 0.6);
  border-bottom: 2px solid rgba(240, 240, 240, 0.3);
  animation-duration: 1s;
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* LOADING TEXT WITH TYPEWRITER EFFECT */
.patt-loading-text {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(28, 57, 150, 0.3);
}

.patt-loading-subtext {
  font-size: 14px;
  font-weight: 300;
  color: rgba(196, 151, 33, 0.9);
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ANIMATED PROGRESS BAR */
.patt-loading-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}

.patt-loading-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(28, 57, 150, 0.8) 0%,
    rgba(196, 151, 33, 0.9) 50%,
    rgba(28, 57, 150, 0.8) 100%
  );
  border-radius: 2px;
  animation: progressFlow 2s ease-in-out infinite;
  position: relative;
}

.patt-loading-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  animation: progressShine 1.5s ease-in-out infinite;
}

@keyframes progressFlow {
  0% {
    width: 20%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 20%;
  }
}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* FLOATING PARTICLES */
.patt-loading-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 20px;
}

.patt-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(196, 151, 33, 0.6);
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}

.patt-particle:nth-child(odd) {
  background: rgba(28, 57, 150, 0.6);
  animation-duration: 3s;
}

.patt-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.patt-particle:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: 0.5s;
}
.patt-particle:nth-child(3) {
  top: 30%;
  left: 80%;
  animation-delay: 1s;
}
.patt-particle:nth-child(4) {
  top: 80%;
  left: 70%;
  animation-delay: 1.5s;
}
.patt-particle:nth-child(5) {
  top: 10%;
  left: 60%;
  animation-delay: 2s;
}
.patt-particle:nth-child(6) {
  top: 70%;
  left: 90%;
  animation-delay: 2.5s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) scale(0.8);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.9;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .patt-loading-container {
    padding: 30px 20px;
    min-width: 280px;
    max-width: 320px;
    margin: 0 20px;
  }

  .patt-loading-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .patt-loading-rings {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }

  .patt-loading-ring:nth-child(1) {
    width: 90px;
    height: 90px;
  }

  .patt-loading-ring:nth-child(2) {
    width: 65px;
    height: 65px;
    top: 12.5px;
    left: 12.5px;
  }

  .patt-loading-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 25px;
    left: 25px;
  }

  .patt-loading-text {
    font-size: 16px;
  }

  .patt-loading-subtext {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .patt-loading-container {
    padding: 25px 15px;
    min-width: 260px;
    max-width: 300px;
  }

  .patt-loading-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .patt-loading-rings {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .patt-loading-ring:nth-child(1) {
    width: 70px;
    height: 70px;
  }

  .patt-loading-ring:nth-child(2) {
    width: 50px;
    height: 50px;
    top: 10px;
    left: 10px;
  }

  .patt-loading-ring:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 20px;
    left: 20px;
  }

  .patt-loading-text {
    font-size: 14px;
  }

  .patt-loading-subtext {
    font-size: 11px;
  }
}

.gradient-separator {
  width: 100%;
  /* Take the full width of the screen */
  height: 2px;
  /* Height of the separator line */
  background: linear-gradient(90deg, #1c3996 0%, #f0f0f0 50%, #c49721 100%);
}

.footer {
  margin-top: 2%;
  color: #fff;
  background-color: none;
  padding: 20px;
  text-align: left;
  align-items: flex-start;
  font-family: "Dosis", sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.footer-top p {
  margin-bottom: 20px;
  margin-left: 50px;
  /* Spacing between the texts */
}

.footer-top1 {
  display: flex;
  /* Make the containers align horizontally */
  justify-content: space-between;
  margin-right: 50px;
}

.footer-top1 p {
  margin: 0;
  /* Reset margins on the paragraphs */
}

.footer-top2 {
  margin-right: 30%;
  margin-left: 50px;
  /* Spacing between the texts */
}

.footer-top2 p {
  margin-bottom: 10px;
  /* Spacing between the texts */
}

.footer-top3 {
  width: 70px;
}

.footer-top3 p {
  margin-bottom: 10px;
  /* Spacing between the texts */
}

.footer-top4 p {
  margin: 0;
  /* Reset margins on the paragraphs */
}

.footer-top4 {
  display: flex;
  justify-content: space-between;
  margin-right: 50px;
  /* Spacing between the texts */
}

.footer-top5 p {
  margin: 0;
  /* Reset margins on the paragraphs */
}

.footer-top5 {
  margin-bottom: 10px;
  margin-left: 50px;
  /* Spacing between the texts */
}

.footer-top6 p {
  margin: 0;
  /* Reset margins on the paragraphs */
}

.footer-top6 {
  margin-bottom: 10px;
  margin-left: 50px;
  margin-right: 10px;
  justify-content: flex-end;
  /* Align flex items to the right */
  text-align: right;

  /* Spacing between the texts */
}

.footer-top7 p {
  margin: 0;
  /* Reset margins on the paragraphs */
}

.footer-top7 {
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-flex;
  flex-direction: row;
  /* Spacing between the texts */
}

.footer-top8 p {
  margin: 0;
  /* Reset margins on the paragraphs */
}

.footer-top8 {
  margin-bottom: 10px;
  display: inline-flex;
  /* Spacing between the texts */
}

.footer-top9 {
  margin-left: 50px;
}

.footer-top9 p {
  margin: 0;
  /* Reset margins on the paragraphs */
  margin-bottom: 10px;
}

.footer-buttons a {
  width: 90px;
  height: 25px;
  padding: 10px 10px;
  display: inline-flex;
  align-items: center;
  /* Vertically align the button text */
  justify-content: center;
  /* Horizontally center the button text */
  border-radius: 3px;
  text-decoration: none;
  color: white;
  background: rgba(240, 240, 240, 0.1);
  transition: background-color 0.3s;
  font-size: 8px;
  font-weight: bold;
  /* Spacing between the texts */
}

/* Make the container for the buttons a flex row to align them side by side */
.footer-buttons {
  display: flex;
  /* Use flex to arrange buttons in a row */
  gap: 10px;
  /* Spacing between the buttons */
  padding: 10px 10px 0px 0px;
  display: inline-flex;
  flex-wrap: wrap;
  /* Allow wrapping if there isn't enough space on smaller screens */
}

.footer-buttons a:hover {
  background-color: rgba(240, 240, 240, 0.2);
  color: white;
}

.footer-buttons a i {
  margin-right: 5px;
  /* Space between icon and text */
  font-size: 15px;
  /* Adjust icon size */
  align-items: left;
  /* Vertically align the button text */
  justify-content: center;
  /* Horizontally center the button text */
}

.footer-buttons1 a {
  width: 90px;
  height: 25px;
  padding: 10px 10px;
  display: inline-flex;
  align-items: center;
  /* Vertically align the button text */
  justify-content: center;
  /* Horizontally center the button text */
  border-radius: 3px;
  text-decoration: none;
  color: white;
  background: rgba(240, 240, 240, 0.1);
  transition: background-color 0.3s;
  font-size: 8px;
  font-weight: bold;
  /* Spacing between the texts */
}

/* Make the container for the buttons a flex row to align them side by side */
.footer-buttons1 {
  display: flex;
  /* Use flex to arrange buttons in a row */
  gap: 10px;
  /* Spacing between the buttons */
  padding: 10px 0px 0px 0px;
  flex-wrap: wrap;
  /* Allow wrapping if there isn't enough space on smaller screens */
}

.footer-buttons1 a:hover {
  background-color: rgba(240, 240, 240, 0.2);
  color: white;
}

.footer-buttons1 a i {
  margin-right: 5px;
  /* Space between icon and text */
  font-size: 15px;
  /* Adjust icon size */
  align-items: left;
  /* Vertically align the button text */
  justify-content: center;
  /* Horizontally center the button text */
}

.footer-buttons2 a {
  width: 10px;
  height: 10px;
  padding: 10px 10px;
  display: inline-flex;
  align-items: center;
  /* Vertically align the button text */
  justify-content: center;
  /* Horizontally center the button text */
  border-radius: 3px;
  text-decoration: none;
  color: white;
  background: none;
  transition: background-color 0.3s;
  font-size: 8px;
  font-weight: bold;
  /* Spacing between the texts */
}

/* Make the container for the buttons a flex row to align them side by side */
.footer-buttons2 {
  display: inline-flex;
  gap: 10px;
  /* Spacing between the buttons */
  flex-wrap: wrap;
  /* Allow wrapping if there isn't enough space on smaller screens */
}

.footer-buttons2 a:hover {
  background-color: rgba(240, 240, 240, 0.2);
  color: white;
}

.footer-buttons2 a i {
  margin-right: 5px;
  /* Space between icon and text */
  font-size: 15px;
  /* Adjust icon size */
  justify-content: center;
  /* Horizontally center the button text */
}

.lighter-text {
  font-weight: 350;
  /* Lighter font weight */
  color: #a3a5a8;
  margin-bottom: 10px;
  /* Lighter text color */
}

.lighter-text a {
  text-decoration: none;
  /* Remove underline from links */
  color: inherit;
  /* Inherit color from parent element */
  display: block;
  /* Ensure each link is on a new line */
}

/* Component 8 */

hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
  margin: 20px 0;
}

.footer-left {
  text-align: left;
  font-size: 8px;
  color: #a3a5a8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: center;
}

.footer-links {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  margin-left: 50px;
  list-style-type: none;
}

.footer-links a {
  color: #a3a5a8;
  font-size: 8px;
  text-decoration: none;
}

.footer-logo {
  max-width: 100px;
  margin-left: 50px;
  margin-bottom: 10px;
}

.text-under-footer-logo {
  font-size: 15px;
  color: #a3a5a8;
  margin-left: 50px;
  font-weight: 350;
  margin-bottom: 10px;
}

.footer-line {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  margin-left: 0.2%;
  margin-right: 0.1%;
  margin-top: 30px;
  margin-bottom: 10px;
  width: auto;
  height: 1px;
}

.left-aligned-title {
  text-align: left;
  /* Left-align specific titles */
  width: 100%;
  /* Ensure full container width */
  /*max-width: 1140px;*/
  /* or your specific max width */
  /* Center the container */
  padding-left: 50px;
  /* Adjust this to align with the event name */
}

.no-padding {
  padding-top: 0 !important;
}

.event_music_type_container {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  margin-left: 50px;
  margin-top: 5px;
}

.input-label {
  color: #ffffff;
  /* White color for the text */
  font-family: inherit;
  /* Use the same font as the input fields */
  font-size: 12px;
  /* Adjust as needed to match the input font size */
  display: block;
  /*max-width: 80px;*/
  margin-bottom: 5px;
  /* Space between label and input */
}

.firstname-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: column;
}

.lastname-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: column;
}

@media only screen and (min-width: 0px) and (max-width: 475px) {
  #entranceChoice {
    padding: 0;
    margin: 0;
  }

  .container {
    padding: 0;
    margin: 0;
  }

  body {
    padding: 0;
  }

  .navbar-fixed-top,
  .navbar-fixed-bottom,
  .navbar-static-top {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  body {
    font-size: 14px;
    background: linear-gradient(180deg, #152a6f 0%, #1f1f21 10%);
  }

  .app-banner {
    flex-direction: row;
    padding: 15px;
  }

  .app-logo {
    width: 50px;
    height: 17px;
    margin-left: 10px;
  }

  .app-description {
    font-size: 10px;
    text-align: center;
    padding: 10px;
  }

  .app-open-button {
    padding: 5px 10px;
    font-size: 12px;
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 10px;
  }

  .combined-club-date {
    gap: 3px;
  }

  .event-image-container img {
    max-height: 300px;
  }

  .event-image-container {
    height: 300px;
  }

  .event-overlay {
    gap: 10px;
    margin-top: 10px;
    width: 90%;
  }

  .event-overlay button {
    background: #1f1f21;
    padding: 10px 20px;
    color: var(--a, #f0f0f0);
    font-weight: 200;
    display: inline-flex;
    border: none;
    border-radius: 30px;
    font-size: 8px;
    align-items: flex-start;
    justify-content: center;
  }

  #guestForm {
    margin-left: 17%;
  }

  #paymentForm {
    margin-left: 17%;
  }

  .event-age {
    padding: 5px 35px;
    font-size: 8px;
  }

  .event-dresscode-container {
    padding: 5px 25px;
    font-size: 8px;
  }

  .event-details-container {
    position: relative;
    margin-left: 0;
  }

  .event-name {
    font-size: 23px;
    margin: 30px;
    margin-left: 20px;
    margin-bottom: 0px;
  }

  .left-aligned-title-tickets-title {
    margin-left: 20px;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .dj-profiles-container {
    margin-left: 20px;
    gap: 20px;
  }

  .combined-club-date {
    font-size: 12px;
    margin-left: 20px;
  }

  .event-music_type {
    font-size: 10px;
  }

  .music_type {
    padding: 3px 8px;
    font-size: 8px;
    border-radius: 12px;
    letter-spacing: 0.3px;
  }

  .event_music_type_container {
    margin-left: 20px;
  }

  .countdown-title,
  .event-lineup-title {
    font-size: 20px;
    margin: 0px;
  }

  .event-lineup-title {
    font-size: 20px;
    padding-left: 20px;
  }

  .countdown-container {
    font-size: 18px;
    margin: 10px 20px;
  }

  .dj-lineup-section {
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .dj-profile {
    width: 50px;
  }

  .dj-profile img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 70px;
    margin-bottom: 10px;
  }

  .dj-name {
    font-size: 16px;
    color: #fff;
  }

  .EntryOptionContainer {
    width: 80%;
    margin-left: 0px;
  }

  .EntryOption {
    width: 100%;
    padding: 10px 15px 10px 10px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 12px;
  }

  .entryoption-ticket-countdown-container {
    font-size: 12px;
  }

  .EntryOptionDescriptionandPrice {
    font-size: 14px;
  }

  .EntryOptionDescription {
    font-size: 10px;
  }

  .entryoption-onsale-container {
    padding: 5px 20px;
    border-radius: 4px;
    font-size: 9px;
  }

  .entryoption-fewtickets-container {
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 9px;
  }

  .entryoption-ticket-countdown-container {
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 9px;
  }

  .TablesOption-Onsale-container {
    padding: 2px 20px 5px 20px;
  }

  .TablesOption-Onsale text {
    font-size: 9px;
  }

  .table-title {
    align-self: flex-start;
    font-size: 20px;
    margin: 0px;
    margin-left: 15px;
  }

  #TablesOption {
    width: 80%;
    padding: 10px 15px 10px 10px;
    margin-left: 20px;
    margin-right: 20px;
  }

  #TablesOptionContainer {
    width: 100%;
    height: 85px;
    margin-left: 20px;
    margin-top: 0px;
    margin-right: 20px;
  }

  .TablesOption-bottom-container {
    margin-top: 5px;
  }

  #TablesOptionTicketType text {
    font-size: 14px;
  }

  #TablesOptionDescription {
    font-size: 10px;
    margin-top: 0px;
  }

  .footer {
    padding: 20px;
  }

  .footer-top p {
    font-size: 10px;
  }

  .footer-top2 {
    margin-left: 0px;
  }

  .footer-top5 {
    margin-left: 0px;
  }

  .footer-top5 {
    margin-right: 20px;
  }

  .footer-top6 {
    margin-left: 0px;
  }

  .footer-top9 {
    margin-left: 0px;
  }

  .footer-logo {
    max-width: 80px;
    margin: 10px auto;
  }

  .text-under-footer-logo {
    font-size: 12px;
    margin-left: 0px;
  }

  .footer-buttons a {
    width: 80px;
    padding: 5px;
    font-size: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    font-size: 10px;
  }

  .footer-links {
    margin-left: 0px;
    margin-bottom: 5px;
  }

  .footer-links a {
    font-size: 10px;
    margin-left: 0px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 375px) {
  .EntryOptionContainer {
    width: 90%;
    /* Takes almost full width on smaller screens */
    margin-left: 0px;
  }

  .TablesOption-bottom-container {
    margin-bottom: 5px;
  }

  #TablesOptionContainer {
    width: 100%;
    margin-left: 18px;
    margin-right: 12px;
  }

  #TablesOption {
    width: 100%;
    padding: 10px 15px 10px 10px;
    margin-left: 18px;
    margin-right: 12px;
  }

  .EntryOptionDescriptionandPrice {
    font-size: 12px;
  }

  .EntryOptionDescription {
    font-size: 8px;
  }

  .entryoption-onsale-container,
  .entryoption-fewtickets-container,
  .entryoption-ticket-countdown-container {
    padding: 5px 15px;
    font-size: 6px;
  }

  #TablesOptionTicketType text {
    font-size: 12px;
  }

  #TablesOptionDescription {
    font-size: 8px;
  }

  .TablesOption-Onsale-container {
    padding: 3px 15px 5px 15px;
    font-size: 8px;
  }

  .TablesOption-Onsale text {
    font-size: 6px;
  }

  .event-age {
    padding: 5px 25px;
    font-size: 6px;
  }

  .event-dresscode-container {
    padding: 5px 15px;
    font-size: 6px;
  }

  .event-dresscode-container img {
    width: 10px;
    height: 10px;
  }

  .footer-top4 {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top6 {
    margin-left: 0px;
  }

  .event-overlay button {
    background: #1f1f21;
    padding: 10px 10px;
    color: var(--a, #f0f0f0);
    font-weight: 200;
    display: inline-flex;
    border: none;
    border-radius: 30px;
    font-size: 6px;
    align-items: flex-start;
    justify-content: center;
    max-width: 500px;
  }
}

@media only screen and (min-width: 475px) and (max-width: 950px) {
  #entranceChoice {
    padding: 0;
    margin: 0;
  }

  .container {
    padding: 0;
    margin: 0;
  }

  body {
    padding: 0;
  }

  .navbar-fixed-top,
  .navbar-fixed-bottom,
  .navbar-static-top {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  body {
    font-size: 14px;
    background: linear-gradient(180deg, #152a6f 0%, #1f1f21 10%);
  }

  .app-banner {
    flex-direction: row;
    padding: 15px;
  }

  .app-logo {
    width: 60px;
  }

  .app-description {
    font-size: 14px;
    text-align: center;
    padding: 10px;
  }

  .app-open-button {
    padding: 10px 20px;
    font-size: 12px;
    margin-top: 10px;
    margin-left: 0px;
  }

  .combined-club-date {
    gap: 3px;
  }

  .event-image-container img {
    max-height: 350px;
  }

  .event-image-container {
    height: 350px;
  }

  .event-overlay {
    gap: 10px;
    margin-top: 10px;
    width: 90%;
  }

  .event-details-container {
    position: relative;
    margin-left: 10%;
  }

  #guestForm {
    margin-left: 23%;
  }

  #paymentForm {
    margin-left: 23%;
  }

  .event-overlay button {
    background: #1f1f21;
    padding: 10px 20px;
    color: var(--a, #f0f0f0);
    font-weight: 200;
    display: inline-flex;
    border: none;
    border-radius: 30px;
    font-size: 8px;
    align-items: flex-start;
    justify-content: center;
  }

  .event-age {
    padding: 5px 35px;
    font-size: 8px;
  }

  .event-dresscode-container {
    padding: 5px 25px;
    font-size: 8px;
  }

  .event-details-container {
    position: relative;
    margin-left: 0;
  }

  .event-name {
    font-size: 23px;
    margin: 30px;
    margin-left: 20px;
    margin-bottom: 0px;
  }

  .left-aligned-title-tickets-title {
    margin-left: 20px;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .combined-club-date {
    font-size: 12px;
    margin-left: 20px;
  }

  .event-music_type {
    font-size: 10px;
  }

  .music_type {
    padding: 3px 10px;
    font-size: 9px;
    border-radius: 13px;
    letter-spacing: 0.4px;
  }

  .event_music_type_container {
    margin-left: 20px;
  }

  .countdown-title,
  .event-lineup-title {
    font-size: 20px;
    margin: 0px;
  }

  .event-lineup-title {
    font-size: 20px;
    padding-left: 20px;
  }

  .countdown-container {
    font-size: 18px;
    margin: 10px 20px;
  }

  .dj-lineup-section {
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .dj-profile {
    width: 50px;
  }

  .dj-profiles-container {
    margin-left: 20px;
    gap: 20px;
  }

  .dj-profile img {
    width: 100%;
    height: 50px;
    object-fit: cover;
    border-radius: 70px;
    margin-bottom: 10px;
  }

  .dj-name {
    font-size: 16px;
    color: #fff;
  }

  .EntryOptionContainer {
    width: 80%;
    margin-left: 0px;
  }

  .EntryOption {
    width: 100%;
    padding: 10px 15px 10px 10px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 12px;
  }

  .entryoption-ticket-countdown-container {
    font-size: 12px;
  }

  .EntryOptionDescriptionandPrice {
    font-size: 14px;
  }

  .EntryOptionDescription {
    font-size: 10px;
  }

  .entryoption-onsale-container {
    padding: 5px 20px;
    border-radius: 4px;
    font-size: 9px;
  }

  .entryoption-fewtickets-container {
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 9px;
  }

  .entryoption-ticket-countdown-container {
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 9px;
  }

  .TablesOption-Onsale-container {
    padding: 2px 20px 5px 20px;
  }

  .TablesOption-Onsale text {
    font-size: 9px;
  }

  .table-title {
    align-self: flex-start;
    font-size: 20px;
    margin: 0px;
    margin-left: 15px;
  }

  #TablesOption {
    width: 80%;
    padding: 10px 15px 10px 10px;
    margin-left: 20px;
    margin-right: 20px;
  }

  #TablesOptionContainer {
    width: 100%;
    height: 85px;
    margin-left: 20px;
    margin-top: 0px;
    margin-right: 20px;
  }

  .TablesOption-bottom-container {
    margin-top: 5px;
  }

  #TablesOptionTicketType text {
    font-size: 14px;
  }

  #TablesOptionDescription {
    font-size: 10px;
    margin-top: 0px;
  }

  #paymentForm {
    margin-left: 20px;
  }

  .footer {
    padding: 20px;
  }

  .footer-top p {
    font-size: 10px;
  }

  .footer-top2 {
    margin-left: 0px;
  }

  .footer-top5 {
    margin-left: 0px;
  }

  .footer-top5 {
    margin-right: 20px;
  }

  .footer-top6 {
    margin-left: 0px;
  }

  .footer-top9 {
    margin-left: 0px;
  }

  .footer-logo {
    max-width: 80px;
    margin: 10px auto;
  }

  .text-under-footer-logo {
    font-size: 12px;
    margin-left: 0px;
  }

  .footer-buttons a {
    width: 80px;
    padding: 5px;
    font-size: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    font-size: 10px;
  }

  .footer-links {
    margin-left: 0px;
    margin-bottom: 5px;
  }

  .footer-links a {
    font-size: 10px;
    margin-left: 0px;
  }
}

#moroccanCardButton,
#internationalCardButton,
#submitPayment {
  margin-bottom: 10px;
}
