@charset "utf-8";
/* CSS Document */

.popup-overlay{
  display:none;
  position:fixed;
  top:0;
  left:0;
  rigth:0;
  bottom:0;
  background-color:rgba(0,0,0,.5);
  width:100%;
  height:100%;
  text-align:center;
  padding:1rem;
  align-items:center;
  justify-content:center;
}
  .popup {
    display:flex;
    width:400px;
    min-height:200px;
    background-color:white;
    flex-direction: row;
    flex-wrap: wrap;
    align-items:center;
    justify-content:center;
  }

p {
  flex: 0 1 100%;
  padding:0 1rem;
  margin:0;
  margin-top:1rem;
  font-family:sans-serif;
}

a.close {
  margin-top:0;
  display:inline-block;
  color: white;
  background-color:#81a7ea;
  border-radius: 5px;
  padding: .25rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  font-family: sans-serif;
  margin-right:1rem;
}
a.close:hover {
	color: #fff;
	background: #f85865;
}
  last-of-type{
    margin-right:0;
  }


