@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,400i,700,700i&subset=cyrillic,cyrillic-ext');

* {
	font-family: "Roboto Condensed", sans-serif;
}

html {
	height: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: "Roboto Condensed", sans-serif;
}

h1 {
	font-size: 1.5rem;
	text-transform: uppercase;
}
h1 div, h1 span {
	color: #d40041;
}

h2 {
	font-size: 1.2rem;
	text-transform: uppercase;
}
h2 div, h2 span {
	color: #d40041;
}

h3 {
	font-size: 1rem;
	text-transform: uppercase;
}
h3 div, h3 span {
	color: #d40041;
}

a {
	color: #d40041;
}
a:hover {
	color: #000000;
}

@-ms-viewport, @-o-viewport, @viewport { 
	width: device-width;
}

::selection {
	background-color: #3e2a75;
	color: #ffffff;
}

div.head-pseudo {
	margin: 30px 0;
	font-size: 1.2rem;
	font-weight: bold;
	text-transform: uppercase;
}

/* -------------------------------------------------------------------------------- */

input[type=text], input[type=password], select, textarea, button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	font-family: "Roboto Condensed", sans-serif;
}

input[type=text], input[type=password], textarea {
	position: relative;
	padding: 8px 5px;
	background-color: #ffffff;
	color: #000000;
	font-size: 13px;
	border: 1px solid #9e94ba;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15);
}
input[type=text]:hover, input[type=password]:hover, textarea:hover, select:hover {
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.35);
	border: 1px solid #c5c5c5;
	transition: all ease-in-out 0.3s;
}
input[type=text]:active, input[type=password]:active, textarea:active {
	box-shadow: 0 0 5px 0 rgba(62, 42, 117, 0.1);
}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
	box-shadow: 0 0 5px 0 rgba(62, 42, 117, 0.1);
	transition: box-shadow ease-in-out 1s;
}

.input-error {
	border: 1px solid #d40041 !important;
}

textarea::-webkit-scrollbar {
	width: 7px;
	height: 7px;
}
textarea::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}
textarea::-webkit-scrollbar-thumb {
	background-color: #3e2a75;
}
textarea::-webkit-scrollbar-thumb:hover {
	background-color: #d40041;
}

select:not(:-internal-list-box) {
	overflow: visible !important;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	padding: 5px;
	background-color: #eeeeee;
	color: #000000;
	font-size: 13px;
	border: 1px solid #9e94ba;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15);
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 8px 15px;
	background: linear-gradient(to bottom, #ebe9f1, #bcb5cf);
	color: #000000;
	font-size: 13px;
	border: 1px solid #9e94ba;
	cursor: pointer;
	transition: 0.05s;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}
button:hover {
	border: 1px solid #999999;
}
button:active {
	box-shadow: inset 0 5px 5px rgba(62, 42, 117, 0.5);
}
button:disabled {
	background: linear-gradient(to bottom, #eeeeee, #cccccc) !important;
	color: #999999 !important;
	border: 1px solid #999999 !important;
	cursor: not-allowed !important;
}
button:disabled:active {
	box-shadow: none !important;
}

input[type=checkbox] {
	position: relative;
	width: 12px;
	height: 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: 0;
	box-shadow: none;
}
input[type=checkbox]::before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	background-color: white;
	border: 2px solid #d40041;
}
input[type=checkbox]:checked::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	width: 6px;
	height: 6px;
	background-color: #d40041;
	visibility: visible;
}
input[type=checkbox]:disabled {
	cursor: not-allowed !important;
}
input[type=checkbox]:disabled::before {
	background-color: #ebe9f1;
	border: 2px solid #d8d3e6;
}
input[type=checkbox]:disabled:checked::after {
	background-color: #d8d3e6;
}

input[type=radio] {
	position: relative;
	width: 12px;
	height: 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: 0;
	box-shadow: none;
}
input[type=radio]:disabled {
	cursor: not-allowed !important;
}
input[type=radio]::before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: white;
	border: 2px solid #d40041;
}
input[type=radio]:checked::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #d40041;
	visibility: visible;
}
input[type=radio]:disabled::before {
	border: 2px solid #999999;
}
input[type=radio]:disabled:checked::after {
	background-color: #999999;
}

