/** Стили для модальных окон */
.modal {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 9999;
}

.dg-backdrop {
	opacity: .2;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: opacity .3s ease-out 50ms;
	background: #05142f;
	transition: opacity .3s ease-out 50ms;
	z-index: 10;
}

.dg-container {
	background: #fff;
	padding: 30px 15px;
	border: 1px solid #f2f3f4;
	z-index: 555;
	margin: auto;
	border-radius: 20px;
	position: relative;
}

.dg-content-footer {
	margin-top: 25px;
	display: flex;
	justify-content: center;
}

.modal .btn {
	border-radius: 5px;
	border: none;
	outline: 0;
	background: #fff;
	border: 1px solid #e0dadb;
	border-radius: 5px;
	font-style: normal;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #697282;
	padding: 5px;
	height: 40px;
	cursor: pointer;
	min-width: 132px;
}

.modal .btn_primary {
	border: none;
	background: #f2f3f4;
	color: #697282;
}

.modal .btn.btn_primary:hover {
	background: #e8f6fa;
	color: #00b2e3;
}

.modal .btn:hover {
	border: 1px solid #00b2e3;
	color: #00b2e3;
	text-decoration: none;
}

.modal .btn.btn_primary:active {
	background: #99e0f4;
	color: #0075a7;
}

.modal .btn:active {
	border: 1px solid #00b2e3;
	color: #00b2e3;
	background: #e8f6fa;
	border: 1px solid #00b2e3;
}

.modal .btn.btn_primary:focus {
	border: 1px solid #4dc9ec;
}

.modal .btn:focus {
	border: 1px solid #4dc9ec;
}

.modal .dg-title {
	width: 100%;
	text-align: center;
	font-size: 26px;
	color: #4caf52;
	font-weight: 700;
}

.modal .dg-content {
	line-height: 18px;
	font-size: 14px;
	width: 100%;
	text-align: center;
	display: block;
	color: #697282;
	margin-top: 22px;
	padding-left: 25px;
	padding-right: 25px;
}

/** Стили заглушки */
.item_no_photo {
	background: url(./app/assets/build/images/bigNoPhoto.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/** Стили обертки */

.container__section {
	max-width: 1320px;
	margin: 45px auto 0;
	padding-left: 20px;
	padding-right: 20px;
}

.container .container__section {
	padding-left: 0px;
	padding-right: 0px;
}

/** Блок "Новости" */
.news-index .news-index__slider--prev {
	left: -25px;
}

.news-index .news-index__slider--next {
	right: -25px;
}

.news-index__slider--item img {
	object-fit: fill;
}

/** footer */
.footer__copyright--logo-img {
	width: 308px;
	display: inline-block;
}

/** Стили заглушки */
.item_no_photo {
	background: url(./app/assets/build/images/bigNoPhoto.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/** постраничная навигация */
.pagination--item:hover .pagination--item-text {
	color: #fff;
}

.productcard__bottom--summ .value {
	font: normal 23px/26px Arial;
	color: #000;
}

.productcard__bottom--summ.new-summ .value {
	color: #e1362a;
}

/** scroll style */
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	background: #f2f3f4;

	/*background: #093697;*/
}

::-webkit-scrollbar-thumb {
	background: #00b2e3;
	border-radius: 10px;
}


/** стили формы */
.form-field__label {
	font-size: 12px;
	margin-bottom: 9px;
}
	.group-container .h2 {
		padding-left: 20px;
	}
	.group-container .title {
		background: #fff;
		display: block;
		height: 58px;
		position: relative;
		padding-top: 13px;
		font-weight: 600;
		font-size: 17px;
		line-height: 32px;
		align-items: center;
		color: #05142f;
		border-bottom: 1px solid #f2f3f4;
		border-top: 1px solid #f2f3f4;
	}
		.group-container .title:first-child {
			border-top: none;
		}
	.form .button {
		width: 185px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
		.form .button__cancel {
			float: right;
			border: 1px solid #f2f3f4;
		}
		.form .button__cancel:hover {
			border: 1px solid #00b2e3;
		}

	.form .form-field__input {
		width: 100%;
	}
		.form .form-field_error .error_text,
		.form .form-field_error .error__text {
			color: #e1362a;
			font-size: 12px;
			padding-bottom: 7px;
			display: block;
		}
			.form .form-field_error .error_text {
				margin-top: 10px;
			}
		.form .form-field_error .input {
			border: 1px solid #e1362a;
			margin-bottom: 7px;
			position: relative;
			background: url(app/assets/build/images/validError.svg) #fff;
			background-repeat: no-repeat;
			background-position: right 10px center;
			padding-right: 20px;
		}
	.form .form__error {
		padding: 10px 0 20px;
	}
		.form .form__error .error__text {
			color: #e1362a;
		}

@media only screen and (max-width: 960px) {
	.form .button {
		width: 100%;
	}
}


/** стили форм уведолений */
.dg-container {
	max-width: 450px;
}
	.dg-container .dg-content{
		margin-bottom: 15px;
	}
	.dg-container .form__group textarea {
		min-height: 135px;
		resize: none;
	}
	.dg-container .dg-content-footer {
		justify-content: space-around;
	}

/** стили к формам служебным*/
.auth {}
	.auth .form__flex {
		/*justify-content: space-between;*/
	}


.loading:after,
.loading-dotted:after,
.loading-circle:after,
.loading-bg:after {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: '';
	z-index: inherit;
}

.loading, .loading:after, .loading-dotted, .loading-dotted:after, .loading-circle, .loading-circle:after, .loading-bg, .loading-bg:after {
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.loading:after, .loading-dotted:after, .loading-circle:after {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 65px;
	color: transparent;
}

.loading-circle:after {
	background-image: url(./app/assets/build/images/loading.svg) !important;
}

.loading-bg::after {
	background-color: rgba(255, 255, 255, .5);
	z-index: 2;
}

.checkbox__container {
	min-height: 18px;
	display: flex;
	align-items: center;
}

.header::after {
	top: 0;
}

.menu-mobile.opened .menu-mobile__inner {
	z-index: 2;
	position: relative;
}


.productcard.inline .productcard__bottom--summ::after {
	content: attr(data-lastprice);
	position: absolute;
	color: #e1362a;
	font-weight: bold;
	margin-left: 10px;
	top: -15px;
	line-height: 11px;
	width: 100px;
	display: flex;
	flex-wrap: nowrap;
	font-size: 11px;
	right: 0;
 }

.productcard.inline .productcard__quantity--label {
	display: block;
	font-size: 11px;
	line-height: 14px;
	font-weight: bold;
}

.productcard__bottom--label {
	display: flex;
	flex-grow: 1;
	width: 100%;
	justify-content: space-between;
	flex-direction: row-reverse;
	margin-bottom: 10px;
	font-size: 11px;
	color: #05142f;
}

.productcard__bottom__price-label,
.productcard__bottom__quantity--label {
	font-weight: bold;
	font-size: 11px;
}

.productlist__items.card .productcard__center--last-price,
.productlist__items.card .productcard__quantity--label,
.productlist__items .productcard__quantity--label,
.productcard.inline .productcard__bottom--label {
	display: none;
}
