div.popup-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.popup-wrapper .popup-box {
    margin: 100px auto;
    background: #fff;
    padding: 50px;
	max-height: 500px;
    overflow: auto;
}

.popup-wrapper .popup-box-2 {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    padding: 50px;
    width: 750px;
	max-height: 500px;
    overflow: auto;
}
.popup-wrapper .popup-logo {
    max-width: 40%;
    margin-bottom: 1rem;
}
.popup-wrapper .popup-logo img {
    width: 100%;
}

@media (max-width: 1600px) {
    .popup-wrapper .popup-box-2 {
        width: 550px;
    }
}
@media (max-width: 550px) {
    .popup-wrapper .popup-box-2 {
        width: 100%;
    }
}

.popup-wrapper .popup-box h2 {
    color: #b5985a;
}

.popup-wrapper .popup-close-button::before {
    content: "X";
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 9999;
    color:#000;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-weight: bold;
}