/*
 * Cabinet-specific styles for GlobalUNIA-3.
 *
 * Use this for shared company/user cabinet layout fixes once they no longer
 * need to live next to a single override during active debugging.
 */

.company-dashboard {
	margin-bottom: 30px;
}

/*
 * Company cabinet shared UI primitives.
 *
 * New non-product cabinet pages should start here before adding page-specific
 * classes. Product-specific screens can keep their existing section classes.
 */

.company-cabinet-page {
	margin-bottom: 30px;
	color: #172033;
}

.company-cabinet-page__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
}

.company-cabinet-page__header-copy {
	flex: 1 1 auto;
	min-width: 0;
}

.company-cabinet-page__eyebrow {
	display: block;
	margin-bottom: 5px;
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.company-cabinet-page__title {
	margin: 0 0 8px;
	color: #172033;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.15;
}

.company-cabinet-page__intro {
	max-width: 760px;
	margin: 0;
	color: #526173;
	font-size: 15px;
	line-height: 1.5;
}

.company-cabinet-page__actions,
.company-cabinet-page__action-grid,
.company-cabinet-page__filter-actions,
.company-cabinet-page__cell--actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.company-cabinet-page__actions {
	flex: 0 0 auto;
	justify-content: flex-end;
}

.company-cabinet-page__actions .btn,
.company-cabinet-page__action-grid .btn,
.company-cabinet-page__filter-actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 8px 14px;
	border-radius: 4px;
	line-height: 1.25;
	white-space: normal;
}

.company-cabinet-page__actions .btn .glyphicon,
.company-cabinet-page__action-grid .btn .glyphicon,
.company-cabinet-page__filter-actions .btn .glyphicon,
.company-cabinet-page__icon-action .glyphicon {
	top: 0;
	line-height: 1;
}

.company-cabinet-page__actions .btn-primary,
.company-cabinet-page__action-grid .btn-primary {
	padding-right: 16px;
	padding-left: 16px;
	background: #155bd7;
	border-color: #155bd7;
	box-shadow: 0 8px 18px rgba(21, 91, 215, 0.22);
	font-weight: 700;
}

.company-cabinet-page__actions .btn-primary:hover,
.company-cabinet-page__actions .btn-primary:focus,
.company-cabinet-page__action-grid .btn-primary:hover,
.company-cabinet-page__action-grid .btn-primary:focus {
	background: #0f4fbf;
	border-color: #0f4fbf;
}

.company-cabinet-page__actions .btn-default,
.company-cabinet-page__action-grid .btn-default,
.company-cabinet-page__filter-actions .btn-default {
	color: #172033;
	background: #fff;
	border-color: #d9e2ee;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
	font-weight: 600;
}

.company-cabinet-page__layout {
	display: grid;
	gap: 16px;
	align-items: start;
}

.company-cabinet-page__layout--split {
	grid-template-columns: minmax(0, 1fr) 280px;
}

.company-cabinet-page__layout--with-left-note {
	grid-template-columns: 280px minmax(0, 1fr);
}

.company-cabinet-page__main,
.company-cabinet-page__sidebar {
	display: grid;
	gap: 14px;
	min-width: 0;
}

.company-cabinet-page__panel,
.company-cabinet-page__filters,
.company-cabinet-page__list-panel,
.company-cabinet-page__message {
	min-width: 0;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.company-cabinet-page__panel {
	overflow: hidden;
}

.company-cabinet-page__panel-heading,
.company-cabinet-page__list-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 18px;
	background: #fff;
	border-bottom: 1px solid #d9e2ee;
}

.company-cabinet-page__panel-heading h2,
.company-cabinet-page__list-heading h2 {
	margin: 0;
	color: #132238;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.company-cabinet-page__panel-body {
	padding: 18px;
}

.company-cabinet-page__fields {
	display: grid;
	gap: 14px;
}

.company-cabinet-page__form-row {
	display: grid;
	grid-template-columns: minmax(150px, .38fr) minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.company-cabinet-page__field,
.company-cabinet-page__filter-field {
	display: grid;
	gap: 6px;
	min-width: 0;
	margin: 0;
}

.company-cabinet-page__label,
.company-cabinet-page__filter-field > span {
	color: #243247;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.company-cabinet-page__control {
	min-width: 0;
}

.company-cabinet-page__control .form-control,
.company-cabinet-page__control input[type="text"],
.company-cabinet-page__control input[type="email"],
.company-cabinet-page__control input[type="number"],
.company-cabinet-page__control input[type="file"],
.company-cabinet-page__control select,
.company-cabinet-page__control textarea,
.company-cabinet-page__filter-field .form-control,
.company-cabinet-page__filter-field select {
	max-width: 100%;
	border-color: #d9e2ee;
	border-radius: 4px;
	box-shadow: none;
}

.company-cabinet-page__control input[type="text"],
.company-cabinet-page__control input[type="email"],
.company-cabinet-page__control input[type="number"],
.company-cabinet-page__control select,
.company-cabinet-page__control textarea {
	width: 100%;
	min-height: 38px;
}

.company-cabinet-page__control input[type="file"] {
	display: block;
	width: 100%;
	min-height: 38px;
	padding: 7px 10px;
	color: #172033;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
	box-shadow: none;
	font-weight: 400;
	line-height: 1.35;
}

.company-cabinet-page__control input[type="file"]:focus {
	border-color: #8bb8ff;
	box-shadow: 0 0 0 3px rgba(21, 91, 215, 0.12);
	outline: 0;
}

.company-cabinet-page__field-help {
	max-width: none;
	margin: 6px 0 0;
	color: #6b7280;
	font-size: 12px;
	line-height: 1.4;
}

.company-cabinet-page__filters {
	margin-bottom: 16px;
	padding: 18px;
}

.company-cabinet-page__filter-grid {
	display: grid;
	grid-template-columns: minmax(240px, 1.4fr) minmax(180px, .7fr) auto;
	gap: 12px;
	align-items: end;
}

.company-cabinet-page__filter-field .form-control,
.company-cabinet-page__filter-field select {
	width: 100%;
	height: 46px;
	padding-top: 6px;
	padding-bottom: 6px;
	line-height: 1.25;
}

.company-cabinet-page__list-panel {
	overflow: visible;
}

.company-cabinet-page__list {
	display: block;
}

.company-cabinet-page__list-head,
.company-cabinet-page__list-row {
	display: grid;
	gap: 12px;
	align-items: center;
}

.company-cabinet-page__list-head {
	padding: 14px 18px;
	color: #475569;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
	font-size: 13px;
	font-weight: 700;
}

.company-cabinet-page__list-row {
	min-height: 76px;
	padding: 16px 18px;
	border-bottom: 1px solid #e2e8f0;
}

.company-cabinet-page__list-row:hover {
	background: #fbfdff;
}

.company-cabinet-page__cell {
	min-width: 0;
}

.company-cabinet-page__cell--actions {
	justify-content: flex-end;
}

.company-cabinet-page__item-title {
	color: #0f4fbf;
	font-weight: 700;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.company-cabinet-page__status {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-height: 26px;
	padding: 4px 8px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.company-cabinet-page__status.is-success {
	color: #14783b;
	background: #eaf8ef;
	border-color: #bce7c9;
}

.company-cabinet-page__status.is-warning {
	color: #a65f00;
	background: #fff3e1;
	border-color: #ffdba6;
}

.company-cabinet-page__status.is-danger {
	color: #b91c1c;
	background: #ffecec;
	border-color: #ffc8c8;
}

.company-cabinet-page__status.is-muted {
	color: #526173;
	background: #eef2f7;
	border-color: #d9e2ee;
}

.company-cabinet-page__icon-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #334155;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
	cursor: pointer;
	font: inherit;
	line-height: 1;
	text-decoration: none;
}

.company-cabinet-page__icon-action:hover,
.company-cabinet-page__icon-action:focus {
	color: #0b5fce;
	background: #eef5ff;
	border-color: #b8c8dc;
	text-decoration: none;
}

.company-cabinet-page__icon-action.is-danger {
	color: #b91c1c;
}

.company-cabinet-page__icon-action.is-success {
	color: #14783b;
}

.company-cabinet-page__empty,
.company-cabinet-page__message {
	padding: 22px;
	color: #526173;
	text-align: center;
}

.company-cabinet-page__empty h2,
.company-cabinet-page__message h2 {
	margin: 0 0 8px;
	color: #172033;
	font-size: 19px;
	font-weight: 700;
}

.company-cabinet-page__footer {
	display: flex;
	justify-content: flex-end;
	padding: 14px 18px;
	background: #f8fafc;
	border-top: 1px solid #d9e2ee;
}

.company-cabinet-page__note-list {
	margin: 10px 0 0;
	padding-left: 18px;
	color: #526173;
}

.company-cabinet-page__note-list li + li {
	margin-top: 8px;
}

.company-cabinet-page__form-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	margin-top: 14px;
	padding: 12px 16px;
	border: 1px solid #d9e2ee;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 -2px 8px rgba(17, 43, 74, 0.08);
}

.company-cabinet-page__form-actions-buttons {
	display: flex;
	align-items: center;
	gap: 8px;
}

.company-cabinet-page__form-actions-buttons.btn-group > .btn {
	float: none;
}

.company-cabinet-page__form-actions-buttons.btn-group > .btn + .btn {
	margin-left: 0;
}

.company-cabinet-page__form-actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 8px 14px;
	border-radius: 4px !important;
	font-weight: 600;
	line-height: 1.2;
	white-space: normal;
}

.company-cabinet-page__form-actions .btn .glyphicon {
	top: 0;
	line-height: 1;
}

.company-cabinet-page__form-actions .btn-primary {
	padding-right: 16px;
	padding-left: 16px;
	background: #155bd7;
	border-color: #155bd7;
	box-shadow: 0 8px 18px rgba(21, 91, 215, 0.22);
	font-weight: 700;
}

.company-cabinet-page__form-actions .btn-primary:hover,
.company-cabinet-page__form-actions .btn-primary:focus {
	background: #0f4fbf;
	border-color: #0f4fbf;
}

.company-cabinet-page__form-actions .company-cabinet-page__cancel-action {
	padding-right: 10px;
	padding-left: 10px;
	color: #526173;
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.company-cabinet-page__form-actions .company-cabinet-page__cancel-action:hover,
.company-cabinet-page__form-actions .company-cabinet-page__cancel-action:focus {
	color: #0b5fce;
	background: #f4f7fb;
	border-color: #d9e2ee;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	text-decoration: none;
}

.company-cabinet-page__progress-label {
	display: block;
	margin-bottom: 8px;
	color: #243247;
	font-weight: 700;
}

.company-cabinet-page__file-list {
	display: grid;
	gap: 8px;
	min-height: 34px;
	padding: 10px 12px;
	background: #f8fafc;
	border: 1px dashed #d9e2ee;
	border-radius: 4px;
}

/*
 * Company image manager.
 */

.company-images-page__layout {
	grid-template-columns: minmax(0, 1fr) 300px;
}

.company-images-page__media-heading {
	align-items: flex-start;
}

.company-images-page__album-trail {
	margin: 6px 0 0;
	color: #526173;
	font-size: 13px;
	line-height: 1.4;
}

.company-images-page__album-trail a,
.company-images-page__panel-link {
	color: #0f4fbf;
	font-weight: 700;
	text-decoration: none;
}

.company-images-page__album-trail a:hover,
.company-images-page__album-trail a:focus,
.company-images-page__panel-link:hover,
.company-images-page__panel-link:focus {
	color: #0b5fce;
	text-decoration: underline;
}

.company-images-page__panel-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	line-height: 1.25;
}

.company-images-page__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));
	gap: 14px;
	padding: 18px;
}

.company-images-page__card {
	display: grid;
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.company-images-page__thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 148px;
	padding: 12px;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}

.company-images-page__thumb img {
	display: block;
	max-width: 100%;
	max-height: 136px;
	object-fit: contain;
}

.company-images-page__card-body {
	display: grid;
	gap: 12px;
	padding: 12px;
}

.company-images-page__card-body h3 {
	min-height: 34px;
	margin: 0;
	color: #172033;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.company-images-page__card-actions,
.company-images-page__album-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}

.company-images-page__card-actions {
	justify-content: flex-start;
}

.company-images-page__inline-action {
	display: inline-flex;
	margin: 0;
}

.company-images-page__albums {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.company-images-page__album {
	display: grid;
	gap: 8px;
	padding: 10px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
}

.company-images-page__album.is-current {
	background: #eef5ff;
	border-color: #b9d2f7;
}

.company-images-page__album-title {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 8px;
	align-items: center;
	color: #172033;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.company-images-page__album-title:hover,
.company-images-page__album-title:focus {
	color: #0b5fce;
	text-decoration: none;
}

.company-images-page__album-title .glyphicon {
	top: 0;
	color: #155bd7;
}

.company-images-page__albums-help {
	margin-top: 14px;
}

.company-image-form__panel,
.company-image-album-form__panel {
	max-width: 860px;
}

.company-image-form .company-cabinet-page__form-row,
.company-image-album-form .company-cabinet-page__form-row {
	grid-template-columns: minmax(0, 1fr);
	gap: 7px;
}

.company-image-form__preview {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 320px;
	min-height: 180px;
	padding: 12px;
	background: #f8fafc;
	border: 1px solid #d9e2ee;
	border-radius: 8px;
}

.company-image-form__preview img {
	display: block;
	max-width: 100%;
	max-height: 240px;
	object-fit: contain;
}

.company-image-form .company-cabinet-page__control input[type="file"].btn,
.company-image-form .company-cabinet-page__control input[type="file"].btn-primary {
	text-align: left;
	white-space: normal;
	color: #172033;
	background: #fff;
	border-color: #d9e2ee;
	box-shadow: none;
}

.company-image-codes {
	max-width: 760px;
	margin: 0 auto;
	padding: 18px;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}

.company-image-codes * {
	box-sizing: border-box;
}

.company-image-codes .company-cabinet-page__title {
	font-size: 22px;
	line-height: 1.2;
}

.company-image-codes__header {
	margin-bottom: 14px;
}

.company-image-codes__summary {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 14px;
	background: #f8fafc;
	border: 1px solid #d9e2ee;
	border-radius: 6px;
}

.company-image-codes__preview {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 112px;
	padding: 10px;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 6px;
}

.company-image-codes__preview img {
	display: block;
	max-width: 100%;
	max-height: 112px;
	object-fit: contain;
}

.company-image-codes__summary-copy h2 {
	margin: 0 0 6px;
	color: #172033;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.company-image-codes__summary-copy p {
	margin: 0;
	color: #526173;
	font-size: 14px;
	line-height: 1.45;
}

.company-image-codes__options {
	display: grid;
	gap: 12px;
	margin-top: 14px;
}

.company-image-codes__option {
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 6px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
	overflow: hidden;
}

.company-image-codes__option-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(190px, .68fr);
	gap: 12px;
	align-items: start;
	padding: 14px 14px 10px;
}

.company-image-codes__option-head h2 {
	margin: 5px 0 0;
	color: #172033;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.company-image-codes__option-head p {
	margin: 0;
	color: #526173;
	font-size: 13px;
	line-height: 1.4;
}

.company-image-codes__tag {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 2px 8px;
	color: #155bd7;
	background: #eef5ff;
	border: 1px solid #c9dcfb;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
}

.company-image-codes__code-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	align-items: stretch;
	padding: 0 14px 14px;
}