label:hover {
	color: #d40041;
}
label[disabled=disabled] {
	color: #999999 !important;
	cursor: not-allowed !important;
}

/* -------------------------------------------------------------------------------- */

header {
	position: fixed;
	top: 0;
	z-index: 900;
	width: 100%;
	background-color: #0c0135;
	box-shadow: 0 0 30px 0 #0c0135;
}
div.header-wrapper {
	position: relative;
	z-index: 900;
	max-width: 1550px;
	margin: 0 auto;
	background-image: url("../images/header-cover.png");
	background-repeat: no-repeat;
	background-position: 0 center;
}
div.header-content {
	position: relative;
	z-index: 901;
	max-width: 1300px;
	height: 46px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	white-space: nowrap;
	margin: 0 auto;
	padding: 10px 10px;
}

div.logo img {
	width: 200px;
}

div.header-title {
	padding: 0 15px 0 25px;
	color: #ffffff;
	font-size: 0.85rem;
	text-transform: uppercase;
}

div.organization {
	display: none;
}

li.section-menu-catalog {
	border: 2px solid #d40041;
}
li.section-menu-catalog menu a {
	font-size: 1rem !important;
}

div.last-update-info {
	padding: 15px 8px;
	color: #ffffff;
	font-size: 0.9rem;
}
div.last-update-info span {
	padding: 3px;
	font-weight: bold;
	border: 2px solid #d40041;
}

div.section-menu-cart-toggle-jrumble {
	display: block;
}

a.section-menu-cart-toggle-jrumble {
	background-image: url("../images/icon-cart-hover.svg") !important;
	color: #d40041 !important;
}

/* -------------------------------------------------------------------------------- */

@media (min-width: 1024px) {
	div.section-menu-container {
		margin: 0 0 0 auto;
		padding: 0 0 0 25px;
	}

	div.section-menu-close {
		display: none;
	}

	menu.section-menu {
		display: block !important;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	menu.section-menu li {
		display: table-cell;
	}

	menu.basket-full {
		height: 98%;
		margin: -45px 0 0 0 !important;
		overflow-x: hidden;
		overflow-y: auto;
		border-top: 2px solid transparent !important;
	}
	menu.basket-full::-webkit-scrollbar {
		width: 7px;
		height: 7px;
	}
	menu.basket-full::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
	}
	menu.basket-full::-webkit-scrollbar-thumb {
		background-color: #d40041;
	}
	menu.basket-full::-webkit-scrollbar-thumb:hover {
		background-color: #f2b2c6;
	}

	menu.section-menu menu:before {
		content: "▲";
		position: absolute;
		color: #d40041;
		top: -16px;
		width: 100%;
		height: 16px;
		padding: 0 0 0 20px;
	}

	menu.section-menu menu {
		display: none;
		position: fixed;
		z-index: 1000;
		list-style: none;
		width: 310px;
		max-width: 310px;
		margin: 15px 0 0 0;
		padding: 10px;
		background-color: #2f254f;
		border-top: 2px solid #d40041;
		box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
	}
	menu.section-menu menu li {
		display: block;
		padding: 0;
	}
	menu.section-menu menu li a {
		white-space: normal;
		padding: 7px;
		color: #ffffff;
		font-size: 0.95rem;
		border-bottom: 1px solid #403562;
	}
	menu.section-menu menu li a:hover {
		color: #e22d65;
	}

	menu.section-menu a {
		display: block;
		white-space: nowrap;
		padding: 5px 10px;
		color: #ffffff;
		font-size: 1rem;
		text-decoration: none;
	}
	menu.section-menu a:hover {
		color: #d40041;
	}

	li.section-menu-hierarhy {
		position: relative;
		padding-right: 10px;
	}
	li.section-menu-hierarhy > a:after, li.section-menu-hierarhy > div > a:after {
		content: "▼";
		position: absolute;
		margin: 5px 0 0 5px;
		font-size: 0.6rem;
	}
	li.section-menu-hierarhy:hover > a, li.section-menu-hierarhy:hover > div > a {
		color: #d40041;
	}
	li.section-menu-hierarhy:hover a:after {
		color: #d40041;
	}

	li.section-menu-hierarhy:hover > menu:first-of-type {
		display: block;
	}

	li.section-menu-cart {
		padding-left: 10px;
	}

	a.section-menu-cart-toggle {
		padding: 5px 10px 5px 30px !important;
		background-image: url("../images/icon-cart.svg");
		background-position: 5px center;
		background-repeat: no-repeat;
		background-size: 20px;
		font-size: 1rem;
		text-decoration: none;
		cursor: pointer;
	}
	a.section-menu-cart-toggle:hover {
		background-image: url("../images/icon-cart-hover.svg");
	}

	li.section-menu-cart:hover > div > a {
		background-image: url("../images/icon-cart-hover.svg");
	}

	li.cart-empty {
		white-space: normal;
		padding: 10px !important;
		color: #ffffff;
	}
	li.cart-notice {
		white-space: normal;
		padding: 10px !important;
		color: #ffffff;
		font-size: 0.8rem;
	}

	li.section-menu-user {
		padding: 5px 10px 15px 30px !important;
		background-image: url("../images/icon-user.svg?d");
		background-position: 5px 10px;
		background-repeat: no-repeat;
		background-size: 20px;
		border-bottom: 1px solid #ffffff;
	}
	li.section-menu-user:hover {
		background-image: url("../images/icon-user-hover.svg");
	}
	div.section-menu-user-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	li.section-menu-user a {
		padding: 5px !important;
		border: 0 !important;
	}

	div.tel {
		display: block !important;
	}
	div.email {
		display: block !important;
	}
}

