.layer_country_popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1050;
  display: block;
}
.layer_country_overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.layer_country_content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 35px 30px 25px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  z-index: 2;
  min-width: 320px;
  max-width: 95vw;
  text-align: center;
}
.layer_country_content .cross {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  z-index: 3;
}
.layer_country_content .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.zone-selection {
  margin-bottom: 20px;
}
.country-selection {
  margin-top: 20px;
}
@media (max-width: 480px) {
  .layer_country_content {
    min-width: 90vw;
    padding: 20px 5vw;
  }
}