.company-image-codes__textarea {
	width: 100%;
	min-height: 62px;
	padding: 9px 10px;
	color: #172033;
	background: #f8fafc;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
	font-family: Consolas, "Liberation Mono", Menlo, monospace;
	font-size: 12px;
	line-height: 1.4;
	resize: vertical;
	overflow-wrap: anywhere;
}

.company-image-codes__textarea:focus {
	background: #fff;
	border-color: #155bd7;
	box-shadow: 0 0 0 3px rgba(21, 91, 215, 0.14);
	outline: 0;
}

.company-image-codes__copy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 132px;
	min-height: 40px;
	padding: 8px 12px;
	color: #172033;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
	font-weight: 700;
	line-height: 1.25;
	white-space: nowrap;
}

.company-image-codes__copy .glyphicon {
	top: 0;
	line-height: 1;
}

.company-image-codes__copy:hover,
.company-image-codes__copy:focus {
	color: #0b5fce;
	background: #eef5ff;
	border-color: #b8c8dc;
	outline: 0;
}

.company-image-codes__copy.is-copied {
	color: #14783b;
	background: #f0fdf4;
	border-color: #bbf7d0;
}

.company-image-codes__empty {
	margin: 0;
}

.company-articles-page__list-head,
.company-articles-page__row {
	grid-template-columns: minmax(180px, 1fr) 136px 150px 170px;
}

.company-articles-page__row-action {
	display: inline-flex;
	margin: 0;
}

.company-shops-page__list-head,
.company-shops-page__row {
	grid-template-columns: minmax(180px, 1fr) 136px 170px;
}

.company-shops-page__row-action {
	display: inline-flex;
	margin: 0;
}

.company-clients-page__list-head,
.company-clients-page__row {
	grid-template-columns: minmax(170px, 1fr) minmax(110px, .72fr) minmax(150px, .95fr) minmax(120px, .78fr) 150px 72px;
}

.company-clients-page__header-form {
	display: inline-flex;
	margin: 0;
}

.company-clients-page__filter-grid {
	grid-template-columns: minmax(240px, 1fr) auto;
}

.company-clients-page__contact,
.company-clients-page__date {
	color: #334155;
	overflow-wrap: anywhere;
}

.company-client-form__form {
	display: grid;
	gap: 14px;
}

.company-client-form__panel {
	max-width: 860px;
}

.company-client-form__required {
	color: #b91c1c;
}

.company-client-form__address-row .company-cabinet-page__control > * {
	max-width: 100%;
}

.company-client-form__address-row .company-cabinet-page__control > .row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-right: 0;
	margin-left: 0;
}

.company-client-form__address-row .company-cabinet-page__control > .row:before,
.company-client-form__address-row .company-cabinet-page__control > .row:after {
	display: none;
}

.company-client-form__address-row .company-cabinet-page__control > .row > [class*="col-"] {
	float: none;
	width: auto;
	padding-right: 0;
	padding-left: 0;
}

.company-clients-page .company-cabinet-page__empty .company-cabinet-page__action-grid {
	justify-content: center;
	margin-top: 14px;
}

.company-clients-page__summary {
	display: grid;
	gap: 12px;
	min-width: 0;
	padding: 16px;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-left: 4px solid #155bd7;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.company-clients-page__summary h2 {
	margin: 0;
	color: #132238;
	font-size: 18px;
	font-weight: 700;
}

.company-clients-page__summary p {
	margin: 0;
	color: #526173;
	font-size: 14px;
	line-height: 1.45;
}

.company-clients-page__restricted-message {
	display: grid;
	gap: 12px;
	align-content: start;
	text-align: left;
}

.company-clients-page__restricted-message h2,
.company-clients-page__restricted-message p {
	margin-right: 0;
	margin-left: 0;
}

.company-clients-page__restricted-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: #155bd7;
	background: #eef5ff;
	border: 1px solid #c9daf4;
	border-radius: 8px;
}

.company-clients-page__restricted-list {
	display: grid;
	gap: 10px;
	margin: 2px 0 0;
}

.company-clients-page__restricted-list li {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 9px;
	align-items: start;
	color: #243247;
	font-weight: 600;
	line-height: 1.35;
}

.company-clients-page__restricted-list .glyphicon {
	top: 2px;
	color: #155bd7;
}

.company-orders-page__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.company-orders-page__tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	justify-content: space-between;
	min-height: 34px;
	padding: 7px 12px;
	color: #172033;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none;
}

.company-orders-page__tab-label {
	min-width: 0;
	overflow-wrap: anywhere;
}

.company-orders-page__tab-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 24px;
	min-height: 22px;
	padding: 2px 7px;
	color: #155bd7;
	background: #eef5ff;
	border: 1px solid #c9dcf5;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.company-orders-page__tab:hover,
.company-orders-page__tab:focus {
	color: #0b5fce;
	background: #eef5ff;
	border-color: #b8c8dc;
	text-decoration: none;
}

.company-orders-page__tab.is-active {
	color: #fff;
	background: #155bd7;
	border-color: #155bd7;
	box-shadow: 0 8px 18px rgba(21, 91, 215, 0.18);
}

.company-orders-page__tab.is-active .company-orders-page__tab-count {
	color: #155bd7;
	background: #fff;
	border-color: #fff;
}

.company-orders-page__list-head,
.company-orders-page__row {
	grid-template-columns: 124px 148px minmax(150px, .9fr) 120px minmax(150px, .9fr) minmax(210px, 1fr);
}

.company-orders-page__number,
.company-orders-page__amount {
	color: #172033;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.company-orders-page__plain-popup,
.company-orders-page__detail-button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: 100%;
	padding: 0;
	color: #0f4fbf;
	background: transparent;
	border: 0;
	border-bottom: 1px dashed rgba(15, 79, 191, 0.45);
	font: inherit;
	font-weight: 700;
	line-height: 1.35;
	text-align: left;
	overflow-wrap: anywhere;
}

.company-orders-page__plain-popup:hover,
.company-orders-page__plain-popup:focus,
.company-orders-page__detail-button:hover,
.company-orders-page__detail-button:focus {
	color: #0b5fce;
	border-bottom-color: #0b5fce;
	outline: 0;
}

.company-orders-page__detail-button .glyphicon {
	top: 0;
	line-height: 1;
}

.company-orders-page__edit-link {
	display: inline-flex;
	margin-top: 6px;
	color: #526173;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
}

.company-orders-page__status-cell {
	display: grid;
	gap: 8px;
	align-items: start;
}

.company-orders-page__status-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	min-width: 0;
}

.company-orders-page__status-action {
	display: inline-flex;
	margin: 0;
}

.company-orders-page__status-button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 30px;
	padding: 5px 9px;
	color: #172033;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
}

.company-orders-page__status-button:hover,
.company-orders-page__status-button:focus {
	color: #0b5fce;
	background: #eef5ff;
	border-color: #b8c8dc;
	outline: 0;
}

.company-orders-page__status-button.is-danger {
	color: #b91c1c;
}

.company-orders-page__status-button .glyphicon {
	top: 0;
	line-height: 1;
}

.company-orders-page__pagination .pagination {
	margin: 0;
}

.company-orders-page__export {
	margin-top: 16px;
}

.company-orders-page__export-help {
	margin: 0 0 14px;
	color: #526173;
	font-size: 14px;
	line-height: 1.45;
}

.company-orders-page__export-link {
	display: grid;
	gap: 6px;
	margin-bottom: 14px;
	padding: 10px 12px;
	background: #f8fafc;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
}

.company-orders-page__export-link span {
	color: #243247;
	font-size: 13px;
	font-weight: 700;
}

.company-orders-page__export-link a {
	color: #0f4fbf;
	font-weight: 700;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.company-orders-page__summary h2 {
	margin: 0;
	color: #132238;
	font-size: 18px;
	font-weight: 700;
}

.company-orders-page__summary p {
	margin: 0;
	color: #526173;
	font-size: 14px;
	line-height: 1.45;
}

.company-orders-page__restricted-message {
	display: grid;
	gap: 12px;
	align-content: start;
	text-align: left;
}

.company-orders-page__restricted-message h2,
.company-orders-page__restricted-message p {
	margin-right: 0;
	margin-left: 0;
}

.company-orders-page__restricted-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: #155bd7;
	background: #eef5ff;
	border: 1px solid #c9daf4;
	border-radius: 8px;
}

.company-orders-page__restricted-list {
	display: grid;
	gap: 10px;
	margin: 2px 0 0;
}

.company-orders-page__restricted-list li {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 9px;
	align-items: start;
	color: #243247;
	font-weight: 600;
	line-height: 1.35;
}

.company-orders-page__restricted-list .glyphicon {
	top: 2px;
	color: #155bd7;
}

.company-article-form .company-cabinet-page__panel {
	overflow: visible;
}

.company-article-form__layout {
	grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
}

.company-article-form .company-cabinet-page__fields {
	gap: 16px;
}

.company-article-form .company-cabinet-page__form-row {
	grid-template-columns: minmax(0, 1fr);
	gap: 7px;
}

.company-article-form__editor-control > *,
.company-article-form__editor-control table,
.company-article-form__editor-control iframe {
	max-width: 100%;
}

.company-article-form__editor-control table.mceLayout,
.company-article-form__editor-control .mce-tinymce {
	width: 100% !important;
}

.company-article-form__editor-control iframe {
	min-height: 260px;
}

.company-article-form .company-cabinet-page__control input[type="file"].btn {
	text-align: left;
	white-space: normal;
}

.company-article-form .company-cabinet-page__control input[type="file"].btn-primary {
	color: #172033;
	background: #fff;
	border-color: #d9e2ee;
	box-shadow: none;
}

.company-article-form__image-preview {
	margin-bottom: 14px;
	padding: 10px;
	background: #f8fafc;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
}

.company-article-form__image-preview img {
	display: block;
	width: 100%;
	max-height: 220px;
	object-fit: contain;
	border-radius: 3px;
}

.company-shop-form .company-cabinet-page__panel {
	overflow: visible;
}

.company-shop-form .company-cabinet-page__fields {
	gap: 16px;
}

.company-shop-form .company-cabinet-page__form-row {
	grid-template-columns: minmax(0, 1fr);
	gap: 7px;
}

.company-shop-form__map-row {
	align-items: start;
}

.company-shop-form__map-row .company-cabinet-page__control > * {
	max-width: 100%;
}

/*
 * Company sitemap info.
 */

