* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Arial;
}

.lds-roller {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

	.lds-roller div {
		animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
		transform-origin: 40px 40px;
	}

		.lds-roller div:after {
			content: " ";
			display: block;
			position: absolute;
			width: 7px;
			height: 7px;
			border-radius: 50%;
			background: #fff;
			margin: -4px 0 0 -4px;
		}

		.lds-roller div:nth-child(1) {
			animation-delay: -0.036s;
		}

			.lds-roller div:nth-child(1):after {
				top: 63px;
				left: 63px;
			}

		.lds-roller div:nth-child(2) {
			animation-delay: -0.072s;
		}

			.lds-roller div:nth-child(2):after {
				top: 68px;
				left: 56px;
			}

		.lds-roller div:nth-child(3) {
			animation-delay: -0.108s;
		}

			.lds-roller div:nth-child(3):after {
				top: 71px;
				left: 48px;
			}

		.lds-roller div:nth-child(4) {
			animation-delay: -0.144s;
		}

			.lds-roller div:nth-child(4):after {
				top: 72px;
				left: 40px;
			}

		.lds-roller div:nth-child(5) {
			animation-delay: -0.18s;
		}

			.lds-roller div:nth-child(5):after {
				top: 71px;
				left: 32px;
			}

		.lds-roller div:nth-child(6) {
			animation-delay: -0.216s;
		}

			.lds-roller div:nth-child(6):after {
				top: 68px;
				left: 24px;
			}

		.lds-roller div:nth-child(7) {
			animation-delay: -0.252s;
		}

			.lds-roller div:nth-child(7):after {
				top: 63px;
				left: 17px;
			}

		.lds-roller div:nth-child(8) {
			animation-delay: -0.288s;
		}

			.lds-roller div:nth-child(8):after {
				top: 56px;
				left: 12px;
			}

@keyframes lds-roller {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

input,
textarea {
	outline: none;
}

.button {
	cursor: pointer;
	font-weight: bold;
}

	.button.green,
	.buttons-html5.export-excel-button {
		font-style: normal;
		font-weight: bold;
		font-size: 14px;
		line-height: 18px;
		display: flex;
		align-items: center;
		text-align: center;
		text-decoration: none;
		letter-spacing: 0.3px;
		color: #FFFFFF;
		flex: none;
		order: 0;
		align-self: center;
		background: #8DCF63;
		transition: background 0.3s;
		cursor: pointer;
	}

body[dir="rtl"] .buttons-html5.export-excel-button span {
	flex-direction: row-reverse;
	display: flex;
	align-items: center;
}

.button.green:hover {
	background: #68B339;
}

.button.blue {
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 18px;
	display: flex;
	align-items: center;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.3px;
	color: #FFFFFF;
	flex: none;
	order: 0;
	align-self: center;
	background: #66A0E4;
	transition: background 0.3s;
	cursor: pointer;
}

	.button.blue:hover {
		background: #5384BE;
	}

	.button.blue a {
		color: #FFFFFF;
	}

.button.white {
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 18px;
	display: flex;
	align-items: center;
	text-align: center;
	letter-spacing: 0.3px;
	flex: none;
	order: 0;
	align-self: center;
	border: 2px solid #66A0E4;
	color: #66A0E4;
	transition: background 0.3s;
	cursor: pointer;
}

	.button.white:hover {
		background-color: #66A0E4;
		color: #FFFFFF;
	}

		.button.white:hover a {
			color: #FFFFFF;
		}

.button.red {
	color: #FFFFFF !important;
	background-color: #dc3545 !important;
	border-color: #dc3545 !important;
}

	.button.red:hover {
		background-color: #dc3545;
	}

.delete-button, .hidden {
	display: none;
}

body {
	background: #F2F3F8 !important;
}

.header,
.main,
.footer {
	background: white;
}

.header {
	box-shadow: 0px 4px 4px rgba(193, 208, 222, 0.25);
	position: fixed;
	width: 100%;
	z-index: 100;
	top: 0;
}

.main {
	margin-top: 64px;
}

.header .container,
.footer .container {
	padding: 0 80px;
	margin: auto;
	position: relative;
	z-index: 2;
	width: 100%;
}

.main .container {
	max-width: 1188px;
	padding: 0 16px;
	margin: auto;
}

.header .head-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

	.header .head-row .left-part,
	.header .head-row .right-part {
		display: flex;
		align-items: center;
	}

.header .language .item,
.header .message,
.header .users {
	width: 42px;
	height: 42px;
	background-size: 100%;
	cursor: pointer;
	display: block;
}

	.header .language .item.en {
		background: url("/Content/New/icon/Flag.svg");
	}

	.header .language .item.ru {
		background: url("/Content/New/icon/Flag_ru.svg");
	}

	.header .language .item.he {
		background: url("/Content/New/icon/Flag_he.svg");
	}

.header .language {
	position: relative;
	z-index: 2;
}

	.header .language .dropdown {
		display: none;
		position: absolute;
		top: 50px;
	}

		.header .language .dropdown .item {
			margin-bottom: 8px;
		}

			.header .language .dropdown .item:last-of-type {
				margin-bottom: 0;
			}

.header .message {
	background: url("/Content/New/icon/contact.svg");
	margin: 0 8px;
}

.header .users {
	background: url("/Content/New/icon/users.svg");
}

.header .button {
	padding: 12px 34px;
}

.header .logo {
	background: url("/Content/New/icon/logo.png");
	width: 168px;
	height: 58px;
	background-size: 100%;
	background-repeat: no-repeat;
	display: block;
	margin: 0 0 0 31px;
}

.header .menu-button {
	background-image: url("/Content/New/icon/menu.svg");
	background-repeat: no-repeat;
	background-position: center;
	display: block;
	width: 28px;
	height: 58px;
	margin-left: 25px;
	cursor: pointer;
}

.header .menu {
	position: fixed;
	top: 0;
	right: 0;
	box-shadow: 0 4px 10px rgba(54, 56, 65, 0.25);
	background: white;
	width: 308px;
	height: 100vh;
	z-index: 10;
	transform: translateX(105%);
	transition: transform 1s;
}

	.header .menu.open {
		transform: translateX(0);
	}

	.header .menu .menu-head-row,
	.header .menu .menu-items .menu-item {
		padding: 0 36px 0 32px;
		text-decoration: none;
	}

	.header .menu .menu-head-row {
		padding-top: 3px;
		width: 100%;
		height: 92px;
	}

		.header .menu .menu-head-row .back {
			background: url("/Content/New/icon/back.svg");
			transform: rotate(180deg);
			cursor: pointer;
			width: 24px;
			height: 24px;
		}

		.header .menu .menu-head-row .wrap {
			justify-content: space-between;
			align-items: center;
			display: flex;
		}

		.header .menu .menu-head-row .logo {
			margin: 0;
		}

	.header .menu .menu-items .menu-item:first-of-type {
		border-top: 1px solid rgba(102, 160, 228, 0.05);
	}

	.header .menu .menu-items .menu-item {
		border-bottom: 1px solid rgba(102, 160, 228, 0.05);
		background: rgba(102, 160, 228, 0.02);
		cursor: pointer;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		height: 70px;
		font-style: normal;
		font-weight: bold;
		font-size: 16px;
		line-height: 15px;
		color: #66A0E4;
		transition: background 0.3s;
	}

body[dir="rtl"] .header .menu .menu-items .menu-item {
	justify-content: flex-end !important;
}

.header .menu .menu-items .menu-item:before {
	content: url("/Content/New/icon/menu-item.svg");
	margin-right: 17px;
}

.header .menu .menu-items .menu-item.active,
.header .menu .menu-items .menu-item:hover {
	background: #66A0E4;
	color: white;
}

	.header .menu .menu-items .menu-item.active:before,
	.header .menu .menu-items .menu-item:hover:before {
		content: url("/Content/New/icon/menu-item_active.svg");
	}

body[dir="rtl"] .header .menu .menu-items .menu-item:before,
body[dir="rtl"] .header .menu .menu-items .menu-item.active:before,
body[dir="rtl"] .header .menu .menu-items .menu-item:hover:before {
	content: inherit;
}

.header .menu .menu-items {
	max-height: calc(100vh - 92px);
	overflow-y: auto;
}

.main .head-block .container {
	background: url("/Content/New/cover_web.png");
	background-size: cover;
	position: relative;
	padding: 0 142px;
	max-width: none;
}

.main .head-block .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px 0 200px;
}

	.main .head-block .content .head-text {
		font-style: normal;
		font-weight: bold;
		font-size: 62px;
		line-height: 54px;
		text-align: center;
		letter-spacing: -1px;
		color: #464457;
		max-width: 730px;
		margin-bottom: 24px;
	}


	.main .head-block .content .text {
		font-style: normal;
		font-weight: normal;
		font-size: 30px;
		line-height: 34px;
		text-align: center;
		color: #222222;
		opacity: 0.9;
		margin-bottom: 37px;
		max-width: 470px;
	}

	.main .head-block .content .button {
		width: 189px;
		padding: 17px 0;
		justify-content: center;
	}

.main .head-block .hint {
	position: absolute;
	bottom: 0;
	margin-bottom: -90px;
	box-shadow: 0 5px 24px rgba(178, 186, 187, 0.4);
	background: #FFFFFF;
	border-radius: 6px;
	max-width: 1156px;
	width: calc(100% - 16px * 2);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 26px 20px 45px;
	left: 50%;
	transform: translateX(-50%);
}

	.main .head-block .hint .hint-head-text {
		font-style: normal;
		font-weight: 700;
		font-size: 28px;
		text-align: center;
		color: #67b337;
		line-height: 1.05;
	}

.table tr td,
.table tr th {
	direction: ltr;
}

body[dir="rtl"] .table tr td textarea {
	direction: rtl !important;
}

.main .head-block .hint .hint-text {
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
	margin-bottom: 16px;
	max-width: 975px;
}

.main .head-block .hint .hint-small-text {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 185.99%;
	text-align: center;
	color: #000000;
}

.main .short-info {
	padding: 196px 0 90px;
}

	.main .short-info .content {
		display: flex;
		align-items: stretch;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.main .short-info .item {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		flex-direction: column;
		width: 33.33%;
		margin-bottom: 86px;
	}

		.main .short-info .item .image {
			width: 56px;
			height: 56px;
			margin-bottom: 25px;
		}

		.main .short-info .item .item-head-text {
			font-style: normal;
			font-weight: bold;
			font-size: 18px;
			line-height: 32px;
			text-align: center;
			color: #000000;
			margin-bottom: 5px;
			max-width: 265px;
		}

		.main .short-info .item .item-text {
			font-style: normal;
			font-weight: normal;
			font-size: 16px;
			line-height: 28px;
			text-align: center;
			color: #000000;
			opacity: 0.7;
			max-width: 265px;
		}

.main .info .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 140px;
}

	.main .info .item:last-of-type {
		margin-bottom: 0;
	}

	.main .info .item.reverse {
		flex-direction: row-reverse;
	}

	.main .info .item .image {
		max-width: 355px;
		width: 100%;
	}

	.main .info .item .info-texts .item-logo {
		width: 56px;
		height: 56px;
		transform: translateY(-25%);
		margin: 0 20px;
	}

	.main .info .item .info-texts {
		margin: 0 30px;
		display: flex;
		align-items: flex-start;
	}

	.main .info .item .info-head-text {
		font-style: normal;
		font-weight: bold;
		font-size: 22px;
		line-height: 32px;
		color: #000000;
		margin-bottom: 8px;
	}

	.main .info .item .info-text {
		font-style: normal;
		font-weight: normal;
		font-size: 16px;
		line-height: 28px;
		color: #000000;
		opacity: 0.7;
	}

.main .info .hint {
	background: #FFFFFF;
	border-radius: 6px;
	box-shadow: 0 5px 24px rgba(178, 186, 187, 0.4);
	display: flex;
	padding: 53px 140px 54px;
	margin-bottom: 156px;
}

	.main .info .hint .button {
		width: 190px;
		padding: 17px 0;
		justify-content: center;
		border: none;
		margin-right: 80px;
	}

	.main .info .hint .button-block {
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		margin-right: 35px;
	}

	.main .info .hint.try-demo {
		padding: 48px 50px 35px;
	}

		.main .info .hint.try-demo .hint-head-text {
			margin-left: 65px;
		}

	.main .info .hint .hint-buttons {
		display: flex;
	}

	.main .info .hint .button-block .button {
		margin-right: 0;
	}

	.main .info .hint .button-block .button-hint {
		font-style: normal;
		font-weight: bold;
		font-size: 14px;
		line-height: 24px;
		text-align: center;
		text-transform: capitalize;
		color: #4D4D4D;
		margin-top: 8px;
	}

	.main .info .hint .texts {
		text-align: left;
		font-style: normal;
		font-weight: normal;
		font-size: 18px;
		line-height: 28px;
		color: #222222;
	}

	.main .info .hint .hint-head-text {
		font-style: normal;
		font-weight: bold;
		font-size: 28px;
		line-height: 28px;
		color: #222222;
		opacity: 0.9;
		text-align: left;
		margin-bottom: 17px;
	}

	.main .info .hint .hint-text {
		font-style: normal;
		font-weight: normal;
		font-size: 18px;
		line-height: 28px;
		color: #222222;
	}

.footer {
	background: rgba(178, 178, 178, 0.1);
}

	.footer .content {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 92px;
	}

		.footer .content .privacy {
			font-style: normal;
			font-weight: bold;
			font-size: 14px;
			line-height: 185.99%;
			text-align: center;
			color: rgba(0, 0, 0, 0.6);
		}

		.footer .content .privacy-links {
			display: flex;
		}

			.footer .content .privacy-links .privacy-link {
				font-weight: bold;
				font-size: 14px;
				line-height: 185.99%;
				text-align: center;
				color: rgba(0, 0, 0, 0.6);
				margin-right: 50px;
				text-decoration: none;
			}

				.footer .content .privacy-links .privacy-link:last-of-type {
					margin-right: 0;
				}

.mobile {
	display: none;
}

.header .mobile.buttons {
	display: none;
}

body[dir="rtl"] .header .head-row {
	direction: ltr;
}

body[dir="rtl"] .main .info .hint .hint-head-text,
body[dir="rtl"] .main .info .hint .texts {
	text-align: right;
}

body[dir="rtl"] .main .info .hint .button {
	margin-right: auto;
}

body[dir="rtl"] .main .info .hint .button-block .button {
	margin-left: auto;
}

body[dir="rtl"] .footer .content {
	direction: ltr;
}

body[dir="rtl"] .main .info .hint .button-block {
	margin-right: 0;
	margin-left: 35px;
}

.main .login {
	width: 100%;
	min-height: calc(100vh - 64px);
	display: flex;
	background: white;
}

	.main .login .part {
		width: 50%;
	}

		.main .login .part.back {
			background: url("/Content/New/login/login_bg.jpg");
			background-size: cover;
			background-position: center;
		}

		.main .login .part.content {
			display: flex;
			align-items: center;
			justify-content: center;
			text-align: right;
			padding-top: 10px;
			padding-bottom: 10px;
		}

			.main .login .part.content .sign-in {
				max-width: 310px;
				width: 100%;
			}

				.main .login .part.content .sign-in .head-text {
					font-style: normal;
					font-weight: bold;
					font-size: 28px;
					line-height: 185.99%;
					color: #000000;
					margin-bottom: 58px;
				}

				.main .login .part.content .sign-in .row {
					margin-bottom: 23px;
				}

					.main .login .part.content .sign-in .row:last-of-type {
						margin-bottom: 41px;
					}

					.main .login .part.content .sign-in .row .label {
						font-style: normal;
						font-weight: normal;
						font-size: 14px;
						line-height: 18px;
						text-transform: capitalize;
						color: #798695;
						margin-bottom: 6px;
					}

.custom-input {
	max-width: 282px;
	width: 100%;
	height: 46px;
	border: 1px solid #C6CACC;
	box-sizing: border-box;
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 17px;
	letter-spacing: 0.0357143em;
	outline: none;
	color: #000000;
	padding: 0 17px;
	transition: 0.3s;
	text-align: right;
}

	.custom-input:focus {
		background: #FAFAFA;
		border: 1px solid rgba(102, 160, 228, 0.5);
	}

	.custom-input.DateOperationClass.small {
		width: 100px !important;
		padding: 0 7px !important;
	}

body:not(.export-body) .custom-input {
	direction: rtl;
}

.main .login .part.content .sign-in .row .custom-input {
	max-width: 310px;
	width: 100%;
	padding: 0 44px;
}

.main .login .part.content .sign-in .row .login-input,
.main .login .part.content .sign-in .row .password-input {
	position: relative;
}

	.main .login .part.content .sign-in .row .login-input:before {
		content: url("/Content/New/login/icon_login.svg");
		position: absolute;
		top: 14px;
		right: 10px;
	}

	.main .login .part.content .sign-in .row .password-input:before {
		content: url("/Content/New/login/icon_password.svg");
		position: absolute;
		top: 13px;
		right: 10px;
	}

	.main .login .part.content .sign-in .row .login-input .line,
	.main .login .part.content .sign-in .row .password-input .line {
		display: none;
	}

		.main .login .part.content .sign-in .row .login-input .line:after,
		.main .login .part.content .sign-in .row .password-input .line:after {
			content: '';
			width: 1px;
			height: 21px;
			background: #66A0E4;
			position: absolute;
			top: 13px;
			right: 40px;
			display: block;
		}

	.main .login .part.content .sign-in .row .password-input .show-icon:after {
		content: url("/Content/New/login/icon_show-password.svg");
		position: absolute;
		top: 16px;
		left: 14px;
		cursor: pointer;
		z-index: 2;
	}

	.main .login .part.content .sign-in .row .password-input .show-icon.active:after {
		content: url("/Content/New/login/icon_show-password-active.svg");
		position: absolute;
		top: 16px;
		left: 14px;
		cursor: pointer;
		z-index: 2;
	}

.custom-checkbox {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	padding-right: 35px;
	height: 24px;
	cursor: pointer;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 18px;
	color: rgba(121, 134, 149, 0.8);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

	.custom-checkbox input {
		position: absolute;
		opacity: 0;
		cursor: pointer;
		height: 0;
		width: 0;
	}

.checkmark {
	position: absolute;
	top: 0;
	right: 0;
	height: 24px;
	width: 24px;
	background-color: white;
	border: 1px solid rgba(121, 134, 149, 0.3);
}

.custom-checkbox:hover input ~ .checkmark {
	background-color: white;
}

.custom-checkbox input:checked ~ .checkmark {
	background-color: white;
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
	display: block;
}

.custom-checkbox .checkmark:after {
	left: 6px;
	top: 8px;
	width: 10px;
	height: 8px;
	background: url("/Content/New/login/check.svg");
	background-size: cover;
}

.table-checkbox .checkmark {
	position: absolute;
	top: 2px;
	right: 0;
	width: 18px;
	height: 18px;
	background-color: white;
	border: 2px solid #2D9CDB;
	border-radius: 2px;
}

.table-checkbox.custom-checkbox input:checked ~ .checkmark {
	background-color: #2D9CDB;
}

.table-checkbox.custom-checkbox .checkmark:after {
	left: 1px;
	top: 2px;
	width: 13px;
	height: 10px;
	background: url("/Content/New/icon/check.svg");
	background-size: cover;
}

.main .login .part.content .sign-in .remember-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
}

	.main .login .part.content .sign-in .remember-row .link {
		font-style: normal;
		font-weight: normal;
		font-size: 14px;
		line-height: 18px;
		text-transform: capitalize;
		color: #66A0E4;
		text-decoration: none;
	}

.main .login .part.content .sign-in .button {
	outline: none;
	border: none;
	padding: 12px 34px;
	margin-top: 55px;
	justify-content: flex-end;
	margin-left: auto;
}

.main .login.contact-us {
	min-height: calc(100vh - 64px - 92px);
}

body[dir="rtl"] .main .login.contact-us,
body[dir="rtl"] .main .login {
	flex-direction: row-reverse;
}

	body[dir="rtl"] .main .login .part.content .sign-in .remember-row {
		flex-direction: row;
	}

.main .login.contact-us .back {
	background: url("/Content/New/contact_us/back.jpg") no-repeat;
	background-position: center;
}

.main .login .part.content .sign-in .row .input .custom-input {
	padding: 0 10px;
}

.main .login .part.content .sign-in .row .input .textarea {
	height: 80px;
	padding: 10px;
	resize: none;
}

.main.logged-in {
	padding: 30px 80px 30px;
	background: #F2F3F8;
	position: relative;
	min-height: calc(100vh - 64px);
	margin: 64px auto auto;
	max-width: 1440px;
}

	.main.logged-in .login.contact-us {
		min-height: calc(100vh - 64px - 120px);
	}

	.main.logged-in .head-block-text {
		font-style: normal;
		font-weight: bold;
		font-size: 20px;
		line-height: 24px;
		text-align: right;
		text-transform: uppercase;
		color: #363547;
	}

body[dir="rtl"] .main.logged-in .head-block-text {
	font-size: 26px;
}

.header .user {
	display: flex;
	align-items: center;
	margin-right: 22px;
	cursor: pointer;
	position: relative;
}

	.header .user .logout {
		position: absolute;
		font-style: normal;
		font-weight: normal;
		font-size: 16px;
		line-height: 50px;
		align-items: center;
		color: rgba(0, 0, 0, 0.87);
		background: #FFFFFF;
		box-shadow: 0px 0px 4px rgba(193, 208, 222, 0.5);
		height: 50px;
		padding: 0 20px;
		bottom: -50px;
		left: -3px;
		display: none;
		white-space: nowrap;
	}

		.header .user .logout:after {
			content: '';
			width: 0px;
			height: 0px;
			border-left: 5px solid transparent;
			border-right: 5px solid transparent;
			border-bottom: 5px solid white;
			position: absolute;
			top: -5px;
			left: 18px;
		}

.header .right-part .logged-in .user,
.header .right-part .logged-in .search-button {
	display: none;
}

.header .user .image {
	background: url("/Content/New/user_img.png");
	width: 42px;
	height: 42px;
	background-size: 100% 100%;
	border-radius: 50px;
}

.header .user .text {
	margin-left: 9px;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 15px;
	display: flex;
	align-items: center;
	color: #464457;
}

.header .search-block {
	position: relative;
	margin-left: 8px;
	max-width: 200px;
	width: 100%;
}

	.header .search-block span:after {
		content: url("/Content/New/Search.svg");
		position: absolute;
		top: 7px;
		left: 11px;
		cursor: pointer;
	}

.header .search {
	border: 1px solid rgba(70, 68, 87, 0.3);
	box-sizing: border-box;
	border-radius: 18px;
	width: 100%;
	height: 38px;
	padding: 0 20px 0 43px;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 16px;
	display: flex;
	align-items: center;
	color: rgba(70, 68, 87, 0.8);
	outline: none;
}

.header .right-part .logged-in .search-mobile {
	display: none;
}

.header .menu .menu-items .dropdown {
	display: none;
}

	.header .menu .menu-items .dropdown .dropdown-item {
		border-bottom: 1px solid rgba(102, 160, 228, 0.05);
		background: white;
		cursor: pointer;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		height: 70px;
		font-style: normal;
		font-weight: bold;
		font-size: 15px;
		line-height: 15px;
		color: #464457;
		transition: background 0.3s;
		padding: 0 36px 0 20px;
	}

body[dir="rtl"] .header .menu .menu-items .dropdown .dropdown-item {
	text-align: center !important;
	justify-content: flex-end !important;
}

.header .menu .menu-items .dropdown .dropdown-item.highlighted {
	background: lightgray;
}

.header .menu .menu-items .dropdown .dropdown-item.blue {
	background: #c8d8f1;
}

.header .menu .menu-items .dropdown .dropdown-item:hover,
.header .menu .menu-items .dropdown .dropdown-item.current-item {
	background: #66A0E4;
}

.header .menu .menu-items .dropdown .dropdown-item.blue:hover,
.header .menu .menu-items .dropdown .dropdown-item.blue.current-item {
	background: #66A0E4;
}

.header .menu .menu-items .dropdown .dropdown-item:before {
	content: url('/Content/New/line-dropdown.svg');
	margin-right: 21px;
	margin-left: 6px;
	margin-top: -7px;
}

.header .menu .menu-items .dropdown .dropdown-item a {
	text-decoration: none;
	color: #464457;
}

body[dir="rtl"] .header .menu .menu-items .dropdown .dropdown-item:before {
	content: inherit;
	margin-right: inherit;
	margin-left: inherit;
	margin-top: inherit;
}

body[dir="rtl"] .header .menu .menu-items .dropdown .dropdown-item:after {
	content: url('/Content/New/line-dropdown.svg');
	margin-right: 6px;
	margin-left: 21px;
	margin-top: -7px;
}

body[dir="rtl"] .header .menu .menu-items .dropdown .dropdown-item a {
	text-decoration: none;
	color: #464457;
	text-align: right !important;
	float: right;
}

.header .menu .menu-items .menu-item.open-drop {
	position: relative;
}

	.header .menu .menu-items .menu-item.open-drop:after {
		content: url("/Content/New/icon/menu-arrow.svg");
		position: absolute;
		top: 26px;
		right: 26px;
	}

	.header .menu .menu-items .menu-item.open-drop:hover:after,
	.header .menu .menu-items .menu-item.open-drop.active:after {
		content: url("/Content/New/icon/menu-arrow_white.svg");
		position: absolute;
		top: 26px;
		right: 26px;
	}

body[dir="rtl"] .header .menu .menu-items .menu-item.open-drop:after,
body[dir="rtl"] .header .menu .menu-items .menu-item.open-drop:hover:after,
body[dir="rtl"] .header .menu .menu-items .menu-item.open-drop.active:after {
	content: inherit;
	position: inherit;
	top: inherit;
	right: inherit;
}

body[dir="rtl"] .header .menu .menu-items .menu-item:after {
	content: url("/Content/New/icon/menu-item.svg") !important;
	margin-left: 17px;
}

body[dir="rtl"] .header .menu .menu-items .menu-item.active:after,
body[dir="rtl"] .header .menu .menu-items .menu-item:hover:after {
	content: url("/Content/New/icon/menu-item_active.svg") !important;
}

.header .menu .menu-items .menu-item.open-drop.open:after {
	transform: rotate(180deg);
}

body[dir="rtl"] .header .menu .menu-items .menu-item.open-drop.open:after {
	transform: inherit;
}

body[dir="rtl"] .header .menu .menu-items .menu-item:before {
	margin-right: inherit;
}

body[dir="rtl"] .header .menu .menu-items .menu-item.open-drop:before {
	content: url("/Content/New/icon/menu-arrow.svg");
	position: absolute;
	top: 26px;
	left: 26px;
}

body[dir="rtl"] .header .menu .menu-items .menu-item.open-drop:hover:before,
body[dir="rtl"] .header .menu .menu-items .menu-item.open-drop.active:before {
	content: url("/Content/New/icon/menu-arrow_white.svg") !important;
	left: 26px !important;
}

body[dir="rtl"] .header .menu .menu-items .menu-item.open-drop.open:before {
	transform: rotate(180deg);
}

.main .bottom-and-top {
	min-height: calc(100vh - 64px - 92px);
}

.main .only-top {
	min-height: calc(100vh - 64px);
}

.main.logged-in .only-top {
	min-height: calc(100vh - 64px - 120px);
	background: white;
}

.main .our-users {
	padding: 50px 0;
}

body[dir="rtl"] .main .our-users,
body[dir="rtl"] .main .our-users .our-user-item .info-text {
	text-align: right;
}

.main .our-users .head-text {
	font-weight: bold;
	font-size: 26px;
	line-height: 185.99%;
	color: #000000;
	margin-bottom: 42px;
}

.main .our-users .our-user-item {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 66px;
}

body[dir="rtl"] .main .our-users .our-user-item,
body[dir="rtl"] .main .our-users .our-user-item .socials {
	flex-direction: row-reverse;
}

.main .our-users .our-user-item:last-of-type {
	margin-bottom: 0;
}

.main .our-users .our-user-item .image {
	width: 248px;
}

	.main .our-users .our-user-item .image img {
		width: 100%;
	}

.main .our-users .our-user-item .text {
	padding: 0 60px;
	max-width: 580px;
	width: 100%;
	margin-top: -20px;
}

.main .our-users .our-user-item .info-head-text {
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 50px;
	color: #000000;
	margin-bottom: 23px;
}

.main .our-users .our-user-item .info-text {
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 22px;
	text-align: left;
	color: #000000;
	overflow: hidden;
}

	.main .our-users .our-user-item .info-text.big {
		max-height: 90px;
	}

.main .our-users .our-user-item .show-more {
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 28px;
	color: #66A0E4;
	cursor: pointer;
}

.main .our-users .our-user-item .info {
	margin-right: auto;
}

	.main .our-users .our-user-item .info .item {
		font-style: normal;
		font-weight: normal;
		font-size: 15px;
		line-height: 19px;
		color: #000000;
		text-decoration: none;
		margin-bottom: 20px;
		justify-content: flex-start;
	}

		.main .our-users .our-user-item .info .item:before {
			margin-right: 20px;
		}

		.main .our-users .our-user-item .info .item.site:before {
			content: url("/Content/New/our_users/globe.svg");
		}

		.main .our-users .our-user-item .info .item.email:before {
			content: url("/Content/New/our_users/mail.svg");
		}

		.main .our-users .our-user-item .info .item.phone:before {
			content: url("/Content/New/our_users/phone.svg");
		}

.main .our-users .our-user-item .socials {
	display: flex;
}

	.main .our-users .our-user-item .socials .item {
		margin-right: 32px;
	}

		.main .our-users .our-user-item .socials .item:before {
			margin-right: 0;
		}

		.main .our-users .our-user-item .socials .item:last-of-type {
			margin-right: 0;
		}

.main .our-users .our-user-item .info .item.facebook:before {
	content: url("/Content/New/our_users/facebook.svg");
}

.main .our-users .our-user-item .info .item.linkedin:before {
	content: url("/Content/New/our_users/linkedin.svg");
}

.main .our-users .our-user-item .info .item.instagram:before {
	content: url("/Content/New/our_users/instagram.svg");
}

.main.logged-in .only-top.registration {
	padding: 20px 30px 50px;
	text-align: right;
}

.main.logged-in .hint-text {
	padding: 0 30px;
}

.main .registration {
	position: relative;
}

	.main .registration .steps {
		display: flex;
		flex-direction: row-reverse;
	}

		.main .registration .steps .step {
			font-style: normal;
			font-weight: bold;
			font-size: 18px;
			line-height: 25px;
			display: flex;
			align-items: center;
			justify-content: center;
			letter-spacing: -0.02em;
			color: #FFFFFF;
			width: 36px;
			height: 36px;
			background: #DFDEDE;
			border-radius: 50px;
			margin-left: 24px;
			position: relative;
		}

			.main .registration .steps .step.active {
				background: -o-linear-gradient(358.03deg, #568A14 14.73%, #8EC548 97.52%);
				background: linear-gradient(91.97deg, #568A14 14.73%, #8EC548 97.52%);
			}

			.main .registration .steps .step:after {
				content: '';
				width: 24px;
				height: 2px;
				background: #DFDEDE;
				position: absolute;
				left: -24px;
			}

			.main .registration .steps .step:last-of-type:after {
				display: none;
			}

	.main .registration .input-block {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: row-reverse;
		width: calc(282px * 2 + 110px * 2 + 40px);
		margin-left: auto;
	}

		.main .registration .input-block.upload {
			margin-top: 50px;
		}

	.main .registration.step2 {
		display: none;
	}

		.main .registration.step2 .input-block {
			max-width: calc(282px + 110px);
			width: 100%;
		}

	.main .registration.step3 {
		display: none;
	}

		.main .registration.step3 .input-block {
			max-width: calc(282px + 150px);
			width: 100%;
		}

	.main .registration .input-block .input-block-head-text {
		width: 100%;
		margin-top: 43px;
		margin-bottom: 30px;
		font-style: normal;
		font-weight: bold;
		font-size: 18px;
		line-height: 21px;
		text-transform: uppercase;
		color: #464457;
	}

	.main .registration .input-row {
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-start;
		margin-bottom: 15px;
		width: calc(282px + 120px);
		flex-wrap: wrap;
		position: relative;
	}

.new-doc-send .input-row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	margin-top: 27px;
	margin-bottom: 15px;
	position: static;
}

.main .registration.edit-details.second-block-mobile {
	min-height: 0;
	padding-top: 0;
}

	.main .registration.edit-details.first-block-mobile {
		min-height: 0;
	}

	.main .registration.second-block-mobile .input-block .input-block-head-text {
		margin-top: 0;
	}

	.main .registration.edit-details .input-row {
		align-items: center;
	}

.main .input-validation-error.custom-input {
	border-color: #D13A3B !important;
}

.main .registration .input-row.short {
	max-width: 320px;
	margin-left: 100px;
}

	.main .registration .input-row.short .custom-input {
		max-width: 175px;
	}

.main .registration .input-row .big-text {
	width: 110px;
}

	.main .registration .input-row .big-text .label {
		width: fit-content;
		text-align: left;
	}

.main .registration.edit-details .input-row .label {
	margin-top: 0;
}

.main .registration .input-row .label {
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 17px;
	text-align: left;
	color: #798695;
	padding-left: 9px;
	width: 120px;
	margin-top: 14px;
}

.main .registration.step3 .input-row .label {
	margin-top: 0;
	width: 145px;
}

.main .registration.step3 .input-row .big-text {
	width: 145px;
	text-align: left;
}

	.main .registration.step3 .input-row .big-text .label {
		width: fit-content;
		text-align: right;
	}

.main .registration.step3 .input-row {
	align-items: center;
	width: calc(282px + 38px);
}

.main .bottom-label {
	display: block;
	width: 100%;
	text-align: left;
	margin-bottom: 10px;
	margin-top: 0px;
	padding-right: 122px;
	font-size: 13px;
	color: #798695;
}

body[dir="rtl"] .main .bottom-label {
	text-align: right;
}

	.main .bottom-label.validation-error {
		display: none;
	}

	.main .bottom-label.field-validation-error {
		display: flex;
	}

		.main .bottom-label.field-validation-error:after {
			content: url("/Content/New/icon/validation_error.svg");
			margin-left: 9px;
			display: inline-block;
			height: 13px;
			width: 13px;
		}

.main .validation-summary-errors {
	width: 100%;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 15px;
	color: #798695;
	margin: 20px 5px 20px 5px;
	display: flex;
	justify-content: flex-start;
}

/* only for register page .registration */
.main .input-row .hint-button:after {
	content: url("/Content/New/icon/error.svg");
	position: absolute;
	left: -20px;
	top: 17px;
	cursor: pointer;
}

.main .input-row .hint-button.hint-button-normal:after {
	top: 0;
}

.main .registration .input-row.head .hint-button:after {
	top: 47px;
}

.main .registration .input-row .hint {
	position: absolute;
	width: 319px;
	padding: 17px 18px 28px;
	background: white;
	z-index: 2;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
	left: -340px;
	top: 30px;
	display: none;
	transform: translateY(-100%);
}

.main .registration.step2 .input-row .hint,
.main .registration.step3 .input-row .hint {
	transform: translateY(0);
}

.main .input-row .hint-text {
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 15px;
	text-align: left;
	color: #000000;
}

body[dir="rtl"] .main .input-row .hint-text {
	text-align: right;
}


.main .registration .input-row .hint .button {
	padding: 0 29px;
	height: 34px;
	display: inline-flex;
	margin-top: 20px;
}

.main .registration.step2 .input-row .hint,
.main .registration.step3 .input-row .hint {
	display: none;
	background: transparent;
	box-shadow: none;
	margin-top: -30px;
}

.main .registration.step3 .input-row .hint {
	margin-top: -45px;
	width: 435px;
	left: -455px;
}

.main .registration.step2 .input-row.head .hint,
.main .registration.step3 .input-row.head .hint {
	margin-top: 0;
}

.main .registration.step2 .input-row .hint .button,
.main .registration.step3 .input-row .hint .button {
	display: none;
}

.main .input-row .hint .button {
	display: none;
}

.main .registration .input-row.password-input {
	position: relative;
}

	.main .registration .input-row.password-input .show-icon:after {
		content: url("/Content/New/login/icon_show-password.svg");
		position: absolute;
		top: 16px;
		left: 14px;
		cursor: pointer;
		z-index: 2;
	}

	.main .registration .input-row.password-input .show-icon.active:after {
		content: url("/Content/New/login/icon_show-password-active.svg");
		position: absolute;
		top: 16px;
		left: 14px;
		cursor: pointer;
		z-index: 2;
	}

.custom-select,
.custom-select select {
	position: relative;
	width: 282px;
}

.select-selected:after {
	position: absolute;
	content: url("/Content/New/icon/menu-arrow.svg");
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.select-selected.select-arrow-active {
	border: 1px solid rgba(102, 160, 228, 0.5);
	border-bottom: none;
}

	.select-selected.select-arrow-active:after {
		content: url("/Content/New/icon/menu-arrow.svg");
		transform: rotate(180deg);
	}

.select-items div,
.select-selected {
	border: none;
	cursor: pointer;
	user-select: none;
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 17px;
	letter-spacing: 0.0357143em;
	color: #000000;
	width: 282px;
	height: 46px;
	padding: 0 31px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}


.step2 .select2-container--gizbarit {
	width: 282px !important;
}

.step3 .select-items div,
.step3 .select-selected {
	width: 175px;
	padding: 0 31px 0 15px;
}

.step3 .custom-select {
	width: 175px;
}

.step3 .select-items {
	width: 175px;
}

.table.edit-bank .row .col .empty .select-selected {
	border-color: #CCCBD0;
	border-radius: 5px;
}

	.table.edit-bank .row .col .empty .select-selected.select-arrow-active {
		border-radius: 5px 5px 0 0;
	}

.custom-select.disable {
	pointer-events: none;
}

.disable img.upload-photo {
	pointer-events: none !important;
}

.custom-select.disable .select-selected {
	padding-right: 0;
}

.select-items::-webkit-scrollbar {
	width: 6px;
}

	.select-items::-webkit-scrollbar * {
		background: transparent;
	}

.select-items::-webkit-scrollbar-track {
	border-radius: 10px;
	padding: 0 10px;
	background: transparent;
}

.select-items::-webkit-scrollbar-thumb {
	background: #66A0E4;
	opacity: 1;
	border-radius: 8px;
	border: 0px solid white;
}

	.select-items::-webkit-scrollbar-thumb:hover {
		opacity: 1;
	}

.select-selected {
	background-color: white;
	border: 1px solid #C6CACC;
}

.select-items {
	position: absolute;
	background-color: white;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	width: 282px;
	max-height: 183px;
	overflow-y: auto;
	overflow-x: hidden;
	border: 1px solid rgba(102, 160, 228, 0.5);
	border-top: none;
}

.select-hide {
	display: none;
}

.select-items div:hover, .same-as-selected {
	background: #66A0E4;
	color: white !important;
}

.dropzone {
	padding: 0 !important;
	border: none !important;
}

.new-doc-send .dropzone {
	min-height: 150px;
	border: 2.5px dashed #C6CACC !important;
	display: inline-block;
	width: 100%;
}

.receipt-inputs-row.tax {
	margin-top: 40px;
}

.main .registration .upload-big.loaded {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 240px;
	width: 100%;
}

	.main .registration .upload-big.loaded:after {
		display: none;
	}

.main .registration .upload-big.loaded {
	cursor: pointer;
	max-width: 220px;
	width: 100%;
	position: absolute;
	left: 32px;
	top: 99px;
}

	.main .registration .upload-big.loaded img {
		width: 100%;
	}

.main .registration .upload-small {
	position: relative;
}

	.main .registration .upload-small.loaded:after {
		display: none;
	}


.main .registration .upload-big {
	background: #FFFFFF;
	box-shadow: 0px 2.90909px 10.9091px rgba(0, 0, 0, 0.07);
	width: 198px;
	height: 120px;
	position: absolute;
	left: 32px;
	top: 99px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

	.main .registration .upload-big .text,
	.main .registration .upload-small .text {
		font-style: normal;
		font-weight: normal;
		font-size: 12px;
		line-height: 21px;
		color: #A0A0A0;
		opacity: 0.8;
		margin-bottom: 13px;
	}

	.main .registration .upload-big:after,
	.main .registration .upload-small:after {
		content: '';
		display: block;
		background: url("/Content/New/registration/cloud.svg");
		background-size: cover;
		width: 75px;
		height: 50px;
		opacity: 0.25;
	}

.main .registration.edit-details .upload-big:after {
	top: 107px;
}

.main .registration .upload-big.loaded span:after {
	content: url("/Content/New/registration/checked.svg");
	position: absolute;
	right: -52px;
	top: 80px;
	cursor: pointer;
}

.main .registration .upload-small {
	cursor: pointer;
	background: #FFFFFF;
	box-shadow: 0px 2.35152px 8.81818px rgba(0, 0, 0, 0.07);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 97px;
	max-width: 50%;
	flex-direction: column;
}

.upload-signature img, .upload-photo img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.main .registration .upload .input-row {
	align-items: center;
}

	.main .registration .upload .input-row .label {
		margin-top: 0;
	}

.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 10; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	text-align: center;
}

.modal .button.close {
	width: 108px;
	height: 42px;
	box-sizing: border-box;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.3px;
	margin: auto;
	margin-top: 28px;
	transition: 0.3s;
}

	.modal .button.close:hover,
	.modal .button.close:focus {
		color: white;
		cursor: pointer;
	}

.upload-image-block {
	background: #FFFFFF;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
	width: 255px;
	height: 165px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

	.upload-image-block .cloud {
		opacity: 0.25;
	}

	.upload-image-block .image-text {
		font-style: normal;
		font-weight: normal;
		font-size: 16px;
		line-height: 29px;
		color: #A0A0A0;
		opacity: 0.8;
		margin-bottom: 19px;
	}

.modal .loading {
	display: none;
}

.modal .loading-track {
	background: rgba(202, 230, 246, 0.5);
	border-radius: 6px;
	width: 100%;
	height: 8px;
	margin-top: 26px;
}

	.modal .loading-track:after {
		content: '';
		display: block;
		background: #66A0E4;
		border-radius: 6px;
		height: 8px;
		width: 25%;
	}

.main .registration .nav-buttons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 76px;
}

	.main .registration .nav-buttons .button {
		padding: 0px 37px;
		height: 41px;
		display: flex;
		align-items: center;
		text-decoration: none;
		border: none;
		outline: none;
	}

.custom-radio-button {
	display: inline-flex;
	position: relative;
	padding-right: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 0.2px;
	color: #373F41;
	margin-bottom: 21px;
}

.main .registration .radio-button-block {
	margin-bottom: 70px;
}

	.main .registration .radio-button-block:last-of-type {
		margin-bottom: 0;
	}

.custom-radio-button input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.remove-radio {
	margin-right: 25px;
	margin-top: 2px;
	cursor: pointer;
}

.radio-button-block .remove-radio:after {
	content: url("/Content/New/registration/remove.svg");
}

.add-radio {
	cursor: pointer;
	margin-top: 52px;
	display: inline-block;
}

	.add-radio:after {
		content: url("/Content/New/registration/add.svg");
	}

.radio-checkmark {
	position: absolute;
	top: 0;
	right: 0;
	height: 20px;
	width: 20px;
	border: 2px solid #C4C4C4;
	box-sizing: border-box;
	border-radius: 100px;
}

.custom-radio-button:hover input ~ .radio-checkmark {
	border-color: #66A0E4;
}

.custom-radio-button input:checked ~ .radio-checkmark {
	background-color: white;
	border-color: #66A0E4;
}

.radio-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.custom-radio-button input:checked ~ .radio-checkmark:after {
	display: block;
}

.custom-radio-button .radio-checkmark:after {
	top: 3px;
	right: 3px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #66A0E4;
}

.main .registration.step3 .custom-checkbox {
	color: #000000;
	margin-top: 55px;
}

#success {
	padding: 20px 10px;
}

	#success .modal-content {
		max-width: 450px;
		text-align: center;
		width: 100%;
	}

		#success .modal-content img {
			margin-bottom: 30px;
		}

		#success .modal-content .modal-head-text {
			font-style: normal;
			font-weight: bold;
			font-size: 18px;
			line-height: 21px;
			text-align: center;
			color: #000000;
			margin-bottom: 10px;
		}

		#success .modal-content .text {
			font-style: normal;
			font-weight: normal;
			font-size: 15px;
			line-height: 17px;
			display: flex;
			align-items: flex-end;
			text-align: center;
			max-width: 250px;
			color: #000000;
			margin: auto;
		}

	#success .modal-buttons {
		display: flex;
		justify-content: space-between;
		margin: auto;
		margin-top: 40px;
		max-width: 250px;
	}

		#success .modal-buttons .close {
			margin: 0;
		}

