#dreamgroup-geo-popup-modal.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#dreamgroup-geo-popup-modal.modal.open {
  display: flex!important;
  visibility: visible!important;
  opacity: 1!important;
  transition-delay: 0s;
}
#dreamgroup-geo-popup-modal .modal-bg {
  position: absolute;
  background: rgba(0,0,0,0.3);
  width: 100%;
  height: 100%;
}
#dreamgroup-geo-popup-modal .modal-container {
  border-radius: 0px;
  background: rgba(0,0,0,1);
  position: relative;
  padding: 30px;
  min-width: 50vw;
  min-height: 50vh;
  max-width: 90vw;
  max-height: 90vh;
  -webkit-box-shadow: 0px 0px 45px 12px #FFFFFF;
  -moz-box-shadow: 0px 0px 45px 12px #FFFFFF;
  -o-box-shadow: 0px 0px 45px 12px #FFFFFF;
  box-shadow: 0px 0px 45px 12px #FFFFFF;
  overflow-y: auto

}

#dreamgroup-geo-popup-modal .modal-container * {
  color: #FFF;
}
#dreamgroup-geo-popup-modal .modal-container h2 {
  letter-spacing:1.4px
}
#dreamgroup-geo-popup-modal .modal-container .fusion-button:hover * {
  color:#000
}


#dreamgroup-geo-popup-modal .modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  outline: none;
  appearance: none;
  color: #FFF;
  background: none;
  border: 0px;
  font-weight:lighter;
  font-size: 40px;
  cursor: pointer;
  z-index: 9999999999999
}


@media only screen and (max-width: 640px)  {
	#dreamgroup-geo-popup-modal .modal-container { overflow-y: scroll}
}