.company-sitemap-page__url-block {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.company-sitemap-page__url {
	display: inline-flex;
	max-width: 100%;
	color: #155bd7;
	font-weight: 700;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.company-import-page .company-cabinet-page__layout,
.company-export-page .company-cabinet-page__layout {
	margin-top: 0;
}

.company-export-page__progress {
	display: grid;
	gap: 16px;
}

/*
 * Company site settings.
 */

.company-site-settings-page__form {
	margin: 0;
}

.company-site-settings-page__layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.company-site-settings-page__nav {
	overflow: hidden;
}

.company-site-settings-page__tabs {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 8px;
}

.company-site-settings-page__tabs > li {
	display: block;
	margin: 0;
}

.company-site-settings-page__tabs > li > a {
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 10px 12px;
	color: #243247;
	border: 1px solid transparent;
	border-radius: 6px;
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.company-site-settings-page__tabs > li.active > a,
.company-site-settings-page__tabs > li > a:hover,
.company-site-settings-page__tabs > li > a:focus {
	color: #0f4fbf;
	background: #eef5ff;
	border-color: #cfe0f7;
	text-decoration: none;
}

.company-site-settings-page__content {
	min-width: 0;
}

.company-site-settings-page__content > .tab-pane {
	display: none;
}

.company-site-settings-page__content > .tab-pane.active {
	display: block;
}

.company-site-settings-page__panel {
	margin: 0;
}

.company-site-settings-page__panel-intro {
	margin: 0 0 14px;
	color: #526173;
	line-height: 1.5;
}

.company-site-settings-page__field-row .company-cabinet-page__control > .btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	max-width: 100%;
}

.company-site-settings-page__field-row .company-cabinet-page__control > .btn-group .btn,
.company-site-settings-page__field-row .company-cabinet-page__control > .btn-group input.btn,
.company-site-settings-page__field-row .company-cabinet-page__control > .btn-group select.btn {
	float: none;
	min-height: 38px;
	margin: 0;
	border-radius: 4px !important;
}

.company-site-settings-page__field-row .company-cabinet-page__control > .btn-group input.btn {
	min-width: 180px;
	text-align: left;
}

.company-site-settings-page__field-row--field-siteaddress .company-cabinet-page__control > .btn-group {
	display: grid;
	grid-template-columns: auto minmax(180px, 1fr) minmax(130px, 190px);
	gap: 0;
	max-width: 640px;
	align-items: stretch;
}

.company-site-settings-page__field-row--field-siteaddress .company-cabinet-page__control > .btn-group .btn {
	display: flex;
	align-items: center;
	min-height: 44px;
	margin: 0;
	border-color: #d9e2ee;
	border-radius: 0 !important;
	box-shadow: none;
	font-weight: 400;
}

.company-site-settings-page__field-row--field-siteaddress .company-cabinet-page__control > .btn-group > span.btn {
	border-radius: 6px 0 0 6px !important;
	color: #172033;
	background: #eef5ff;
}

.company-site-settings-page__field-row--field-siteaddress .company-cabinet-page__control > .btn-group > input.btn {
	width: 100%;
	min-width: 0;
	color: #526173;
	background: #fff;
	text-align: left;
}

.company-site-settings-page__field-row--field-siteaddress .company-cabinet-page__control > .btn-group > select.btn {
	width: 100%;
	min-width: 0;
	border-radius: 0 6px 6px 0 !important;
	color: #526173;
	background: #fff;
	text-align: center;
}

.company-site-settings-page__field-row--field-siteaddress .company-cabinet-page__control > .btn-group > .btn + .btn {
	border-left: 0;
}

.company-site-settings-page__field-row--field-users-menu .usersmenu {
	display: grid;
	gap: 10px;
	max-width: 760px;
}

.company-site-settings-page__field-row--field-users-menu .usersmenu > .row {
	display: grid;
	grid-template-columns: minmax(190px, 0.9fr) minmax(280px, 1.4fr);
	gap: 12px;
	align-items: center;
	margin: 0;
}

.company-site-settings-page__field-row--field-users-menu .usersmenu > .row:before,
.company-site-settings-page__field-row--field-users-menu .usersmenu > .row:after {
	display: none;
	content: none;
}

.company-site-settings-page__field-row--field-users-menu .usersmenu > .row > [class*="col-"] {
	float: none;
	width: auto;
	min-width: 0;
	padding: 0;
}

.company-site-settings-page__field-row--field-users-menu .usersmenu .input-group {
	display: flex;
	width: 100%;
	align-items: stretch;
}

.company-site-settings-page__field-row--field-users-menu .usersmenu .input-group-addon {
	display: flex;
	align-items: center;
	width: auto;
	min-height: 40px;
	color: #243247;
	background: #f8fafc;
	border-color: #d9e2ee;
	font-weight: 600;
	white-space: nowrap;
}

.company-site-settings-page__field-row--field-users-menu .usersmenu .form-control {
	flex: 1 1 auto;
	min-width: 0;
	height: 40px;
	border-color: #d9e2ee;
	box-shadow: none;
}

.company-site-settings-page__field-row--field-users-menu .usersmenu select.form-control {
	overflow: hidden;
	text-overflow: ellipsis;
}

.company-site-settings-page__field-row--field-users-menu .usersmenu .glyphicon-remove {
	justify-content: center;
	flex: 0 0 42px;
	color: #dc2626 !important;
	text-decoration: none;
}

.company-site-settings-page__field-row--field-users-menu .button02 {
	display: inline-flex;
	align-items: center;
	width: max-content;
	max-width: 100%;
	margin-top: 10px;
	color: #0f4fbf;
	font-weight: 600;
	text-decoration: none;
}

.company-site-settings-page__field-row--field-users-menu .button02:hover,
.company-site-settings-page__field-row--field-users-menu .button02:focus {
	color: #0b3f99;
	text-decoration: underline;
}

.company-site-settings-page .multimg {
	display: grid;
	gap: 8px;
	max-width: 420px;
	padding: 10px;
	background: #f8fafc;
	border: 1px solid #d9e2ee;
	border-radius: 6px;
}

.company-site-settings-page .multimg + .multimg {
	margin-top: 8px;
}

.company-site-settings-page .multimg .img img,
.company-site-settings-page__image-preview img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

.company-site-settings-page__image-preview {
	margin-top: 10px;
}

.company-site-settings-page__domain-summary,
.company-site-settings-page__domain-form {
	display: grid;
	gap: 12px;
}

.company-site-settings-page__domain-method {
	padding: 12px 14px;
	background: #f8fafc;
	border: 1px solid #d9e2ee;
	border-radius: 6px;
}

.company-site-settings-page__domain-method h3 {
	margin: 0 0 6px;
	color: #172033;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.company-site-settings-page__domain-method p {
	margin: 0;
	color: #526173;
	line-height: 1.45;
}

.company-site-settings-page__domain-method strong {
	color: #172033;
}

.company-site-settings-page__domain-form {
	margin-top: 16px;
}

.company-site-settings-page__domain-input {
	max-width: 420px;
}

.company-site-settings-page__domain-result {
	margin: 12px 0 0;
}

/*
 * Company notification settings.
 */

.company-notification-page__form {
	display: grid;
	gap: 14px;
}

.company-notification-page__panel-intro,
.company-notification-page__save-note,
.company-notification-page__summary p {
	margin: 0;
	color: #526173;
	font-size: 14px;
	line-height: 1.45;
}

.company-notification-page__panel-intro {
	margin-bottom: 14px;
}

.company-notification-page__field-row--checks {
	padding-top: 2px;
}

.company-notification-page__required {
	color: #b91c1c;
}

.company-notification-page .company-cabinet-page__control fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.company-notification-page .company-cabinet-page__control fieldset ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.company-notification-page .company-cabinet-page__control fieldset li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
	margin: 0;
	color: #243247;
	line-height: 1.4;
}

.company-notification-page .company-cabinet-page__control fieldset input[type="checkbox"] {
	position: static;
	flex: 0 0 auto;
	margin: 3px 0 0;
}

.company-notification-page .company-cabinet-page__control fieldset label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
	margin: 0;
	font-weight: 600;
	overflow-wrap: anywhere;
}

.company-notification-page .company-cabinet-page__control fieldset input[disabled] + label,
.company-notification-page .company-cabinet-page__control fieldset input[disabled] ~ label {
	color: #8a97a8;
}

.company-notification-page__notice {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 10px 12px;
	color: #526173;
	background: #f8fafc;
	border: 1px solid #d9e2ee;
	border-radius: 6px;
	font-size: 13px;
	line-height: 1.4;
}

.company-notification-page__notice .glyphicon {
	top: 2px;
	color: #155bd7;
}

.company-notification-page__summary {
	display: grid;
	gap: 12px;
	min-width: 0;
	padding: 16px;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.company-notification-page__summary h2 {
	margin: 0;
	color: #132238;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.company-notification-page__summary-list {
	display: grid;
	gap: 10px;
	margin: 2px 0 0;
}

.company-notification-page__summary-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
	padding-top: 10px;
	border-top: 1px solid #eef2f7;
}

.company-notification-page__summary-list li > span {
	min-width: 0;
	color: #243247;
	font-weight: 600;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.company-payments-page__form {
	display: grid;
	gap: 14px;
}

.company-payments-page__panel-intro,
.company-payments-page__save-note,
.company-payments-page__summary p {
	margin: 0;
	color: #526173;
	font-size: 14px;
	line-height: 1.45;
}

.company-payments-page__panel-intro {
	margin-bottom: 14px;
}

.company-payments-page__provider-panel[hidden] {
	display: none !important;
}

.company-payments-page__required {
	color: #b91c1c;
}

.company-payments-page__control--bsradio fieldset {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.company-payments-page__control--bsradio .radio {
	margin: 0;
}

.company-payments-page__control--bsradio label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	margin: 0;
	padding: 7px 10px;
	color: #243247;
	font-weight: 600;
	background: #f8fafc;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
}

.company-payments-page__control--bsradio input[type="radio"] {
	position: static;
	margin: 0;
}

.company-payments-page__summary {
	display: grid;
	gap: 12px;
	min-width: 0;
	padding: 16px;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-left: 4px solid #155bd7;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.company-payments-page__summary h2 {
	margin: 0;
	color: #132238;
	font-size: 18px;
	font-weight: 700;
}

.company-payments-page__summary-list,
.company-payments-page__restricted-list {
	display: grid;
	gap: 10px;
	margin: 2px 0 0;
}

.company-payments-page__summary-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #eef2f7;
}

.company-payments-page__summary-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.company-payments-page__summary-list li > span {
	min-width: 0;
	color: #243247;
	font-weight: 600;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.company-payments-page__provider-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.company-payments-page__provider-chip {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 9px;
	color: #526173;
	font-size: 12px;
	font-weight: 700;
	background: #f8fafc;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
}

.company-payments-page__provider-chip.is-active {
	color: #0f4fbf;
	background: #eef5ff;
	border-color: #b8c8dc;
}

.company-payments-page__restricted-message {
	display: grid;
	gap: 12px;
	align-content: start;
	text-align: left;
}

.company-payments-page__restricted-message h2,
.company-payments-page__restricted-message p {
	margin-right: 0;
	margin-left: 0;
}

.company-payments-page__restricted-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: #155bd7;
	background: #eef5ff;
	border: 1px solid #c9daf4;
	border-radius: 8px;
}

.company-payments-page__restricted-list li {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 9px;
	align-items: start;
	color: #243247;
	font-weight: 600;
	line-height: 1.35;
}

.company-payments-page__restricted-list .glyphicon {
	top: 2px;
	color: #155bd7;
}

@media (max-width: 991px) {
	.company-cabinet-page__header {
		display: block;
	}

	.company-cabinet-page__actions {
		justify-content: flex-start;
		margin-top: 12px;
	}

	.company-cabinet-page__layout--split,
	.company-cabinet-page__layout--with-left-note {
		grid-template-columns: minmax(0, 1fr);
	}

	.company-cabinet-page__filter-grid {
		grid-template-columns: minmax(0, 1fr) minmax(180px, .7fr) auto;
	}

	.company-orders-page__list-head,
	.company-clients-page__list-head,
	.company-clients-page__row,
	.company-orders-page__row {
		grid-template-columns: 100px 118px minmax(96px, .8fr) 68px minmax(112px, .9fr) minmax(118px, 1fr);
	}

	.company-clients-page__list-head,
	.company-clients-page__row {
		grid-template-columns: minmax(150px, 1fr) minmax(98px, .7fr) minmax(130px, .86fr) minmax(96px, .7fr) 132px 64px;
	}

	.company-orders-page__status-actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 767px) {
	.company-cabinet-page__title {
		font-size: 26px;
	}

	.company-cabinet-page__actions,
	.company-cabinet-page__action-grid,
	.company-cabinet-page__filter-actions,
	.company-cabinet-page__form-actions,
	.company-cabinet-page__footer {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		justify-content: stretch;
	}

	.company-cabinet-page__actions .btn,
	.company-clients-page__header-form,
	.company-clients-page__header-form .btn,
	.company-cabinet-page__action-grid .btn,
	.company-cabinet-page__filter-actions .btn,
	.company-cabinet-page__form-actions .btn {
		width: 100%;
	}

	.company-cabinet-page__form-actions-buttons {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 8px;
		width: 100%;
	}

	.company-notification-page__save-note {
		text-align: left;
	}

	.company-cabinet-page__panel-body,
	.company-cabinet-page__filters {
		padding: 14px;
	}

	.company-cabinet-page__filter-grid,
	.company-cabinet-page__form-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.company-site-settings-page__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.company-site-settings-page__tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.company-site-settings-page__tabs > li > a {
		align-items: flex-start;
		min-height: 48px;
		padding: 9px 10px;
	}

	.company-site-settings-page__field-row .company-cabinet-page__control > .btn-group {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.company-site-settings-page__field-row .company-cabinet-page__control > .btn-group .btn,
	.company-site-settings-page__field-row .company-cabinet-page__control > .btn-group input.btn,
	.company-site-settings-page__field-row .company-cabinet-page__control > .btn-group select.btn {
		width: 100%;
	}

	.company-site-settings-page__field-row--field-siteaddress .company-cabinet-page__control > .btn-group {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) minmax(94px, 130px);
	}

	.company-site-settings-page__field-row--field-users-menu .usersmenu > .row {
		grid-template-columns: minmax(0, 1fr);
		gap: 8px;
	}

	.company-site-settings-page__field-row--field-users-menu .usersmenu .input-group-addon {
		width: 100%;
		min-width: 0;
		border-radius: 4px 4px 0 0;
		border-bottom: 0;
		white-space: normal;
	}

	.company-site-settings-page__field-row--field-users-menu .usersmenu .input-group {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.company-site-settings-page__field-row--field-users-menu .usersmenu .form-control {
		width: 100%;
		border-radius: 0 0 4px 4px;
	}

	.company-cabinet-page__list-head {
		display: none;
	}

	.company-cabinet-page__list-row,
	.company-articles-page__row,
	.company-clients-page__row,
	.company-shops-page__row {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
		min-height: 0;
		padding: 14px;
	}

	.company-cabinet-page__cell[data-label] {
		display: grid;
		grid-template-columns: minmax(92px, .35fr) minmax(0, 1fr);
		gap: 10px;
		align-items: start;
	}

	.company-cabinet-page__cell[data-label]:before {
		content: attr(data-label);
		color: #64748b;
		font-size: 12px;
		font-weight: 700;
		line-height: 1.3;
	}

	.company-cabinet-page__cell--actions {
		justify-content: start;
	}

	.company-cabinet-page__cell--actions[data-label] {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px 10px;
	}

	.company-cabinet-page__cell--actions[data-label]:before {
		flex: 0 0 92px;
	}

	.company-images-page__grid {
		grid-template-columns: minmax(0, 1fr);
		padding: 14px;
	}

	.company-images-page__media-heading {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.company-images-page__thumb {
		min-height: 180px;
	}

	.company-images-page__thumb img {
		max-height: 168px;
	}

	.company-images-page__card-actions,
	.company-images-page__album-actions {
		display: grid;
		grid-template-columns: repeat(4, minmax(34px, 1fr));
	}

	.company-images-page__card-actions .company-cabinet-page__icon-action,
	.company-images-page__album-actions .company-cabinet-page__icon-action,
	.company-images-page__inline-action,
	.company-images-page__inline-action .company-cabinet-page__icon-action {
		width: 100%;
	}

	.company-image-codes {
		padding: 14px;
	}

	.company-image-codes__summary,
	.company-image-codes__option-head,
	.company-image-codes__code-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.company-image-codes__copy {
		width: 100%;
	}

	.company-client-form__address-row .company-cabinet-page__control > .row {
		grid-template-columns: minmax(0, 1fr);
	}

	.company-orders-page__tabs {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.company-orders-page__tab {
		justify-content: center;
		text-align: center;
	}

	.company-orders-page__status-actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.company-orders-page__status-action,
	.company-orders-page__status-button {
		width: 100%;
	}

	.company-orders-page__status-button {
		justify-content: center;
	}
}

/*
 * Company products workspace
 */

.company-products {
	margin-bottom: 30px;
	color: #1f2933;
}

.company-products__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 14px;
}

.company-products__header-copy {
	min-width: 0;
}

.company-products__eyebrow {
	display: block;
	margin-bottom: 5px;
	color: #6b7280;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: uppercase;
}

.company-products__title {
	margin: 0 0 8px;
	color: #1f2933;
	font-size: 32px;
	line-height: 1.15;
}

.company-products__intro {
	max-width: 760px;
	margin: 0;
	color: #52606d;
}

.company-products__top-actions {
	display: flex;
	flex: 0 0 430px;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	max-width: 430px;
}

.company-products__primary-actions,
.company-products__secondary-actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	width: 100%;
}

.company-products__secondary-actions {
	align-items: center;
}

.company-products__top-actions .btn,
.company-products__primary-actions .btn,
.company-products__secondary-actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	white-space: normal;
}