.white.download {
	display: flex;
	align-items: center;
	padding: 0 9px !important;
	height: 42px !important;
	border: 1px solid #66A0E4;
	transform: scale(1.8) translateX(20%);
}

	.white.download .img {
		margin-top: 2px;
	}

		.white.download .img:after {
			content: url("/Content/New/registration/download-icon.svg");
		}

	.white.download .top-text {
		font-style: normal;
		font-weight: bold;
		font-size: 7px;
		line-height: 7px;
		text-transform: uppercase;
		color: #66A0E4;
	}

	.white.download .bottom-text {
		font-style: normal;
		font-weight: normal;
		font-size: 12.2283px;
		line-height: 14px;
		color: #66A0E4;
	}

	.white.download .button-text {
		text-align: left;
		margin-left: 16px;
	}

	.white.download:hover {
		background: transparent;
	}

.main .documents {
	margin-top: 14px;
	padding: 34px 31px 25px;
	text-align: right;
	background: white;
	margin-bottom: 29px;
}

.main .first-block-mobile {
	margin-top: 14px;
}

.main .documents:last-of-type {
	margin-bottom: 0;
}

	.main .documents .date-block {
		background: #FFFFFF;
		border: 1px solid #DFE1E4;
		box-sizing: border-box;
		padding: 10px 14px 10px;
		display: inline-flex;
		align-items: center;
		cursor: pointer;
	}

		.main .documents .date-block .text {
			font-style: normal;
			font-weight: normal;
			font-size: 15px;
			line-height: 17px;
			color: #000000;
			border: none;
			width: 75px;
		}

		.main .documents .date-block .icon:after {
			content: url("/Content/New/icon/date.svg");
			margin-left: 10px;
			display: block;
			height: 21px;
		}

body[dir="rtl"] .main .documents .date-block .icon:after {
    margin-left: 0;
    margin-right: 10px;
}

	.main .documents .document-info-head {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 30px;
	}

		.main .documents .document-info-head .part {
			position: relative;
			padding-top: 100px;
		}

			.main .documents .document-info-head .part.left {
				text-align: left;
			}

			.main .documents .document-info-head .part .text,
			.main .documents .document-info .head-subtitle span {
				font-style: normal;
				font-weight: normal;
				font-size: 24px;
				line-height: 28px;
				margin-bottom: 7px;
			}

				.main .documents .document-info-head .part .text:last-of-type {
					margin-bottom: 0;
				}

				.main .documents .document-info-head .part .text .label, .head-subtitle-label {
					font-style: normal;
					font-weight: normal;
					font-size: 22px;
					line-height: 25px;
					color: #798695;
					margin-left: 5px;
				}

			.main .documents .document-info-head .part.left .text .label {
				margin-left: 0;
				margin-right: 5px;
			}

			.main .documents .document-info-head .part .logo {
				height: 70px;
				margin-bottom: 30px;
				position: absolute;
				top: 0;
				right: 0;
				display: flex;
				align-items: center;
			}

				.main .documents .document-info-head .part .logo img {
					max-height: 100%;
				}

			.main .documents .document-info-head .part .head-text {
				height: 70px;
				margin-bottom: 32px;
				font-style: normal;
				font-weight: normal;
				font-size: 48px;
				line-height: 50px;
				color: #000000;
				display: flex;
				align-items: center;
				position: absolute;
				top: 0;
				left: 0;
			}

	.main .documents .document-info {
		margin-top: 109px;
	}

		.main .documents .document-info .head-text {
			font-style: normal;
			font-weight: bold;
			font-size: 30px;
			line-height: 34px;
			justify-content: center;
			color: #000000;
			display: flex;
			flex-direction: row-reverse;
			margin-bottom: 90px;
		}

.ui-autocomplete {
	max-height: 200px;
	overflow-y: auto;
	overflow-x: hidden;
}

.main .documents .row .col input.input-validation-error {
	border: 1px solid red !important;
}

.input-validation-error ~ .select2 .select2-selection {
	border: 1px solid red !important;
}

.main .documents .document-info .head-text .number {
	margin-left: 23px;
}

body[dir="rtl"] .main .documents .document-info .head-text .number {
	margin-right: 23px;
	margin-left: 0;
}

.main .documents .document-info .inputs-block {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.form-right-aligned {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 10px;
	width: 100%;
}

body[dir="rtl"] .form-right-aligned {
	flex-direction: row;
}

	.main .documents .document-info .inputs-block .input-row {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		margin-bottom: 6px;
		width: 100%;
	}

		.main .documents .document-info .inputs-block .input-row.payment-terms {
			flex-direction: column;
			align-items: flex-end;
			padding: 0 34px;
		}

		.main.tax-invoice .documents .document-info .input-row.payment-terms.export {
			flex-direction: column;
			align-items: flex-start;
			padding: 0;
		}

			.main.tax-invoice .documents .document-info .input-row.payment-terms.export .label {
				text-align: left;
				font-size: 18px;
			}

			.main.tax-invoice .documents .document-info .input-row.payment-terms.export .custom-input {
				margin-left: 10px;
			}

			.main .documents .document-info .inputs-block .input-row.payment-terms .label {
				font-style: normal;
				font-weight: normal;
				font-size: 16px;
				line-height: 18px;
				color: #000000;
				width: 100%;
				max-width: none;
				text-align: right;
				margin-bottom: 16px;
			}

	.main .documents .document-info .inputs-block .label {
		max-width: 90px;
		width: 100%;
		margin-left: 9px;
		text-align: left;
		font-style: normal;
		font-weight: normal;
		font-size: 14px;
		line-height: 16px;
		letter-spacing: 0.01em;
		color: #798695;
	}

.main .documents .document-info .select-items div,
.main .documents .document-info .select-selected,
.main .documents .document-info .custom-select,
.main .documents .document-info .custom-select select,
.main .documents .document-info .select-items {
	width: 380px;
	background: #FAFAFA;
}

.main .documents .document-info .ui.selection.dropdown {
	width: 380px;
	background: #FAFAFA;
	border-radius: 0;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.main .documents .document-info .ui.search.dropdown.active > input.search,
.main .documents .document-info .ui.search.dropdown.visible > input.search {
	line-height: 25px;
	padding-right: 31px;
}

.main .documents .document-info .ui.search.dropdown > .text {
	padding-right: 2px;
	line-height: 27px;
}

body[dir="rtl"] .main .documents .document-info .ui.selection.dropdown {
	justify-content: flex-start;
}

.ui.selection.dropdown .menu > .item {
	border-top: none;
}

	.ui.selection.dropdown .menu > .item:hover {
		background: #66A0E4;
		color: white;
	}

.main .documents .document-info .ui.selection.dropdown:hover,
.main .documents .document-info .ui.selection.dropdown {
	border-color: #C6CACC;
}

	.main .documents .document-info .ui.selection.dropdown.active,
	.ui.selection.active.dropdown .menu,
	.ui.selection.active.dropdown .menu:hover,
	main .documents .document-info .ui.selection.dropdown.active:hover > .menu {
		border-color: rgba(102, 160, 228, 0.5);
	}

.ui.selection.active.dropdown .menu {
	max-height: 183px;
}

	.ui.selection.active.dropdown .menu::-webkit-scrollbar {
		width: 16px;
	}

	.ui.selection.active.dropdown .menu::-webkit-scrollbar-track {
		border-radius: 10px;
		padding: 0 10px;
	}

	.ui.selection.active.dropdown .menu::-webkit-scrollbar-thumb {
		background: #CCE5FF;
		opacity: 0.5;
		border-radius: 8px;
		border: 5px solid white;
	}

		.ui.selection.active.dropdown .menu::-webkit-scrollbar-thumb:hover {
			opacity: 1;
		}

.ui.dropdown .menu > .item,
.ui.search.selection.dropdown > input.search {
	text-align: right;
}

.main .documents .document-info .ui.search.dropdown > .text,
.ui.dropdown .menu > .item,
.ui.search.selection.dropdown > input.search {
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	letter-spacing: 0.0357143em;
	color: #000000;
}

.ui.search.selection.dropdown > input.search {
	line-height: 27px;
}

.main .documents .document-info .ui.dropdown > .dropdown.icon:before {
	content: url(/Content/New/icon/menu-arrow.svg);
	margin-top: 5px;
}

.main .documents .document-info .ui.dropdown > .dropdown.icon {
	margin-top: -5px !important;
}

.main .documents .document-info .ui.dropdown.active > .dropdown.icon {
	transform: rotate(180deg);
}

.main .documents .document-info .ui .dropdown.icon {
	right: 8px !important;
}

.main .documents .document-info .select-items div:hover,
.main .documents .document-info .same-as-selected {
	background: #66A0E4 !important;
	color: white !important;
}

.main .documents .document-info .custom-input {
	max-width: 380px;
	width: 100%;
	background: #FAFAFA;
}

.tax-invoice .custom-input {
	text-align-last: left !important;
	text-align: left !important;
}

.tax-invoice .select2 {
	text-align: left;
}

.main .documents .document-info .inputs-block .input-row.big {
	/*margin-top: 15px;*/
	flex-direction: column;
	align-items: flex-end;
	padding: 0 34px;
}

	.main .documents .document-info .inputs-block .input-row.big .custom-input {
		width: 435px;
		max-width: 100%;
		background: #FAFAFA;
		overflow: hidden;
		overflow-wrap: break-word;
		resize: horizontal;
		line-height: 46px;
	}

	.main .documents .document-info .inputs-block .input-row.big .label {
		font-style: normal;
		font-weight: normal;
		font-size: 16px;
		line-height: 18px;
		letter-spacing: 0.0357143em;
		margin-bottom: 10px;
		color: #000000;
		text-align: right;
		width: auto;
		max-width: none;
	}

	.main .documents .document-info .inputs-block .input-row.big .custom-input:focus {
		background: #FAFAFA;
	}

.catalog-table, .table3, #PaymentsTable {
	padding-top: 25px;
}

.table {
	overflow-x: auto;
	overflow-y: hidden;
	width: 100%;
	margin-top: 0px;
	display: block;
}

	.table .row,
	.table .dtrg-group {
		display: flex;
		flex-direction: row-reverse;
		align-items: stretch;
		min-width: 1050px;
		margin-right: 0;
		margin-left: 0;
	}

	.table .row.new {
		display: none;
	}

	.table thead,
	.table tbody,
	.table tfoot {
		display: block;
	}

	.table .row.head-row .col {
		font-style: normal;
		font-weight: bold;
		font-size: 14px;
		line-height: 16px;
		text-align: right;
		color: #66A0E4;
		border-bottom: 1px solid #F2F3F8;
		border-left: 1px solid rgba(102, 160, 228, 0.2);
		padding: 0 10px 10px;
	}

	.table .row .col {
		border-bottom: 1px solid #F2F3F8;
		border-left: 1px solid rgba(102, 160, 228, 0.2);
		padding: 0px 11px;
		align-items: center;
		display: flex;
		justify-content: flex-end;
		box-sizing: border-box;
	}

.document-info .table .row .col {
	padding: 21px 11px;
}

.table3 .row .col:first-of-type,
.table3 .row .col:last-of-type,
.table3 .row .col:nth-last-child(2) {
	border-left: none !important;
}

.tax-invoice .table3 .row .col:nth-last-child(2) {
	border-left: 1px solid rgba(102, 160, 228, 0.2) !important;
}

.tax-invoice .table3 .row .col1 {
	border-left: none !important;
}

.table3 .row .col:first-of-type,
.table3 .row .col:last-of-type,
.table3 .row:last-of-type .col {
	border-bottom: none !important;
}

.table .row .col.number {
	width: 34px;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	letter-spacing: 0.0357143em;
	color: rgba(0, 0, 0, 0.5);
}

.table .row .col.col1 {
	width: calc(26% - 34px);
}

.table .row .col.col2 {
	width: 8%;
}

.table .row .col.col3 {
	width: calc(29% - 60px);
}

.table.catalog-table .row .col.col3 {
	width: calc(20% - 50px);
}

.table.catalog-table .row .col.image {
	width: 7%;
}

	.table.catalog-table .row .col.image img {
		width: 100%;
	}

.table .row .col.col4 {
	width: 10.5%;
}

.table .row .col.col5 {
	width: 8.5%;
}

.table .row .col.col6 {
	width: 10%;
}

.table .row .col.col7 {
	width: 10%;
}

.table.catalog-table .row .col.col4 {
	width: 8%;
}

.table.catalog-table .row .col.col5 {
	width: 7%;
}

.table.catalog-table .row .col.col6 {
	width: 11%;
}

#clientTable .row input {
	pointer-events: none;
}

#clientTable .row .all-emails input,
#clientTable .row .all-numbers input {
	pointer-events: auto;
}

#clientTable .row.editing input {
	pointer-events: auto;
}

/* this .row.disable approach shoul be removed */
.table .row.disable .col input {
	border: transparent;
	pointer-events: none;
	background: transparent;
	color: #000;
}

.table .row.disable .select2-selection {
	pointer-events: none;
}

.table .row.disable .col textarea {
	border: transparent;
	pointer-events: none;
	background: transparent;
	color: #000;
	resize: none;
	pointer-events: none;
}

.table .row.disable .col .custom-checkbox {
	pointer-events: none;
}

.table .row.disable .col.edit,
.table .row.disable .col.number {
	background: transparent;
}

.table .row.checked .col {
	background: #8DCF63 !important;
}

.table .row .col input,
.dataTables_filter input {
	background: #FFFFFF;
	border: 1px solid #C6CACC;
	box-sizing: border-box;
	border-radius: 4px;
	line-height: 31px;
	width: 100%;
	/*max-width: 150px;*/
	padding: 0 10px;
	outline: none;
	text-align: right;
}

.dataTables_filter input {
	width: 250px;
	max-width: 250px;
	margin: 20px 30px 10px 0;
	border: #66A0E4 1px solid;
}

.dataTables_filter {
	position: relative;
}

.relative .dataTables_filter {
	top: 0;
	height: auto;
}


.table .row .col input.short {
	max-width: 40px;
}

.table .row .col input:focus {
	border-color: #66A0E4;
}

.table .row .col.edit {
	width: 50px;
	padding: 0 5px;
	display: flex;
	justify-content: space-between;
	border-left: 0;
}

.table3 .row .col input {
	width: 100%;
}

.table .row .col .arrows {
	content: url("/Content/New/icon/arrows.svg");
	cursor: pointer;
	margin-left: 10px;
}

.table .row .col .edit {
	content: url("/Content/New/icon/edit-blue.svg");
	cursor: pointer;
}

.table .row.editing .col .edit {
	display: none;
}

.catalog-table .row:only-child .col .remove,
#PaymentsTable .PaymentRow .col:not(.edit) .remove,
#editSupplierWaybillForm .row:only-child .col .remove,
#catalogItemsTable .row:only-child .col .remove {
	display: none;
}

.payment-rows .DateOperationClass {
	width: 80px;
	padding: 0 5px;
}

.table .row .col .remove {
	content: url("/Content/New/icon/delete.svg");
	cursor: pointer;
}

.related .table .row .col .remove {
	content: url("/Content/New/icon/delete.svg");
	margin: 11px;
	cursor: pointer;
	margin-top: 16px;
}

.table .row .col .ok {
	content: url("/Content/New/icon/ok.svg");
	cursor: pointer;
	display: none;
}

.edit-bank .row .col .ok,
.edit-client .row .col .ok,
.table .row.editing .col .ok {
	content: url("/Content/New/icon/ok.svg");
	cursor: pointer;
	display: flex;
}

.table .row.error .col .ok {
	content: url("/Content/New/icon/ok-grey.svg");
	cursor: pointer;
}

.add {
	content: url("/Content/New/icon/add.svg");
	margin: 11px;
	cursor: pointer;
	margin-top: 16px;
}

.document-info .add {
	content: url("/Content/New/icon/add.svg");
	margin: 5px;
	cursor: pointer;
	margin-top: 16px;
}

	.document-info .add.update::before {
		background: none !important;
		content: none !important;
	}

body[dir="rtl"] .document-info .add-row,
.tax-invoice .table .add-row {
	min-width: 1050px;
}

.table .row .col .favorite {
	background: url("/Content/New/icon/favorite-empty.svg");
	cursor: pointer;
	position: relative;
	width: 17px;
	height: 17px;
}

	.table .row .col .favorite.active {
		background: url("/Content/New/icon/favorite.svg");
		cursor: pointer;
		width: 17px;
		height: 17px;
	}

	.table .row .col .favorite .hint {
		display: none;
	}

	.table .row .col .favorite:hover .hint {
		position: absolute;
		padding: 3px 12px;
		font-style: normal;
		font-weight: normal;
		font-size: 12px;
		line-height: 21px;
		display: flex;
		align-items: center;
		text-align: center;
		color: #000000;
		white-space: nowrap;
		background: white;
		top: 15px;
		left: 15px;
	}

.table .row .col .add1 {
	background: url(/Content/New/icon/add.svg);
	background-repeat: no-repeat;
	background-position: 15px 10px;
	cursor: pointer;
}

/*.document-info .add1{
    content: url("/Content/New/icon/add.svg");
    margin: 11px;
    cursor: pointer;
}*/

body[dir="rtl"] .document-info .add1 {
	margin-right: auto;
}

.table2 .add1,
.table3 .add1 {
	margin: 14px;
}


.table::-webkit-scrollbar {
	width: 10px;
}

.table::-webkit-scrollbar-track {
	border-radius: 10px;
	padding: 0 10px;
	background: #F2F3F8;
	border-top: 7px solid white;
	border-bottom: 8px solid white;
}

.table::-webkit-scrollbar-thumb {
	background: #CCE5FF;
	opacity: 0.5;
	border-radius: 18px;
	border: 5px solid white;
	border-left: 2px solid white;
	border-right: 2px solid white;
}

	.table::-webkit-scrollbar-thumb:hover {
		opacity: 1;
	}

#deleteLogo .modal-content {
	width: 100%;
	max-width: 388px;
	text-align: right;
	padding: 33px 26px 23px;
}

	#deleteLogo .modal-content .modal-head-text {
		font-style: normal;
		font-weight: bold;
		font-size: 16px;
		line-height: 18px;
		color: #000000;
		margin-bottom: 14px;
	}

	#deleteLogo .modal-content .modal-text {
		font-style: normal;
		font-weight: normal;
		font-size: 15px;
		line-height: 17px;
		color: #000000;
		margin-bottom: 28px;
	}


	#deleteLogo .modal-content .modal-buttons {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

		#deleteLogo .modal-content .modal-buttons .button {
			width: 134px;
			height: 42px;
			margin-left: 17px;
			display: flex;
			align-items: center;
			justify-content: center;
		}

			#deleteLogo .modal-content .modal-buttons .button.close {
				margin-top: 0;
				margin: initial;
			}

#deleteRow .modal-content {
	width: 100%;
	max-width: 388px;
	text-align: left; /*TODO hebrew alignement?*/
	padding: 33px 26px 23px;
}

	#deleteRow .modal-content .modal-head-text {
		font-style: normal;
		font-weight: bold;
		font-size: 16px;
		line-height: 18px;
		color: #000000;
		margin-bottom: 14px;
	}

	#deleteRow .modal-content .modal-text {
		font-style: normal;
		font-weight: normal;
		font-size: 15px;
		line-height: 17px;
		color: #000000;
		margin-bottom: 28px;
	}


	#deleteRow .modal-content .modal-buttons {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

		#deleteRow .modal-content .modal-buttons .button {
			width: 134px;
			height: 42px;
			margin-left: 17px;
			display: flex;
			align-items: center;
			justify-content: center;
		}

			#deleteRow .modal-content .modal-buttons .button.close {
				margin-top: 0;
				margin: initial;
			}

body[dir="rtl"] .main .short-info .content,
body[dir="rtl"] .main .info .hint,
body[dir="rtl"] .main .info .item {
	flex-direction: row-reverse;
}

	body[dir="rtl"] .main .info .item.reverse {
		flex-direction: row;
	}

body[dir="rtl"] .main .registration .steps,
body[dir="rtl"] .main .registration .input-row,
body[dir="rtl"] .main .registration .input-block {
	flex-direction: row;
}

