/* ОБЛАСТЬ Всплывающее окно */

#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}
 
#popup_button_close {
	position: absolute;
	top: 0;
	right: 300px;
	width: 40px;
	height: 40px;
	font-family: 'Alumni sans';
	font-size: 26px;
	color: white;
	border: 1px solid white;
	border-radius: 5px;
	background: #0061AE;
}
 
#popup_page {
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 640px;
	border: 1px solid white;
	background: #0061AE;
}

#popup_header {
	position: relative;
	width: 100%;
	height: 70px;
	padding: 15px 10px 0 20px;
	border-bottom: 1px solid white;
}

#popup_phone {
	display: inline-block;
	padding: 5px 0 0;
	font-family: 'Alumni sans';
	font-size: 24px;
	font-weight: bold;
	color: white;
}

#popup_button_entrance {
	display: inline-block;
	vertical-align: top;
	width: 80px;
	height: 30px;
	float: right;
	margin: 5px 0 0 20px;
	text-align: center;
	font-family: 'Alumni sans';
	font-size: 22px;
	font-weight: bold;
	color: white;
	border: 1px solid white;
	border-radius: 5px;
}

#popup_menu {
	padding: 20px 0 0 40px;
}

.popup_item {
	font-family: 'Alumni sans';
	font-size: 26px;
	font-weight: bold;
	color: white;
	line-height: 40px;
}