.company-products__showcase-link {
	padding-right: 4px;
	padding-left: 4px;
}

.company-products__summary {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 16px;
}

.company-products__summary-card {
	display: block;
	min-width: 0;
	padding: 10px 12px;
	color: #1f2933;
	background: #fff;
	border: 1px solid #d8e0ea;
	border-radius: 4px;
	box-shadow: none;
}

.company-products__summary-card:hover,
.company-products__summary-card:focus {
	color: #1f2933;
	text-decoration: none;
	border-color: #b8c8dc;
}

.company-products__summary-card strong {
	display: block;
	font-size: 24px;
	line-height: 1;
}

.company-products__summary-card span {
	display: block;
	margin-top: 5px;
	color: #52606d;
}

.company-products__summary-card.is-primary strong {
	color: #23527c;
}

.company-products__summary-card.is-success strong {
	color: #2f7d3f;
}

.company-products__summary-card.is-muted strong {
	color: #52606d;
}

.company-products__summary-card.is-info strong {
	color: #31708f;
}

.company-products__summary-card.is-warning strong {
	color: #a65f00;
}

.company-products__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 16px;
	align-items: start;
}

.company-products__main,
.company-products__sidebar {
	min-width: 0;
}

.company-products__panel {
	border-color: #d8e0ea;
	box-shadow: none;
}

.company-products__surface {
	overflow: hidden;
	background: #fff;
	border-radius: 4px;
}

.company-products__panel-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: #f8fafc;
	border-color: #d8e0ea;
}

.company-products__panel-heading h2 {
	margin: 0;
	font-size: 20px;
	line-height: 1.25;
}

.company-products__search {
	display: flex;
	align-items: stretch;
	margin-bottom: 12px;
}

.company-products__search > .form-control {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
}

.company-products__search > .input-group-btn {
	display: flex;
	flex: 0 0 auto;
	width: auto;
}

.company-products__search .input-group-btn .btn {
	height: 34px;
	white-space: normal;
}

.company-products__filter-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.company-products__filter-grid label {
	display: grid;
	gap: 5px;
	margin: 0;
	color: #334155;
	font-weight: 600;
}

.company-products__filter-grid label > span {
	font-size: 12px;
}

.company-products__active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 10px 12px;
	color: #7a4b00;
	background: #fff8e6;
	border: 1px solid #f1d48f;
	border-radius: 4px;
}

.company-products__active-filters > span {
	font-weight: 600;
}

.company-products__active-filters b {
	display: inline-block;
	max-width: 100%;
	padding: 3px 7px;
	color: #7a4b00;
	background: #ffe7a8;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	overflow-wrap: anywhere;
}

.company-products__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
	color: #52606d;
}

.company-products__breadcrumbs a,
.company-products__breadcrumbs strong {
	min-width: 0;
	overflow-wrap: anywhere;
}

.company-products__breadcrumbs span {
	font-weight: 600;
}

.company-products__bulk-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.company-products__bulk-actions:not(.has-selection) .company-products__selected-count {
	color: #7b8794;
}

.company-products__bulk-control.disabled,
.company-products__bulk-control[disabled] {
	pointer-events: none;
}

.company-products__selected-count {
	color: #52606d;
}

.company-products__selected-count b {
	color: #1f2933;
}

.company-products__list {
	display: grid;
	gap: 8px;
}

.company-products__list-head,
.company-products__item {
	display: grid;
	grid-template-columns: 34px 72px minmax(240px, 1fr) minmax(118px, .45fr) 120px 108px;
	gap: 10px;
	align-items: center;
	min-width: 0;
}

.company-products__list-head {
	padding: 0 10px 6px;
	color: #52606d;
	font-size: 12px;
	font-weight: 600;
}

.company-products__list-head a {
	color: #52606d;
}

.company-products__item {
	padding: 12px;
	background: #fff;
	border: 1px solid #d8e0ea;
	border-radius: 4px;
}

.company-products__item:hover {
	border-color: #b8c8dc;
	box-shadow: 0 1px 3px rgba(17, 43, 74, 0.08);
}

.company-products__cell {
	min-width: 0;
}

.company-products__cell--check,
.company-products__cell--image,
.company-products__cell--available,
.company-products__cell--actions {
	display: flex;
	align-items: center;
}

.company-products__cell--check,
.company-products__cell--image {
	justify-content: center;
}

.company-products__cell--available,
.company-products__cell--actions {
	justify-content: flex-end;
}

.company-products__thumb,
.company-products__cell--image a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	overflow: hidden;
	background: #f7f9fc;
	border: 1px solid #dde7f0;
	border-radius: 4px;
}

.company-products__thumb-image,
.company-products__cell--image img {
	display: block;
	max-width: 54px;
	max-height: 54px;
}

.company-products__image-placeholder {
	display: none;
	color: #9aa7b5;
	font-size: 24px;
}

.company-products__thumb.is-empty .company-products__image-placeholder,
.company-products__thumb.is-missing .company-products__image-placeholder {
	display: inline-block;
}

.company-products__product-name {
	display: inline-block;
	max-width: 100%;
	color: #23527c;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.company-products__product-meta,
.company-products__groups {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 6px;
}

.company-products__groups span,
.company-products__groups em,
.company-products__status {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	max-width: 100%;
	padding: 3px 7px;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1.2;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.company-products__groups span {
	color: #23527c;
	background: #e8f0f8;
	border: 1px solid #d8e6f3;
}

.company-products__groups em {
	color: #6b7280;
	background: #f7f9fc;
	border: 1px solid #e4e8ee;
	font-style: normal;
}

.company-products__status {
	color: #40556b;
	background: #eef2f7;
	border: 1px solid #dde7f0;
	font-weight: 600;
}

.company-products__status.is-published {
	color: #2f7d3f;
	background: #f3faf5;
	border-color: #d8eedc;
}

.company-products__status.is-approved {
	color: #168a45;
	background: #edf9f1;
	border-color: #ccebd6;
}

.company-products__status.is-hidden,
.company-products__status.is-draft {
	color: #52606d;
	background: #f7f9fc;
	border-color: #dde7f0;
}

.company-products__status.is-moderation-waiting {
	color: #a65f00;
	background: #fff8e6;
	border-color: #f1d48f;
}

.company-products__status.is-deleted,
.company-products__status.is-warning,
.company-products__status.is-not-approved {
	color: #8a1f11;
	background: #fff7f6;
	border-color: #f0d1cc;
}

.company-products__status.is-showcase {
	color: #a65f00;
	background: #fff8e6;
	border-color: #f1d48f;
}

.company-products__cell--price {
	color: #1f2933;
	font-weight: 600;
	text-align: right;
}

.company-products__cell--actions {
	gap: 6px;
}

.company-products__cell--actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
}

.company-products__icon-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	min-width: 20px;
	height: 20px;
	margin-left: 4px;
	padding: 0;
	color: #52606d;
	background: transparent;
	border: 0;
	border-radius: 4px;
	line-height: 1;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
}

.company-products__icon-action:hover,
.company-products__icon-action:focus {
	color: #23527c;
	background: #eef2f7;
	text-decoration: none;
	outline: none;
}

.company-products__icon-action.is-success {
	color: #2f7d3f;
}

.company-products__icon-action.is-danger {
	color: #b42318;
}

.company-products__pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.company-products__pages {
	min-width: 0;
}

.company-products__page-size {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: #52606d;
	font-weight: 600;
}

.company-products__page-size select {
	width: 82px;
}

.company-products__empty {
	padding: 30px 18px;
	text-align: center;
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
	border-radius: 4px;
}

.company-products__empty > .glyphicon {
	color: #9aa7b5;
	font-size: 34px;
}

.company-products__empty h2 {
	margin: 10px 0 6px;
	font-size: 22px;
}

.company-products__empty p {
	max-width: 520px;
	margin: 0 auto 14px;
	color: #52606d;
}

.company-products__popover-image {
	max-width: 100px;
	max-height: 100px;
	margin: 3px;
}

.company-products__side-card,
.company-products__sidebar .panel {
	border-color: #d8e0ea;
	border-radius: 4px;
	box-shadow: none;
	overflow: hidden;
}

.company-products__side-card-heading,
.company-products__sidebar .panel-heading {
	color: #334155;
	background: #f8fafc;
	border-color: #d8e0ea;
	font-weight: 600;
}

.company-products__side-card-actions {
	padding: 12px;
	border-bottom: 1px solid #edf1f5;
}

.company-products__group-list {
	margin-bottom: 0;
}

.company-products__group-item,
.company-products__sidebar .list-group-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
	gap: 7px;
	min-width: 0;
	padding: 10px 12px;
	border-color: #e4e8ee;
}

.company-products__group-item.current,
.company-products__sidebar .list-group-item.current {
	background: #f3faf5;
	border-left: 4px solid #2f7d3f;
}

.company-products__group-main {
	min-width: 0;
	padding-top: 2px;
}

.company-products__group-link,
.company-products__sidebar .list-group-item a {
	display: block;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: anywhere;
	font-weight: 600;
}

.company-products__group-actions,
.company-products__sidebar .list-group-item .pull-right {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	flex: 0 0 auto;
	gap: 4px;
	margin-left: 0;
}

.company-products__group-action {
	width: 26px;
	min-width: 26px;
	height: 26px;
	margin-left: 0;
	background: #fff;
	border: 1px solid #d8e0ea;
}

.company-products__side-note,
.company-products__sidebar .alert-info {
	color: #40556b;
	background: #f8fafc;
	border-top: 1px solid #d8e0ea;
}

.company-products__stat-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.company-products__stat-list + .company-products__stat-list {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #edf1f5;
}

.company-products__stat-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 4px 0;
	color: #40556b;
}

.company-products__stat-list span {
	min-width: 0;
}

.company-products__stat-list b {
	color: #1f2933;
	font-size: 15px;
}

.company-products__batch-modal .modal-content {
	border: 0;
	border-radius: 4px;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.22);
}

.company-products__batch-modal .modal-header,
.company-products__batch-modal .modal-footer {
	background: #f8fafc;
	border-color: #d8e0ea;
}

.company-products__batch-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.company-products__batch-card {
	min-width: 0;
	padding: 14px;
	background: #fff;
	border: 1px solid #d8e0ea;
	border-radius: 4px;
}

.company-products__batch-card h5 {
	margin: 0 0 12px;
	color: #1f2933;
	font-size: 16px;
	font-weight: 700;
}

.company-products__batch-field {
	margin-bottom: 12px;
}

.company-products__batch-options {
	display: grid;
	gap: 8px;
}

.company-products__batch-choice {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: #334155;
	font-weight: 600;
}

.company-products__batch-choice--primary {
	margin-bottom: 12px;
}

.company-products__batch-choice input {
	flex: 0 0 auto;
	margin: 0;
}

.company-products__batch-price-grid {
	display: grid;
	grid-template-columns: minmax(90px, .8fr) minmax(82px, .45fr) minmax(150px, 1.2fr);
	gap: 8px;
}

.company-showcase .company-products__summary {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-showcase .company-products__list-head,
.company-showcase .company-products__item {
	grid-template-columns: 78px minmax(0, 1fr) 128px 150px 224px;
}

.company-products__cell--order,
.company-products__cell--status {
	display: flex;
	align-items: center;
}

.company-products__cell--order {
	justify-content: center;
}

.company-products__cell--status {
	justify-content: flex-start;
}

.company-showcase__order-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 8px;
	color: #23527c;
	background: #e8f0f8;
	border: 1px solid #d8e6f3;
	border-radius: 4px;
	font-weight: 700;
}

.company-showcase__order-actions {
	display: inline-flex;
	gap: 4px;
}

.company-showcase__order-actions .btn[disabled] {
	color: #9aa7b5;
	background: #f7f9fc;
	border-color: #e4e8ee;
	opacity: 1;
}

@media (max-width: 1199px) {
	.company-products__header {
		display: block;
	}

	.company-products__top-actions {
		align-items: stretch;
		max-width: none;
		margin-top: 12px;
	}

	.company-products__primary-actions,
	.company-products__secondary-actions {
		justify-content: flex-start;
		width: auto;
	}

	.company-products__layout {
		grid-template-columns: 1fr;
	}

	.company-products__list-head,
	.company-products__item {
		grid-template-columns: 30px 62px minmax(240px, 1fr) minmax(116px, .4fr) 116px 98px;
		gap: 8px;
	}

	.company-products__sidebar {
		display: grid;
		grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
		gap: 12px;
	}

	.company-showcase .company-products__list-head,
	.company-showcase .company-products__item {
		grid-template-columns: 70px minmax(0, 1fr) 112px 132px 204px;
	}
}

