@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
	--default-font-family: 'Montserrat', sans-serif;
	--blue-color: #0281EB;
	--dark-blue-color: #015AA5;
	--light-blue-color: #E6F2FD;
	--red-color: #FF0F00;
	--dark-red-color: #bd0b00;
	--default-font-color: black;
}

body {
	padding: 0;
	margin: 0;
	max-width: 100vw;
	overflow-x: hidden;
	background-color: white;
	font-family: var(--default-font-family);
	font-size: 14px;
	line-height: 100%;
	color: var(--default-font-color);
}

body.external {
	padding-top: 40px;
	padding-bottom: 40px;
	overflow: hidden;
}

body.internal {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

* {
	box-sizing: border-box;
}

.container {
	margin: 0 auto;
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
	max-width: 1360px
}

body.internal content {
	flex: 1 0 auto;
}

/*body:not(.external) .container {
	margin: 0 auto;
	padding-right: 15px;
	padding-left: 15px;
}*/

body.advanced-mode header {
	padding-top: 32px;
	padding-bottom: 32px;
	background-color: #222;
	color: white;
}

body.advanced-mode header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

body.advanced-mode header .header-user {
	margin: 0 -10px;
	display: flex;
	align-content: center;
}

body.advanced-mode header .headerUser-name {
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 250px;
	margin: 0 10px;
	font-size: 14px;
	font-weight: 700;
	line-height: 140%;
	color: #FFF;
}

body.advanced-mode header .headerUser-name svg {
	display: block;
}

body.advanced-mode header .header-navs {
	display: flex;
}

body.advanced-mode header .headerNavs-link {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	color: #FFF;
	text-decoration: none;
}

body.advanced-mode header .headerNavs-link:hover {
	color: var(--blue-color);
}

body.advanced-mode header .headerUser-logout {
	display: flex;
	justify-content:center;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	line-height: 100%;
	color: var(--red-color);
	cursor: pointer;
	text-decoration: none;

}
body.advanced-mode header .headerUser-logout:hover {
	color: var(--dark-red-color);
}

body.advanced-mode header .headerUser-logout svg {
	display: block;
	stroke: var(--red-color);
}

body.advanced-mode header .headerUser-logout:hover svg {
	stroke: var(--dark-red-color);
}

body.advanced-mode content {
	padding-top: 24px;
}

.breadcrumbs {
	margin-bottom: 44px;
}

.breadcrumbs .container {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.breadcrumbs-item {
	display: flex;
	justify-content: center;
	font-size: 12px;
	line-height: 100%;
	color: #999;
	text-decoration: none;
}

.breadcrumbs-item:first-child:before {
	display: none;
}

.breadcrumbs-item:before{
	margin-right: 8px;
	display: block;
	content: "";
	width: 12px;
	height: 12px;
	background-image: url(/assets/images/breadcrumbs-icon.svg);
}

a.breadcrumbs-item:hover {
	color: #000000;
}

a {
	color: var(--blue-color);
}
a:hover {
	color: var(--dark-blue-color);
	text-decoration: none;
}

.button {
	padding: 15px 31px;
	border-radius: 8px;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	line-height: 100%;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}
.button.disabled {
	opacity: 0.8;
	cursor: not-allowed;
}

.button_blue {
	background-color: var(--blue-color);
	border: 1px solid var(--blue-color);
	color: white;
}
.button_blue:hover {
	background-color: var(--dark-blue-color);
	color: white;
}

.button_transparent {
	background-color: transparent;
	border: 1px solid black;
	color: black;
}
.button_transparent:hover {
	border-color: var(--blue-color);
	color: var(--blue-color);
}
.button.disabled:hover {
	border-color: #999;
	color: #999;
}

.back-link {
	font-size: 14px;
	font-weight: 400;
	line-height: 100%;
	color: #FF0F00;
	text-decoration: none;
	cursor: pointer;
}

.back-link:hover {
	color: var(--dark-red-color);
}

.back-link svg {
	margin-right: 7px;
	fill: var(--red-color);
}

.back-link:hover svg {
	fill: var(--dark-red-color);
}

.link {
	font-size: 14px;
	font-weight: 400;
	line-height: 100%;
	text-decoration: none;
	cursor: pointer;
}
.link:hover {
	text-decoration: none;
}

.link:not(.link_with_icon) {
	text-decoration: underline;
}
.link:not(.link_with_icon):hover {
	text-decoration: none;
}

.link.hidden {
	display: none;
}

.link.disabled {
	cursor: not-allowed;
}

.link_blue {
	color: var(--blue-color);
}
.link_blue:hover {
	color: var(--dark-blue-color);
}

.link_blue svg {
	stroke: var(--blue-color);
}
.link_blue:hover svg {
	stroke: var(--dark-blue-color);
}

.link_red {
	color: var(--red-color);
}
.link_red:hover {
	color: var(--dark-red-color);
}

.link_red svg {
	display: block;
	stroke: var(--red-color);
}
.link_red:hover svg {
	stroke: var(--dark-red-color);
}

.link_with_icon {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 4px;
}
.link_with_icon svg {
	display: block;
}

.tooltip-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tooltip-trigger {
	cursor: pointer;
}

.tooltip-trigger svg {
	display: block;
	pointer-events: none;
}

.tooltip-trigger svg path:nth-child(1),
.tooltip-trigger svg path:nth-child(2) {
	stroke: #0281EB;
}

.tooltip-trigger svg path:nth-child(3) {
	fill: #0281EB;
}

.tooltip-trigger:hover svg path:nth-child(1),
.tooltip-trigger:hover svg path:nth-child(2) {
	stroke: var(--dark-blue-color);
}

.tooltip-trigger:hover svg path:nth-child(3) {
	fill: var(--dark-blue-color);
}

.tippy-box {
	width: 220px;
}

.tippy-content {
	padding: 16px;
	font-size: 14px;
	line-height: 160%;
	font-weight: 400;
	color: black;
}

.colorPicker-block {
	position: relative;
}

.colorPickerBlock-input {}


.colorPicker-block .colorPickerBlock-input input[type="text"] {
	padding-right: 71px;
	width: 100%;
}

.colorPickerBlock-preview {
	position: absolute;
	top: 1px;
	right: 71px;
	left: 1px;
	bottom: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px 0 0 8px;
	text-shadow: 0px 0px 6px black;
	color: white;
	pointer-events: none;
}

.colorPickerBlock-actions {
	position: absolute;
	top: 1px;
	right: 10px;
	bottom: 1px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.ease-mode .colorPickerBlock-actions {
	display: none;
}

.colorPickerBlock-action {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.colorPickerBlock-action.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.colorPickerBlock-action svg {
	display: block;
	width: 22px;
	height: 22px;
}

.colorPicker-block .colorPicker-trigger.link.link_blue {
	position: absolute;
	top: 50%;
	margin-top: -6px;
	right: 16px;
	font-size: 12px;
	line-height: 100%;
}

.gradFiller-block {
	position: relative;
}

.gradFiller-block .gradFillerBlock-input input[type="text"] {
	padding-right: 71px;
	width: 100%;
}

.gradFillerBlock-preview {
	position: absolute;
	top: 1px;
	right: 71px;
	left: 1px;
	bottom: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px 0 0 8px;
	text-shadow: 0px 0px 6px black;
	color: white;
	pointer-events: none;
}

.gradFillerBlock-actions {
	position: absolute;
	top: 1px;
	right: 10px;
	bottom: 1px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.gradFillerBlock-action {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.gradFillerBlock-action svg {
	display: block;
	width: 22px;
	height: 22px;
}

.file-block {
	padding: 12px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 40px;
	line-height: 40px;
	border-radius: 8px;
	border: 1px solid #DDD;
	background: #FFF;
	font-family: inherit;
	font-size: 12px;
	color: black;
	white-space: nowrap;
}
.file-block.error {
	border-color: red;
}

.fileBlock-text {
	max-width: calc(100% - 16px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-block input[type="file"] {
	display: none;
}

.file-block label {
	cursor: pointer;
}
.file-block label.hidden {
	display: none;
}

.file-block label svg {
	display: block;
	pointer-events: none;
	stroke: black;
}
.file-block label:hover svg {
	stroke: var(--blue-color);
}

.fileBlock-clearTrigger {
	cursor: pointer;
}
.fileBlock-clearTrigger.hidden {
	display: none;
}

.fileBlock-clearTrigger svg {
	display: block;
	pointer-events: none;
	stroke: black;
}

*:not(.popupElement-content) > input[type="text"],
*:not(.popupElement-content) > input[type="date"],
*:not(.popupElement-content) > input[type="time"],
*:not(.popupElement-content) > input[type="number"],
*:not(.popupElement-content) > textarea {
	width: 100%;
	border-radius: 8px;
	border: 1px solid #DDD;
	background: #FFF;
	font-family: inherit;
	font-size: 12px;
	color: black;
}

*:not(.popupElement-content) > input[type="text"],
*:not(.popupElement-content) > input[type="date"],
*:not(.popupElement-content) > input[type="time"],
*:not(.popupElement-content) > input[type="number"] {
	height: 40px;
	line-height: 40px;
}
*:not(.popupElement-content) > input[type="text"],
*:not(.popupElement-content) > input[type="time"],
*:not(.popupElement-content) > input[type="date"] {
	padding: 12px 16px;
}
*:not(.popupElement-content) > input[type="number"] {
	padding: 12px 24px 12px 16px;
}

*:not(.popupElement-content) > textarea {
	padding: 8px 16px;
	height: 120px;
	line-height: 16px;
}

*:not(.popupElement-content) > input[type="text"]::placeholder,
*:not(.popupElement-content) > input[type="time"]::placeholder,
*:not(.popupElement-content) > input[type="number"]::placeholder {
	color: #999;
}
*:not(.popupElement-content) > input[type="text"].error,
*:not(.popupElement-content) > input[type="date"].error,
*:not(.popupElement-content) > input[type="time"].error,
*:not(.popupElement-content) > input[type="number"].error,
*:not(.popupElement-content) > textarea.error {
	border-color: var(--red-color);
}

*:not(.popupElement-content) > input[type="text"].disabled,
*:not(.popupElement-content) > input[type="date"].disabled,
*:not(.popupElement-content) > input[type="time"].disabled,
*:not(.popupElement-content) > input[type="number"].disabled,
*:not(.popupElement-content) > textarea.disabled {
	cursor: not-allowed;
}

*:not(.popupElement-content) > input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 10px;
    right: 16px;
    width: 16px;
    height: 16px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDIuNUgzQzIuNzIzODYgMi41IDIuNSAyLjcyMzg2IDIuNSAzVjEzQzIuNSAxMy4yNzYxIDIuNzIzODYgMTMuNSAzIDEzLjVIMTNDMTMuMjc2MSAxMy41IDEzLjUgMTMuMjc2MSAxMy41IDEzVjNDMTMuNSAyLjcyMzg2IDEzLjI3NjEgMi41IDEzIDIuNVoiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTEgMS41VjMuNSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik01IDEuNVYzLjUiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMi41IDUuNUgxMy41IiBzdHJva2U9ImJsYWNrIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
    background-size: cover;
    cursor: pointer;
}

*:not(.popupElement-content) > input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 10px;
    right: 16px;
    width: 16px;
    height: 16px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iIzAwMDAwMCIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0xMjgsNDBhOTYsOTYsMCwxLDAsOTYsOTZBOTYuMTEsOTYuMTEsMCwwLDAsMTI4LDQwWm0wLDE3NmE4MCw4MCwwLDEsMSw4MC04MEE4MC4wOSw4MC4wOSwwLDAsMSwxMjgsMjE2Wk0xNzMuNjYsOTAuMzRhOCw4LDAsMCwxLDAsMTEuMzJsLTQwLDQwYTgsOCwwLDAsMS0xMS4zMi0xMS4zMmw0MC00MEE4LDgsMCwwLDEsMTczLjY2LDkwLjM0Wk05NiwxNmE4LDgsMCwwLDEsOC04aDQ4YTgsOCwwLDAsMSwwLDE2SDEwNEE4LDgsMCwwLDEsOTYsMTZaIj48L3BhdGg+PC9zdmc+);
    background-size: cover;
    cursor: pointer;
}

input[type="number"] {
	-moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

input[type="number"] + .input-arrows {
	position: absolute;
	top: 4px;
	right: 16px;
}

input[type="number"] + .input-arrows .input-arrow {
	display: block;
	width: 16px;
	height: 16px;
	content: '';
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDZMOCAxMUwzIDYiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
	background-position: center -2px;
	cursor: pointer;
}
input[type="number"] + .input-arrows .input-arrow[data-action="plus"] {
	transform: rotate(180deg);
}
input[type="number"] + .input-arrows .input-arrow:hover {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDZMOCAxMUwzIDYiIHN0cm9rZT0iIzAyODFFQiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
}

select.nice-select {
	display: none;
}
select.error {
	border: 1px solid var(--red-color);
}

body .nice-select:not(select) {
	float: unset;
	padding-right: 40px;
	padding-left: 16px;
	display: flex;
	align-items: center;
	height: 40px;
	line-height: 38px;
	border: 1px solid #DDD;
	border-radius: 8px;
}

body .nice-select.error {
	border-color: var(--red-color);
}

body .nice-select:before {
	position: absolute;
	top: 50%;
	margin-top: -8px;
	right: 16px;
	display: block;
	width: 16px;
	height: 16px;
	content: '';
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDZMOCAxMUwzIDYiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
	background-position: center;
	pointer-events: none;
	transition: all 0.2s ease-in-out;
	transform: rotate(0);
}
body .nice-select.open:before {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDZMOCAxMUwzIDYiIHN0cm9rZT0iIzAyODFFQiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
	transform: rotate(180deg);
}

body .nice-select:after {
	display: none;
}

body .nice-select .current {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 12px;
	line-height: 100%;
	color: #000;
}

body .nice-select-dropdown{
	width: 100%;
}

body .nice-select.open .nice-select-dropdown {
	border: 1px solid #DDD;
	box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
}

body .nice-select .list {
	margin: 4px 0;
}

body .nice-select .option {
	padding: 8px 16px;
	font-size: 12px;
	line-height: 100%;
	color: #333;
	white-space: normal;
}

body .nice-select .option.selected {
	font-weight: normal;
}

body .nice-select .option:not(.disabled):hover,
body .nice-select .option.focus,
body .nice-select .option.selected.focus {
	background: transparent;
	color: var(--blue-color);
}

body .nice-select.disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

body .nice-select .option.selected.disabled {
	color: #999;
}

body .select2-container--default .select2-selection--single {
	height: 40px;
	border-color: #DDD;
	border-radius: 8px;
	font-size: 12px;
}

body .select2-container--default .select2-selection--single.error {
	border-color: red;
}

body .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-right: 40px;
	padding-left: 16px;
	line-height: 38px;
}

body .select2-container--default.select2-container--disabled .select2-selection--single {
	opacity: 0.7;
	cursor: not-allowed;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 50%;
	margin-top: -8px;
	right: 16px;
	display: block;
	width: 16px;
	height: 16px;
	content: '';
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDZMOCAxMUwzIDYiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
	background-position: center;
	pointer-events: none;
	transition: all 0.2s ease-in-out;
	transform: rotate(0);
}
body .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDZMOCAxMUwzIDYiIHN0cm9rZT0iIzAyODFFQiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
	transform: rotate(180deg);
}

body .select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.tags-block {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tags-block .select2-container {
	flex: 1 0 auto;
}

.tags-block .select2-container--default .select2-selection--multiple {
	padding: 7px 16px;
	min-height: 40px;
	border: 1px solid #ddd;
	border-radius: 8px;
}

.tags-block .select2-container--default.select2-container--focus .select2-selection--multiple {
	border-color: var(--blue-color);
}

.tags-block .select2-container--default.error .select2-selection--multiple {
	border-color: red;
}

.tags-block .select2-container .select2-selection--multiple .select2-selection__rendered {
	margin: 0;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px 4px;
	max-width: 100%;
}

.tags-block .select2-container--default .select2-selection--multiple .select2-selection__choice {
	margin: 0;
	padding: 6px 22px 6px 8px;
	border: none;
	background-color: var(--light-blue-color);
	border-radius: 8px;
	font-size: 12px;
	line-height: 100%;
}

.tags-block .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	padding: 0;
	top: 6px;
	right: 8px;
	left: unset;
	width: 12px;
	height: 12px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMzc1IDIuNjI1TDIuNjI1IDkuMzc1IiBzdHJva2U9IiMwMjgxRUIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNOS4zNzUgOS4zNzVMMi42MjUgMi42MjUiIHN0cm9rZT0iIzAyODFFQiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
	border: none;
}

.tags-block .select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
	display: none;
}

.tags-block .select2-container .select2-search--inline .select2-search__field {
	margin: 0;
	padding-left: 5px;
	height: 24px;
	line-height: 24px;
	vertical-align: middle;
}

.select2-container--open .select2-dropdown {
	margin-top: 4px;
	border: 1px solid #DDD;
	border-radius: 8px;
	box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
}

.select2-container--default .select2-results > .select2-results__options {
	padding: 4px 0;
	max-width: 100%;
}

.select2-container--default .select2-results .select2-results__option {
	padding: 8px 16px;
	font-size: 12px;
	line-height: 100%;
}

.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: transparent !important;
	color: var(--blue-color) !important;
}

.tags-block .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.tags-block .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
	border-radius: 8px;
	border-color: var(--blue-color);
}


.tags-block .tags-clearTrigger {
	flex-shrink: 0;
}

.indent-block .indentBlock-row {
	margin-top: 20px;
	display: flex;
	gap: 24px;
}
.indent-block .indentBlock-row:first-child {
	margin: 0;
}

.indent-block .indentBlock-column {
	display: flex;
	align-items: center;
	gap: 12px;
}

.indent-block .indentBlock-icon {
	width: 16px;
	flex-shrink: 0;
}

.indent-block .indentBlock-input {
	position: relative;
	max-width: 55px;
}

.indent-block_big .indentBlock-input {
	max-width: 70px;
}

.indent-block .indentBlock-input input[type="number"] {
	padding: 8px 24px 8px 8px;
	height: 32px;
	line-height: 32px;
}

.indent-block_big .indentBlock-input input[type="number"] {
	padding: 12px 28px 12px 16px;
	height: 40px;
	line-height: 40px;
}

.indent-block .indentBlock-input input[type="number"]:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.indent-block .indentBlock-input input[type="number"] + .input-arrows {
	top: 0;
	right: 8px;
}
.indent-block .indentBlock-input input[type="number"]:disabled + .input-arrows {
	opacity: 0.5;
	pointer-events: none;
}

.indent-block_big .indentBlock-input input[type="number"] + .input-arrows {
	top: 4px;
}

.indent-block .indentBlock-checkbox input[type="checkbox"] {
	display: none;
}

.indent-block .indentBlock-checkbox label {
	display: flex;
	gap: 4px;
	font-size: 14px;
	line-height: 16px;
	color: #666;
	cursor: pointer;
}

.indent-block .indentBlock-checkbox input[type="checkbox"]:checked + label {
	color: var(--blue-color);
}

.indent-block .indentBlock-checkbox label:before {
	display: block;
	content: '';
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDIuNUgzQzIuNzIzODYgMi41IDIuNSAyLjcyMzg2IDIuNSAzVjEzQzIuNSAxMy4yNzYxIDIuNzIzODYgMTMuNSAzIDEzLjVIMTNDMTMuMjc2MSAxMy41IDEzLjUgMTMuMjc2MSAxMy41IDEzVjNDMTMuNSAyLjcyMzg2IDEzLjI3NjEgMi41IDEzIDIuNVoiIHN0cm9rZT0iIzY2NjY2NiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
}

.indent-block .indentBlock-checkbox input[type="checkbox"]:checked + label:before {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjc1IDYuNUw3LjA4MzMxIDEwTDUuMjUgOC4yNSIgc3Ryb2tlPSIjMDI4MUVCIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTEzIDIuNUgzQzIuNzIzODYgMi41IDIuNSAyLjcyMzg2IDIuNSAzVjEzQzIuNSAxMy4yNzYxIDIuNzIzODYgMTMuNSAzIDEzLjVIMTNDMTMuMjc2MSAxMy41IDEzLjUgMTMuMjc2MSAxMy41IDEzVjNDMTMuNSAyLjcyMzg2IDEzLjI3NjEgMi41IDEzIDIuNVoiIHN0cm9rZT0iIzAyODFFQiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
}

.direction-block {
	position: relative;
	width: 112px;
}
.direction-block.error:before {
	position: absolute;
	top: -7px;
	right: -7px;
	bottom: -7px;
	left: -7px;
	display: block;
	content: '';
	border: 1px solid red;
	border-radius: 8px;
	pointer-events: none;
}

.direction-block .directionBlock-row {
	margin-top: 8px;
	display: flex;
	gap: 8px;
}
.direction-block .directionBlock-row:first-child {
	margin-top: 0;
}

.direction-block .directionBlock-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 2px solid #DDD;
	border-radius: 8px;
	cursor: pointer;
}

