@import url(//fonts.googleapis.com/icon?family=Material+Icons);
@import url(//novatel.ru/promosites/css/privacy.css);
/*	---------------------------------------------------------------------------------------	*/
/*	---------------------------------------- ОКНА -----------------------------------------	*/
/*	---------------------------------------------------------------------------------------	*/
.window_before {
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 9800;
	background: url('/img/black_25.png') repeat 50% 50%;
}
.window {
	position: fixed;
	min-width: 640px;
	min-height: 200px;
	/*
	max-width: 800px;
	max-height: 600px;
	*/
	top: 10%;
	right: 15%;
	bottom: 10%;
	left: 15%;
	box-shadow: 0px 0px 50px -10px black;
	border-radius: 5px;
	z-index: 9900;
	background: white;
}
.window .close {
	position: absolute;
	top: -10px;
	right: -10px;
	display: block;
	width: 24px;
	height: 24px;
	background: white;
	z-index: 999;
	border-radius: 50%;
	box-shadow: 0px 0px 20px -5px black;
	cursor: pointer;
	transition: .5s;
}
.window .close:after {
	position: absolute;
	display: block;
	width: 24px;
	height: 24px;
	font-family: 'Material Icons';
	content: '\E5CD';
	color: #870b0b;
	text-align: center;
	line-height: 24px !important;
	font-weight: bold;
	font-size: 14px;
	transition: .5s;
}
.window .close:not(.disabled):hover {
	background: #870b0b;
}
.window .close:not(.disabled):hover:after {
	color: white;
	font-size: 20px;
}
.window .close.disabled {
	cursor: wait;
}
.window .close.disabled:after {
	color: #ccc;
}
.window .content {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 20px;
	text-align: left;
}
.window .content h1:first-of-type,
.window .content h2:first-of-type,
.window .content h3:first-of-type,
.window .content h4:first-of-type,
.window .content h5:first-of-type,
.window .content h6:first-of-type {
	margin-top: 0px;
}




/*	---------------------------------------------------------------------------------------	*/
/*	Доработка для элементов визуального редактора FROALA
/*	---------------------------------------------------------------------------------------	*/
.window .fr-box {
	position: absolute !important;
	top: 0px;
	right: 0px;
	bottom: 2px;
	left: 0px;
	/*overflow: hidden !important;*/
}
.window .fr-wrapper {
	position: absolute !important;
	top: 80px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}





/*	---------------------------------------------------------------------------------------	*/
/*	Кнопка "Сохранить" и статус-бар
/*	---------------------------------------------------------------------------------------	*/
.submit {
	/*
	position: absolute;
	bottom: 0px;
	right: 0px;
	*/
	padding: 0px 30px !important;
	background: #870b0b;
	color: white;
	text-decoration: none;
	font-weight: 400;
	cursor: pointer;
}
.submit:hover {
	color: yellow;
}



.status_bar {
	position: absolute;
	bottom: 0px;
	left: 20px;
	right: 250px;
	height: 29px;
	line-height: 29px;
	padding: 0px 0px;
	border-radius: 10px;
	color: black;
	text-decoration: none;
	margin: 4px;
	font-weight: 400;
	font-size: 16px;
}
.status_bar.warning {
	color: #fb0414;
	padding-left: 40px;
}
.status_bar.warning:after {
	content: '\E002';
	font-family: 'Material Icons';
	font-size: 30px;
	color: #fb0414;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 29px;
	height: 29px;
}


/*	---------------------------------------------------------------------------------------	*/
/*	Добавление пульсации значку в статус-баре
/*	---------------------------------------------------------------------------------------	*/
.status_bar:after {
	animation: pulsate 3s ease-out;
	animation-iteration-count: infinite; 
	transform: scale(0.8);
	opacity: 0.6;
}
@keyframes pulsate {
	0% { 
		transform: scale(0.8);
		opacity: 0.6;
	}
	50% { 
		transform: scale(1.1);
		opacity: 1;
	}
	100% { 
		transform: scale(0.8);
		opacity: 0.6;
	}
}



.window .content,
.window .content *:not(.material-icons) {
	font-family: Arial,Verdana,Helvetica,sans-serif;
}
.window .content p,
.window .content p *,
.window .content li,
.window .content li *,
.window .content a {
	font-size: 14px !important;
	line-height: 130% !important;
}
.window .content h1, .window .content h1 * {font-size: 24px !important;}
.window .content h2, .window .content h2 * {font-size: 22px !important;}
.window .content h3, .window .content h3 * {font-size: 20px !important;}
.window .content h4, .window .content h4 * {font-size: 16px !important;}
.window .content h5, .window .content h5 * {font-size: 14px !important;}
.window .content h6, .window .content h6 * {font-size: 13px !important;}