@charset "utf-8";

/* Var */
:root {
	--font-color: #23434a;

	--color-main: #1d3136;
	--color-dop: #73848e;

	--btn-bg: #44525b;
	--btn-bg-hover: #5f6a71;
	--btn-bg-active: #44525b;

	--border-radius: var(--br);
	--br: 12px;
	--border-shadow: 0 1px 1px -1px #666;
	--box-blur: blur(8px);

	--select-border: #777;
	--select-br: 12px;
	--select-focus: blue;
	--select-arrow: var(--select-border);

	--color-red: #fb0d0d;
	--color-blue: #0e6dd2;

	--inp-br: 12px;
	--inp-pg: 12px 10px;
	--inp-fs: 14px;

	--sel-pg: 12px 10px;
}

body {
	background: #eee;
	color: var(--font-color);
	margin: 0;
	padding: 0;
	font: normal 100%/1.2em "Helvetica neue", Arial, sans-serif;
	letter-spacing: 0.5px;
}

* {
	box-sizing: border-box;
}

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
form,
fieldset,
table,
th,
td {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font: normal 100%/1.2em "Helvetica neue", Arial, sans-serif;
	color: #23434a;
	margin: 6px 0 3px;
}

h3 {
	font-size: 1.3em;
	margin: 0 0 22;
}

h4 {
	font-size: 1.1em;
	margin: 0 0;
}

a {
	display: inline-block;
	text-decoration: none;
	transition: 0.3s;
	color: #23434a;
}

ul {
	list-style: none;
}

a:hover {
	color: #000;
}

img {
	position: relative;
	vertical-align: top;
	width: 100%;
	height: auto;
}

button {
	padding: 0;
	border: none;
	font: inherit;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
	letter-spacing: 0.6px;
}

select {
	background-color: #fff;
	border-radius: var(--br);
	border: none;
	grid-area: select;
	padding: var(--sel-pg);
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	font-size: var(--inp-fs);
	cursor: pointer;
	line-height: 1.1;
}

.select {
	background-color: #fff;
	border-radius: var(--br);
	box-shadow: 0 1px 2px -2px #000;
	position: relative;
	padding-right: 16px;
	padding-left: 8px;
	cursor: pointer;
}

.select:after {
	content: "";
	background-color: #23434a;
	position: absolute;
	width: 12px;
	height: 6px;
	right: 8px;
	top: calc(50% - 3px);
	clip-path: polygon(100% 0, 0 0, 50% 100%);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #999;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #999;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0px 10em #282e3f inset !important;
	-webkit-text-fill-color: #fff;
	caret-color: #fff;
}

:before,
:after {
	font-family: FontAwesome;
	display: inline-block;
	transition: 0.2s;
}

/* ClearFix */
.container:before,
.container:after,
.clr:before,
.clr:after {
	content: "";
	display: table;
}

.container:after,
.clr:after {
	clear: both;
}

* html .clearfix {
	zoom: 1;
}

/* IE6 */
*:first-child+html .clearfix {
	zoom: 1;
}

/* Blocks */
.di,
span {
	display: inline-block;
}

.db {
	display: block;
}

.dn {
	display: none;
}

.fr {
	float: right;
}

.fl {
	float: left;
}

.pa {
	position: absolute;
}

.pr {
	position: relative;
}

.br {
	border-radius: var(--br);
}

.cp {
	cursor: pointer;
}

.cm {
	cursor: move;
}

.tc {
	text-align: center;
}

/* Color */
.c-00 {
	color: #000;
}

.c-dd {
	color: #ddd;
}

.c-bb {
	color: #b3b8bc;
}

.c-or {
	color: #fe7029;
}

.c-bl {
	color: #0e6dd2;
}

.c-re {
	color: #fb0d0d !important;
}

.c-gr {
	color: #0d8f0d;
}

/* Fonts */
.f12 {
	font-size: 12px;
}

.f13 {
	font-size: 13px;
}

.f14 {
	font-size: 14px;
}

.f50 {
	font-size: 60px;
}

/* Margin */

.mr5 {
	margin-right: 5px;
}

.ml5 {
	margin-left: 5px;
}

.mb10 {
	margin-bottom: 10px;
}

.mr10 {
	margin-right: 10px;
}

.ml10 {
	margin-left: 10px;
}

.m20 {
	margin: 20px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mb20 {
	margin-bottom: 20px;
}

.mr20 {
	margin-right: 20px;
}

.ml20 {
	margin-left: 20px;
}

/* Flex блоки */
.flex {
	display: flex;
	flex-flow: row wrap;
}

.nw {
	flex-wrap: nowrap;
}

.fs {
	justify-content: flex-start;
}

.fe {
	justify-content: flex-end;
}

.sa {
	justify-content: space-around;
}

.sb {
	justify-content: space-between;
}

.jc {
	justify-content: center;
}

.as {
	align-items: flex-start;
}

.ac {
	align-items: center;
}

.ae {
	align-items: flex-end;
}

/* END Flex блоки */

svg {
	position: relative;
	width: 36px;
	height: 36px;
}

.box,
.box-2 {
	background: #fff;
	border-radius: var(--br);
	box-shadow: var(--border-shadow);
	position: relative;
	margin-bottom: 10px;
}

.box-2 {
	background: #e8e8e8;
	padding: 10px;
}

.box-in {
	border-radius: var(--br);
	box-shadow: 0 1px 2px -2px #000 inset;
}

.box-menu {
	box-shadow: 0 1px 7px -2px #111;
	font-size: 11px;
	border-radius: 2px;
	background: #fff;
	padding: 6px 0 !important;
}

.new-element-title {
	margin: 0 0 35px;
	font-size: 16px;
	font-weight: bold;
	color: var(--font-color);
}

.site-info:before,
.site-info-white:before {
	content: "";
	background: url("/design/icons/icon-info.svg") no-repeat center center;
	background-size: auto;
	background-size: contain;
	position: relative;
	min-width: 10px;
	width: 10px;
	height: 10px;
	top: -3px;
	right: 3px;
	opacity: 0.8;
	transition: 0.2s;
}

.site-info-white:before {
	background: url("/design/icons/icon-info-white.svg") no-repeat center center;
}

.site-info:hover.site-info:before {
	opacity: 1;
}

.w-scroll {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-start;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scroll-padding: 0 20px;
	scroll-snap-align: center;
	scrollbar-width: none;
	scroll-behavior: smooth;
}

.h-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scroll-padding: 0 20px;
	scroll-snap-align: center;
	scrollbar-width: none;
	scroll-behavior: smooth;
}

/* END Условные обозначения */

/* Buttons */
.btn-top {
	border-radius: var(--br);
	border: 1px solid #a2a1a1;
	background: #e8e7e7;
	display: inline-block;
	position: relative;
	min-width: 40px;
	font-size: 12px;
	font-weight: 500;
	padding: 4px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: 0.2s;
	text-align: center;
	line-height: 1.8;
	cursor: pointer;
	color: var(--color-main);
}

.btn-top.fa,
.btn-top .fa {
	font-size: 16px;
	vertical-align: middle;
	line-height: 1.4;
}

.btn-top:hover,
.btn-top.fa:hover {
	background: #fff;
	color: var(--color-main);
}

.btn {
	border-radius: var(--br);
	border: medium none;
	box-shadow: 0 1px 2px -2px #000;
	background: #fff;
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	font-size: 13px;
	font-weight: normal;
	padding: 8px 14px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-align: center;
	transition: 0.2s;
	cursor: pointer;
	color: #23434a;
}

.btn:hover {
	background: #2a3a44;
	color: #fff;
	transition: --strok 0.2s, --fill 0.2s;
	--strok: #fff;
}


.btn:active {
	box-shadow: 0 1px 3px -3px #000 inset;
	color: #fff;
	--strok: #fff;
	transition: all 0.4s;
}

.btn:hover .fa {
	color: #fff;
}

@property --strok {
	syntax: '<color>';
	inherits: true;
	initial-value: #22272F;
}

.btn svg {
	position: relative;
	width: 18px;
	height: 18px;
	right: -6px;
}

button .fa {
	margin-left: 10px;
}

.add-btn {
	border-radius: var(--br);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-left: 6px;
	position: relative;
	padding: 5px 10px;
	font-size: 22px;
	text-align: center;
	transition: 0.2s;
	color: #8e9397;
	cursor: pointer;
}

.add-btn:hover {
	transform: scale(1.25);
	color: #111;
}

.cancel,
.cancel-btn {
	background: #f5f5f5;
	border-radius: 0 var(--br);
	position: absolute;
	top: 0;
	transition: 0.2s;
	font-size: 14px;
	right: 0;
	padding: 10px 13px;
	z-index: 5;
	cursor: pointer;
}

.cancel:hover,
.cancel-btn:hover {
	background: #fff;
}

.dell-btn {
	background: inherit;
	border-radius: var(--br);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	position: absolute;
	padding: 8px;
	transition: 0.2s;
	cursor: pointer;
}

.dell-btn:hover {
	background: #ffcccc;
	transform: scale(1.06);
}


.noClick {
	pointer-events: none;
	opacity: 0.5;
}

.fa-print:hover {
	color: #000;
}

.act,
.status-color>a:hover {
	background: #406d9d;
	color: #fff;
}

.show-sold-prod:hover {
	background: #7b96a7;
	color: #fff;
}

.selected-time {
	padding: 0 10px;
}

.selected-time span,
.selected-time b {
	padding: 0 4px;
}

.sel-wrap {
	position: relative;
}

.sel-wrap:after {
	content: "";
	border: 5px solid transparent;
	border-top: 5px solid #73848e;
	position: absolute;
	top: calc(50% - 1px);
	right: 8px;
}

.fa-times,
.fa-bars,
.fa-times-circle {
	color: #a8b1b7;
	cursor: pointer;
	transition: 0.2s;
}

.fa-times-circle:hover {
	color: #f9748c !important;
}

.fa-bars {
	cursor: move;
	transition: 0.3s;
	font-size: 16px;
}

.fa-bars:hover {
	color: #111;
	transform: scale(1.4);
}

.banner-line .fa-bars {
	margin-right: 8px;
}

.fa-trash,
.img-add-btn,
.edit-post .fa-pencil-square-o {
	border-radius: var(--br);
	padding: 8px;
	transition: 0.2s;
	font-size: 14px;
	color: #999;
	cursor: pointer;
}

.fa-trash:hover {
	color: #ff0a0a !important;
	transform: scale(1.3);
}

