.country-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.country-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 5px;
  text-align: center;
}
.region-choice {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background: #fc4d18;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.region-choice:hover {
  background: black;
}
.eu-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #000;
  line-height: 1;
  z-index: 9999;
}

.eu-popup-close:hover {
  color: #fc4d18;
}