body[dir="rtl"] .main .bottom-label {
	justify-content: flex-start;
}

body[dir="rtl"] .select-items div,
body[dir="rtl"] .select-selected {
	/*justify-content: flex-start;*/
	justify-content: flex-end;
}

body[dir="rtl"] .modal .loading-track:after {
	margin-right: auto;
}

body[dir="rtl"] .main .bottom-label.field-validation-error {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

body[dir="rtl"] .main .registration .nav-buttons {
	flex-direction: row-reverse;
}

body[dir="rtl"] #deleteLogo .modal-content .modal-buttons {
	flex-direction: row-reverse;
}

body[dir="rtl"] #deleteRow .modal-content .modal-buttons {
	flex-direction: row-reverse;
}

body[dir="rtl"] .main .registration .radio-button-block {
	position: relative;
}

body[dir="rtl"] .main .registration .remove-radio {
	position: absolute;
	right: 70px;
}

body[dir="rtl"] .main .registration.step3 .input-row .big-text .label {
	margin-right: auto;
}

body[dir="rtl"] .custom-checkbox {
	justify-content: flex-start;
}

.main .documents .calculate-inputs {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 25px;
	margin-left: 60px;
}

	.main .documents .calculate-inputs .input-row {
		display: flex;
		margin-bottom: 15px;
		align-items: center;
	}

body[dir=rtl] .main .documents .calculate-inputs .input-row {
	flex-direction: row-reverse;
}



.main .documents .calculate-inputs .input-row.round {
	margin-bottom: 45px;
}

.main .documents .calculate-inputs .input-row .input {
	max-width: 156px;
	height: 38px;
	background: #FAFAFA;
	padding: 0 5px;
}

body[dir=rtl] .main .documents .calculate-inputs .input-row .input {
	direction: ltr;
}

.main .documents .calculate-inputs .input-row .input:disabled {
	background: #FAFAFA;
	color: rgba(0, 0, 0, 0.5);
}

.main .documents .calculate-inputs .input-row .label {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 21px;
	color: #000000;
	margin: 0 20px;
}

.main .documents .document-info .short .select-selected,
.main .documents .document-info .custom-select.short {
	width: 60px;
	background: white;
}

.main .documents .document-info .short .select-items div,
.main .documents .document-info .short .select-items {
	width: 60px;
	background: #FAFAFA;
}

	.main .documents .document-info .short .select-items div,
	.main .documents .document-info .short .select-selected {
		width: 60px;
		padding: 0 25px 0 5px;
		height: 31px;
	}

body[dir=rtl] .main .documents .document-info .short .select-items div,
body[dir=rtl] .main .documents .document-info .short .select-selected {
	padding: 0 25px 0 25px;
	justify-content: flex-start;
}


body[dir=rtl] .main .documents .document-info .col6 .short .select-items div,
body[dir=rtl] .main .documents .document-info .col6 .short .select-selected {
	padding: 0 25px 0 5px;
	justify-content: flex-start;
}

.main .documents .short .select-selected:after {
	position: absolute;
	content: url(/Content/New/icon/arrows.svg);
	top: 9px;
	right: 8px;
}

.main .documents .short .select-selected.select-arrow-active:after {
	transform: none;
}

.main .documents .custom-checkbox {
	margin-left: 20px;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 21px;
	color: #000000;
}

.main .documents .document-info .table .short .select-items div,
.main .documents .document-info .table .short .select-selected {
	border-color: transparent;
}

	.main .documents .document-info .table .short .select-selected.select-arrow-active {
		border: 1px solid rgba(102, 160, 228, 0.5);
		border-bottom: none;
	}

.main .documents .document-info .table .col .short,
.main .documents .document-info .table .col .short .select-items div,
.main .documents .document-info .table .col .short .select-selected,
.main .documents .document-info .table .col .short .select-items {
	width: 40px;
}

.main .documents .document-info .table .col1 .short,
.main .documents .document-info .table .col1 .short .select-items div,
.main .documents .document-info .table .col1 .short .select-selected,
.main .documents .document-info .table .col1 .short .select-items {
	width: 160px;
}

.main .documents .document-info .table .col1 .medium,
.main .documents .document-info .table .col1 .medium select,
.main .documents .document-info .table .col1 .medium .select-items div,
.main .documents .document-info .table .col1 .medium .select-selected,
.main .documents .document-info .table .col1 .medium .select-items {
	width: 220px;
	max-width: 100%;
}

.main .documents .document-info .table .table-text {
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 17px;
	text-align: right;
	color: #000000;
	border: none;
}

.main .documents .document-info .table .table-text {
	line-height: 32px;
}

.main .documents .row .col input {
	border: 1px solid transparent;
}

	.main .documents .row .col input:disabled {
		color: #000;
	}

	.main .documents .row .col input:focus {
		background: transparent;
	}

	.main .documents .row .col input:not([type='button']) {
		background: transparent;
	}

		.main .documents .row .col input:not([type='button']):not([disabled]):focus {
			border: 1px solid #66A0E4;
			background: white;
		}



	.main .documents .row .col input.empty {
		border: 1px solid #C6CACC !important;
	}

		.main .documents .row .col input.empty:focus {
			border: 1px solid #66A0E4 !important;
		}

.main .documents .row.error .col input {
	border: 1px solid #FF0000 !important;
}

.main .documents .row.editing .col input {
	border: 1px solid #C6CACC;
	background: #FAFAFA;
}

	.main .documents .row.editing .col input:focus {
		border: 1px solid #66A0E4 !important;
	}

	.main .documents .row.editing .col input:disabled {
		border-color: transparent !important;
		background: white;
	}

.main .documents .document-info .table .disable .table-text {
	color: rgba(0, 0, 0, 0.25);
}

.main .documents .document-info .table .table-text.red {
	color: #9C0000;
}

.main .documents .document-info .table .table-text.grey {
	color: rgba(0, 0, 0, 0.65);
}

.main .documents .table .icon:after {
	content: url(/Content/New/icon/date.svg);
	margin-left: 10px;
	display: block;
	height: 21px;
}

.table.table2 .row .col.col1 {
	width: calc(20% - 34px);
}

.table.table2 .row .col.col2,
.table.table2 .row .col.col4,
.table.table2 .row .col.col5 {
	width: 10%;
}

.table.table2 .row .col.col3 {
	width: calc(20% - 60px);
}

.table.table2 .row .col.col6 {
	width: 17%;
}

.table.table2 .row .col.col7 {
	width: 13%;
}

.main .documents .sum-row {
	display: flex;
	justify-content: flex-start;
	margin-left: 60px;
	margin-top: 22px;
}

	.main .documents .sum-row .number {
		font-style: normal;
		font-weight: bold;
		font-size: 16px;
		line-height: 18px;
		text-align: right;
		color: #000000;
		pointer-events: none;
		border: none;
		background: none;
	}

	.main .documents .sum-row .label {
		font-style: normal;
		font-weight: bold;
		font-size: 16px;
		line-height: 18px;
		color: #66A0E4;
		margin-left: 27px;
	}

.main .documents .signature-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: row-reverse;
	padding: 0 34px;
}

	.main .documents .signature-row .label,
	.label.signature {
		direction: rtl;
	}

.table .row.disable .select-selected {
	pointer-events: none;
}

.table .row.disable .select-selected {
	background-color: #fff;
}

	.table .row.disable .select-selected::after {
		content: none;
	}

.table.table3 .row .col.col1 {
	width: 7.5% !important;
}

.table.table3 .row .col.col2 {
	width: calc(17.5% - 60px) !important;
}

.table.table3 .row .col.col3 {
	width: calc(25.5% - 34px) !important;
}

.table.table3 .row .col.col4,
.table.table3 .row .col.col5,
.table.table3 .row .col.col6 {
	width: 16.5% !important;
}

.table.table3.filled .row:nth-of-type(2n - 1) .col {
	background: rgba(140, 171, 220, 0.25);
}

.table.table3.filled .row.head-row .col {
	background: transparent;
}

.table.table3.filled .row .col.edit,
.table.table3.filled .row .col.number {
	background: transparent !important;
}

.main .documents .section-head-text {
	font-style: normal;
	font-weight: normal;
	font-size: 28px;
	line-height: 32px;
	text-align: center;
	color: #000000;
}

.main .documents .buttons-block {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 75px;
}

	.main .documents .buttons-block .button {
		width: 190px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 34px;
	}

		.main .documents .buttons-block .button:last-of-type {
			margin-right: 0;
		}

		.main .documents .buttons-block .button.print.wo-prices {
			width: 240px;
		}

		.main .documents .buttons-block .button.mail:before {
			content: url("/Content/New/documents/mail_black.svg");
			margin-top: 3px;
			margin-right: 35px;
		}

		.main .documents .buttons-block .button.save:before {
			content: url("/Content/New/documents/save.svg");
			margin-top: 5px;
			margin-right: 10px;
		}

		.main .documents .buttons-block .button.print:before {
			content: url("/Content/New/documents/print_black.svg");
			margin-top: 2px;
			margin-right: 35px;
		}

		.main .documents .buttons-block .button.mail:hover:before {
			content: url("/Content/New/documents/mail_white.svg");
			margin-top: 3px;
			margin-right: 35px;
		}

		.main .documents .buttons-block .button.print:hover:before {
			content: url("/Content/New/documents/print_white.svg");
			margin-top: 2px;
			margin-right: 35px;
		}

body[dir="rtl"] .main .documents .document-info-head,
body[dir="rtl"] .main .documents .document-info-head .part:last-of-type .text {
	flex-direction: row-reverse;
}

body[dir="rtl"] .main .documents .document-info .inputs-block {
	align-items: flex-start;
}

	body[dir="rtl"] .main .documents .document-info .inputs-block .input-row.big {
		flex-direction: column;
		align-items: flex-start;
	}

	body[dir="rtl"] .main .documents .document-info .inputs-block .input-row {
		flex-direction: row;
	}

body[dir="rtl"] .table .row {
	flex-direction: row;
}

	body[dir="rtl"] .table .row .col {
		justify-content: flex-end;
		/*flex-direction: row-reverse;*/
	}

		body[dir="rtl"] .table .row .col.edit {
			justify-content: space-between;
		}

body[dir="rtl"] .table .add1 {
	margin-right: auto;
}

body[dir="rtl"] .main .documents .calculate-inputs {
	align-items: flex-end;
}

	body[dir="rtl"] .main .documents .label,
	body[dir="rtl"] .main .documents .calculate-inputs .custom-select,
	body[dir="rtl"] .main .documents .document-info-head .part .text {
		direction: ltr;
	}

		body[dir="rtl"] .main .documents .calculate-inputs .custom-select .select-items div,
		body[dir="rtl"] .main .documents .calculate-inputs .custom-select .select-selected {
			padding-right: 20px !important;
			padding-left: 10px !important;
			justify-content: flex-start !important;
		}

	body [dir="rtl"] .main .documents .calculate-inputs .input-row {
		flex-direction: row-reverse;
	}

body[dir="rtl"] .main .documents .sum-row,
body[dir="rtl"] .main .documents .buttons-block,
body[dir="rtl"] .main .documents .buttons-block .button {
	flex-direction: row-reverse;
}

body[dir="rtl"] .main .documents .signature-row {
	flex-direction: row;
}

	body[dir="rtl"] .main .documents .signature-row .label,
	.label.signature {
		direction: rtl !important;
	}

body [dir="rtl"] .main .documents .date-block {
	display: inline-flex;
	flex-direction: row-reverse;
}

.main .documents .document-info .inputs-block .custom-radio-button {
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: 0.2px;
	color: #373F41;
	max-width: 160px;
	width: 160px;
	margin-bottom: 0;
	flex: 1;
	justify-content: flex-end;
}

.main .documents .document-info .input-row.payment-terms.export .custom-radio-button {
	width: unset;
}

	.main .documents .document-info .input-row.payment-terms.export .custom-radio-button em {
		width: 120px;
		text-align: left;
		font-style: normal;
	}

	.main .documents .document-info .inputs-block .custom-radio-button-block {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
	}

	.main .documents .document-info .inputs-block .custom-radio-button-block .custom-input {
		width: 130px;
		height: 33px;
		margin-right: 10px;
		background: white;
	}

.main .documents .document-info .inputs-block .input-row.payment-terms .text {
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: 0.2px;
	color: #373F41;
	margin: 17px 0;
}

.main .documents .document-info .inputs-block .input-row.payment-terms .date-input {
	position: relative;
}

	.main .documents .document-info .inputs-block .input-row.payment-terms .date-input .icon:after {
		content: url(/Content/New/icon/date.svg);
		margin-left: 10px;
		display: block;
		height: 21px;
		position: absolute;
		right: 20px;
		top: 7px;
	}

	.main .documents .document-info .inputs-block .input-row.payment-terms .date-input .input {
		padding-right: 35px;
		padding-left: 5px;
	}

.main .documents .document-info .receipt-inputs-row {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 80px;
}

	.main .documents .document-info .receipt-inputs-row .input-row {
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
	}

		.main .documents .document-info .receipt-inputs-row .input-row

		.main .documents .document-info .receipt-inputs-row .label {
			font-style: normal;
			font-weight: normal;
			font-size: 16px;
			line-height: 18px;
			text-align: right;
			color: #000000;
			margin-left: 25px;
		}

.main .small-section-header {
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 18px;
	text-align: right;
	color: #000000;
	margin-bottom: 6px;
	margin-right: 3px;
}

.main .documents .document-info .receipt-inputs-row.tax .ui.selection.dropdown {
	width: 157px;
	height: 38px;
	background: white;
}

.main .documents .document-info .receipt-inputs-row.tax .ui.dropdown > .dropdown.icon {
	margin-top: -9px !important;
}

.main .documents .document-info .receipt-inputs-row.tax .ui.search.dropdown.active > input.search,
.main .documents .document-info .receipt-inputs-row.tax .ui.search.dropdown.visible > input.search,
.main .documents .document-info .receipt-inputs-row.tax .ui.search.selection.dropdown > input.search {
	line-height: 15px;
}

.main .documents .document-info .receipt-inputs-row .short .select-items div,
.main .documents .document-info .receipt-inputs-row .short .select-selected {
	width: 130px;
	height: 38px;
}

.main .documents .document-info .receipt-inputs-row .short .select-selected,
.main .documents .document-info .receipt-inputs-row .custom-select.short {
	width: 130px;
	height: 38px;
	padding: 0 30px 0 5px;
	margin-right: 8px;
}

.main .documents .document-info .receipt-inputs-row .short .select-items div,
.main .documents .document-info .receipt-inputs-row .short .select-items {
	width: 130px;
	left: 5px;
}

.main .documents .document-info .receipt-inputs-row.tax .short .select-items div,
.main .documents .document-info .receipt-inputs-row.tax .short .select-selected {
	width: 204px;
	height: 38px;
}

body[dir="rtl"] .main .documents .document-info .receipt-inputs-row .short .select-selected,
body[dir="rtl"] .main .documents .document-info .receipt-inputs-row .custom-select.short {
	padding: 0 0px 0 5px;
	margin-right: 8px;
	margin: 0;
}

body[dir="rtl"] .main .documents .document-info .receipt-inputs-row .short .select-selected {
	padding-right: 30px;
}

.main .documents .document-info .receipt-inputs-row.tax .short .select-selected,
.main .documents .document-info .receipt-inputs-row.tax .custom-select.short {
	width: 204px;
	height: 38px;
	padding: 0 30px 0 5px;
	margin-right: 8px;
}

.main .documents .document-info .receipt-inputs-row.tax .short .select-selected {
	margin: 0 3px;
}

.main .documents .document-info .receipt-inputs-row.tax .short .select-items div,
.main .documents .document-info .receipt-inputs-row.tax .short .select-items {
	width: 204px;
	left: 8px;
}

.main .documents .document-info .receipt-inputs-row .short .select-items div {
	padding: 0 30px 0 5px;
}

.main .documents .document-info .receipt-inputs-row .select-selected.select-arrow-active {
	background: #FAFAFA;
}

.main .documents .document-info .receipt-inputs-row .label {
	margin-left: 15px;
}

.main .documents .receipt-inputs-row .short .select-selected:after {
	position: absolute;
	content: url(/Content/New/icon/menu-arrow.svg);
	top: 10px;
	right: 8px;
}

.main .documents .receipt-inputs-row .short .select-selected.select-arrow-active:after {
	transform: rotate(180deg);
	top: 13px;
}

.main .documents .document-info.small {
	margin-top: 0;
}

.main .documents .receipt-inputs-row .input-row.big .custom-input {
	width: 460px;
	height: 38px;
	max-width: 100%;
	background: white;
	overflow: hidden;
	overflow-wrap: break-word;
	resize: horizontal;
	line-height: 38px;
}

.main .documents .receipt-inputs-row .input-row.big {
	margin-right: 133px;
}

.main .documents .document-info.small .input-row.small {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

	.main .documents .document-info.small .input-row.small .label-content {
		max-width: 85px;
		width: min-content;
		margin-left: 21px;
	}

.document-info.small .input-row.small .label {
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 17px;
	text-align: right;
	color: #000000;
	max-width: 85px;
	display: inline-block;
}

.main .documents .document-info.small .input-row.small .label span {
	white-space: nowrap;
}

.document-info.small .input-row.small .custom-input {
	width: 130px;
	height: 38px;
	background: white;
}

.main .documents .document-info.small .inputs-row.only-bottom {
	display: flex;
	flex-direction: row-reverse;
	margin-top: 55px;
}

.main.tax-invoice .documents .document-info.small .inputs-row.only-bottom {
	flex-direction: row;
}

	.main .documents .document-info.small .inputs-row.only-bottom .input-row {
		margin-right: 45px;
	}

		.main .documents .document-info.small .inputs-row.only-bottom .input-row:first-of-type {
			margin-right: 0;
		}

	.main .documents .document-info.small .inputs-row.only-bottom .label {
		max-width: none;
		margin-left: 3px;
	}

	.main .documents .document-info.small .inputs-row.only-bottom .custom-input {
		border: none;
		border-bottom: 1px solid #E8E8E8;
	}

		.main .documents .document-info.small .inputs-row.only-bottom .custom-input:focus {
			border-color: rgba(102, 160, 228, 0.5);
		}

body[dir="rtl"] .main .documents .document-info .inputs-block .input-row.payment-terms {
	flex-direction: column;
	align-items: flex-start;
}

body[dir="rtl"] .main .documents .document-info .inputs-block .custom-radio-button-block,
body[dir="rtl"] .main .documents .document-info .receipt-inputs-row,
body[dir="rtl"] .main .documents .document-info .receipt-inputs-row .input-row,
body[dir="rtl"] .main .documents .document-info.small .input-row.small,
body[dir="rtl"] .main .documents .document-info.small .inputs-row.only-bottom {
	flex-direction: row;
}

body[dir="rtl"] .main .documents .document-info .inputs-block .input-row.export .custom-radio-button-block {
	flex-direction: row-reverse;
}

#loading .modal-content {
	background: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

	#loading .modal-content .loading-text {
		font-style: normal;
		font-weight: normal;
		font-size: 24px;
		line-height: 28px;
		display: flex;
		align-items: center;
		color: #FFFFFF;
		margin-top: 40px;
		justify-content: center;
	}

	#loading .modal-content .loading-item {
		width: 49px;
		height: 49px;
		border-radius: 50px;
		background: white;
		margin-right: 30px;
	}

		#loading .modal-content .loading-item:first-of-type {
			margin-right: 0;
		}

		#loading .modal-content .loading-item.active {
			background-color: #66A0E4;
		}

	#loading .modal-content .loading-row {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: row-reverse;
	}

body[dir="rtl"] #loading .modal-content .loading-row {
	flex-direction: row;
}

.main .documents .table3.filled .icon:after {
	display: none;
}

.main .documents .nav-row {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 0 34px;
	position: relative;
	z-index: 3;
}

.main.edit-documents .documents .nav-row {
	margin-top: 41px;
	padding: 0 25px;
}

body[dir="rtl"] .main .documents .nav-row,
body[dir="rtl"] .main .documents .nav-row .input-row,
body[dir="rtl"] .main .documents .nav-row .pagination {
	flex-direction: row-reverse;
}

.table {
	margin-bottom: 10px;
}

	.table.table3.filled {
		position: relative;
		padding-bottom: 45px;
	}

	.table.table1.filled .row:nth-of-type(2n) .col {
		background: rgba(140, 171, 220, 0.25);
	}

	.table.table1.filled .row .col .select-selected,
	.table.table1.filled .row .col .custom-select.short {
		background: transparent !important;
	}

		.table.table1.filled .row .col .select-selected.select-arrow-active {
			background: white !important;
		}

	.table.edit-bank .row:nth-of-type(2n) .col {
		background: rgba(140, 171, 220, 0.25);
	}

	.table.edit-bank .row .col {
		position: relative;
	}

	.table.edit-bank .row .col .select-selected,
	.table.edit-bank .row .col .custom-select.short {
		background: transparent !important;
		border-color: transparent;
		width: 200px;
		line-height: 16px;
	}

	.table.edit-bank .row .col .select-items,
	.table.edit-bank .row .col .select-items div,
	.table.edit-bank .row .col .select-selected {
		width: 200px;
		box-sizing: border-box;
		margin-right: 0;
		margin-left: auto;
	}

	.table.edit-bank .row .col .select-items {
		/*height: 84px;*/
		height: 270px;
		max-height: none;
	}

		.table.edit-bank .row .col .select-items div {
			height: 27px;
		}

	.table.edit-bank .row.editing .col .select-selected {
		border: 1px solid #C6CACC;
		border-radius: 4px;
		background: white !important;
	}

		.table.edit-bank .row.editing .col .select-selected.select-arrow-active {
			background: white;
			border: 1px solid rgba(102, 160, 228, 0.5);
			border-bottom: none;
			border-radius: 4px 4px 0 0;
		}

.main .documents .table.edit-bank .row:last-of-type .select-items {
	top: auto;
	bottom: 32px;
	border: 1px solid rgba(102, 160, 228, 0.5);
	border-bottom: none;
	left: auto;
	right: 0;
}

.main .documents .table.edit-bank .row:last-of-type .select-selected.select-arrow-active,
.main .documents .table.edit-bank .row:last-of-type .select-selected.select-arrow-active {
	border: 1px solid rgba(102, 160, 228, 0.5);
	border-top: none;
	border-radius: 0 0 4px 4px;
}

.main .documents .table.edit-bank .row:last-of-type .short .select-items div,
.main .documents .table.edit-bank .row:last-of-type .short .select-selected {
	height: 30px;
}

.main.edit-documents .table.edit-bank .row .col.edit {
	width: 130px !important;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 16px;
}

	.main.edit-documents .table.edit-bank .row .col.edit div {
		margin-right: 18px;
	}

		.main.edit-documents .table.edit-bank .row .col.edit div:last-of-type {
			margin-right: 0px;
		}

.main.edit-documents .table.edit-bank .row .col1 {
	width: calc(40% - 130px) !important;
}

.main.edit-documents .table.edit-bank .select-selected:after {
	position: absolute;
	content: url(/Content/New/icon/menu-arrow.svg);
	top: 7px;
}

.main.edit-documents .table.edit-bank .disable .select-selected:after {
	content: '';
}

.main.edit-documents .table.edit-bank .select-selected.select-arrow-active:after {
	transform: rotate(180deg);
	top: 12px;
}

.main.edit-documents .table.edit-bank .select-selected.select-arrow-active {
	background: white !important;
}

.main.edit-documents .table.edit-bank .row .col2,
.main.edit-documents .table.edit-bank .row .col4,
.main.edit-documents .table.edit-bank .row .col5,
.main.edit-documents .table.edit-bank .row .col6 {
	width: 15% !important;
}

.main.edit-documents .table.edit-bank .row.disable .col {
	background: white;
}

.main.edit-documents .table.edit-bank .row:nth-of-type(2n).disable .col {
	background: rgba(140, 171, 220, 0.25);
}