.img-add-btn:hover {
	background: #f7f7f7;
	color: #111;
}

.edit-post .fa-pencil-square-o:hover {
	background: #cccfd0;
	color: #4685b2;
}

.fa-clone,
.fa-eye {
	transition: 0.3s;
}

.pr-properti--title {
	margin-bottom: 10px;
}

.block-inner {
	background: #e6e7e8;
	border-radius: var(--br);
	position: relative;
	padding: 10px 16px 20px;
	margin-bottom: 20px;
	min-height: 110px;
}

.s-title,
.block-inner--title {
	position: relative;
	padding: 6px 0;
	font-size: 14px;
	font-weight: bold;
	color: var(--color-main);
	margin-bottom: 20px;
}

.s-title {
	margin-bottom: 0;
}

.section-title {
	position: relative;
	padding: 10px;
	font-size: 15px;
	font-weight: bold;
	color: var(--color-main);
	margin-bottom: 20px;
}

/* Модальные окна */
.box-modal {
	background: #eee;
	box-shadow: 0 5px 35px -5px #111;
	border-radius: var(--br);
	position: absolute;
	top: 0;
	left: 0;
	min-width: 200px;
	min-height: 250px;
	overflow: hidden;
	z-index: 99;
}

.box-modal-header,
.box-modal--header {
	background: #44525b;
	border-radius: var(--br);
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
	padding: 0 15px;
	position: relative;
	font-size: 14px;
	column-gap: 4px;
	z-index: 2;
}

.win-header--title,
.box-modal--title {
	color: #fff;
	font-weight: 500;
}

.box-modal-header-actions {
	position: absolute;
	top: calc(50% - 10px);
	right: 10px;
	column-gap: 20px;
}

.box-modal-expand-button,
.box-modal-collapse-button,
.box-modal-refresh-button,
.box-modal-clear-button,
.box-modal-close-button {
	transition: 0.2s;
}

.box-modal-close-button svg {
	width: 20px;
	height: 20px;
	--fill: #fff;
	fill: #fff;
}

.box-modal-collapse-button svg,
.box-modal-expand-button svg {
	width: 17px;
	height: 17px;
	--fill: #fff;
	fill: #fff;
}

.box-modal-collapse-button svg {
	width: 20px;
	height: 20px;
}

.box-modal-clear-button svg,
.box-modal-refresh-button svg {
	--strok: #fff;
	--fill: #fff;
	width: 20px;
	height: 20px;
}

.box-modal-expand-button:hover,
.box-modal-collapse-button:hover,
.box-modal-clear-button:hover,
.box-modal-refresh-button:hover,
.box-modal-close-button:hover {
	transform: scale(1.1);
}

.box-modal-header b {
	font-weight: 500;
	color: #fff;
}

.box-modal-header .fa {
	color: #248cd8;
}

.box-modal-content {
	background: #ececec;
	padding: 16px 20px;
	align-items: flex-start;
}

/* END Модальные окна */

.icon-close {
	position: absolute;
	width: 20px;
	height: 20px;
	cursor: pointer;
	transition: 0.2s;
	top: calc(50% - 10px);
	right: 10px;
	opacity: 0.8;
	--fill: #fff;
}

.icon-close:hover {
	opacity: 1;
	transform: scale(1.2);
}

.icon-close svg {
	width: 100%;
	height: 100%;
}

.box-line .icon-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1;
	border-radius: 50%;
	padding: 4px;
	width: 30px;
	height: 30px;
	--fill: var(--color-main);
}

.box-line .icon-close:hover {
	background: #fff;
}

.min-win {
	background: #eee;
	box-shadow: 0 5px 35px -5px #111;
	border-radius: var(--br);
	position: absolute;
	z-index: 999;
}

.min-win-title {
	background: #d1d4d7;
	border-radius: var(--br) var(--br) 0 0;
	position: relative;
	padding: 12px 15px;
	font-size: 14px;
	font-weight: bold;
	cursor: move;
}


.tippy-box[data-theme~="error"] {
	background-color: #ff5e41;
	color: #fff;
}

.tippy-box[data-theme~="error"]>.tippy-arrow {
	color: #ff5e41;
}

.heartpulse {
	position: relative;
}

.heartpulse:before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	animation: heartpulse 1s infinite ease-in-out;
	border-radius: var(--br);
}

@keyframes heartpulse {
	100% {
		box-shadow: 0 0 0 5px rgba(77, 90, 98, 0.5);
	}

	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
	}
}


/* Buttons */

.save-btn--panel {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 25px;
}

.save-btn {
	background: #fff;
	border-radius: var(--br);
	border: medium none;
	box-shadow: 0 1px 2px -2px #000;
	min-width: 140px;
	max-width: 210px;
	padding: 10px 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	font-size: 13px;
	font-weight: normal;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-align: center;
	transition: .2s ease;
	cursor: pointer;
}

.save-btn svg {
	position: relative;
	width: 18px;
	height: 18px;
	right: -6px;
	transition: --strok 0.2s ease;
}

.save-btn:hover {
	background: #528f67;
	color: #fff;
	--strok: #fff;
}

.save-btn:active {
	background: #439975;
	--strok: #fff;
	color: #fff;
}

.panel-buttons .save-btn {
	height: 100%;
	max-height: 34px;
}

.view-btn {
	background: #f5f5f5;
}

.view-btn:hover {
	background: #f5f5f8;
}

.btn-top.product-flag--list {
	column-gap: 8px;
	display: flex;
	flex-wrap: nowrap;
}

/* END Buttons */

.product-during,
.product-flag {
	background: #ececec;
	border-radius: var(--br);
	position: relative;
	padding: 4px 12px;
	display: flex;
	flex: 0 0 auto;
	justify-content: space-between;
	align-items: center;
	min-width: 105px;
	cursor: pointer;
	white-space: nowrap;
}

.product-flag {
	padding: 7px 10px;
}

.product-flag:hover {
	background: #fff;
}

.product-during .fa-flag {
	margin-right: 5px;
}

.active-switch--wrap {
	display: flex;
	justify-content: space-between;
	position: relative;
	align-items: center;
	flex-wrap: nowrap;
	font-weight: 500;
	cursor: pointer;
	margin-right: 20px;
	min-width: 106px;
	white-space: nowrap;
	transition: 0.2s;
}

.active-switch {
	background-color: #fff;
	border-radius: var(--br);
	box-shadow: 0 1px 2px -2px #000;
	display: flex;
	justify-content: space-between;
	position: relative;
	align-items: center;
	flex-wrap: nowrap;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	cursor: pointer;
	padding: 4px 10px;
	margin: 0 20px;
	min-width: 120px;
	white-space: nowrap;
	transition: 0.2s;
}

.active-switch--select {
	margin-left: 10px;
}

.product-flag .fa {
	font-size: 18px;
	vertical-align: middle;
}

.product-flag>span {
	margin: 0 10px 0 3px;
	font-size: 12px;
}

.product-during:hover {
	background: #fff;
}

.enabled_product,
.not_enabled_product {
	position: relative;
	color: #5bd248;
	cursor: pointer;
	font-size: 16px;
	vertical-align: middle;
}

.enabled_product:before {
	content: "\f205";
	transition: inherit;
}

.not_enabled_product:before {
	content: "\f205";
	color: #bbb;
	transform: rotate(180deg);
	transition: inherit;
}

/* END Кнопки */

/* Inputs */
.input-1,
.input-2,
.input-3 {
	background: #f5f5f5;
	border-radius: var(--br);
	border: none;
	width: 100%;
	padding: var(--inp-pg);
	font-size: var(--inp-fs);
	font-weight: normal;
	outline: 0;
}

.input-2 {
	background: #fff;
}

.input-1:not(:read-only):focus,
.input-2:not(:read-only):focus,
.input-3:not(:read-only):focus {
	background: #fff;
}

.input-1.ui-autocomplete-input {
	font-size: 14px;
}

/* END Inputs */

/* Select */
.sel-1 {
	background: #fff;
	box-shadow: 0 1px 2px -2px #000;
	border-radius: var(--select-br);
	position: relative;
	height: 30px;
}

.sel-1:after {
	content: "";
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #111 transparent transparent transparent;
	pointer-events: none;
	position: absolute;
	top: 50%;
	right: 10px;
	z-index: 1;
	margin-top: -2px;
}

.sel-1 select {
	width: 100%;
	height: 100%;
	padding: 0 0 0 10px;
	background: none;
	border: 1px solid #fff;
	font-size: 14px;
	color: #000;
}

.sel-1:hover,
.sel-1:focus {
	outline: 0;
	cursor: pointer;
	border-color: #fbfbfb;
	background: #fbfbfb;
}

.sel-1 hover:focus {
	opacity: 0;
	filter: alpha(opacity=0);
}

/* Убираем стандартные стрелочки в IE */
.sel-1 select::-ms-expand {
	display: none;
}

/* END Select */

/* Общие стили табов для всех страниц */
.tabs {
	display: flex;
	flex-direction: no-wrap;
	margin-bottom: 0;
	column-gap: 8px;
	padding-left: 20px;
}

.tabs-link {
	background: #b2b8bb;
	border-radius: var(--br) var(--br) 0 0;
	margin-bottom: -1px;
	padding: 9px 25px 9px;
	font-size: 13px;
	transition: 0.2s;
}

.tabs .tabs-link:hover {
	background: #9fa6aa;
	transform: translateY(-1px);
}

.tabs .tabs-link.show,
.tabs .tabs-link.active,
.tabs .tabs-link.tabs-active {
	background: #4d5a62;
	color: #fff;
	transform: translateY(-1px);
}

.tabs-link:disabled {
	color: #6c757d;
	background: #c0c5c7;
	pointer-events: none;
	cursor: default;
}

/* Обертка */
.wrap,
.wrap-bottom {
	position: relative;
	height: auto;
	min-width: 1260px;
	margin: 0 auto;
	overflow: hidden;
}

.wrap-bottom {
	padding: 0 20px 60px;
}

/* END Обертка */

/* Шапка */
.header {
	background: #eee;
	display: flex;
	align-items: start;
	flex-wrap: nowrap;
	position: relative;
	height: 70px;
	order: 0;
	flex: 0 1 100%;
	box-shadow: 0 2px 3px -3px #000;
	z-index: 14;
	order: 1;
}

.to-front {
	position: absolute;
	top: 1px;
	right: -30px;
	color: #bec0c2;
	font-size: 18px;
}

.to-front:hover {
	color: #23434a;
}

