/* --------------------------- */
/* #region            Elements */
/* --------------------------- */

form .is-error,
form input[type="checkbox"].is-error + span::before,
form input[type="checkbox"].is-error + label::before {
	border-color: #f13c3c !important;
}

/* #endregion ---------------- */
/* #region              Loader */
/* --------------------------- */
.app-loader {
	position: fixed;
	left:0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 99999;
}
.app-loader.app-loader-wait {
	position: absolute;
	min-height: 20px;
}
.app-loader >p {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 30px;
	height: 6px;
	margin-left: -15px;
	margin-top: -3px;
	pointer-events: none;
}
.app-loader >p >i {
	position: relative;
	z-index: 2;
	display: block;
	float: left;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	margin-right: 6px;
	background-color:#fff;
	opacity: .2;
	-webkit-animation-name: app_loader;
	animation-name: app_loader;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
.app-loader >p >i:nth-child(2) {
	-webkit-animation-delay: .1s;
	animation-delay: .1s;
}
.app-loader >p >i:nth-child(3) {
	-webkit-animation-delay: .2s;
	animation-delay: .2s;
	margin-right: 0 !important;
}
@-webkit-keyframes app_loader {
	0%, 48% { opacity: .2 }
	24% { opacity: .8 }
}
@keyframes app_loader {
	0%, 48% { opacity: .2 }
	24% { opacity: .8 }
}

/* #endregion ---------------- */
/* #region             Модалки */
/* --------------------------- */
.app-modal_over {
	display: none;
	position: fixed;
	left: 0; top: 0;
	width: 100%; height: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	padding:0 20px;
	box-sizing: border-box;
	overflow-y: auto;
	z-index: 99999;
}
.app-modal {
	position: relative;
	background-color: #fff;
	width: auto;
	max-width: 600px;
	margin: 70px auto 40px;
	padding: 30px 30px 35px;
	border-radius: 5px;
	box-shadow: 0 8px 15px -5px rgba(0,0,0,.3);
}
.app-modal >.app-modal_close {
	display: block;
	position: absolute;
	background: url('data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M14%201.39999L12.6%200L6.99995%205.60001L1.4%209.22492e-05L0%201.40008L5.59995%207L0%2012.5999L1.4%2013.9999L6.99995%208.39999L12.6%2014L14%2012.6L8.39995%207L14%201.39999Z%22%20fill%3D%22%23888888%22%2F%3E%3C%2Fsvg%3E') center no-repeat transparent;
	background-size: 12px 12px;
	width: 36px;
	height: 36px;
	top: 30px;
	right: 30px;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 50%;
	cursor: pointer;
	transition: .2s ease-in-out;
}
.app-modal >.app-modal_close:hover {
    background-color: #f5f5f5;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.app-modal_title {
	font-size: 32px;
	line-height: 120%;
	font-weight: bold;
	margin: 0 0 30px;
}
.app-modal_mini {
	max-width: 450px;
}

/* #endregion ---------------- */
/* #region               Карты */
/* --------------------------- */
.ymap-zoom {
	position: absolute;
	top: 25px;
	right: 25px;
	width: auto !important;
	height: auto !important;
	z-index: 5;
}
.ymap-zoom._center {
	top: 40%;
	top: calc(50% - 40px);
}
.ymap-zoom > .ymap-zoom_inc, 
.ymap-zoom > .ymap-zoom_dec {
	display: block;
	width: 36px;
	height: 36px;
	background-color: #ffffff;
	background-position: center;
	background-repeat: no-repeat;
	border: none;
	border-radius: 4px;
	padding: 10px;
	-webkit-appearance: none;
	appearance: none;
	-webkit-transition: all .2s ease-out 0s;
	transition: all .2s ease-out 0s;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
	cursor: pointer;
}
.ymap-zoom_inc:hover, .ymap-zoom_dec:hover {
	background-color: #f4f6f7;
}
.ymap-zoom_inc:active, .ymap-zoom_dec:active {
	background-color: #f4f6f7;
	background-size: 12px;
}
.ymap-zoom_inc {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%208V14H8V8H14V6H8V0H6V6H0V8H6Z%22%20fill%3D%22%23666666%22%2F%3E%3C%2Fsvg%3E");
	margin-bottom: 5px;
}
.ymap-zoom_dec {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M14%208V6H0V8H14Z%22%20fill%3D%22%23666666%22%2F%3E%3C%2Fsvg%3E");
}
	
@media (max-width: 999px) {
	.ymap-zoom {
		top: 15px;
		right: 15px;
	}
	.ymap-zoom._center {
		top: calc(50% - 35px);
	}
	.ymap-zoom_inc, .ymap-zoom_dec {
		width: 34px;
		height: 34px;
	}
}

/* #endregion ---------------- */