body.window-popup-active {
	/*overflow-y: hidden !important;*/
}
.window-popup {
	display: none !important;
	position: fixed !important;
	width: 100% !important;
	height: 100% !important;
	overflow: hidden !important;
	left: 0 !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	z-index: 1500;
}
.window-popup.active {
	display: block !important;
}
.window-popup .window-popup__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 0;
	margin: 0;
	background: #2A2C32;
	opacity: 0.6;
}
.window-popup .window-popup__wrap {
	box-sizing: border-box;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: auto;
	text-align: center;
}
.window-popup .window-popup__ins {
	box-sizing: border-box;
	position: relative;
	display: block;
	flex-shrink: 0;
	width: auto;
	height: auto;
	min-width: 280px;
	max-width: 100%;
	overflow: hidden;
	padding: 10px 5px;
	margin: auto;
}
@media (min-width: 480px){
	.window-popup .window-popup__ins {
		padding: 10px;
	}
}
@keyframes window-popup__animation_box {
	0% {
		opacity: 0;
	}
	99% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.window-popup .window-popup__box {
	box-sizing: border-box;
	position: relative;
	display: block;
	width: auto;
	height: auto;
	min-width: 0;
	min-height: 0;
	max-width: none;
	max-height: none;
	overflow: hidden;
	padding: 0;
	margin: 0;	
	background: #F3F4F5;
	border-radius: 8px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, .08);
}
.window-popup.window-popup_black .window-popup__box {
	color: #fff;
	background: #2A2C32;
}
.window-popup.active.window-popup_loading .window-popup__box {
	animation: 0.1s linear window-popup__animation_box;
}
.window-popup .window-popup__content {
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
}
.window-popup.window-popup_not-load .window-popup__content {
	max-width: 320px;
	padding: 32px 16px 32px;
	font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
	text-align: center;
}
.window-popup .window-popup__box .window-popup__loading-box {
	display: none;
	padding: 32px 16px;
	text-align: center;
}
.window-popup.window-popup_loading .window-popup__box .window-popup__loading-box {
    padding: 32px 16px 32px;
}
.window-popup .window-popup__box .window-popup__box-close {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 42px;
	height: 42px;
	overflow: hidden;
	padding: 0;
	margin: 0;
	background: url('../images/window-popup-close-black.svg') center center no-repeat;
	background-size: 32px 32px;
	border-radius: 6px;
	text-indent: -9999px;
	outline: none;
	cursor: pointer;
}
.window-popup.window-popup_black .window-popup__box .window-popup__box-close {
	background-image: url('../images/window-popup-close-white.svg');
}
.window-popup .window-popup__box .window-popup__box-close:hover {
	background-color: #eee;
}
.window-popup.window-popup_black .window-popup__box .window-popup__box-close:hover {
	background-color: #484b55;
}