.none {
    display: none !important;
}



.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hidden {
  display: none;
}
