.custom-popup {	    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;}


.custom-popup.is-visible {	display: flex;	align-items: center;	justify-content: center;}

.custom-popup__overlay {
	position: absolute;
	inset: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.custom-popup__content {
	position: relative;
	z-index: 1;
	width: 100%;max-width:750px;
	padding: 60px 45px;
	background: #fff;
	border-radius: 0;
	    margin: 0 auto;
    display: block;border-radius: 5px;
}

.custom-popup__close {
	position: absolute;
	top: 15px;
	right: 15px;
	border: 0;
	background: transparent;
	font-size: 0; color:transparent;
	cursor: pointer;width:20px; height:20px;
}
.custom-popup__close:before, .custom-popup__close:after {content:"";position:absolute;width:100%;height:2px;background:#162F79;top:calc(50% - 1px);left:0;}
.custom-popup__close:before {transform:rotate(45deg)}
.custom-popup__close:after {transform:rotate(-45deg)}


.custom-popup__title {
	margin: 0;
}

body.custom-popup-open {
	overflow: hidden;
}
.custom-popup__container {    max-height: 100%;    width: 100%;    overflow: auto;	padding: 30px;}
