/* USER VARIABLES SECTION */

:root {
	--accent: #386B6F;
	--text: #333;
	--regular-text: 16px;
	--lineheight: 1.65;
	--userfont: jost, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/Jost-Light.woff2") format("woff2"); font-family: "jost"; font-weight: 300; font-style: normal; }
@font-face { src: url("../fonts/Jost-Regular.woff2") format("woff2"); font-family: "jost"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/Jost-Bold.woff2") format("woff2"); font-family: "jost"; font-weight: 700; font-style: normal; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #ddd; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

/* USER STYLES */
.w100 {
	width: 100% !important;
}
input.error,
textarea.error {
	border-color: red !important;
	font-size: 14px !important;
	display: none;
}
.v-toast {
	padding: 15px 20px !important;
	z-index: 999999 !important;
}
.modal-enter-active, .modal-leave-active {
	transition: opacity .2s;
}
.modal-enter, .fade-leave-to {
	opacity: 0;
}
.checkbox {
	position: relative;
}
.checkbox input {
	display: none;
}
.checkbox label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.checkbox i {
	position: relative;
	display: block;
	width: 22px;
	height: 22px;
}
.checkbox i:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #BCC9D1;
	width: 22px;
	height: 22px;
}
.checkbox i:after {
	content: "";
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	background: url(../images/vv.svg) no-repeat center;
}
.checkbox input:checked + i:after {
	display: block;
}
.checkbox span {
	margin-left: 10px;
}
.tabs__nav {
	display: table;
	width: 100%;
	border-bottom: 2px solid #F2F4F6;
}
.btn {
	background: var(--accent);
	height: 50px;
	text-decoration: none;
	max-width: 100%;
	line-height: 48px;
	border: none;
	width: 220px;
	color: #fff;
	text-align: center;
	display: inline-block;
}
.btn-small {
	width: 130px;
	height: 30px;
	line-height: 30px;
	background: none;
	border: 1px solid var(--accent);
	color: var(--accent);
}
.btn:hover {
	color: #fff;
	background: #BCC9D1;
}
.btn--transparent {
	background: transparent;
	border: 1px solid #DADADA;
	color: #AEBABE;
}
.btn--disabled {
	background: #BCC9D1;
}
.btn--disabled:hover {
	background: var(--accent);
}
.tabs__nav-item {
	padding: 10px 15px;
	text-align: center;
	display: table-cell;
	color: #80909B;
	cursor: pointer;
}
.tabs__nav-item.active {
	color: #000;
	background: #F2F4F6;
}
.tabs__content {
	margin-top: 50px;
}
.tabs__content-item {
	display: none;
}
.tabs__content-item.active {
	display: block;
}
.form-group {
	margin-bottom: 20px;
}
.form-group--multi {
	display: flex;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}
.form-group--multi .item {
	background: #B2BCC3;
	height: 40px;
	flex: 0 0 calc(33.333% - 10px);
	max-width: calc(33.333% - 10px);
	text-align: center;
	line-height: 40px;
	color: #fff;
	margin: 5px;
	position: relative;
}
.form-group--multi .item-controls {
	position: absolute;
	display: flex;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 10px;
	height: 25px
}
.form-group--multi .item-controls-edit {
	margin-right: 10px;
}
.form-group--multi .item-controls-edit,
.form-group--multi .item-controls-remove {
	width: 25px;
	height: 25px;
	background: #80909B66;
	position: relative;
	cursor: pointer;
}
.form-group--multi .item-controls-edit img,
.form-group--multi .item-controls-remove img{
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-filter: brightness(20);
	filter: brightness(20);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group textarea {
	border: none;
	font-size: 14px;
	border-bottom: .5px solid rgba(128, 144, 155, 0.4);
	padding: 5px 10px;
	display: block;
	width: 100%;
	color: #386B6F;
}
.form-group textarea {
	overflow-y: auto;
	resize: none;
	height: 150px;
}
.form-group label {
	display: block;
	font-size: 14px;
	padding-left: 10px;
	color: #386B6F;
}
.form-group select {
	background: url(../images/v2.svg) no-repeat center right 15px #fff;
	height: 50px;
	border: none;
	border-bottom: .5px solid rgba(128, 144, 155, 0.4);
	padding: 0 40px 0 20px;
	width: 100%;
	appearance: none;
	font-size: 14px;
	color: #386B6F;
}
.image {
	max-width: 100%;
	margin-bottom: var(--bs-gutter-x);
	border-radius: 4px;
}

.accent {
	color: var(--accent);
	font-weight: bold;
}

.hidden-menu .aside {
	width: 65px;
	padding: 30px 5px;
}
.hidden-menu .aside-logo {
	display: none;
}
.hidden-menu .aside-nav ul li a {
	text-align: center;
}
.hidden-menu .content {
	margin-left: 70px !important;
}
.hidden-menu .aside-nav ul li a span {
	display: none;
}
.aside-nav ul li a img {
	max-height: 18px;
	max-width: 18px;
}
.hidden-menu .aside-hide {
	transform: scaleX(-1)
}

.aside {
	background: #002238;
	color: #fff;
	padding: 30px 25px;
	width: 220px;
	min-height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	transition: all .3s ease;
}
.aside-hide {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.aside-logo img {
	margin: auto;
	display: block;
}
.aside-nav {
	margin-top: 85px;
}
.aside-nav ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}
.aside-nav ul li.active a {
	background: #52636D;
}
.aside-nav ul li a {
	color: #fff;
	text-decoration: none;
	transition: all .3s ease;
	display: block;
	padding: 10px 15px;
	line-height: 1.4;
}
.aside-nav ul li a * {
	display: inline-block;
	vertical-align: middle;
}
.aside-nav ul li a span {
	margin-left: 10px;
}
.aside-nav ul li a:hover {
	background: #52636D;
}
.aside-hidden {
	width: 20px;
}

.content {
	padding: 15px 25px;
	margin-left: 220px;
	transition: all .3s ease;
}
.content__header {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #AEBABE;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.content__header-title {
	font-size: 32px;
	margin-right: 30px;
}
.content__header-select select {
	background: url(../images/v.svg) no-repeat center right 15px #386B6F;
	height: 50px;
	color: #fff;
	font-size: 14px;
	padding: 0 40px 0 20px;
	appearance: none;
}
.content__toolbar {
	padding-bottom: 20px;
}
.content__toolbar input {
	height: 40px;
	border: 1px solid #DADADA;
	padding: 5px 20px;
	background: url(../images/search.svg) no-repeat center right 14px;
	max-width: 100%;
	width: 420px;
}
.content__dashboard {
	max-width: 1200px;
}
.content__dashboard-filters {
	margin-bottom: 30px;
}
.content__dashboard-filters select {
	height: 40px;
	padding: 0 10px;
	appearance: none;
	background: url(../images/v2.svg) no-repeat center right 10px;
	width: 300px;
}
.content__dashboard-loading {
	margin-top: 30px;
}
.content__dashboard h4 {
	font-size: 18px
}
.content__dashboard h4 img {
	margin-right: 10px;
}
.content__dashboard-total {
	font-size: 24px;
}
.content__listing {

}
.content__listing-table {
	width: 100%;
}
.content__listing-table thead tr {
	border-bottom: 1px solid #386B6F;
}
.content__listing-table thead tr th {
	font-weight: normal;
	padding: 15px 0;
	cursor: pointer;
	user-select: none;
}
.content__listing-table thead tr th .down {
	transform: rotate(180deg);
}
.content__listing-table tbody tr {
	border-bottom: 1px solid #AEBABE;
}
.content__listing-table tbody tr td {
	padding: 20px 0;
	font-size: 14px;
}
.content__listing-table tbody tr td span {
	border-bottom: 1px dotted;
}
.content__listing-table tbody tr td span:hover {
	color: var(--accent);
}
.content__listing-table tbody tr td:last-child {
	text-align: right;
}
.table-nav {
	position: relative;
}
.table-controls {
	margin-right: 15px;
}
.table-controls img {
	width: 20px;
}
.table-controls,
.table-nav {
	display: inline-block;
	vertical-align: middle;
}
.table-nav-menu {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	padding: 20px 25px;
	text-align: left;
	background: #F2F4F6;
	z-index: 999;
	text-align: left;
}
.table-nav:hover .table-nav-menu {
	display: block;
}
.table-nav-menu .item {
	margin-bottom: 15px;
}
.table-nav-menu .item a {
	text-decoration: none;
	color: var(--text);
}
.table-nav-menu .item a:hover {
	color: var(--accent);
}
.table-nav-menu .item a img {
	margin-right: 10px;
}
.table-nav-menu .item * {
	display: inline-block;
	vertical-align: middle;
	border-bottom: 0;
}
.table-nav-menu .item:last-child {
	margin-bottom: 0;
}
.content__listing-footer {
	color: #80909B;
	margin-top: 30px;
}
.content__listing-footer-create a {
	background: #BCC9D1;
	color: #fff;
	text-align: center;
	width: 215px;
	height: 50px;
	display: block;
	text-decoration: none;
	line-height: 48px;
}
.content__listing-footer-create a:hover {
	background: var(--accent);
}
.content__listing-footer-show {
	float: right;
}
.content__listing-footer-show select {
	height: 22px;
	width: 62px;
	text-align: center;
	border: none;
	border-bottom: 1px solid #80909B;
}
.content__listing-footer-pagination {
	float: right;
}
.content__listing-footer-pagination * {
	display: inline-block;
	vertical-align: middle;
}
.content__listing-footer-pagination-controls * {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
}
.content__listing-footer-pagination-controls a {

}
.content__listing-footer-pagination-controls input {
	text-align: center;
	height: 22px;
	width: 42px;
}

/* ORDERS */
.content__orders-wrap {
	max-height: 550px;
	padding-right: 20px;
	overflow-y: auto;
}
.content__orders-list {
	max-height: 700px;
	overflow-y: auto;
	padding-right: 20px;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #F8F8F8;
}
::-webkit-scrollbar-thumb {
	background: #C2CED6;
	border-radius: 200px;
}
.content__orders-list-title {
	font-size: 17px;
}
.content__orders-list-block {
	margin-top: 20px;
}
.content__orders-list .item {
	background: #F2F4F6;
	padding: 20px 15px;
	margin-bottom: 15px;
	position: relative;
	cursor: pointer;
	transition: all .3s ease;
}
.content__orders-list .item:hover {
	background: var(--accent);
}
.content__orders-list .item:hover * {
	color: #fff;
}
.content__orders-list .item-colored {
	background: #F9B0A0;
	color: #fff;
}
.content__orders-list .item-price {
	font-weight: 700;
	font-size: 18px;
}
.content__orders-itogo .item-itogo-title,
.content__orders-itogo .item-itogo-price {
	font-size: 16px;
}
.content__orders-itogo .item-itogo-price {
	text-align: right;
	color: #386B6F;
	font-weight: 700;
}
.content__orders-list .item-title {
	font-weight: 500;
	font-size: 12px;
}
.content__orders-list .item-address {
	font-weight: 300;
	font-size: 12px;
}
.content__orders-list .item-time {
	font-size: 12px;
    position: absolute;
    border: 1px solid;
    border-radius: 100%;
    top: 15px;
    right: 15px;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}
.content__orders-badges {
	display: flex;
}
.content__orders-badges .item {
	margin-right: 20px;
	height: 30px;
	color: #fff;
	padding: 0 30px;
	font-size: 14px;
	line-height: 30px;
}
.content__orders-badges .item-default {
	background: #386B6F;
}
.content__orders-badges .item-muted {
	background: #52A4AA;
}
.content__orders-badges .item-colored {
	background: #569900;
}
.content__orders-info {
	margin-top: 20px;
}

.content__orders-info-address {
	margin-top: 10px;
	color: #AEBABE;
}
.content__orders-info-client {
	margin-top: 30px;
}
.content__orders-info-client .form-group {
	margin-bottom: 20px;
}
.content__orders-info-client label {
	background: #F2F4F6;
	display: block;
	padding: 10px 20px 0;
	font-size: 14px;
	font-weight: 300;
}
.content__orders-info-client .form-group input[type="text"],
.content__orders-info-client .form-group input[type="email"],
.content__orders-info-client .form-group input[type="tel"],
.content__orders-info-client .form-group input[type="password"],
.content__orders-info-client .form-group textarea {
	font-size: 18px;
	background: #F2F4F6;
	border: none;
	display: block;
	color: #08202F;
	width: 100%;
	padding: 10px 20px;
	font-weight: 700;
}
.content__orders-accept {
	margin-top: 20px;
}
.content__orders-accept a {
	background: #386B6F;
	color: #fff;
	text-align: center;
	height: 50px;
	line-height: 48px;
	transition: all .3s ease;
	font-weight: 700;
	width: 100%;
	text-decoration: none;
	display: block;
}
.content__orders-accept a:hover {
	opacity: .8;
}
.content__orders-sostav {
	margin-top: 30px;
}
.content__orders-sostav .item {
	font-size: 14px;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.content__orders-sostav .item-category {
	color: #AEBABE;
	font-size: 14px;
}
.content__orders-sostav .item-title {
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.content__orders-sostav .item-title table {
	width: 100%;
}
.content__orders-sostav .item-title table td:last-child {
	text-align: right;
}
.content__orders-sostav .item-title b {
	font-weight: normal;
}
.content__orders-sostav .item-additives {
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-left: 30px;
}
.content__orders-sostav .additive {
}
.content__orders-sostav .additive-category {
	color: #AEBABE;
	font-size: 14px;
}
.content__orders-sostav .additive-title table {
	width: 100%;
}
.content__orders-sostav .additive-title table td:last-child {
	text-align: right;
}
.content__orders-sostav .additive-title table td:last-child b {
	font-weight: normal;
}

.content__orders-itogo {
	margin-top: 20px;
}
.content__orders-itogo table {
	width: 100%;
}
.content__orders-itogo .item-title {
	color: #AEBABE;
	padding-bottom: 10px;
	font-size: 14px;

}
.content__orders-itogo .item-price {
	text-align: right;
	font-weight: normal;
	padding-bottom: 10px;
	font-size: 14px;
}

.content__menu-aside {
	position: sticky;
    top: 30px;
    height: calc(100vh - 110px);
    overflow-y: auto;
    padding-right: 20px;
}
.content__menu-aside-org {
	position: relative;
}
.content__menu-aside-org img {
	width: 100%;
}
.content__menu-aside-org-caption {
	display: flex;
	position: absolute;
	bottom: 0;
	color: #fff;
	padding: 10px 20px;
	z-index: 2;
	text-decoration: none;
}
.content__menu-aside-org-caption:hover {
	color: #fff;
}
.content__menu-aside-org:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(82, 99, 109, 0.69) 100%);
}
.content__menu-aside-org-caption img {
	width: 20px;
}
.content__menu-aside-org-caption span {
	margin-left: 10px;
}
.content__menu-aside-btn {
	margin-top: 30px;
}
.content__menu-aside-btn .btn {
	width: 100%;
}
.content__rest-aside-controls {
	margin-top: 20px;
}
.content__menu-main {
}
.content__menu-main-item {
}
.content__menu-main-item-row {
	padding-bottom: 15px;
}
.content__menu-main-item-row-checkbox label {
	font-size: 17px;
	line-height: 25px;
	font-weight: bold;
}
.content__menu-main-item-row-checkbox div {
	padding-left: 35px;
	color: #80909B;
	font-size: 14px;
}
.content__menu-main-item-row-controls {
	text-align: right;
}
.content__menu-main-item-row-icon {
	text-align: right;
}
.content__menu-main-item-sub {
	margin-left: 45px;
}
.content__menu-main-item-sub-row {
	padding-top: 25px;
	padding-bottom: 25px;
	border-top: 1px solid #AEBABE;
}
.content__menu-main-item-sub-checkbox {
	display: flex;
	flex-wrap: wrap;
}
.content__menu-main-item-sub-checkbox i {
	margin-right: 15px;
}
.content__menu-main-item-sub-checkbox img {
	margin-right: 15px;
}
.content__menu-main-item-sub-checkbox span {
	font-weight: bold;
}
.content__menu-main-item-sub-checkbox span {
	color: rgba(0,0,0,.4);
}
.content__menu-main-item-sub-checkbox input:checked + i + span,
.content__menu-main-item-sub-checkbox input:checked + i + img + span {
	color: #000 !important;
}
.content__menu-main-item-sub-price {
	font-weight: bold;
	text-align: right;
}
.content__menu-main-item-sub-expand {
	text-align: center;
}
.content__menu-main-item-sub-expand.active img {
	transform: scaleY(-1);
}
.content__menu-main-item-sub-icon {
	text-align: right;
}
.content__menu-main-item-sub .content__menu-main-item-sub span {
	font-weight: 400;
}
.content__menu-main-controls {
	border-top: 1px solid #AEBABE;
	margin-top: 20px;
	padding-top: 20px;
}
.content__menu-main-controls .col-6:last-child {
	text-align: right;
}
.content__menu-aside-controls {
	margin-top: 20px;
}
.content__menu-aside-controls-title {
    height: 40px;
	line-height: 40px;
    border: none;
    border-bottom: 0.5px solid rgba(128, 144, 155, 0.4);
    padding: 0 40px 0 20px;
    width: 100%;
    appearance: none;
    font-size: 14px;
    color: #386B6F;
	position: relative;
}
.content__menu-aside-controls-title:before {
	content: "";
	background: url(../images/v2.svg) no-repeat center;
	width: 15px;
	height: 3px;
	margin: auto;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
}
.content__menu-aside-controls-title.active:before {
	transform: scaleY(-1);
}
.content__menu-aside-controls-list {
	padding: 10px 20px;
	display: none;
}
.content__menu-aside-controls-list ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}
.content__menu-aside-controls-list ul li {
	margin-bottom: 10px;
}
.content__menu-aside-controls-list ul li a {
	color: #80909B;
	text-decoration: none;
}
.content__menu-aside-controls-list ul li a:hover {
	color: #000;
}

.product {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.4);
	z-index: 9999;
	transition-delay: 300ms;
	right: 0;
}
.product .wrap {
	width: 500px;
	background: #fff;
	opacity: 1;
	height: 100%;
	overflow-y: auto;
	transition: all .3s ease;
	position: absolute;
	padding: 30px 25px;
	right: 0;
}
.product .wrap-loader img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.product__title {
	font-size: 34px;
	line-height: 39px;
	margin-bottom: 20px;
}
.product label {
	padding-left: 0;
	margin-bottom: 5px;
}
.product input,
.product select {
	border: 1px solid #DADADA !important;
	height: 50px;
}
.product__photo img {
	max-height: 200px;
}
.product__photo-caption {
	color: #AEBABE;
	font-size: 14px;
	margin-top: 20px;
	line-height: 130%;
}
.product__photo-btn {
	margin-top: 20px;
}
.product__block {

}
.product__block-title {
	font-size: 24px;
}
.product__block-contnet {
	margin-top: 20px;
}
.product-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
	cursor: pointer;
    font-size: 35px;
    width: 30px;
    height: 30px;
    line-height: 0.6;
    text-align: center;
}

