.dp-country-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000bf;
  z-index: 999;
  display: flex;
  justify-content: center;
}

.dp-country-popup {
  position: relative;
  background-color: #fff;
  align-self: center;
  padding: 30px;
  display: flex;
  flex-direction: row;
  max-width: 800px;
}

.dp-country-popup-logo {
  align-self: center;
}

.dp-country-popup-text {
  padding-left: 40px;
}

.dp-country-popup-text h2 {
  font-weight: 600;
  color: #000;
  line-height: 40px;
}

.dp-country-popup-text p {
  color: #000;
  font-size: 18px;
}

.dp-country-popup-btn.button:hover {
  background-color: #004979;
}

.dp-country-popup-close {
    background: url(/user/documents/scripts/close.svg?v=2) 50% no-repeat;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

@media (max-width: 640px) {
  .dp-country-popup-logo {
    display: none;
  }
  .dp-country-popup-text {
    padding-left: 0px;
  }
}