.direction-block .directionBlock-button.active {
	border-color: black;
}

.direction-block .directionBlock-button:not([data-direction]) {
	pointer-events: none;
}

footer {
	margin-top: 10px;
}

body .fancybox__content:not([id*="SG"]) {
	padding: 40px;
	width: 100%;
	max-width: 420px;
	border-radius: 8px;
}

body .fancybox__content:not([id*="SG"]) > .f-button.is-close-btn {
	top: -8px;
	right: -8px;
	display: block;
	width: 40px;
	height: 40px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMjAiIGZpbGw9IiNGRjBGMDAiLz4KPHBhdGggZD0iTTI3LjUgMTIuNUwxMi41IDI3LjUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0yNy41IDI3LjVMMTIuNSAxMi41IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
	background-color: transparent;
	opacity: 1;
	border: none;
	border-radius: 50%;
}

body .fancybox__content:not([id*="SG"]) > .f-button.is-close-btn svg {
	display: none;
}

body .fancybox__content:not([id*="SG"]) {
	color: black;
}

body .fancybox__content:not([id*="SG"]) .popup-title {
	font-size: 24px;
	line-height: 120%;
	font-weight: 600;
	text-align: center;
}

body .fancybox__content:not([id*="SG"]) .popup-content {
	margin-top: 24px;
    font-size: 14px;
    line-height: 18px;
}

