.urbi-popup-outer {
  display: flex;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  /* hide this modal until we need it */
  opacity: 0;
  pointer-events: none;
}

.urbi-popup-outer.open {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  z-index:100;
}

.urbi-popup-inner {
  padding: 2rem;
  border-radius: 5px;
  min-height: 200px;
  background: white;
  width:60%;
  position: relative;
  cursor: auto;
}

.urbi-popup-inner .logo{
  max-width: 80%;
  margin: 0 auto 20px auto;
}

.urbi-popup-inner .title {
  font-family: "Yanone Kaffeesatz",sans-serif;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 0.5em;
}

.urbi-popup-inner .body {
  font-size: 18px;
  line-height: 22px;
  font-family: "UniversNW01-420CdRegula",sans-serif;
  color: #545454;
  margin-bottom:20px;  
}
.urbi-popup-inner .button {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  padding: 10px 20px;
  border: none;
  display: inline-block;
  text-decoration: none;
}

.urbi-popup-inner .button:hover {
  text-decoration: underline;
}

.urbi-popup-outer .btn-close{
  position: absolute;
  height: 30px;
  width: 30px;
  left: auto;
  right: -13px;
  bottom: auto;
  top: -13px;
  padding: 0px;
  color: #ffffff;
  font-family: Arial;
  font-weight: 100;
  font-size: 24px;
  line-height: 24px;
  border: 2px solid #ffffff;
  border-radius: 26px;
  box-shadow: 0px 0px 15px 1px rgb(2 2 2 / 75%);
  text-shadow: 0px 0px 0px rgb(0 0 0 / 23%);
  background-color: rgba( 0, 0, 0, 1.00 );
  cursor:pointer;
  display:flex;
  justify-content:center;
  align-items:center;
}