#join-accelerator-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 1000;
  width: 80%; /* Use more width on smaller screens */
  max-width: 600px; /* Limit maximum width on larger screens */
  box-sizing: border-box;
}

#join-accelerator-popup.active {
  display: block;
}

#join-accelerator-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#join-accelerator-popup-overlay.active {
  display: block;
}


.join-accelerator-popup-item {
  display: flex;
  align-items: center;
}

.join-accelerator-popup-item svg {
  flex-shrink: 0;
  margin-right: 1rem;
}

#close-join-accelerator-popup {
    position: absolute;
    top:-10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 600px) {
  #join-accelerator-popup {
    width: 90%; /* Adjust width for mobile to prevent high, broken layout */
    padding: 30px 15px 30px 15px;
  }
}

.checkmark-list {
    list-style: none;
}

.checkmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.checkmark-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2024%2025%22%3E%3Cpath%20d%3D%22M%207.5%2012.5%20L%2010.5%2015.5%20L%2016.5%209.5%20M%2022%2012.5%20C%2022%2018.023%2017.523%2022.5%2012%2022.5%20C%206.477%2022.5%202%2018.023%202%2012.5%20C%202%206.977%206.477%202.5%2012%202.5%20C%2017.523%202.5%2022%206.977%2022%2012.5%20Z%22%20fill%3D%22transparent%22%20stroke-width%3D%222%22%20stroke%3D%22rgb(83%2C42%2C33)%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-dasharray%3D%22%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
    background-size: cover;
}