@media (max-width: 991px) {
	.company-products__summary {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.company-showcase .company-products__summary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.company-products__sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.company-products__title {
		font-size: 26px;
	}

	.company-products__top-actions,
	.company-products__bulk-actions,
	.company-products__pagination {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: stretch;
	}

	.company-products__top-actions .btn,
	.company-products__bulk-actions .btn,
	.company-products__bulk-actions .btn-group,
	.company-products__bulk-actions .btn-group .btn,
	.company-products__showcase-link {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.company-products__primary-actions,
	.company-products__secondary-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.company-products__summary,
	.company-products__filter-grid,
	.company-products__sidebar {
		grid-template-columns: 1fr;
	}

	.company-showcase .company-products__summary {
		grid-template-columns: 1fr;
	}

	.company-products__panel-heading {
		display: grid;
		grid-template-columns: 1fr;
		align-items: start;
	}

	.company-products__search {
		display: grid;
	}

	.company-products__search .form-control,
	.company-products__search .input-group-btn,
	.company-products__search .input-group-btn .btn {
		display: block;
		width: 100%;
	}

	.company-products__search .input-group-btn {
		margin-top: 8px;
	}

	.company-products__search .input-group-btn .btn {
		margin-bottom: 6px;
		border-radius: 4px !important;
	}

	.company-products__list-head {
		display: none;
	}

	.company-products__item {
		grid-template-columns: 30px 58px minmax(0, 1fr);
		gap: 8px;
		align-items: flex-start;
	}

	.company-showcase .company-products__item {
		grid-template-columns: minmax(0, 1fr);
	}

	.company-products__cell--image a {
		width: 52px;
		height: 52px;
	}

	.company-products__cell--image img {
		max-width: 50px;
		max-height: 50px;
	}

	.company-products__cell--main {
		padding-top: 2px;
	}

	.company-products__cell--price,
	.company-products__cell--order,
	.company-products__cell--status,
	.company-products__cell--available,
	.company-products__cell--actions {
		grid-column: 1 / -1;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding-top: 8px;
		border-top: 1px solid #edf1f5;
		text-align: left;
	}

	.company-products__cell--price::before,
	.company-products__cell--order::before,
	.company-products__cell--status::before,
	.company-products__cell--available::before,
	.company-products__cell--actions::before {
		content: attr(data-label);
		flex: 0 0 auto;
		color: #52606d;
		font-size: 12px;
		font-weight: 600;
	}

	.company-products__cell--actions .btn-group {
		display: inline-flex;
	}

	.company-showcase .company-products__cell--actions {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: stretch;
	}

	.company-showcase .company-products__cell--actions::before {
		margin-bottom: 2px;
	}

	.company-showcase .company-products__cell--actions .btn,
	.company-showcase__order-actions {
		width: 100%;
	}

	.company-showcase__order-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.company-products__pages {
		text-align: center;
	}

	.company-products__page-size {
		justify-content: space-between;
		width: 100%;
	}

	.company-products__batch-grid,
	.company-products__batch-price-grid {
		grid-template-columns: 1fr;
	}
}

/*
 * Company products workspace, mockup-aligned overrides
 */

.company-products {
	color: #132238;
}

.company-products__header {
	align-items: flex-end;
	margin-bottom: 0;
	grid-area: header;
}

.company-products__title {
	font-size: 30px;
	font-weight: 700;
}

.company-products__intro {
	color: #64748b;
	font-size: 15px;
}

.company-products__top-actions {
	flex: 0 0 auto;
	max-width: none;
}

.company-products__primary-actions,
.company-products__secondary-actions {
	justify-content: flex-end;
}

.company-products__top-actions .btn,
.company-products__side-card-actions .btn,
.company-products__filter-reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 8px 14px;
	border-radius: 4px;
	font-weight: 600;
	line-height: 1.2;
	white-space: normal;
}

.company-products__top-actions .btn .glyphicon,
.company-products__side-card-actions .btn .glyphicon,
.company-products__filter-reset .glyphicon {
	top: 0;
	line-height: 1;
}

.company-products__primary-actions .btn-primary {
	padding-right: 16px;
	padding-left: 16px;
	background: #155bd7;
	border-color: #155bd7;
	border-radius: 4px;
	box-shadow: 0 8px 18px rgba(21, 91, 215, 0.22);
	font-weight: 700;
}

.company-products__side-card-actions .btn-primary {
	padding-right: 16px;
	padding-left: 16px;
	background: #155bd7;
	border-color: #155bd7;
	box-shadow: 0 8px 18px rgba(21, 91, 215, 0.22);
	font-weight: 700;
}

.company-products__side-card-actions .btn-primary:hover,
.company-products__side-card-actions .btn-primary:focus,
.company-products__primary-actions .btn-primary:hover,
.company-products__primary-actions .btn-primary:focus {
	background: #0f4fbf;
	border-color: #0f4fbf;
}

.company-products__secondary-actions .btn,
.company-products__filter-reset,
.company-products__cell--actions .btn {
	border-color: #d8e0ea;
	border-radius: 4px;
	box-shadow: none;
}

.company-products__primary-actions .btn-default,
.company-products__secondary-actions .btn-default {
	color: #172033;
	background: #fff;
	border-color: #d9e2ee;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.company-products__summary {
	grid-template-columns: repeat(5, minmax(128px, 1fr));
	gap: 16px;
	margin-bottom: 0;
	grid-area: summary;
}

.company-products__summary-card {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 88px;
	padding: 16px;
	border-color: #d9e2ee;
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.company-products__summary-card .company-products__summary-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	font-size: 19px;
	line-height: 1;
	margin-top: 0;
	text-align: center;
}

.company-products__summary-card .company-products__summary-icon .glyphicon {
	top: 0;
	display: inline-block;
	margin-top: 0;
	line-height: 1;
}

.company-products__summary-card.is-primary .company-products__summary-icon {
	color: #155bd7;
	background: #eaf1ff;
}

.company-products__summary-card.is-success .company-products__summary-icon {
	color: #168a45;
	background: #eaf8ef;
}

.company-products__summary-card.is-muted .company-products__summary-icon {
	color: #526173;
	background: #eef2f7;
}

.company-products__summary-card.is-info .company-products__summary-icon {
	color: #d97706;
	background: #fff3e1;
}

.company-products__summary-card.is-warning .company-products__summary-icon {
	color: #dc2626;
	background: #ffecec;
}

.company-products__summary-text {
	display: block;
	min-width: 0;
}

.company-products__summary-card strong {
	display: block;
	font-size: 24px;
	line-height: 1.05;
}

.company-products__summary-text > span {
	display: block;
	margin-top: 5px;
	color: #64748b;
	font-size: 13px;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.company-products__layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	column-gap: 36px;
	align-items: start;
}

.company-products__sidebar {
	position: sticky;
	top: 14px;
	align-self: start;
}

.company-products__main {
	min-width: 0;
	display: grid;
	grid-template-areas:
		"breadcrumbs"
		"header"
		"summary"
		"filters"
		"list";
	gap: 24px;
	align-content: start;
}

.company-products__breadcrumbs {
	grid-area: breadcrumbs;
	margin: -6px 0 0;
	color: #64748b;
	font-size: 13px;
}

.company-products__filters {
	grid-area: filters;
	margin-bottom: 0;
	padding: 18px;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.company-products__filter-shell {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(0, 1.8fr) auto;
	gap: 12px;
	align-items: end;
}

.company-products__search {
	position: relative;
	margin-bottom: 0;
}

.company-products__search > .form-control {
	height: 46px;
	padding-left: 44px;
	border-color: #d9e2ee;
	border-radius: 6px 0 0 6px;
	box-shadow: none;
	font-size: 15px;
	line-height: 1.3;
}

.company-products__search-icon {
	position: absolute;
	top: 50%;
	left: 15px;
	z-index: 4;
	color: #64748b;
	transform: translateY(-50%);
}

.company-products__search .input-group-btn .btn {
	height: 46px;
	border-color: #d9e2ee;
	line-height: 1.25;
}

.company-products__filter-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.company-products__filter-grid label {
	position: static;
	display: grid;
	gap: 6px;
	margin: 0;
	min-width: 0;
}

.company-products__filter-grid label > span {
	position: static;
	padding: 0;
	color: #334155;
	background: transparent;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	white-space: normal;
}

.company-products__filter-grid .form-control {
	height: 46px;
	padding-top: 6px;
	padding-bottom: 6px;
	border-color: #d9e2ee;
	border-radius: 6px;
	box-shadow: none;
	font-weight: 600;
	line-height: 1.25;
}

.company-products__filter-reset {
	height: 46px;
	padding-right: 18px;
	padding-left: 18px;
	border-radius: 6px;
	color: #475569;
}

.company-products__list-panel {
	grid-area: list;
	overflow: visible;
	border-color: #d9e2ee;
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.company-products__list-panel > .panel-heading {
	padding: 14px 18px;
	background: #fff;
	border-bottom-color: #d9e2ee;
	border-radius: 8px 8px 0 0;
}

.company-products__list-panel > .panel-heading h2 {
	color: #132238;
	font-size: 18px;
	font-weight: 700;
}

.company-products__list-panel > .panel-body {
	padding: 0;
}

.company-products__list {
	display: block;
}

.company-products__list-head,
.company-products__item {
	display: grid;
	grid-template-columns: 44px 74px minmax(190px, 1.45fr) minmax(128px, .75fr) minmax(120px, .65fr) 116px 96px;
	gap: 12px;
	align-items: center;
}

.company-products__list-head {
	padding: 14px 18px;
	color: #475569;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}

.company-products__item {
	min-height: 116px;
	padding: 18px;
	border: 0;
	border-bottom: 1px solid #e2e8f0;
	border-radius: 0;
	box-shadow: none;
}

.company-products__item:hover {
	border-color: #e2e8f0;
	background: #fbfdff;
	box-shadow: none;
}

.company-products__thumb,
.company-products__cell--image a {
	width: 62px;
	height: 62px;
	background: linear-gradient(135deg, #f4f7fb, #e9eef6);
	border: 0;
	border-radius: 6px;
}

.company-products__thumb-image,
.company-products__cell--image img {
	max-width: 62px;
	max-height: 62px;
}

.company-products__image-placeholder {
	font-size: 26px;
}

.company-products__product-name {
	color: #0f4fbf;
	font-size: 15px;
	font-weight: 700;
}

.company-products__product-meta {
	margin-top: 8px;
}

.company-products__groups {
	margin-top: 0;
}

.company-products__groups span,
.company-products__groups em,
.company-products__status {
	border-radius: 6px;
	font-size: 12px;
}

.company-products__cell--price {
	color: #132238;
	text-align: left;
}

.company-products__cell--groups,
.company-products__cell--available {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.company-products__cell--actions {
	justify-content: flex-end;
}

.company-products__list-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	padding: 16px 18px;
	background: #fff;
	border-radius: 0 0 10px 10px;
}

.company-products__pages .pagination {
	margin: 0;
}

.company-products__page-size {
	color: #475569;
}

.company-products__side-card,
.company-products__sidebar .panel {
	border-color: #d9e2ee;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.company-products__groups-card {
	min-height: 620px;
}

.company-products__side-card-heading,
.company-products__sidebar .panel-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px;
	background: #fff;
	border-bottom-color: #e2e8f0;
	font-weight: 700;
}

.company-products__side-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.company-products__side-title .glyphicon {
	color: #155bd7;
}

.company-products__side-card-actions {
	padding: 16px 18px;
}

.company-products__side-card-actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	border-radius: 4px;
	font-weight: 700;
}

.company-products__group-item,
.company-products__sidebar .list-group-item {
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	padding: 12px 14px;
	border-right: 0;
	border-left: 0;
}

.company-products__group-item.current,
.company-products__sidebar .list-group-item.current {
	background: #f3f7ff;
	border-left: 4px solid #155bd7;
}

.company-products__group-link,
.company-products__sidebar .list-group-item a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #132238;
}

.company-products__group-actions {
	justify-content: flex-end;
}

.company-products__group-menu {
	display: block;
}

.company-products__group-action {
	width: 32px;
	min-width: 32px;
	height: 32px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	line-height: 32px;
	text-align: center;
}

.company-products__group-menu-list {
	min-width: 188px;
	padding: 6px 0;
	border-color: #d9e2ee;
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.company-products__group-menu-list > li > a.company-products__group-menu-action {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	color: #132238;
	white-space: normal;
}

.company-products__group-menu-list > li > a.company-products__group-menu-action:hover,
.company-products__group-menu-list > li > a.company-products__group-menu-action:focus {
	color: #0f4fbf;
	background: #f3f7ff;
}

.company-products__side-note {
	display: none;
}

.company-showcase .company-products__header {
	align-items: flex-start;
	margin-bottom: 18px;
}

.company-showcase .company-products__top-actions {
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	max-width: none;
}

.company-showcase .company-products__primary-actions,
.company-showcase .company-products__secondary-actions {
	flex: 0 0 auto;
	width: auto;
}

.company-showcase .company-products__top-actions .btn {
	white-space: nowrap;
}

.company-showcase .company-products__summary {
	margin-bottom: 18px;
}

@media (max-width: 1199px) {
	.company-products__layout {
		grid-template-columns: 1fr;
		grid-template-areas:
			"breadcrumbs"
			"header"
			"summary"
			"sidebar"
			"filters"
			"list";
		gap: 18px;
	}

	.company-products__sidebar {
		position: static;
		display: block;
	}

	.company-products__groups-card {
		min-height: 0;
	}

	.company-products__filter-shell {
		grid-template-columns: minmax(0, 1fr);
	}

	.company-products__summary {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
		overflow-x: visible;
		padding-bottom: 0;
	}

	.company-products__summary-card {
		min-width: 0;
	}

	.company-products__list-head,
	.company-products__item {
		grid-template-columns: 40px 70px minmax(180px, 1.2fr) minmax(120px, .75fr) minmax(110px, .65fr) 104px 90px;
	}

	.company-showcase .company-products__top-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.company-products__header {
		margin-bottom: 0;
	}

	.company-products__primary-actions .btn-primary {
		width: 100%;
	}

	.company-showcase .company-products__header {
		margin-bottom: 16px;
	}

	.company-showcase .company-products__top-actions {
		display: grid;
		grid-template-columns: 1fr;
		align-items: stretch;
		margin-top: 14px;
	}

	.company-showcase .company-products__primary-actions,
	.company-showcase .company-products__secondary-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.company-showcase .company-products__top-actions .btn {
		width: 100%;
		white-space: normal;
	}

	.company-showcase .company-products__summary {
		margin-bottom: 18px;
	}

	.company-products__summary {
		display: flex;
		gap: 10px;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.company-products__summary-card {
		flex: 0 0 168px;
		min-height: 86px;
		padding: 14px;
	}

	.company-products__layout {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-areas:
			"breadcrumbs"
			"header"
			"summary"
			"sidebar"
			"filters"
			"list";
		gap: 16px;
	}

	.company-products__breadcrumbs {
		margin: 0 0 14px;
	}

	.company-products__filters {
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.company-products__search > .form-control,
	.company-products__search .input-group-btn .btn,
	.company-products__filter-grid .form-control,
	.company-products__filter-reset {
		height: 48px;
	}

	.company-products__search {
		display: block;
	}

	.company-products__search > .form-control {
		display: block;
		width: 100%;
		border-radius: 6px;
	}

	.company-products__search-icon {
		top: 24px;
	}

	.company-products__search .input-group-btn {
		display: block;
		width: 100%;
		margin-top: 8px;
	}

	.company-products__search .input-group-btn .btn {
		width: 100%;
		border-radius: 6px !important;
	}

	.company-products__filter-grid {
		grid-template-columns: 1fr;
	}

	.company-products__list-panel {
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.company-products__list-panel > .panel-heading,
	.company-products__list-panel > .panel-body,
	.company-products__list-footer {
		padding-right: 0;
		padding-left: 0;
		background: transparent;
		border: 0;
	}

	.company-products__list {
		display: grid;
		gap: 12px;
	}

	.company-products__list-head {
		display: none;
	}

	.company-products__item {
		position: relative;
		display: grid;
		grid-template-columns: 118px minmax(0, 1fr) 46px;
		gap: 12px;
		min-height: 0;
		padding: 16px;
		background: #fff;
		border: 1px solid #d9e2ee;
		border-radius: 8px;
		box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
	}

	.company-products__cell--check {
		position: absolute;
		top: 12px;
		left: 12px;
		z-index: 1;
	}

	.company-products__cell--image {
		grid-row: 1 / span 4;
		grid-column: 1;
		align-self: start;
	}

	.company-products__thumb,
	.company-products__cell--image a {
		width: 112px;
		height: 112px;
	}

	.company-products__cell--main {
		grid-column: 2;
		padding-top: 0;
	}

	.company-products__cell--groups,
	.company-products__cell--price,
	.company-products__cell--available {
		grid-column: 2 / 4;
		display: grid;
		grid-template-columns: 1fr;
		justify-items: start;
		gap: 4px;
		padding-top: 8px;
		border-top: 1px solid #e2e8f0;
	}

	.company-products__cell--actions {
		grid-row: 1 / span 4;
		grid-column: 3;
		align-self: start;
		display: grid;
		gap: 8px;
		justify-content: end;
		padding-top: 0;
		border-top: 0;
	}

	.company-products__cell--groups::before,
	.company-products__cell--price::before,
	.company-products__cell--available::before {
		content: attr(data-label);
		color: #64748b;
		font-size: 12px;
		font-weight: 600;
	}

	.company-products__cell--actions::before {
		display: none;
	}

	.company-showcase .company-products__item {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}

	.company-showcase .company-products__cell--main {
		grid-column: 1;
	}

	.company-showcase .company-products__cell--order,
	.company-showcase .company-products__cell--price,
	.company-showcase .company-products__cell--status {
		grid-column: 1;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		min-width: 0;
		padding-top: 9px;
		border-top: 1px solid #e2e8f0;
		text-align: left;
	}

	.company-showcase .company-products__cell--order::before,
	.company-showcase .company-products__cell--price::before,
	.company-showcase .company-products__cell--status::before {
		content: attr(data-label);
		flex: 0 0 auto;
		color: #64748b;
		font-size: 12px;
		font-weight: 600;
	}

	.company-showcase .company-products__cell--status .company-products__status {
		flex: 0 1 auto;
		white-space: normal;
	}

	.company-showcase .company-products__cell--actions {
		grid-row: auto;
		grid-column: 1;
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 8px;
		padding-top: 9px;
		border-top: 1px solid #e2e8f0;
	}

	.company-showcase .company-products__cell--actions::before {
		content: attr(data-label);
		display: block;
		grid-column: 1 / -1;
		color: #64748b;
		font-size: 12px;
		font-weight: 600;
	}

	.company-showcase__order-actions {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
	}

	.company-showcase .company-products__cell--actions .btn {
		width: 100%;
		min-width: 0;
	}

	.company-products__list-footer {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: stretch;
	}
}

/*
 * Company product create/edit form
 */

.company-product-edit {
	margin-bottom: 22px;
	color: #172033;
}

.company-product-edit__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.company-product-edit__header-copy {
	flex: 1 1 420px;
	min-width: 0;
	max-width: 440px;
}

.company-product-edit__title {
	margin: 0 0 8px;
	color: #172033;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.company-product-edit__intro {
	margin: 0;
	color: #526173;
	font-size: 15px;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.company-product-edit__meta {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 3px 9px;
	color: #475569;
	background: #f4f7fb;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
}

.company-product-edit__actions {
	display: flex;
	flex: 0 1 auto;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	max-width: none;
}

.company-product-edit__actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 8px 14px;
	border-radius: 4px;
	font-weight: 600;
	line-height: 1.2;
	white-space: normal;
}

.company-product-edit__actions--top .btn {
	white-space: nowrap;
}

.company-product-edit__actions .btn .glyphicon {
	top: 0;
	line-height: 1;
}

.company-product-edit__save-menu {
	display: none;
}

.company-product-edit__save-menu .dropdown-menu {
	min-width: 260px;
	padding: 6px;
	border-color: #d9e2ee;
	border-radius: 6px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.company-product-edit__menu-action {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 8px 10px;
	color: #172033;
	background: transparent;
	border: 0;
	border-radius: 4px;
	font-weight: 600;
	line-height: 1.25;
	text-align: left;
}

.company-product-edit__menu-action:hover,
.company-product-edit__menu-action:focus {
	color: #0b5fce;
	background: #eef5ff;
	outline: 0;
}

.company-product-edit__actions .btn-primary {
	padding-right: 16px;
	padding-left: 16px;
	background: #155bd7;
	border-color: #155bd7;
	box-shadow: 0 8px 18px rgba(21, 91, 215, 0.22);
	font-weight: 700;
}

.company-product-edit__actions .btn-primary:hover,
.company-product-edit__actions .btn-primary:focus {
	background: #0f4fbf;
	border-color: #0f4fbf;
}

.company-product-edit__actions .btn-default {
	color: #172033;
	background: #fff;
	border-color: #d9e2ee;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.company-product-edit__actions .company-product-edit__cancel-action {
	padding-right: 10px;
	padding-left: 10px;
	color: #526173;
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.company-product-edit__actions .company-product-edit__cancel-action:hover,
.company-product-edit__actions .company-product-edit__cancel-action:focus {
	color: #0b5fce;
	background: #f4f7fb;
	border-color: #d9e2ee;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.company-product-edit__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
	gap: 14px;
	align-items: start;
}

.company-product-edit__main,
.company-product-edit__sidebar {
	min-width: 0;
}

.company-product-edit__main {
	display: grid;
	gap: 14px;
}

.company-product-edit__sidebar {
	display: grid;
	gap: 14px;
}

.company-product-edit__panel {
	min-width: 0;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 6px;
	box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06);
}

.company-product-edit__panel + .company-product-edit__panel {
	margin-top: 0;
}

.company-product-edit__sidebar .company-product-edit__panel + .company-product-edit__panel {
	margin-top: 0;
}

.company-product-edit__panel-heading {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 16px 4px;
	border-bottom: 0;
	background: transparent;
}

.company-product-edit__panel-heading h2 {
	margin: 0;
	color: #172033;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.company-product-edit__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 16px;
	padding: 14px 16px 16px;
}

.company-product-edit__panel--sales .company-product-edit__fields {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-product-edit__panel--catalog .company-product-edit__fields,
.company-product-edit__panel--pschema .company-product-edit__fields,
.company-product-edit__panel--media .company-product-edit__fields {
	grid-template-columns: minmax(0, 1fr);
}

.company-product-edit__field {
	min-width: 0;
}

.company-product-edit__field--description,
.company-product-edit__field--file-upload,
.company-product-edit__field--wide {
	grid-column: 1 / -1;
}

.company-product-edit__label {
	margin-bottom: 6px;
	color: #243247;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.company-product-edit__label label {
	margin-bottom: 0;
}

.company-product-edit__control {
	min-width: 0;
}

.company-product-edit__control .form-control,
.company-product-edit__control input[type="text"],
.company-product-edit__control input[type="number"],
.company-product-edit__control input[type="file"],
.company-product-edit__control select,
.company-product-edit__control textarea {
	max-width: 100%;
}

.company-product-edit__control input[type="text"],
.company-product-edit__control input[type="number"],
.company-product-edit__control select,
.company-product-edit__control textarea {
	width: 100%;
	min-height: 38px;
	border-color: #d9e2ee;
	border-radius: 4px;
	box-shadow: none;
	color: #172033;
	line-height: 1.3;
}

.company-product-edit__control input[type="text"]:focus,
.company-product-edit__control input[type="number"]:focus,
.company-product-edit__control select:focus,
.company-product-edit__control textarea:focus,
.company-product-edit__control .selectize-input.focus {
	border-color: #8bb8ff;
	box-shadow: 0 0 0 3px rgba(21, 91, 215, 0.12);
}

.company-product-edit__control .chzn-container,
.company-product-edit__control .chosen-container,
.company-product-edit__control .mce-tinymce,
.company-product-edit__control .tox,
.company-product-edit__control table,
.company-product-edit__control iframe {
	max-width: 100%;
}

.company-product-edit__control > table {
	width: 100% !important;
}

.company-product-edit__control .selectize-control {
	max-width: 100%;
}

.company-product-edit__control .selectize-input {
	min-height: 38px;
	padding: 7px 10px;
	border-color: #d9e2ee;
	border-radius: 4px;
	box-shadow: none;
	color: #172033;
	line-height: 1.35;
}

.company-product-edit__control .selectize-input > div {
	max-width: 100%;
	overflow-wrap: anywhere;
}

.company-product-edit__control .selectize-control.multi .selectize-input > div {
	margin: 2px 5px 2px 0;
	padding: 4px 9px;
	color: #0b5fce;
	background: #eaf1ff;
	border: 1px solid #bdd6ff;
	border-radius: 4px;
}

.company-product-edit__field--price #jform_price_list {
	display: grid;
	gap: 8px;
}

.company-product-edit__field--price #jform_price_list > .row {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(150px, .75fr);
	gap: 12px;
	margin: 0;
}

.company-product-edit__field--price #jform_price_list [class*="col-"] {
	float: none;
	width: auto;
	min-width: 0;
	padding: 0;
}

.company-product-edit__field--price #jform_price_list [class*="col-lg-4"] {
	order: 1;
}

.company-product-edit__field--price #jform_price_list [class*="col-lg-8"] {
	order: 2;
}

.company-product-edit__field--price #jform_price_list .input-group {
	width: 100%;
	margin: 0 !important;
}

.company-product-edit__field--price #jform_price_list .input-group-addon {
	border-color: #d9e2ee;
	background: #f8fafc;
}

.company-product-edit__field--price #jform_price_addbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 36px;
	width: max-content;
	margin-top: 8px;
	padding: 7px 12px;
	color: #0b5fce;
	background: #eef5ff;
	border-color: #bdd6ff;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(21, 91, 215, 0.08);
	font-weight: 600;
	line-height: 1.2;
}