.modal {
	display: none;
	position: fixed;
	top: 100px;
	z-index: 9999000;
	background: #fff;
	padding: 20px 30px;
	left: 0;
	right: 0;
	margin: auto;
	width: 900px;
	box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
}
.modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	line-height: .85;
	cursor: pointer;
	font-size: 30px;
	width: 30px;
	height: 30px;
	text-align: center;
}
.modal.active {
	display: block;
}
#mod {
	width: 1000px;
	max-width: 100%;
}
.modal__title {
	font-size: 34px;
	line-height: 50px;
}
.modal__content {
	margin-top: 30px;
}
.modal__content table {
	width: 100%;
}
.modal__content-title {
	margin-bottom: 10px;
	font-size: 18px;
}
.modal__content table .form-group {
	margin-bottom: 0;
}
.modal__content table + a {
	text-decoration: none;
	color: rgba(0,0,0,.6);
	border-bottom: 1px dotted rgba(0,0,0,.6);
	display: inline-block;
	margin-top: 10px;
}
.modal__content table [data-additive-remove] {
	text-decoration: none;
	color: #000;
	font-size: 20px;
	line-height: .6;
}
.modal__content table tr td {
	padding-bottom: 15px;
}
.modal__content table + a:hover {
	color: #000;
	border-color: #000;
}
.modal__content table .checkbox label {
	justify-content: center;
}
.modal__footer {
	margin-top: 30px;
}
.modal__content .form-group input,
.modal__content .form-group textarea,
.modal__content .form-group select {
	height: 50px;
	border: .5px solid rgba(128, 144, 155, 0.4)
}
.product__block-content-row {
	padding-left: 50px;
	position: relative;
}
.product__block-content-row-remove {
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(128, 144, 155, 0.4);
	cursor: pointer;
    font-size: 35px;
    width: 35px;
    height: 35px;
    line-height: 0.8;
	border: 1px solid rgba(128, 144, 155, 0.4);
    text-align: center;
}
.product__block-content-row-remove:hover {
	background: rgba(128, 144, 155, 0.4);
	color: #fff;
}
.product__block-content-mod {

}
.product__block-content-mod-title {

}
.product__block-content-mod-options {
	padding-left: 20px;
	margin-bottom: 10px;
}
.product__block-content-mod-options-row {

}
.product__block-content-mod-options-row.removed {
	text-decoration: line-through;
	color: red;
}
.product__block-content-mod-options-row-remove {
	text-align: right;
}

.zone {

}
.zone__controls-edit {
	margin-top: 20px;
	margin-right: 20px;
}
.zone__controls-create {
	margin-top: 20px;
}
.zone__items {
	margin-top: 20px;
}

.vm--modal {
	padding: 15px 20px;
}