.user-icon-header {
	display: flex;
	flex-flow: row nowrap;
	position: relative;
	width: 190px;
	margin: 12px 85px 0 10px;
}

.user-icon-avatar {
	margin: 0 10px 0 4px;
}

.user-icon-header img {
	width: 35px;
	border-radius: 25px;
	font-size: 10px;
}

.user-icon-svg {
	width: 35px;
	height: 35px;
	background: #4A90E2;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.user-icon-svg svg {
	width: 20px;
	height: 20px;
	fill: white;
}

.company-name {
	text-align: left;
}

.main-menu {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	margin-top: 16px;
	column-gap: 6px;
}

.main-menu a,
.dop-order-label a {
	background: #d0d0d0;
	border-radius: var(--br);
	font-size: 13px;
	display: inline-block;
	position: relative;
	padding: 6px 14px;
	text-align: left;
	font-weight: 500;
	transition: 0.2s;
	letter-spacing: 1px;
}

.main-menu a {
	display: flex;
	border: 1px solid #6c6c6c;
	box-shadow: 0 1px 2px -2px #000;
	padding: 6px 18px;
	flex-flow: row nowrap;
	font-weight: 500;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	color: #112226;
}

.main-menu a:hover {
	background: #ffffff;
}

.cat-stock>label:hover,
.dop-order-label a:hover {
	background: #7b96a7;
	box-shadow: 0 1px 1px 0px #777;
	color: #fff;
}

/* END Шапка */

/* Меню выбора сайтов */
.company-name-wrap {
	position: relative;
}

.company-name {
	position: relative;
	font-size: 14px;
	font-weight: bold;
	color: #1a272f;
}

.company-name:after {
	content: "";
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #111 transparent transparent transparent;
	position: relative;
	top: -1px;
	left: 3px;
	opacity: 0;
}

.companys-list {
	background: #fff;
	box-shadow: 0 2px 20px -3px #111;
	border-radius: var(--br);
	position: absolute;
	padding: 5px 0;
	opacity: 0;
	pointer-events: none;
	min-width: 185px;
	text-align: left;
	top: 20px;
	overflow: hidden;
	left: -4px;
	font-size: 13px;
	line-height: 2;
}

.company-name-wrap:hover .companys-list {
	opacity: 1;
	pointer-events: inherit;
}

.company-item {
	position: relative;
	padding: 2px 15px;
	cursor: pointer;
}

.company-item:hover {
	background: #eee;
}

.company-item.sell {
	background: #edf5e7;
}

.company-item:after {
	content: "\f096";
	cursor: pointer;
	position: absolute;
	left: 85%;
	top: 1px;
	font-size: 15px;
}

.company-item.sell:after {
	content: "\f046";
	color: #60cb3d;
}

.change-company-btn {
	background: #c4d3e0;
	border-radius: var(--br);
	padding: 4px 5px;
	width: 150px;
	margin: 30px auto 5px;
	text-align: center;
	font-size: 12px;
	cursor: pointer;
}

.change-company-btn:hover {
	background: #1c7cd0;
	color: #fff;
}

/* END Menu select site */

/* Left bar */
.left-icon-wrap {
	background: #1d2931;
	box-shadow: 2px -2px 3px -3px #000;
	position: relative;
	flex: 0 0 65px;
	text-align: center;
	padding: 2px 0 65px;
	z-index: 13;
	min-height: 1060px;
	order: 2;
}

.l-icon-wr {
	background: #1d2931;
	position: relative;
	padding: 0 0 22px;
	z-index: 2;
}

.l-icon-wr.liw-first {
	padding: 52px 0 22px;
	position: relative;
	box-sizing: border-box;
}

.left-icon {
	position: relative;
}

.lm-btm {
	position: relative;
	width: 60px;
	font-size: 1.6em;
	height: 50px;
	color: #959ea2;
	transition: 0.3s;
}

.last-item {
	padding-bottom: 160px;
}

.lm-btm.sell {
	color: #fff;
}

.lm-btm:hover {
	color: #fff;
	transform: scale(1.1);
}

.m-sign {
	font: bold 9px "Helvetica neue", Arial, sans-serif;
	position: absolute;
	bottom: 10px;
	text-align: center;
	width: 100%;
	left: 0;
}

.left-bar {
	background: #eaedef;
	flex: 0 0 205px;
	box-shadow: 2px 0 2px -3px #000;
	z-index: 9;
	padding: 0 0 50px;
	position: relative;
	order: 3;
	max-width: 205px;
}

.left-bar--title {
	position: relative;
	margin: 10px 0;
	min-height: 12px;
	text-align: center;
	font-size: 13px;
	font-weight: bold;
}

.left-bar-content {
	padding: 0 15px;
	overflow: hidden;
}

.contact-list h3 {
	font-size: 13px;
	padding: 20px 0 20px;
	text-align: center;
	margin: 0 auto;
	color: #476c84;
}

.contact-list h3 {
	margin: 0;
}

.scrol-bar {
	max-height: 400px;
	width: 215px;
	margin: 5px 0 10px;
	overflow: hidden;
}

.scrol-bar--scroll {
	max-height: 400px;
	overflow-x: hidden;
	margin-right: -15px;
}

.left-bar-info .item-menu a {
	display: block;
	margin-bottom: 4px;
	position: relative;
	padding: 8px 0;
	cursor: pointer;
	text-align: left;
	transition: 0.2s;
}

.left-bar-info .item-menu a:hover {
	transform: translateY(-2px);
	text-decoration: underline;
}

.left-bar-info .item-menu .fa-times {
	position: absolute;
	top: 9px;
	right: 3px;
}

#left-menu {
	overflow: hidden;
	width: 205px;
}

.left-bar-info,
.left-bar--info {
	display: block;
	font-size: 12px;
	padding: 8px 12px 8px 10px;
	margin: 0 0 20px;
	font-weight: 500;
}

.lb-item {
	border-radius: 10px;
	padding: 10px 8px;
	margin: 0 -4px 2px;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
	transition: .2s;
}

.lb-item:hover {
	background: #c2c7cc;
}

.lb-item.cat-name-selected {
	background: #eee;

}

.left-bar-sell {
	width: 100%;
}

.pages-list-select {
	max-width: 180px;
}

.left-bar-info .menu-selected a {
	color: #000;
}

.left-bar-info .item-menu.menu-selected a {
	background: #fff;
}

.left-bar-name {
	font-weight: bold;
	padding: 0 0 15px;
	line-height: 1.4;
}

.left-bar--name {
	font-size: 12px;
	font-weight: 500;
	margin: 0 0 30px;
}

.info-link:hover {
	color: #2a73b5;
}

.bar-qty {
	position: relative;
	padding: 0 2px;
	color: #03549d;
	font-size: 13px;
	font-weight: normal;
	top: 1px;
	left: 3px;
	letter-spacing: normal;
	text-align: right;
}

.act .bar-qty {
	color: #7bc0ff;
}

.cat-name>a.menu-selected .bar-qty {
	color: #5fb1fb;
}

.bar-qty.c-gr {
	color: #0d8f0d;
}

.bar-qty i {
	margin: 0 1px;
}

.left-bar-info .fa,
.left-bar--info .fa {
	margin-right: 4px;
	font-size: 14px;
}

.left-bar-slide {
	padding: 015px;
}

.m-mark {
	border-radius: var(--br);
	position: absolute;
	padding: 2px 3px;
	font-size: 11px;
	bottom: 50px;
	color: #fff;
	min-width: 16px;
}

.new-mark {
	background: #e03737;
	left: 10px;
}

.pre-mark {
	background: #5482f6;
	left: 33px;
}

.nw-comm {
	background: #e09304;
	right: 10px;
}

/* Stickers new tasks  */
.st-icon {
	border-radius: 50%;
	position: absolute;
	width: 8px;
	height: 8px;
	transition: 0.3s;
	z-index: 2;
}

.st-icon:hover {
	transform: scale(1.5);
}

.st-icon.nw-task {
	left: 12px;
	top: 46px;
}

.st-icon.wk-task {
	left: 42px;
	top: 46px;
}

.st-icon.nw-post {
	left: 28px;
	top: 36px;
}

.mm-qtw {
	border-radius: var(--br);
	position: relative;
	padding: 3px 2px;
	margin: 0 0 0 3px;
	min-width: 14px;
	font-size: 8px;
	color: #eee;
	line-height: 1;
	text-align: center;
	vertical-align: text-bottom;
}

/* Left-bar slide Menu */
.main-menu-mobile {
	background: #38444a;
	border-radius: 0 10px 10px 0;
	box-shadow: 0 2px 20px -5px #000;
	position: absolute;
	top: -50%;
	left: 0;
	min-width: 210px;
	overflow: hidden;
	transform: translateX(-225px);
	transition: 0.3s;
}

.main-menu-mobile.mm-first {
	top: 10%;
}

.main-menu-mobile a {
	border-bottom: 1px solid #30393e;
	display: block;
	font-size: 14px;
	text-align: left;
	position: relative;
	padding: 14px 5px 14px 20px;
	color: #c6c6c6;
	cursor: pointer;
}

.main-menu-mobile a:after {
	content: "\f105";
	position: absolute;
	transition: 0.3s;
	font-size: 18px;
	right: 11px;
	top: 15px;
}

.main-menu-mobile a:hover,
.main-menu-mobile a.sell {
	background: #52626a;
	color: #fff;
}

.main-menu-mobile a:hover:after {
	right: 8px;
}

.left-icon:hover .main-menu-mobile {
	transform: translateX(59px);
	transition-delay: 0.5s;
}

/* END Left bar */

/* Category list menu */
.cat-stock {
	overflow: auto;
	width: 205px;
	margin-top: 14px;
}

.cat-stock input {
	display: none;
}

.cat-name {
	background: #eee;
	box-shadow: 0 -10px 2px -11px #000 inset;
	overflow: hidden;
	margin: 0;
	transition: 0.3s linear 0;
	padding: 0 0 10px;
	cursor: pointer;
	display: none;
}

.cat-name>a,
.size-table-name>span,
.left-menu-brand {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	padding: 10px 10px 10px 12px;
	color: #455259;
	cursor: pointer;
	transition: 0.1s;
}

.cat-name>a:hover {
	background: #e0e1e4;
}

.size-table-name>span:hover,
.left-menu-brand:hover,
.cat-name a.menu-selected {
	background: var(--btn-bg-hover);
	color: #fff;
}

.cat_parent {
	display: block;
	overflow: hidden;
	cursor: pointer;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: bold;
	padding: 14px 20px;
}