.company-product-edit__field--price #jform_price_addbtn::before {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.company-product-edit__field--price #jform_price_addbtn:hover,
.company-product-edit__field--price #jform_price_addbtn:focus {
	color: #084fb5;
	background: #dcecff;
	border-color: #8bbcff;
	box-shadow: 0 2px 6px rgba(21, 91, 215, 0.12);
	outline: 0;
}

.company-product-edit__field--description .mce-tinymce,
.company-product-edit__field--description table.mceLayout {
	width: 100% !important;
	border-color: #d9e2ee !important;
	border-radius: 4px;
	overflow: hidden;
}

.company-product-edit__field--description .mce-toolbar-grp .mce-container,
.company-product-edit__field--description .mce-toolbar-grp .mce-flow-layout-item,
.company-product-edit__field--description .mce-toolbar-grp .mce-btn-group {
	width: auto !important;
	max-width: none;
}

.company-product-edit__field--description iframe {
	min-height: 220px;
	height: 220px !important;
}

.company-product-edit .multimg {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 12px;
	max-width: 560px;
	min-height: 96px;
	padding: 10px;
	border: 1px dashed #cbd7e6;
	border-radius: 6px;
	background: #f8fafc;
	position: relative;
}

.company-product-edit .multimg--empty {
	display: block;
	min-height: 0;
}

.company-product-edit .multimg .img {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 100%;
	height: 100%;
	min-height: 78px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	background: #eef3f9;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
}

.company-product-edit .multimg .img img {
	max-width: 100%;
	max-height: 96px;
	object-fit: contain;
}

.company-product-edit .multimg .input {
	position: static;
	grid-column: 2;
	grid-row: 1;
	align-self: center;
	min-width: 0;
}

.company-product-edit .multimg input[type="file"] {
	display: block;
	width: 100%;
	min-height: 38px;
	padding: 7px 10px;
	color: #172033;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
	box-shadow: none;
	font-weight: 400;
	line-height: 1.35;
}

.company-product-edit .multimg input[type="file"]:focus {
	border-color: #8bb8ff;
	box-shadow: 0 0 0 3px rgba(21, 91, 215, 0.12);
	outline: 0;
}

.company-product-edit .multimg .inputchbox {
	position: static;
	grid-column: 2;
	grid-row: 2;
	display: inline-block;
	margin-top: 8px;
}

.company-product-edit .multimg label {
	position: static;
	display: inline-block;
	grid-column: 2;
	grid-row: 2;
	margin: 8px 0 0 24px;
	color: #475569;
	font-weight: 600;
}

.company-product-edit .multimg .size {
	display: none;
}

.company-product-edit .add_img_button {
	min-height: auto;
	margin-top: 10px;
	padding: 0;
	border: 0;
	position: static;
}

.company-product-edit .add_img_button .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 7px 12px;
	border-color: #d9e2ee;
	border-radius: 4px;
	font-weight: 600;
}

.company-product-edit__panel--catalog .selectize-control {
	margin-bottom: 10px;
}

.company-product-edit__panel--catalog .catalog.left {
	width: 100%;
	max-height: 300px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 8px;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
	background: #fff;
}

.company-product-edit__panel--catalog .ztree {
	width: 100%;
	min-width: 0;
	padding: 6px 4px;
}

.company-product-edit__panel--catalog .ztree li {
	margin: 0;
	line-height: 1.35;
	white-space: normal;
}

.company-product-edit__panel--catalog .ztree li ul {
	min-width: 0;
	margin: 0;
	padding-left: 18px;
}

.company-product-edit__panel--catalog .ztree li ul.line {
	background: none;
}

.company-product-edit__panel--catalog .ztree li a {
	display: inline-flex;
	align-items: center;
	width: calc(100% - 24px);
	max-width: calc(100% - 24px);
	height: auto !important;
	min-height: 26px;
	margin: 0;
	padding: 3px 7px 3px 5px;
	border-radius: 4px;
	color: #22324a;
	text-decoration: none;
	vertical-align: top;
	white-space: normal;
	overflow: visible;
}

.company-product-edit__panel--catalog .ztree li a:hover,
.company-product-edit__panel--catalog .ztree li a:focus {
	color: #0b5fce;
	text-decoration: none;
	background: #f1f6ff;
	outline: 0;
}

