@CHARSET "UTF-8";

.popup_wrapper
{
	overflow-y: scroll;
}

.popup_window_close_btn
{
	position: absolute;
/* 	top: 110px; */
/* 	right: 90px; */
	top: 5%;
	right: 10%;
	z-index: 1;
}

.popup_noti_close_btn
{
	position: absolute;
	top: 10px;
	right: 10px;	
}

.popup_close_btn_big
{
	width: 42px;
	height: 42px;
	background: url('images/btn_dlg_close.png') no-repeat 0px 0px;
}

.popup_close_btn_big_white
{
	width: 42px;
	height: 42px;
	background: url('images/btn_dlg_close_white.png') no-repeat 0px 0px;
}

.popup_close_btn_small
{
	width: 16px;
	height: 16px;
	background: url('images/btn_delete.png') no-repeat 0px 0px;
}

.popup_overlay
{
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.85;
}

.popup_indicator
{
	display: none;
	width: 200px;
	height: 200px;
	position: absolute;
	top: calc(50% - 100px);
	left: calc(50% - 100px);
	background: url('images/Loader_CURIX.png') no-repeat;
	background-position: center;
}

.popup_open_animated
{
	-moz-transform: scale(1) !important;
	-ms-transform: scale(1) !important;
	-webkit-transform: scale(1) !important;
	transform: scale(1) !important;
	opacity: 1 !important;
}

/* mobile */
@media all and (min-width:0px) and (max-width:767px)
{
	.popup_open_animated
	{
/* 		padding-top: 30px !important; */
	}
	
	.popup_close_btn_big
	{
		width: 25px;
		height: 25px;
		background: url('images/btn_dlg_close.png') no-repeat 0px 0px;
		background-size: 25px;
	}
	
	.popup_close_btn_big_white
	{
		width: 25px;
		height: 25px;
		background: url('images/btn_dlg_close_white.png') no-repeat 0px 0px;
		background-size: 25px;
	}
}