#country-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

#country-popup-box h3 {
  margin-top: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #4C3C90;
}
#country-popup-box h3 small{
  font-size: 12px;
}

#country-popup-box {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#country-popup-box button {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 6px; padding: 8px; border: 1px solid #4C3C90; border-radius: 4px;
  text-decoration: none; cursor: pointer;
  width: 38px; height: 24px;
}

#country-popup-box button:hover {
  background: #eee;
  border-color: #ccc;
}

#country-popup-box button:last-child {
  margin-bottom: 0;
}