.company-product-edit__panel--catalog .ztree li a.curSelectedNode {
	border: 1px solid #b7d5ff;
	background: #eaf3ff;
	color: #0f3f7a;
	opacity: 1;
}

.company-product-edit__panel--catalog .ztree li a span:not(.button) {
	display: inline;
	height: auto !important;
	line-height: 1.35;
	overflow-wrap: anywhere;
	white-space: normal;
}

.company-product-edit__panel--catalog .ztree li span.button {
	display: inline-block;
	flex: 0 0 auto;
	width: 16px;
	height: 16px !important;
	overflow: hidden;
	line-height: 0;
	background-repeat: no-repeat;
}

.company-product-edit__panel--catalog .ztree li span.button.switch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 26px !important;
	margin: 0 4px 0 0;
	color: #5f7189;
	vertical-align: top;
	background: none !important;
}

.company-product-edit__panel--catalog .ztree li span.button.switch:before {
	display: block;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: rotate(-45deg);
}

.company-product-edit__panel--catalog .ztree li span.button.root_open:before,
.company-product-edit__panel--catalog .ztree li span.button.roots_open:before,
.company-product-edit__panel--catalog .ztree li span.button.center_open:before,
.company-product-edit__panel--catalog .ztree li span.button.bottom_open:before,
.company-product-edit__panel--catalog .ztree li span.button.noline_open:before {
	margin-top: -3px;
	transform: rotate(45deg);
}

.company-product-edit__panel--catalog .ztree li span.button.root_docu:before,
.company-product-edit__panel--catalog .ztree li span.button.roots_docu:before,
.company-product-edit__panel--catalog .ztree li span.button.center_docu:before,
.company-product-edit__panel--catalog .ztree li span.button.bottom_docu:before,
.company-product-edit__panel--catalog .ztree li span.button.noline_docu:before {
	content: none;
}

.company-product-edit__panel--catalog .ztree li a span.button {
	margin-right: 4px;
	overflow-wrap: normal;
	white-space: nowrap;
}

.company-product-edit__panel--catalog .ztree li a span.button.ico_open,
.company-product-edit__panel--catalog .ztree li a span.button.ico_close,
.company-product-edit__panel--catalog .ztree li a span.button.ico_docu {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px !important;
	margin: 0 6px 0 0;
	overflow: visible;
	color: #1f74d2;
	background-image: none !important;
}

.company-product-edit__panel--catalog .ztree li a span.button.ico_open:before,
.company-product-edit__panel--catalog .ztree li a span.button.ico_close:before,
.company-product-edit__panel--catalog .ztree li a span.button.ico_docu:before {
	display: block;
	font-family: "Glyphicons Halflings";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	color: currentColor;
	content: "\e117";
}

.company-product-edit__panel--catalog .ztree li a span.button.ico_open:before {
	content: "\e118";
}

.company-product-edit__panel--catalog .ztree li a.curSelectedNode span.button.ico_open,
.company-product-edit__panel--catalog .ztree li a.curSelectedNode span.button.ico_close,
.company-product-edit__panel--catalog .ztree li a.curSelectedNode span.button.ico_docu {
	color: #0d5fbd;
}

.company-product-edit__pschema.is-loading {
	padding: 12px 16px;
	color: #526173;
	background: #f8fafc;
	border: 1px dashed #d9e2ee;
	border-radius: 8px;
}

.company-product-edit__pschema .company-product-edit__panel {
	margin-top: 0;
}

.company-product-edit__status-list {
	display: grid;
	gap: 12px;
	padding: 14px 16px 16px;
}

.company-product-edit__status-row {
	display: grid;
	grid-template-columns: minmax(90px, .45fr) minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	min-width: 0;
}

.company-product-edit__status-row > span {
	color: #243247;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.company-product-edit__status-row strong {
	color: #172033;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.company-product-edit__status-row p {
	margin: 6px 0 0;
	color: #526173;
	font-size: 12px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.company-product-edit__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}

.company-product-edit__badge {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	max-width: 100%;
	padding: 3px 8px;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
	background: #f8fafc;
	color: #475569;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.company-product-edit__badge.is-success {
	color: #14783b;
	background: #eaf8ef;
	border-color: #bce7c9;
}

.company-product-edit__badge.is-warning {
	color: #a65f00;
	background: #fff3e1;
	border-color: #ffdba6;
}

.company-product-edit__badge.is-danger {
	color: #b91c1c;
	background: #ffecec;
	border-color: #ffc8c8;
}

.company-product-edit__footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 14px;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid #d9e2ee;
	border-radius: 6px;
	box-shadow: 0 -1px 5px rgba(17, 43, 74, 0.06);
}

.company-product-edit__footer > p {
	flex: 1 1 auto;
	min-width: 180px;
	margin: 0;
	color: #526173;
	font-size: 13px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.company-product-edit__footer .company-product-edit__actions {
	max-width: none;
}

@media (max-width: 1199px) {
	.company-product-edit__header {
		display: block;
	}

	.company-product-edit__header-copy {
		max-width: none;
	}

	.company-product-edit__actions--top {
		justify-content: flex-start;
		max-width: none;
		margin-top: 12px;
	}

	.company-product-edit__layout {
		grid-template-columns: 1fr;
	}

	.company-product-edit__sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.company-product-edit--group .company-product-edit__sidebar {
		grid-template-columns: minmax(0, 1fr);
	}

}

@media (max-width: 991px) {
	.company-product-edit__layout {
		grid-template-columns: 1fr;
	}

	.company-product-edit__sidebar {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.company-product-edit__title {
		font-size: 26px;
	}

	.company-product-edit__actions,
	.company-product-edit__footer {
		display: grid;
		grid-template-columns: 1fr;
	}

	.company-product-edit__actions .btn {
		width: 100%;
	}

	.company-product-edit__secondary-save {
		display: none !important;
	}

	.company-product-edit__save-menu {
		display: inline-flex;
	}

	.company-product-edit__save-menu,
	.company-product-edit__save-menu .dropdown-toggle {
		width: 100%;
	}

	.company-product-edit__footer > p {
		min-width: 0;
	}

	.company-product-edit__fields {
		grid-template-columns: minmax(0, 1fr);
		padding: 12px;
	}

	.company-product-edit__panel--sales .company-product-edit__fields {
		grid-template-columns: minmax(0, 1fr);
	}

	.company-product-edit__panel-heading {
		padding: 14px 12px 6px;
	}

	.company-product-edit__status-list {
		padding: 12px;
	}

	.company-product-edit__status-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.company-product-edit__field--price #jform_price_list > .row {
		grid-template-columns: 1fr;
	}

	.company-product-edit .multimg {
		grid-template-columns: 96px minmax(0, 1fr);
		max-width: none;
		min-height: 0;
	}

	.company-product-edit .multimg--empty {
		display: block;
	}

	.company-product-edit .multimg .img {
		min-height: 88px;
	}

	.company-product-edit .multimg .input {
		display: block;
		grid-column: 2;
		grid-row: 1;
		margin: 0;
	}

	.company-product-edit .multimg .inputchbox {
		display: inline-block;
		grid-column: 2;
		grid-row: 2;
		margin: 8px 0 0;
	}

	.company-product-edit .multimg label {
		display: inline-block;
		grid-column: 2;
		grid-row: 2;
		margin: 8px 0 0 24px;
	}
}

.company-dashboard__header {
	margin-bottom: 18px;
}

.company-dashboard__title {
	margin-bottom: 14px;
	color: #172033;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.18;
}

.company-dashboard__actions-panel,
.company-dashboard__panel {
	border-color: #d9e2ee;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.company-dashboard__actions-panel .panel-body {
	display: block;
}

.company-dashboard__site-state {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid #e5e7eb;
}

.company-dashboard__site-state-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.company-dashboard__site-controls {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.company-dashboard__site-switch {
	flex: 0 0 auto;
}

.company-dashboard__eyebrow {
	margin: 0 0 4px;
	color: #6b7280;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.company-dashboard__primary-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
}

.company-dashboard__primary-actions .btn,
.company-dashboard__site-controls .btn,
.company-dashboard__support-actions .btn,
.company-dashboard__activity-card .btn,
.company-dashboard__services .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 8px 14px;
	border-radius: 4px;
	font-weight: 600;
	line-height: 1.25;
	white-space: normal;
}

.company-dashboard__primary-actions .btn .glyphicon,
.company-dashboard__site-controls .btn .glyphicon,
.company-dashboard__support-actions .btn .glyphicon,
.company-dashboard__activity-card .btn .glyphicon,
.company-dashboard__services .btn .glyphicon,
.company-dashboard__check-icon .glyphicon,
.company-dashboard__summary-icon .glyphicon {
	top: 0;
	line-height: 1;
}

.company-dashboard__primary-actions .btn-primary,
.company-dashboard__support-actions .btn-primary,
.company-dashboard__services .btn-primary {
	padding-right: 16px;
	padding-left: 16px;
	background: #155bd7;
	border-color: #155bd7;
	box-shadow: 0 8px 18px rgba(21, 91, 215, 0.22);
	font-weight: 700;
}

.company-dashboard__primary-actions .btn-primary:hover,
.company-dashboard__primary-actions .btn-primary:focus,
.company-dashboard__support-actions .btn-primary:hover,
.company-dashboard__support-actions .btn-primary:focus,
.company-dashboard__services .btn-primary:hover,
.company-dashboard__services .btn-primary:focus {
	background: #0f4fbf;
	border-color: #0f4fbf;
}

.company-dashboard__primary-actions .btn-default,
.company-dashboard__support-actions .btn-default,
.company-dashboard__activity-card .btn-default {
	color: #172033;
	background: #fff;
	border-color: #d9e2ee;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.company-dashboard__visit-link {
	padding-left: 14px;
	padding-right: 14px;
}

.company-dashboard__panel-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.company-dashboard__panel-heading h2 {
	margin: 0;
	font-size: 22px;
	line-height: 1.25;
}

.company-dashboard__notice {
	margin-bottom: 14px;
	color: #334155;
}

.company-dashboard__notice--warning {
	color: #7a4b00;
}

.company-dashboard__notice--danger {
	color: #8a1f11;
}

.company-dashboard__checklist-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 0;
}

.company-dashboard__checklist-list li {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 10px;
	row-gap: 4px;
	min-width: 0;
	padding: 11px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 4px;
	background: #f8fafc;
}

.company-dashboard__checklist-list li.is-done {
	background: #f3faf5;
	border-color: #d8eedc;
}

.company-dashboard__checklist-list li.is-pending {
	background: #f8fbff;
	border-color: #dce8f5;
}

.company-dashboard__checklist-list li.is-danger {
	background: #fff7f6;
	border-color: #f0d1cc;
}

.company-dashboard__checklist-list li > a,
.company-dashboard__checklist-list li > form,
.company-dashboard__checklist-list li > span:not(.company-dashboard__check-icon) {
	min-width: 0;
}

.company-dashboard__check-action-form {
	margin: 0;
}

.company-dashboard__check-action {
	padding: 0;
	border: 0;
	background: transparent;
	color: #23527c;
	font: inherit;
	font-weight: 600;
	text-align: left;
}

.company-dashboard__check-action:hover,
.company-dashboard__check-action:focus {
	color: #163f63;
	text-decoration: underline;
}

.company-dashboard__checklist-list small {
	white-space: nowrap;
}

.company-dashboard__check-status {
	display: inline-block;
	padding: 3px 7px;
	border-radius: 10px;
	background: #e5e7eb;
	color: #4b5563;
	font-size: 11px;
	line-height: 1.2;
}

.company-dashboard__check-status--done {
	background: #dff2e4;
	color: #2f7d3f;
}

.company-dashboard__check-status--todo {
	background: #e5edf6;
	color: #23527c;
}

.company-dashboard__check-status--pending {
	background: #dbeafe;
	color: #23527c;
}

.company-dashboard__check-status--danger {
	background: #f7d7d2;
	color: #8a1f11;
}

.company-dashboard__check-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	border-radius: 50%;
	background: #e5edf6;
	color: #23527c;
}

.company-dashboard__checklist-list .is-done .company-dashboard__check-icon {
	background: #dff2e4;
	color: #2f7d3f;
}

.company-dashboard__checklist-list .is-pending .company-dashboard__check-icon {
	background: #dbeafe;
	color: #23527c;
}

.company-dashboard__checklist-list .is-danger .company-dashboard__check-icon {
	background: #f7d7d2;
	color: #8a1f11;
}

.company-dashboard__summary-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.company-dashboard__summary-item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	min-height: 88px;
	padding: 16px;
	border: 1px solid #d9e2ee;
	border-radius: 8px;
	background: #fff;
	color: #1f2933;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	text-decoration: none;
}

.company-dashboard__summary-item:hover,
.company-dashboard__summary-item:focus {
	color: #1f2933;
	text-decoration: none;
	border-color: #b8c8dc;
}

.company-dashboard__summary-item strong {
	display: block;
	font-size: 24px;
	line-height: 1.05;
}

.company-dashboard__summary-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	margin-top: 0;
	border-radius: 8px;
	background: #eef2f7;
	color: #526173;
	font-size: 19px;
	text-align: center;
}

.company-dashboard__summary-text {
	display: block;
	min-width: 0;
}

.company-dashboard__summary-text > span {
	display: block;
	margin-top: 5px;
	color: #64748b;
	font-size: 13px;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.company-dashboard__summary-item--primary strong {
	color: #155bd7;
}

.company-dashboard__summary-item--primary .company-dashboard__summary-icon {
	color: #155bd7;
	background: #eaf1ff;
}

.company-dashboard__summary-item--success strong {
	color: #168a45;
}

.company-dashboard__summary-item--success .company-dashboard__summary-icon {
	color: #168a45;
	background: #eaf8ef;
}

.company-dashboard__summary-item--warning strong {
	color: #d97706;
}

.company-dashboard__summary-item--warning .company-dashboard__summary-icon {
	color: #d97706;
	background: #fff3e1;
}

.company-dashboard__summary-item--info strong {
	color: #0f766e;
}

.company-dashboard__summary-item--info .company-dashboard__summary-icon {
	color: #0f766e;
	background: #e6fffb;
}

.company-dashboard__summary-item--default strong {
	color: #526173;
}

.company-dashboard__activity-row {
	display: flex;
	flex-wrap: wrap;
}

.company-dashboard__activity-row > [class*="col-"] {
	display: flex;
}

.company-dashboard__activity-card,
.company-dashboard__manager,
.company-dashboard__support,
.company-dashboard__services {
	width: 100%;
}

.company-dashboard__manager,
.company-dashboard__support {
	border-width: 1px;
	border-color: #d9e2ee;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.company-dashboard__support-actions {
	display: grid;
	gap: 8px;
	margin: 14px 0;
}

.company-dashboard__support-actions .btn {
	justify-content: flex-start;
	text-align: left;
}

.company-dashboard__support-text,
.company-dashboard__support-note,
.company-dashboard__support-microcopy {
	color: #52606d;
}

.company-dashboard__support-note {
	margin: 12px 0 6px;
	padding: 10px 12px;
	border-radius: 4px;
	background: #f8fafc;
	font-size: 13px;
}

.company-dashboard__support-microcopy {
	margin-bottom: 0;
	font-size: 12px;
}

.company-dashboard__services {
	margin-top: 10px;
}

.company-dashboard__services .lead {
	margin-bottom: 6px;
}

.company-dashboard__services-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr) minmax(0, 0.9fr);
}