.cat_parent:hover {
	background: #ccced1;
}

.active_block>.cat_parent {
	color: #fff;
	background: #44525b;
}

.active_block>label:after {
	transform: rotate(90deg);
	transition: 0.5s;
}

.cat-stock label:after {
	content: "\f105";
	float: right;
	transition: 0.3s;
}

/* END Раскрывающийся список категорий */
/* User info */
.user-info {
	justify-content: center;
	padding: 15px 10px 0;
}

.user-avatar {
	border-radius: 50%;
	width: 50px;
	height: 50px;
}

.user-avatar img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
}

.user-info-data {
	padding: 8px 0 6px 6px;
}

.user-info-name {
	font-size: 13px;
	font-weight: bold;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.user-info-mail {
	color: #0f79bb;
	font-size: 12px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* END User info */
/*** END Левый сайтбар ***/
/* Осносной контент страницы */
.content {
	background: #f7f7f7;
	padding-bottom: 95px;
	flex: 1 1 0;
	overflow: hidden;
	order: 4;
}

.content-wrap {
	position: relative;
	padding: 0 20px;
	max-width: 1280px;
}

.content-wrap.small-content {
	max-width: 1000px;
}

.panel-buttons,
.panel-buttons-bot {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	background: rgba(151, 156, 159, 0.65);
	box-shadow: 0 2px 2px -3px #000;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	padding: 6px 0 6px 20px;
	position: relative;
	height: 55px;
	margin: 0 0 20px;
	z-index: 12;
}

.panel-buttons .but2 {
	background: #ececec;
}

.panel-buttons .but2:hover {
	background: #3488e1;
	color: #fff;
}

.panel-buttons .sign {
	margin-top: -10px;
}

.panel-buttons select {
	padding: 4px 6px;
	width: 100px;
	font-size: 12px;
	font-weight: 500;
}

.panel-buttons .sign:hover,
.panel-buttons a:hover {
	transform: none !important;
}

.panel-buttons .new-content:hover {
	background: #599aca;
	color: #fff;
}

.sticky-wrapper {
	margin-bottom: 20px;
	height: 70px;
}

.panel-buttons-bot {
	background: #d5d5d5;
	box-shadow: 0 -2px 2px -3px #000;
	position: absolute;
	padding: 12px 20px;
	bottom: 0;
	margin: 0;
	width: 100%;
}

/* Список контактов чата */
.user-chat-name {
	padding: 4px 0 5px 8px;
	position: relative;
	font-size: 12px;
	width: 170px;
}

.user-chat-name span:before {
	content: "\f007";
	padding: 0 6px;
	font-size: 1.2em;
}

.user-chat-name .fa-star {
	color: #fb4f0b;
}

.user-chat-name:hover,
.user-chat-name .sell {
	background: #fdfdfd;
}

.user-online:before {
	color: #2aaf03;
}

.user-left:before {
	color: orange;
}

.user-chat-name b {
	padding-left: 5px;
	font-size: 10px;
}

.hidden {
	display: none !important;
}

.contacts-hidden {
	margin: 20px 0 0;
	height: 15px;
	overflow: hidden;
	transition: all 0.5s;
}

.contacts-hidden:hover {
	height: 999px;
	transition: all 1s;
}

.contacts-hidden:after {
	content: "\f105";
	position: absolute;
	top: -4px;
	transform: rotate(0deg);
	transition: all 0.3s;
	right: 32px;
	color: #bbb;
}

.contacts-hidden h4 {
	margin: 0 0 10px;
	padding-left: 16px;
}

.contacts-hidden:hover h4 {
	color: #111;
}

.edit-post:hover:before,
.contacts-hidden:hover:after {
	transform: rotate(90deg);
	transition: all 0.3s;
	color: #000;
}

/* END Список контактов чата */
/* Окно чата */
/* Выдвижная панель Чата */
.slide-panel-wrap {
	width: 10px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 10;
}

.slide-panel {
	background: #eaedef;
	box-shadow: -2px -1px 3px -3px #000;
	padding: 30px 0 40px;
	position: relative;
	min-height: 500px;
	right: -15px;
	width: 250px;
	height: 1000px;
}

.panel-open {
	background: #7b96a7;
	border-radius: var(--br) 0 0 var(--br);
	position: absolute;
	padding: 10px 15px;
	right: -8px;
	top: 90px;
	transition: 0.3s;
	color: #fff;
	opacity: 0.2;
	z-index: 10;
}

.panel-open:hover {
	opacity: 1;
	right: 0;
}

.stat-messag {
	background: red;
	border-radius: 50%;
	padding: 2px 5px;
	font-size: 10px;
	top: -1px;
	left: -1px;
}

/* END Выдвижная панель Чата */
.chat-window {
	width: 360px;
	height: 510px;
	top: 70px;
	border-radius: var(--br) 0 0 var(--br);
	box-shadow: -7px 5px 40px -5px #111;
	overflow-x: hidden;
	right: -150px;
	transition: right 0.3s;
	z-index: -1;
}

.chat-user {
	background-color: #9eabb1;
	box-shadow: 0 1px 3px -1px #000;
	padding: 10px;
	top: 0;
	z-index: 1;
}

.chat-window-open-btn {
	background: rgba(238, 238, 238, 0.2);
	border-radius: 0 25px 25px 0;
	position: absolute;
	font-size: 18px;
	left: 0px;
	top: 10px;
	padding: 12px 18px;
	color: #111;
	cursor: pointer;
}

.chat-window-open-btn:hover {
	background: rgba(255, 255, 255, 0.5);
}

.chat_data_border {
	border-bottom: 1px solid #e4e4e4;
	text-align: center;
	width: 90%;
	margin: -5px auto 15px;
}

.chat_data_border span {
	background: #fff;
	position: relative;
	padding: 0 5px;
	bottom: -9px;
	font-size: 11px;
	color: #bbb;
}

.user-post-wrap {
	position: relative;
	padding: 0 47px 2px 40px;
	text-align: right;
}

.my-post-wrap {
	position: relative;
	padding: 0 40px 2px;
}

.chat-user img {
	margin: 3px 5px -3px 10px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.chat-user-name {
	margin-bottom: 0;
}

.chat-user>span>p {
	padding: 0;
	line-height: 1.3;
	margin: 0;
}

.posts-wrap {
	padding: 10px 0 0;
	height: 350px;
	overflow: auto;
	width: 380px;
}

.posts-list {
	width: 365px;
}

.my-post-text,
.user-post-text,
.my-post textarea {
	box-sizing: border-box;
	padding: 5px 20px 5px 10px;
	font-size: 13px;
	line-height: 1.3;
	min-height: 35px;
}

.user-post {
	background: #f4f4f4;
	border-radius: var(--br) 2px 15px var(--br);
	position: relative;
	padding-left: 12px;
	display: inline-block;
	text-align: right;
}

.user-post-img p,
.my-post-img p {
	padding: 2px 3px;
	color: #bbb;
	font-size: 9px;
	line-height: 0.9;
	text-align: center;
}

.post-img-wrap {
	border-radius: 50%;
	width: 30px;
	height: 30px;
	overflow: hidden;
}

.user-post-text {
	text-align: left;
}

.my-post {
	background: #e2edf3;
	border-radius: 2px var(--br) var(--br) 15px;
	position: relative;
	display: inline-block;
}

.my-post-img {
	position: absolute;
	left: -33px;
}

.user-post-img {
	position: absolute;
	right: -33px;
}

.user-post-img img,
.my-post-img img {
	width: 100%;
	border-radius: 50%;
}

.my-post .fa-times-circle {
	display: none;
	position: absolute;
	color: #d0d2d4;
	cursor: pointer;
	right: 3px;
	top: 1px;
	transition: 0.3s;
	transform: scale(0.7);
}

.my-post-wrap:hover .fa-times-circle {
	display: block !important;
}

.my-post .fa-times-circle:hover {
	color: #555;
	transform: scale(1);
}

.user-post .fa-trash-o {
	position: absolute;
	color: #d0d2d4;
	left: -18px;
	top: 5px;
	font-size: 13px;
}

.my-post textarea {
	background: #f9f6e6;
	border-radius: 2px var(--br) var(--br) 15px;
	border: none;
	word-wrap: break-word;
	width: 100%;
}

.my-post-text {
	background: #e2edf3;
	border-radius: 2px var(--br) var(--br) 15px;
	word-wrap: break-word;
}

.chat-remove-message {
	background: #f3f3f3;
	border-radius: var(--br);
	padding: 4px 15px;
	min-height: auto;
	line-height: 1;
	font-size: 10px;
	color: #bbb;
	font-style: italic;
	margin-bottom: 2px;
}

.deleted_message_icon {
	position: absolute;
	top: 23px;
	font-size: 10px;
	color: #9bb2bd;
}

.my-post .deleted_message_icon {
	left: 43px;
}

.user-post .deleted_message_icon {
	right: 43px;
}

.changed_message_icon {
	position: absolute;
	top: 20px;
	font-size: 9px;
	color: #9bb2bd;
}

.my-post .changed_message_icon {
	right: 5px;
}

.user-post .changed_message_icon {
	left: 5px;
}

.chat-input {
	background: #bdc7cc;
	box-shadow: 0 1px 8px -2px #000;
	position: absolute;
	padding: 10px;
	width: 350px;
	bottom: 0;
}

.chat-input img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	margin-bottom: 25px;
	vertical-align: top;
}

.chat-input textarea {
	width: 86%;
	min-height: 55px !important;
	line-height: 1.2;
	padding: 3px 25px 3px 5px;
	font-size: 13px;
	resize: none;
}

.chat-input .fa-image {
	bottom: 17px;
	position: absolute;
	right: 28px;
	color: #bbb;
	cursor: pointer;
	transform: scale(0.8);
	transition: 0.3s;
}

.chat-input .fa-image:hover {
	color: #111;
	transform: scale(1);
}

#chat_new_message_sound {
	display: none;
}

.my_block_mess .my-post .my-post-img {
	display: none;
}

.my_block_mess .user-post .user-post-img {
	display: none;
}

.next_block_mess {
	margin-top: 12px;
}

#selected_managers_list .fa-angle-left {
	top: 17px;
	left: 13px;
}

/* END Чат */

/* Контент страниц */
.page-section {
	background: #eee;
	border-radius: var(--br);
	position: relative;
	padding: 0;
	margin: 0 0 15px;
	width: 100%;
	min-height: 25px;
}

.page-section.section-images {
	background: #f8f8f8;
	overflow: hidden;
}