@media (max-width: 1023px) {
	div.header-wrapper {
		background-position: -350px center;
	}

	div.section-menu-container {
		margin: 0 0 0 auto;
		padding: 0;
	}

	menu.section-menu {
		display: block;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	menu.section-menu > li {
		display: table-cell;
		padding: 0;
	}
	menu.section-menu > li > a, menu.section-menu > li > div > a {
		display: block;
		position: relative;
		width: 24px;
		height: 24px;
		overflow: hidden;
		padding: 5px;
		color: transparent;
		background-position: center center;
		background-repeat: no-repeat;
		font-size: 0;
	}

	li.section-menu-catalog > a {
		background-image: url("../images/icon-catalog.svg");
		background-size: 22px;
	}
	li.section-menu-cart > div > a {
		margin: 0 0 0 10px;
		background-image: url("../images/icon-cart.svg");
		background-size: 24px;
	}
	li.section-menu-public > a {
		margin: 0 0 0 10px;
		background-image: url("../images/icon-menu.svg");
		background-size: 22px;
	}
	li.section-menu-public menu li.section-menu-separate:first-child {
		display: none;
		position: relative;
		margin: -20px 0 20px -20px;
		padding: 10px 0 10px 20px;
		background-color: #3b305d;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}
	li.section-menu-contacts {
		display: none !important;
	}
	li.section-menu-separate {
		width: 100%;
	}

	div.section-menu-close {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1000;
		width: 64px;
		height: 64px;
		background-image: url("../images/icon-close.svg");
		background-size: 24px 24px;
		background-repeat: no-repeat;
		background-position: center center;
		cursor: pointer;
		background-color: #1a0b47;
		border-left: 1px solid #ffffff;
		box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.7);
	}

	menu.basket {
		padding: 10px !important;
	}

	menu.section-menu menu {
		position: fixed;
		top: 63px;
		left: -150%;
		z-index: 900;
		width: 100%;
		height: 100%;
		overflow-y: scroll;
		list-style: none;
		margin: 0 0 50px 0;
		padding: 20px;
		background-color: #1a0b47;
		border-top: 1px solid #ffffff;
		box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.7);
	}
	menu.section-menu::-webkit-scrollbar {
		width: 0;
	}
	menu.section-menu menu li {
		display: block;
	}

	menu.section-menu menu a {
		display: block;
		white-space: normal;
		padding: 10px 35px 10px 15px;
		color: #ffffff;
		font-size: 1rem;
		text-decoration: none;
		border-bottom: 1px solid #403562;
	}
	menu.section-menu menu a:hover {
		color: #d40041;
	}
	menu.section-menu menu a:before {
		content: "›";
		position: absolute;
		margin: -4px 0 0 -15px;
		color: #ffffff;
		font-size: 1.2rem;
		font-weight: bold;
	}

	li.section-menu-separate:last-child {
		height: 150px;
	}

	li.cart-empty {
		white-space: normal;
		padding: 10px 40px 10px 10px !important;
		color: #ffffff;
		font-size: 1.1rem;
	}
	li.cart-notice {
		white-space: normal;
		padding: 10px 40px 10px 10px !important;
		color: #ffffff;
		font-size: 0.95rem;
	}

	li.section-menu-user {
		margin: 0 0 0 -20px;
		padding: 5px 10px 20px 45px !important;
		background-image: url("../images/icon-user.svg");
		background-position: 20px 10px;
		background-repeat: no-repeat;
		background-size: 20px;
		border-bottom: 1px solid #ffffff;
	}
	div.section-menu-user-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 30px 0 0;
	}
	li.section-menu-user a {
		padding: 5px !important;
		border: 0 !important;
	}
	li.section-menu-user a:before {
		content: "" !important;
	}

	div.tel {
		display: block !important;
	}
	div.email {
		display: block !important;
	}
}
@media (max-width: 711px) {
	div.header-wrapper {
		background-position: -350px center;
	}

	div.vcard-contacts {
		display: none;
		justify-content: space-between;
		align-items: center;
		padding: 10px 0 0 0 !important;
	}
	.vcard-contacts-flex {
		display: flex !important;
	}
	div.tel a, div.email a {
		padding: 5px !important;
		font-size: 1.2rem !important;
		border: 0 !important;
	}
	div.tel a:before, div.email a:before {
		content: "" !important;
	}
	div.tel a span, div.email a span {
		border-bottom: 1px solid #ffffff;
	}
	div.email {
		margin: -5px 40px 0 0;
	}

	div.vcard-address {
		margin: 10px 0;
		padding: 0 40px 0 30px;
		background-image: url("../images/icon-location.svg");
		background-position: 0 10px;
		background-repeat: no-repeat;
	}
	div.adr {
		padding: 5px;
		color: #ffffff;
	}
	div.adr a {
		padding: 0 !important;
	}
	div.adr a:before {
		content: "" !important;
	}
	div.adr a span {
		border-bottom: 1px solid #ffffff;
	}
	div.workhours {
		padding: 5px;
		color: #ffffff;
	}
	span.workhours-days {
		font-weight: bold;
	}
}
@media (max-width: 568px) {
	div.header-wrapper {
		background-position: -350px center;
	}
	div.tel {
		display: block !important;
	}
	div.email {
		display: block !important;
	}
}
@media (max-width: 425px) {
	div.header-wrapper {
		background-position: -350px center;
	}
	div.header-title {
		display: none;
	}
	div.vcard-contacts {
		display: none;
	}
}
@media (max-width: 320px) {
	div.logo img {
		width: 180px;
	}

	.vcard-contacts-flex {
		display: block !important;
	}
	div.tel a, div.email a {
		font-size: 1.1rem !important;
	}
	div.vcard-address {
		padding: 0 40px 0 20px;
		background-size: 16px;
		font-size: 0.9rem;
	}
	div.vcard-address a {
		font-size: 0.9rem !important;
	}
}
@media (max-width: 280px) {
	div.logo img {
		width: 150px;
	}
}

