.popup{
  position: fixed;
    z-index: 888888888;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    zoom: 1;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow: auto scroll;
    background: rgba(0, 0, 0, 0.7);
    border: 0px;
    border-radius: 0px;
    float: none;
    letter-spacing: normal;
    outline: none;
    text-decoration: none;
    text-indent: 0px;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    line-height: 1;
    font-family: helvetica, arial, san-serif;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-container{
  position: relative;
  max-width: 740px;
  width: 100%;
  max-height: 400px;
  height: 100%;
  padding: 16px 32px;
  border-radius: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.12);
  background: #f1f1f1 no-repeat center / cover url(../img/popup-bg.jpg);
  display: flex;
}
.popup-content{
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-content .popup-logo{
  width: 90px;
  margin-top: -20px;
}
.popup-content h2 {
    margin: 24px 0 5px;
    color: #000;
    font-size: 1rem;
    font-family: 'AirbnbCerealBold';
    text-transform: uppercase;
    line-height:1.5;
}
.popup-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 1rem 0;
    font-family: 'AirbnbCerealBook';
}
.popup-container button.close{
    top: -5px;
    right: 15px;
    position: absolute !important;
    cursor: pointer !important;
    border: none !important;
    background: transparent;
    opacity: 0.65;
    text-indent: -9999px!important;
    transform: rotateZ(45deg);
    padding: 1rem;
}
.popup-container button.close::before {
    content: "";
    position: absolute;
    width: 17px;
    top: 20px;
    left: 12px;
    border-top: 1px solid;
}
.popup-container button.close::after {
    content: "";
    position: absolute;
    height: 17px;
    top: 12px;
    left: 20px;
    border-left: 1px solid;
}
.popup-container a{
  padding: 0 2rem;
  border-radius: 3rem;
  font-size: .9rem;
  font-family: 'AirbnbCerealBook';
  letter-spacing: 0;
  border-color: var(--primaire);
  background-color: var(--primaire);
  color: #fff;
  height: 38px;
  display: inline-block;
  line-height: 37px;
}