.page-section-name {
	background: #606f79;
	position: relative;
	font-size: 12px;
	font-weight: 500;
	color: #eee;
	padding: 8px 10px;
	border-radius: 12px;
	transition: 0.3s;
	cursor: move;
}

.page-section--open {
	padding: 0 8px;
	color: #eee;
}

.section_content .but.but3 {
	position: absolute;
	padding: 5px 10px;
	top: 5px;
	right: 5px;
}

.page-section-name:hover {
	color: #fff;
}

.page-section-content {
	padding: 0 20px;
}

.page-section h3 {
	font-size: 14px;
	font-weight: bold;
	margin: 0 0 5px;
	padding: 5px 5px;
}

.page-section-name .fa {
	vertical-align: middle;
	font-size: 18px;
}

.meta_block_open {
	background: #f7f7f7;
	padding: 2px 8px 2px 10px;
	top: 3px;
	right: 3px;
}

.meta_block_open:hover {
	background: #fff;
	color: #000;
}

.sign {
	display: inline-block;
	font-size: 12px;
	color: #000;
	margin-bottom: 4px;
}

.info-wrap .sign {
	margin-bottom: 0;
}

.sign .fa {
	color: #23434a !important;
}

.sign-title {
	width: 130px;
	color: #999;
}

.sign-title--table {
	width: auto;
	color: #999;
}

.sign-qtw {
	background: #f9f9f9;
	border-radius: var(--br);
	padding: 0 5px;
	min-width: 30px;
	font-size: 12px;
	color: #2a73b5;
}

.sign b {
	color: #0587ea;
	font-weight: 500;
}

.sign b.c-re {
	color: #ff1414;
}

.img-sign {
	color: #111;
	padding: 0 5px;
}

.img-sign input {
	width: 35px;
	text-align: center;
	border: none;
	border-radius: var(--br);
	margin: 0 3px;
	box-shadow: 0 1px 1px -1px #000 inset;
}

.img-sign .fa:before {
	color: #999;
}

.img-sign .fa:hover:before {
	color: #111;
}

.sett-title {
	font-size: 14px;
	font-weight: bold;
	margin: 0 0 30px;
}

/* Meta snippet */
.snippet {
	margin: 10px 0 20px;
}

.snippet-block {
	flex: 100%;
}

.snippet-show {
	position: relative;
}

.snippet-show--btn {
	background: #d5dfe6;
	border-radius: 10px;
	padding: 4px 10px 4px 14px;
	cursor: pointer;
	font-size: 13px;
}

.snippet-show--btn:hover {
	background: #fefefe;
}

.snippet b {
	color: red;
}

.snippet-wrap {
	background: #fff;
	border-radius: var(--br);
	padding: 20px 10px;
	font-family: arial, sans-serif;
}

.snippet-title {
	color: #00c;
	font-size: 18px;
	font-weight: 400;
}

.snippet-crumb {
	color: #070;
	font-size: 14px;
	width: 550px;
	margin: 2px 0;
}

.snippet-descrip {
	color: #333;
	font-size: 13px;
	line-height: 1.4;
	width: 600px;
}


/* END Meta snippet */

/* Подсказки */
.box-info {
	display: inline-block;
	position: relative;
	color: #248cd8;
	cursor: pointer;
	font-size: 13px;
	font-weight: normal;
}

.box-info:before {
	content: "\f05a";
}

.box-info span {
	background: #1d2931;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
	border-radius: var(--br);
	top: 15px;
	left: 0;
	width: 240px;
	padding: 10px 10px 15px;
	color: #c8c8c8;
	text-align: left;
	line-height: 1.5;
	position: absolute;
	pointer-events: none;
	font-size: 14px;
	opacity: 0;
	z-index: 11;
	transition: 0.2s ease-in-out;
	transform: scale(0.9);
	transform-origin: left top;
}

.box-info span:after {
	content: "";
	position: absolute;
	top: -5px;
	left: 5px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #1d2931;
}

.box-info:hover.box-info span {
	pointer-events: auto;
	opacity: 1;
	top: 22px;
	left: -4px;
	transform: scale(1);
}

.box-info a {
	color: #0876d4;
}

.box-info a:hover {
	text-decoration: underline;
}

/* END Подсказки */
.qty {
	background: #38444b;
	border-radius: 6px;
	position: relative;
	color: #fff;
	min-width: 30px;
	font-size: 0.6em;
	padding: 1px 6px;
	text-align: right;

	line-height: 1.4;
	margin-top: 8px;
	top: -3px;
}

/* END Контент страниц */

/* Форма поиска */
.search-form {
	box-shadow: 0 1px 2px -2px #000;
	margin-right: 5px;
}

.search-form:before {
	content: "\f002";
	position: absolute;
	left: 9px;
	top: 6px;
	color: #829096;
	font-size: 12px;
}

.search-form input {
	padding: 7px 10px 8px 30px;
	border-radius: var(--br);
	border: none;
	width: 170px;
}

.to-Top {
	background: #445460;
	border-radius: var(--br);
	bottom: 90px;
	position: absolute;
	padding: 5px 12px 10px;
	cursor: pointer;
	left: 9px;
	font-size: 26px;
	color: #959ea2;
	transition: 0.3s;
}

.to-Top:hover {
	background: #506677;
	color: #fff;
}

#loading {
	position: fixed;
	right: 20px;
	top: 20px;
}

.loading-container {
	z-index: 1000;
}

.loading-container .loading-container--inner {
	background: rgb(48, 128, 200);
	border-radius: var(--br);
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	padding: 12px 12px 12px 14px;
	align-items: center;
	column-gap: 16px;
	z-index: 1;
}

.loading-container .loader {
	border-color: transparent #fff #fff;
	position: relative;
	width: 34px;
	height: 34px;
}

.loading-container .text {
	position: relative;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	color: #fff;
}

.loader {
	display: block;
	width: 50px;
	height: 50px;
	margin: auto;
	border: 2px solid;
	border-radius: 50%;
	border-color: transparent #1d2931 #1d2931;
	animation: cssload-spin 960ms infinite linear;
	-o-animation: cssload-spin 980ms infinite linear;
	-ms-animation: cssload-spin 980ms infinite linear;
	-webkit-animation: cssload-spin 980ms infinite linear;
	-moz-animation: cssload-spin 980ms infinite linear;
}

.cssload {
	display: block;
	width: 50px;
	height: 50px;
	margin: auto;
	border: 2px solid;
	border-radius: 50%;
	border-color: transparent #1d2931 #1d2931;
	animation: cssload-spin 960ms infinite linear;
	-o-animation: cssload-spin 980ms infinite linear;
	-ms-animation: cssload-spin 980ms infinite linear;
	-webkit-animation: cssload-spin 980ms infinite linear;
	-moz-animation: cssload-spin 980ms infinite linear;
}

.loader-small {
	width: 30px;
	height: 30px;
	border-radius: var(--br);
}

.loader-small .cssload {
	width: 20px;
	height: 20px;
	margin: 3px auto 0;
}

#loading.loader-small {
	position: absolute;
}

.gallery-but .loader-small {
	left: 192px;
	top: 0;
}