/* -------------------------------------------------------------------------------- */

div.vcard-title {
	font-size: 0.7rem;
}
div.vcard-address {
	display: none;
}
div.adr {
	color: #ffffff;
	font-size: 1rem;
	font-weight: bold;
}
div.vcard-contacts {
	white-space: nowrap;
	padding: 0 0 0 25px;
	color: #ffffff;
}
div.vcard-contacts a {
	color: #ffffff;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
}
div.vcard-contacts a:hover {
	color: #d40041;
}
div.tel {
	margin: 0 0 3px 0;
}

/* -------------------------------------------------------------------------------- */

div.page-grid {
	position: relative;
	width: 100%;
	/*width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;*/
}

div.page-grid-content {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
	padding: 90px 10px 30px 10px;
}

p.page-cover-desc {
	font-size: 1rem;
}

/* -------------------------------------------------------------------------------- */

div.search-content {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin: 10px 0 25px 0;
	padding: 0;
}

input.search-condition {
	width: 100%;
	padding: 10px 75px 10px 10px;
	font-size: 1.3rem;
	border: 2px solid #d40041;
}
input.search-condition:hover, input.search-condition:active, input.search-condition:focus {
	border: 2px solid #3e2a75;
}
input.search-condition::-webkit-input-placeholder {
	color: rgb(0, 0, 0, 60%);
	font-size: 1rem;
}