.main .documents .nav-row .input-row {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

	.main .documents .nav-row .input-row .label {
		margin-right: 10px;
		font-style: normal;
		font-weight: normal;
		font-size: 13px;
		line-height: 20px;
		color: #464457;
	}

.main .documents .nav-row .short,
.main .documents .nav-row .select-items {
	width: 55px;
}

.main .documents .nav-row .select-items {
	height: 41px;
}

	.main .documents .nav-row .select-items div,
	.main .documents .nav-row .select-selected,
	.main .documents .nav-row select {
		width: 55px;
		padding: 0;
		height: 36px;
		justify-content: center;
	}

		.main .documents .nav-row .select-selected.select-arrow-active {
			border-bottom-right-radius: 0;
			border-bottom-left-radius: 0;
		}

.main .documents .nav-row .select-selected,
.main .documents .nav-row select {
	border-radius: 3px;
}

.main .documents .nav-row select {
	background-color: white;
	border: 1px solid #C6CACC;
	outline: none;
	cursor: pointer;
	user-select: none;
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 17px;
	letter-spacing: 0.0357143em;
	color: #000000;
	display: flex;
	align-items: center;
	padding: 0 7px;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 1px;
	text-overflow: '';
	margin-top: 1px;
}

body[dir="rtl"] .main .documents .nav-row select {
	direction: ltr;
}

.main .documents .nav-row label {
	position: relative;
}

	.main .documents .nav-row label:after {
		position: absolute;
		content: url(/Content/New/icon/menu-arrow.svg);
		right: 7px;
		top: 9px;
	}

.main .documents .nav-row .select-items div {
	height: 20px;
}

.main .documents .nav-row .short .select-selected:after {
	position: absolute;
	content: url(/Content/New/icon/arrows-nav.svg);
	top: 10px;
	right: 5px;
}

.main .documents .nav-row .pagination {
	display: flex;
	margin-left: 55px;
}

	.main .documents .nav-row .pagination .item {
		width: 30px;
		height: 35px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 8px;
		font-style: normal;
		font-weight: bold;
		font-size: 13px;
		line-height: 21px;
		color: #798695;
		cursor: pointer;
	}

		.main .documents .nav-row .pagination .item.active {
			background: #66A0E4;
			font-style: normal;
			font-weight: bold;
			font-size: 14px;
			line-height: 21px;
			color: #FFFFFF;
			border-radius: 1px;
		}

		.main .documents .nav-row .pagination .item.next {
			margin-right: 0;
			border-radius: 1px;
		}

			.main .documents .nav-row .pagination .item.next:after {
				content: url(/Content/New/icon/next.svg);
			}

		.main .documents .nav-row .pagination .item.prev:after {
			content: url(/Content/New/icon/next.svg);
			transform: rotate(180deg);
		}

		.main .documents .nav-row .pagination .item.disable {
			cursor: default;
		}

			.main .documents .nav-row .pagination .item.disable:after {
				opacity: 0.3;
			}

		.main .documents .nav-row .pagination .item.prev,
		.main .documents .nav-row .pagination .item.next {
			background: rgba(102, 160, 228, 0.12);
		}

.main .documents .document-info .receipt-inputs-row.tax .input-row {
	margin-left: 40px;
	margin-bottom: 10px;
}

.table.table4 .row .col1,
.table.table4 .row .col2,
.table.table4 .row .col3,
.table.table4 .row .col4 {
	width: calc(25% - 21px);
}

.main .documents .document-info.small .input-row.small,
.main .documents .document-info .receipt-inputs-row .input-row {
	padding: 0 34px;
}

.main .documents .document-info.small .table2 {
	margin-bottom: 10px;
	padding-bottom: 45px;
}

.main .documents .document-info.small .table .short .select-selected,
.main .documents .document-info.small .table .custom-select.short {
	background: transparent !important;
}

	.main .documents .document-info.small .table .short .select-selected.select-arrow-active {
		background: white;
	}


.main .documents .document-info.small .table2 .sum-row {
	margin-top: 47px;
}

.main .documents .document-info.small .table2 .row:nth-of-type(2n - 1) .col {
	background: rgba(140, 171, 220, 0.25);
}

.main .documents .document-info.small .table2 .row.head-row .col {
	background: transparent;
}

.main .documents .document-info.small .table2 .row .col.edit,
.main .documents .document-info.small .table2 .row .col.number {
	background: transparent;
}

.main .documents .document-info.small .table2 .row:nth-of-type(2n) .short .select-selected {
	background: rgba(140, 171, 220, 0.25);
}

	.main .documents .document-info.small .table2 .row:nth-of-type(2n) .short .select-selected.select-arrow-active {
		background: white;
	}

ul.tabs {
	padding: 0px;
	list-style: none;
	display: flex;
	flex-direction: row-reverse;
	margin: 0 0px;
}

	ul.tabs li {
		background: #E0E8F5;
		padding: 17px 17px;
		font-style: normal;
		font-weight: bold;
		font-size: 13px;
		line-height: 16px;
		display: flex;
		align-items: center;
		text-align: center;
		text-transform: uppercase;
		margin-right: 2px;
	}

body[dir="rtl"] ul.tabs li {
	font-size: 14px;
}

ul.tabs li:first-of-type {
	margin-right: 0;
}

ul.tabs li a {
	color: #000000;
}

ul.tabs li.current {
	background: #8EC548;
	color: #000000;
}

.tab-content {
	display: none;
}

	.tab-content.current {
		display: inherit;
	}

.edit-documents .year,
.edit-documents .account {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}

body[dir="rtl"] .dates-container .year {
	flex-direction: row;
}

	.edit-documents .year .label {
		font-style: normal;
		font-weight: bold;
		font-size: 11px;
		line-height: 16px;
		display: flex;
		align-items: center;
		text-align: left;
		color: #000000;
		margin-left: 8px;
	}

	.edit-documents .year .label {
		text-transform: uppercase;
	}

	.edit-documents .account .label {
		font-style: normal;
		font-weight: bold;
		font-size: 11px;
		line-height: 16px;
		display: flex;
		align-items: center;
		text-align: left;
		color: #000000;
		margin-left: 8px;
		text-transform: uppercase;
	}

	.edit-documents .account .custom-select {
		margin-left: 10px;
	}

		.edit-documents .account .custom-select:last-of-type {
			margin-left: 0;
		}

		.edit-documents .account .custom-select,
		.edit-documents .account .custom-select select,
		.edit-documents .account .custom-select .select-selected {
			width: 160px;
			height: 50px;
		}

			.edit-documents .account .custom-select .select-items,
			.edit-documents .account .custom-select .select-items div {
				width: 160px;
				text-align: right;
			}

			.edit-documents .account .custom-select .select-selected,
			.edit-documents .account .custom-select .select-items {
				border-color: #66A0E4;
			}

body[dir="rtl"] .edit-documents .account .custom-select .select-selected,
body[dir="rtl"] .edit-documents .account .custom-select .select-items,
body[dir="rtl"] .edit-documents .account .custom-select .select-items div {
	justify-content: flex-start;
}

body[dir="rtl"] .edit-documents .account {
	flex-direction: row;
}

body[dir="rtl"] .edit-documents .year .label {
	font-size: 14px;
}

.edit-documents .year .custom-select,
.edit-documents .year .custom-select select,
.edit-documents .year .select-items {
	width: 76px;
}

	.edit-documents .year .select-items div,
	.edit-documents .year .select-selected {
		width: 76px;
		height: 50px;
		color: #66A0E4;
		font-weight: bold;
		font-size: 13px;
	}

body[dir="rtl"] .edit-documents .year .select-items div,
body[dir="rtl"] .edit-documents .year .select-selected {
	justify-content: flex-start;
}

.edit-documents .year .select-items div,
body[dir="rtl"] .edit-documents .year .select-items div {
	justify-content: center;
}

.edit-documents .year .select-selected {
	border: none;
}

.edit-documents .year .select-items div {
	border-top: 1px solid rgba(102, 160, 228, 0.5);
}

.edit-documents .year .select-selected {
	background: #E0E8F5;
}

.edit-documents .year .select-items div:hover,
.edit-documents .year .select-items div.same-as-selected {
	background: #E0E8F5;
	color: #66A0E4 !important;
}

.edit-documents-tabs-row {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	/*margin-bottom: 15px;*/
	margin-bottom: 86px;
	margin-top: 0px;
	position: relative;
}

body[dir="rtl"] .edit-documents-tabs-row,
body[dir="rtl"] ul.tabs,
body[dir="rtl"] .edit-documents .year {
	flex-direction: row;
}

.main.logged-in .edit-documents-tabs-row .head-block-text,
.main.edit-documents .head-block-text {
	position: initial;
	/*width: 250px;*/
	/*width: calc(100% - 550px);*/
}

.main.logged-in .edit-documents-tabs-row .tabs-row {
	width: 100%;
	position: absolute;
	right: 0;
	top: 66px;
}

.main.edit-documents .table-edit .head-row .col {
	padding-top: 24px;
}

.main.edit-documents .table-edit {
	margin-top: 0;
	padding-bottom: 0px;
}

	.main.edit-documents .table-edit .col,
	.table.report .row .col {
		border-left: 1px solid rgba(102, 160, 228, 0.2);
		border-bottom: 1px solid rgba(102, 160, 228, 0.2);
	}

.overflow {
	overflow: hidden;
}

.main.edit-documents .table-edit .row:nth-of-type(2n) .col {
	background: rgba(140, 171, 220, 0.25);
}

.main.edit-documents .table-edit .head-row .col {
	background: transparent !important;
}

.main.edit-documents .table-edit .col:last-of-type {
	border-left: none;
}

.main.edit-documents .table-edit .checkmark {
	background: transparent;
}

.main.edit-documents .table-edit .custom-checkbox input:disabled ~ .checkmark {
	background: #F7F7F7;
	cursor: not-allowed;
}

.main.edit-documents .table-edit .row .col.edit {
	justify-content: flex-end;
	width: 80px !important;
}


.main.edit-documents .table-edit .row .col1 {
	padding-right: 25px;
}

.main.edit-documents .table-edit .row .col6,
.main.edit-documents .table-edit .row .col7 {
	width: 11% !important;
}

.main.edit-documents .table-edit .row .col1 {
	width: 9% !important;
}

.main.edit-documents .table-edit .row .col4 {
	width: 18% !important;
}

.main.edit-documents .table-edit.receipt .row .col4 {
	width: 11% !important;
}

.main.edit-documents .table-edit .row .col2 {
	width: 9% !important;
}

.main.edit-documents .table-edit.receipt .row .col3 {
	width: calc(25% - 190px) !important;
	word-break: break-word;
}

.main.edit-documents .table-edit .row .col3 {
	width: calc(30% - 190px) !important;
	word-break: break-word;
}

.main.edit-documents .table-edit .row .col5 {
	width: 12% !important;
}

.main.edit-documents .table-edit .row .col8 {
	width: 110px !important;
}

.main.edit-documents .table-edit .row .col45 {
	width: 28% !important;
}

.main.edit-documents .table-edit.edit-catalog .row .col45 {
	width: 45% !important;
}

.main.edit-documents .table-edit .row .col5 {
	word-break: break-word;
}

.main.edit-documents .table-edit .head-row .col5,
.main.edit-documents .table-edit .table-sum-row .col5 {
	word-break: initial;
}

.main.edit-documents .table-edit .row .col .edit {
	content: url(/Content/New/icon/edit-blue.svg);
	cursor: pointer;
	height: auto;
}

.head-row th {
	background-image: none !important;
	position: relative;
}

.head-row .sorting:before {
	content: url(/Content/New/icon/sort_by_arrows_default.svg);
	cursor: pointer;
	margin-right: 7px;
	position: absolute;
	left: 0px;
}

.head-row .sorting_asc:before {
	content: url(/Content/New/icon/sort-by-arrows.svg);
	cursor: pointer;
	margin-right: 7px;
	position: absolute;
	left: 0px;
}

.head-row .sorting_desc:before {
	content: url(/Content/New/icon/sort-by-arrows.svg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	cursor: pointer;
	margin-right: 7px;
	position: absolute;
	left: 0px;
	margin-top: -6px;
}

.main.logged-in.edit-documents .only-top {
	padding: 0;
	min-height: calc(100vh - 64px - 120px);
	margin-top: 0px;
}

.main .documents-full {
	background: white;
	padding: 40px 0 0px;
}

	.main .documents-full .table-header-text {
		font-style: normal;
		font-weight: bold;
		font-size: 13px;
		line-height: 21px;
		display: flex;
		align-items: center;
		text-align: right;
		text-transform: uppercase;
		color: #464457;
		padding: 0 34px;
		justify-content: flex-end;
	}

body[dir="rtl"] .main .documents-full .table-header-text {
	justify-content: flex-start;
}

.documents-full .table .table-text.red {
	color: #D13A3B;
}

.documents-full .table .table-text.bold {
	font-weight: bold;
}

.documents-full .table .table-text.link {
	text-decoration-line: underline;
	color: #66A0E4;
	font-weight: bold;
}

	.documents-full .table .table-text.link:hover {
		text-decoration: none;
	}

.documents-full .table {
	padding-bottom: 0;
	margin-top: 46px;
}

	.documents-full .table.table4 .row .col {
		border-left: 1px solid rgba(102, 160, 228, 0.2);
		border-bottom: 1px solid rgba(102, 160, 228, 0.3);
		border-top: 0;
	}

	.documents-full .table.table4 .row:nth-of-type(2n) .col {
		background: rgba(140, 171, 220, 0.25);
	}

	.documents-full .table.table4.preliminary-invoice-table .row:nth-of-type(2n) .col {
		background: none;
	}

	.documents-full .table.table4 .row .col:last-of-type {
		border-left: none;
	}

	.documents-full .table.table4 .row .col1 {
		padding-right: 34px;
	}

		.documents-full .table.table4 .row .col1.first {
			width: 15% !important;
		}

		.documents-full .table.table4 .row .col1.second {
			width: 10% !important;
		}

	.documents-full .table.table4 .row .col1,
	.documents-full .table.table4 .row .col4 {
		/*width: 20% !important;*/
		width: 25% !important;
	}

	.documents-full .table.table4 .row .col2,
	.documents-full .table.table4 .row .col3 {
		/*width: 12.5% !important;*/
		width: 25% !important;
	}

	.documents-full .table.table4.bank .row .col1 {
		width: 35%;
	}

	.documents-full .table.table4.bank .row .col2 {
		width: 19%;
	}

	.documents-full .table.table4.bank .row .col3 {
		width: 19%;
	}

	.documents-full .table.table4.bank .row .col4 {
		width: 27%;
	}

.main .documents-full .nav-row {
	margin-top: 28px;
	padding-bottom: 25px;
}

.main .calendar-and-graph-block {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

body[dir="rtl"] .main .calendar-and-graph-block {
	flex-direction: row-reverse;
}

.main .calendar-and-graph-block .graph {
	width: calc(100% - 400px - 40px);
	margin-bottom: 40px;
}

.main .calendar-and-graph-block .calendar {
	width: calc(400px);
	margin-bottom: 40px;
}

.main .calendar-and-graph-block .documents-full {
	padding: 0;
}

	.main .calendar-and-graph-block .documents-full .head-row {
		width: 100%;
		height: 56px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 32px;
		flex-direction: row-reverse;
		font-size: 13px;
		line-height: 21px;
		text-align: right;
		text-transform: uppercase;
		color: #464457;
		font-weight: bold;
		border-bottom: 1px solid #F2F3F8;
		padding-left: 190px;
	}

body[dir="rtl"] .main .calendar-and-graph-block .documents-full .head-row {
	flex-direction: row;
}

body[dir="rtl"] .main .calendar-and-graph-block .documents-full.calendar .head-row {
	flex-direction: row-reverse;
	direction: ltr;
}

body[dir="rtl"] .ui-datepicker-title {
	direction: rtl;
}


.main .calendar-and-graph-block .custom-select {
	width: 156px;
}

.main .calendar-and-graph-block .select-items div,
.main .calendar-and-graph-block .select-selected,
.main .calendar-and-graph-block .select-items {
	background-color: rgb(235, 243, 252);
	color: #66A0E4;
	border-color: transparent;
	width: 156px;
	font-weight: bold;
	font-size: 11px;
	line-height: 21px;
	letter-spacing: 0.4px;
	text-transform: initial;
}

.main .calendar-and-graph-block .select-selected {
	border-bottom: none;
}

.main .calendar-and-graph-block .select-items div,
.main .calendar-and-graph-block .select-selected {
	padding: 0 26px 0 10px;
}

	.main .calendar-and-graph-block .select-items div:hover {
		color: #5384BE !important;
	}

.main .calendar-and-graph-block .content {
	height: 344px;
	width: 100%;
}

.main .registration .input-block.one-column {
	max-width: calc(282px + 120px);
	width: 100%;
}

.main.logged-in .edit-documents-head-row {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	margin-top: 0px;
}

body[dir="rtl"] .main.logged-in .edit-documents-head-row {
	flex-direction: row;
}

	body[dir="rtl"] .main.logged-in .edit-documents-head-row .button,
	body[dir="rtl"] .main.edit-documents .button.save {
		flex-direction: row-reverse;
	}

.main.logged-in .edit-documents-head-row .button {
	height: 50px;
	padding: 0 11px;
	color: #000000;
}

	.main.logged-in .edit-documents-head-row .button .plus,
	.main.edit-documents .edit-catalog-head-row .head-buttons-row .button .plus {
		content: url("/Content/New/icon/plus-black.svg");
		margin-right: 12px;
	}

.main.logged-in .edit-documents-head-row .head-block-text {
	position: initial;
}

.documents-full .table.edit-bank,
.documents-full .table.edit-client {
	margin-top: 11px;
	padding-bottom: 0px;
	overflow-x: inherit;
	overflow-y: initial;
}

.main.edit-documents .button.save {
	/*width: 142px;*/
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	margin-top: 30px;
	margin-left: auto;
	margin-right: 20px;
}

	.main.edit-documents .button.save:before {
		content: url("/Content/New/documents/save.svg");
		margin-top: 5px;
		margin-right: 35px;
	}

.main.edit-documents .buttons-row {
	display: flex;
	align-items: center;
}

	.main.edit-documents .buttons-row .button {
		margin-right: 15px;
	}

		.main.edit-documents .buttons-row .button .download,
		.main.edit-documents .edit-catalog-head-row .head-buttons-row .button .download {
			content: url(/Content/New/icon/download.svg);
			margin-right: 12px;
		}

		.main.edit-documents .buttons-row .button .send {
			content: url(/Content/New/icon/download.svg);
			margin-right: 12px;
			-webkit-transform: rotate(180deg);
			-moz-transform: rotate(180deg);
			-o-transform: rotate(180deg);
			-ms-transform: rotate(180deg);
			transform: rotate(180deg);
		}

		.main.edit-documents .buttons-row .button .search {
			content: url(/Content/New/Search.svg);
			fill: #000;
			margin-right: 12px;
		}

.main.edit-documents .search-block {
	position: relative;
	display: flex;
	align-items: center;
}

	.main.edit-documents .search-block .label {
		font-style: normal;
		font-weight: bold;
		font-size: 14px;
		line-height: 16px;
		display: flex;
		align-items: center;
		text-align: right;
		color: #000000;
		margin-left: 10px;
	}

	.main.edit-documents .search-block .search {
		background: #FFFFFF;
		border: 1px solid #66A0E4;
		width: 170px;
		height: 50px;
		padding: 0 10px 0 40px;
	}

	.main.edit-documents .search-block .icon {
		content: url(/Content/New/Search.svg);
		position: absolute;
		top: 13px;
		left: 12px;
		cursor: pointer;
	}

.documents-full .table.edit-client input,
.documents-full .table.edit-client textarea {
	max-width: 100%;
}

.table .row .col textarea {
	background: #FFFFFF;
	border: 1px solid transparent;
	box-sizing: border-box;
	border-radius: 4px;
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 21px;
	display: flex;
	align-items: center;
	text-align: right;
	color: #000000;
	resize: none;
	padding: 5px 10px;
	overflow: hidden;
}

body.export-body .table .row .col textarea {
	text-align: left;
}

	.table .row.editing .col textarea,
	.table .row .col textarea.empty {
		border: 1px solid #CCCBD0;
		background: #FAFAFA;
		width: 100%;
	}

.main .documents .row .col input.editing {
	border: 1px solid #CCCBD0;
	background: #FAFAFA;
	width: 100%;
}

.table .row .col textarea {
	background: transparent;
}

	.table .row .col textarea:focus {
		background: white;
		border: 1px solid rgba(102, 160, 228, 0.5);
	}

.flex {
	display: flex;
}

.documents-full .table.edit-client .row .col1 {
	width: 17.5% !important;
}

.documents-full .table.edit-client .row .col2 {
	width: 17.5% !important;
}

.documents-full .table.edit-client .row .col3 {
	display: block;
	width: calc(30% - 81px) !important;
}

	.documents-full .table.edit-client .row .col3 textarea {
		margin-left: auto !important;
	}

.documents-full .table.edit-client .row .col4 {
	width: 15% !important;
}

.documents-full .table.edit-client .row .col5 {
	width: 20% !important;
}

.documents-full .table.edit-client .row .col.edit {
	width: 81px !important;
	padding: 0 10px;
	justify-content: flex-start;
}

	.documents-full .table.edit-client .row .col.edit .remove {
		margin-right: 15px;
	}

.documents-full .table.edit-client .row .col .dots {
	content: url("/Content/New/icon/dots.svg");
	cursor: pointer;
	padding: 15px;
}

.documents-full .table.edit-client .row.editing .col .dots {
	display: block;
	margin-right: 5px;
}

.main.edit-documents .documents.edit-client-section .nav-row {
	padding: 0 34px;
	margin-bottom: 66px;
	margin-top: -50px;
}

.documents-full .table.edit-client .row .col4,
.documents-full .table.edit-client .row .col5 {
	position: relative;
}

	.documents-full .table.edit-client .row .col5 input,
	.documents-full .table.edit-client .row .col4 input {
		/*width: 100%;*/
	}

.documents-full .table.edit-client .row .all-numbers {
	position: absolute;
	background: #FFFFFF;
	box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.07);
	border-radius: 6px;
	padding: 10px 10px 4px;
	width: 298px;
	z-index: 2;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	top: 70px;
	left: -40px;
	display: none;
}

.documents-full .table.edit-client .row:last-of-type .all-numbers,
.documents-full .table.edit-client .row:last-of-type .all-emails {
	top: auto;
	bottom: 70px;
}

.documents-full .table.edit-client .row .all-numbers .item-row {
	position: relative;
}

.documents-full .table.edit-client .row .all-numbers .item {
	background: rgba(140, 171, 220, 0.24);
	border-radius: 4px;
	width: 134px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 18px 0 10px;
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 13px;
	color: #000000;
	margin-bottom: 6px;
	text-align: left;
	box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.07);
}

	.documents-full .table.edit-client .row .all-numbers .item:disabled + span {
		content: url("/Content/New/icon/delete.svg");
		position: absolute;
		width: 9px;
		height: 9px;
		top: 10px;
		right: 4px;
		cursor: pointer;
	}

.documents-full .table.edit-client .row .all-numbers .new .item + span {
	content: url("/Content/New/icon/ok.svg");
	position: absolute;
	width: 9px;
	height: 9px;
	top: 10px;
	right: 4px;
	cursor: pointer;
}

.documents-full .table.edit-client .row .all-emails .new .item + span {
	content: url("/Content/New/icon/ok.svg");
	position: absolute;
	width: 9px;
	height: 9px;
	top: 10px;
	right: 4px;
	cursor: pointer;
}

.documents-full .table.edit-client .row .all-numbers .new .item.empty {
	border-color: transparent !important;
}

.documents-full .table.edit-client .row .all-emails {
	position: absolute;
	z-index: 2;
	padding: 10px 10px 4px;
	background: #FFFFFF;
	box-shadow: 0px 7px 64px rgba(0, 0, 0, 0.07);
	border-radius: 6px;
	width: 265px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	top: 70px;
	left: -0px;
	display: none;
}

	.documents-full .table.edit-client .row .all-emails .item-row {
		position: relative;
	}

	.documents-full .table.edit-client .row .all-emails .item {
		position: relative;
		text-align: left;
		background: rgba(140, 171, 220, 0.24);
		border-radius: 4px;
		padding: 0 27px 0 10px;
		margin-bottom: 6px;
		font-style: normal;
		font-weight: normal;
		font-size: 15px;
		line-height: 28px;
		color: #000000;
		max-width: 100%;
		min-width: 50%;
		width: min-content;
	}

		.documents-full .table.edit-client .row .all-emails .item.empty {
			border-color: transparent !important;
			width: 50%;
		}

		.documents-full .table.edit-client .row .all-emails .item:disabled + span {
			content: url("/Content/New/icon/delete.svg");
			position: absolute;
			width: 9px;
			height: 9px;
			top: 10px;
			right: 4px;
			cursor: pointer;
		}

	.documents-full .table.edit-client .row .all-emails .add,
	.documents-full .table.edit-client .row .all-numbers .add {
		content: url("/Content/New/icon/add_black.svg");
		margin: 11px 10px;
		cursor: pointer;
	}

.documents-full .table.edit-client {
	margin-bottom: 90px;
}

.main.logged-in.edit-documents .edit-client-section {
	padding-bottom: 33px;
}

.main.edit-documents .buttons-row .buttons-block {
	display: flex;
	flex: 1;
	flex-direction: row-reverse;
}

body[dir="rtl"] .main.edit-documents .buttons-row,
body[dir="rtl"] .main.edit-documents .search-block {
	flex-direction: row-reverse;
}

	body[dir="rtl"] .main.edit-documents .buttons-row .buttons-block {
		flex-direction: row;
	}

.download-pdf-section .select2 {
	min-width: 240px !important;
}

.select2.select2-container .select2-selection {
	height: 50px;
	background: #FFFFFF !important;
	border: 1px solid #DFE1E4;
	box-sizing: border-box;
	outline: none;
}

.select2-selection__rendered {
	padding-top: 10px;
}

.select2-selection__arrow {
	top: 10px !important;
}

.select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
}

.select2-results__options {
	max-height: 200px;
	overflow-y: auto;
}

.select2-results__option.select2-results__option--highlighted {
	background-color: #5897fb;
	color: white;
}

.select2-results__option[aria-selected] {
	max-width: 100%;
}

.select2-selection__rendered {
	line-height: 28px;
}

.select2-container--gizbarit .select2-selection--single .select2-selection__arrow b {
	border-color: #888 transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0;
}


section.registration.step1 .select2-container--gizbarit {
	width: 282px !important;
}

.select2-container--gizbarit {
	width: 100% !important;
}

	.select2-container--gizbarit.select2-container--open .select2-selection--single .select2-selection__arrow b {
		border-color: transparent transparent #888 transparent;
		border-width: 0 4px 5px 4px;
	}

	.select2-container--gizbarit[dir="rtl"] .select2-selection--single .select2-selection__arrow {
		left: 1px;
		right: auto;
	}

	.select2-container--gizbarit .select2-selection--single .select2-selection__arrow {
		height: 26px;
		position: absolute;
		top: 1px;
		right: 1px;
		width: 20px;
	}

.main.edit-documents .edit-catalog-head-row {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	padding: 20px 32px 28px;
	position: relative;
	z-index: 2;
}

	.main.edit-documents .edit-catalog-head-row .edit-catalog-head-text {
		font-style: normal;
		font-weight: bold;
		font-size: 18px;
		line-height: 21px;
		text-align: center;
		color: #000000;
	}

	.main.edit-documents .edit-catalog-head-row .head-buttons-row {
		display: flex;
		flex-direction: row-reverse;
	}

		.main.edit-documents .edit-catalog-head-row .head-buttons-row .button,
		.buttons-html5 {
			height: 50px;
			padding: 0 11px;
			color: #000000;
			border: none;
			outline: none;
			margin-right: 15px;
		}

			.buttons-html5.export-excel-button {
				color: #000;
			}

				.buttons-html5.export-excel-button span::before {
					content: url(/Content/New/icon/download.svg);
					margin-right: 12px;
					top: 2px;
					position: relative;
				}



.documents-full .table.edit-catalog .row .col input {
	width: 80%;
	max-width: 100%;
}

	.documents-full .table.edit-catalog .row .col input.short {
		width: 50%;
	}

.documents-full .table.edit-catalog .row .col .image {
	max-width: 100%;
	height: 54px;
	cursor: pointer;
}

.documents-full .table.edit-catalog .row .col {
	padding: 9px 11px;
}

.documents-full .table.edit-catalog .row.head-row .col {
	padding: 21px 11px;
	border-top: 1px solid #F2F3F8;
}

.documents-full .table.edit-catalog .row .col1 {
	width: calc(50% - 194px);
}

.documents-full .table.edit-catalog .row .col2 {
	width: 16.66%;
}

.documents-full .table.edit-catalog .row .col3 {
	width: 16.66%;
}

.documents-full .table.edit-catalog .row .col4 {
	width: 16.66%;
}

.documents-full .table.edit-catalog .row .col5 {
	width: 100px;
}

.documents-full .table.edit-catalog .row .col.edit {
	width: 94px;
	justify-content: space-between;
}

.documents-full .table.edit-catalog {
	padding-bottom: 173px;
}

	.documents-full .table.edit-catalog:last-of-type {
		margin-bottom: 0;
	}

.table.edit-catalog .row.disable input,
.table.catalog-table .row.disable input {
	color: #000;
}

.documents-full .table.edit-catalog .row.disable input {
	color: #000;
}

.main.logged-in.edit-documents .only-top.documents-full.edit-catalog-section {
	padding-bottom: 24px;
}

.documents-full.edit-catalog-section .button.save {
	margin-top: 36px;
}

body[dir="rtl"] .main.edit-documents .edit-catalog-head-row,
body[dir="rtl"] .main.edit-documents .edit-catalog-head-row .head-buttons-row {
	flex-direction: row;
}

	body[dir="rtl"] .main.edit-documents .edit-catalog-head-row .head-buttons-row .button {
		flex-direction: row-reverse;
	}

.main .edit-advertisements .input-block {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.main .edit-advertisements .input-row {
	min-width: calc(282px + 110px);
	max-width: calc(282px * 2 + 110px * 2 + 40px);
	width: inherit;
}


.main .edit-advertisements .input-block textarea {
	padding: 10px 17px;
	height: 90px;
	resize: horizontal;
	max-width: 282px;
	width: 100%;
}

.main .edit-advertisements .nav-buttons {
	justify-content: flex-end;
}

	.main .edit-advertisements .nav-buttons .button {
		margin-right: 25px;
	}

.main .edit-advertisements .upload-big:after {
	top: 43px;
}

.main .download-pdf .col {
	font-style: normal;
	font-weight: normal;
	font-size: 15px;
	line-height: 17px;
	display: flex;
	align-items: center;
	text-align: right;
	color: #000000;
}


.main.edit-documents .table.download-pdf .row .col1 {
	width: calc(28% - 0px) !important;
	word-break: break-word;
}

.main.edit-documents .table.download-pdf .row .col2 {
	width: 14.5% !important;
}

.main.edit-documents .table.download-pdf .row .col3 {
	width: 22.5% !important;
}

.main.edit-documents .table.download-pdf .row .col4 {
	width: 22.5% !important;
}

.main.edit-documents .table.download-pdf .row .col5 {
	width: 12.5% !important;
}

.main.edit-documents .table.download-pdf .row .col.edit {
	width: 86px !important;
	padding: 0 10px;
}

.main.edit-documents form .table.download-pdf .row .col1 {
	width: calc(20% - 86px) !important;
}

.main.edit-documents form .table.download-pdf .row .col2 {
	width: 22.5% !important;
}

.main.edit-documents form .table.download-pdf .row .col3 {
	width: 22.5% !important;
}

.main.edit-documents form .table.download-pdf .row .col4 {
	width: 22.5% !important;
}

.main.edit-documents form .table.download-pdf .row .col5 {
	width: 12.5% !important;
}

.main.edit-documents form .table.download-pdf .row .col.edit {
	width: 86px !important;
	padding: 0 10px;
}

.main.edit-documents .table.download-pdf .row.head-row .col.edit {
	margin-top: 0px;
}

.main.edit-documents .table.download-pdf .head-row .col1 span {
	content: url(/Content/New/icon/sort-by-arrows.svg);
	cursor: pointer;
	margin-right: 7px;
}

.main .download-pdf-head-row {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	margin-top: 0px;
}

	.main .download-pdf-head-row .head-block-text {
		position: initial;
	}

	.main .download-pdf-head-row .dropdown-row {
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
	}

	.main .download-pdf-head-row .button {
		width: 140px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		font-size: 14px;
		line-height: 16px;
		color: #363547;
		border: none;
	}

.main .bank-summary-head-row {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

	.main .bank-summary-head-row .head-block-text,
	.main.logged-in.bank-account-status .bank-account-status-head-row .head-block-text {
		margin-bottom: 0;
	}

.main.logged-in.bank-summary {
	padding-top: 20px;
}

body[dir="rtl"] .main .bank-summary-head-row {
	flex-direction: row;
	margin-right: -80px !important;
	margin-left: 0 !important;
}

.main .bank-summary-head-row .head-block-text {
	position: initial;
}

.main .bank-summary-head-row .dropdown-row {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}

.main .bank-summary-head-row .button {
	padding: 0 18px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	color: #363547;
	border: none;
}

.main .bank-summary-head-row .buttons,
.edit-documents-tabs-row .buttons,
.edit-documents .buttons {
	display: flex;
}

body[dir="rtl"] .main .bank-summary-head-row .button,
body[dir="rtl"] .main .bank-summary-head-row .buttons {
	flex-direction: row-reverse;
}

.main .download-pdf-head-row .documents-button .label {
	background: #E0E8F5;
	width: 120px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	color: #000000;
	cursor: pointer;
}

.main .download-pdf-head-row .documents-button {
	position: relative;
	margin-right: 21px;
}

	.main .download-pdf-head-row .documents-button .label:after {
		content: url(/Content/New/icon/menu-arrow.svg);
		margin-top: 0px;
		margin-left: 5px;
	}

	.main .download-pdf-head-row .documents-button.open .label:after {
		transform: rotate(180deg);
		margin-top: 5px;
	}

	.main .download-pdf-head-row .documents-button .documents-button-block {
		width: 400px;
		padding: 23px 20px 20px;
		position: absolute;
		background: white;
		top: 64px;
		border: 1px solid rgba(102, 160, 228, 0.5);
		box-sizing: border-box;
		z-index: 3;
		left: 0;
		display: none;
	}

	.main .download-pdf-head-row .documents-button.open .documents-button-block {
		display: block;
	}

	.main .download-pdf-head-row .documents-button .documents-button-block .custom-checkbox {
		font-style: normal;
		font-weight: normal;
		font-size: 14px;
		line-height: 16px;
		display: flex;
		align-items: center;
		text-align: right;
		color: #000000;
	}

body[dir="rtl"] .main .download-pdf-head-row .documents-button .documents-button-block .custom-checkbox {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.main .download-pdf-head-row .documents-button .documents-button-block .item-block {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.main .download-pdf-head-row .documents-button .documents-button-block .item {
	width: 50%;
	margin-bottom: 16px;
}

.main .download-pdf-head-row .documents-button .documents-button-block .buttons-row {
	flex-direction: row-reverse;
	margin-top: 36px;
}

	.main .download-pdf-head-row .documents-button .documents-button-block .buttons-row .blue {
		color: white;
		margin-right: 0;
	}

	.main .download-pdf-head-row .documents-button .documents-button-block .buttons-row .white {
		color: #66A0E4;
	}

		.main .download-pdf-head-row .documents-button .documents-button-block .buttons-row .white:hover {
			color: #66A0E4;
			background: transparent;
		}

.main .download-pdf-head-row .calendar-row {
	position: relative;
	justify-content: space-between;
	display: flex;
	align-items: center;
}

.main .download-pdf-head-row .calendar-row-block {
	background: #FFFFFF;
	border: 1px solid #DFE1E4;
	box-sizing: border-box;
	width: 240px;
	height: 50px;
	margin-right: 21px;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	color: #000000;
	padding: 0 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

	.main .download-pdf-head-row .calendar-row-block:after {
		content: url("/Content/New/icon/date.svg");
	}

.main .download-pdf-head-row .calendar-row .calendar-block {
	position: absolute;
	top: 64px;
	background: #FFFFFF;
	border: 1px solid rgba(102, 160, 228, 0.5);
	box-sizing: border-box;
	width: 400px;
	left: -80px;
	display: none;
	z-index: 3;
}

	.main .download-pdf-head-row .calendar-row .calendar-block .calendar-head-row {
		font-style: normal;
		font-weight: bold;
		font-size: 13px;
		line-height: 21px;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		text-align: right;
		text-transform: uppercase;
		color: #464457;
		width: 100%;
		height: 56px;
		padding: 0 32px;
		border-bottom: 1px solid #E4E6E9;
	}

	.main .download-pdf-head-row .calendar-row .calendar-block .calendar-content {
		width: 100%;
		height: 344px;
	}

.main .download-pdf-head-row .dropdown-row .label {
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	color: #000000;
	margin-left: 9px;
}

.main .download-pdf-head-row .dropdown-row .ui.dropdown > .dropdown.icon {
	margin-top: -3px;
}

	.main .download-pdf-head-row .dropdown-row .ui.dropdown > .dropdown.icon:before {
		content: url(/Content/New/icon/menu-arrow.svg);
		margin-top: 15px;
	}

.main .download-pdf-head-row .dropdown-row .ui.dropdown.active > .dropdown.icon {
	transform: rotate(180deg);
	margin-top: -2px;
}

.main .download-pdf-head-row .dropdown-row .ui.selection.dropdown {
	width: 240px;
	height: 50px;
	border-radius: 0;
	box-sizing: border-box;
	background: white;
	text-align: right;
	line-height: 26px;
	padding-right: 34px;
}

.main .download-pdf-head-row .dropdown-row .ui.selection.active.dropdown .menu {
	border-radius: 0;
}

.main .download-pdf-head-row .buttons {
	display: flex;
}


.main .documents.download-pdf-section .nav-row {
	padding: 0 34px;
}

body[dir="rtl"] .main .download-pdf-head-row,
body[dir="rtl"] .main .download-pdf-head-row .dropdown-row,
body[dir="rtl"] .main .download-pdf-head-row .documents-button .documents-button-block .buttons-row {
	flex-direction: row;
}

	body[dir="rtl"] .main .download-pdf-head-row .calendar-row-block,
	body[dir="rtl"] .main .download-pdf-head-row .button,
	body[dir="rtl"] .main .download-pdf-head-row .documents-button .label,
	body[dir="rtl"] .main .download-pdf-head-row .buttons,
	body[dir="rtl"] .main .download-pdf-head-row .documents-button .documents-button-block .item-block,
	body[dir="rtl"] .main .download-pdf-head-row .calendar-row .calendar-block .calendar-head-row {
		flex-direction: row-reverse;
	}

.main .video-catalog {
	padding: 37px 15px 3px;
}

	.main .video-catalog .video-catalog-head-text {
		font-style: normal;
		font-weight: normal;
		font-size: 21px;
		line-height: 24px;
		text-align: right;
		color: #000000;
		margin-bottom: 49px;
	}

	.main .video-catalog .videos-block {
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: wrap;
	}

body[dir="rtl"] .main .video-catalog .videos-block {
	flex-direction: row-reverse;
}


.main .video-catalog .videos-block .item {
	width: calc(100% / 4 - 16px * 3 / 4);
	margin-bottom: 39px;
	margin-right: 16px;
	text-decoration: none;
}

	.main .video-catalog .videos-block .item:nth-of-type(4n) {
		margin-right: 0;
	}

	.main .video-catalog .videos-block .item img {
		width: 100%;
	}

	.main .video-catalog .videos-block .item .text {
		font-style: normal;
		font-weight: bold;
		font-size: 18px;
		line-height: 21px;
		color: #000000;
		margin-top: 7px;
		min-height: 61px;
		text-decoration: none;
	}

.main .video-catalog .video,
.main .video-catalog .video img {
	width: 100%;
}

.main .one-video {
	padding: 0;
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
}

	.main .one-video .video-inner {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}

.main .terms-of-use {
	padding: 49px 68px 60px;
	text-align: left;
}

	.main .terms-of-use .blue-text {
		font-style: normal;
		font-weight: bold;
		font-size: 28px;
		line-height: 50px;
		text-align: right;
		color: #66A0E4;
		margin-bottom: 21px;
	}


	.main .terms-of-use .text,
	.main .terms-of-use .item {
		font-style: normal;
		font-weight: normal;
		font-size: 21px;
		line-height: 32px;
		text-align: right;
		color: #000000;
	}

	.main .terms-of-use .text {
		margin-bottom: 36px;
	}

	.main .terms-of-use .item {
		margin-bottom: 23px;
		display: flex;
		align-items: flex-start;
		flex-direction: row-reverse;
	}

body[dir="rtl"] .main .terms-of-use .item {
	flex-direction: row;
}

.main .terms-of-use .item span {
	background: rgba(141, 207, 99, 0.2);
	min-width: 40px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-style: normal;
	font-weight: bold;
	font-size: 21px;
	line-height: 40px;
	color: #8DCF63;
	margin-left: 23px;
	margin-top: -5px;
}

.main.logged-in.bank-account-status .bank-account-status-table .row .col {
	padding-right: 21px;
}

	.main.logged-in.bank-account-status .bank-account-status-table .row .col input {
		margin-right: -10px;
		width: calc(100% + 10px);
		max-width: none;
		height: 33px;
	}

.main.logged-in.bank-account-status .bank-account-status-table .row .col1,
.main.logged-in.bank-account-status .bank-account-status-table .row .col3,
.main.logged-in.bank-account-status .bank-account-status-table .row .col4,
.main.logged-in.bank-account-status .bank-account-status-table .row .col5 {
	width: 12.5%;
}

.main.logged-in.bank-account-status .bank-account-status-table .row .col2 {
	width: calc(50% - 85px);
}

.main.logged-in.bank-account-status .bank-account-status-table .row .col.edit {
	width: 85px;
	justify-content: flex-start;
	padding-left: 35px;
}

	.main.logged-in.bank-account-status .bank-account-status-table .row .col.edit div {
		margin-right: 15px;
	}

.main.logged-in.bank-account-status .bank-account-status-table .row .col.red,
.main.logged-in.bank-account-status .bank-account-status-table .row .col.red input {
	color: #D13A3B;
}

.main.logged-in.bank-account-status .bank-account-status-table .row .col.green,
.main.logged-in.bank-account-status .bank-account-status-table .row .col.green input {
	color: #8DCF63;
}

.main.logged-in.bank-account-status .bank-account-status-table .row .col.bold,
.main.logged-in.bank-account-status .bank-account-status-table .row .col.bold input {
	font-weight: bold;
}

.main.logged-in.bank-account-status .bank-account-status-table .row.blue,
.main.logged-in.bank-account-status .bank-account-status-table .row.blue input {
	color: #002481;
}

.main.logged-in.bank-account-status .bank-account-status-table .nav-row {
	padding: 0 34px;
}

.main.logged-in.bank-account-status .bank-account-status-table .table-sum-row .col {
	background: #DFE4EB;
}

.main.logged-in.bank-account-status .bank-account-status-table .row.yellow-row .col {
	background: #FFF0BD;
	font-weight: normal;
}

.main.logged-in.bank-account-status .bank-account-status-table .row.yellow-row .col2 {
	width: calc(75% - 85px);
}

.main.logged-in.bank-account-status .bank-account-status-head-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
}

body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-head-row .head-block-text {
	font-size: 20px;
	line-height: 24px;
}

body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-head-row .label {
	font-size: 14px;
	line-height: 16px;
}

.main.logged-in.bank-account-status {
	padding-top: 20px;
}

	.main.logged-in.bank-account-status .bank-account-status-head-row .head-block-text {
		position: initial;
	}

	.main.logged-in.bank-account-status .bank-account-status-head-row .year .select-items div,
	.main.logged-in.bank-account-status .bank-account-status-head-row .year .select-selected,
	.main.logged-in.bank-account-status .bank-account-status-head-row .year .custom-select,
	.main.logged-in.bank-account-status .bank-account-status-head-row .year .select-items {
		width: 160px;
		background: white;
	}

	.main.logged-in.bank-account-status .bank-account-status-head-row .year .select-selected {
		border: 1px solid #66A0E4;
	}

	.main.logged-in.bank-account-status .bank-account-status-head-row .year .select-items div,
	.main.logged-in.bank-account-status .bank-account-status-head-row .year .select-selected {
		padding: 0 25px 0 15px;
		justify-content: flex-start;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row {
		margin-bottom: 16px;
		margin-top: 16px;
	}

		.main.logged-in.bank-account-status .bank-account-status-buttons-row,
		.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part,
		.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part {
			display: flex;
			align-items: center;
			justify-content: space-between;
		}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row {
		flex-direction: column-reverse;
		align-items: flex-end;
	}

		.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part {
			margin-bottom: 12px;
		}

		.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part {
			width: 100%;
			position: relative;
			justify-content: flex-end;
		}

			.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .buttons-html5.export-excel-button {
				position: absolute;
				left: 0;
				top: -62px;
			}

			/*.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .button.white {
				position: absolute;
				left: 218px;
				top: -128px;
			}*/

.bank-account-status-head-row .button.white {
	color: #66A0E4;
	letter-spacing: 0.4px;
	background: #FFFFFF;
	border: 1px solid #66A0E4;
	cursor: default;
	margin-left: 8px;
	padding: 0 20px;
	height: 50px;
}

body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .button.white {
	position: absolute;
	left: 215px;
	/*top: -128px;*/
}

body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row,
body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part,
body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part,
body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row .block,
body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row .button,
body[dir="rtl"] .addRow .modal-content .radio-button-row,
body[dir="rtl"] #graph .modal-content .tabs {
	flex-direction: row-reverse;
}

body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-head-row {
	flex-direction: row;
}

body[dir="rtl"] .addRow .modal-content .custom-radio-button {
	justify-content: flex-start;
}

.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part .button,
.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .button {
	height: 50px;
	padding: 0 20px;
	margin-left: 20px;
	font-style: normal;
	font-weight: bold;
	font-size: 11px;
	line-height: 16px;
	display: flex;
	align-items: center;
	text-align: center;
	text-transform: uppercase;
	color: #000000;
	border: none;
}

body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part .button,
body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .button {
	font-size: 14px;
}

.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .button {
	margin-left: 0;
	margin-right: 20px;
	height: 50px;
}

.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part .button .plus {
	content: url(/Content/New/icon/plus-black.svg);
	margin-right: 12px;
}

.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part .button .settings {
	content: url(/Content/New/icon/settings-black.svg);
	margin-right: 12px;
}

.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part .button .graph {
	content: url(/Content/New/icon/graph-black.svg);
	margin-right: 12px;
}

.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .button .download {
	content: url(/Content/New/icon/download.svg);
	margin-right: 12px;
}

.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part .button .calendar {
	content: url(/Content/New/icon/date-black.svg);
	margin-right: 12px;
}

.edit-documents .year.month {
	margin-left: 20px;
}

.dates-container {
	display: flex;
}

body[dir="rtl"] .edit-documents .year.month {
	margin-left: 0;
	margin-right: 20px;
}

body[dir="rtl"] .edit-documents .bank-summary-head-row .year.month {
	margin-left: 20px;
	margin-right: 0;
}

.edit-documents .year.month .select-items {
	max-height: 200px;
}

	.edit-documents .year.month .select-items div,
	.edit-documents .year.month .select-selected,
	.edit-documents .year.month .select-selected select,
	.edit-documents .year.month .custom-select,
	.edit-documents .year.month .custom-select select,
	.edit-documents .year.month .select-items {
		width: 120px !important;
		justify-content: flex-start;
	}

		.edit-documents .year.month .select-items div,
		.edit-documents .year.month .select-selected {
			padding: 0 25px 0 15px;
			justify-content: center !important;
		}

.main.logged-in.edit-documents .only-top {
	/*min-height: calc(100vh - 64px - 214px);*/
	min-height: 0;
	padding-bottom: 20px;
}

.main .documents .nav-row {
	margin-bottom: 0;
}

.addRow .modal-content {
	padding: 52px 36px 40px;
	width: 388px;
}

	.addRow .modal-content .label {
		font-style: normal;
		font-weight: normal;
		font-size: 16px;
		line-height: 18px;
		text-align: right;
		letter-spacing: 0.0357143em;
		color: #000000;
		margin-bottom: 10px;
	}

	.addRow .modal-content .custom-input {
		width: 100%;
		max-width: 100%;
		resize: vertical;
		margin-bottom: 16px;
	}

	.addRow .modal-content textarea.custom-input {
		box-sizing: border-box;
		font-style: normal;
		font-weight: normal;
		color: #000000;
		resize: vertical;
		padding: 13px 17px;
	}

	.addRow .modal-content .custom-radio-button {
		font-style: normal;
		font-weight: normal;
		font-size: 15px;
		line-height: 18px;
		text-align: right;
		letter-spacing: 0.2px;
		color: #000000;
		width: 50%;
		justify-content: flex-end;
	}

	.addRow .modal-content .radio-button-row {
		display: flex;
	}

		.addRow .modal-content .radio-button-row:first-of-type {
			margin-top: 14px;
		}

.modal-content {
	position: relative;
}

	.modal-content .close.icon {
		position: absolute;
		content: url("/Content/New/icon/Close.svg");
		top: 12px;
		right: 12px;
		cursor: pointer;
	}

.addRow .modal-content .button {
	width: 110px;
	height: 44px;
	margin: auto;
	display: flex;
	justify-content: center;
	border: none;
	color: #000000;
	margin-top: 36px;
}

.button.green:disabled {
	cursor: default;
	background: rgba(141, 207, 99, 0.4);
}

#graph .modal-content {
	padding: 26px 32px;
	max-width: 840px;
}

	#graph .modal-content .tabs {
		flex-direction: row;
		margin: 0 0 18px;
		position: relative;
		min-width: 0;
		overflow: hidden;
	}

		#graph .modal-content .tabs:after {
			content: '';
			position: absolute;
			width: calc(100% + 32px * 2);
			height: 1px;
			bottom: -16px;
			left: -32px;
			background: #F2F3F8;
		}

	#graph .modal-content .tab-link {
		height: 38px;
	}

	#graph .modal-content .tab-content {
		min-height: 346px;
	}

