.iw-popup {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -10;

	display: flex;
	justify-content: center;
	align-items: center;

	transition: .3s;
}
.iw-popup.open {
	z-index: 99999999;
	transition: .3s;
}


.iw-popup .iw-popup-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;

	background-color: rgba(0,0,0,.5);
	opacity: 0;
	transition: .3s;
}
.iw-popup.open .iw-popup-overlay {
	opacity: 1;
	transition: .3s;
}


.iw-popup .iw-popup-container {
	position: relative;
	z-index: 10;

	width: 60%;
	height: 80vh;

	background-color: white;
	overflow: hidden;
	transform: translateY(100vh);
	transition: .3s;
}
.iw-popup.open .iw-popup-container {
	transform: translateY(0);
	transition: .3s;
}
.iw-popup .iw-popup-container .iw-popup-header {
	height: 80px;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;

	background-color: #F5FBFF;
	border-bottom: 1px solid #0060A9;
}
.iw-popup .iw-popup-container .iw-popup-header .iw-popup-title {
	margin: 0 !important;
	color: #0f2b5f;
	text-align: center;
}
.iw-popup .iw-popup-container .iw-popup-content {
	max-height: calc(100% - 80px);
	overflow-y: auto;
	padding: 45px;
}