@keyframes cssload-spin {
	100% {
		transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* END Прилоудер */

/* Сообщение о выполненном действии */
.message_success,
.message_success_no,
.message_ok {
	background: rgba(16, 33, 43, 0.7);
	border-radius: var(--br);
	box-shadow: 0 2px 10px -3px #666;
	width: 280px;
	min-height: 44px;
	position: absolute;
	padding: 12px 25px 12px 45px;
	color: #32bb40;
	top: 5px;
	text-align: center;
	right: 2vw;
	font-size: 14px;
	z-index: 100;
	border: 1px solid #2d9f39;
}

.message_success_no {
	background: rgba(32, 3, 3, 0.9);
	border: 1px solid #ff6060;
	color: #ff8383;
}

.message_success:before,
.message_success_no:before {
	content: "";
	background: url(/design/icons/icon-ok.svg) no-repeat 0 0/100% auto;
	position: absolute;
	top: calc(50% - 12px);
	width: 24px;
	height: 24px;
	left: 10px;
	color: #fff;
}

.message_success_no:before {
	background: url(/design/icons/notice.svg) no-repeat 0 0/100% auto;
}

.assess-mesage {
	background: #eed8c0;
	flex-flow: column nowrap;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	position: relative;
	padding: 20px 30px 40px;
	margin: 40px auto 0;
	width: 320px;
	font-size: 14px;
	line-height: 1.4;
}

.assess-mesage svg {
	width: 40px;
	height: 40px;
	margin-bottom: 8px;
	--strok: #f45f06;
}

/* END Сообщение о выполненном действии */

/* Результы поиска */
.search-report,
.empty-report {
	background: #fff0c1;
	border-radius: var(--br);
	color: #6f552c;
	padding: 14px 41px;
	position: absolute;
	text-align: center;
	left: 90px;
	top: 120px;
	font-size: 14px;
	z-index: 8;
}

.empty-report {
	padding: 15px 20px 15px 50px;
}

.search-report:before {
	content: "\f129";
	position: absolute;
	top: calc(50% - 10px);
	font-size: 20px;
	color: #bfa860;
	left: 16px;
}

.search-report .keywords {
	padding: 0 5px;
	color: #008dc7;
}

/* END Результы поиска */

/* Форма поиска */
.sorch-form {
	position: relative;
	margin: 12px auto 12px;
	width: 180px;
}

.sorch-butt {
	position: absolute;
	padding: 5px;
	top: 3px;
	right: 4px;
	font-size: 16px;
	cursor: pointer;
}

.sorch-butt:hover {
	color: #727a7d;
}

.input-search {
	background: #eee;
	box-shadow: 0 1px 2px -2px #000 inset;
	border-radius: 20px;
	border: none;
	padding: 8px 34px 8px 14px;
	width: 100%;
	font-size: 14px;
}

.input-search:focus {
	background: #fff;
}

/* win. Banners list */
.banners-list--win {
	min-width: 500px;
}

.banners-list--win .subCat-line {
	padding: 4px 10px;
	margin-bottom: 2px;
	display: flex;
	align-items: center;
	font-size: 13px;
	flex-wrap: nowrap;
}

.banners-list--win .subCat-name {
	padding: 6px 10px;
}

.banners-list--win .subCat-position {
	padding: 6px 0;
}

/* END win. Banners list */


.products-class {
	display: none;
	position: relative;
	padding-bottom: 100px;
}

.modal-products {
	padding: 20px 20px 10px;
	gap: 16px 10px;
	min-width: 560px;
}

.modal-product-item {
	background: #e9e9ea;
	border-radius: var(--br);
	text-align: center;
	width: 132px;
	transition: 0.3s;
	padding: 3px;
}

.modal-product-item:hover {
	box-shadow: 0 2px 5px -2px #666;
	transform: scale(1.02);
}

.modal-product-item a {
	display: block;
	margin-bottom: 2px;
}

.m-prod-art {
	color: #e85004;
	font-size: 12px;
	padding-bottom: 2px;
}

.modal-product-item img {
	aspect-ratio: 2 / 3;
	font-size: 12px;
	text-align: center;
	color: #e9e9ea;
}

.m-add-but {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	padding: 3px;
}

.m-add-but button {
	background: #e0e0e0;
	border-radius: 8px;
	padding: 8px 12px;
	cursor: pointer;
	color: #1d2931;
	font-size: 12px;
	transition: 0.3s;
	margin: 0;
}

.m-add-but button:hover {
	background: #6c8290;
	color: #fff;
}

.m-add-but .fa-shopping-basket {
	width: 100%;
}

.product-dop-info {
	max-width: 887px;
}

.prod-line {
	background: #fff;
	border: 1px solid #b7b7b7;
	border-radius: var(--br);
	height: 45px !important;
	padding: 2px;
	margin-bottom: 2px;
	width: 215px;
}

.ui-icon-gripsmall-diagonal-se {
	background-position: -81px -224px !important;
}

.sop-window .but3 {
	padding: 7px 11px;
	font-size: 15px;
}

/* END Модальное окно каталога товаров и редактора изображений */

/* Диалоговое окно удаления */
.confirm_dialog .ui-dialog,
.ui-dialog,
.ui-dialog.ui-widget {
	background: #fff;
	outline: 6px solid rgba(24, 34, 41, 0.2);
	border-radius: var(--br);
	box-shadow: 0 2px 50px -5px #555;
	border: none;
	padding: 15px 10px 10px;
	position: relative;
	z-index: 100;
}

.ui-dialog-block:after {
	content: "";
	background: rgb(255 255 255 / 50%);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
}

.confirm_dialog_text {
	font-size: 14px;
}

.confirm_dialog_danger {
	background: #ffeded;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 10px;
}

.confirm_dialog_text p:not(:last-child) {
	margin-bottom: 10px;
}

.ui-dialog-titlebar.ui-widget-header {
	margin-bottom: 0;
}

.ui-button-text-only.ui-button-text-only .ui-button-text {
	padding: 10px 10px;
	font-size: 14px;
}

.ui-dialog-content.ui-widget-content {
	font-weight: 500;
	text-align: center;
	padding: 33px 24px 0;
	line-height: 1.6;
	font-size: 15px;
}

.confirm_dialog .ui-button-text-only,
.ui-button-text-only {
	box-shadow: 0 1px 8px -4px #666;
	padding: 10px 15px;
	border: none;
	border-radius: var(--br);
	margin: 0 10px !important;
	min-width: 150px;
}

.ui-button-text-only .ui-button-text {
	padding: 0;
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.confirm_dialog.ui-draggable.ui-dialog-buttons {
	min-width: 460px;
}

.confirm_dialog .ui-dialog-buttonset,
.ui-dialog-buttonset {
	display: flex;
	justify-content: center;
	gap: 20px;
	align-items: center;
	text-align: center;
	padding: 10px 0 10px;
}

.ui-button {
	background: #ededed;
}

.ui-button:hover {
	opacity: 0.85;
}

.ui-button+.ui-button {
	background: #547c99;
}

.ui-button+.ui-button.ui-corner-all {
	color: #fff;
}

.ui-button+.ui-button:hover {
	background: #4a6f89;
}

.ui-button-text {
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	transition: 0.2s;
}

.ui-dialog-titlebar-close,
.ui-dialog-title {
	display: none;
}

/* END Диалоговое окно удаления */

/* Постраничная навигация */
.page-nav span,
.page-nav a {
	background: #ececec;
	border-radius: var(--br);
	padding: 8px 16px;
	min-height: 35px;
	cursor: pointer;
	font-size: 12px;
}

.page-nav span:hover,
.page-nav a:hover {
	background: #fff;
}

.nav-sel {
	background: #465b68 !important;
	color: #fff;
}

.page-nav .alink {
	position: relative;
	height: 19px;
	vertical-align: top;
	min-width: 10px;
}

.page-nav .alink .fa {
	position: relative;
	font-size: 20px;
}

/* END Постраничная навигация */

/* Тестовый CSS */
/* .block-test-2 {
	background: url("/admin/design/icon_svg/test-2.svg") no-repeat 0 0/100px auto;
	height: 100px;
	width: 100px;
} */
/* END Тестовый CSS */

/* Категории списком */
.box-line,
.sub-cat-line {
	position: relative;
	padding: 10px;
	min-height: 90px;
	column-gap: 10px;
}

.sub-cat-line {
	max-width: 800px;
}

.box-line-name.sub-cat--name {
	flex: 1 1 300px;
	max-width: 100%;
	font-size: 12px;
}

.box-line-move {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.box-line-img {
	background: #fff;
	border-radius: var(--br);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	width: 70px;
	max-height: 90px;
	aspect-ratio: 2/3;
	overflow: hidden;
}

.box-line-img img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.box-line-img .fa-file-image-o {
	position: relative;
	font-size: 40px;
	color: #bbb;
}

.box-line-name,
.box-line--name {
	flex: 1 1 300px;
	position: relative;
	padding: 0 10px;
	color: var(--color-dop);
}

.bx-name,
.box-line--title {
	display: block;
	white-space: nowrap;
	position: relative;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: bold;
	color: var(--color-main);
	cursor: pointer;
}

.box-line--title:hover,
a.box-line--data:hover,
a.bx-name:hover {
	text-decoration: underline;
}

.box-line--data {
	display: block;
	position: relative;
	margin-bottom: 8px;
	font-size: 12px;
	color: var(--color-dop);
}

.box-line--data .fa {
	color: var(--color-main);
	margin-right: 2px;
}

.box-line--data b {
	position: relative;
	margin-left: 2px;
	font-weight: normal;
	font-size: 13px;
	color: var(--color-main);
}

.bx-name:hover {
	color: #000;
}

.bx-name .fa-pencil {
	color: #999;
	margin-left: 5px;
	font-size: 10px;
}

.brand-name {
	display: block;
	font-size: 14px;
	padding: 0 10px 0 0;
	margin-bottom: 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: bold;
}

.box-line-info,
.box-line--info {
	position: relative;
	padding: 28px 0 0;
	flex: 1 1 auto;
}

.box-line-info img,
.box-line--info img {
	max-height: 100px;
	max-width: 80px;
}

.box-line-name a:hover .fa-angle-right,
.box-line--name a:hover .fa-angle-right,
.brand-name:hover .fa-angle-right {
	color: #000;
}

.box-line-set {
	flex: 0 0 40px;
	position: relative;
	min-height: 90px;
	margin: -6px 0;
}

.box-line-set .fa-eye {
	position: absolute;
	top: 6px;
	right: 54px;
	color: #9da3a6;
}

.box-line .enabled_product,
.box-line .not_enabled_product,
.box-line-set .enabled_product,
.box-line-set .not_enabled_product {
	top: 5px;
	right: 0;
	position: absolute;
}

.box-line-set .fa-trash {
	position: absolute;
	bottom: 0;
	right: -4px;
	font-size: 14px;
	cursor: pointer;
}

.yandex_category,
.avito_category {
	background: url(../../../img/yandex-marcet.png) no-repeat 0 0/22px;
	position: absolute;
	cursor: pointer;
	height: 22px;
	width: 22px;
	top: 3px;
	right: 105px;
}

.avito_category {
	background: url(../../../img/avito.png) no-repeat 0 0/22px;
	right: 145px;
}

.not.yandex_category,
.not.avito_category {
	background-position: 0 -22px;
}

.box-line-set .not_yandex_category {
	color: #bbb;
}

.sub-category {
	display: none;
	margin: 0 0 20px 20px;
}

#img_label {
	background: rgba(0, 0, 0, 0.7);
	padding: 4px;
	width: 75px;
	font-size: 10px;
	border-radius: var(--br);
	position: absolute;
	bottom: 15px;
}

/* END Категории списком */
/* Секция настройки */
/* Кнопка раскрытия блоков с поворотной стрелкой */
.box-line-move .fa-angle-right {
	background: #eee;
	border-radius: 50%;
	position: relative;
	padding: 2px 8px;
	cursor: pointer;
	font-size: 20px;
	transition: 0.3s;
}

.box-line-move .fa-angle-right:hover {
	background: #f7f7f7;
}

.fa-angle-right:before {
	transition: 0.3s;
}

.active_block .fa-angle-right:before {
	transform: rotate(90deg);
}

/* END Кнопка раскрытия блоков с поворотной стрелкой */

.prod-filter-block {
	min-height: 120px;
	column-gap: 16px;
}

.pr-filter {
	flex: 1 0 180px;
}

.pr-filter select {
	font-size: 14px;
}

.qtw-prod-view,
.dop-sett {
	margin: 0 0 40px;
}

.display-type {
	cursor: pointer;
	margin: 0 0 10px;
}

.ui-resizable {
	position: absolute !important;
}

/* END Секция настройки */

/* Секция Текст */
.section-meta-text {
	padding: 10px 0;
	flex: 1 1 45%;
}

.section-text-sign {
	padding: 10px;
	gap: 10px;
}

.section-text-sign input {
	width: 220px;
}

/* END Секция Текст */

/* Pay and Delivery */
.pay-online {
	margin-left: 20px;
}

.pay-online-inputs {
	width: 300px;
}

.pay-online-inputs .need:before {
	content: "*";
	position: absolute;
	top: 24px;
	right: 6px;
	font-size: 16px;
	color: #ff1414;
}

/* END Pay and Delivery */

/* Section */
.section-content {
	padding: 25px 20px 20px;
	column-gap: 20px;
}

.section-prop--wrap {
	column-gap: 20px;
}

.section-content--title {
	margin-bottom: 30px;
	font-size: 12px;
}

.section-meta,
.section-meta-image,
.section-create-info {
	padding: 10px 0;
	position: relative;
	flex: 1 1 45%;
	max-width: 460px;
}

.section-create-info-text {
	margin: 50px 0 30px;
	line-height: 1.4;
}

.section-meta {
	margin-right: 20px;
}

.section-meta .qty {
	margin: 0;
}

.section-meta-input--sign {
	justify-content: space-between;
}

.section-meta .input-1 {
	margin-bottom: 12px;
	overflow-y: scroll;
}

.section-image-wrap .sign {
	display: flex;
	justify-content: space-between;
	padding: 2px 5px;
}

.section-image-img {
	background: #eee;
	border-radius: var(--br) var(--br) 0 0;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 260px;
}

.section-image-img img {
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 180px;
	font-size: 12px;
	aspect-ratio: 3/2;
}

.section-but-save {
	flex: 1 1 100%;
	text-align: right;
}

.section-image-img .fa-trash,
.line-edit-img .fa-trash,
.user-avatar .fa-trash,
.line-size-image .fa-trash {
	border-radius: var(--br);
	bottom: 5px;
	right: 5px;
	padding: 7px 12px;
	position: absolute;
	z-index: 5;
}

.section-img-editor-light .section-image-img {
	min-height: 235px;
}

/* Image Editor */
.image-editor--imgfield {
	max-width: 800px;
	max-height: 600px;
	margin-bottom: 30px;
}

.image-editor--sett-wrap {
	column-gap: 20px;
}

.image-editor--sett .ie-sign {
	display: flex;
	position: relative;
	margin-bottom: 20px;
	font-size: 13px;
	align-items: center;
	column-gap: 6px;
	flex-wrap: nowrap;
	justify-content: flex-end;
}

.image-editor--sett .ie-sign .input-1 {
	padding: 8px 12px;
	max-width: 75px;
}

.image-editor--btn {
	justify-content: center;
	margin-bottom: 15px;
	column-gap: 6px;
}

.image-editor--save {
	position: relative;
	column-gap: 20px;
}

/* END Image Editor */

.required-label {
	font-size: 12px;
	color: red !important;
	margin-left: 3px;
}

.cat-filters label {
	cursor: pointer;
}

.smart-filter #enabled_filter {
	position: relative;
	top: 2px;
	left: 8px;
}

.f-name .box-2 {
	display: none;
	position: absolute !important;
	box-shadow: 0 2px 15px -5px #000;
	top: 19px;
	right: 228px;
	width: 120px;
	z-index: 10;
}

.f-name .box-2 label {
	display: block;
	padding: 0 5px;
}

.f-name .tl {
	font-weight: bold;
}

.f-name .fa-times-circle {
	top: -5px;
	right: -4px;
}

.f-name .input-2 {
	width: 60px;
	margin: 0 5px 5px;
	padding: 6px 8px;
}

.jpg-size {
	width: 120px;
	bottom: 5px;
	left: 27%;
}

.dop-category .box-info {
	left: 20px;
}

.dop-category .dop-btn {
	background: #f7f7f7;
	border-radius: var(--br);
	padding: 3px 0 3px 22px;
	width: 148px;
	text-align: center;
	cursor: pointer;
}

.dop-category .dop-btn:hover {
	background: #fff;
}

.open-modal-btn {
	background: #fff;
	border-radius: var(--br);
	width: 200px;
	position: relative;
	padding: 4px 16px;
	font-size: 12px;
	cursor: pointer;
	transition: 0.2s;
}

.open-modal-btn:hover {
	background: #406d9d;
	color: #fff;
}

.open-modal-btn:after {
	content: "\f196";
	position: absolute;
	top: calc(50% - 8px);
	right: 8px;
	font-size: 16px;
}

.section-content-block .but3 {
	padding: 3px;
	width: 165px;
	text-align: center;
}

.s-sett-item {
	display: block;
	margin: 0 0 25px;
	font-size: 12px;
	cursor: pointer;
}

.dop-item {
	align-items: center;
	border-radius: var(--br);
	background: #c7d8e3;
	display: flex;
	position: relative;
	padding: var(--sel-pg);
	padding-right: 32px;
	margin-bottom: 6px;
	flex-wrap: nowrap;
	font-size: 12px;
	column-gap: 4px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 300px;
	min-height: 43px;
	width: 271px !important;
}

.off-btn {
	position: absolute;
	right: 8px;
	font-size: 16px;
	top: calc(50% - 8px);
}

/* END Категория подробно */

/* Кнопка добавить изображение */
.add-jpg {
	border-radius: var(--br);
	bottom: 10px;
	left: 10px;
	color: #bbb;
	padding: 5px 10px;
	position: absolute;
	cursor: pointer;
	z-index: 5;
}

.add-jpg:hover {
	color: #000;
}

.add-jpg input {
	display: none;
}

/* END Кнопка добавить изображение */

/* Свойства подробно */
.box-lane-set div {
	margin: 10px 0 0;
}

.box-lane-set label {
	cursor: pointer;
}

.recom-size {
	position: relative;
	cursor: pointer;
	color: var(--color-dop);
}

.recom-size:hover {
	text-decoration: underline;
}

.img-control {
	background: #d9dbdc;
	border-radius: 0 0 var(--br) var(--br);
	position: relative;
	padding: 5px;
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.img-data {
	font-size: 9px;
	line-height: 1.4;
}

.img-control .fa-trash {
	top: 8px;
	right: 8px;
}

.img-info--wrap {
	position: relative;
	max-width: 350px;
	width: 100%;
}

.img-info {
	border-radius: var(--br);
	position: relative;
	margin-bottom: 6px;
	align-items: center;
	flex-wrap: nowrap;
	height: 35px;
	overflow: hidden;
}

.img-info input {
	border-radius: unset;
	padding: 8px;
	height: 100%;
	margin: 0 !important;
}

.img-alt--sign {
	background: #eee;
	position: relative;
	padding: 8px;
	height: 100%;
	width: 94px;
}

.image-editor-info input {
	width: 50px;
	padding: 3px 5px;
	margin-bottom: 2px;
}

.page-section textarea {
	width: 100%;
	height: 130px;
}

#html_editor,
#css_editor {
	border: none;
	min-height: 200px;
	font-size: 13px;
	padding: 10px;
}

.box-line-edit {
	border-radius: var(--br);
	position: relative;
	padding: 32px 16px 16px;
	flex: 0 1 100%;
	display: none;
}

.box-line-save {
	display: flex;
	padding: 20px 15px 10px;
	flex: 0 1 100%;
	justify-content: flex-end;
}

.box-line-save .but3 {
	padding: 10px 15px;
	height: 15px;
	box-sizing: content-box;
}

.box-line-edit>.input-1,
.edit-content>.input-1 {
	width: 260px;
	margin-bottom: 30px;
}

.edit-content {
	width: 620px;
	/* margin-left: 35px; */
}

.edit-content .fa-plus-square-o {
	padding: 8px 0;
	font-size: 20px;
	margin-left: 0;
	width: 80px;
	text-align: center;
}

.line-edit-img {
	background: #fff;
	box-shadow: 0 1px 2px -2px #000 inset;
	border-radius: var(--br);
	position: relative;
	padding: 10px;
}

.line-edit-img-wrap {
	width: 170px;
	height: auto;
	aspect-ratio: 2/3;
}

.line-edit-img .fa-certificate {
	top: 34%;
	left: 38%;
	z-index: 1;
}

.line-edit-img img {
	z-index: 2;
	width: 100%;
	max-width: 100px;
}

.line-edit-div {
	flex: 1 1 auto;
}

.line-edit-sett {
	width: 200px;
}

.line-edit-sett label {
	display: block;
	cursor: pointer;
	line-height: 1.8;
}

.item-data {
	align-items: center;
	margin-bottom: 6px;
	font-size: 12px;
}

.line-item .item-data .fa {
	position: relative;
	margin-right: 2px;
	font-size: 14px;
	color: #23434a;
}

.size-format select {
	width: 100%;
	font-size: 14px;
}

.line-edit-info select {
	margin: 0 0px 10px;
	width: 230px;
}

.sorting-list {
	position: relative;
	font-size: 12px;
	font-weight: 500;
}

.sorting-list label {
	background: #eee;
	border-radius: var(--br);
	padding: 10px;
	margin-left: 10px;
	cursor: pointer;
}

.sorting-list label:hover {
	background: #f7f7f7;
}

.sorting-list input:checked+label {
	background: #4b5961;
	color: #fff;
}

.parent-category {
	font-weight: bold;
}

/* END Свойства подробно */

/* Стикеры */
.sticker-meta {
	flex: 0 0 54%;
}

.stic-cat .but3 {
	padding: 3px 20px;
}

/* END Стикеры */

/* Бренды, Статьи, Новости */
.brands-list--wrap {
	gap: 20px 12px;
}

.line-item {
	background: #f7f7f7;
	border-radius: var(--br);
	box-shadow: 0 1px 2px -2px #000;
	position: relative;
	flex: 0 0 19%;
	padding: 10px 15px 15px;
	margin: 0 0 20px;
	transition: 0.3s;
}

.item-name {
	display: block;
	font-size: 15px;
	padding: 0 10px 0 0;
	margin-bottom: 10px;
	font-weight: bold;
	cursor: pointer;
	line-height: 1.2;
}

.line-item:hover {
	transform: scale(1.02);
	box-shadow: 0 1px 4px -2px #000;
}

.line-item-img {
	display: flex;
	flex-flow: row nowrap;
	position: relative;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	min-height: 170px;
}

.line-item-img img {
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	aspect-ratio: 3/2;
}

@media screen and (max-width: 1300px) {
	.line-item {
		width: 185px;
	}
}

.line-item-img .fa-bars {
	top: 10px;
	left: 10px;
}

.line-item-img .fa-eye {
	left: 10px;
	bottom: 10px;
	color: #999;
	cursor: pointer;
}

.line-item .fa-trash {
	right: 3px;
	bottom: 3px;
}

.line-item-img .enabled_product,
.line-item-img .not_enabled_product {
	right: 4px;
	top: 8px;
	position: absolute;
}

/* END Бренды, Статьи, Новости */

/* Основные настройки */
.admin-section {
	width: 400px;
}

.qty-simbols span input {
	width: 60px;
	text-align: center;
}

.admin-note-input {
	box-shadow: 0 1px 3px -2px #888;
	background-color: #fbf5d6;
	border-radius: var(--br);
	display: block;
	position: relative;
	padding: 7px 6px;
	font-size: 11px;
	text-align: left;
	transition: 0.2s;
	line-height: 1.3;
	min-height: 15px;
	max-height: 42px;
	overflow: hidden;
	border: 0;
	outline: none;
}

.admin-note-input:focus,
.admin-note-input:active {
	background-color: #fff;
}

/* END Основные настройки */

/* Темы оформления */
.templates-temes {
	width: 180px;
	margin: 10px 25px 25px;
}

.templates-temes img {
	width: 100%;
	padding: 5px 0;
}

.templates-temes .fa-check-square-o:before {
	position: absolute;
	font-size: 22px;
	top: 1px;
	right: -25px;
}

.select-file {
	flex-wrap: nowrap;
	align-items: center;
}

/* .select-file-box {
	background: #f1f1f1;
	border-radius: var(--br);
	padding: 10px 15px;
	font-size: 12px;
} */

/* .select-file-box:hover {
	background: #fff;
} */

/* END Темы оформления */

/* Изображения */
.temes-img {
	background: #fff;
	position: relative;
	margin: 10px;
	line-height: 1;
}

.t-img {
	margin-bottom: 5px;
	width: 160px;
	height: 160px;
}

.t-img img {
	width: 100%;
	align-self: center;
	max-width: 160px;
	max-height: 160px;
}

.temes-img .fa-trash {
	right: 5px;
	bottom: 5px;
}

.block-gallery-img {
	background: #eee;
	position: relative;
	padding: 20px;
	min-height: 200px;
}

.gallery-but {
	background: #dad8d8;
	border-radius: 0 0 var(--br) var(--br);
	position: relative;
	padding: 10px;
}

.add-img-btn {
	padding: 12px 15px;
	margin-right: 40px;
}

.add-img-btn:hover {
	background: #84b3d6 !important;
}

.clear-gallery-btn:hover {
	background: #f7a2a2 !important;
}

/* END Изображения */

/* Шаблоны */
.file.menu-selected {
	background: #748088;
	color: #fff;
}

.edit-file-name {
	margin: 0 0 25px;
}

.mail-file-name {
	width: 200px;
}

.page-textarea .CodeMirror {
	height: 800px;
}

/* END Шаблоны */

/* Табы html редактора */
.editor-tab>div,
.editor-tab>input {
	background: #eee;
	display: none;
}

.editor-file-view {
	position: relative;
	font-size: 13px;
}

.editor-file-view .fa-file-code-o {
	position: relative;
	margin: 10px;
	font-size: 60px;
	vertical-align: middle;
}

.editor-tab>label {
	background: #f5f5f5;
	border-radius: var(--br) var(--br) 0 0;
	display: inline-block;
	min-width: 90px;
	text-align: center;
	padding: 4px 8px;
	font-size: 12px;
	line-height: 2.3;
	color: #999;
	cursor: pointer;
	position: relative;
}

.editor-tab label:hover {
	background: #eee;
	color: #111;
}

.editor-tab>input[type="radio"]:checked+label {
	background: #eee;
	border-bottom: 1px solid #eee;
	min-width: 100px;
	color: #111;
}

.editor-tab>input:nth-of-type(1):checked~div:nth-of-type(1),
.editor-tab>input:nth-of-type(2):checked~div:nth-of-type(2),
.editor-tab>input:nth-of-type(3):checked~div:nth-of-type(3) {
	display: block;
	padding: 15px;
	border-radius: 0 var(--br) var(--br) var(--br);
	min-height: 500px;
}

/* END Табы на странице лендинга */

/* Теги */
.add-new-tag {
	padding-top: 16px;
}

.add-new-tag .input-1 {
	width: 300px;
}

.add-new-tag .but3 {
	padding: 5px 20px;
}

.tags-list {
	padding: 10px 10px 0;
}

.tags-list a {
	background: #fff;
	border-radius: var(--br);
	white-space: nowrap;
	position: relative;
	padding: 8px 30px 8px 10px;
	font-size: 12px;
	margin: 0 5px 10px;
}

.tags-list a:hover {
	background: #dadde0;
}

.tags-list a .fa {
	position: absolute;
	right: 5px;
	top: calc(50% - 6px);
	font-size: 13px;
	transition: 0.3s;
}

.tags-list a .fa:hover {
	color: #111;
	transform: scale(1.2);
}

/* END Теги */

/* Запрет фиксации меню на мобильных экранах */
@media screen and (max-width: 1025px) {
	#main-menu {
		position: static !important;
		transform: translateX(0) !important;
	}

	#left-menu {
		position: static !important;
		transform: translateX(0) !important;
	}

	/* #panel_buttons {
    position: static !important;
    transform: translateX(0) !important;
  } */

	.panel-buttons-bot {
		position: static;
	}
}


