.js-ws-popup-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: #EFEAE7;;
}
.js-ws-popup-modal {
    border-radius: 0;
    background-color: transparent;
    position: relative;
    width: 100%;
    height: 100%;
	z-index: 110;
}
.js-ws-popup-modal-content {
    padding: 25px 30px 15px;
	border-radius: 0;
	z-index: 120;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.js-ws-popup-modal iframe {
    border: none;
    width:100%;
    height:100%;
}
.js-ws-popup-modal .popup-close {
    position: absolute;
    top: 30px;
    right: 45px;
    width: 34px;
    height: 34px;
    line-height: 34px;
	display:block;
    z-index: 9;
}
.js-ws-popup-modal .popup-close svg {
    width: 34px;
    height: 34px;
	fill: #000
}
.js-ws-popup-modal .modal-content-form {
    max-width:700px;
}

@media (max-width:767px) {
	.js-ws-popup-modal-content {
		padding: 25px 20px 10px;
        align-items: flex-start;
        overflow-y: scroll;
	}
	.js-ws-popup-modal .popup-close {
		top: 2px;
		right: 5px;
	}
}