.main.logged-in.bank-account-status .bank-account-status-buttons-row .block {
	display: flex;
}

#calendar .modal-content {
	max-width: 400px;
	width: 100%;
	margin-right: 80px;
	margin-top: 240px;
	padding: 0 32px;
}

	#calendar .modal-content .calendar-content {
		width: 100%;
		min-height: 344px;
	}

	#calendar .modal-content .calendar-head-row {
		font-style: normal;
		font-weight: bold;
		font-size: 13px;
		line-height: 21px;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		text-transform: uppercase;
		color: #000000;
		position: relative;
		height: 56px;
	}

		#calendar .modal-content .calendar-head-row:after {
			content: '';
			position: absolute;
			width: calc(100% + 32px * 2);
			height: 1px;
			bottom: 0px;
			left: -32px;
			background: #F2F3F8;
		}

#calendar .calendar-row {
	display: flex;
	align-items: center;
	position: absolute;
	right: 196px;
	top: 172px;
}

	#calendar .calendar-row .date {
		background: #FFFFFF;
		border: 1px solid rgba(102, 160, 228, 0.5);
		box-sizing: border-box;
		height: 50px;
		display: flex;
		align-items: center;
		padding: 0 11px;
		font-style: normal;
		font-weight: bold;
		font-size: 14px;
		line-height: 16px;
		color: #000000;
	}

		#calendar .calendar-row .date:after {
			content: url("/Content/New/icon/date-black.svg");
			margin-left: 6px;
		}

	#calendar .calendar-row .button {
		height: 50px;
		padding: 0 21px;
	}

.main.logged-in.bank-account-status.tax .bank-account-status-buttons-row .right-part .button {
	height: 50px;
}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row.head-row .col {
	font-weight: bold;
}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col {
	font-weight: normal;
}

	.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col.green a {
		color: #8DCF63;
		text-decoration: underline;
		font-weight: bold;
	}

	.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col.blue a {
		color: #66A0E4;
		text-decoration: underline;
		font-weight: bold;
	}

	.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col a:hover {
		text-decoration: none;
	}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row.head-row .col2 {
	font-size: 16px;
}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col {
	width: calc(36% / 3) !important;
}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col2 {
	width: 9% !important;
}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col4 {
	width: calc(19% - 110px) !important;
}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col5,
.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col6 {
	width: calc(12%) !important;
}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col7 {
	width: calc(12%) !important;
}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col8 {
	width: calc(12%) !important;
}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col9 {
	width: 110px !important;
}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row.more-info {
	display: none;
}

	.main.logged-in.bank-account-status .bank-account-status-table.tax .row.more-info.show {
		display: flex;
	}

.more-info {
	width: 100%;
	background: #94BDEC !important;
	display: block;
	padding: 13px 0px;
}

	.more-info span {
		text-align: center;
	}

.main.logged-in .plus {
	content: url("/Content/New/icon/Shape.svg");
	cursor: pointer;
}

.main.logged-in.bank-account-status .bank-account-status-table .row .col.bold,
.main.logged-in.bank-account-status .bank-account-status-table .row .col.bold input {
	font-weight: bold;
}

.main.logged-in.bank-account-status .bank-account-status-table.tax .row .col {
	padding-right: 10px;
}

.documents-full .table.bank-summary-table .row .col.red {
	color: #D13A3B;
}

.documents-full .table.bank-summary-table .row.head-row .col a {
	color: #66A0E4;
}

.main.logged-in.edit-documents .documents-full.bank-summary-section {
	padding-bottom: 20px;
}

.documents-full .table.bank-summary-table .row .col1,
.documents-full .table.bank-summary-table .row .col5 {
	width: 17%;
}

.documents-full .table.bank-summary-table .row .col2,
.documents-full .table.bank-summary-table .row .col3,
.documents-full .table.bank-summary-table .row .col4 {
	width: 22%;
}

.main.tax-invoice .documents .document-info .head-text {
	flex-direction: row-reverse;
}

	.main.tax-invoice .documents .document-info .head-text .number {
		margin-left: 18px;
	}

.main.tax-invoice .documents .document-info .inputs-block {
	align-items: flex-start;
}

	.main.tax-invoice .documents .document-info .inputs-block .input-row {
		flex-direction: row;
	}

		.main.tax-invoice .documents .document-info .inputs-block .input-row.big {
			flex-direction: column;
			align-items: flex-start;
			padding: 0;
		}

	.main.tax-invoice .documents .document-info .inputs-block .label {
		max-width: 90px;
		margin-left: 0;
		margin-right: 9px;
	}

/*.main .documents .document-info .input-row p {
	margin-right: 9px;
}*/

.tax-invoice .select-items div,
.tax-invoice .select-selected {
	justify-content: flex-start;
	padding: 0 31px 0 12px;
}

.tax-invoice .table .row {
	flex-direction: row
}

	.tax-invoice .table .row .col {
		justify-content: flex-start;
	}

		.tax-invoice .table .row .col input {
			text-align: left;
		}

.main.tax-invoice .documents .document-info .table .col input.short {
	width: 60px;
	max-width: 60px;
}

.tax-invoice .table .row .col:first-of-type,
.tax-invoice .table .row .col:last-of-type,
.tax-invoice .table .row:last-of-type .col,
.tax-invoice .table .row .col:nth-last-child(2) {
	border-bottom: 1px solid #F2F3F8;
	border-left: 1px solid rgba(102, 160, 228, 0.2);
}

.tax-invoice .table .row .col:first-of-type {
	border-left: none;
}

/*.tax-invoice .table .row:nth-of-type(2n) .col {
	background: rgba(140, 171, 220, 0.25);
}*/

.main.tax-invoice .documents .document-info .short .select-selected,
.main.tax-invoice .documents .document-info .custom-select.short {
	background: transparent;
}

.main.tax-invoice .documents .document-info .table .short .select-selected.select-arrow-active {
	background: white;
}

.tax-invoice .table.catalog-table .row.head-row .col {
	border-top: 1px solid #F2F3F8;
	padding-top: 20px;
}

.tax-invoice .table.catalog-table .row .col.number {
	border-left: 1px solid #F2F3F8;
}

.tax-invoice .table.catalog-table .row .col.edit {
	border-right: 1px solid #F2F3F8;
}

.tax-invoice .table .row .col .edit {
	content: url(/Content/New/icon/edit-blue.svg);
	cursor: pointer;
}

.tax-invoice .table .row .col.col1 {
	width: calc(27% - 65px);
}

.tax-invoice .table .row .col.col2 {
	width: 75px;
}

.tax-invoice .table .row .col.col3 {
	width: calc(27% - 118px);
}

.tax-invoice .table .row .col.col4,
.tax-invoice .table .row .col.col5 {
	width: 10%;
}

.tax-invoice .table .row .col.edit {
	width: 74px;
	flex-direction: row-reverse;
	justify-content: flex-end;
	padding: 0 22px;
}

	.tax-invoice .table .row .col.edit .edit,
	.tax-invoice .table .row .col.edit .ok {
		margin-right: 15px;
	}

.document-info .add {
	float: left;
}

.tax-invoice .document-info .add {
	float: right;
}


.tax-invoice.main .documents .document-info .table .col1 .short,
.tax-invoice.main .documents .document-info .table .col1 .short .select-items div,
.tax-invoice.main .documents .document-info .table .col1 .short .select-selected,
.tax-invoice.main .documents .document-info .table .col1 .short .select-items {
	width: 210px;
}

.tax-invoice .document-info .add {
	margin-left: auto;
	margin-right: 66px;
	margin-top: 16px;
}

.main.tax-invoice .documents .document-info .inputs-block .input-row.big .label {
	margin-left: 0;
}

.main.tax-invoice .documents .document-info .col5 .custom-select.short .select-selected {
	background: #FFFFFF;
	border: 1px solid #C6CACC;
	border-radius: 4px;
}

.main.tax-invoice .documents .document-info .table .short .select-selected.select-arrow-active {
	border-bottom: none;
	border-radius: 4px 4px 0 0;
}

.main.tax-invoice .documents .calculate-inputs {
	margin-left: 0;
}

	.main.tax-invoice .documents .calculate-inputs .input-row {
		flex-direction: row-reverse;
		width: 100%;
		justify-content: flex-end;
	}

	.main.tax-invoice .documents .calculate-inputs .label {
		width: 170px;
		text-align: left;
		margin-left: 0;
		min-width: 170px;
	}

		.main.tax-invoice .documents .calculate-inputs .label.long {
			margin-left: 36px;
		}

.main.tax-invoice .documents .custom-checkbox.table-checkbox {
	padding-left: 35px;
	padding-right: 0;
}

	.main.tax-invoice .documents .custom-checkbox.table-checkbox .checkmark {
		right: auto;
		left: 0;
	}

.main.tax-invoice .documents .calculate-inputs .input-row .input {
	max-width: 205px;
	text-align: left;
}

.main.tax-invoice .documents input {
	text-align: left;
}

.main.tax-invoice .documents .calculate-inputs .input-row .part {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.main.tax-invoice .documents .calculate-inputs .input-row .input.long {
	max-width: 370px;
	width: 100%;
	min-width: 370px;
}

.main.tax-invoice .documents .document-info .calculate-inputs .custom-select.short .select-selected {
	border: 1px solid #2D9CDB;
	border-radius: 0;
}

	.main.tax-invoice .documents .document-info .calculate-inputs .custom-select.short .select-selected.select-arrow-active {
		border-bottom: 0;
	}

.main.tax-invoice .documents .document-info .calculate-inputs .short .select-selected,
.main.tax-invoice .documents .document-info .calculate-inputs .custom-select.short {
	height: 38px;
}

	.main.tax-invoice .documents .document-info .calculate-inputs .custom-select.short .select-items {
		border-color: #2D9CDB;
	}

.main.tax-invoice .documents .calculate-inputs .short .select-selected:after {
	top: 12px;
}

.main.tax-invoice .documents .document-info .short.full .select-items div,
.main.tax-invoice .documents .document-info .short.full .select-items,
.main.tax-invoice .documents .document-info .short.full .select-selected,
.main.tax-invoice .documents .document-info .short.full {
	width: 205px;
}

.main.tax-invoice .documents .signature-row {
	flex-direction: row;
	padding: 0;
}

	.main.tax-invoice .documents .signature-row .label {
		margin-right: 22px;
		text-align: left;
		direction: rtl;
	}

body[dir="rtl"] .main.tax-invoice .documents .document-info .inputs-block .input-row {
	flex-direction: row-reverse;
}

	body[dir="rtl"] .main.tax-invoice .documents .document-info .inputs-block .input-row.export {
		direction: ltr;
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
	}

body[dir="rtl"] .main.tax-invoice .documents .document-info .inputs-block .input-row.big {
	flex-direction: column;
	align-items: flex-end;
}

body[dir="rtl"] .tax-invoice .table .row {
	flex-direction: row-reverse;
}

	body[dir="rtl"] .tax-invoice .table .row .col {
		justify-content: flex-start;
	}

body[dir="rtl"] .main.tax-invoice .documents .calculate-inputs .input-row {
	justify-content: flex-end;
	flex-direction: row;
}

	body[dir="rtl"] .main.tax-invoice .documents .calculate-inputs .input-row .part {
		flex-direction: row;
	}

body[dir="rtl"] .main.tax-invoice .documents .signature-row {
	flex-direction: row-reverse;
}

body[dir="rtl"] .tax-invoice .select-items div,
body[dir="rtl"] .tax-invoice .select-selected {
	justify-content: flex-end;
}

.main.logged-in.tax-invoice .head-block-text {
	text-align: left;
}

.main.logged-in.receipt-ltr .head-block-text {
	text-align: left;
}

.main.receipt-ltr .documents .document-info .inputs-block .input-row,
.main.receipt-ltr .documents .document-info .receipt-inputs-row,
.main.receipt-ltr .documents .document-info .receipt-inputs-row .input-row {
	flex-direction: row;
}

	.main.receipt-ltr .documents .document-info .receipt-inputs-row .input-row .label {
		margin-right: 15px;
	}

	.receipt-ltr .table .row {
		flex-direction: row
	}

	.receipt-ltr .table .row .col {
		justify-content: flex-start;
	}

		.receipt-ltr .table .row .col,
		.receipt-ltr .table .row .col input {
			text-align: left;
		}

.main.customers-payments .documents {
	min-height: 0;
}

	.main.customers-payments .documents .document-info {
		margin-top: 0;
	}

		.main.customers-payments .documents .document-info .customers-payments-head-text {
			font-style: normal;
			font-weight: bold;
			font-size: 13px;
			line-height: 15px;
			letter-spacing: 0.02em;
			text-transform: uppercase;
			color: #464457;
			margin-bottom: 32px;
		}

body[dir="rtl"] .main.customers-payments .documents .document-info .customers-payments-head-text {
	margin-right: auto;
}

.main.customers-payments .documents .document-info .inputs-block {
	margin-bottom: 0;
}

	.main.customers-payments .documents .document-info .inputs-block:first-of-type {
		margin-bottom: 60px;
	}

.main.customers-payments .documents .buttons-block {
	margin-top: 45px;
	margin-bottom: 20px;
}

.main.tax-invoice .documents .document-info .inputs-block .input-row.date {
	position: relative;
}

	.main.tax-invoice .documents .document-info .inputs-block .input-row.date .date {
		content: url("/Content/New/icon/date-ligth.svg");
		position: absolute;
		left: 123px;
		cursor: pointer;
	}

	.main.tax-invoice .documents .document-info .inputs-block .input-row.date input {
		padding-left: 35px;
	}

.main.logged-in.bank-summary .bank-summary-head-row .year.name,
.main.edit-documents .year.name {
	margin-left: 20px;
}

	.main.logged-in.bank-summary .bank-summary-head-row .year.name .select-items div,
	.main.logged-in.bank-summary .bank-summary-head-row .year.name .select-selected,
	.main.logged-in.bank-summary .bank-summary-head-row .year.name .custom-select,
	.main.logged-in.bank-summary .bank-summary-head-row .year.name .select-items,
	.main.edit-documents .year.name .custom-select,
	.main.edit-documents .year.name .custom-select select,
	.main.edit-documents .year.name .custom-select .select-selected,
	.main.edit-documents .year.name .custom-select .select-items,
	.main.edit-documents .year.name .custom-select .select-items div {
		width: 175px;
		background: white;
		justify-content: center;
		word-break: break-word;
	}

	.main.logged-in.bank-summary .bank-summary-head-row .year.name .select-selected {
		border: 1px solid #66A0E4;
		padding: 0 31px 0 15px;
	}

.documents-full.summary-of-waybills-section .table.bank-summary-table .row.head-row .col.number {
	color: #66A0E4;
}

.documents-full.summary-of-waybills-section .table.bank-summary-table .row .col.number {
	width: 75px;
	justify-content: center;
}

.documents-full.summary-of-waybills-section .table.bank-summary-table .row .col1 {
	width: calc(20%) !important;
}

.documents-full.summary-of-waybills-section .table.bank-summary-table .row .col2,
.documents-full.summary-of-waybills-section .table.bank-summary-table .row .col4,
.documents-full.summary-of-waybills-section .table.bank-summary-table .row .col6,
.documents-full.summary-of-waybills-section .table.bank-summary-table .row .col7 {
	width: 15% !important;
}

.documents-full.summary-of-waybills-section .table.bank-summary-table .row .col3,
.documents-full.summary-of-waybills-section .table.bank-summary-table .row .col5 {
	width: 10% !important;
}

.documents-full.summary-of-waybills-section .table.bank-summary-table .row .col {
	font-weight: normal;
}

.documents-full.summary-of-waybills-section .table.bank-summary-table .row.head-row .col {
	font-weight: bold;
}

.documents-full.summary-of-waybills-section .table.bank-summary-table .row .col a {
	text-decoration: underline;
	font-weight: bold;
}

	.documents-full.summary-of-waybills-section .table.bank-summary-table .row .col a:hover {
		text-decoration: none;
	}

.documents-full .table.accounts-per-customer-table .row .col {
	width: calc(100% / 6) !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

	.documents-full .table.accounts-per-customer-table .row .col a {
		text-decoration: underline;
		font-weight: bold;
		color: #66A0E4;
	}

		.documents-full .table.accounts-per-customer-table .row .col a:hover {
			text-decoration: none;
		}

	.documents-full .table.accounts-per-customer-table .row .col.red {
		color: #D13A3B;
	}

.main .documents .document-info .table .row:last-of-type .select-items {
	top: auto;
	bottom: 30px;
	border: 1px solid rgba(102, 160, 228, 0.5);
	border-bottom: none;
}

.main .documents .document-info .row:last-of-type .select-selected.select-arrow-active,
.main.tax-invoice .documents .document-info .row:last-of-type .select-selected.select-arrow-active {
	border: 1px solid rgba(102, 160, 228, 0.5);
	border-top: none;
	border-radius: 0 0 4px 4px;
}

.main .documents .document-info .row:last-of-type .short .select-items div,
.main .documents .document-info .row:last-of-type .short .select-selected {
	height: 30px;
	margin-top: 1px;
}

.documents-full.order-execution-section {
	width: calc(100% + 160px);
	margin-left: -80px;
}

body[dir="rtl"] .documents-full.order-execution-section {
	width: calc(100% + 160px);
	margin-right: -80px;
	margin-left: 0;
}

.documents-full .table.order-execution-table .row {
	min-width: 1250px;
	/*min-width: 1150px;*/
}

.documents-full .table.order-execution-table tbody .row .col {
	padding: 0 11px;
	border-bottom: none;
}

.documents-full .table.order-execution-table tbody .row.row-even {
	background: white;
}

.documents-full .table.order-execution-table tbody .row.row-odd,
.documents-full .table.preliminary-invoice-table tbody .row.row-odd {
	background: rgba(140, 171, 220, 0.24);
}

.documents-full .table.order-execution-table tbody .row:first-of-type .col {
	padding-top: 22px;
}

.documents-full .table.order-execution-table tbody:first-of-type .row:first-of-type .col {
	padding-top: 32px;
}

.documents-full .table.order-execution-table tbody .row:last-of-type .col {
	padding-bottom: 22px;
}

.documents-full .table.order-execution-table .row.row-odd .col {
	background: rgba(140, 171, 220, 0.24) !important;
}

.documents-full .table.order-execution-table .row.row-even .col {
	background: white !important;
}

.documents-full .table.order-execution-table .head-row .col {
	align-items: flex-start;
	/*word-break: break-word;*/
}


.documents-full .table.order-execution-table .row .col {
	width: calc(8% / 1) !important;
	font-weight: normal;
	padding-left: 3px;
	padding-right: 3px;
}

.documents-full .table.order-execution-table .row .col1 {
	padding-right: 10px !important;
}

.documents-full .table.order-execution-table .row .col1 {
	width: 5.5% !important;
}

.documents-full .table.order-execution-table .row .col8,
.documents-full .table.order-execution-table .row .col9 {
	width: 7.5% !important;
}

.documents-full .table.order-execution-table .row .col3,
.documents-full .table.order-execution-table .row .col2,
.documents-full .table.order-execution-table .row .col14 {
	width: 6.5% !important;
}

.documents-full .table.order-execution-table .row .col7,
.documents-full .table.order-execution-table .row .col6 {
	width: 7.5% !important;
}

.documents-full .table.order-execution-table .row .col4,
.documents-full .table.order-execution-table .row .col10 {
	width: 8% !important;
}

	.documents-full .table.order-execution-table .row .col4.sb {
		width: 11% !important;
	}

.documents-full .table.order-execution-table .row .col3.sb {
	width: 11.5% !important;
}

.documents-full .table.order-execution-table .row .col5,
.documents-full .table.order-execution-table .row .col13 {
	width: 7% !important;
}

.documents-full .table.order-execution-table .row .col11,
.documents-full .table.order-execution-table .row .col12 {
	width: 7.5% !important;
}

.documents-full .table.order-execution-table .row .col4 {
	word-break: break-word;
}

.documents-full .table.order-execution-table .head-row .col4 {
	word-break: initial;
}

.documents-full .table.order-execution-table .row .col.bold,
.documents-full .table.preliminary-invoice-table .row .col.bold {
	font-weight: bold;
}

.documents-full .table.order-execution-table .row .col.green,
.documents-full .table.order-execution-table .row .col.green a,
.documents-full .table.preliminary-invoice-table .row .col.green,
.documents-full .table.preliminary-invoice-table .row .col.green a {
	color: #8DCF63;
	cursor: pointer;
}

.documents-full .table.order-execution-table .row .col.yellow,
.documents-full .table.order-execution-table .row .col.yellow a,
.documents-full .table.preliminary-invoice-table .row .col.yellow,
.documents-full .table.preliminary-invoice-table .row .col.yellow a {
	color: #fdb827;
	cursor: pointer;
}

.documents-full .table.order-execution-table .row .col.blue,
.documents-full .table.order-execution-table .row .col.blue a,
.documents-full .table.preliminary-invoice-table .row .col.blue,
.documents-full .table.preliminary-invoice-table .row .col.blue a {
	color: #66A0E4;
	cursor: pointer;
}

.documents-full .table.order-execution-table .row .col.red,
.documents-full .table.order-execution-table .row .col.red a,
.documents-full .table.preliminary-invoice-table .row .col.red,
.documents-full .table.preliminary-invoice-table .row .col.red a {
	color: #D13A3B;
}

.documents-full .table.order-execution-table .row .col a,
.documents-full .table.preliminary-invoice-table .row .col a {
	text-decoration: underline;
	font-weight: bold;
}

.documents-full .table.order-execution-table tbody .row .col1 {
	padding-right: 34px;
}

.documents-full .table.order-execution-table tbody .row .col14 {
	padding-left: 34px;
}

.documents-full .table.order-execution-table .row.bold .col,
.documents-full .table.preliminary-invoice-table .row.bold .col {
	font-weight: bold !important;
}

.dtrg-group.dtrg-end.dtrg-level-0 {
	display: none;
}

.row.bold.dtrg-group.dtrg-end.dtrg-level-0 {
	display: flex !important;
}

.documents-full .table.order-execution-table .row.table-sum-row .col {
	font-weight: bold;
	background: #DFE4EB;
}

.documents-full .table.order-execution-table .row.table-sum-row .col1 {
	width: 29%;
	justify-content: center;
}

.documents-full .table.order-execution-table .row .col a:hover,
.documents-full .table.preliminary-invoice-table .row .col a:hover {
	text-decoration: none;
}

.documents-full .table.order-execution-table .row.head-row .col,
.documents-full .table.preliminary-invoice-table .row.head-row .col {
	font-weight: bold;
}

.documents-full .table.order-execution-table .row .col.green,
.documents-full .table.preliminary-invoice-table .row .col.green {
	color: #8DCF63;
}

.documents-full .table.order-execution-table .row.head-row .col.green,
.documents-full .table.preliminary-invoice-table .row.head-row .col.green {
	font-size: 16px;
}

.documents-full .table.order-execution-table .row .col.bold,
.documents-full .table.preliminary-invoice-table .row .col.bold {
	font-weight: bold;
}

.main.order-execution .bank-summary-head-row .buttons-row .two-buttons,
.summary-of-waybills-documents .two-buttons {
	display: flex;
}

.main.order-execution .bank-summary-head-row .buttons-row,
.main.edit-documents .bank-summary-head-row .buttons-row,
.edit-documents-tabs-row .buttons-row {
	min-width: 720px;
	margin-right: 36px;
}

body[dir="rtl"] .main.order-execution .bank-summary-head-row .buttons-row .two-buttons {
	flex-direction: row-reverse;
}

#warning .modal-content {
	max-width: 388px;
	padding: 44px 36px;
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 23px;
	text-align: center;
	color: #000000;
	background: #8DCF63;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
}

.documents-full .preliminary-invoice-table .row {
	min-width: 1200px;
}

	/*.documents-full .table.preliminary-invoice-table .row .col {
		width: calc(100% / 14) !important;
	}*/

.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col {
	/*width: calc(25% / 3) !important;*/
	font-weight: normal;
	padding-left: 4px;
	padding-right: 4px;
}

.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col {
	width: calc(25% / 3) !important;
}

.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col2,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col1 {
	width: 7% !important;
}

.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col5,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col5,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col9,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col9,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col12,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col12 {
	width: 8% !important;
}

.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col3,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col3,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col6,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col6 {
	width: 7% !important;
}
/*.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col3,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col3 {
	width: 80px !important;
}*/
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col10,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col10 {
	width: 9% !important;
}

.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col11,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col11,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col13,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col13 {
	width: 10% !important;
}

.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col8,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col8 {
	width: 7.5% !important;
}

.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col4,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col4 {
	width: 9% !important;
}

.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col7,
.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row.table-sum-row .col7 {
	width: 7.5% !important;
}

.documents-full .dataTables_wrapper .table.preliminary-invoice-table .row .col4 {
	word-break: break-word;
}

table.dataTable tbody tr.selected,
table.dataTable tbody tr.row:nth-of-type(2n).selected .col {
	background: #8DCF63 !important;
}

	table.dataTable tbody tr.selected .col .ok {
		display: none !important;
	}

.main .documents .row.editing .col input.border-error {
	border: 1px solid red !important;
}

.main .documents .row.editing .col.border-error {
	color: red !important;
}



.documents-full .table.preliminary-invoice-table .row.table-sum-row .col,
.documents-full .table.summary-by-supplier-table .row.table-sum-row .col {
	font-weight: bold;
	background: #DFE4EB;
	line-height: 21px;
	padding-top: 0;
	padding-bottom: 0;
}

.documents-full .table.preliminary-invoice-table .row.table-sum-row:first-of-type .col,
.documents-full .table.summary-by-supplier-table .row.table-sum-row:first-of-type .col {
	padding-top: 21px;
	border-bottom: none;
}

.documents-full .table.preliminary-invoice-table .row.table-sum-row:last-of-type .col,
.documents-full .table.summary-by-supplier-table .row.table-sum-row:last-of-type .col {
	padding-bottom: 21px;
}

.documents-full .table.preliminary-invoice-table .row.table-sum-row .col1 {
	width: 29.85%;
}

.ui-front {
	z-index: auto !important;
}

#notFound .modal-content {
	max-width: 388px;
	padding: 44px 36px 20px;
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 23px;
	text-align: center;
	color: #000000;
	background: #FFFFFF;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
}

	#notFound .modal-content .button {
		padding: 0 30px;
		height: 50px;
		display: inline-flex;
		margin-top: 30px;
	}