div.section-menu-search-button {
	position: absolute;
	width: 38px;
	height: 38px;
	top: calc(50% - 19px);
	right: 5px;
	background-color: #d40041;
	background-image: url("../images/icon-search.svg");
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}
div.section-menu-search-button:hover {
	background-color: #3e2a75;
}

div.section-menu-search-clear {
	position: absolute;
	width: 12px;
	height: 12px;
	top: calc(50% - 6px);
	right: 55px;
	background-image: url("../images/icon-close-simple.svg");
	background-repeat: no-repeat;
	background-size: 100%;
	cursor: pointer;
}
div.section-menu-search-clear:hover {
	background-image: url("../images/icon-close-simple-hover.svg");
}

/* -------------------------------------------------------------------------------- */

div.navigation {
	margin: 0 0 20px 0;
}
div.navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
div.navigation ul li {
	display: inline;
	padding: 5px 15px 5px 0;
	font-size: 0.9rem;
}

div.navigation a {
	color: #d40041;
	text-decoration: none;
}
div.navigation a:hover {
	color: #000000;
	text-decoration: underline;
}
div.navigation a:after {
	content: "›";
	position: absolute;
	margin: -4px 0 0 7px;
	color: #000000;
	font-size: 1.2rem;
	font-weight: bold;
}

/* -------------------------------------------------------------------------------- */

div.photo-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 10px 0;
}

div.photo-gallery div.photo-gallery-text {
	padding: 0 5px 5px 5px;
	font-size: 0.8rem;
}

div.photo-gallery a {
	display: block;
	padding: 5px;
}
div.photo-gallery a img {
	border: 2px solid #999999;
}
div.photo-gallery a:hover img, div.photo-gallery a:active img {
	border: 2px solid #d40041;
}

@media (max-width: 711px) {
	div.photo-gallery a img {
		width: 100%;
		max-width: 150px;
		border: 2px solid #999999;
	}
}

/* -------------------------------------------------------------------------------- */

ul.yandex-kassa-pay {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	max-width: 1300px;
	margin: 20px auto;
	padding: 10px;
	list-style: none;
}
ul.yandex-kassa-pay li {
	padding: 5px;
}
ul.yandex-kassa-pay img {
	height: 20px;
	max-height: 20px;
}

/* -------------------------------------------------------------------------------- */

footer {
	flex: 0 0 auto;
	background-color: #0c0135;
	box-shadow: 0 0 30px 0 #0c0135;
}

div.footer-content {
	max-width: 1300px;
	margin: 0 auto;
	padding: 25px 0;
	background-image: url("../images/footer-cover.png");
	background-repeat: no-repeat;
	background-position: center bottom;
}

div.footer-contact {
	display: flex;
	justify-content: space-between;
	align-items: top;
}

div.footer-contact div:first-of-type {
	padding: 0 0 0 30px;
	color: #ffffff;
	font-size: 0.85rem;
}
div.footer-contact div:last-of-type {
	padding: 0 30px 0 0;
}
div.footer-contact div:last-of-type ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
div.footer-contact div:last-of-type ul li {
	white-space: nowrap;
	color: #ffffff;
	font-size: 0.85rem;
}
div.footer-contact div:last-of-type ul li a {
	display: block;
	color: #ffffff;
	font-size: 1.1rem;
	text-decoration: none;
}
div.footer-contact div:last-of-type ul li:last-of-type a {
	margin: 7px 0 0 0;
}
div.footer-contact div:last-of-type ul li a:hover {
	color: #d40041;
}

div.offer {
	font-size: 12px !important;
}

div.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 20px 10px 0 20px;
}

div.footer-menu a {
	display: block;
	padding: 5px 7px;
	color: #ffffff;
	font-size: 0.9rem;
	text-decoration: none;
	text-transform: uppercase;
}
div.footer-menu a:hover {
	color: #d40041;
}

/* -------------------------------------------------------------------------------- */

div#call-back {
	display: none;
	width: 500px;
}

