.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.popup-overlay .popup {
  display: inline-block;
  width: 500px;
  min-height: 200px;
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 36px;
  overflow:hidden;
}
.popup-back-img{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
  overflow:hidden;
}
.popup-back-img img{
  width: 100%;
  height: auto;
}
.popup p {
  flex: 0 1 100%;
  padding: 0 1rem;
  margin: 0;
  margin-top: 1rem;
  font-family: sans-serif;
}

.popup a.close{
  font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
  display: block;
  width: 30px;
  height: 30px;
  font-size: 40px;
  line-height: 28px;
  border:none;
  color: #ed0170;
  font-weight: bold;
  text-align: center;
  position: absolute;
  right: 8px;
  opacity: 1;
  top: 5px;
  z-index: 3;
}
.popup a.close:hover{
  border:none;
  color: #ed0170;
  opacity: 1;
}
.popup a.submit {
  margin-top: 0;
  display: inline-block;
  color: white;
  background-color: #673862;
  border-radius: 5px;
  padding: .25rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  font-family: sans-serif;
  margin-right: 1rem;
}
.popup a.submit:last-of-type {
  margin-right: 0;
}