.popup-overlay{
  display:none;
  position:fixed;
  z-index: 10025;
  top:0;
  left:0;
  right: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:inline-block;
/*    width:600px;
*/
    width: 50%;
    min-height:300px;
    background-color:white;
    border-radius: 10px;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items:center;
    justify-content:center;
  }
	@media screen and (max-width: 736px) {

		.popup {
			width: 80%;
		}

	}  

.cookie-para {
  flex: 0 1 100%;
  padding:0 1rem;
  margin:0;
  margin-top:1rem;

  font-family: Arial,sans-serif;
}

.close,
.submit{
  margin-top:1rem;
  margin-bottom:1rem;
  display:inline-block;
  color:white;
  background-color:#ec691b;
  border-radius: 5px;
  padding: .25rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  font-family: sans-serif;
  margin-right:1rem;
  &:last-of-type{
    margin-right:0;
  }
}