#openTable .modal-content {
	max-width: 388px;
	background: #F2F3F8;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
	padding: 48px 32px 20px;
}

	#openTable .modal-content .nav-row .input-row {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

		#openTable .modal-content .nav-row .input-row .label {
			margin-right: 10px;
			font-style: normal;
			font-weight: normal;
			font-size: 13px;
			line-height: 20px;
			color: #464457;
		}

	#openTable .modal-content .nav-row .short,
	#openTable .modal-content .nav-row .select-items {
		width: 55px;
	}

	#openTable .modal-content .nav-row .select-items {
		height: 41px;
	}

		#openTable .modal-content .nav-row .select-items div,
		#openTable .modal-content .nav-row .select-selected {
			width: 55px;
			padding: 0;
			height: 36px;
			justify-content: center;
		}

			#openTable .modal-content .nav-row .select-selected.select-arrow-active {
				border-bottom-right-radius: 0;
				border-bottom-left-radius: 0;
			}

	#openTable .modal-content .nav-row .select-selected {
		border-radius: 3px;
	}

	#openTable .modal-content .nav-row .select-items div {
		height: 20px;
	}

	#openTable .modal-content .nav-row .short .select-selected:after {
		position: absolute;
		content: url(/Content/New/icon/arrows-nav.svg);
		top: 10px;
		right: 5px;
	}

	#openTable .modal-content .nav-row .pagination {
		display: flex;
		margin-left: 55px;
	}

		#openTable .modal-content .nav-row .pagination .item {
			width: 30px;
			height: 35px;
			display: flex;
			align-items: center;
			justify-content: center;
			margin-right: 8px;
			font-style: normal;
			font-weight: bold;
			font-size: 13px;
			line-height: 21px;
			color: #798695;
			cursor: pointer;
		}

			#openTable .modal-content .nav-row .pagination .item.active {
				background: #66A0E4;
				font-style: normal;
				font-weight: bold;
				font-size: 14px;
				line-height: 21px;
				color: #FFFFFF;
				border-radius: 1px;
			}

			#openTable .modal-content .nav-row .pagination .item.next:after {
				content: url(/Content/New/icon/next.svg);
			}

			#openTable .modal-content .nav-row .pagination .item.prev:after {
				content: url(/Content/New/icon/next.svg);
				transform: rotate(180deg);
			}

			#openTable .modal-content .nav-row .pagination .item.prev,
			#openTable .modal-content .nav-row .pagination .item.next {
				background: rgba(102, 160, 228, 0.12);
			}

			#openTable .modal-content .nav-row .pagination .item.disable:after {
				opacity: 0.3;
			}

			#openTable .modal-content .nav-row .pagination .item.next {
				margin-right: 0;
				border-radius: 1px;
			}

	#openTable .modal-content .short .select-selected.select-arrow-active:after {
		transform: none;
	}

	#openTable .modal-content .nav-row {
		display: flex;
		justify-content: space-between;
		margin: 17px 32px 0;
	}

	#openTable .modal-content .table-block {
		width: 100%;
		padding: 0 0 7px;
		background: white;
	}

		#openTable .modal-content .table-block .table {
			margin: 0;
		}

	#openTable .modal-content .table .row {
		min-width: 100%;
	}

		#openTable .modal-content .table .row .col {
			padding-top: 13px;
			padding-bottom: 13px;
			border: none;
			font-style: normal;
			font-weight: normal;
			font-size: 15px;
			line-height: 21px;
			display: flex;
			align-items: center;
			text-align: right;
			color: #000000;
		}

		#openTable .modal-content .table .row.head-row .col {
			border-bottom: 1px solid #F2F3F8;
			font-style: normal;
			font-weight: bold;
			font-size: 16px;
			line-height: 18px;
			display: flex;
			align-items: center;
			text-align: right;
			color: #66A0E4;
		}

		#openTable .modal-content .table .row:nth-of-type(2n) .col {
			background: #E0E8F5;
		}

		#openTable .modal-content .table .row.selected .col {
			background: #8DCF63;
		}

		#openTable .modal-content .table .row .col1 {
			width: 15%;
		}

		#openTable .modal-content .table .row .col2 {
			width: 30%;
		}

		#openTable .modal-content .table .row .col3 {
			width: 25%;
		}

		#openTable .modal-content .table .row .col4 {
			width: 30%;
		}

	#openTable .modal-content .button.disabled {
		pointer-events: none;
		background: rgba(141, 207, 99, 0.4);
	}

.main .documents.summary-of-waybills-documents .document-info .year {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	margin-bottom: 6px;
}

body[dir="rtl"] .main .documents.summary-of-waybills-documents .document-info .year {
	flex-direction: row;
}

	body[dir="rtl"] .main .documents.summary-of-waybills-documents .document-info .year .label {
		justify-content: flex-end;
	}

.main .documents.summary-of-waybills-documents .document-info .year .label {
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	display: flex;
	align-items: center;
	text-align: center;
	text-transform: none !important;
	color: #798695;
	margin-left: 8px;
	width: 97px;
}

.main .documents.summary-of-waybills-documents .document-info .year .label {
	text-transform: uppercase;
	font-weight: normal;
}

.main .documents.summary-of-waybills-documents .document-info .inputs-block .button {
	width: 100px;
	height: 50px;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	display: flex;
	align-items: center;
	color: #000000;
	border: none;
	justify-content: center;
	margin-top: 10px;
	margin-left: auto;
	margin-right: 107px;
	margin-bottom: 38px;
	content: '';
}

body[dir="rtl"] .main .documents.summary-of-waybills-documents .document-info .inputs-block .button {
	flex-direction: row-reverse;
}

.main .documents.summary-of-waybills-documents .document-info .inputs-block .button:before {
	content: '';
	background: url("/Content/New/icon/add_black.svg");
	width: 12px;
	height: 12px;
	background-size: 100%;
	margin-right: 10px;
}

body[dir="rtl"] .main .documents.summary-of-waybills-documents .document-info .year .label {
	font-size: 14px;
}

.main .documents.summary-of-waybills-documents .document-info .year .custom-select,
.main .documents.summary-of-waybills-documents .document-info .year .custom-select select,
.main .documents.summary-of-waybills-documents .document-info .year .select-items {
	width: 76px;
	scrollbar-color: #66A0E4 #FFFFFF;
	scrollbar-width: thin;
}

	.main .documents.summary-of-waybills-documents .document-info .year .select-items div,
	.main .documents.summary-of-waybills-documents .document-info .year .select-selected {
		width: 76px;
		height: 50px;
		color: #66A0E4;
		font-weight: bold;
		font-size: 13px;
	}

.main .documents.summary-of-waybills-documents .document-info .year .select-selected {
	border: none;
}

.main .documents.summary-of-waybills-documents .document-info .year .select-items div {
	border-top: 1px solid rgba(102, 160, 228, 0.5);
}

.main .documents.summary-of-waybills-documents .document-info .year .select-selected {
	background: #E0E8F5;
}

.main .documents.summary-of-waybills-documents .document-info .year .select-items div:hover,
.main .documents.summary-of-waybills-documents .document-info .year .select-items div.same-as-selected {
	background: #E0E8F5;
	color: #66A0E4 !important;
}

.main .documents.summary-of-waybills-documents .document-info .year.month {
	margin-left: 20px;
}

	.main .documents.summary-of-waybills-documents .document-info .year.month .select-items {
		max-height: 200px;
	}

		.main .documents.summary-of-waybills-documents .document-info .year.month .select-items div,
		.main .documents.summary-of-waybills-documents .document-info .year.month .select-selected,
		.main .documents.summary-of-waybills-documents .document-info .year.month .custom-select,
		.main .documents.summary-of-waybills-documents .document-info .year.month .custom-select select,
		.main .documents.summary-of-waybills-documents .document-info .year.month .select-items {
			width: 120px;
			justify-content: flex-start;
		}

			.main .documents.summary-of-waybills-documents .document-info .year.month .select-items div,
			.main .documents.summary-of-waybills-documents .document-info .year.month .select-selected,
			.main .documents.summary-of-waybills-documents .document-info .year .select-items div,
			.main .documents.summary-of-waybills-documents .document-info .year .select-selected {
				padding: 0 25px 0 20px;
				justify-content: center;
			}

				.main .documents.summary-of-waybills-documents .document-info .year .select-items div:hover,
				.main .documents.summary-of-waybills-documents .document-info .year .select-items div.same-as-selected {
					color: white !important;
				}

.main .documents.summary-of-waybills-documents .document-info .inputs-block .label {
	max-width: 97px;
}

.main .documents.summary-of-waybills-documents .document-info {
	margin-top: 0;
}

	.main .documents.summary-of-waybills-documents .document-info .table {
		width: calc(100% + 62px);
		margin-left: -31px;
		margin-top: 60px;
	}

body[dir="rtl"] .main .documents.summary-of-waybills-documents .document-info .table {
	margin-left: 0px;
	margin-right: -31px;
}

.main .documents.summary-of-waybills-documents .document-info .table .row .col {
	background: #FBFBFF;
	position: relative;
}

	.main .documents.summary-of-waybills-documents .document-info .table .row .col input {
		width: 100%;
		max-width: none;
	}

	.main .documents.summary-of-waybills-documents .document-info .table .row .col.date input {
		padding-right: 37px;
	}

	.main .documents.summary-of-waybills-documents .document-info .table .row .col.date span:before {
		content: url("/Content/New/icon/date-black.svg");
		position: absolute;
		right: 17px;
		top: 28px;
		cursor: pointer;
	}

.main .documents.summary-of-waybills-documents .document-info .table .row.head-row .col {
	border-bottom: 1px solid #F2F3F8;
	padding: 10px;
}

.main .documents.summary-of-waybills-documents .document-info .table .row:nth-of-type(2n) .col {
	background: rgba(140, 171, 220, 0.24);
}

.main .documents.summary-of-waybills-documents .document-info .table .row .col.col1 {
	width: calc(61% - 97px - 34px);
}

.main .documents.summary-of-waybills-documents .document-info .table .row .col.col2,
.main .documents.summary-of-waybills-documents .document-info .table .row .col.col3,
.main .documents.summary-of-waybills-documents .document-info .table .row .col.col4 {
	width: calc(13%);
}

.main .documents.summary-of-waybills-documents .document-info .table .row .col.edit {
	width: 97px;
	padding-left: 42px;
}

.main .documents.summary-of-waybills-documents .document-info .table .row .col:nth-last-child(2) {
	border-left: 1px solid rgba(102, 160, 228, 0.2);
}

.main .documents.summary-of-waybills-documents .document-info.short .input-row {
	margin-bottom: 15px;
}

.main .documents.summary-of-waybills-documents .document-info.short .custom-input {
	max-width: 156px;
	background: white;
}

.main .documents.summary-of-waybills-documents .buttons-block {
	margin-top: 48px;
	margin-bottom: 45px;
}

.main .documents.summary-of-waybills-documents .table .row .col .edit {
	content: url("/Content/New/icon/edit-blue.svg");
	cursor: pointer;
}

.main .documents.summary-of-waybills-documents .document-info .input-row.date {
	position: relative;
}

	.main .documents.summary-of-waybills-documents .document-info .input-row.date span:before {
		content: url("/Content/New/icon/date-ligth.svg");
		position: absolute;
		right: 120px;
		top: 11px;
		cursor: pointer;
	}

	.main .documents.summary-of-waybills-documents .document-info .input-row.date input {
		padding-right: 45px;
	}

.main .documents.summary-of-waybills-documents .document-info .table2 .row .col:first-of-type {
	border-left: 1px solid rgba(102, 160, 228, 0.2);
}

.main .documents.summary-of-waybills-documents .document-info .table2 .row .col {
	background: white;
}

.main .documents.summary-of-waybills-documents .document-info .table2 .row:nth-of-type(2n) .col {
	background: rgba(140, 171, 220, 0.24);
}

.main .documents.summary-of-waybills-documents .document-info .table2 .row .col.col1 {
	width: 20%;
}

.main .documents.summary-of-waybills-documents .document-info .table2 .row .col.col2 {
	width: 20%;
}

.main .documents.summary-of-waybills-documents .document-info .table2 .row .col.col3 {
	width: 20%;
}

.main .documents.summary-of-waybills-documents .document-info .table2 .row .col.col4 {
	width: 20%;
}

.main .documents.summary-of-waybills-documents .document-info .table2 .row .col.col5 {
	width: calc(20% - 88px);
}

.main .documents.summary-of-waybills-documents .document-info .table2 .row .col.edit {
	width: 88px;
}

.main .documents.summary-of-waybills-documents .document-info .table .add {
	margin-left: 42px;
}

.main .documents.summary-of-waybills-documents .document-info .table .col1 .short,
.main .documents.summary-of-waybills-documents .document-info .table .col1 .short .select-items div,
.main .documents.summary-of-waybills-documents .document-info .table .col1 .short .select-selected,
.main .documents.summary-of-waybills-documents .document-info .table .col1 .short .select-items {
	width: 100%;
}

.main .documents.summary-of-waybills-documents .document-info .table3 .row .col.number {
	width: 40px !important;
}

.main .documents.summary-of-waybills-documents .document-info .table3 .row .col.edit {
	width: 97px !important;
}

.main .documents.summary-of-waybills-documents .document-info .table3 .row .col.col1 {
	width: 20% !important;
}

.main .documents.summary-of-waybills-documents .document-info .table3 .row .col.col2 {
	width: calc(52% - 40px - 97px) !important;
}

.main .documents.summary-of-waybills-documents .document-info .table3 .row .col.col3 {
	width: 10% !important;
}

.main .documents.summary-of-waybills-documents .document-info .table3 .row .col.col4 {
	width: 8% !important;
}

.main .documents.summary-of-waybills-documents .document-info .table3 .row .col.col5 {
	width: 10% !important;
}

.main .documents.summary-of-waybills-documents .document-info .table3 {
	padding-bottom: 0;
}

.main .documents.summary-of-waybills-documents .document-info .short .select-selected,
.main .documents.summary-of-waybills-documents .document-info .custom-select.short {
	background: transparent;
}

.main .documents.summary-of-waybills-documents .document-info .short .select-selected {
	height: 32px;
}

	.main .documents.summary-of-waybills-documents .document-info .short .select-selected.select-arrow-active {
		background: white;
	}

.main .documents.summary-of-waybills-documents .document-info .short .select-items {
	bottom: 30px !important;
}

.main .documents.summary-of-waybills-documents .document-info .table3 .row .col:first-of-type,
.main .documents.summary-of-waybills-documents .document-info .table3 .row .col:nth-last-child(2) {
	border-left: 1px solid rgba(102, 160, 228, 0.2);
}

.main.edit-documents .table-edit.orders-table .row .col {
	font-weight: normal;
}

.main.edit-documents .table-edit.orders-table .row.head-row .col {
	font-weight: bold;
}

.main.edit-documents .table-edit.orders-table .checkmark {
	background: #F6F6F6;
}

.main.edit-documents .table-edit.orders-table .row .col.edit {
	width: 85px !important;
	padding-right: 5px;
}

.main.edit-documents .table-edit.orders-table .row .col.col1 {
	width: 12% !important;
}

.main.edit-documents .table-edit.orders-table .row .col.col2 {
	width: calc(49% - 85px) !important;
}

.main.edit-documents .table-edit.orders-table .row .col.col3 {
	width: 19% !important;
}

.main.edit-documents .table-edit.orders-table .row .col.col4 {
	width: 11% !important;
}

.main.edit-documents .table-edit.orders-table .row .col.col5 {
	width: 9% !important;
}

.main.edit-documents .table-edit.orders-table .row .col.col6 {
	width: 9% !important;
}

.main.edit-documents.balances .balances-head-row {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

body[dir="rtl"] .main.edit-documents.balances .balances-head-row {
	flex-direction: row;
}

.main.edit-documents.balances .head-block-text {
	margin-bottom: 0;
}

.main.edit-documents.balances .balances-head-row .year .select-selected {
	border: 1px solid #66A0E4;
}

.main.edit-documents.balances .balances-head-row .year .select-items div,
.main.edit-documents.balances .balances-head-row .year .select-selected {
	padding: 0 25px 0 15px;
	justify-content: center;
	text-align: center;
}

.main.edit-documents.balances .balances-head-row .year .select-items div,
.main.edit-documents.balances .balances-head-row .year .select-selected,
.main.edit-documents.balances .balances-head-row .year .custom-select,
.main.edit-documents.balances .balances-head-row .year .select-items,
.main.edit-documents.balances .balances-head-row .year .custom-select select {
	width: 120px;
	background: white;
}

.main.edit-documents.balances .balances-head-row .year.name .custom-select,
.main.edit-documents.balances .balances-head-row .year.name .custom-select select {
	width: 250px;
}

.custom-select.short select {
	width: 100% !important;
}

.main.edit-documents.balances .balances-section {
	padding: 22px 0 0;
	margin-bottom: 41px;
}

	.main.edit-documents.balances .balances-section:last-of-type {
		margin-bottom: 0;
	}

	.main.edit-documents.balances .balances-section .section-head-text {
		font-style: normal;
		font-weight: bold;
		font-size: 26px;
		line-height: 34px;
		text-align: center;
		color: #000000;
		margin-bottom: 28px;
	}

body[dir="rtl"] .main.edit-documents.balances .balances-section .section-head-text {
	font-size: 30px;
}

.main.edit-documents.balances .balances-section .balances-table .row .col {
	font-weight: normal;
}

	.main.edit-documents.balances .balances-section .balances-table .row .col:first-of-type {
		border-left: none;
	}

.main.edit-documents.balances .balances-section .balances-table .row.head-row .col {
	font-weight: bold;
	padding-top: 7px;
	padding-bottom: 7px;
	border-top: 1px solid #F2F3F8;
}

.main.edit-documents.balances .balances-section .balances-table .custom-checkbox .checkmark {
	background: #F6F6F6;
}

.main.edit-documents.balances .balances-section .balances-table.table .row .col.number.sorting_asc:before {
	display: none;
}

.main.edit-documents.balances .balances-section .balances-table.table .row .col.number {
	width: 32px;
}

.main.edit-documents.balances .balances-section .balances-table.table1 .row .col.edit {
	width: 80px !important;
}

.main.edit-documents.balances .balances-section .balances-table.table1 .row .col.col1 {
	width: calc(33% - 32px - 80px) !important;
}

.main.edit-documents.balances .balances-section .balances-table.table1 .row .col.col5 {
	width: 15% !important;
}

.main.edit-documents.balances .balances-section .balances-table.table1 .row .col.col4,
.main.edit-documents.balances .balances-section .balances-table.table1 .row .col.col6 {
	width: 12% !important;
}

.main.edit-documents.balances .balances-section .balances-table.table1 .row .col.col2 {
	width: 13% !important;
}

.main.edit-documents.balances .balances-section .balances-table.table1 .row .col.col3 {
	width: 15% !important;
}

.main.edit-documents.balances .balances-section .document-info {
	margin-top: 0;
	padding-bottom: 30px;
}

.main.edit-documents.balances .balances-section .balances-table.table2 .row .col.col1 {
	width: calc(49% - 32px - 80px) !important;
}

.main.edit-documents.balances .balances-section .balances-table.table2 .row .col.col4 {
	width: 15% !important;
}

.main.edit-documents.balances .balances-section .balances-table.table2 .row .col.col2,
.main.edit-documents.balances .balances-section .balances-table.table2 .row .col.col3,
.main.edit-documents.balances .balances-section .balances-table.table2 .row .col.col5 {
	width: 12% !important;
}

.main .documents .document-info .balances-table.table1 .row .col.col1 {
	width: calc(40% - 32px) !important;
}

.main .documents .document-info .balances-table.table1 .row .col.col2,
.main .documents .document-info .balances-table.table1 .row .col.col3,
.main .documents .document-info .balances-table.table1 .row .col.col4,
.main .documents .document-info .balances-table.table1 .row .col.col5 {
	width: 15% !important;
}

.main .documents .document-info .balances-table.table1 .row .col:last-of-type,
.main .documents .document-info .balances-table.table1 .row .col:nth-last-child(2) {
	border-left: 1px solid rgba(102, 160, 228, 0.2);
}

.main .documents .document-info .balances-table.table1 .row.head-row {
	border-bottom: 1px solid #F2F3F8;
}

	.main .documents .document-info .balances-table.table1 .row.head-row .col {
		border-bottom: 0;
	}

.main .documents .document-info .balances-table.table1 tfoot tr {
	display: flex;
	width: 100%;
	margin-top: 22px;
}

body[dir="rtl"] .main .documents .document-info .balances-table.table1 tfoot tr {
	justify-content: flex-end;
}

	body[dir="rtl"] .main .documents .document-info .balances-table.table1 tfoot tr th:first-of-type {
		padding-left: 10px;
	}

	body[dir="rtl"] .main .documents .document-info .balances-table.table1 tfoot tr th:last-of-type {
		padding-left: 0px;
	}

.main .documents .document-info .balances-table.table1 tfoot tr th:first-of-type {
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 18px;
	color: #66A0E4;
	border-top: none;
	padding-left: 0;
}

.main .documents .document-info .balances-table.table1 tfoot tr th:last-of-type {
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 18px;
	text-align: right;
	color: #000000;
	border-top: none;
}

.main .documents .document-info .balances-table.table1 .row.head-row .col {
	padding-top: 21px;
	border-top: 1px solid #F2F3F8;
}


.main .documents .document-info .balances-table.table1 .row .col:first-of-type {
	border-right: 1px solid rgba(102, 160, 228, 0.2);
}

.main .documents .document-info .balances-table.table1 .row.head-row .number.sorting_asc:before {
	display: none !important;
}

.main.edit-documents.balances .balances-section #pricingForm .balances-table.table1 .row .col.col1 {
	width: calc(40% - 32px) !important;
}

.main.edit-documents.balances .balances-section #pricingForm .balances-table.table1 .row .col.col2,
.main.edit-documents.balances .balances-section #pricingForm .balances-table.table1 .row .col.col3,
.main.edit-documents.balances .balances-section #pricingForm .balances-table.table1 .row .col.col4,
.main.edit-documents.balances .balances-section #pricingForm .balances-table.table1 .row .col.col5 {
	width: 15% !important;
}

.main.edit-documents.balances .balances-section .row .col .select-selected,
.main.edit-documents.balances .balances-section .row .col .custom-select.short {
	background: transparent !important;
	height: 30px;
}

.main.edit-documents.balances .balances-section .row:last-of-type .col .select-selected,
.main.edit-documents.balances .balances-section .row:last-of-type .col .custom-select.short {
	height: 31px;
}

.main.edit-documents.balances .balances-section .row:last-of-type .select-items {
	bottom: 31px;
}

.main.edit-documents.balances .balances-section .row .col .select-selected.select-arrow-active {
	background: white !important;
}

.main.edit-documents.balances .button.save {
	margin: 45px auto 27px;
}

.main.edit-documents.balances .balances-section {
	position: relative;
}

	.main.edit-documents.balances .balances-section .add-button {
		position: absolute;
		top: 13px;
		left: 13px;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100px;
		height: 50px;
		font-style: normal;
		font-weight: bold;
		font-size: 14px;
		line-height: 16px;
		text-align: center;
		color: #000000;
		display: none;
	}

body[dir="rtl"] .main.edit-documents.balances .balances-section .add-button {
	flex-direction: row-reverse;
}

.main.edit-documents.balances .balances-section .add-button:before {
	content: url("/Content/New/icon/plus-black.svg");
	margin-right: 10px;
}

#yearSelector {
	position: relative;
}

	#yearSelector span {
		width: 76px;
		height: 50px;
		color: #66A0E4;
		font-weight: bold;
		font-size: 13px;
		background: #E0E8F5;
		padding: 0 31px 0 15px;
		display: flex;
		align-items: center;
		line-height: 17px;
		letter-spacing: 0.0357143em;
		cursor: pointer;
		position: relative;
	}

		#yearSelector span:after {
			position: absolute;
			content: url(/Content/New/icon/menu-arrow.svg);
			right: 10px;
		}

	#yearSelector.open span:after {
		transform: rotate(180deg);
	}

	#yearSelector #years {
		border: 1px solid rgba(102, 160, 228, 0.5);
		border-top: none;
		position: absolute;
		top: 50px;
		left: 0;
		z-index: 2;
		box-sizing: border-box;
		width: 76px;
		display: none;
	}

		#yearSelector #years .btnSelectBank {
			height: 50px;
			color: #66A0E4;
			font-weight: bold;
			font-size: 13px;
			border-top: 1px solid rgba(102, 160, 228, 0.5);
			background: white;
			padding: 0 31px 0 15px;
			display: flex;
			align-items: center;
			line-height: 17px;
			letter-spacing: 0.0357143em;
			cursor: pointer;
		}

.main.logged-in .edit-documents-tabs-row .head-block-text {
	margin-bottom: 0;
}

table.dataTable.no-footer {
	border-bottom: none;
}

.length-changing-container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.dataTables_length {
	display: flex;
	float: none !important;
	position: relative;
	align-items: center;
}

body[dir="rtl"] .dataTables_length {
	flex-direction: row-reverse;
}

.dataTables_length label {
	margin-right: 10px;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 20px;
	color: #464457;
}

.dataTables_length .select-items div,
.dataTables_length .select-selected {
	width: 55px;
	padding: 0;
	height: 36px;
	justify-content: center;
	border-radius: 3px;
}

.dataTables_length .short,
.dataTables_length .select-items {
	width: 55px;
}

.dataTables_length .select-items {
	left: auto;
}

.dataTables_length .select-selected {
	position: relative;
}

	.dataTables_length .select-selected:after {
		position: absolute;
		content: url(/Content/New/icon/arrows-nav.svg);
		top: 10px;
		right: 5px;
	}

.dataTables_length .select-items {
	height: 81px !important;
	margin-top: -1px;
}

	.dataTables_length .select-items div {
		height: 20px;
	}

.dataTables_length .select-selected.select-arrow-active:after {
	transform: none;
}

.dataTables_wrapper .dataTables_paginate {
	display: flex;
}

body[dir="rtl"] .dataTables_wrapper .dataTables_paginate {
	flex-direction: row-reverse;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	width: 30px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	font-style: normal;
	font-weight: bold;
	font-size: 13px;
	line-height: 21px;
	color: #798695 !important;
	cursor: pointer;
	min-width: 0;
	border: none !important;
}

	.dataTables_wrapper .dataTables_paginate .paginate_button.current {
		background: #66A0E4 !important;
		font-style: normal;
		font-weight: bold;
		font-size: 14px;
		line-height: 21px;
		color: #FFFFFF !important;
		border-radius: 1px !important;
	}

	.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
		color: #798695 !important;
		background: transparent !important;
	}

	.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
		color: white !important;
		background: #66A0E4 !important;
	}

	.dataTables_wrapper .dataTables_paginate .paginate_button.previous:after {
		content: url(/Content/New/icon/next.svg);
		transform: rotate(180deg);
	}

	.dataTables_wrapper .dataTables_paginate .paginate_button.next:after {
		content: url(/Content/New/icon/next.svg);
	}

	.dataTables_wrapper .dataTables_paginate .paginate_button.next,
	.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
	.dataTables_wrapper .dataTables_paginate .paginate_button.next:hover,
	.dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover {
		background: rgba(102, 160, 228, 0.12) !important;
	}

.dataTables_wrapper .dataTables_paginate span {
	display: flex;
}

.dataTables_wrapper .custom-paging-container {
	margin-left: 55px;
}

.main .calendar-and-graph-block .graph {
	position: relative;
}

.main .calendar-and-graph-block .select-items div,
.main .calendar-and-graph-block .select-selected {
	height: 38px;
}

.main .calendar-and-graph-block .select-items .same-as-selected {
	color: #66A0E4 !important;
}

.chartjs-render-monitor {
	max-height: calc(344px - 24px - 28px);
}

.main .calendar-and-graph-block .content {
	padding: 24px 33px 28px;
}

.dataTables_wrapper .dataTables_paginate {
	padding-top: 0;
}

.ui-datepicker-inline {
	width: 100% !important;
	border: none !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	border: 0 !important;
	font-style: normal !important;
	font-weight: normal !important;
	font-size: 14px !important;
	line-height: 32px !important;
	color: #464457 !important;
	text-align: center !important;
	height: 32px !important;
	width: 32px;
	padding: 0 !important;
}

.ui-datepicker th span {
	font-style: normal;
	font-weight: bold;
	font-size: 11px;
	line-height: 13px;
	text-align: center;
	color: #66A0E4;
	mix-blend-mode: normal
}

.ui-datepicker-month, .ui-datepicker-year {
	font-size: 16px;
	line-height: 18px;
	display: flex;
	align-items: center;
	color: #464457;
}

.ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {
	width: 32px !important;
	height: 32px !important;
	background: rgba(102, 160, 228, 0.12) !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.ui-datepicker th {
	width: 32px !important;
	height: 32px !important;
	padding: 0 !important;
}

.ui-datepicker td {
	width: 32px !important;
	height: 32px !important;
	margin-bottom: 4px !important;
}

.ui-datepicker .ui-datepicker-next:hover, .ui-datepicker .ui-datepicker-prev:hover {
	border: none !important;
}

.ui-datepicker-header {
	display: flex !important;
	align-items: center;
	background: transparent !important;
	border: none !important;
	height: 32px !important;
	margin-bottom: 20px !important;
}

.ui-datepicker .ui-datepicker-title {
	line-height: 1 !important;
	margin-left: 0 !important;
	display: flex !important;
}

.ui-icon, .ui-widget-content .ui-icon, .ui-widget-header .ui-icon {
	content: url("/Content/New/icon/next.svg") !important;
	background-image: none !important;
	width: 5px;
	height: 10px;
}

.ui-datepicker .ui-datepicker-prev {
	left: auto !important;
	right: 40px;
	transform: rotate(180deg);
}

	.ui-datepicker .ui-datepicker-next span, .ui-datepicker .ui-datepicker-prev span {
		margin-left: -2.5px !important;
		margin-top: -5px !important;
	}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
	color: white !important;
	background: #66A0E4 !important;
}

.ui-datepicker table tr {
	display: flex !important;
	justify-content: space-between;
}

.main .calendar-and-graph-block .calendar .content {
	padding: 19px 32px;
}

.documents-full .table4 .col-md-3 div:first-of-type {
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	text-align: right;
	color: #66A0E4;
	border-bottom: 1px solid #F2F3F8;
	border-left: 1px solid rgba(102, 160, 228, 0.2);
	height: 54px;
}

.documents-full .table4 .col-md-3 div:first-of-type,
.documents-full .table4 .col-md-3 div div:first-of-type,
.documents-full .table4 .col-md-3:last-child div div {
	padding: 0 10px 21px;
}

.documents-full .table4 .col-md-3:last-child div {
	padding: 0;
}

.documents-full .table4 .col-md-3:last-of-type div:first-of-type {
	border-left: none;
}

	.documents-full .table4 .col-md-3:last-of-type div:first-of-type div {
		border-left: 1px solid rgba(102, 160, 228, 0.2);
		font-weight: normal;
		color: black;
	}

.documents-full .table4 .col-md-3,
.documents-full .table4 .col-md-3 div {
	padding: 0;
}

	.documents-full .table4 .col-md-3 div p {
		border-bottom: 1px solid #F2F3F8;
		border-left: 1px solid rgba(102, 160, 228, 0.2);
		padding: 0 11px;
		height: 62px;
		align-items: center;
		display: flex;
		justify-content: flex-end;
		margin-bottom: 0;
		color: black;
		font-weight: normal;
	}

.documents-full .table4 .row .col5 input {
	text-overflow: ellipsis;
}

body[dir="rtl"] .alertify-notifier.ajs-right .ajs-message.ajs-visible {
	right: 0;
}

.notification-alert-blue {
	position: absolute;
	left: 80px;
	top: 18px;
	width: calc(100% - 150px - 80px * 2);
	background: #76AAE7;
	padding: 11px 18px 13px;
	border-radius: 2px;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	display: flex;
	align-items: center;
	letter-spacing: 0.1px;
	color: #FFFFFF;
	z-index: 2;
}

	.notification-alert-blue:before {
		content: "";
		background: #497EBB;
		border-radius: 6px;
		width: 3px;
		height: 100%;
		display: block;
		position: absolute;
		left: 0;
		top: 0;
	}

.notification-alert-red {
	position: absolute;
	left: 80px;
	top: 18px;
	width: calc(100% - 400px);
	background: red;
	padding: 11px 18px 13px;
	border-radius: 2px;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	display: flex;
	align-items: center;
	letter-spacing: 0.1px;
	color: #FFFFFF;
	z-index: 2;
}

	.notification-alert-red:before {
		content: "";
		background: #FF0050;
		border-radius: 6px;
		width: 3px;
		height: 100%;
		display: block;
		position: absolute;
		left: 0;
		top: 0;
	}

.documents-full .table4 .col-md-3 {
	width: 25% !important;
	float: left;
	min-width: 250px;
}

.documents-full .table4.bank {
	overflow-x: auto;
	display: flex;
}

body[dir="rtl"] .documents-full .table4.bank {
	flex-direction: row-reverse;
}

body[dir="rtl"] .documents-full .table4 .col-md-3 div p {
	direction: ltr;
}

.validation-summary-errors ul {
	width: 100%;
	max-width: 500px;
}

.validation-summary-errors li {
	position: relative;
	width: 100%;
	background: #FFE6E6;
	padding: 12px 18px 12px 48px;
	border-radius: 2px;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	display: flex;
	align-items: center;
	letter-spacing: 0.1px;
	color: #000000;
	list-style-type: none;
	margin-bottom: 13px;
}

	.validation-summary-errors li:before {
		content: "";
		background: #D13A3B;
		border-radius: 6px;
		width: 3px;
		height: 100%;
		display: block;
		position: absolute;
		left: 0;
		top: 0;
	}

	.validation-summary-errors li:after {
		content: url("/Content/New/icon/error-icon.svg");
		position: absolute;
		left: 20px;
		top: 11px;
	}

.edit-documents #PaymentsTable {
	padding-top: 0;
}

.main.edit-documents .table-edit .row .col3 input {
	max-width: 100%;
}

.alertify fieldset {
	/*padding: 0;*/
	text-align: center;
	border: none;
}

	.alertify fieldset h3 {
		font-family: Arial;
		font-style: normal;
		font-weight: bold;
		font-size: 18px;
		line-height: 21px;
		text-align: center;
		color: #000000;
		margin-bottom: 27px;
	}

	.alertify fieldset .form-group button,
	.alertify fieldset .form-group a {
		font-style: normal;
		font-weight: bold;
		font-size: 14px;
		line-height: 18px;
		display: flex;
		align-items: center;
		justify-content: center;
		letter-spacing: 0.3px;
		flex: none;
		order: 0;
		align-self: center;
		border: 2px solid #66A0E4;
		color: #66A0E4;
		transition: background 0.3s;
		cursor: pointer;
		padding: 0 34px;
		height: 42px;
		margin: auto;
		background: white;
	}

		.alertify fieldset .form-group a.blue {
			background-color: #66A0E4;
			color: #fff;
		}

		.alertify fieldset .form-group button:hover,
		.alertify fieldset .form-group a:hover {
			background: #66A0E4;
			color: white;
		}

.alertify .ajs-dialog {
	/*max-width: 388px !important;*/
}

.alertify .dropzone {
	max-width: 400px;
}

.alertify.ajs-basic .ajs-footer {
	display: none;
}

.alertify.ajs-basic .ajs-header {
	display: none;
}

.alertify .ajs-dialog {
	/*padding: 45px 20px 24px !important;*/ /*pop-ups on document edit*/
	/*padding: 45px 20px 24px !important;*/ /*confirm dialogs*/
}

.alertify .ajs-commands button.ajs-close {
	background-image: url("/Content/New/icon/Close.svg") !important;
}

.alertify .ajs-commands {
	/*margin: 0 !important;
    top: 15px !important;
    right: 17px !important;*/
	margin: -20px 10px !important;
}

#SelectedDocumentsTable .select2-selection.select2-selection--multiple {
	min-width: 200px;
}

.table .row .col textarea {
	min-height: 33px;
	resize: none !important;
}

.main .documents .document-info #PaymentsTable.table2 .row .short .select-items div,
.main .documents .document-info #PaymentsTable.table2 .row .short .select-selected {
	height: 45px;
}

.main .documents .document-info #PaymentsTable.table2 .row:last-of-type .select-items {
	bottom: 44px;
}

.main .documents .document-info #PaymentsTable.table2 .row .short .select-selected.select-arrow-active {
	height: 45px;
}

.main .documents #PaymentsTable.table2 .short .select-selected:after {
	top: 16px;
}

.documents-full .table.table4 .row .col20,
.documents-full .table.table4 .row .col10 {
	overflow: initial;
}

.alertify.ajs-no-padding:not(.ajs-maximized) .ajs-body {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.alertify fieldset textarea {
	height: 200px;
	border: 1px solid #C6CACC;
	box-sizing: border-box;
	background: white !important;
	outline: none;
	resize: none !important;
	margin-top: 0 !important;
}

.alertify fieldset .doc-dropzone-title {
	text-align: left;
	margin-bottom: 10px !important;
}

	.alertify fieldset .doc-dropzone-title img {
		background: #FFFFFF;
		border: 1.5px dashed #C6CACC;
		margin-top: 10px;
	}

.alertify fieldset .dz-message {
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 1.2;
	color: #000000;
	opacity: 0.7
}

.alertify fieldset .form-group {
	display: flex;
	align-items: center;
	justify-content: center;
	clear: both;
}

	.alertify fieldset .form-group button {
		background: white;
	}

	.alertify fieldset .form-group #btnSendEmail {
		background: #66A0E4 !important;
		color: white;
	}

	.alertify fieldset .form-group .button-primary {
		background: #66A0E4 !important;
		color: white;
	}

	.alertify fieldset .form-group button:hover {
		background: #66A0E4 !important;
		color: white;
	}

	.alertify fieldset .form-group #btnSendEmail:hover {
		background: #5384BE !important;
		border-color: #5384BE;
	}

.table.catalog-table .row .col.col5 input.short {
	width: 100%;
	max-width: none;
}

.table.bank-summary-table {
	overflow-x: auto;
}

	.table.bank-summary-table thead,
	.table.bank-summary-table tbody,
	.table.bank-summary-table tfoot {
		display: inline-block;
		min-width: 100%;
	}

.bank-summary.waybills .table.bank-summary-table thead,
.bank-summary.waybills .table.bank-summary-table tbody,
.bank-summary.waybills .table.bank-summary-table tfoot {
	display: block;
}

.bank-summary-table .col {
	min-width: 150px;
}

.documents-full .table4.edit-catalog {
	padding-bottom: 0;
}

.year .select-items div {
	padding-left: 10px;
	padding-right: 17px;
}

body[dir="rtl"] .year .select-items div {
	padding-left: 17px;
	padding-right: 10px;
	justify-content: flex-end;
}

body[dir="rtl"] .main .documents .document-info .input-row:nth-of-type(5) .select-items div,
body[dir="rtl"] .main .documents .document-info .input-row:nth-of-type(6) .select-items div {
	padding-left: 20px;
	padding-right: 10px;
	justify-content: flex-end;
}

[data-title]:hover {
	color: transparent;
}

	[data-title]:hover:after {
		content: attr(data-title);
		overflow: visible;
		text-overflow: inherit;
		background: #fff;
		position: absolute;
		left: auto;
		top: auto;
		width: auto;
		max-width: 20rem;
		border: 1px solid #eaebec;
		padding: 5px;
		box-shadow: 0 2px 4px 0 rgba(0,0,0,.28);
		white-space: normal;
		word-wrap: break-word;
		display: block;
		color: black;
		margin-top: -25px;
		margin-left: -11px;
	}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap !important;
	display: block !important;
}

.no-wrap {
	white-space: nowrap;
}

#PaymentsTable.table.table2 {
	display: table;
}

	#PaymentsTable.table.table2 .row {
		display: table-row;
	}

		#PaymentsTable.table.table2 .row .col {
			display: table-cell;
			direction: ltr;
		}

			#PaymentsTable.table.table2 .row .col .custom-select {
				max-width: 240px;
			}

			#PaymentsTable.table.table2 .row .col .icon {
				display: inline-block;
				vertical-align: middle;
			}

		#PaymentsTable.table .row .col {
			border-bottom: 1px solid #F2F3F8;
		}

#PaymentsTable.table .row .col.number {
	border-right: 1px solid #F2F3F8;
}

#PaymentsTable.table .row .col.edit {
	border-left: 1px solid #F2F3F8;
	border-right: 1px solid #F2F3F8;
}

#DataTables_Table_0 .row.head-row .col {
	border-top: 1px solid #F2F3F8;
	padding-top: 21px;
}

#DataTables_Table_0 .row .col:first-of-type {
	border-right: 1px solid #F2F3F8;
}

.documents-full .table.edit-supplier .row .col1,
.documents-full .table.edit-supplier .row .col3,
.documents-full .table.edit-supplier .row .col5 {
	width: 25% !important;
}

.documents-full .table.edit-supplier .row .col4 {
	width: calc(25% - 81px) !important;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	width: 100%;
	height: 50px;
	padding: 0 1em 0 !important;
	text-align: left;
}

.error-page {
	max-width: 1020px;
	margin: auto;
	text-align: center;
}

	.error-page .error-number {
		font-style: normal;
		font-weight: bold;
		font-size: 240px;
		line-height: 1;
		color: #75A9E7;
		margin-bottom: 50px;
		margin-top: 50px;
	}

	.error-page .error-head-text {
		font-style: normal;
		font-weight: bold;
		font-size: 53px;
		line-height: 61px;
		text-align: center;
		color: #363547;
		margin-bottom: 32px;
	}

	.error-page .error-text {
		font-style: normal;
		font-weight: normal;
		font-size: 24px;
		line-height: 34px;
		text-align: center;
		color: #363547;
		margin-bottom: 48px;
	}

	.error-page .error-button {
		width: 210px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		font-style: normal;
		font-weight: bold;
		font-size: 14px;
		line-height: 16px;
		color: #000000;
		margin: 0 auto;
	}


.main.edit-documents .table.table4.summary-by-supplier-table .row .col2,
.main.edit-documents .table.table4.summary-by-supplier-table .row .col3,
.main.edit-documents .table.table4.summary-by-supplier-table .row .col5,
.main.edit-documents .table.table4.summary-by-supplier-table .row .col6,
.main.edit-documents .table.table4.summary-by-supplier-table .row .col7 {
	width: calc(66% / 5) !important;
}

.main.edit-documents .table.table4.summary-by-supplier-table .row .col1,
.main.edit-documents .table.table4.summary-by-supplier-table .row .col4, {
	width: 17%;
}

.thank-you-for-registering {
	padding: 30px 0 10px;
	max-width: 1020px;
	margin: auto;
}

#thank-you-for-registering .modal-content {
	width: calc(100% - 20px);
	max-width: 1280px;
	padding: 40px 0;
	text-align: left;
}

	#thank-you-for-registering .modal-content .content {
		max-width: 1060px;
		padding: 0 20px;
		margin: auto;
	}

	.thank-you-for-registering .head-text,
	#thank-you-for-registering .modal-content .head-text {
		font-style: normal;
		font-weight: bold;
		font-size: 53px;
		line-height: 61px;
		text-align: center;
		color: #363547;
		margin-bottom: 60px;
	}

	.thank-you-for-registering .text,
	#thank-you-for-registering .modal-content .text {
		font-style: normal;
		font-weight: normal;
		font-size: 24px;
		line-height: 34px;
		color: #363547;
		margin-bottom: 60px;
	}

body[dir="rtl"] .thank-you-for-registering .text,
body[dir="rtl"] #thank-you-for-registering .modal-content .text {
	text-align: right;
}

.thank-you-for-registering .text .link,
#thank-you-for-registering .modal-content .text .link {
	color: #66A0E4;
}

	.thank-you-for-registering .text .link:hover,
	#thank-you-for-registering .modal-content .text .link:hover {
		text-decoration: none;
	}

.thank-you-for-registering .buttons,
#thank-you-for-registering .modal-content .buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

	.thank-you-for-registering .buttons .button,
	#thank-you-for-registering .modal-content .buttons .button {
		width: 210px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		line-height: 16px;
		margin-bottom: 40px;
	}

		.thank-you-for-registering .buttons .button:last-child,
		#thank-you-for-registering .modal-content .buttons .button:last-child {
			margin-bottom: 0;
		}

		.thank-you-for-registering .buttons .button.black,
		#thank-you-for-registering .modal-content .buttons .button.black {
			height: 60px;
			background: #000000;
			color: white;
			text-decoration: none;
			opacity: 0.8;
		}

body[dir="rtl"] .thank-you-for-registering .buttons .button.black,
body[dir="rtl"] #thank-you-for-registering .modal-content .buttons .button.black {
	flex-direction: row-reverse;
}

.thank-you-for-registering .buttons .button.black .img,
#thank-you-for-registering .modal-content .buttons .button.black .img {
	content: url("/Content/New/registration/download-icon-white.svg");
	margin-right: 17px;
}

.thank-you-for-registering .buttons .button.black .top-text,
#thank-you-for-registering .modal-content .buttons .button.black .top-text {
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
	color: #FFFFFF;
	margin-bottom: 2.5px;
}

.thank-you-for-registering .buttons .button.black .bottom-text,
#thank-you-for-registering .modal-content .buttons .button.black .bottom-text {
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	color: #FFFFFF;
}

.main.logged-in.edit-documents .only-top.documents-full.edit-catalog-section .edit-catalog {
	padding-bottom: 200px;
}

.main.logged-in.edit-documents .only-top.documents-full.edit-catalog-section .nav-row {
	margin-top: -159px;
}

body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row {
	flex-direction: column-reverse;
	align-items: flex-start;
}

.main .documents.related {
	position: relative;
	margin-top: 25px;
}

.main .section-title-text {
	font-style: normal;
	font-weight: bold;
	font-size: 24px;
	line-height: 28px;
	text-transform: uppercase;
	color: #363547;
	width: 100%;
	text-align: center;
	left: 0;
	display: none;
}

.tax-invoice .documents.related .table .row .col.col4,
.tax-invoice .documents.related .table .row .col.col5,
.tax-invoice .documents.related .table .row .col.col6 {
	width: 12.375% !important;
}

.tax-invoice .documents.related .table .row .col input {
	width: 100%;
	padding: 0;
}

@media (max-width: 1500px) {
	.main.logged-in.bank-account-status .bank-account-status-buttons-row {
		flex-direction: column-reverse;
		align-items: flex-end;
	}



		.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part {
			margin-bottom: 12px;
		}
}

@media (max-width: 1350px) {
	.main.logged-in.bank-account-status.tax .bank-account-status-buttons-row,
	body[dir="rtl"] .main.logged-in.bank-account-status.tax .bank-account-status-buttons-row {
		flex-direction: row;
		align-items: flex-start;
	}

	body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part {
		margin-bottom: 12px;
	}

	.main.logged-in.bank-account-status.tax .bank-account-status-buttons-row .left-part .button {
		margin-right: 0;
	}
}

@media (max-width: 1230px) {
	.documents-full .table.edit-bank,
	.documents-full .table.edit-client {
		overflow-x: auto;
	}

	.main.logged-in.edit-documents .only-top.documents-full.edit-catalog-section .edit-catalog {
		padding-bottom: 0px;
		overflow-y: auto;
	}

	.main.logged-in.edit-documents .only-top.documents-full.edit-catalog-section .nav-row {
		margin-top: 41px;
	}
}

@media (max-width: 1200px) {
	.main .registration.step2 .input-row .hint,
	.main .registration.step3 .input-row .hint {
		display: none;
		background: white;
		box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
		margin-top: 0px;
	}

	.main .registration.step2 .input-row.head .hint,
	.main .registration.step3 .input-row.head .hint {
		margin-top: 0;
		margin-right: 0;
	}

	.main .registration.step2 .input-row .hint .button,
	.main .registration.step3 .input-row .hint .button {
		display: inline-flex;
	}

	.main .documents .document-info .receipt-inputs-row,
	body[dir="rtl"] .main .documents .document-info .receipt-inputs-row {
		flex-direction: column;
		align-items: flex-end;
	}

	body[dir="rtl"] .main .documents .document-info .receipt-inputs-row {
		align-items: flex-start;
	}

	.main .documents .receipt-inputs-row .input-row.big {
		margin-right: 0;
		margin-top: 20px;
	}

	.edit-documents-tabs-row {
		flex-direction: column;
		align-items: flex-end;
	}

	body[dir="rtl"] .edit-documents-tabs-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.main.logged-in .edit-documents-tabs-row .head-block-text {
		margin-bottom: 34px;
	}

	ul.tabs {
		margin: 0 0 10px;
		min-width: 920px;
		overflow-x: auto;
		width: 100%;
	}

	.tabs-row {
		display: block;
		max-width: 920px;
		width: 100%;
		overflow-x: auto;
	}

		.tabs-row::-webkit-scrollbar {
			width: 16px;
		}

	.tabs-rows::-webkit-scrollbar-track {
		border-radius: 10px;
		padding: 0 10px;
	}

	.tabs-row::-webkit-scrollbar-thumb {
		background: #CCE5FF;
		opacity: 0.5;
		border-radius: 8px;
		border: 5px solid #F2F3F8;
	}

		.tabs-row::-webkit-scrollbar-thumb:hover {
			opacity: 1;
		}

	.main.logged-in.edit-documents .only-top {
		/*min-height: calc(100vh - 64px - 244px);*/
		min-height: 0;
	}

	.main.logged-in.edit-documents .edit.only-top {
		min-height: calc(100vh - 64px - 120px);
		padding-bottom: 20px;
	}

	.main .calendar-and-graph-block,
	body[dir="rtl"] .main .calendar-and-graph-block {
		flex-direction: column-reverse;
	}

		.main .calendar-and-graph-block .graph,
		.main .calendar-and-graph-block .calendar {
			width: 100%;
			max-width: none;
		}

		.main .calendar-and-graph-block .documents-full .head-row {
			height: auto;
			min-height: 56px;
		}

	.main .video-catalog .videos-block .item {
		width: calc(100% / 3 - 16px * 2 / 3);
		margin-bottom: 39px;
		margin-right: 16px;
	}

		.main .video-catalog .videos-block .item:nth-of-type(4n) {
			margin-right: 16px;
		}

		.main .video-catalog .videos-block .item:nth-of-type(3n) {
			margin-right: 0;
		}

	.main .video-catalog .video-catalog-head-text br {
		display: none;
	}

	.main.order-execution .bank-summary-head-row {
		flex-direction: column;
		align-items: flex-end;
	}

		.main.order-execution .bank-summary-head-row .head-block-text {
			margin-bottom: 28px;
		}

	body[dir="rtl"] .main.order-execution .bank-summary-head-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.main.order-execution .bank-summary-head-row .buttons-row {
		min-width: 0;
		margin-right: 0;
	}

	.main.logged-in .edit-documents-tabs-row .tabs-row {
		top: 125px;
	}

	.main.logged-in .edit-documents-tabs-row .head-block-text {
		width: 100%;
	}
}

@media (max-width: 1270px) {
	.main .registration .input-block {
		max-width: calc(282px + 110px);
		width: 100%;
	}

	.main .edit-advertisements .input-block {
		max-width: calc(100% - 230px);
	}

		.main .edit-advertisements .input-block textarea {
			max-width: calc(100% - 110px);
		}

	.main .download-pdf-head-row {
		flex-direction: column;
		align-items: flex-end;
	}

	body[dir="rtl"] .main .download-pdf-head-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.main .download-pdf-head-row .head-block-text {
		margin-bottom: 32px;
	}

	.main.logged-in.edit-documents .only-top.download-pdf-section {
		/*min-height: calc(100vh - 64px - 182px);*/
		min-height: 0;
		padding-bottom: 10px;
	}

	.main.tax-invoice .documents .calculate-inputs .input-row {
		flex-wrap: wrap;
	}

		.main.tax-invoice .documents .calculate-inputs .input-row.big {
			flex-direction: column-reverse;
		}

		.main.tax-invoice .documents .calculate-inputs .input-row .part {
			width: 100%;
			flex-direction: row-reverse;
			justify-content: flex-end;
			align-items: center;
		}

	body[dir="rtl"] .main.tax-invoice .documents .calculate-inputs .input-row.big {
		flex-direction: column-reverse;
	}

	body[dir="rtl"] main.tax-invoice .documents .custom-checkbox.table-checkbox {
		align-self: flex-end;
	}

	.main.tax-invoice .documents .calculate-inputs .input-row .part:last-of-type {
		margin-bottom: 17px;
	}

	.main.tax-invoice .documents .calculate-inputs .label.long {
		margin-left: 0;
	}

	.main.tax-invoice .documents .calculate-inputs br {
		display: none;
	}

	.main.tax-invoice .documents .calculate-inputs .input-row .input.long {
		min-width: 0;
	}

	.main.tax-invoice .documents .custom-checkbox.table-checkbox {
		align-self: flex-start;
		margin-left: 190px;
	}

	.main .registration .input-row .label {
		width: auto;
		text-align: right;
		align-self: flex-end;
		margin-bottom: 8px;
		display: inline-flex;
	}

	.main .registration .custom-input, .main .edit-advertisements .input-block textarea {
		max-width: none;
	}

	section.registration.step1 .select2-container--gizbarit,
	section.registration.step2 .select2-container--gizbarit {
		width: 100% !important;
	}

	.main .registration .input-row.password-input .show-icon:after {
		top: 55px;
	}

	.main .registration .input-row .hint-button {
		display: inline-flex;
	}

		.main .registration .input-row .hint-button:after {
			position: initial;
			display: inline-flex;
			margin-top: 10px;
		}

	.main .registration .input-row .with-hint {
		flex-direction: row-reverse;
		display: flex;
		margin-left: auto;
		align-items: center;
	}

	.main .bottom-label {
		padding-right: 0;
	}

	body[dir="rtl"] .main .registration .input-row .with-hint {
		flex-direction: row;
	}
}

