body.noscroll {
	overflow: hidden;
}

.modal_map_overlay
{
	display: none;
	position: fixed;
	z-index: 999999;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.4);
}

.modal_map
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 800px;
	height: 600px;
	background: white;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
	font-family: tahoma, verdana, arial, sans-serif;
}

.modal_map .map
{
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}

.modal_map .closer
{
	position: absolute;
	top: 0;
	right: -40px;
	text-decoration: none;
}

.modal_map .closer .fa-angle-left,
.modal_map .closer .fa-angle-right
{
	font-size: 32px;
	color: #fff;
}

.modal_map .closer .fa-angle-left
{
	margin-left: -8px;
}

.modal_map .confirm_button
{
	position: absolute;
	display: block;
	margin: auto;
	left: 0;
	right: 0;
	padding: 10px 20px;
	background: #286EAC;
	color: #fff !important;
	bottom: 80px;
	width: 200px;
	text-align: center;
	white-space: initial;
	z-index: 2;
}

.rugion_modal_overlay
{
	box-sizing: border-box;
	display: none;
	position: fixed;
	z-index: 999999;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(255, 255, 255, 0.7);
	padding: 30px 50px;
	overflow: auto;
	text-align: center;
}

.rugion_modal_overlay.opened
{
	display: block;
}

.rugion_modal
{
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-width: 100%;
	background: white;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
	font-family: 'Roboto Bold', 'Roboto', sans-serif;
	display: inline-block;
	text-align: left;
}

.rugion_modal_closer
{
	position: absolute;
	top: 6px;
	right: -32px;
	text-decoration: none;
	cursor: pointer;
	text-transform: none;
	font-style: normal;
	font-size: 32px;
	line-height: 32px;
}

.rugion_modal_closer::before
{
	content: "\d7";
}

.rugion_modal_title
{
	font-size: 18px;
	font-weight: bold;
	padding: 10px 20px;
	border-bottom: 1px solid #ececec;
}

.rugion_modal_content
{
	padding: 20px;
}

@media (max-width: 600px)
{
	.rugion_modal_overlay
	{
		padding: 5px;
	}

	.rugion_modal
	{
		width: 100%;
	}

	.rugion_modal_title
	{
		padding-right: 36px;
	}

	.rugion_modal_closer
	{
		right: 10px;
	}
}