body .fancybox__content:not([id*="SG"]) .popup-actions {
	margin-top: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

body.error-page content{
	display: flex;
	justify-content: center;
	align-items: center;
}

body.error-page content .container{
	max-width: 420px;
}

body.error-page .errorBlock-image{
	display: flex;
	justify-content: center;
	margin-bottom: 64px;
}

body.error-page .errorBlock-image img{
	display: block;
}

body.error-page .errorBlock-text {
	color: #000;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 110%
}

body.error-page .errorBlock-actions{
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

#gradientSet-popup {
	width: 90%;
	max-width: 560px;
	border: 1px solid #DDD;
	box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
}

#gradientSet-popup .popup-row {
	margin-top: 20px;
	position: relative;
}
#gradientSet-popup .popup-row:first-child {
	margin-top: 0;
}

#gradientSet-popup .popup-group {
	padding: 24px;
	border-radius: 16px;
	background: #F8F8F8;
}

#gradientSet-popup .popupRow-wrapper {
	display: flex;
	gap: 20px;
}

#gradientSet-popup .popup-column {
	width: calc(50% - 10px);
}

#gradientSet-popup .popup-column_one-third {
	width: calc(100% / 3 - 7px);
}
#gradientSet-popup .popup-column_two-third {
	width: calc(100% / 3 * 2 - 13px);
}

#gradientSet-popup .popupRow-label {
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 700;
	line-height: 100%;
}

#gradientSet-popup .popupRow-input {
	margin-top: 12px;
}
#gradientSet-popup .popupRow-input:first-child {
	margin-top: 0;
}

#gradientSet-popup .popup-preview {
	display: flex;
	border: 1px solid #DDD;
	border-radius: 8px;
}

#gradientSet-popup .popup-preview:before {
	float: left;
	content: '';
	padding-top: 25%;
}