ul.feed-back {
	display: flex;
	flex-wrap: wrap;
	justify-content: justify-content;
	align-items: flex-start;
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.feed-back li {
	width: 100%;
	padding: 5px;
}
ul.feed-back li input[type=text], ul.feed-back li textarea {
	width: 100%;
	resize: none;
	background: linear-gradient(to bottom, #f1f1f1, #fafafa);
	font-family: "Roboto Condensed", sans-serif;
	font-size: 0.95rem;
}

ul.feed-back li label {
	font-weight: bold;
}

button.feed-back-submit, button.feed-back-close {
	padding: 10px 20px;
	background: linear-gradient(to bottom, #f2b2c6, #d40041);
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: bold;
	border: 1px solid #d40041;
}
button.feed-back-submit:active, , button.feed-back-close:active {
	box-shadow: inset 0 5px 5px rgba(119, 0, 37, 0.5);
}

div.feed-back-result {
	display: none;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
}
div.feed-back-result-button {
	margin: 30px 0 0 0;
}

@media (max-width: 711px) {
	div#call-back {
		display: none;
		width: auto;
	}
}

/* -------------------------------------------------------------------------------- */

div.privacy {
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 80px;
	z-index: 1000;
	background-color: #010101;
	box-shadow: 0 0 -30px 0 #000000;
}

div.privacy-full {
	height: auto !important;
}

div.privacy-content {
	display: flex;
	align-items: flex-start;
	max-width: 1300px;
	margin: 0 auto;
	padding: 5px 0;
}

div.privacy-content div:first-of-type {
	width: 100%;
	padding: 0 0 0 20px;
	color: #ffffff;
	font-size: 14px;
}
div.privacy-content div:first-of-type p {
	margin: 0;
	padding: 5px;
	font-size: 0.75rem;
}
span.privacy-content-text-continue {
	display: none;
}
span.privacy-content-text-full {
	color: #d40041;
	cursor: pointer;
}
div.privacy-content div:first-of-type p:last-of-type {
	display: none;
}

div.privacy-content div:last-of-type {
	padding: 0 20px 0 20px;
}

span.privacy-confirm {
	display: inline-block;
	margin: 10px 0 0 0;
	padding: 5px 10px;
	font-size: 0.9rem;
	color: #ffffff;
	border: 1px solid #d40041;
	cursor: pointer;
}
span.privacy-confirm:hover {
	background-color: #d40041;
	color: #000000;
	border: 1px solid #ffffff;
}

/* -------------------------------------------------------------------------------- */

div.frame-404 {
	margin: 20px 0;
	min-height: 600px;
	background-image: url("../images/error.gif");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

/* -------------------------------------------------------------------------------- */

div.work-hours {
	position: fixed;
	z-index: 100;
	top: 45%;
	right: -335px;
	width: 350px;
	height: 120px;
	display: flex;
	align-items: center;
	padding: 10px;
	background-color: #d40042;
	background: linear-gradient(to top, #d40042, #3e2a75);
}

div.work-hours-label {
	color: #ffffff;
	font-size: 0.9rem;
	text-transform: uppercase;
	writing-mode: tb-rl;
	-webkit-transform: rotate(180deg);
	transform:rotate(180deg);
	cursor: pointer;
}

div.work-hours table {
	margin: 0 0 0 10px;
	border-collapse: collapse;
}
div.work-hours table th, div.work-hours table td {
	padding: 5px;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: bold;
	text-align: center;
}

/* -------------------------------------------------------------------------------- */

.ui-autocomplete-loading {
	background: #ffffff url("../images/ui-anim_basic_16x16.gif") right center no-repeat;
}

.ui-autocomplete {
	z-index: 999999 !important;
	background-color: #ffffff !important;
	font-size: 1rem !important;
	border: 0 !important;
	box-shadow: 0 20px 50px rgb(0 0 0 / 30%);
}

.ui-autocomplete li {
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 1px solid rgb(0 0 0 / 7%);
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
	background: #ebe9f1 !important;
	font-weight: normal;
	color: #000000;
	border: 1px solid rgb(0 0 0 / 7%);
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #3e2a75 !important;
	background-color: #ffffff;
}
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
	color: #ffffff;
	text-decoration: none;
}

div.autocomplete-item {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 5px !important;
}

div.autocomplete-item-photo {
	display: block;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	overflow: hidden;
}
div.autocomplete-item-photo img {
	display: block;
	object-fit: contain;
	width: 40px;
	height: 40px;
}
div.autocomplete-item-photo-empty-container {
	width: 100%;
	height: 100%;
	background-color: #ffffff;
}
div.autocomplete-item-photo-empty {
	width: 100%;
	height: 100%;
	background-image: url("../images/product-thumb-empty.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 80%;
	opacity: 0.15;
}

div.autocomplete-item-names {
	flex-grow: 1;
	padding: 0 0 0 10px;
}
div.autocomplete-item-name {
	padding: 2px 0;
	font-size: 1rem;
	font-weight: 550;
}
div.autocomplete-item-category {
	padding: 2px 0;
	font-size: 0.8rem;
	opacity: 0.85;
}
span.autocomplete-item-category-separator {
	padding: 0 3px;
	font-size: 0.8rem;
	opacity: 0.85;
}

div.autocomplete-item-rest {
	min-width: 7%;
	white-space: nowrap;
	padding: 0 0 0 10px;
	font-weight: bold;
	text-align: right;
}
div.autocomplete-item-rest span.rest-unit {
	padding: 0 0 0 5px;
	font-size: 0.8rem;
	font-weight: normal;
	opacity: 0.85;
}
div.autocomplete-item-rest-empty {
	display: inline-block;
	white-space: nowrap;
	padding: 3px;
	color: #d40041;
	font-size: 0.8rem;
	font-weight: normal;
	border: 1px solid #d40041;
}

div.autocomplete-item-price {
	min-width: 7%;
	white-space: nowrap;
	padding: 0 0 0 10px;
	color: #d40041;
	font-weight: bold;
	text-align: right;
}
div.autocomplete-item-price span.price-currency {
	padding: 0 0 0 5px;
	color: #d40041;
	font-size: 0.8rem;
	font-weight: normal;
	opacity: 0.85;
}
div.autocomplete-item-price span.price-unit {
	padding: 0 0 0 3px;
	color: #000000;
	font-size: 0.8rem;
	font-weight: normal;
	opacity: 0.85;
}

@media (max-width: 711px) {
	div.autocomplete-item-rest {
		display: none;
	}
	div.autocomplete-item-price {
		display: none;
	}
}

/* -------------------------------------------------------------------------------- */

div.warning-meesage {
	margin: 0 0 20px 0;
	padding: 5px 10px;
	border-radius: 5px;
	background-image: url("../images/banners-bg.png");
	background-repeat: no-repeat;
}
div.warning-meesage-content {
	padding: 0 0 0 60px;
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: 50px;
}
div.warning-meesage-content-new-year {
	background-image: url("../images/icon-snowman.svg");
}
div.warning-meesage-content-23-february {
	background-image: url("../images/icon-23-february.png");
}
div.warning-meesage-content-8-march {
	background-image: url("../images/icon-8-march.png");
}
div.warning-meesage-content-may {
	background-image: url("../images/icon-may.png");
}
div.warning-meesage-content-day-russia {
	background-image: url("../images/icon-day-russia.svg");
}
div.warning-meesage-text {
	padding: 5px;
	color: #d40041;
	font-size: 0.9rem;
	font-weight: bold;
	text-transform: uppercase;
}
div.warning-meesage ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	align-items: start;
	margin: 5px 0;
	padding: 0;
	list-style: none;
}
div.warning-meesage ul li {
	position: relative;
	min-width: 75px;
	margin: 0 0 0 -1px;
	padding: 5px;
	font-size: 0.9rem;
	font-weight: bold;
}
div.warning-meesage ul li div {
	margin: 0 0 3px 0;
	padding: 5px;
	background-color: #f5f4f8;
	color: #d40041;
}
div.warning-meesage ul li:hover {
	background-color: #f5f4f8;
}

/* -------------------------------------------------------------------------------- */

a.webcam  {
	display: block;
	padding: 10px 10px 10px 40px;
	background-image: url("../images/icon-webcam.svg");
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 20px;
	font-weight: bold;
	text-decoration: none;
	border: 2px solid #ebe9f1;
}

/* -------------------------------------------------------------------------------- */