.company-dashboard__services-plan,
.company-dashboard__services-limits,
.company-dashboard__services-order {
	background: #f7f9fc;
	border: 1px solid #dde7f0;
	border-radius: 6px;
	min-width: 0;
	padding: 14px;
}

.company-dashboard__services-plan > span,
.company-dashboard__services-limits > span,
.company-dashboard__services-order > span {
	color: #52606d;
	display: block;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.company-dashboard__services-plan strong,
.company-dashboard__services-order strong {
	color: #654982;
	display: block;
	font-size: 18px;
	line-height: 1.25;
	margin-bottom: 6px;
}

.company-dashboard__services-plan small,
.company-dashboard__services-order small {
	color: #52606d;
	display: block;
	line-height: 1.35;
}

.company-dashboard__services-limits {
	display: grid;
	gap: 12px;
}

.company-dashboard__services-usage-list {
	display: grid;
	gap: 12px;
}

.company-dashboard__services-usage {
	display: grid;
	gap: 6px;
}

.company-dashboard__services-usage-head {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.company-dashboard__services-usage-head span {
	color: #40556b;
	font-size: 13px;
	min-width: 0;
}

.company-dashboard__services-usage-head strong {
	color: #1f2d3d;
	flex: 0 0 auto;
	font-size: 13px;
	text-align: right;
}

.company-dashboard__services-progress {
	background: #e5edf5;
	border-radius: 999px;
	height: 6px;
	overflow: hidden;
}

.company-dashboard__services-progress span {
	background: #2f80ed;
	border-radius: inherit;
	display: block;
	height: 100%;
}

.company-dashboard__services-usage.is-warn .company-dashboard__services-progress span {
	background: #c7781a;
}

.company-dashboard__services-usage.is-over .company-dashboard__services-progress span {
	background: #c2410c;
}

.company-dashboard__services-usage small {
	color: #52606d;
	display: block;
	line-height: 1.35;
}

.company-dashboard__services-facts {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.company-dashboard__services-fact {
	background: #fff;
	border: 1px solid #e1e8f0;
	border-radius: 4px;
	min-width: 0;
	padding: 8px 10px;
}

.company-dashboard__services-fact dt {
	color: #52606d;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
	margin-bottom: 4px;
}

.company-dashboard__services-fact dd {
	color: #172033;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
}

.company-dashboard__call-fallback {
	padding: 20px 10px;
	color: #52606d;
}

.company-dashboard__call-modal-body {
	text-align: center;
}

@media (max-width: 991px) {
	.company-dashboard__site-state {
		align-items: flex-start;
	}

	.company-dashboard__primary-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.company-dashboard__site-state {
		display: grid;
		grid-template-columns: 1fr;
	}

	.company-dashboard__site-controls {
		justify-content: flex-start;
	}

	.company-dashboard__site-controls .company-dashboard__visit-link {
		width: 100%;
		justify-content: flex-start;
	}

	.company-dashboard__title {
		line-height: 1.15;
	}

	.company-dashboard__title b {
		display: block;
	}

	.company-dashboard__primary-actions .btn,
	.company-dashboard__visit-link {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		text-align: left;
	}

	.company-dashboard__panel-heading {
		display: block;
	}

	.company-dashboard__checklist-list,
	.company-dashboard__summary-grid {
		grid-template-columns: 1fr;
	}

	.company-dashboard__checklist-list li {
		grid-template-columns: 24px minmax(0, 1fr);
		align-items: center;
	}

	.company-dashboard__checklist-list small {
		grid-column: 2;
		margin-top: 2px;
		justify-self: start;
	}

	.company-dashboard__services-grid {
		grid-template-columns: 1fr;
	}

	.company-dashboard__services-usage-head {
		align-items: flex-start;
		display: grid;
	}

	.company-dashboard__services-usage-head strong {
		text-align: left;
	}

	.company-dashboard__services-facts {
		grid-template-columns: 1fr;
	}

}

.company-profile {
	margin-bottom: 30px;
}

.company-profile__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.company-profile__header-copy {
	flex: 1 1 auto;
	min-width: 0;
}

.company-profile__eyebrow {
	display: block;
	margin-bottom: 5px;
	color: #6b7280;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.company-profile__title {
	margin: 0 0 8px;
	color: #1f2933;
	font-size: 30px;
	line-height: 1.2;
}

.company-profile__intro {
	max-width: 760px;
	margin: 0;
	color: #52606d;
}

.company-profile__top-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 auto;
	gap: 8px;
}

.company-profile__top-actions .btn,
.company-profile__actions-buttons .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 8px 14px;
	border-radius: 4px !important;
	font-weight: 600;
	line-height: 1.2;
	white-space: normal;
}

.company-profile__top-actions .btn .glyphicon,
.company-profile__actions-buttons .btn .glyphicon {
	top: 0;
	line-height: 1;
}

.company-profile__top-actions .btn-primary,
.company-profile__actions-buttons .btn-primary {
	padding-right: 16px;
	padding-left: 16px;
	background: #155bd7;
	border-color: #155bd7;
	box-shadow: 0 8px 18px rgba(21, 91, 215, 0.22);
	font-weight: 700;
}

.company-profile__top-actions .btn-primary:hover,
.company-profile__top-actions .btn-primary:focus,
.company-profile__actions-buttons .btn-primary:hover,
.company-profile__actions-buttons .btn-primary:focus {
	background: #0f4fbf;
	border-color: #0f4fbf;
}

.company-profile__top-actions .btn-default,
.company-profile__actions-buttons .btn-default {
	color: #172033;
	background: #fff;
	border-color: #d9e2ee;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.company-profile__top-actions .company-profile__cancel-action,
.company-profile__actions-buttons .company-profile__cancel-action {
	padding-right: 10px;
	padding-left: 10px;
	color: #526173;
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.company-profile__top-actions .company-profile__cancel-action:hover,
.company-profile__top-actions .company-profile__cancel-action:focus,
.company-profile__actions-buttons .company-profile__cancel-action:hover,
.company-profile__actions-buttons .company-profile__cancel-action:focus {
	color: #0b5fce;
	background: #f4f7fb;
	border-color: #d9e2ee;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.company-profile__layout {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.company-profile__summary {
	padding: 16px;
	border: 1px solid #d9e2ee;
	border-left: 4px solid #155bd7;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.company-profile__summary-head {
	margin-bottom: 12px;
}

.company-profile__summary-head strong {
	display: block;
	color: #1f2933;
	font-size: 18px;
	line-height: 1.25;
}

.company-profile__checklist {
	display: grid;
	gap: 9px;
	margin: 0;
}

.company-profile__checklist li {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
	min-width: 0;
	color: #334155;
}

.company-profile__checklist li span:not(.company-profile__check-icon) {
	min-width: 0;
}

.company-profile__checklist small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 3px 7px;
	border: 1px solid #d9e2ee;
	border-radius: 6px;
	background: #eef2f7;
	color: #526173;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.company-profile__checklist .is-done small,
.company-profile__checklist .is-done .company-profile__check-icon {
	color: #14783b;
}

.company-profile__checklist .is-done small {
	border-color: #bce7c9;
	background: #eaf8ef;
}

.company-profile__check-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #e5edf6;
	color: #23527c;
	font-size: 11px;
}

.company-profile__checklist .is-done .company-profile__check-icon {
	background: #dff2e4;
}

.company-profile__editor {
	overflow: hidden;
	border-color: #d9e2ee;
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.company-profile__editor > .panel-body {
	padding: 18px;
}

.company-profile__tabs {
	float: none;
	width: 100%;
}

.company-profile__tabs .tabs-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	position: relative;
	z-index: 1;
	margin: 0 0 18px;
	padding: 0;
	border-bottom: 1px solid #d8e0ea;
}

.company-profile__tabs .tabs-menu > li {
	float: none;
	margin: 0;
	list-style: none;
}

.company-profile__tabs .tabs-menu > li > a {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 12px;
	border: 1px solid #d8e0ea;
	border-bottom: 0;
	border-radius: 4px 4px 0 0;
	background: #f8fafc;
	color: #334155;
	line-height: 1.25;
	text-decoration: none;
}

.company-profile__tabs .tabs-menu > li.active > a,
.company-profile__tabs .tabs-menu > li > a:hover,
.company-profile__tabs .tabs-menu > li > a:focus {
	background: #fff;
	color: #155bd7;
	text-decoration: none;
	box-shadow: inset 0 3px 0 #155bd7;
}

.company-profile__tab-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #e5edf6;
	color: #23527c;
	font-size: 12px;
	font-weight: 700;
}

.company-profile__tabs .tabs-menu > li.active .company-profile__tab-index {
	background: #155bd7;
	color: #fff;
}

.company-profile__tabs-pane {
	clear: both;
	padding-top: 14px;
}

.company-profile__tab-pane {
	padding-top: 0;
}

.company-profile__field-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 7px;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid #eef2f6;
}

.company-profile__field-row:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.company-profile__label {
	color: #334155;
	font-weight: 700;
	text-align: left;
}

.company-profile.form-horizontal .control-label,
.company-profile__label {
	padding-top: 0;
	text-align: left;
}

.company-profile__field-row > .company-profile__label,
.company-profile__field-row > .company-profile__field-control {
	float: none;
	width: auto;
	padding-right: 0;
	padding-left: 0;
}

.company-profile__field-control {
	min-width: 0;
}

.company-profile__field-control .form-control,
.company-profile__field-control input[type="text"],
.company-profile__field-control input[type="email"],
.company-profile__field-control select,
.company-profile__field-control textarea {
	width: 100%;
	max-width: none;
	border-color: #d9e2ee;
	border-radius: 4px;
	box-shadow: none;
}

.company-profile__field-control textarea {
	min-height: 120px;
}

.company-profile__field-control textarea.editor,
.company-profile__field-control .mce-tinymce,
.company-profile__field-control .mce-container {
	max-width: 100%;
}

.company-profile__field-help {
	max-width: none;
	margin-bottom: 0;
	color: #6b7280;
	font-size: 12px;
	line-height: 1.4;
}

.company-profile__logo-box {
	margin-bottom: 10px;
}

.company-profile__logo-preview {
	display: block;
	max-width: 180px;
	max-height: 120px;
	padding: 8px;
	border: 1px solid #d8e0ea;
	border-radius: 4px;
	background: #fff;
	object-fit: contain;
}

.company-profile__field-control input[type="file"] {
	display: block;
	width: 100%;
	min-height: 38px;
	padding: 7px 10px;
	color: #172033;
	background: #fff;
	border: 1px solid #d9e2ee;
	border-radius: 4px;
	box-shadow: none;
	font-weight: 400;
	line-height: 1.35;
}

.company-profile__field-control input[type="file"]:focus {
	border-color: #8bb8ff;
	box-shadow: 0 0 0 3px rgba(21, 91, 215, 0.12);
	outline: 0;
}

.company-profile__actions {
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 14px;
	padding: 12px 16px;
	border: 1px solid #d9e2ee;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 -2px 8px rgba(17, 43, 74, 0.08);
}

.company-profile__save-note {
	max-width: 760px;
	margin: 0;
	color: #52606d;
	font-size: 12px;
	line-height: 1.35;
}

.company-profile__actions-buttons {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 8px;
}

.company-profile__actions-buttons.btn-group > .btn {
	float: none;
}

.company-profile__actions-buttons.btn-group > .btn + .btn {
	margin-left: 0;
}

@media (max-width: 1199px) {
	.company-profile__layout {
		grid-template-columns: 1fr;
	}

	.company-profile__summary {
		border-left-color: #155bd7;
	}
}

@media (max-width: 991px) {
	.company-profile__header {
		display: block;
	}

	.company-profile__top-actions {
		margin-top: 12px;
	}
}

@media (max-width: 767px) {
	.company-profile__title {
		font-size: 26px;
	}

	.company-profile__top-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.company-profile__top-actions .btn {
		width: 100%;
		text-align: center;
	}

	.company-profile__checklist li {
		grid-template-columns: 22px minmax(0, 1fr) auto;
	}

	.company-profile__checklist small {
		grid-column: auto;
		justify-self: end;
	}

	.company-profile .company-profile__tabs .company-profile__tabs-menu {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 6px;
		overflow: visible;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.company-profile .company-profile__tabs .company-profile__tabs-menu > li {
		float: none !important;
		width: 100%;
		min-width: 0;
		margin: 0 !important;
	}

	.company-profile .company-profile__tabs .company-profile__tabs-menu > li > a {
		display: flex !important;
		height: 100%;
		width: 100%;
		max-width: none;
		border: 1px solid #d8e0ea;
		border-radius: 4px;
		white-space: normal;
	}

	.company-profile.form-horizontal .control-label,
	.company-profile__label {
		padding-top: 0;
		text-align: left;
	}

	.company-profile__field-control .form-control,
	.company-profile__field-control input[type="text"],
	.company-profile__field-control input[type="email"],
	.company-profile__field-control select,
	.company-profile__field-control textarea,
	.company-profile__field-help {
		max-width: 100%;
	}

	.company-profile__actions {
		display: block;
		padding: 12px;
	}

	.company-profile__save-note {
		margin-bottom: 10px;
	}

	.company-profile__actions-buttons {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
		width: 100%;
	}

	.company-profile__actions-buttons .btn {
		display: flex;
		width: 100%;
		border-radius: 4px !important;
	}
}
