.popup {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   z-index: 99999;
   background-color: rgba(0,0,0,.85);
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   transition: 300ms ease all;
}

.popup[aria-hidden="true"] {opacity: 0; visibility: hidden; pointer-events: none; left: 90px;}

.popup .content-wrapper {
	padding: 20px;
    width: 100%;
    max-width: 600px;
}

@media only screen and (max-width: 600px) {
  	.popup-image {
        width: 90%;
    }
  	.popup-image img {
        width: 100%;
    }
}

.popup .content-wrapper .content {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

.popup .content-wrapper .content button {
    position: absolute;
    top: 5px;
    right: 15px;
    width: 15px;
    height: 15px;
    text-indent: 0px !important;
}

.popup .content-wrapper .content button svg {
	position: relative;
}

.popup-content .button {
	padding-top: 20px;
    padding-bottom: 20px;
}

.popup-image {
	width: 50%;
    margin: auto;
	display: flex;
    justify-content: center;
}

.popup-header .title {
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.popup-header .title h2 {
	font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.75rem;
    letter-spacing: .02em;
}