.button-dropdown {
	position: relative;
}

.button-dropdown-content {
	background: #fff;
	border-radius: var(--br);
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
	position: absolute;
	padding: 12px;
	min-width: 270px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s ease-in-out;
	transform: translateY(-10px);
	top: 46px;
	right: calc(50% - 70px);
	cursor: default;
}

.button-dropdown:hover .button-dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.button-checkbox {
	background: inherit;
	border-radius: var(--br);
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	column-gap: 10px;
	cursor: pointer;
	padding: 4px 8px;
	margin-bottom: 2px;
	font-size: 13px;
	transition: 0.3s;
	line-height: 1.4;
}

.button-checkbox:hover {
	background: #f8f8f9;
}

.dscroll-arrow {
	position: absolute;
	z-index: 20;
	margin-bottom: -80px;
	width: 50px;
	height: 160px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s linear, visibility 0.2s linear, margin 0.2s linear,
		height 0.2s linear;
	transform: translate3d(0, 48px, 0);
	will-change: transform;
	cursor: pointer;
	display: none;
}

.dscroll-arrow.inited {
	display: block;
}

.dscroll-arrow.show {
	opacity: 0.6;
	visibility: visible;
}

.dscroll-arrow:hover {
	opacity: 0.9;
}

.dscroll-arrow-left {
	left: 0;
	margin-left: -50px;
	background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2042%2081%22%3E%3Cpath%20fill%3D%22%23535c69%22%20opacity%3D%220.3%22%20d%3D%22M0%2C0H1.023A40.977%2C40.977%2C0%2C0%2C1%2C42%2C40.977v0A40.024%2C40.024%2C0%2C0%2C1%2C1.977%2C81H0a0%2C0%2C0%2C0%2C1%2C0%2C0V0A0%2C0%2C0%2C0%2C1%2C0%2C0Z%22/%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M20.8%2C49.09l-8.014-8.576L20.8%2C31.939a0.762%2C0.762%2C0%2C0%2C0%2C0-1.026l-1.563-1.673a0.647%2C0.647%2C0%2C0%2C0-.959%2C0l-8.014%2C8.576h0L8.224%2C40a0.762%2C0.762%2C0%2C0%2C0%2C0%2C1.026L18.28%2C51.788a0.647%2C0.647%2C0%2C0%2C0%2C.959%2C0L20.8%2C50.116A0.761%2C0.761%2C0%2C0%2C0%2C20.8%2C49.09Z%22/%3E%3C/svg%3E") center left no-repeat;
}

