.location-based-popup-backdrop {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 9999;
}

.location-based-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  width: 450px;
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  background: #e0e0fe;
  overflow: auto;
  padding: 0;
  border: 1px solid #000;
  z-index: 10000;
}

.popup-content--close-btn-svg {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0;
}

.popup-content--close-btn-svg svg {
  height: 15px;
  width: 15px;
}

.popup-content {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  align-items: center;
}

.popup-content .country {
  font-weight: bold;
}

.popup-text .popup-link {
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: underline;
}

.popup-text {
  text-align: center;
  margin-bottom: 20px;
}