@media (max-width: 1250px) {

	.main.logged-in.bank-account-status .bank-account-status-head-row {
		position: relative;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part,
	.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part {
		flex-direction: column-reverse;
		align-items: flex-end;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part {
		flex-direction: row !important;
		align-items: flex-end;
	}

	body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part {
		justify-content: end;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .block {
		margin: 12px 0;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part {
		margin-top: 126px;
	}

	.bank-account-status.edit-documents .bank-account-status-head-row .account {
		position: absolute;
		right: 0;
		top: 53px;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .button.white {
		left: auto;
		right: 0;
		top: -285px;
		margin-right: 0 !important;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .block {
		margin: 0;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part {
		margin-bottom: 62px;
	}

		.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .buttons-html5.export-excel-button {
			left: auto;
			right: 0;
			top: 62px;
			margin-right: 0;
		}
}

@media (max-width: 1245px) {
	.header .search-block {
		max-width: 140px;
	}

	.main .info .hint.try-demo,
	body[dir="rtl"] .main .info .hint {
		flex-direction: column-reverse;
	}

		.main .info .hint.try-demo .hint-head-text {
			margin-left: 0;
			text-align: left;
		}

	.main .info .hint .button-block {
		flex: 1;
	}

	.main .info .hint .button-block {
		margin-right: 20px;
	}

		.main .info .hint .button-block:last-of-type {
			margin-right: 0;
		}

	body[dir="rtl"] .main .info .hint .button-block {
		margin-left: 20px;
	}

		body[dir="rtl"] .main .info .hint .button-block:last-of-type {
			margin-left: 0;
		}

	.main .documents .document-info-head .part .text,
	.main .documents .document-info-head .part .text .label {
		font-style: normal;
		font-weight: normal;
		font-size: 13px;
		line-height: 15px;
		color: #000000;
	}

	.main .documents .document-info-head .part .head-text {
		font-style: normal;
		font-weight: normal;
		font-size: 24px;
		line-height: 28px;
		color: #000000;
		height: 30px;
		margin-bottom: 25px;
	}

	.main .documents .document-info-head .part .logo {
		height: 30px;
		margin-bottom: 25px;
	}

	.main.edit-documents .buttons-row {
		flex-direction: column-reverse;
		align-items: flex-end;
	}

	body[dir="rtl"] .main.edit-documents .buttons-row {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.main .download-pdf-head-row .calendar-row-block {
		margin-right: 0;
		margin-top: 20px;
	}

	.main .download-pdf-head-row .buttons {
		margin-top: 20px;
	}

	.main .download-pdf-head-row .documents-button {
		margin-right: 0;
	}

		.main .download-pdf-head-row .documents-button .documents-button-block {
			right: 0;
			left: auto;
		}

	.main .download-pdf-head-row .calendar-row .calendar-block {
		left: auto;
		right: 0;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part,
	.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part {
		flex-direction: column-reverse;
		align-items: flex-end;
	}

	body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part,
	body[dir="rtl"] .main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .block {
		margin: 12px 0;
	}

	.main.logged-in.edit-documents .only-top.bank-account-status-table {
		min-height: 0;
		padding-bottom: 30px;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .button.green {
		margin-left: auto;
		margin-right: 0;
	}

	.main.logged-in.bank-account-status .bank-account-status-head-row {
		position: relative;
	}

		.main.logged-in.bank-account-status .bank-account-status-head-row .year {
			position: absolute;
			top: 202px;
		}

	.main.logged-in.bank-account-status.tax .bank-account-status-head-row .year {
		top: 201px;
	}

	.main.logged-in.bank-account-status.tax .bank-account-status-buttons-row {
		flex-direction: column-reverse;
		align-items: flex-end;
	}

	body[dir="rtl"] .main.logged-in.bank-account-status.tax .bank-account-status-buttons-row {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.main.order-execution .bank-summary-head-row .buttons-row .button {
		margin-left: auto;
		margin-right: 0;
		margin-top: 24px;
	}
}

@media (max-width: 850px) {
	.main .head-block .container {
		padding: 0 17px;
		background: url('/Content/New/mobile_photo/cover_mob.png');
		background-size: cover;
		background-position: 0 -50px;
	}

	.main .head-block .content {
		align-items: flex-start;
		padding: 250px 0 150px;
	}

		.main .head-block .content .head-text {
			font-size: 30px;
			line-height: 34px;
			letter-spacing: -1px;
			color: #464457;
			margin-bottom: 25px;
			text-align: inherit;
		}

		.main .head-block .content .text {
			max-width: none;
			text-align: inherit;
			line-height: 34px;
			font-size: 30px;
		}

		.main .head-block .content .button {
			max-width: 600px;
			width: 100%;
		}

	.main .head-block .hint {
		align-items: flex-start;
		padding: 26px 17px 38px;
	}

		.main .head-block .hint .hint-head-text {
			font-size: 28px;
			line-height: 39px;
			margin-bottom: 17px;
			text-align: inherit;
		}

		.main .head-block .hint .hint-text {
			font-size: 16px;
			line-height: 19px;
			margin-bottom: 8px;
			text-align: inherit;
		}

		.main .head-block .hint .hint-small-text {
			font-size: 16px;
			line-height: 18px;
			color: #000000;
			opacity: 0.8;
			text-align: inherit;
		}

	.main .head-block .hint {
		margin-bottom: -250px;
	}

	.main .short-info {
		padding-top: 350px;
		padding-bottom: 40px;
	}

		.main .short-info .item {
			width: 50%;
			padding: 0 10px;
			margin-bottom: 52px;
		}

	.main .info .item,
	.main .info .item.reverse,
	body[dir="rtl"] .main .info .item,
	body[dir="rtl"] .main .info .item.reverse {
		flex-direction: column-reverse;
		margin-bottom: 87px;
	}

		.main .info .item .info-texts .item-logo {
			margin: 0 8px 0 0;
		}

	.main .info.rtl .item .info-texts .item-logo {
		margin: 0 0 0 8px;
	}

	.main .info .item .texts {
		width: calc(100% - 56px - 8px);
	}

	.main .info .item .info-head-text {
		font-size: 16px;
		line-height: 32px;
	}

	.main .info .item .info-text {
		margin-left: calc(-56px - 8px);
		width: calc(100% + 56px + 8px);
		margin-top: 16px;
		margin-bottom: 14px;
		font-size: 16px;
		line-height: 28px;
	}

	.main .info.rtl .item .info-text {
		margin-left: auto;
		margin-right: calc(-56px - 8px);
	}

	.main .info .item .info-texts {
		margin: 0;
	}

	.main .info .hint {
		flex-direction: column-reverse;
		padding: 26px 17px 38px;
	}

		.main .info .hint .hint-head-text {
			font-size: 24px;
			line-height: 28px;
			margin-bottom: 10px;
		}

		.main .info .hint .texts {
			font-size: 18px;
			line-height: 28px;
			margin-bottom: 28px;
		}

		.main .info .hint .button {
			max-width: 600px;
			width: 100%;
			margin-right: 0;
		}

	.header .container,
	.footer .container {
		padding: 0 17px;
	}

	.header .head-row .left-part {
		display: none;
	}

	.header .button {
		display: none;
	}

	.header .mobile .button {
		display: flex;
	}

	.header .mobile.buttons {
		display: flex;
		justify-content: space-between;
		margin-top: 26px;
	}

	.header .logo {
		margin: 0;
	}

	.header .head-row .right-part {
		width: 100%;
		justify-content: space-between;
	}

	.header .menu .menu-head-row .logo {
		display: none;
	}

	.mobile {
		display: flex;
	}

	.header .menu .menu-head-row,
	.header .menu .menu-items .menu-item {
		padding: 0 42px 0 16px;
	}

		.header .menu .menu-head-row .wrap {
			margin-top: 13px;
		}

	.header .menu .menu-head-row {
		height: 140px;
	}

	.header .menu.menu-logged-in .menu-head-row {
		height: 60px;
	}

	.main .info .hint {
		margin-bottom: 120px;
	}

		.main .info .hint:last-of-type {
			margin-bottom: 60px;
		}

	.footer {
		position: relative;
	}

	.mobile.back {
		background: url("/Content/New/mobile_photo/go-top.svg");
		width: 40px;
		height: 40px;
		position: absolute;
		right: 10px;
		bottom: 75px;
		cursor: pointer;
	}

	.registration .mobile.back {
		bottom: -61px;
	}

	body[dir="rtl"] .main .info .hint .button {
		margin-left: auto;
	}

	body[dir="rtl"] .main .info .item .info-text {
		margin-right: calc(-56px - 8px);
		margin-left: auto;
		width: calc(100% + 56px + 8px);
	}

	body[dir="rtl"] .main .info .item .info-texts .item-logo {
		margin: 0 0 0 8px;
	}

	body[dir="rtl"] .main .info .hint {
		margin-right: -16px;
		margin-left: auto;
		width: calc(100% + 16px * 2);
	}

	.main .login .part.back {
		display: none;
	}

	.main .login .part.content {
		width: 100%;
	}

		.main .login .part.content .sign-in .button {
			justify-content: center;
		}

	.main .login.contact-us .part.content .sign-in .button {
		margin-top: 32px;
	}

	.main .login .part.content .sign-in {
		padding: 10px 20px;
		box-sizing: content-box;
	}

	.main.logged-in {
		/*padding: 80px 16px 20px;*/
		padding: 30px 16px 20px;
	}

		.main.logged-in .login.contact-us {
			min-height: calc(106vh - 64px - 100px);
		}

		.main.logged-in .head-block-text {
			right: 16px;
			font-size: 20px;
			line-height: 24px;
			/*top: 15px;*/
			top: 42px;
			height: 24px;
			width: 100%;
		}

	.main .documents.related .section-title-text {
		font-size: 20px;
		line-height: 24px;
	}

	.main.logged-in.tax-invoice .head-block-text {
		padding: 0 15px;
	}

	.body[dir="rtl"] .main.logged-in .head-block-text {
		font-size: 24px;
	}

	.header .right-part .logged-in {
		display: flex;
		align-items: center;
	}

		.header .right-part .logged-in .user,
		.header .right-part .logged-in .search-button {
			display: block;
		}

		.header .right-part .logged-in .search-button {
			background: url("/Content/New/Search.svg");
			background-size: cover;
			width: 24px;
			height: 24px;
			cursor: pointer;
			margin-right: 31px;
		}

		.header .right-part .logged-in .search-mobile {
			position: absolute;
			width: 100%;
			height: 50px;
			background: #FFFFFF;
			box-shadow: 0px 4px 4px rgba(193, 208, 222, 0.25);
			z-index: 2;
			top: 64px;
			left: 0;
			display: none;
		}

			.header .right-part .logged-in .search-mobile span:before {
				content: url("/Content/New/Search.svg");
				position: absolute;
				top: 13px;
				left: 13px;
				cursor: pointer;
			}

			.header .right-part .logged-in .search-mobile input {
				border: 0;
				border-top: 1px solid #F2F3F8;
				width: 100%;
				font-style: normal;
				font-weight: normal;
				font-size: 14px;
				line-height: 50px;
				display: flex;
				align-items: center;
				color: #464457;
				padding: 0 20px 0 46px;
				outline: none;
			}

	.main .our-users .our-user-item {
		flex-direction: column-reverse;
		align-items: flex-end;
	}

	body[dir="rtl"] .main .our-users .our-user-item {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

		body[dir="rtl"] .main .our-users .our-user-item .info {
			flex-direction: row;
		}

	.main .our-users .our-user-item .image {
		margin-bottom: 16px;
	}

	.main .our-users .our-user-item .text {
		margin-top: 0;
		max-width: 100%;
		padding: 0;
	}

	.main .our-users .our-user-item .info {
		display: flex;
		flex-direction: row-reverse;
		justify-content: flex-end;
		margin-right: inherit;
		margin-top: 40px;
	}

		.main .our-users .our-user-item .info .item {
			margin-right: 30px;
			margin-bottom: 0;
		}

			.main .our-users .our-user-item .info .item:first-of-type {
				margin-right: 0;
			}

			.main .our-users .our-user-item .info .item:before {
				margin-right: 0;
			}

			.main .our-users .our-user-item .info .item span {
				display: none;
			}

	.main .our-users .our-user-item .info-head-text {
		margin-bottom: 16px;
		line-height: 21px;
	}

	.main .our-users .our-user-item .socials .item:last-of-type,
	.main .our-users .our-user-item .socials .item:first-of-type {
		margin-right: 30px;
	}

	.main .registration .input-row .hint {
		left: -20px;
		top: -10px;
		transform: translateY(-100%) !important;
	}

	.main .registration.step3 .input-row .hint {
		left: -100%;
		width: 320px;
	}

	.documents {
		position: relative;
		left: -16px;
		background: white;
		width: calc(100% + 32px);
	}

	body[dir="rtl"] .documents {
		position: relative;
		left: auto;
		right: -16px;
		background: white;
		width: calc(100% + 32px);
	}

	.main.logged-in .edit-documents-head-row {
		flex-direction: column;
		align-items: flex-end;
	}

	body[dir="rtl"] .main.logged-in .edit-documents-head-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.main.logged-in .edit-documents-head-row .head-block-text {
		margin-bottom: 15px;
	}

	.main.edit-documents .buttons-row {
		margin-bottom: 13px;
	}

	body[dir="rtl"] .main.edit-documents .buttons-row {
		align-items: flex-start;
	}

	.main .one-video {
		margin-top: 20px;
	}

	.main .bank-summary-head-row {
		flex-direction: column;
		align-items: flex-end;
	}

	body[dir="rtl"] .main .bank-summary-head-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.main .bank-summary-head-row .head-block-text {
		margin-bottom: 28px;
	}

	.main.logged-in.bank-summary,
	.main.logged-in.bank-account-status {
		padding-top: 30px;
	}

	.notification-alert-blue {
		position: relative;
		left: 0;
		top: 0;
		width: 100%;
		margin-bottom: 24px;
	}

	.documents-full.order-execution-section {
		width: calc(100% + 32px) !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.error-page .error-number {
		font-size: 120px;
		margin-bottom: 25px;
		margin-top: 25px;
	}

	.error-page .error-head-text {
		font-size: 24px;
		line-height: 1.1;
	}

	.error-page .error-text {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 25px;
	}

	.thank-you-for-registering .head-text,
	#thank-you-for-registering .modal-content .head-text {
		font-size: 36px;
		line-height: 48px;
		margin-bottom: 30px;
	}

	.thank-you-for-registering .text,
	#thank-you-for-registering .modal-content .text {
		font-size: 18px;
		line-height: 24px;
	}
}

@media (max-width: 750px) {
	.main .registration .upload-big {
		margin: auto;
		text-align: center;
		margin-top: 48px;
	}

	.main .registration.edit-details .upload-big {
		margin-top: 0;
	}

	.main .registration .upload-big {
		position: initial;
		margin: 48px auto 0;
	}

		.main .registration .upload-big.loaded {
			top: 0;
			left: 0;
		}

			.main .registration .upload-big.loaded img {
				position: initial;
				margin: auto;
			}

	.main .registration .loaded.upload-big {
		position: relative;
	}

		.main .registration .loaded.upload-big span:after {
			right: -20px;
			top: -20px;
		}

	.main .documents .buttons-block,
	body[dir="rtl"] .main .documents .buttons-block {
		flex-direction: column;
	}

		.main .documents .buttons-block .button {
			margin-right: 0;
			margin-bottom: 14px;
		}

	.main .documents .document-info.small .inputs-row.only-bottom,
	body[dir="rtl"] .main .documents .document-info.small .inputs-row.only-bottom {
		flex-direction: column;
	}

		.main .documents .document-info.small .inputs-row.only-bottom .label {
			width: 100px;
			margin-left: 5px;
			text-align: left;
		}

		.main .documents .document-info.small .inputs-row.only-bottom .input-row {
			margin-right: 0;
		}

	.main .documents .receipt-inputs-row .input-row.big .custom-input {
		width: 360px;
	}

	.main .registration.edit-details.second-block-mobile {
		margin-top: 25px;
	}

	.main .registration.edit-details.second-block-mobile,
	.main .registration.edit-details.first-block-mobile {
		padding-bottom: 15px;
	}

	.main .registration.second-block-mobile .input-block .input-block-head-text {
		margin-top: 18px;
	}

	.main .edit-advertisements .input-block {
		max-width: 100%;
	}

	.main .edit-advertisements .upload-big {
		margin-top: 0;
	}

	.main .video-catalog .videos-block .item {
		width: calc(100% / 2 - 16px * 1 / 2);
		margin-bottom: 39px;
		margin-right: 16px;
	}

		.main .video-catalog .videos-block .item:nth-of-type(4n) {
			margin-right: 16px;
		}

		.main .video-catalog .videos-block .item:nth-of-type(3n) {
			margin-right: 16px;
		}

		.main .video-catalog .videos-block .item:nth-of-type(2n) {
			margin-right: 0;
		}

	.main .terms-of-use {
		padding: 24px 16px;
	}

		.main .terms-of-use .blue-text {
			font-size: 24px;
			line-height: 40px;
		}

		.main .terms-of-use .text,
		.main .terms-of-use .item {
			font-size: 18px;
			line-height: 27px;
		}

			.main .terms-of-use .item span {
				margin-left: 17px;
			}

	#calendar .calendar-row {
		right: 50%;
		transform: translateX(50%);
		margin: 0 auto;
		top: 162px;
	}

	#calendar .modal-content {
		margin: auto;
	}

	.main.order-execution .bank-summary-head-row .buttons,
	body[dir="rtl"] .main.order-execution .bank-summary-head-row .buttons {
		flex-direction: column-reverse;
	}

	.main.order-execution .bank-summary-head-row .two-buttons {
		margin-top: 24px;
	}
}

@media (max-width: 550px) {
	.main .head-block .hint {
		margin-bottom: -350px;
	}

	.main .short-info {
		padding-top: 400px;
	}

	.main .head-block .container {
		background-position: 0 0;
	}

	.main .head-block .content {
		padding: 200px 0 50px;
	}

	.main .short-info .item .item-text {
		display: none;
	}

	.header .menu {
		width: 100%;
	}

	.main .head-block .hint {
		margin-left: 0;
		width: 100%;
		border-radius: 0;
	}

	.main .info .hint {
		margin-left: -16px;
		width: calc(100% + 16px * 2);
		border-radius: 0;
	}

	.main .login .part.content .sign-in .head-text {
		margin-bottom: 48px;
		font-size: 20px;
		line-height: 18px;
		margin-top: 24px;
	}

	.main .info .hint.try-demo .hint-head-text {
		font-size: 19px;
	}

	.main .registration .input-row {
		flex-direction: column;
	}

	.main .registration .custom-input {
		max-width: none;
	}

	.main .registration .input-block,
	.main .registration .input-block.one-column {
		max-width: none;
	}

	.main .registration .input-row {
		width: 100%;
	}

		.main .registration .input-row .label {
			width: auto;
			text-align: right;
			align-self: flex-end;
			margin-bottom: 8px;
			display: inline-flex;
		}

		.main .registration .input-row .hint-button {
			display: inline-flex;
		}

			.main .registration .input-row .hint-button:after {
				position: initial;
				display: inline-flex;
				margin-top: 10px;
			}

		.main .registration .input-row .hint {
			left: 50%;
			top: 10px;
			transform: translateY(-100%) translateX(-50%) !important;
		}

		.main .registration .input-row .with-hint {
			flex-direction: row-reverse;
			display: flex;
			margin-left: auto;
			align-items: center;
		}

	body[dir="rtl"] .main .registration .input-row .with-hint {
		flex-direction: row;
	}

	.with-hint-inline {
		height: auto !important;
	}

	.select-items div, .select-selected {
		width: 100%;
	}

	.select-items {
		width: 100%;
	}

	.custom-select {
		width: 100%;
	}

	.main .bottom-label {
		padding-right: 0;
	}

	.main .registration .upload .input-row {
		flex-direction: row-reverse;
		align-items: center;
	}

		.main .registration .upload .input-row .label {
			align-self: center;
		}

	#uploadPhoto .modal-content,
	#uploadSignature .modal-content,
	#changePhoto .modal-content {
		margin: 20px 10px;
		padding: 10px 50px;
		width: calc(100% - 20px);
	}

	#loading .modal-content {
		width: calc(100% - 20px);
		padding: 10px 10px;
	}

	.upload-image-block {
		width: 100%;
		max-width: 255px;
		margin: auto;
	}

	#uploadPhoto .modal-head-text,
	#uploadSignature .modal-head-text,
	#changePhoto .modal-head-text {
		font-size: 16px;
		line-height: 36px;
	}

	.main .registration .radio-button-block {
		width: 100%;
	}

	.main .registration.step2 .input-block .input-block-head-text,
	.main .registration.step3 .input-block .input-block-head-text {
		width: auto;
	}

	.main .registration.step3 .input-row.head .with-hint {
		margin-top: 18px;
	}

	.main .registration .input-row.head {
		flex-direction: row-reverse;
	}

		.main .registration .input-row.head .with-hint {
			margin-top: 38px;
			margin-right: 10px;
		}

	.main.logged-in .only-top.registration {
		padding: 20px 10px 30px;
	}

	.main .registration.step3 .input-row {
		width: 100%;
		margin-left: 0;
		max-width: none;
	}

		.main .registration.step3 .input-row .label {
			width: auto;
		}

	.main .registration .input-row .big-text {
		width: auto !important;
		max-width: 50%;
	}

		.main .registration .input-row .big-text .label br {
			display: none;
		}

	.main .registration.step3 .input-row {
		align-items: flex-end;
	}

	.main .registration .input-row.short .custom-input {
		max-width: none;
	}

	.main .registration.step3 .input-row .hint-button:after {
		margin-top: 0;
	}

	.main .registration.step3 .input-row .hint {
		left: 50%;
	}

	.main .documents .document-info .inputs-block .input-row,
	body[dir="rtl"] .main .documents .document-info .inputs-block .input-row {
		flex-direction: column;
	}

	.main .documents.summary-of-waybills-documents .document-info .inputs-block .input-row {
		flex-direction: row-reverse;
	}

	body[dir="rtl"] .main .documents.summary-of-waybills-documents .document-info .inputs-block .input-row {
		flex-direction: row;
	}

	.main .documents.summary-of-waybills-documents .document-info .inputs-block .label {
		margin-bottom: 0;
		margin-top: 0;
		text-align: left;
		max-width: 80px;
	}

	.main .documents .document-info .custom-input {
		max-width: none;
	}


	.main .documents .document-info .select-items div,
	.main .documents .document-info .select-selected,
	.main .documents .document-info .custom-select,
	.main .documents .document-info .select-items {
		width: 100%;
	}

	.main .documents .document-info .inputs-block .label {
		max-width: none;
		margin-top: 18px;
		margin-bottom: 4px;
		text-align: right;
		margin-right: 7px;
	}

	.main.tax-invoice .documents .document-info .inputs-block .label {
		text-align: left;
		margin-top: 0;
		margin-bottom: 0;
	}

	.main .documents {
		padding: 23px 7px;
	}

	.main .documents-full {
		padding: 40px 0 0px;
	}

	.main .documents .document-info .head-text {
		font-size: 18px;
		line-height: 21px;
		margin-bottom: 50px;
	}

		.main .documents .document-info .head-text .number {
			margin-right: 6px;
		}

	.main .documents .calculate-inputs {
		margin-left: 0;
	}

		.main .documents .calculate-inputs .input-row .input {
			max-width: 89px;
		}

		.main .documents .calculate-inputs .input-row .label {
			margin: 0 10px;
			font-size: 15px;
		}

	.main .documents .custom-checkbox {
		font-size: 15px;
		margin-left: 10px;
	}

	.main .documents .signature-row img,
	.main .documents .signature-row .img {
		max-width: 75%;
	}

	.main .documents .section-head-text {
		font-size: 18px;
		line-height: 21px;
	}

	.main .documents .document-info-head .part.left .text .label {
		margin-right: 0;
	}

	.main .documents .document-info-head .part:last-of-type .text .label {
		display: none;
	}

	.main .documents .document-info .receipt-inputs-row .input-row {
		flex-direction: column;
		align-items: flex-end;
	}

	body[dir="rtl"] .main .documents .document-info .receipt-inputs-row .input-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.main .documents .document-info .receipt-inputs-row .input-row .label {
		margin-bottom: 4px;
	}

	.main .documents .document-info.small .input-row.small {
		flex-direction: column;
		align-items: flex-end;
	}

	body[dir="rtl"] .main .documents .document-info.small .input-row.small {
		flex-direction: column;
		align-items: flex-start;
	}

	body[dir="rtl"] .main .documents .document-info.small .inputs-row.only-bottom .input-row.small {
		flex-direction: row;
	}

	.main .documents .document-info.small .input-row.small .label {
		max-width: none;
		margin-bottom: 4px;
	}

	.main .documents .document-info.small .inputs-row.only-bottom .input-row.small {
		flex-direction: row-reverse;
	}

	.main .documents .receipt-inputs-row .input-row.big .custom-input {
		max-width: 100%;
	}

	.main .documents .receipt-inputs-row .input-row.big {
		max-width: 100%;
	}

	.main .documents .document-info .receipt-inputs-row {
		margin-bottom: 30px;
	}

	.main .documents .document-info .inputs-block .input-row.big,
	.main .documents .document-info.small .inputs-row.only-bottom {
		margin-top: 20px;
	}

	.main .documents .document-info .ui.selection.dropdown {
		width: 100%;
	}

	.main .documents .document-info .inputs-block .input-row.big,
	.main .documents .document-info .inputs-block .input-row.payment-terms,
	.main .documents .nav-row,
	.main .documents .document-info.small .input-row.small,
	.main .documents .document-info .receipt-inputs-row .input-row {
		padding: 0;
	}

	.main .documents .nav-row {
		flex-direction: column;
		align-items: flex-end;
		padding: 10px;
	}

	body[dir="rtl"] .main .documents .nav-row {
		flex-direction: column;
		align-items: flex-start;
		padding: 10px;
	}

	.main .documents .nav-row .pagination {
		margin-top: 20px;
	}

	.main .calendar-and-graph-block .documents-full .head-row {
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
		padding: 20px 8px 50px;
	}

	body[dir="rtl"] .main .calendar-and-graph-block .documents-full .head-row {
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 20px 8px 50px;
	}

	.main .calendar-and-graph-block .content {
		position: relative;
	}

	#form-dashboard-graph {
		left: auto !important;
		right: 8px !important;
		top: -46px !important;
		width: 50%;
		position: absolute;
		float: left;
		left: 0;
		top: 5px;
	}

	.main .calendar-and-graph-block .custom-select {
		margin-top: 14px;
	}

	.main .registration .input-row.password-input .show-icon:after {
		top: 55px;
	}

	.main .registration.edit-details .input-row .label {
		margin-top: 14px;
	}

	.main .registration.edit-details .nav-buttons {
		flex-direction: column;
		position: relative;
	}

	.main .registration.edit-details.second-block-mobile {
		margin-bottom: 25px;
	}

		.main .registration.edit-details.second-block-mobile:last-of-type {
			margin-bottom: 75px;
		}

		.main .registration.edit-details.second-block-mobile .white.download {
			position: inherit;
			bottom: -92px;
		}

	.main.logged-in .edit-documents-head-row {
		flex-direction: column;
		align-items: flex-end;
	}

	body[dir="rtl"] .main.logged-in .edit-documents-head-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.main.logged-in .edit-documents-head-row .button {
		margin-left: auto;
		margin-top: 18px;
	}

	.main.edit-documents .buttons-row,
	body[dir="rtl"] .main.edit-documents .buttons-row {
		flex-direction: column-reverse;
	}

	.main.edit-documents .search-block .search,
	.main.edit-documents .search-block {
		width: 100%;
	}

	.main.edit-documents .buttons-row {
		width: 100%;
		align-items: flex-end;
	}

	.main.edit-documents .edit-catalog-head-row {
		position: relative;
		padding: 20px 10px;
	}

		.main.edit-documents .edit-catalog-head-row .head-buttons-row {
			position: absolute;
			top: -50px;
			right: 0;
		}

		.main.edit-documents .edit-catalog-head-row:first-of-type .head-buttons-row {
			top: -70px;
		}

	.main.logged-in.edit-documents .only-top.documents-full.edit-catalog-section {
		margin-top: 50px;
	}

	.main .edit-advertisements .input-row {
		min-width: auto;
	}

	.main .edit-advertisements .input-block textarea {
		max-width: 100%;
		width: 100%;
		resize: none;
	}

	.main .edit-advertisements .nav-buttons .button:last-of-type {
		margin-right: 0;
	}

	.main .edit-advertisements .nav-buttons {
		margin-top: 40px;
	}

	.main .edit-advertisements .input-block .input-block-head-text {
		margin-bottom: 20px;
		margin-top: 60px;
	}

	.main .download-pdf-head-row .calendar-row,
	.main .download-pdf-head-row .calendar-row-block,
	.main .download-pdf-head-row .calendar-row .calendar-block,
	.main .download-pdf-head-row .dropdown-row,
	.main .download-pdf-head-row .dropdown-row .ui.selection.dropdown {
		width: 100%;
	}

	.main .download-pdf-head-row .documents-button {
		position: initial;
	}

		.main .download-pdf-head-row .documents-button .documents-button-block {
			top: 293px;
			width: calc(100% - 20px);
			margin: 0 10px;
		}

	.main .download-pdf-head-row .dropdown-row .label {
		width: 110px;
	}

	.main .download-pdf-head-row .documents-button-block .button {
		height: 42px;
		width: 120px;
	}

	.main .download-pdf-head-row .calendar-row .calendar-block {
		top: 75px;
	}

	.main .video-catalog .videos-block .item {
		width: calc(100%);
		margin-bottom: 39px;
		margin-right: 0px;
	}

	.main .video-catalog {
		padding: 45px 11px 10px;
	}

		.main .video-catalog .video-catalog-head-text {
			margin-bottom: 13px;
		}

		.main .video-catalog .videos-block .item .text {
			min-height: 0;
		}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .button.white {
		margin-right: 10px;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part .button {
		margin-left: 10px;
	}

	#graph .modal-content {
		width: 100%;
	}

	.main.logged-in.bank-account-status.tax .bank-account-status-buttons-row .right-part .button {
		margin-bottom: 12px;
	}

	.main.logged-in.bank-account-status.tax .bank-account-status-buttons-row .block {
		margin-bottom: 0;
	}

	.main.logged-in.bank-account-status.tax .bank-account-status-head-row .year {
		top: 201px;
	}

	.main.tax-invoice .documents .calculate-inputs .label {
		margin-left: 0;
	}

	.main.tax-invoice .documents .document-info .calculate-inputs .input-percent {
		max-width: calc(100% - 180px);
		width: 100%;
	}

	.main.tax-invoice .documents .document-info .short.full .select-items div,
	.main.tax-invoice .documents .document-info .short.full .select-items,
	.main.tax-invoice .documents .document-info .short.full .select-selected,
	.main.tax-invoice .documents .document-info .short.full {
		width: 100%;
		text-align: left;
	}

	.main.tax-invoice .documents .calculate-inputs .input-row .input {
		max-width: calc(100% - 180px);
		width: 100%;
	}

	.main.tax-invoice .documents .custom-checkbox.table-checkbox {
		margin-left: 180px;
	}

	body[dir="rtl"] .main.tax-invoice .documents .document-info .calculate-inputs .short .select-selected,
	body[dir="rtl"] .main.tax-invoice .documents .document-info .calculate-inputs .custom-select.short {
		margin-right: auto;
		margin-left: 0;
	}

	.main.tax-invoice .documents .document-info .select-items div,
	.main.tax-invoice .documents .document-info .select-selected,
	.main.tax-invoice .documents .document-info .custom-select,
	.main.tax-invoice .documents .document-info .select-items {
		text-align: left;
	}

	.main.logged-in.bank-summary.waybills .bank-summary-head-row .buttons {
		flex-direction: column-reverse;
	}

	.main.logged-in.bank-summary .bank-summary-head-row .year.name {
		margin-bottom: 10px;
	}

	.main.logged-in.order-execution .bank-summary-head-row .year.name {
		margin-bottom: 0;
	}

	.main.logged-in.tax-invoice .head-block-text {
		padding: 0;
		width: calc(100% + 18px);
		margin-left: -9px;
	}

	.main.tax-invoice .documents .buttons-block {
		margin-top: 34px;
	}

	#openTable .modal-content {
		width: 100%;
		padding: 48px 10px 20px;
	}

	.main .documents.summary-of-waybills-documents .document-info .inputs-block .button {
		margin-right: 97px;
		margin-bottom: 28px;
	}

	body[dir="rtl"] .main .documents.summary-of-waybills-documents .document-info .table {
		margin-right: 0;
		width: 100%;
	}

	.main .documents.summary-of-waybills-documents .document-info .table {
		margin-left: 0;
		width: 100%;
	}

	.main .documents.summary-of-waybills-documents .document-info .add {
		margin-left: 41px;
		margin-bottom: 10px;
	}

	.main .documents.summary-of-waybills-documents .document-info .table {
		margin-top: 42px;
	}

	.main .documents.summary-of-waybills-documents .buttons-block {
		margin-bottom: 17px;
	}

	.main.edit-documents.balances .balances-head-row {
		flex-direction: column;
		align-items: flex-end;
	}

	body[dir="rtl"] .main.edit-documents.balances .balances-head-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.main.edit-documents.balances .balances-head-row .head-block-text {
		margin-bottom: 28px;
	}

	.main.edit-documents.balances .balances-section .section-head-text {
		text-align: right;
		padding-right: 10px;
	}

	.dataTables_wrapper .dataTables_paginate .paginate_button.next {
		margin-right: 0;
	}

	.step3 .select-items div,
	.step3 .select-selected,
	.step3 .custom-select,
	.step3 .select-items {
		width: 100%;
	}

	.dz-remove {
		color: #FFFFFF !important;
		background-color: #dc3545;
		border-color: #dc3545;
		width: 108px;
		height: 42px;
		box-sizing: border-box;
		font-style: normal;
		font-weight: bold;
		font-size: 14px;
		line-height: 18px;
		display: flex;
		align-items: center;
		justify-content: center;
		letter-spacing: 0.3px;
		margin: auto;
		margin-top: auto;
		margin-top: auto;
		margin-top: 28px;
		transition: 0.3s;
	}

		.dz-remove:hover {
			text-decoration: none;
		}

	.main.edit-documents .edit-catalog-head-row {
		flex-direction: column;
		align-items: flex-end;
	}

		.main.edit-documents .edit-catalog-head-row:first-of-type .head-buttons-row,
		.main.edit-documents .edit-catalog-head-row .head-buttons-row {
			position: initial;
		}
}

@media (max-width: 360px) {
	.header .right-part .logged-in .search-button {
		margin-right: 10px;
	}

	.header .right-part .logged-in .user {
		margin-right: 10px;
	}

	.main .documents .document-info .inputs-block .custom-radio-button-block .custom-input {
		margin-right: 0;
	}
}

@media (max-width: 350px) {
	.main.logged-in.bank-account-status .bank-account-status-buttons-row .block {
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .left-part .button.white {
		margin-bottom: 12px;
	}

	.main .bank-summary-head-row .buttons {
		flex-direction: column-reverse;
	}

	.main .bank-summary-head-row .button {
		margin: 24px 0 0 0 !important;
	}

	.main.order-execution .bank-summary-head-row .two-buttons,
	body[dir="rtl"] .main.order-execution .bank-summary-head-row .buttons-row .two-buttons {
		flex-direction: column-reverse;
	}

	.main.logged-in.bank-summary .year.month {
		margin-bottom: 24px;
	}

	.main.order-execution .bank-summary-head-row .buttons-row .button {
		margin-left: auto !important;
	}

	.main.logged-in.bank-account-status .bank-account-status-buttons-row .right-part .button {
		margin-left: 6px;
	}

	/*.main.logged-in.bank-account-status .bank-account-status-head-row .year {*/
	/*top: 247px;*/
	/*}*/
}
/*Hide arrows on input type "number"*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

.col.col15 {
	width: 15% !important;
}

.col.col45 {
	width: 45% !important;
}

.col.col10 {
	width: 10% !important;
}

.col.col25 {
	width: 25% !important;
}

.col.col5p {
	width: 5% !important;
}

.col.col20 {
	width: 20% !important;
}

.col.col90 {
	width: 90% !important;
}

.documents-full .table4.edit-catalog .col.col10 {
	min-width: 110px;
}

.custom-select.full,
.custom-select.full select,
.custom-select.full .select-selected {
	width: 100%;
	max-width: 100%
}

	.custom-select.full .select-items,
	.custom-select.full .select-items div {
		width: auto;
	}

/*.select2.select2-container {
    width: auto !important;
    min-width: 300px;
    line-height: 17px;
    font-size: 15px;
}

    .select2.select2-container .select2-selection {
        background: #FAFAFA !important;
        border: 1px solid #C6CACC !important;
        border-radius: 0 !important;
        min-height: 22px !important;
        align-items: center !important;
    }

        .select2.select2-container .select2-selection ul {
            padding: 11px 5px !important;
        }*/

.tableExport {
	display: none
}

.bank-summary-table .col {
	width: 25%;
}

.graphcanvasmain {
	background-color: #FFF;
	padding-top: 10px;
	padding-bottom: 10px;
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	display: none;
}

	.graphcanvasmain .graphbuttons {
		margin: 20px 0px !important;
	}

#twomonth, #oneyear {
	padding: 15px 20px;
	font-weight: bold;
	font-size: 14px;
	line-height: 18px;
}

.limit-exceeded {
	font-weight: normal;
	font-size: 10px;
	padding-left: 7px;
}

.transactions .custom-input {
	font-size: 14px;
}

.export-excel-button.taxes-export {
	display: none;
}

.button.blue.clear {
	max-width: 282px;
	width: 100%;
	margin-top: 10px;
	padding: 10px 0;
	float: left;
	text-align: center;
}

	.button.blue.clear span {
		margin: auto;
		width: 50%;
	}

.text-anchor {
	cursor: pointer;
	text-decoration: underline;
	color: #4183C4;
}

.table-sm tr td {
	padding: 5px 2px;
	text-align: center;
}

.table-sm tr.selected {
	background-color: #E0E8F5;
}

.button.close {
	width: 108px;
	height: 42px;
	box-sizing: border-box;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.3px;
	margin: auto;
	margin-top: auto;
	margin-top: 28px;
	transition: 0.3s;
}

.inline {
	cursor: pointer;
}

.catalog-table .row:not(.editing) input,
.supplierwaybill-table .row:not(.editing) input,
.select-selected.disabled {
	pointer-events: none !important;
}

.grayed {
	color: #778899;
}

.ui-datepicker-header {
	direction: ltr !important;
}

.ui-datepicker-rtl .ui-datepicker-next {
	right: 2px !important;
	left: auto !important;
}

.ui-datepicker-rtl .ui-datepicker-prev {
	right: 40px !important;
	left: auto !important;
}

.table.transactions .row .col {
	padding: 8px 10px !important;
}

.main .documents .document-info .catalog-table .select2-container--gizbarit,
.main .documents .document-info .catalog-table .custom-select select,
.main .documents .document-info .catalog-table .custom-select {
	width: 100%;
}

.bg-warning {
	background-color: #fcf8e3;
}

.text-warning {
	color: #ffc107 !important;
}

.red {
	color: #D13A3B;
}

.element-10-px {
	width: 10px;
}

.alertify.ajs-maximized .ajs-commands {
	margin: unset !important;
}

.dealer-decision-dialog .form-group {
	margin-top: 20px;
	margin-bottom: 10px;
}

.dealer-decision-dialog ol {
	text-align: left;
}

	.dealer-decision-dialog ol.rtl-text {
		text-align: right;
	}

input.custom-input:disabled {
	background-color: #eee;
	opacity: 1;
}