.dscroll-arrow-left.show {
	margin-left: 0;
}

.dscroll-arrow-right {
	right: 0;
	left: auto;
	margin-right: -50px;
	background: url("data:image/svg+xml;charset=US-ASCII,%0A%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2042%2081%22%3E%3Cpath%20fill%3D%22%23535c69%22%20opacity%3D%220.3%22%20d%3D%22M40.024%2C0H42a0%2C0%2C0%2C0%2C1%2C0%2C0V81a0%2C0%2C0%2C0%2C1%2C0%2C0H40.977A40.977%2C40.977%2C0%2C0%2C1%2C0%2C40.024v0A40.024%2C40.024%2C0%2C0%2C1%2C40.024%2C0Z%22/%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M20.2%2C31.91l8.014%2C8.576L20.2%2C49.061a0.762%2C0.762%2C0%2C0%2C0%2C0%2C1.026l1.563%2C1.672a0.647%2C0.647%2C0%2C0%2C0%2C.958%2C0l8.014-8.576h0L32.776%2C41a0.762%2C0.762%2C0%2C0%2C0%2C0-1.025L22.72%2C29.212a0.647%2C0.647%2C0%2C0%2C0-.958%2C0L20.2%2C30.885A0.762%2C0.762%2C0%2C0%2C0%2C20.2%2C31.91Z%22/%3E%3C/svg%3E%0A") center right no-repeat;
}

.dscroll-arrow-right.show {
	margin-right: 0;
}

.input-wrap {
	position: relative;
}

.input-icon {
	position: absolute;
	top: -6px;
	cursor: pointer;
	background: #fff;
	border-radius: 6px;
	box-sizing: border-box;
	padding: 4px;
	line-height: 0;
}

.input-icon-right {
	right: -6px;
}

.input-icon-left {
	left: -6px;
}

.input-icon i {
	font-size: 11px;
	opacity: 0.8;
	transition: all 0.2s ease-in-out;
}

.input-icon:hover i {
	opacity: 1;
}

.alert {
	border-radius: var(--br);
	padding: 1rem;
	position: relative;
	font-size: 14px;
	background: transparent;
	border: 1px solid transparent;
}

.alert {
	margin-top: 15px;
}

.alert.alert-warning {
	background-color: #fff3cd;
	border-color: #ffe69c;
	color: #664d03;
}

.alert.alert-error {
	background-color: #f8d7da;
	border-color: #f1aeb5;
	color: #58151c;
}

.alert.alert-success {
	background-color: #d1e7dd;
	border-color: #a3cfbb;
	color: #0a3622;
}

.alert.alert-primary {
	background-color: #cfe2ff;
	border-color: #ceddf4;
	color: #052c65;
}

.ppm-loader,
.box-modal-loader,
.tabs-loader {
	text-align: center;
	margin: 0;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s linear, visibility 0.2s linear, margin 0.2s linear;
}

.ppm-loader .text,
.box-modal-loader .text,
.tabs-loader .text {
	margin-top: 14px;
	font-size: 13px;
}

.ppm-loader.overlay,
.box-modal-loader.overlay,
.tabs-loader.overlay {
	background: rgba(255, 255, 255, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 100;
	border-radius: var(--br);
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: space-around;
	justify-content: space-evenly;
	align-items: center;
}

.ppm-loader.show,
.box-modal-loader.show,
.tabs-loader.show {
	opacity: 1;
	visibility: visible;
}

.ppm-loader.overlay .text,
.box-modal-loader.overlay .text,
.tabs-loader.overlay .text {
	display: none;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Fancybox castom css */
button.f-button {
	border-radius: var(--br);
	background: transparent;
}

button.f-button:hover {
	background: var(--f-button-bg)
}