﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

:root {
	--darkgreen: #589600;
	--darkforest: #355a05;
	--darkpink: #db6363;
	--cherry: #a13b38;
	--sahara: #ffeeb0;
	--darkyellow: #ffcd00;
	--brown: #ab8000;
	--darkbrown: #5d4a21;
	--black: #000000;
	--blue: #3173b2;
	--lightblue: #4eaac1;
	--violet: #9a739b;
	--darkgrey: #404040;
	--sdarkgrey: #282828;
	--grey: #808080;
	--litegrey: #bfbfbf;
	--gainsboro: #e5e5e5;
	--white: #ffffff;
	--dropdown-menu-border: rgba(28, 28, 28, 0.2);
	--black-olive: #404040;
	--task-select: #8c8c8c;
	--secure-digits-shown: #595959;
}

body {
	transform-origin: 0 0;
}

a.navbar-brand {
	white-space: normal;
	text-align: center;
	word-break: break-all;
}

.authentification-link {
	color: var(--darkyellow);
}

.visibility--hidden {
	visibility: hidden;
}

.authentification-link:hover {
	text-decoration: none;
	color: var(--darkyellow);
}
/* Sticky footer styles
-------------------------------------------------- */
html {
	font-size: 14px;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

.border-top {
	border-top: 1px solid #e5e5e5;
}

.border-bottom {
	border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

button.accept-policy {
	font-size: 1rem;
	line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
	position: relative;
	min-height: 100%;
}

body,
html {
	margin: 0px;
	padding: 0px !important;
	overflow-x: hidden;
}

#global-modal {
	padding-right: 0px !important;
}

body {
	background-image: url("/images/background-image.jpg");
	background-size: 100% 100%;
	/*background-position: left -296px;*/
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.pd-default {
	padding: 0 15px;
}

.pd-tp--default {
	padding-top: 30px;
}

.pd-bt--default {
	padding-bottom: 30px;
}

/* Header styles start
-------------------------------------------------- */
header {
	background-color: #404040;
}

.header--fixed {
	position: fixed;
	right: 0;
	left: 0;
	z-index: 1030;
}

.brand-logo {
	display: inline-block;
	width: 100%;
	background: url(/images/oddin-logo.png) center center no-repeat;
	background-size: cover;
	height: 90px;
	position: relative;
}

.brand-logo:hover {
	text-decoration: none;
}

.login-form {
	display: flex;
	position: relative;
}

.login__user--top {
	padding-right: 30px;
}

.messages-active .login__user-name {
	color: #404040;
}

.messages-active .login__user-info {
	-webkit-box-shadow: -3px 3px 0px 3px rgba(128, 128, 128, 0.22);
	-moz-box-shadow: -3px 3px 0px 3px rgba(128, 128, 128, 0.22);
	box-shadow: -3px 3px 0px 3px rgba(128, 128, 128, 0.22);
}

.login__user-name {
	font-family: "Montserrat";
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	text-align: right;
	line-height: 1.2;
}

.login__user-name:hover,
.login__user-name:active,
.login__user-name:focus {
	color: var(--white);
}

.messages {
	background-color: var(--darkpink);
	max-height: 300px;
	overflow-y: auto;
	overflow-x: hidden;
}

.messages-setting {
	padding: 9px 12px;
	display: flex;
	justify-content: space-between;
	background-color: var(--white);
}

.messages-setting a {
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 12px;
	line-height: 1.2;
	color: #404040;
}

.calculator-result {
	
}

.executors-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.messages::-webkit-scrollbar {
	background-color: #d4d4d4;
	width: 15px;
}

.messages::-webkit-scrollbar-track {
	background-color: #d4d4d4;
}

.messages::-webkit-scrollbar-thumb {
	background-color: #bfbfbf;
}

.messages::-webkit-scrollbar-button {
	display: none;
}

::-webkit-scrollbar {
	background-color: #d4d4d4;
	width: 15px;
}

::-webkit-scrollbar-track {
	background-color: #d4d4d4;
}

::-webkit-scrollbar-thumb {
	background-color: #bfbfbf;
}

::-webkit-scrollbar-button {
	display: none;
}

input[type="number"] {
	-moz-appearance: textfield;
}

.messages__item {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	border: 0;
	min-height: 60px;
	position: relative;
	opacity: 1;
	background-color: #fff;
}

.messages__item--readed {
	display: none;
}

.messages__item-img {
	display: flex !important;
	justify-content: center;
	align-items: center;
	font-family: "Montserrat";
	font-weight: 500;
	font-size: 34px !important;
	color: #fff;
	flex: 60px 0 0;
	background-color: #aa81ba;
}

.messages__item-text {
	display: flex;
	align-items: center;
	font-family: "Montserrat";
	font-weight: 300;
	font-size: 14px;
	flex: 1;
	line-height: 1.2;
	color: #808080;
	padding: 12px 18px;
}

.messages__item-text:hover,
.messages__item-text:focus,
.messages__item-text:active {
	color: #808080;
	text-decoration: none;
}

.messages__item-remove {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Montserrat";
	font-size: 28px;
	padding-right: 20px;
	padding-left: 20px;
	color: #e5e5e5;
	flex: 60px 0 0;
}

.messages__item-remove:hover {
	text-decoration: none;
	color: #808080;
}

.messages-active .login__user-email {
	color: #808080;
}

.messages-active .login__user-info {
	background-color: #fff;
}

.login__user-email {
	font-family: "Montserrat";
	font-size: 14px;
	line-height: 1.2;
	color: #bfbfbf;
	display: inline-block;
	padding-top: 7px;
	text-align: right;
}

.login__user-email:hover {
	color: #bfbfbf;
}

.login__user-info {
	width: 100%;
	/*padding-left: 75px;*/
	max-width: 350px;
	flex: 1;
	padding-top: 13px;
}

.login__user-image {
	display: flex;
	align-items: center;
	width: 90px;
	height: 90px;
	background: url(/images/default-user-image.jpg);
	background-size: cover !important;
	position: relative;
}

.login__user-image > form {
	display: none;
}

.login__user-image:hover > form {
	display: block;
}

.user__messages {
	font-family: "MontserratBlack";
	font-size: 18px;
	line-height: 1.2;
	background-color: #db6363;
	padding: 7px 9px 4px 9px;
	position: absolute;
	left: 0;
	bottom: 0;
	border: 0px;
	color: #fff;
}

.dropdown-menu-messages {
	position: absolute;
	top: 100%;
	right: 0;
	width: 100%;
	z-index: 6;
	width: 330px;
	display: none;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-clip: padding-box;
	background-color: transparent;
	-webkit-box-shadow: -3px 3px 0px 3px rgba(128, 128, 128, 0.22);
	-moz-box-shadow: -3px 3px 0px 3px rgba(128, 128, 128, 0.22);
	box-shadow: -3px 3px 0px 3px rgba(128, 128, 128, 0.22);
}

.header-message-box {
	flex: 1;
	flex-direction: column;
	color: #bfbfbf;
	justify-content: center;
	padding: 4px 35px;
	overflow: hidden;
	position: relative;
}

.header-messages-container {
	position: absolute;
}

.header-messages-container div {
	display: block;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 500;
	font-size: 14px;
}

.header-message-box div + div {
	padding-top: 3px;
}
/* input styles start
-------------------------------------------------- */
.form-control[type="checkbox"] {
	height: 1rem;
	width: auto;
}

/* input styles end
-------------------------------------------------- */

/*department pick up styles start*/
.department-item.selected {
	background: var(--gainsboro);
}
/*department pick up styles end*/
/* pagination start
-------------------------------------------------- */
.pagination {
	width: 100%;
	justify-content: center;
	align-items: center;
	border-top: 1px solid var(--gainsboro);
}

.page-item a {
	display: flex;
	margin-right: 5px;
	padding: 3px 10px;
	border-radius: 3px;
	background-color: var(--darkyellow);
	color: var(--white) !important;
	cursor: pointer;
	transition: all 0.2s;
	height: 30px;
}

.page-item a:hover {
	background-color: #ffa500;
}

.page-item.active a {
	background-color: var(--gainsboro);
	color: var(--darkgrey) !important;
	border: 1px solid var(--litegrey);
}

.pagination-item--hidden {
	display: none;
}

.pagintation-dots--after,
.pagintation-dots--before {
	display: flex;
}

.pagintation-dots--after:after {
	content: "...";
	display: inline-block;
	margin: 0 8px;
}

.pagintation-dots--before:before {
	content: "...";
	display: inline-block;
	margin: 0 8px;
}

/* pagination end
-------------------------------------------------- */

/*context menu for mutual offset page start*/
.contextmenu-container {
	width: 150px;
	background-color: var(--darkyellow);
}

.contextmenu-container__item {
	padding: 6px 10px;
	cursor: pointer;
}

.contextmenu-container:hover {
	background-color: var(--darkgrey);
	color: var(--darkyellow);
}
/* context menu for mutual offset page end*/
/* main layout start
-------------------------------------------------- */
.main {
	display: grid;
	width: 100%;
	grid-template-columns: 1fr;
	grid-template-rows: 90px 1fr;
	grid-template-areas: "header header" "content content";
	min-height: 100vh;
}

.main > header {
	grid-area: header;
}

.main__content {
	grid-area: content;
}

.main > content {
	grid-area: content;
	display: flex;
	flex-direction: column;
}

/* main layout end
-------------------------------------------------- */

/* sdictionary layout start (AgentClass, Currencies, EventClasses,
                            MessageTypes, OperationStatus, ProjectStatuses,
                            TaskTemplates, TelegramChats, WorkTypes)
-------------------------------------------------- */

.sdictionary {
	display: grid;
	width: 100%;
	grid-template-columns: 250px 1fr;
	grid-template-rows: 1fr;
	/*grid-template-areas: "title title" "sidebar content";*/
	grid-template-areas: "sidebar content";
	grid-gap: 15px;
	grid-row-gap: 0px;
}

.sdictionary > .sdictionary__sidebar {
	grid-area: sidebar;
	overflow-y: hidden;
	padding: 0;
}

.sdictionary > .sdictionary__main {
	grid-area: content;
	position: relative;
	padding: 0px 90px 40px 55px;
	position: relative;
}

/*.projecttask-name-item .agent-control-title{
	margin-bottom:16px;
}*/
/*.sdictionary__sidebar-header {
	border-bottom: 1px solid #cacfd4;
}*/
.sdictionary__sidebar-item .handle {
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}
/* sdictionary layout end
-------------------------------------------------- */
/* sdictionary content start
-------------------------------------------------- */
.title-row h1 {
	margin: 0px;
}

.sdictionary__sidebar {
	height: 100%;
	overflow-y: auto;
	border-right: 1px solid #cacfd4;
	border-left: 1px solid #cacfd4;
}

.sdictionary__create {
	border-left: 1px solid #cacfd4;
	border-top: 1px solid #cacfd4;
	border-bottom: 1px solid #cacfd4;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0px 10px;
}

.sdictionary__create-init {
	font-size: 20px;
}

.sdictionary__create-init:hover,
.sdictionary__create-init :active,
.sdictionary__create-init :focus {
	text-decoration: none;
}

.sdictionary__sidebar-item {
	display: inline-block;
	padding: 5px 10px 5px 15px;
	width: 100%;
	min-height: 30px;
	line-height: 1.2;
	border-bottom: 1px solid #cacfd4;
}

.sdictionary__sidebar-item:last-child {
	border-bottom: none;
}

.sdictionary__sidebar-item.active {
	background-color: #cacfd4;
	color: #fff;
}

.sdictionary__sidebar-item:hover {
	background-color: #cacfd4;
	color: #fff;
}

.sdictionary__sidebar-item:hover,
.sdictionary__sidebar-item:active,
.sdictionary__sidebar-item:focus {
	text-decoration: none;
}

.sdictionary__sidebar-list {
	overflow: auto;
	height: calc(100% - 32px);
}

.sdictionary__delete {
	max-width: 90px;
	position: absolute;
	right: 15px;
	top: 0;
}

.sdictionary__edit .form-control {
	width: 200px;
}

/* sdictionary content end
-------------------------------------------------- */

/* dictionary layout start (Agent)
-------------------------------------------------- */

.dictionary {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 50px 1fr;
	grid-template-areas: "filters" "d-content";
	grid-gap: 15px;
}

.dictionary > div {
	padding: 0 15px;
}

.dictionary > header {
	grid-area: header;
}

.dictionary .title-row {
	grid-area: title;
	padding: 0 0 0 15px;
}

.dictionary > .dictionary__filters {
	grid-area: filters;
}

.dictionary > .dictionary__main {
	grid-area: d-content;
	position: relative;
}

.title-row h1 {
	margin: 0px;
}
/* dictionary layout start
-------------------------------------------------- */

/* dictionary content start
-------------------------------------------------- */
.dictionary__data td {
	padding: 4px;
}

[data-fancybox] {
	cursor: zoom-in;
}

.dictionary__data-th {
	color: #fff;
	text-decoration: none;
}

.dictionary__data-th:hover,
.dictionary__data-th:focus,
.dictionary__data-th:active {
	color: #fff;
	text-decoration: underline;
}

.dictionary__filters {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.dictionary__create {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
}

.dictionary__create-init {
	font-family: sans-serif;
	font-size: 21px;
	line-height: 1;
	padding: 2px 6px;
	border: 1px solid black;
	display: inline-block;
	border-radius: 2px;
	font-weight: 500;
	color: #000;
	background-color: var(--darkyellow);
}

.dictionary__create-init:hover,
.show-digits-btn.active {
	background-color: var(--darkgrey);
	color: var(--darkyellow);
	transition: all 0.3s;
}

.dictionary__create-init:hover,
.dictionary__create-init:active,
.dictionary__create-init:focus {
	text-decoration: none;
}

.dictionary__data-column {
	width: 100%;
	text-decoration: none;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}

.dictionary__data-column img {
	max-width: 16px;
}

.dictionary__class-filter {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	max-width: 300px;
	width: 100%;
}

.dictionary__class-filter + .dictionary__class-filter {
	margin-left: 20px;
}

.dictionary__class-filter h5 {
	font-size: 14px;
	margin-right: 20px;
	margin-bottom: 0px;
}
/* dict agent start
-------------------------------------------------- */
.dictionary__agent-id {
	width: 50px;
}

.dictionary__agent-fullname {
	width: 20%;
}

.dictionary__agent-phone {
	width: 150px;
}

.dictionary__agent-email {
	width: 20%;
}

.dictionary__agent-note {
	max-width: 0px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.edit--error {
	display: inline-block;
	max-width: 600px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
/* dict agent end
-------------------------------------------------- */
/* dict operation start
-------------------------------------------------- */
.dictionary__operation-fulldate {
	width: 15%;
}

.dictionary__operation-class {
	width: 15%;
}

.dictionary__operation-code {
	width: 150px;
}

.dictionary__operation-accenter {
	width: 170px;
}

.dictionary__operation-counterparty {
	width: 150px;
}

.dictionary__operation-status {
	width: 150px;
}

.dictionary__operation-total {
	width: 130px;
}

.dictionary__operation-note {
	max-width: 0px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

/* dict operation end
-------------------------------------------------- */
.dictionary__remove {
	position: absolute;
	top: 0px;
	right: 15px;
}

.remove-container {
	position: absolute;
	top: -42px;
	right: 2px;
}

/* dictionary content end
-------------------------------------------------- */

/* project content start
-------------------------------------------------- */
.smal-indent {
	margin-right: 3px;
}

.smal-indent:last-child {
	margin-right: 0px;
}

.project-item.active {
	outline: 4px solid var(--darkyellow);
}

.project-item__image {
	max-width: 200px;
	height: 178px;
	margin: 0px auto;
	display: block;
}
/* project content end
-------------------------------------------------- */
.index-container {
	display: flex;
	flex-wrap: wrap;
	padding: 0 30px;
	background-size: cover;
}

.index-container > div {
	margin-right: 30px;
	margin-bottom: 30px;
}

.index-container > div:last-child {
	margin-right: 0px;
}

.widget-projecttask {
	max-width: 1200px;
	width: 100%;
}

.widget-projecttask .w__content {
	height: 280px;
}
/* widget content start
-------------------------------------------------- */
.w__header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: var(--darkyellow);
	padding: 0 20px;
	width: 100%;
	height: 60px;
	position: relative;
}

/*.w__header .dropdown-menu-messages {
        width: 330px;
    }*/

.w__header .dropdown-menu-messages .messages {
	max-height: 180px;
}

@media all and (min-width: 1600px) {
	.w__header .dropdown-menu-messages .messages {
		max-height: 240px;
	}
}

.w__header-title {
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.2;
	margin: 0px;
	text-transform: uppercase;
	color: var(--black);
}

.w__header button .material-icons {
	transition: transform 0.2s ease;
}

.w__header button.active .material-icons {
	transform: rotate(90deg);
}

.js-w-header-toggle,
.js-w-header-action {
	user-select: none;
}

.js-w-header-toggle:focus,
.js-w-header-toggle:focus-visible,
.js-w-header-action:focus,
.js-w-header-action:focus-visible {
	outline: none;
}

.w__header-title a {
	color: inherit !important;
}

.w__header-title a:focus,
.w__header-title a:hover,
.w__header-title a:active {
	color: inherit !important;
	text-decoration: underline;
}

.w__header-settings {
	border: none;
	margin-left: auto;
	width: 28px;
}

.w__header-settings span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--grey);
}

.w__header-settings span + span {
	margin-top: 3px;
}

.w__body {
	height: 100%;
}

.w-height {
	height: 300px !important;
}

.w-m-height {
	max-height: 300px !important;
}

.w__body,
.w__body-content {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
}

.w__body-content {
	background-color: var(--white);
}

.w__body-header {
	display: flex;
	align-items: center;
	width: 100%;
	font-size: 14px;
	height: 30px;
	border-bottom: 1px solid var(--gainsboro);
	font-family: "Montserrat", sans-serif, Arial;
}

.project-task__body-header {
	height: 40px;
	padding: 0 0px 0 0;
	/*border: 0 0 1px 0;*/
	background: #ffffff;
	border-bottom: 1px solid #0000001a;
	align-items: center;
	font-family: Montserrat;
	font-size: 12px;
	font-weight: 600;
	line-height: 15px;
	letter-spacing: 0em;
	text-align: left;
	position: sticky;
	top: 50px;
	z-index: 3;
}

.tasks-outer-container[target="projectview"] .project-task__body-header {
	top: 0;
}

.w__menu-toggler {
	z-index: 6;
	cursor: pointer;
}

.w__menu {
	display: none;
	z-index: 5;
	padding-top: 60px;
	width: 210px;
	position: absolute;
	right: 0;
	top: 0;
	background-color: var(--white);
	-webkit-box-shadow: -3px 3px 0px 3px rgba(128, 128, 128, 0.22);
	-moz-box-shadow: -3px 3px 0px 3px rgba(128, 128, 128, 0.22);
	box-shadow: -3px 3px 0px 3px rgba(128, 128, 128, 0.22);
}

.w__messages,
.messages-cnt,
.additional-messages-cnt {
	display: block;
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
	padding: 6px 10px 3px 10px;
	color: var(--white);
	position: absolute;
	right: 0;
	top: 0;
	z-index: 7;
	background-color: var(--darkpink);
	border: none;
}

.w__menu-item {
	display: inline-block;
	width: 100%;
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 12px;
	line-height: 1.2;
	color: var(--darkgrey);
	padding: 12px 18px;
}

.w__menu-item:hover {
	color: var(--darkgrey);
}
/* widget content end
-------------------------------------------------- */
/* widget project content start
-------------------------------------------------- */
.w-project-container {
	display: none;
	width: 45%;
}

.project-item {
	margin-bottom: 30px;
	text-decoration: none !important;
}

.w-project,
.project-item {
	position: relative;
	text-decoration: none;
	background: url("/images/no_image_1200.png") center center no-repeat;
	background-size: cover;
}

.project-item,
.widget-project .w-project,
.widget-project .dots-button-control {
	width: 260px;
}

.w-project,
.project-item,
.dots-button-control {
	height: 360px;
}

.w-project__progress {
	height: 105px;
	width: 105px;
	font-size: 55px;
}

.widget-project .w__content,
.widget-projecttask .w__content {
	height: 360px;
}

.dots-button-control {
	display: none;
	justify-content: center;
	align-items: center;
	justify-content: center;
	background-color: var(--white);
	flex-shrink: 0;
	transform-origin: left top;
	position: relative;
	z-index: 1;
	cursor: pointer;
	overflow: hidden;
}

[target="project"] .dots-button-control {
	display: none;
}

.widget-project .dots-button-control {
	position: absolute;
	left: 0;
	top: 60px;
}

.dots-button-control-footer {
	position: absolute;
	bottom: 20px;
	display: flex;
	align-items: center;
}

.dots-button-control-footer img {
	width: 40px;
}

.dots-button-control-footer span {
	font-size: 12px;
}

.dots-button-control-clip {
	width: 15px;
	height: 15px;
	position: absolute;
	z-index: 3;
}

.top-left-clip {
	top: 0;
	left: 0;
	border-top: 1px solid var(--darkgrey);
	border-left: 1px solid var(--darkgrey);
}

.top-right-clip {
	top: 0;
	right: 0;
	border-top: 1px solid var(--darkgrey);
	border-right: 1px solid var(--darkgrey);
}

.bottom-left-clip {
	bottom: 0;
	left: 0;
	border-bottom: 1px solid var(--darkgrey);
	border-left: 1px solid var(--darkgrey);
}

.bottom-right-clip {
	bottom: 0;
	right: 0;
	border-bottom: 1px solid var(--darkgrey);
	border-right: 1px solid var(--darkgrey);
}

.dots-button-control-title-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
}

.dots-button-control-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--white);
	z-index: 2;
	color: var(--darkgrey);
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 200;
	text-align: center;
	padding: 8px 0;
	font-size: 14px;
	width: 115px;
}

.dots-button-control .dots-wrapper {
	transform: translateZ(0);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.dots-button-control .dot {
	position: relative;
	z-index: 1;
	width: 2px;
	height: 2px;
	margin: 9px;
	background-color: var(--darkgrey);
	border-radius: 50%;
}

@media (min-width: 900px) {
	.dots-button-control .dot {
		background-color: transparent;
		background-image: linear-gradient(
			180deg,
			var(--darkgrey) 8%,
			var(--darkgrey) 100%
		);
	}
}

.w-project {
	margin-right: 3px;
	margin-bottom: 3px;
}

/*.w-project:nth-child(3n) {
		margin-right: 0px;
	}*/

.w-project:hover {
	text-decoration: none;
}

.w-project:hover,
.w-project:focus,
.w-project:active {
	text-decoration: none;
}

.w-project:last-child {
	margin-right: 0px;
}

.w-project__title,
.project-item__name,
.projects__info-title,
.project__info-title {
	font-family: "Oswald", sans-serif, Arial;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
	padding: 13px 15px 11px 15px;
	text-transform: uppercase;
	color: var(--black);
	background-color: rgba(255, 255, 255, 0.65);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.project-item__task-name {
	background-color: rgba(0, 0, 0, 0);
	color: white;
	//stylename: h2;
	font-family: Montserrat;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	text-align: left;
	flex: 1;
	/*text-transform: uppercase;*/
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}

/*    .project-item__task-name:focus {
        box-shadow: none;
    }*/

.project-task__task-header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: var(--black-olive);
	width: 100%;
	position: relative;
	height: 50px;
	padding: 0px 20px 0px 20px;
}

.project-item__code {
	position: relative;
	z-index: 2;
	cursor: pointer;
}

.haeder-banner-text .project-item__code {
	background-color: var(--darkgrey) !important;
	color: var(--white);
}

.project-item__code,
.projects__info-code,
.project__info-code {
	display: inline-block;
	font-family: "Oswald", sans-serif, Arial;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	color: var(--black);
	padding: 6px 10px 7px 10px;
	background-color: var(--darkyellow);
	white-space: nowrap;
	max-width: 100%;
}

.w-project__code {
	display: inline-block;
	font-family: "Oswald", sans-serif, Arial;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	color: var(--black);
	padding: 6px 5px 6px 5px;
	background-color: var(--darkyellow);
	white-space: nowrap;
	max-width: 100%;
	text-align: center;
}

.w-project__progress,
.project-item__progress {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Oswald", sans-serif, Arial;
	font-weight: bold;
	position: absolute;
	right: 0;
	bottom: 0;
	color: var(--darkgrey);
	background: var(--gainsboro);
}

.project-item__progress {
	height: 60px;
	width: 60px;
	font-size: 35px;
	position: relative;
}

.project--bottom {
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.project-item__totalprice {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: var(--darkgrey);
	color: var(--darkyellow);
	font-family: "Oswald", sans-serif, Arial;
	font-weight: bold;
	font-size: 24px;
	padding-top: 18px;
	padding-bottom: 18px;
	line-height: 1;
	flex: 1;
	padding-left: 15px;
	overflow: hidden;
}

.project-item__totalprice > span:first-child {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 120px;
}

.project-item__csymbol {
	line-height: 1;
	align-self: flex-start;
	font-size: 14px;
	padding-top: 3px;
	display: inline-block;
	padding-left: 1px;
}

.project-item__status {
	width: 55%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	background-color: var(--darkgreen);
	font-family: "MontserratRetular", sans-serif, Arial;
	font-size: 13px;
	letter-spacing: 2px;
	min-height: 30px;
	text-transform: uppercase;
}

.project-item__cdate {
	width: 45%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	background-color: var(--grey);
	font-family: "MontserratRetular", sans-serif, Arial;
	font-size: 14px;
	text-transform: uppercase;
}

.widget-project {
	width: 1067px;
	position: relative;
}

.widget-finances {
	order: 1;
}

.widget-calendar {
	order: 2;
}

.widget-licenses {
	margin-right: 0px;
	padding-right: 30px;
	order: 3;
}

.widget-rating {
	order: 4;
}

.widget-currencyRate {
	order: 5;
}

@media all and (min-width: 2079px) {
	.widget-rating {
		order: 2;
	}

	.widget-calendar {
		order: 3;
	}

	.widget-currencyRate {
		order: 4;
	}

	.widget-licenses {
		order: 5;
	}
}

@media all and (min-width: 2289px) {
	.widget-calendar {
		order: 2;
	}

	.widget-rating {
		order: 3;
	}

	.widget-currencyRate {
		order: 4;
	}
}

/* widget project content end
-------------------------------------------------- */
/* widget task content start
-------------------------------------------------- */

.w-task {
	width: 100%;
	position: relative;
}

.w-task__headers {
	display: flex;
	align-items: center;
	background-color: var(--white);
}

.w__body-header.w-task__headers {
	height: 30px;
}

.w-task__headers-item {
	display: flex;
	flex-shrink: 0;
	justify-content: flex-start;
	color: var(--darkgrey);
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	padding: 10px 0 6px 0px;
}

.project-task-task__headers {
	height: 40px;
}

.project-task__headers-item {
	display: flex;
	flex-shrink: 0;
	justify-content: flex-start;
	color: var(--darkgrey);
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 600;
	line-height: 15px;
	letter-spacing: 0em;
	text-align: left;
	padding: 10px 0 6px 0;
}

.w-task__headers-progress,
.w-task__item-progress {
	width: 17%;
}

.w-task__headers-progress {
	padding-left: 18px;
}

.w-task__headers-status,
.w-task__item-status {
	width: 16%;
	padding-left: 14px;
}

.w-task__headers-priority,
.w-task__item-priority {
	width: 18%;
}

.w-task__headers-name,
.w-task__item-name {
	width: 49%;
}

.w-task__headers-name {
	padding-left: 10px;
	min-width: 280px;
}

.project_taks-basic-bts {
	min-width: 120px;
}

.w-task__content {
	background-color: #fff;
	overflow: auto;
}

.w-task__item {
	min-height: 60px;
	display: flex;
	color: var(--grey);
	width: 100%;
	text-decoration: none;
}

.w-task__item:hover {
	text-decoration: none;
	color: var(--grey);
}

.w-task__content::-webkit-scrollbar {
	background-color: #d4d4d4;
	width: 15px;
}

.w-task__content::-webkit-scrollbar-track {
	background-color: #d4d4d4;
}

.w-task__content::-webkit-scrollbar-thumb {
	background-color: #bfbfbf;
}

.w-task__content::-webkit-scrollbar-button {
	display: none;
}

.w-task__item-progress,
.w-task__item-status,
.w-task__item-priority {
	display: flex;
	align-items: center;
}

.w-task__item-status,
.w-task__item-priority,
.w-task__item-name {
	font-size: 14px;
	line-height: 1.2;
	padding-top: 10px;
	padding-bottom: 10px;
	color: inherit;
}

.w-task__item-progress {
	justify-content: center;
	font-family: "Oswald", sans-serif, Arial;
	font-weight: 500;
	font-size: 35px;
	color: inherit;
	/*color: var(--darkgrey);*/
}

.w-task__item-status {
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 300;
}

.w-task__item-priority {
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 300;
	text-transform: uppercase;
	padding-left: 6px;
}

.mnst--bold {
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: bold;
}

.w-task__item-name {
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 300;
	padding-left: 10px;
	padding-right: 20px;
	flex: 1;
	display: flex;
	align-items: center;
}

.text--success {
	color: var(--darkgreen);
}

.text--error {
	color: var(--darkpink);
}

.text--unknown {
	color: var(--litegrey);
}

.selected-dark-text {
	color: var(--black) !important;
}

.w-task__item.text--unknown .w-task__item-progress,
.w-task__item.text--error .w-task__item-progress {
	color: inherit;
}

/* widget task content end
-------------------------------------------------- */

/* haeder banner text content start
-------------------------------------------------- */

.haeder-banner-text {
	height: 60px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.haeder-banner-text-link-container {
	flex-shrink: 0;
	background-color: inherit;
	display: flex;
	height: 100%;
}

.haeder-banner-text-link {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: auto;
	padding-left: 30px;
	height: inherit !important;
	cursor: pointer;
	color: inherit;
	background-color: #ece8d9;
	font-size: 22px;
	margin-right: 140px;
	font-family: "Montserrat", sans-serif, Arial;
	position: relative;
	z-index: 1;
}

.haeder-banner-text-link:after {
	content: "";
	display: block;
	height: inherit;
	width: 220px;
	background-color: inherit;
	clip-path: polygon(
		75% 100%,
		0 100%,
		0% 0%,
		76% 0%,
		66% 50%,
		76% 100%,
		76% 105%,
		82% 105%,
		82% 100%,
		73% 50%,
		82% 0%,
		88% 0%,
		79% 50%,
		88% 100%,
		82% 100%,
		82% 105%,
		76% 105%,
		76% 100%,
		94% 105%,
		94% 100%,
		85% 50%,
		94% 0%,
		100% 0%,
		91% 50%,
		100% 100%
	);
	position: absolute;
	right: -110px;
	z-index: -1;
	height: 100%;
}

.header-banner-info {
	font-size: 22px;
	font-family: "Montserrat", sans-serif, Arial;
	color: var(--darkgrey);
	overflow: hidden !important;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: flex;
	margin-left: 15px;
	cursor: copy;
}

.haeder-banner-text-link-container:hover .haeder-banner-text-link {
	color: inherit !important;
	background-color: #e0dfdc;
}

.haeder-banner-text-link-container:hover .haeder-banner-text-link:after {
	animation: 1s linear 0s infinite alternate move_arrow;
}

@keyframes move_arrow {
	from {
		right: -110px;
	}

	to {
		right: -100px;
	}
}

.haeder-banner-text h2 {
	font-size: 22px;
}

.content-container {
	padding-top: 30px;
}

/* haeder banner text content end
-------------------------------------------------- */

/* header menu content start
-------------------------------------------------- */

.header-menu {
	flex-basis: 185px;
	list-style: none;
	margin: 0px;
	padding: 0px;
	line-height: 1;
	position: relative;
}

/*.header-menu:hover .header-menu__submenu, .header-menu.active .header-menu__submenu {*/
.header-menu.active .header-menu__submenu {
	height: auto;
	transition: all 0.3s;
	padding-top: 35px;
	padding-bottom: 20px;
}

.header-menu > li {
	display: flex;
}

.header-menu__submenu {
	display: block;
	overflow: hidden;
	height: 0px;
	position: absolute;
	top: 99%;
	left: 0px;
	width: 100%;
	background-color: var(--darkyellow);
	padding-left: 28px;
	padding-right: 28px;
	list-style: none;
	z-index: 7;
	transition: all 0.3s;
}

.header-menu__submenu-item a {
	color: var(--black);
	font-size: 13px;
	font-family: "Oswald", sans-serif, Arial;
	font-weight: 500;
	line-height: 1.2;
	display: inline-block;
	width: 100%;
	padding-bottom: 10px;
	text-transform: uppercase;
}

.header-menu__item:last-child {
	padding-bottom: 0px;
}

/* header menu content end
-------------------------------------------------- */

/* minions list content start
-------------------------------------------------- */

.minions-list {
	display: block;
	padding-left: 15px;
	margin: 0px;
	list-style: none;
	margin-top: 15px;
}

.minions-list__item {
	padding-bottom: 10px;
}

.minions-list__item:last-child {
	padding-bottom: 0px;
}

/* minions list content end 
-------------------------------------------------- */

/* w crates content start 
-------------------------------------------------- */

.w-crates-container {
	width: 240px;
	display: none;
}

.w-crates__item {
	min-height: 60px;
	display: flex;
	background-color: var(--white);
	justify-content: flex-end;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 100%;
}

.w-crates__item-currency {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 15px;
	width: 30%;
	margin-right: auto;
	font-size: 16px;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 500;
	color: var(--litegrey);
	text-transform: uppercase;
	padding-right: 10px;
}

.w-crates__item-buy,
.w-crates__item-sell {
	display: flex;
	padding-left: 0px;
	width: 28%;
	font-size: 16px;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 500;
	color: var(--grey);
}

.w-crates__item-buy {
	align-items: flex-start;
	justify-content: flex-end;
	padding-right: 7px;
	position: relative;
}

.w-crates__item-buy:after {
	display: block;
	content: "";
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 50px;
	height: 1px;
	background-color: var(--gainsboro);
	transform: translate(26px, -22px) rotate(139deg);
}

.w-crates__item-sell {
	align-items: flex-end;
	justify-content: flex-start;
	padding-left: 7px;
}

/* w crates content end 
-------------------------------------------------- */

/* w ratings content start 
-------------------------------------------------- */

.w-rating-container {
	width: 220px;
}

.w-rating {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.w-rating__content {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--darkyellow);
	color: var(--grey);
	font-size: 150px;
	line-height: 1;
	padding-bottom: 40px;
	font-family: "Oswald", sans-serif, Arial;
	font-weight: bold;
	overflow-x: hidden;
}

.w-rating__footer {
	display: flex;
	align-items: center;
	padding-left: 30px;
	background-color: var(--darkgrey);
	color: var(--darkyellow);
	min-height: 60px;
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 20px;
	letter-spacing: 1px;
	padding-top: 15px;
	padding-bottom: 15px;
}
/* w ratings content start 
-------------------------------------------------- */

/* status menu content start 
-------------------------------------------------- */

.user__status-toggler {
	width: 100%;
	border: none;
	font-family: "Monsterrat", sans-serif, Arial;
	font-size: 14px;
	font-weight: bold;
	display: block;
	text-align: right;
	padding: 5px 20px;
	position: absolute;
	bottom: 0px;
	line-height: 1;
	background-color: inherit;
}

.user__status-toggler:focus {
	outline: none;
}

.stlist {
	display: none;
	list-style: none;
	position: absolute;
	padding: 0px;
	margin: 0px;
	left: 0px;
	top: 100%;
	width: 100%;
}

.stlist:before {
	display: flex;
	align-items: center;
	padding-left: 30px;
	content: "Set current status";
	position: absolute;
	top: -24px;
	width: 100%;
	background-color: var(--white);
	color: var(--gainsboro);
	font-size: 13px;
	line-height: 1;
	min-height: 24px;
}

.stlist__item {
	display: flex;
	flex-direction: column;
	padding: 15px 75px 15px 30px;
	background-color: var(--sahara);
	color: black;
	position: relative;
	cursor: pointer;
	animation-duration: 500ms;
	animation-timing-function: ease-in-out;
}

.stlist__item:nth-child(odd) {
	animation-name: topRightOdd;
}

.stlist__item:nth-child(even) {
	animation-name: topLeftEven;
	/*animation-delay: 200ms;*/
}

@keyframes topLeftEven {
	0% {
		opacity: 0;
		left: 40px;
	}

	100% {
		opacity: 1;
		left: 0px;
	}
}

@keyframes topRightOdd {
	0% {
		opacity: 0;
		right: 40px;
	}

	100% {
		opacity: 1;
		right: 0px;
	}
}

.stlist__item-name {
	line-height: 1.2;
	font-size: 16px;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: bold;
	color: inherit;
	padding-bottom: 1px;
}

.stlist__item-note {
	line-height: 1.2;
	font-size: 13px;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 300;
	color: var(--grey);
}

.current--status:after {
	content: "check";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Icons";
	font-weight: normal;
	font-style: normal;
	font-size: 40px;
	line-height: 1;
	text-shadow: 1px 1px white;
	letter-spacing: inherit;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: "liga";
	-webkit-font-smoothing: antialiased;
}

/* status menu content end 
-------------------------------------------------- */
.absolute--bottom {
	bottom: 0px;
}

/* project page 
-------------------------------------------------- */

.project-page-content,
.operation-page-content {
	display: flex;
	width: 100%;
}

.operation-page-content {
	flex-wrap: wrap;
}

.project__side {
	display: flex;
	flex-wrap: wrap;
	width: 350px;
	align-content: flex-start;
}

.project-page-content .project__content {
	width: calc(100% - 350px);
}

.project__info {
	margin-bottom: 30px;
}

.project__info-image {
	display: flex;
	height: 300px;
	position: relative;
	text-decoration: none;
	background: url("/images/no_image_1200.png") center center no-repeat;
	background-size: cover;
	cursor: zoom-in;
}

.project__info-image.active .project__info-image-input {
	display: inline-block;
}

.input-image-text {
	width: 90%;
	display: none;
	margin: 0px auto;
	border: 1px solid var(--darkyellow);
	box-shadow: unset !important;
}

.project__info-image-input {
	align-self: center;
	width: 90%;
	display: none;
	margin: 0px auto;
	border: none;
}

.project__info-note {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0px;
	background-color: rgba(255, 255, 255, 0.8);
}

.project__info-note textarea {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 57px;
	background-color: transparent;
	padding: 30px 30px 30px 20px;
	resize: none;
	line-height: 1.2;
	font-size: 13px;
	font-family: "Monsterrat", sans-serif, Arial;
	width: 100%;
	border: none;
}

.project__info-note textarea::-webkit-scrollbar {
	background-color: #d4d4d4;
	width: 15px;
}

.project__info-note textarea::-webkit-scrollbar-track {
	background-color: #d4d4d4;
}

.project__info-note textarea::-webkit-scrollbar-thumb {
	background-color: #bfbfbf;
}

.project__info-note textarea::-webkit-scrollbar-button {
	display: none;
}

.project__info-code {
	cursor: copy;
	position: absolute;
	left: 0;
	top: 0;
}

.project__info-title {
	flex: 1;
}

.project__info-more {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 57px;
	background: rgba(53, 53, 53, 0.6) url("/images/note-button.png") center center
		no-repeat;
	align-self: stretch;
	color: var(--white) !important;
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 14px;
	border: none;
	cursor: pointer;
}

.project__info-more:focus {
	outline: none;
}

.project__info-more.active {
	z-index: 1;
	background-color: rgba(135, 135, 135, 0.6);
	background-image: url("/images/note-button-off.png");
}

.project__info-progress {
	padding: 12px 15px 12px 20px;
	font-size: 35px;
}

.project__info-progress .percentage {
	align-self: start;
	padding-left: 1px;
	font-size: 33px;
	font-family: "Oswald", sans-serif, Arial;
	font-weight: 500;
}

.project__info-row {
	background-color: white;
	min-height: 60px;
	padding-left: 20px;
	padding-right: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.project__info-dates {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-family: "Montserrat", sans-serif, Arial;
}

.project__info-dates .label {
	min-width: 67px;
	display: inline-block;
	font-size: 14px;
	font-family: "Montserrat", sans-serif, Arial;
}

.project__info-budget .price-container {
	position: relative;
	padding-right: 18px;
}

.operation-page-content .project__info-budget .price-container {
	max-width: 150px;
}

#operation-tags .operation-tag {
	margin-right: 10px;
}

.operation-tag {
	display: inline-block;
	padding: 6px 8px;
	font-family: "Montserrat";
	font-size: 12px;
	/* margin-right: 10px; */
	margin-bottom: 10px;
	background-color: var(--sahara);
	color: var(--darkgrey);
}

.operation__list-item:hover .operation-tag {
	background: var(--gainsboro);
	/*color:var(--white);*/
}

.operation__list-item-static-content.active {
	z-index: 3 !important;
}

#operations-tab-content [name="codeFilter"]::placeholder,
#operations-tab-content [name="pcfilter"]::placeholder,
#operations-tab-content [name="comfilter"]::placeholder {
	font-weight: 400;
}

/*#operations-tab-content [name="dateFrom"]::-webkit-datetime-edit-day-field,
#operations-tab-content [name="dateFrom"]::-webkit-datetime-edit-month-field,
#operations-tab-content [name="dateFrom"]::-webkit-datetime-edit-year-field,
#operations-tab-content [name="dateTo"]::-webkit-datetime-edit-day-field,
#operations-tab-content [name="dateTo"]::-webkit-datetime-edit-month-field,
#operations-tab-content [name="dateTo"]::-webkit-datetime-edit-year-field {
	color: var(--litegrey);
	font-weight:400!important;
}*/
.project__info-budget .label,
.project__info-result .label {
	max-width: 63px;
	font-size: 14px;
	display: inline-block;
	line-height: 1.3;
	font-family: "Montserrat", sans-serif, Arial;
	margin-right: 15px;
	min-width: 68px;
}

.project__info-budget .price,
.project__info-result .price {
	font-size: 35px;
	font-family: Oswald, sans-serif, Arial;
	line-height: 1;
}

.operation-page-content .project__info-budget .price,
.operation-page-content .project__info-result .price {
	font-size: 28px;
}

.project__info-budget .price {
	max-width: 170px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.project__info-result {
	display: flex;
	width: 100%;
}

.project__info-result > div {
	flex: 1;
	align-items: center;
	align-self: stretch;
	padding: 10px 15px 10px 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.currency-symbol {
	line-height: 1;
	align-self: flex-start;
	font-size: 18px;
	font-weight: bold;
	/*padding-top: 3px;*/
	display: inline-block;
	padding-left: 1px;
}

.button-default {
	border: none;
	padding: 5px 8px;
	color: var(--white) !important;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: bold;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: var(--grey);
	line-height: 1;
	text-decoration: none !important;
	transition: all 0.3s;
}

.project-page-content .w-task .w-task__content {
	padding-bottom: 6px;
}

.project-page-content .w-task__content {
	overflow-y: scroll;
}

.project-page-content .w-task__headers {
	background-color: var(--white);
	border-bottom: 1px solid var(--gainsboro);
}

.project-page-content .w-task__headers-item {
	padding: 10px 0 10px 0px;
}

.project-page-content .w-task__headers-name {
	flex: 1;
	padding-left: 20px;
}

.project-page-content .w-task__headers-status {
	width: 25%;
	justify-content: flex-end;
}

.project-page-content .w-task__headers-priority {
	width: 60px;
	justify-content: center;
}

.project-page-content .w-task__headers-cprice {
	width: 60px;
	justify-content: center;
}

.project-page-content .w-task__headers-budget {
	width: 60px;
	justify-content: center;
}

.project-page-content .w-task__headers-uprice {
	width: 140px;
	justify-content: center;
}

.project-page-content .w-task__headers-due {
	width: 80px;
	justify-content: center;
}

.project-page-content .w-task__headers-assignee {
	flex: 1;
	padding-left: 10px;
}

.w-task__headers-assignee {
	justify-content: center;
}

.project-page-content .w-task__headers-time {
	width: 60px;
	justify-content: center;
}

.project-page-content .w-transactions-container {
	width: calc(100% - 300px);
}

.w-transactions {
	min-height: 300px;
	background-color: var(--white);
}

.w-employees-container.admin {
	width: 70%;
}

.w-employees-container.hod {
	width: 270px;
	padding-left: 30px;
}

.task-transaction-container {
	display: flex;
	align-items: flex-start;
	align-self: flex-start;
	flex-wrap: wrap;
	flex: 1;
}

.w-uploads,
w-uploads-local,
.w-employees {
	background-color: var(--white);
}

.w-uploads__content_folder {
	background-color: var(--sahara);
	padding: 4px 4px 4px 22px;
	color: var(--grey);
	text-transform: uppercase;
}

.project-statuses-container {
	display: flex;
	font-size: 14px;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: bold;
	overflow-x: auto;
}

.project-statuses-container {
	width: 100%;
}

.project-statuses-container::-webkit-scrollbar {
	background-color: #d4d4d4;
	width: 15px;
}

.project-statuses-container::-webkit-scrollbar-track {
	background-color: #d4d4d4;
}

.project-statuses-container::-webkit-scrollbar-thumb {
	background-color: var(--litegrey);
}

.project-statuses-container::-webkit-scrollbar-button {
	display: none;
}

.project-note-error {
	position: absolute;
	top: calc(100% - 53px);
	padding-left: 14px;
	padding-right: 57px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.project-status {
	display: inline-block;
	cursor: pointer;
	margin-right: 10px;
	position: relative;
	clip-path: polygon(86% 0, 100% 50%, 86% 100%, 0 100%, 14% 53%, 0 0);
	text-overflow: ellipsis;
	overflow-x: hidden;
	white-space: nowrap;
	background-color: var(--litegrey);
	color: var(--darkgrey);
	flex-shrink: 0;
}

/*.project-status-color:first-child {
	background-color: var(--darkgreen) !important;
	color: var(--white) !important;
}*/

.project-status-color.current {
	background-color: var(--darkgreen) !important;
	color: var(--white) !important;
}

.project-status.current:after {
	content: "now";
	display: block;
	color: inherit;
	text-transform: uppercase;
	position: absolute;
	bottom: 5px;
	right: 25px;
	font-size: 10px;
	padding: 3px;
	border: 1px solid;
	line-height: 1;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: bold;
}

.project-status .text {
	flex: 1;
}

.project-status .set-button {
	text-decoration: none;
	color: var(--grey);
	background-color: var(--white);
	text-transform: uppercase;
}

.project-status,
.project-statuses-container .deadline {
	width: 97px;
	height: 45px;
	padding-left: 24px;
	text-transform: uppercase;
	line-height: 1;
	padding-right: 20px;
	padding-top: 6px;
	padding-bottom: 6px;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: bold;
}

.project-statuses-container .statuses {
	width: calc(100% - 125px);
	overflow-x: auto;
	min-height: 60px;
}

.project-statuses-container .statuses::-webkit-scrollbar {
	height: 4px;
}

.project-statuses-container .statuses::-webkit-scrollbar-thumb {
	background-color: var(--grey);
}

.project-statuses-container .deadline {
	line-height: 1.2;
	margin-left: auto;
}

.project-status:first-child {
	clip-path: polygon(86% 0, 100% 50%, 86% 100%, 0 100%, 0 50%, 0 0);
	padding-left: 12px;
}

.project-statuses-container .deadline {
	min-width: 125px;
	background-color: var(--darkpink);
	color: var(--white);
	font-size: inherit;
	font-family: inherit;
	clip-path: polygon(100% 0%, 100% 100%, 0 100%, 14% 50%, 0 0);
}

.project-statuses-container .deadline .value {
	line-height: 1.4;
}

.project-statuses-container .deadline .text {
	line-height: 1;
}

/*user messages api page styles start*/
#message-services-container {
	row-gap: 5px;
}

.message-services-container__item {
	position: relative;
	height: 40px;
	padding: 5px 10px 5px 40px;
	border-bottom: 1px solid #cacfd4;
	transition: background-color 250ms linear;
	cursor: pointer;
}

.message-services-container__item .handle,
.message-services-container__item-delete {
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}

.message-services-container__item:hover {
	background-color: var(--sahara);
}

.message-services-container__item.active {
	background-color: var(--sahara);
}

.message-services-container__item-delete {
	display: none !important;
	right: 10px;
	left: unset;
	font-size: 14px !important;
}

.message-services-container__item:hover
	.message-services-container__item-delete {
	display: block !important;
}
/*user messages api page styles end*/
@media all and (min-width: 1366px) {
	.project-status,
	.project-statuses-container .deadline {
		width: 110px;
	}

	.project-statuses-container .statuses {
		width: calc(100% - 125px);
	}

	.project-statuses-container {
		font-size: 16px;
	}

	.project-status.current:after {
		bottom: 5px;
		right: 30px;
	}
}

@media all and (min-width: 1599px) {
	.dots-button-control-offset .w-project:first-child {
		margin-left: 263px !important;
	}
}

@media all and (min-width: 1600px) {
	.project-status,
	.project-statuses-container .deadline {
		width: 140px;
		height: 55px;
		padding-left: 34px;
		padding-top: 9px;
		padding-bottom: 9px;
	}

	.project-statuses-container .statuses {
		width: calc(100% - 145px);
		overflow-x: auto;
		min-height: 70px;
	}

	.project-statuses-container {
		font-size: 16px;
	}

	.project-status.current:after {
		bottom: 5px;
		right: 30px;
	}
}

@media all and (min-width: 1200px) {
	[target="project"] .dots-button-control {
		display: flex !important;
	}

	.dots-button-control-offset .w-project:first-child {
		margin-left: 223px;
	}
}

@media all and (min-width: 1200px) {
	.dots-button-control {
		display: flex !important;
	}

	.dots-button-control-offset .w-project:first-child {
		margin-left: 223px;
	}
}

@media all and (min-width: 1800px) {
	.project-status,
	.project-statuses-container .deadline {
		width: 170px;
		height: 55px;
		padding-left: 42px;
		padding-top: 12px;
		padding-bottom: 12px;
		font-size: 16px;
	}

	.project-statuses-container .statuses {
		width: calc(100% - 170px);
	}

	.project-status.current:after {
		bottom: 6px;
		right: 42px;
		font-size: 12px;
	}
}

/* task node tree
-------------------------------------------------- */
.task-content,
.item-content,
.agent-child-content {
	display: flex;
	position: relative;
	overflow-x: hidden;
	min-height: 34px;
	color: var(--darkgrey);
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 14px;
	width: 100%;
}

.task-content.active .task-content__icon-body,
.item-content.active .item-content__icon-body,
.agent-child-content.active .agent-child-content__icon-body {
	background-color: var(--white);
}

.task-content:hover,
.item-content:hover,
.agent-child-content:hover {
	cursor: pointer;
	color: var(--black);
}

.task-content.extended:hover,
.item-content.extended:hover,
.agent-child-content.extended:hover {
	background-color: var(--sahara) !important;
}

.task-content.extended:hover .project_task_add_btn,
.task-content.extended.context-menu-active .project_task_add_btn {
	display: block !important;
}

.task-content.extended.context-menu-active .project_task_add_btn .project-task__time-log_add_btn:not([data-context-menu-left-click]) {
    display: none !important;
}

.task-content.extended:hover .project-task_btn_order {
	display: block !important;
}

.task-content.extended:hover .project-task_btn_delete-task {
	display: block !important;
}

.task-node--border,
.item-node--border,
.agent-child-node--border {
	position: absolute;
	border-left: 1px dotted var(--grey);
	top: 1px;
	/*bottom: 16px;*/
	bottom: 21px;
	z-index: 2;
}

.task-content__name,
.item-content__name {
	flex: 1;
	padding-left: 0px;
	display: flex;
	align-items: center;
	overflow: hidden;
	/*max-width: 270px;*/
}

.task-content__name .text,
.item-content__name {
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.task-content__status {
	width: 25%;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: right;
	display: flex;
	align-items: center;
	background-image: linear-gradient(
		to right,
		var(--darkyellow) 0%,
		var(--gainsboro) 0%
	);
}

.task-content__status-text {
	width: 50%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	overflow-x: hidden;
	color: var(--black);
}

.task-content__priority {
	width: 60px;
	text-align: left;
	display: flex;
	align-items: center;
	padding-left: 10px;
	overflow-x: hidden;
}

.task-content__budget,
.task-content__cprice,
.task-content__uprice {
	width: 60px;
	text-align: left;
	display: flex;
	padding-left: 10px;
	align-items: center;
	overflow: hidden;
	padding-right: 10px;
}

.task-content__uprice {
	width: 140px;
}

.task-content__due {
	text-align: left;
	display: flex;
	align-items: center;
	padding-left: 5px;
	padding-right: 5px;
	width: 80px;
}

.task-content__time {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 5px;
	padding-right: 5px;
	width: 60px;
}

.task-content__assignee {
	flex: 1;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.task-content__assignee {
	padding-left: 10px;
	padding-right: 10px;
}

.task-content__progress {
	display: flex;
	align-items: center;
	width: 50%;
	padding-right: 5px;
	padding-left: 10px;
	font-size: 16px;
	font-family: "Oswald", sans-serif, Arial;
	font-weight: bold;
	color: var(--darkgrey) !important;
}

.task-content__progress .value {
	/*padding-right: 3px;*/
}

.task-content__progress .percent {
	font-size: 12px;
	padding-top: 1px;
	align-self: flex-start;
}

.task-content__icon,
.item-content__icon,
.agent-child-content__icon {
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

/*.task-node .task-content__icon:before {
			content: "";
			display: block;
			position: absolute;
			border-left: 1px dotted var(--grey);
			top: 1px;
			bottom: 0px;
			left: 0px;
		}*/

/*.task-node.task-project*/
.task-content.active .task-content__icon::after,
.agent-child-content.active .agent-child-content__icon::after,
.item-content.active .item-content__icon::after {
	content: "";
	display: block;
	position: absolute;
	border-left: 1px dotted var(--grey);
	left: 25px;
	bottom: 0px;
	height: 9px;
}
/*.dots-button-control-offset .w-project:first-child {
	margin-left: 263px;
}*/
.task-content.selected,
.agent-child-content.selected,
.item-content.selected {
	background-color: var(--sahara);
}

.task-content.extended.selected {
	background-color: var(--sahara) !important;
}
/*.task-node .task-content:last-child .task-content__icon:before {
	content: "";
	display: block;
	position: absolute;
	border-left: 1px solid var(--white);
	z-index: 3;
	left: 0px;
	top: 50%;
	bottom: 0;
}*/
.task-content__icon-body,
.agent-child-content__icon-body,
.item-content__icon-body {
	display: block;
	height: 10px;
	width: 10px;
	border: 1px solid var(--grey);
	background-color: var(--grey);
	position: relative;
	transform-style: preserve-3d;
}

.task-content__icon-body.hidden,
.agent-child-content__icon-body.hidden,
.item-content__icon-body.hidden {
	background-color: transparent;
	border: 1px solid transparent;
}

.task-content__icon-body.hidden > div,
.agent-child-content__icon-body.hidden > div,
.item-content__icon-body.hidden > div {
	display: none;
}

.task-content__icon-body .border-top-left,
.agent-child-content__icon-body .border-top-left,
.item-content__icon-body .border-top-left {
	position: absolute;
	left: -4px;
	top: -4px;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--grey);
	border-left: 1px solid var(--grey);
}

.task-content__icon-body .border-bottom-left,
.agent-child-content__icon-body .border-bottom-left,
.item-content__icon-body .border-bottom-left {
	position: absolute;
	left: -4px;
	bottom: -4px;
	width: 5px;
	height: 5px;
	border-bottom: 1px solid var(--grey);
	border-left: 1px solid var(--grey);
}

.task-content__icon-body .border-top-right,
.agent-child-content__icon-body .border-top-right,
.item-content__icon-body .border-top-right {
	position: absolute;
	right: -4px;
	top: -4px;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--grey);
	border-right: 1px solid var(--grey);
}

.task-content__icon-body .border-bottom-right,
.agent-child-content__icon-body .border-bottom-right,
.item-content__icon-body .border-bottom-right {
	position: absolute;
	right: -4px;
	bottom: -4px;
	width: 5px;
	height: 5px;
	border-bottom: 1px solid var(--grey);
	border-right: 1px solid var(--grey);
}

.task-content__icon-body:before,
.agent-child-content__icon-body:before,
.item-content__icon-body:before {
	content: "";
	display: block;
	position: absolute;
	border-top: 1px dotted var(--grey);
	top: 50%;
	transform: translateY(-50%) translateZ(-1px);
	left: -21px;
	width: 43px;
	visibility: visible;
}

.task-node,
.agent-child-node,
.item-node {
	display: none;
	position: relative;
	width: 100%;
}

.task-content--fixed {
	width: 650px;
	flex-shrink: 0;
	/*justify-content: flex-end;*/
}

@media all and (max-width: 1739px) {
	.tasklist-lg-show {
		display: none !important;
	}
}

@media all and (min-width: 1600px) {
	.task-content--fixed {
		width: 630px;
	}

	.dots-button-control-offset .w-project:first-child {
		margin-left: 263px;
	}
}

@media all and (min-width: 1740px) {
	.task-content--fixed {
		width: 695px;
	}

	.tasklist-lg-hide {
		display: none !important;
	}

	.tasklist-toggled-column[data-column-toggled] {
		/*display: inline-block !important;*/
	}
}

@media all and (min-width: 1800px) {
	.task-content--fixed {
		width: 800px;
	}
}

@media all and (min-width: 1900px) {
	.task-content--fixed {
		width: 850px;
		/*width:calc(100% - 380px);*/
	}
}

@media all and (min-width: 2200px) {
	.task-content--fixed {
		width: 1085px;
	}
}

/* task node tree
-------------------------------------------------- */

.date--deadline,
.date--create {
	width: 135px;
	background-color: transparent;
	border: none;
	padding: 0px;
	font-size: 14px;
	font-family: "Montserrat", sans-serif, Arial;
	color: #212529;
	font-weight: bold;
	line-height: 21px;
	height: 21px;
}

.date--deadline:focus,
.date--create:focus {
	outline: none;
	box-shadow: 0 0 0 0.07rem var(--darkyellow);
}

/* assign agency popup start
-------------------------------------------------- */

.modal-body {
	padding-left: 0px;
	padding-right: 0px;
	/*overflow-x: hidden;*/
}

.modal-dialog {
	webkit-box-shadow: -3px 3px 0px 3px rgba(55, 55, 55, 0.22);
	-moz-box-shadow: -3px 3px 0px 3px rgba(55, 55, 55, 0.22);
	box-shadow: 0px 0px 1px 3px rgba(0, 0, 0, 0.22);
}

.modal-header {
	border-bottom: 0px;
}

.modal-title {
	text-transform: uppercase;
	font-family: "Monsterrat", sans-serif, Arial;
	font-weight: bold;
	font-size: 22px;
	line-height: 1;
}

/*.modal-body{
	padding-top: 0px;
}*/

.modal--close {
	position: absolute;
	right: 12px;
	top: 10px;
	font-size: 34px;
	line-height: 1;
	text-shadow: none;
	opacity: 1;
}

.modal--close:hover {
	cursor: pointer;
}

.modal--close .close-icon {
	font-size: 30px;
}

.modal-backdrop.show {
	opacity: 0.2;
}

.assign-aggency-info {
	display: flex;
	align-items: center;
	padding: 6px 10px 6px 15px;
	color: var(--grey);
	line-height: 1.25;
	min-height: 52px;
}

.assign-aggency-info:hover {
	background-color: var(--darkyellow);
	color: var(--black);
}

.assign-aggency-image {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.assign-aggency-name {
	width: calc(100% - 50px);
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--darkgrey);
}

.agent-control-list {
	min-height: 240px;
	max-height: 75vh;
	align-items: flex-start;
	align-content: baseline;
	flex-wrap: wrap;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 15px;
	margin-right: 15px;
	padding-right: 15px;
	overflow-y: scroll;
	display: flex;
}

.agent-image {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px !important;
	color: transparent;
	/*	background: url(/images/default-user-image.jpg) center center no-repeat;*/
	background-size: cover;
}

.agent-control-name-icon.agent-image {
	width: 20px;
	height: 20px;
}

.template-container::-webkit-scrollbar {
	background-color: #d4d4d4;
	width: 15px;
}

#timelogs .template-container::-webkit-scrollbar,
.tasks-outer-container .w__body::-webkit-scrollbar,
.projecttask-view .files-container::-webkit-scrollbar {
	background-color: #d4d4d4;
	width: 9px;
}

.template-container::-webkit-scrollbar-track {
	background-color: #d4d4d4;
}

.template-container::-webkit-scrollbar-thumb {
	background-color: #bfbfbf;
}

.template-container::-webkit-scrollbar-button {
	display: none;
}

/* assign agency popup end
-------------------------------------------------- */

.code-select {
	padding: 0px;
	outline: none;
	border: none;
	font-size: 18px;
	padding-left: 1px;
	min-width: 20px;
	line-height: 1;
	font-weight: bold;
	color: #212529 !important;
	margin-top: -15px;
	-webkit-appearance: none;
	position: absolute;
	top: 16px;
	right: -7px;
	background: transparent !important;
}

/*.code-select {
	outline: none;
	align-self: flex-start;
	display: flex;
	border: none;
	padding: 0px;
	padding-left: 5px;
	font-size: 18px;
	line-height: 1;
	font-weight: bold;
	color: #212529 !important;
	-webkit-appearance: none;
	background: transparent !important;
}*/

.code-select.open {
	background-color: var(--white) !important;
}

.code-select:after {
	display: none !important;
}

.code-select .option {
	padding-right: 0px;
	padding-left: 0px;
	text-align: center;
}

.tab-container {
	display: flex;
	overflow: hidden;
}

.tab-item {
	display: flex;
	font-size: 14px;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 500;
	flex: 1;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 20px 10px 20px 10px;
	background-color: var(--gainsboro);
	border-left: 1px solid var(--litegrey);
	border-bottom: 1px solid var(--litegrey);
}

.tab-item--tall {
	min-height: 90px;
}

.tab-item:hover {
	color: inherit;
}

.tab-item :hover,
.tab-item :focus,
.tab-item :active {
	color: var(--darkgrey);
}

.tab-item:first-child {
	border-left: none;
}

.tab-item.active {
	background-color: var(--white);
	border-bottom: 0px;
}

.tab-item-image {
	width: 27px;
	height: 27px;
	margin-right: 10px;
	background: transparent center center no-repeat;
}

.tab-item-name {
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 14px;
	display: inline-block;
	max-width: 80px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-transform: uppercase;
	color: var(--darkgrey);
}

/* employees widget
-------------------------------------------------- */

.employees__item {
	display: flex;
	min-height: 30px;
	padding-top: 5px;
	padding-bottom: 5px;
	width: 100%;
}

.employees__item-icon,
.w-task__employees-icon {
	width: 33px;
}

.widget-icon {
	width: 33px;
}

.employees__item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.employees__item-name,
/*.employees__item-position,*/
.employees__item-total,
.employees__item-price,
.employees__item-countdone,
.employees__item-totaldone,
.w-task__employees-name,
/*.w-task__employees-position,*/
.w-task__employees-total,
.w-task__employees-price,
.w-task__employees-countdone,
.w-task__employees-totaldone,
.w-task__employees-department {
	color: var(--darkgrey);
	font-size: 14px;
	font-family: "Montserrat", sans-serif, Arial;
	padding-right: 10px;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: flex;
	align-items: center;
}

.employees__item-name,
.w-task__employees-name,
.w-task__employees-department {
	flex-basis: 200px;
}

.w-task__employees-department {
	cursor: pointer;
}

/*.employees__item-position, .w-task__employees-position {
	flex-basis: 20%;
}*/

.employees__item-total,
.w-task__employees-total {
	flex-basis: 80px;
}

.employees__item-price,
.w-task__employees-price {
}

/*.employees__item-totaldone, .w-task__employees-totaldone {
	flex-basis: 10%;
}*/

.w-employees__content {
	height: 300px;
	overflow: auto;
}

.w-employees__content::-webkit-scrollbar {
	background-color: #d4d4d4;
	width: 15px;
}

.w-employees__content::-webkit-scrollbar-track {
	background-color: #d4d4d4;
}

.w-employees__content::-webkit-scrollbar-thumb {
	background-color: #bfbfbf;
}

.w-employees__content::-webkit-scrollbar-button {
	display: none;
}

/* header messages list start
-------------------------------------------------- */

.additional-messages-list {
	display: flex;
	justify-content: flex-start;
	padding: 0;
	margin: 0;
	list-style: none;
}

.additional-messages-button {
	width: 90px;
	position: relative;
	border: none;
	background-color: transparent;
	height: 100%;
	padding-bottom: 0px;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.additional-messages-item.active {
	background-color: var(--white);
}

.additional-messages-item.active .additional-messages-cnt {
	display: none !important;
}

.additional-messages-item.active:before {
	display: none !important;
}

.additional-messages-button:focus {
	outline: none;
}

.additional-messages-item:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 14px;
	bottom: 27px;
	width: 1px;
	background-color: var(--grey);
}

.additional-messages-item:first-child:before {
	display: none;
}

.additional-messages-cnt {
	position: static;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.additional-messages-icon-container {
	height: calc(100% - 30px);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* header messages list end
-------------------------------------------------- */

/* project task page start
-------------------------------------------------- */

.task-buttons {
	margin-bottom: 30px;
	display: flex;
	justify-content: flex-start;
}

.task-buttons .oddin-button,
.operations-button {
	height: 50px;
}

.oddin-button {
	margin-left: 30px;
	max-width: 160px;
	width: 100%;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.2;
	color: var(--black);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--darkyellow);
	padding: 9px 4px;
	white-space: normal;
	text-transform: uppercase;
	border: none;
	letter-spacing: 0.6px;
	text-align: center;
}

.oddin-button:focus {
	outline: none;
}

.oddin-button.danger {
	background-color: var(--darkpink);
}

.oddin-button.success {
	background-color: var(--darkgreen);
}

.oddin-button:hover {
	background-color: var(--darkgrey);
	color: var(--darkyellow);
	text-decoration: none;
}

.oddin-button:first-child {
	margin-left: 0px !important;
}

.oddin-button.oddin-button--dark {
	background-color: var(--darkgrey);
	color: var(--darkyellow);
}

.oddin-button:hover.oddin-button--dark {
	background-color: var(--darkyellow);
	color: var(--darkgrey);
}

.oddin-button--small {
	max-width: 45px;
	height: 24px;
	padding-top: 1px;
	padding-bottom: 0;
}

.task-container {
	width: 100%;
}

.task-container__row {
	background-color: var(--white);
}

.projecttask-view-prices__header {
	display: flex;
	align-items: center;
	line-height: 1;
	height: 50px;
	padding: 0px 20px;
	background-color: var(--darkgrey) !important;
	color: var(--white);
	font-weight: 700;
	text-transform: uppercase;
	font-family: Montserrat;
	font-size: 20px;
}
.projecttask-view-prices__header .js-projecttask-view-prices-toggle .material-icons {
	transition: transform 0.2s ease;
}
.projecttask-view-prices__header .js-projecttask-view-prices-toggle.active .material-icons {
	transform: rotate(90deg);
}

.projecttask-view-prices-calculator {
	display: none;
	font-size: 12px;
	font-family: "Montserrat", sans-serif, Arial;
}

.projecttask-view-prices-calculator[is-show] {
	display: block;
}

.projecttask-view-prices-calculator__row--header,
.projecttask-view-prices-calculator__list-children .projecttask-view-prices-calculator__row,
.projecttask-view-prices-calculator__row-parent {
	display: flex;
	align-items: center;
	height: 30px;
	width: 100%;
}

.projecttask-view-prices-calculator__row--header,
.projecttask-view-prices-calculator__list-children .projecttask-view-prices-calculator__row,
.projecttask-view-prices-calculator__row-parent {
	/*padding: 0 15px;*/
}

.projecttask-view-prices-calculator__row--header {
	font-weight: bold;
	background: #eee;
}

.projecttask-view-prices-calculator__row-parent {
	font-weight: bold;
	position: relative;
}

.projecttask-view-prices-calculator__row:nth-child(2) .projecttask-view-prices-calculator__row-parent {
	background: rgba(246, 209, 204, 1);
}

.projecttask-view-prices-calculator__row:nth-child(3) .projecttask-view-prices-calculator__row-parent {
	background: rgba(255, 242, 202, 1);
}

.projecttask-view-prices-calculator__row:nth-child(4) .projecttask-view-prices-calculator__row-parent {
	background: rgba(200, 218, 247, 1)
}

.projecttask-view-prices-calculator__row:nth-child(5) .projecttask-view-prices-calculator__row-parent {
	background: rgba(215, 231, 209, 1)
}

.projecttask-view-prices-calculator__row:nth-child(6) .projecttask-view-prices-calculator__row-parent {
	background: rgba(255, 241, 203, 1);
}

.projecttask-view-prices-calculator__row:nth-child(7) .projecttask-view-prices-calculator__row-parent {
	background: rgba(243, 243, 243, 1);
}

.projecttask-view-prices-calculator__row:nth-child(8) .projecttask-view-prices-calculator__row-parent {
	background: rgba(201, 244, 243, 1);
}

.projecttask-view-prices-calculator__list-children .projecttask-view-prices-calculator__col:nth-child(1) {
	position: relative;
	padding-left: 45px;
	height: 100%;
	display: flex;
	align-items: center;
}

.projecttask-view-prices-calculator__row--header .projecttask-view-prices-calculator__accordion-button {
	opacity: 0;
	pointer-events: none;
}

.projecttask-view-prices-calculator__accordion-button {
	background: none;
	outline: none;
	border: none;
	width: 30px;
	height: 30px;
	margin-right: 5px;
}

	.projecttask-view-prices-calculator__accordion-button:focus {
		outline: none;
	}

.projecttask-view-prices-calculator__accordion-button.open {
	transform: rotate(90deg);
}

.projecttask-view-prices-calculator__list-children .projecttask-view-prices-calculator__col:nth-child(1)::before,
.projecttask-view-prices-calculator__list-children .projecttask-view-prices-calculator__col:nth-child(1)::after {
	content: "";
	position: absolute;
	left: 25px;
}

.projecttask-view-prices-calculator__list-children .projecttask-view-prices-calculator__col:nth-child(1)::before {
	top: 10%;
	width: 1px;
	height: 80%;
	border: 1px dashed var(--calcBorderColor);
}

.projecttask-view-prices-calculator__list-children .projecttask-view-prices-calculator__col:nth-child(1)::after {
	top: 50%;
	width: 12px;
	height: 1px;
	border: 1px dashed var(--calcBorderColor);
	transform: translateY(-50%);
}

.projecttask-view-prices-calculator__col {
	padding: 0 5px;
}

.projecttask-view-prices-calculator__col:nth-child(1) {
	width: 40%;
}

.projecttask-view-prices-calculator__col:nth-child(2),
.projecttask-view-prices-calculator__col:nth-child(3),
.projecttask-view-prices-calculator__col:nth-child(4) {
	width: 20%;
	text-align: right;
}

.projecttask-view-prices-calculator__list-children .projecttask-view-prices-calculator__row + .projecttask-view-prices-calculator__row {
	border-top: 1px solid rgba(184, 188, 197, 1);
}

.task-container__row > div {
	border-color: #0000004d;
	border-style: solid;
	border-width: 0 1px 1px 0;
}

.task-container__row > div:last-child {
	border-right: none;
}

.select-type--text {
	-webkit-appearance: none;
	-webkit-appearance: none;
	outline: none;
	border: none;
	padding: 4px 28px 4px 6px;
	display: flex;
	align-items: center;
	font-family: "Monsterrat", sans-serif, Arial;
	font-weight: 500;
	color: var(--grey);
	background-color: transparent;
	height: 21px;
	line-height: 1;
	border-radius: unset;
	border-bottom: 1px solid var(--gainsboro);
}

.select-type--text.nice-select:active,
.select-type--text.nice-select.open,
.select-type--text.nice-select:focus {
	background-color: transparent;
	outline: none;
	border-radius: unset;
	box-shadow: 0 0 0 0.07rem var(--darkyellow);
	border-bottom: 1px solid transparent;
}

.select-type--text.nice-select.open,
.select-type--text.nice-select:focus {
	color: var(--darkgrey);
	z-index: 4;
}

/*	.select-type--text.nice-select.open:after {
	
	}*/

.select-type--text.nice-select:after {
	right: 10px;
	left: unset;
}

.select-type--text.nice-select .option {
	padding-left: 2px;
	padding-right: 2px;
}

.task-container__row .label {
	display: flex;
	align-items: center;
	color: var(--litegrey);
}

.task-container__row .agent-control-title {
	color: var(--litegrey);
}

.task-container__row .agent-control-name {
	color: var(--grey);
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 500;
}

.task-container__row .value {
	font-size: 14px;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 500;
	color: var(--grey);
}

.task-container__row .date--deadline,
.task-container__row .date--create {
	width: 111px;
	font-family: Arial;
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: 0.02em;
	text-align: left;
	color: black;
}

.task-container__row .project-task_value_text {
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 700;
	line-height: 17px;
	letter-spacing: 0em;
	text-align: left;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 700;
	line-height: 17px;
	letter-spacing: 0em;
	text-align: left;
}

/*.task-container__row .project-task_value_text::-webkit-outer-spin-button,
.task-container__row .project-task_value_text::-webkit-inner-spin-button {
	-webkit-appearance: none;
}*/

.task-container__row .fs-14 {
	font-size: 14px;
}

.task-container__row .currency-code {
	font-size: 14px;
	font-family: "Monsterrat", sans-serif, Arial;
	display: flex;
	align-items: center;
	color: var(--grey);
	line-height: 21px;
}

@media all and (min-width: 1600px) {
	.task-container__row .date--deadline,
	.task-container__row .date--create {
		width: auto;
	}
}

.task-container__row .date--deadline:focus {
	color: var(--darkgrey);
}

.button-default:hover {
	background-color: var(--darkyellow);
	color: var(--black) !important;
}

.button-default:focus {
	outline: none;
}

.button-default.button--darkyellow {
	background-color: var(--darkyellow);
}

.button-default.button--darkyellow:hover {
	background-color: var(--grey);
	color: var(--white) !important;
}

.input-type--text {
	background: transparent;
	border: none;
	height: 17px;
	line-height: 21px;
	padding: 4px 6px;
	display: flex;
	align-items: center;
}

.input-type--text:disabled {
	color: rgb(84, 84, 84);
	cursor: default;
	/*background-color: rgb(235, 235, 228);*/
	background-color: rgb(235 235 228 / 36%);
}

.input-type--text:focus {
	border-radius: unset;
	box-shadow: 0 0 0 0.07rem var(--darkyellow);
	color: var(--darkgrey);
	outline: unset;
}

div.input-type--text {
	outline: none;
	max-width: calc(100% - 8px);
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.projecttask__textarea-container {
	padding-bottom: 15px;
}

.projecttask__textarea {
	resize: none;
	height: 180px;
	resize: none;
	height: 180px;
	background-color: transparent;
	width: 100%;
	overflow-y: scroll;
	padding-right: 5px;
	border: none;
	position: relative;
	color: var(--darkgrey);
}

.projecttask__textarea-wrapper {
	padding: 15px;
	padding-right: 0;
	border: 1px solid var(--gainsboro);
}

.projecttask__textarea:focus {
	outline: none;
	box-shadow: none;
}

.projecttask__textarea::selection {
	background-color: var(--sahara);
}

.projecttask__textarea-label {
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
	align-items: center;
	font-size: 14px;
	color: var(--litegrey);
}

.projecttask__textarea::-webkit-scrollbar {
	width: 9px;
	background: transparent;
}

.projecttask__textarea::-webkit-scrollbar-track {
	background-color: #d4d4d4;
}

.projecttask__textarea::-webkit-scrollbar-thumb {
	width: 9px;
	background-color: #bfbfbf;
}

.projecttask__textarea::-webkit-scrollbar-button {
	display: none;
}

/*.projecttask-view {
	background-color: var(--white);
}*/

.line-height--initial {
	line-height: 1;
}

.progress-control {
	min-height: 30px;
	position: relative;
	background-color: var(--gainsboro);
	display: flex;
}

.progress-control:hover .progress-control__handle {
	border-color: transparent transparent #000 transparent;
}

.projecttask-view__progress {
	min-height: 70px;
	border-bottom: 10px solid #ffffff;
}

.progress-control__handle {
	display: block;
	position: absolute;
	left: 0;
	transform: translateX(-50%);
	cursor: ew-resize;
	width: 0;
	height: 0;
	top: 100%;
	cursor: pointer;
	border-style: solid;
	border-width: 0 5px 10px 5px;
	z-index: 2;
	border-color: transparent transparent transparent transparent;
}

.progress-control__info {
	display: flex;
	width: 100%;
	justify-content: flex-start;
	align-items: center;
	padding-left: 20px;
	padding-right: 15px;
}

.progress-control__percent {
	margin-left: auto;
	font-family: "Oswald", sans-serif, Arial;
	font-weight: 600;
	line-height: 1;
	user-select: none;
}

.projecttask-view__progress-percent {
	font-size: 38px;
	color: var(--darkgrey);
}

.progress-control__text {
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 14px;
	font-weight: bold;
	color: var(--black);
	user-select: none;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-height: 35px;
	width: 100%;
}

.projecttask-view__progress-text {
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: bold;
	font-size: 18px;
	color: var(--black);
	border: 1px solid transparent;
	border-bottom: 1px solid var(--darkgrey);
	z-index: 1;
}

.input-field-control.projecttask-view__progress-text.active {
	z-index: 3;
}

.projecttask-view__progress-template {
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: bold;
	font-size: 18px;
	color: var(--black);
	border: 1px solid transparent;
	border-bottom: 1px solid var(--darkgrey);
	min-width: 24%;
	max-width: 24%;
	height: auto !important;
}

.projecttask-view__progress-text:focus {
	/*box-shadow: none;*/
	outline: none;
}

.projecttask-view__progress-text:focus {
	outline: none;
	/*border: 1px solid var(--grey);*/
}

.w-tabs {
	min-height: 80px;
}

.estimatetype--select {
	max-width: 50px;
	width: 100%;
	text-transform: unset;
}

/* project task page end
-------------------------------------------------- */

/* agent page start
-------------------------------------------------- */

.agent__view,
.agent__headers {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	background-color: var(--white);
	padding-left: 15px;
	padding-right: 15px;
	height: 30px;
}

.agent__view {
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 12px;
	color: var(--darkgrey);
	cursor: pointer;
	border-left: 4px solid transparent;
}

.agent__view:hover {
	background-color: var(--sahara) !important;
}

.agent__headers {
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 500;
	font-size: 14px;
	color: var(--grey);
	border-bottom: 1px solid var(--gainsboro);
	border-left: 4px solid transparent;
	padding-right: 30px !important;
}

.agent__view.selected {
	background-color: var(--sahara) !important;
}

.agent__view-name,
.agent__view-class,
.agent__view-position,
.agent__view-phone0,
.agent__view-email0,
.agent__headers-item {
	display: flex;
	align-items: center;
	overflow-x: hidden;
	padding-right: 10px;
}

.agent__view-name,
.agent__headers-name {
	width: 35%;
	margin-right: auto;
}

.agent__view-class,
.agent__headers-class {
	min-width: 100px;
	width: 15%;
}

.agent__view-class .image-container,
.agent__view-position .image-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	align-self: stretch;
	margin-right: 3px;
	background: transparent center center no-repeat;
}

.agent__view-class .value,
.agent__view-position .value {
	flex: 1;
}

.agent__view-position,
.agent__headers-position {
	min-width: 120px;
	width: 15%;
}

.agent__view-phone0,
.agent__headers-phone0 {
	min-width: 110px;
	width: 15%;
}

.agent__view-email0,
.agent__headers-email0 {
	min-width: 120px;
	width: 20%;
	padding-right: 0px;
}

.agent__info {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 500;
	font-size: 14px;
	color: var(--grey);
}

.agent__info-fullname {
	width: 100%;
	display: flex;
	align-items: center;
	min-height: 60px;
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: bold;
	font-size: 22px;
	color: var(--black);
	overflow-x: hidden;
	padding-left: 15px;
}

.agent__info-fullname .value {
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: bold;
	font-size: 22px;
	padding-left: 5px;
	color: var(--black);
}

.agent__info-fullname .input-type--text {
	height: 23px;
}
/*.agent__info--company .agent__info-image {
	min-width: 240px;
}*/
.agent__info-image {
	display: flex;
	align-items: center;
	min-width: 180px;
	background: var(--litegrey) center center no-repeat;
	/*background-size: contain;*/
	background-size: cover;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.agent__info--company .agent__info-detail {
	width: calc(100% - 240px);
}

.agent__info-detail {
	width: calc(100% - 180px);
}

.agent__info-detail {
}

.agent__info-detail {
	/*width: 50%;*/
}

.odn-row .image-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	align-self: stretch;
	margin-right: 7px;
	background: transparent center center no-repeat;
}

.agent__info-note {
	/*width: 50%;*/
	display: flex;
	padding: 15px;
	background-color: var(--white);
}

.agent__info-note textarea {
	color: var(--litegrey);
	width: 100%;
	resize: none;
	border: none;
	overflow-y: scroll;
	padding-right: 5px;
}

.agent__info-note textarea:focus {
	box-shadow: none;
}

.agent__info-note textarea::-webkit-scrollbar {
	width: 9px;
}

.agent__info-note textarea::-webkit-scrollbar-thumb {
	width: 9px;
}

.agent__info-contacts {
	margin-bottom: 30px;
	margin-top: 30px;
}

#agents-outer-container {
	height: calc(100vh - 180px);
	overflow-y: unset !important;
}

.agent-list-container {
	overflow-y: scroll;
	height: calc(100vh - 365px);
	background-color: var(--white);
}

.agent__info-list {
	width: 100%;
}

.agent__info-list-item {
	cursor: pointer;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	overflow-x: hidden;
}

.agent__info-list-item .value {
	flex: 1;
}

.agent__info-list-item:hover {
	background-color: var(--sahara) !important;
}

.agent__info-title {
	color: var(--darkgrey);
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 7px;
	min-height: 60px;
	display: flex;
	align-items: center;
}

.agent-container {
	max-height: calc(100vh - 260px);
}

.agent-container[target="agentpage"] {
	overflow-y: auto;
}

.info-list-container {
	padding-left: 0px;
	padding-right: 30px;
}

.agent-list-container + .pagination {
	margin-bottom: 0px;
}

.agent__info-image.active .input-image-text {
	display: inline-block;
}

.oddin-button {
	margin-left: auto;
}

.agent__info-title .agent-control-title {
	font-family: "Montserrat", sans-serif, Arial;
	font-weight: 500;
	font-size: 14px;
	color: var(--darkgrey);
}

.agent__info-list-item.oddin-button {
	max-width: 10000000px;
	background-color: var(--darkyellow);
	justify-content: center;
	min-height: 50px;
}

.agent__info-list-item.oddin-button:hover {
	background-color: var(--darkgrey) !important;
}

.agent-childrens-container .agent-control-clear,
.agent__info-title [name="curator-set"] .agent-control-clear {
	display: none;
}
/* agent page end
-------------------------------------------------- */

.tender-row:last-child {
	border-bottom: 0px !important;
}

.tender-row:first-child {
	padding-top: 0px !important;
	margin-top: 0px !important;
}

.tender-delete {
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 10;
	font-size: 20px !important;
	font-family: "Montserrat", sans-serif, Arial;
	color: var(--darkpink);
	cursor: pointer;
}

.tender-delete:hover {
	color: #ec9090;
}

.bd-bottom-litegrey {
	border-bottom: 1px solid var(--litegrey);
}

.bd-bottom-gainsboro {
	border-bottom: 1px solid var(--gainsboro);
}

.bd-bottom-gainsboro-2 {
	border-bottom: 2px solid var(--gainsboro);
}

.bd-top-gainsboro {
	border-top: 1px solid var(--gainsboro);
}

.bd-bottom-grey {
	border-bottom: 1px solid var(--grey);
}

.bd-litegrey {
	border: 1px solid var(--litegrey);
}

.bd-gainsboro {
	border: 1px solid var(--gainsboro);
}

.bd-darkgrey {
	border: 1px solid var(--darkgrey);
}

.outline-gainsboro {
	outline: 1px solid var(--gainsboro);
}

.finances-project-item {
	width: 252px;
	height: 350px;
	min-height: 50px;
	background: var(--litegrey) center center no-repeat;
}

.finances-project-bottom-item {
	padding-top: 4px;
	padding-bottom: 4px;
	min-height: 50px;
	padding-left: 10px !important;
	padding-right: 10px !important;
}

.finances-project-bottom-item .label {
	font-size: 12px;
}

.finances-project-bottom-item .value {
	font-size: 20px;
}

@media all and (min-width: 1600px) {
	.finances-project-item {
		width: 280px;
		height: 370px;
	}

	.finances-project-bottom-item--lg {
		flex: 0 0 33.333333% !important;
		max-width: 33.333333% !important;
	}

	.finances-project-bottom-item {
		min-height: 60px;
	}

	.finances-project-bottom-item .label {
		margin-bottom: 5px;
	}
}

.finsumm-item {
	padding: 20px;
	height: 100px;
}

.finsumm-item .value {
	font-size: 32px;
}

.operation__list-item {
	background-color: white;
	color: var(--darkgrey);
	transition: color 0.3s;
}

.operation__list-item:hover {
	background-color: var(--sahara) !important;
}

.operation__list-item [totaltype="Total"] {
	justify-content: space-between;
}

.operation__list-item [totaltype="Total"] [name="total"] {
	padding-right: 8px;
}

.operation__list-item [totaltype="DebtTotal"] {
	justify-content: space-between;
	flex-direction: row-reverse;
	text-align: right;
}

.operation__list-item [totaltype="DebtTotal"] [name="total"] {
	padding-left: 8px;
}

.operation-filter-item .current {
	color: var(--litegrey);
}

.operation__list-item .fomo-calc-icon {
	transform: scale(0);
	transition: transform 0.3s;
}

.operation__list-item:hover .fomo-calc-icon {
	transform: scale(1);
}

@media (min-width: 992px) {
	.modal-lg {
		max-width: 960px;
	}
}

.message-tost-popup {
	font-family: "Monsterrat", sans-serif, Arial;
	font-size: 14px;
	max-width: 600px;
}

.operation-page-content .project-statuses-container {
	overflow: auto;
}

.operation-page-content .project-statuses-container::-webkit-scrollbar {
	height: 4px;
}

.page-mh {
	min-height: calc(100vh - 180px);
}

/*#finances-container {
}*/

.operations-button {
	margin-left: 30px;
}

.administration-user-row {
	border-bottom: 1px solid transparent;
}

.administration-user-row:hover {
	border-bottom: 1px solid var(--gainsboro);
}

.agents-content-container {
	min-height: 30vh;
}

.agent-tag,
.worktype {
	display: inline-block;
	padding: 8px 15px;
	font-family: "Montserrat";
	font-size: 14px;
	margin-right: 10px;
	margin-bottom: 10px;
	background-color: var(--sahara);
	color: var(--darkgrey);
}

.tags {
	/*margin-bottom: 30px;*/
	padding-top: 16px;
	padding-bottom: 6px;
}

.tag-clear,
.worktype-clear {
	position: absolute;
	right: 2px;
	cursor: pointer;
	top: 2px;
	font-size: 9px !important;
}

.tag-clear:hover,
.worktype-clear:hover {
	color: rgba(64, 64, 64, 0.6) !important;
}

/*work types start*/
.worktype-item {
	width: 223px;
}
.worktype-item[disabled] {
	color: #afafaf;
	pointer-events: none;
	cursor: default;
}

.worktype-item.selected {
	background-color: var(--sahara) !important;
}
/*work types end*/
.pd-y-15 {
	padding-top: 15px;
	padding-bottom: 15px;
}

.pd-top-15 {
	padding-top: 15px;
}

.pd-bottom-15 {
	padding-bottom: 15px;
}

.pd-right-15 {
	padding-right: 15px;
}

.collapse-button {
	background: url(/images/expand-arrow.png) 98% center no-repeat;
	background-size: 20px 20px;
	border: 1px solid var(--gainsboro);
	background-color: #ececec;
}

.collapse-button:hover {
	background-color: #e4e2e2 !important;
}

.collapse-button.active {
	background-image: url(/images/collapse-arrow.png);
}

/*#new-messages-container{
	position: fixed;
	bottom: 0px;
	right: 20px;
	z-index: 9;
}*/

.message-new {
	width: 350px;
	display: block;
	background-color: var(--sahara);
	color: var(--darkgrey);
	position: fixed;
	bottom: -200px;
	/*bottom: 0px;*/
	right: 20px;
	z-index: 9;
	margin-bottom: 20px;
	border-radius: 9px;
}

.message-new__title {
	font-size: 16px;
	font-family: "Monsterrat", sans-serif, Arial;
	font-weight: 500;
	height: 60px;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
}

.message-new__body {
	padding: 10px;
	height: 120px;
	overflow-y: auto;
	color: var(--darkgrey);
	font-family: "Monsterrat", sans-serif, Arial;
	font-size: 14px;
}

.message-new__body::-webkit-scrollbar {
	width: 6px;
}

.secure-digits {
	position: relative;
}

.secure-digits.mask-on {
	visibility: hidden;
	display: flex;
	/*width: 100%;*/
}

.secure-digits.mask-on:after {
	content: "##";
	display: inline-block;
	visibility: visible;
	position: absolute;
	left: 0;
	padding: inherit;
	background-color: inherit;
	right: 0;
	top: 0;
	bottom: 0;
	color: inherit;
	font-family: inherit;
}

.project-row .secure-digits.mask-on:after {
	text-align: right;
}

[data-column-toggled="false"] {
}

[data-column-toggled="true"] {
	display: none !important;
}

.project-client-contacts > div:last-child {
	margin-bottom: 10px;
}

.oddin-calendar {
	position: relative;
	overflow-y: hidden;
}

.oddin-calendar .template-container {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0;
	right: 0;
}

.oddin-calendar__header {
	position: relative;
	z-index: 2;
}

.oddin-calendar__week {
	z-index: 1;
	display: flex;
	justify-content: flex-start;
	/*border-bottom: 1px solid #565656*/
}

/*.oddin-calendar__week:last-child{
		border-bottom: none;
	}*/

.oddin-calendar-cell {
	height: 60px;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Montserrat", sans-serif, Arial;
}

.oddin-calendar__week-number {
	font-size: 28px;
	color: var(--grey);
	background-color: var(--black);
	font-weight: 200;
	border-bottom: 1px solid #565656;
}

.oddin-calendar__weekdays {
	background-color: var(--darkgrey);
	color: var(--grey);
	border-bottom: 1px solid #565656;
	border-right: 1px solid #565656;
}

.oddin-calendar__weekdays,
.oddin-calendar__weekends {
	font-size: 18px;
	font-weight: 500;
	position: relative;
}

.oddin-calendar__weekdays:last-child,
.oddin-calendar__weekends:last-child {
	border-right: none;
}

.oddin-calendar__weekends {
	background-color: var(--grey);
	color: var(--litegrey);
	border-bottom: 1px solid #717070;
	border-right: 1px solid #717070;
}

.oddin-calendar__weekdays.current-day,
.oddin-calendar__weekends.current-day {
	border: 5px solid var(--white);
	color: var(--white);
	font-weight: 800;
}

.oddin-calendar__weekdays.current-month-belog,
.oddin-calendar__weekends.current-month-belog {
	color: var(--white);
	font-weight: 800;
}

.oddin-calendar__weekdays.deadline-critical,
.oddin-calendar__weekends.deadline-critical {
	background-color: var(--darkpink);
	color: var(--white);
	font-weight: 800;
	cursor: pointer;
}

.oddin-calendar__weekdays.deadline,
.oddin-calendar__weekends.deadline {
	cursor: pointer;
}

.oddin-calendar__weekdays.deadline:before,
.oddin-calendar__weekends.deadline:before {
	content: "";
	position: absolute;
	bottom: 9px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--white);
}

.oddin-calendar__weekdays.current-day.deadline:before,
.oddin-calendar__weekends.current-day.deadline:before {
	bottom: 5px;
}

#calendar-events-container {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: var(--darkgrey);
	color: var(--darkgrey);
	font-size: 14px;
	padding: 20px;
	overflow-y: auto;
	z-index: 3;
}

.operation-inner-items {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	width: 100%;
}

.rolegroup-column__header::first-letter {
	text-transform: capitalize;
}

.project__info-content .price {
	min-width: 19px;
	width: 100%;
}

.fixed-center {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.services-page-mw {
	max-width: 450px;
}

#setting-page-container {
	height: calc(100vh - 180px);
	position: relative;
}

.pos-absolute-cover {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.line-clamp-2 {
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-6 {
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/*timeline start*/
.oddin-timeline__week {
	z-index: 1;
	display: flex;
	width: 100%;
	justify-content: flex-start;
	margin-bottom: 20px;
	padding-left: 15px;
	/*border-bottom: 1px solid #565656*/
}

.oddin-timeline__week:first-child {
	margin-top: 20px;
}

.oddin-timeline__cell {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 115px;
	height: 11px;
	margin-left: 20px;
	font-size: 9px;
	background-color: var(--gainsboro);
	margin-bottom: 10px;
	cursor: pointer;
	border: 1px solid transparent;
}

.oddin-timeline__cell--empty {
	background-color: #f9f9f9 !important;
	cursor: default;
}

.oddin-timeline__cell--small {
	width: 35px !important;
}

#oddin-timeline-row-numbers {
	display: flex;
	flex-direction: column;
}

.oddin-timeline__cell.current-day {
	outline: 2px solid var(--litegrey);
}

.oddin-timeline__row-number {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 11px;
	line-height: 1;
	margin-bottom: 10px;
	font-size: 11px;
}

.oddin-timeline__legend {
	position: relative;
	display: flex;
	/*width: 150px;*/
	flex-grow: 0;
	height: 60px;
	margin-left: 30px;
	border-bottom: 2px solid var(--litegrey);
	cursor: pointer;
	background-color: #f3f3f3;
}

.oddin-timeline__legend:hover {
	box-shadow: 1px 1px 5px var(--grey);
}

.legend-backlight {
	box-shadow: 3px 3px 7px var(--grey);
}

#license-declarative-container::-webkit-scrollbar,
.license-occupation-container::-webkit-scrollbar {
	height: 4px;
}

.day-backlight {
	box-shadow: 3px 3px 7px var(--grey);
	background-color: var(--darkyellow) !important;
	color: var(--darkgrey) !important;
}

.oddin-timeline__legend-color {
	width: 7px;
}

#oddin-timeline-legend-container {
	padding-left: 60px;
}

.license-row {
	width: 100%;
}

@media all and (min-width: 2200px) {
	.license-row {
		width: 50%;
	}

	.license-row:nth-child(2n + 1) {
		padding-right: 15px;
	}
}

.scrollbar--low::-webkit-scrollbar {
	height: 4px;
}

.scrollbar--hidden::-webkit-scrollbar {
}

.scrollbar--tight::-webkit-scrollbar {
	width: 4px;
}

.scrollbar--hidden::-webkit-scrollbar {
	display: none;
}

.scrollbar--hidden {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.sdictionary__edit .field-container {
	max-width: 330px;
	width: 100%;
	padding-right: 24px;
	position: relative;
}

.sdictionary__edit .field-container .select-control.form-control {
	outline: none;
}

.sdictionary__edit .field-container .form-control:not(.select-control):focus {
	box-shadow: 0 0 0 0.02rem var(--darkyellow);
	border-color: transparent;
}

.sdictionary__edit .field-container .select-control.form-control {
	outline: none;
	font-size: 16px;
	display: flex;
	align-items: center;
}

.sdictionary__edit .field-container .select-control.form-control .current {
	line-height: 20px;
}

.sdictionary__edit .field-container .select-control.form-control:focus {
	box-shadow: unset;
	outline: none;
	border: 1px solid #ced4da;
}

.sdictionary__edit .field-container .select-control.form-control:after {
	height: 8px;
	margin-top: -4px;
	width: 8px;
	left: 12px;
}

.sdictionary__edit .field-container.required:after {
	content: "*";
	position: absolute;
	color: var(--darkpink);
	font-weight: bold;
	right: 10px;
	font-size: 16px;
	height: auto;
	line-height: 1;
	display: flex;
	align-items: center;
	top: 0;
	bottom: 0;
}

.required-alert {
	background-color: var(--darkpink);
	color: var(--white);
}

.strike-row__image,
.additionalwork-row__image {
	width: 100px;
	height: 100px;
	background: url("/images/no_image_1200.png") center center no-repeat;
	background-size: cover;
	flex-shrink: 0;
	/*border-right: 1px solid var(--litegrey);*/
}

.uploader-container .files-container,
.strikes-uploader .files-container {
	min-height: 100px;
	max-height: 200px;
	border: 1px dotted var(--litegrey);
	overflow-y: auto !important;
}

.uploader-container .files-container,
.strikes-uploader .files-container::webkit-scrollbar {
	width: 4px;
}

.strike-tasks-select {
	width: 150px;
}

.scrollbar--medium::-webkit-scrollbar {
	width: 9px;
	height: 9px;
}

/*question widget end*/
.input-field-control {
	top: unset;
	overflow-y: auto;
	/*transition: height 0.3s;*/
	max-height: unset !important;
	max-width: unset !important;
}

.input-field-control:focus {
	box-shadow: var(--darkgrey) 0px 0px 8px 1px;
}

.input-field-control.active {
	padding: 8px !important;
	background-color: var(--white);
	transition: height 0.3s;
	white-space: normal;
	text-overflow: unset;
	overflow: auto;
	z-index: 99;
}

.handle {
	cursor: move;
}
/* Chrome, Safari, Edge, Opera */
.spin-button-off[type="number"]::-webkit-outer-spin-button,
.spin-button-off[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
.spin-button-off[type="number"] {
	-moz-appearance: textfield;
}

.project-attachmnet-link[disabled] {
	cursor: pointer;
}

.sort-button.active {
	font-weight: bold;
}

.transform-rotate-2PI:hover {
	/*	transform: rotate(360deg);
	transition: transform 0.3s;*/
}

.currency-chart-container:nth-child(2n) {
	padding-left: 7.5px;
}

.currency-chart-container:nth-child(2n + 1) {
	padding-right: 7.5px;
}

.question-row-parent[closed],
.question-row-childs[closed] {
	opacity: 0.5;
}

.project-attributes-container label[setted] {
	color: var(--darkgrey) !important;
}

.info-tooltip-wrapper:hover .info-tooltip-text {
	display: block !important;
}

/* Building type dropdown — modern style */
.building-type-dropdown .nice-select {
	background-color: var(--white) !important;
	border: 1px solid var(--gainsboro) !important;
	padding: 8px 36px 8px 12px !important;
	font-size: 13px;
	line-height: 1.4;
	color: var(--darkgrey);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	height: auto;
	min-height: 36px;
	width: fit-content !important;
}

.building-type-dropdown .nice-select:hover {
	border-color: var(--litegrey) !important;
}


.building-type-dropdown .nice-select:after {
	border-color: var(--litegrey);
	right: 14px;
	transition: transform 0.2s ease;
}

.building-type-dropdown .nice-select.open:after {
	transform: rotate(225deg);
	border-color: var(--darkyellow);
}

.building-type-dropdown .nice-select .list {
	border: 1px solid var(--gainsboro);
	border-top: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	max-height: 260px;
	overflow-y: auto;
	margin-top: 0;
	padding: 4px 0;
	background-color: var(--white);
	width: max-content !important;
	min-width: 100%;
	right: auto !important;
}

.building-type-dropdown .nice-select .option {
	padding: 8px 12px;
	font-size: 13px;
	line-height: 1.4;
	min-height: unset;
	color: var(--darkgrey);
	transition: background-color 0.15s ease;
	white-space: nowrap;
}

.building-type-dropdown .nice-select .option:hover,
.building-type-dropdown .nice-select .option.focus {
	background-color: rgba(255, 205, 0, 0.1);
}

.building-type-dropdown .nice-select .option.selected {
	background-color: rgba(255, 205, 0, 0.2);
	font-weight: 600;
}

.building-type-dropdown .nice-select .option.disabled {
	color: var(--litegrey);
}

/* Scope of work — hierarchical checkboxes */
.scope-of-work-container .scope-parent {
	border: 1px solid var(--gainsboro);
	margin-bottom: 8px;
	overflow: hidden;
}

.scope-of-work-container .scope-parent-row {
	display: flex;
	align-items: center;
	padding: 8px 12px;
	background-color: #f7f7f7;
	gap: 8px;
	cursor: pointer;
}

.scope-of-work-container .scope-parent-row span {
	font-weight: 600;
	color: var(--darkgrey);
}

.scope-of-work-container .scope-parent-row .scope-toggle {
	margin-left: auto;
	border: none;
	background: none;
	padding: 0 4px;
	position: relative;
	width: 20px;
	height: 20px;
	cursor: pointer;
	flex-shrink: 0;
}

.scope-of-work-container .scope-parent-row .scope-toggle:after {
	border-bottom: 2px solid var(--grey);
	border-right: 2px solid var(--grey);
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -5px;
	margin-left: -4px;
	transform-origin: 66% 66%;
	transform: rotate(45deg);
	transition: all 0.15s ease-in-out;
}

.scope-of-work-container .scope-parent.open > .scope-parent-row .scope-toggle:after {
	transform: rotate(-135deg);
	margin-top: -2px;
}

.scope-of-work-container .scope-children {
	padding: 4px 0;
	display: none;
}

.scope-of-work-container .scope-parent.open > .scope-children {
	display: block;
}

.scope-of-work-container .scope-child-row {
	display: flex;
	align-items: center;
	padding: 5px 12px 5px 32px;
	gap: 8px;
	transition: background-color 0.15s ease;
}

.scope-of-work-container .scope-child-row:hover {
	background-color: rgba(255, 205, 0, 0.06);
}

.scope-of-work-container .scope-child-row span {
	color: #555;
}

[inconspicuous] {
	opacity: 0.3;
}

.moda-tab-item {
	width: 20%;
}

.finsum-curators-button {
	border-left: 1px solid var(--white);
}

@media all and (max-width: 1799px) {
	.widget-project {
		width: 804px;
	}

	.project-task_details {
		/*padding-left: 6px;*/
	}
}

@media all and (max-width: 1599px) {
	.agent__info-general {
		min-width: 350px;
	}

	.agent__info-note {
		max-width: calc(100% - 350px);
	}

	.widget-project {
		width: 684px;
	}

	.project-item,
	.widget-project .w-project,
	.widget-project .dots-button-control {
		width: 220px;
		height: 300px;
	}

	/*.dots-button-control-offset .w-project:first-child {
		margin-left: 223px;
	}*/

	.w-project__title,
	.project-item__name,
	.projects__info-title,
	.project__info-title {
		font-size: 16px;
	}

	.w-project__code,
	.project-item__code,
	.projects__info-code,
	.project__info-code {
		font-size: 14px;
	}

	.w-project__progress {
		height: 90px;
		width: 90px;
		font-size: 45px;
	}

	.widget-project .w__content,
	.widget-projecttask .w__content {
		height: 300px;
	}

	.dots-button-control-clip {
		width: 20px;
		height: 20px;
		position: absolute;
		z-index: 3;
	}

	.dots-button-control-title {
		width: 140px;
		padding: 12px 0;
		font-size: 16px;
	}

	.dots-button-control-footer img {
		width: 60px;
	}

	.dots-button-control-footer span {
		font-size: 10px;
	}
}

@media all and (max-width: 1199px) {
	.widget-project {
		width: 100%;
	}

	.widget-projecttask .w__content {
		height: 300px;
	}

	.homepage-admin-container,
	.homepage-marketing-container,
	.homepage-hr-container {
		flex-direction: column;
	}

	.homepage-marketing-container .index-container {
		margin-top: 15px;
		padding-left: 0;
	}

	.homepage-admin-container .index-container {
		/*flex-direction:column;*/
		padding-top: 30px !important;
		padding-left: 0;
		height: auto !important;
	}

	.homepage-admin-container .widget-finances {
		width: 100% !important;
	}
	/*	.homepage-admin-container .w__body{
		display:flex!important;
	}*/
	.homepage-admin-container [target="project"] .w__content,
	.homepage-marketing-container [target="project"] .w__content,
	.homepage-hr-container [target="project"] .w__content {
		height: 380px !important;
		overflow-x: auto;
		overflow-y: hidden !important;
	}

	.homepage-admin-container .w__body-content,
	.homepage-marketing-container .w__body-content {
		flex-wrap: nowrap;
	}

	.homepage-user-container .widget-project .w__body {
		flex-wrap: nowrap;
	}

	.homepage-user-container .widget-project .w__content {
		height: 300px;
		overflow-x: auto;
	}

	.homepage-admin-container .index-container > div,
	.homepage-marketing-container .index-container > div {
		margin-right: 0;
	}

	.project-item,
	.widget-project .w-project,
	.widget-project .dots-button-control {
		min-width: 220px;
	}

	/*project task page*/

	.homepage-marketing-container {
		flex-direction: column;
	}

	.homepage-marketing-container .index-container {
		margin-top: 15px;
		padding-left: 0;
	}

	.homepage-marketing-container [target="project"] .w__content {
		height: 365px !important;
		overflow-x: auto;
		overflow-y: hidden !important;
	}

	.homepage-marketing-container .w__body-content {
		flex-wrap: nowrap;
	}

	.homepage-marketing-container .index-container > div {
		margin-right: 0;
	}
}

@media all and (min-width: 600px) {
	.widget-rating {
		margin-right: 15px !important;
	}
}

@media all and (max-width: 991px) {
	.task-content--fixed {
		width: 470px;
	}
}

@media all and (max-width: 767px) {
	.content-container {
		padding-top: 15px;
	}

	.page-mh {
		min-height: calc(100vh - 135px);
	}

	.index-container {
		display: flex;
		flex-wrap: wrap;
		padding: 0 15px;
		background-size: cover;
	}

	.index-container > div {
		margin-right: 15px;
		margin-bottom: 15px;
	}

	.pd-bt--default {
		padding-bottom: 15px;
	}

	.modal-title {
		font-size: 16px;
	}

	.modal--close {
		top: 6px;
	}

	.w__header {
		height: 45px;
		padding: 0 15px;
	}

	.w__header-title {
		font-size: 18px;
	}

	.w__header .w__messages,
	.w__header .messages-cnt {
		font-size: 16px;
		padding: 6px 8px 3px 8px;
	}

	.widget-project .w__content {
		height: auto;
	}
	/*	.dots-button-control-offset .w-project:first-child {
		margin-left: 183px;
	}*/
	.w-project,
	.project-item,
	.dots-button-control {
		width: 180px;
		height: 220px;
	}

	.owl-item .w-project {
		display: block;
		width: 100%;
		margin-bottom: 0px;
	}

	.header-message-box {
		padding: 6px 12px;
	}

	.header-menu {
		flex-basis: 60px;
		position: static;
	}

	.header-menu.active .brand-logo {
		border-right: 1px solid var(--darkgrey);
		border-bottom: 1px solid var(--darkgrey);
	}

	.brand-logo {
		background: url(/images/oddin-logo-mobile.png) center center no-repeat;
		z-index: 99999;
	}

	.header-menu__submenu {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		top: 0px;
	}

	.header-menu.active .header-menu__submenu {
		height: 100vh;
		z-index: 99;
	}

	.header-menu__submenu-item a {
		text-align: center;
		font-size: 18px;
		padding-bottom: 25px;
	}

	.header-menu__submenu-item:last-child a {
		padding-bottom: 0px;
	}

	.dropdown-menu-messages {
		width: 270px;
	}

	.operation-page-content {
		padding-left: 0px;
		padding-right: 0px;
	}

	.operation-page-content .project__info-content + div {
		padding-left: 0px !important;
	}

	/*project task page*/

	.task-content--fixed {
		width: 300px;
	}

	.task-content__status {
		width: 50px;
	}

	.task-buttons .oddin-button {
		height: auto;
	}

	.projecttask-view__progress-percent {
		font-size: 27px;
	}

	.projecttask-view__progress-template {
		font-size: 16px;
	}

	.task-container__row {
		padding-left: 15px;
	}

	.task-container .task-container__row > *:nth-child(3n + 1) {
		padding-left: 15px;
	}

	.task-container .task-container__row > *:nth-child(2n + 1) {
		padding-left: 0px;
	}

	.finsum-curators-button {
		border-left: 0px;
		border-top: 1px solid var(--white);
	}

	.homepage-marketing-container .w__body-header {
		flex-wrap: wrap;
		top: 45px !important;
	}

	.homepage-marketing-container .w__body-header {
		flex-wrap: wrap;
		top: 45px !important;
	}

	.homepage-marketing-container .w__body-header {
		flex-wrap: wrap;
		top: 45px !important;
	}
}

@media all and (max-width: 576px) {
	.stlist__item {
		padding: 10px 60px 10px 20px;
	}

	.stlist__item-name {
		font-size: 14px;
	}

	.stlist__item-note {
		font-size: 11px;
	}

	.current--status:after {
		right: 15px;
	}

	.w-task__headers-item {
		font-size: 11px;
	}

	.w-task__item-status,
	.w-task__item-priority,
	.w-task__item-name {
		font-size: 11px;
	}

	.w-task__item-name {
		padding-right: 5px;
		padding-left: 5px;
	}

	.w-task__item-progress {
		font-size: 30px;
	}

	.w-task__headers-progress {
		padding-left: 10px;
	}

	.w-task__headers-status,
	.w-task__item-status,
	.w-task__headers-name {
		padding-left: 5px;
	}

	.w-task__item-status,
	.w-task__item-priority,
	.w-task__item-name {
		padding-top: 5px;
		padding-bottom: 5px;
	}
	/*.header-messages-container{
		display: none;
	}*/
	.finsumm-item {
		padding: 10px;
	}

	.finsumm-item .value {
		font-size: 24px;
	}

	.oddin-calendar-cell {
		height: 36.25px;
		width: 36.25px;
	}

	.oddin-calendar__weekdays,
	.oddin-calendar__weekends {
		font-size: 14px;
	}

	.oddin-calendar__week-number {
		font-size: 22px;
	}

	.oddin-calendar__header .oddin-calendar-cell {
		font-size: 11px !important;
	}

	.withcontrol {
		flex-wrap: wrap;
		align-content: flex-start;
		font-size: 14px;
	}

	.withcontrol__field {
		/*padding: 0px;*/
		margin-top: 10px;
	}

	.withcontrol__paid,
	.withcontrol__main,
	.withcontrol__total,
	.withcontrol__requested,
	.withcontrol__available,
	.withcontrol__inProgress,
	.withcontrol__undistributed {
		height: 60px;
	}

	.withcontrol__total {
		width: 100%;
	}

	.withcontrol__paid {
		width: 40%;
	}

	.withcontrol__requested {
		width: 40%;
	}

	.withcontrol__available {
		width: 40%;
	}

	.withcontrol__main {
		width: 60%;
	}

	.withcontrols-container {
		padding-right: 7px;
	}

	.task-content--fixed {
		width: 200px;
	}

	.task-container .task-container__row > *:nth-child(3n + 1) {
		padding-left: 0px;
	}

	.task-container .task-container__row > *:nth-child(2n + 1) {
		padding-left: 0px;
	}

	.task-container .task-container__row > * {
		padding-left: 0px;
	}

	.moda-tab-item {
		width: 33.333333333333%;
	}

	.homepage-marketing-container [target="project"] .w__content {
		height: 385px !important;
	}

	.homepage-marketing-container .project-filters-container {
		height: auto;
	}

	.homepage-marketing-container .projects-container {
		padding-top: 80px !important;
	}

	.homepage-admin-container [target="project"] .w__content,
	.homepage-marketing-container [target="project"] .w__content,
	.homepage-hr-container [target="project"] .w__content {
		height: 440px;
	}

	.projects-filter-manager-container,
	.projects-filter-company-container {
		min-width: 50%;
	}

	.projects-filter-status-container,
	.projects-filter-order-container,
	.projects-filter-query-container {
		min-width: 30%;
	}

	.homepage-admin-container [target="project"] .w__content,
	.homepage-marketing-container [target="project"] .w__content,
	.homepage-hr-container [target="project"] .w__content {
		height: 400px !important;
	}

	.homepage-admin-container .project-filters-container,
	.homepage-marketing-container .project-filters-container {
		height: auto;
	}

	.homepage-admin-container .projects-container,
	.homepage-marketing-container .projects-container {
		padding-top: 80px !important;
	}
}

@media all and (max-width: 445px) {
	.task-content--fixed {
		width: 175px;
	}

	.header-message-box + div {
		width: calc(100% - 60px);
	}

	.header-banner-info {
		display: none;
	}

	.additional-messages-list + .login-form {
		width: calc(100% - 180px);
	}
}

@media all and (max-width: 400px) {
	.login__user-info {
		max-width: 150px;
	}

	.additional-messages-item .dropdown-menu-messages {
		width: 200px;
	}

	.widget-project .owl-item .w-project {
		height: 220px;
	}

	.oddin-button {
		font-size: 12px;
	}

	.withcontrol {
		font-size: 11px;
	}
	/*project task page*/
	.task-content--fixed {
		width: 135px;
	}

	.task-content__name,
	.task-content__assignee {
		font-size: 12px;
	}

	.projecttask-view__progress-percent {
		font-size: 22px;
	}
}

.pdf-checkbox {
	-webkit-appearance: none;
	width: 5mm;
	height: 5mm;
	background: #bfbfbf;
	-webkit-print-color-adjust: exact;
}

.pdf-checkbox:checked {
	background: url(/images/pdf-check.png) center center no-repeat;
	background-size: cover;
}

#roles-container.preloader-on {
	min-height: 60px;
}

.user-register-modal .modal-body.preloader-on {
	min-height: 350px;
}

.picker-overlay::-webkit-calendar-picker-indicator {
	background: transparent;
	bottom: 0;
	color: transparent;
	cursor: pointer;
	height: auto;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
	margin: 0px;
}

.wrong-entered-field {
	border: 1px solid var(--darkpink);
	padding-right: 25px !important;
}

.icon.icon-error {
	color: var(--darkpink);
	display: none;
}

.wrong-entered-field + .icon {
	display: block !important;
	font-size: 14px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
	z-index: 2;
}

/*	.hidden {
		visibility: hidden;
		opacity: 0;
		width: 1px;
	}*/

.error-message {
	padding-top: 5px;
	font-size: 0.8rem;
	color: var(--darkpink);
}

#confirm-modal .modal-dialog {
	max-width: 300px;
}

#confirm-modal .modal-header,
#confirm-modal .modal-body,
#confirm-modal .modal-footer {
	padding: 0.7rem 0.7rem;
}

#confirm-modal .modal-footer {
	border-top: none;
}

#confirm-modal .modal-title {
	font-size: 16px;
}

#confirm-modal .modal--close .close-icon {
	font-size: 20px;
}

#confirm-modal .modal--close {
	right: 9px;
	top: -2px;
	outline: none;
}

.finances-departments-container > * {
	border-right: 1px solid var(--gainsboro);
}

.finances-departments-container > *:last-of-type {
	border-right: none;
}

.scrollbar--tight::-webkit-scrollbar {
	width: 4px !important;
}

/*custom calculate tasks price*/
.custom-calculate-btn {
	max-width: 180px;
}

.oddin-button.clicked {
	background-color: var(--darkgrey) !important;
	color: var(--darkyellow) !important;
}

.homepage-marketing-container .dots-button-control,
.marketing-view-control {
	display: none !important;
}

.homepage-marketing-container
	.dots-button-control-offset
	.w-project:first-child {
	margin-left: 0 !important;
}

.scrollbar--small::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

#project-container [part="attributes"] {
	overflow-y: visible !important;
}

#countries {
	list-style: none;
	padding: 0;
	margin: 0;
	background: var(--gainsboro);
	z-index: 99;
}

.countries__item {
	padding: 10px;
	cursor: pointer;
}

.countries__item:hover {
	background: var(--darkyellow);
}

.country-flag {
	min-width: 60px;
	height: 30px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

@keyframes pulse {
	0% {
		border: 1px dashed rgba(0, 0, 0, 0.3);
	}

	25% {
		border: 2px dashed var(--darkpink);
	}

	50% {
		border: 2.5px dashed var(--darkpink);
	}

	75% {
		border: 2px dashed var(--darkpink);
	}

	100% {
		border: 1px dashed rgba(0, 0, 0, 0.3);
	}
}

.pulse-effect {
	animation: pulse 2500ms ease-in-out 3;
}

.task-template-content__name {
	flex: 1;
	padding-left: 0px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.task-template-content--fixed {
	width: 100px;
}

.task-template-content__shortname {
	flex: 1;
	align-items: center;
	overflow: hidden;
}

/* styles for new roject tasks page
-------------------------------------------------- */
.project-task__header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: var(--black-olive);
	width: 100%;
	position: relative;
	height: 50px;
	padding: 0px 20px 0px 20px;
	min-width: 597px;
}

.project-task__header-title {
	font-family: "Montserrat", sans-serif, Arial;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	margin: 0px;
	text-transform: uppercase;
	color: var(--white);
	white-space: nowrap;
	text-overflow: ellipsis;
}

.project-task__header-title a {
	color: inherit !important;
}

.project-task__header-title a:focus,
.project-task__header-title a:hover,
.project-task__header-title a:active {
	color: inherit !important;
	text-decoration: underline;
}

.project-task_header_status-square {
	width: 40px;
	height: 40px;
	background-color: dimgray;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
}

.work-accepted-by-customer {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
}

.project-task_header_status-square:last-child,
work-accepted-by-customer:last-child {
	position: absolute;
	right: 5px;
}

.project-task__header-settings {
	border: none;
	margin-left: auto;
	width: 28px;
}

.project-task__header_text {
	font-family: "Montserrat";
	font-size: 12px;
	font-weight: 600;
	line-height: 15px;
	letter-spacing: 0em;
	text-align: left;
}

.project-task__w-640 {
	width: 640px !important;
}

.project-task__h-300 {
	height: 300px !important;
}

.project-task__h-250 {
	height: 250px !important;
}

.project-task__border {
	border-bottom: 1px solid #0000001a;
}

.project-task__time-log_add_row_text {
	font-family: Arial;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
	letter-spacing: 0.02em;
	text-align: left;
}

.project-task__time-log_date {
	font-family: Arial;
	font-size: 18px;
	font-weight: 400;
	line-height: 14px;
	letter-spacing: 0.02em;
	text-align: left;
}

.project-task_filds_border {
	border-left:
		0px,
		0px,
		1px,
		1px solid #0000004d !important;
}

.project-task_filds_border:last-child {
	border-left:
		0px,
		0px,
		0px,
		1px solid #0000004d !important;
}

.project-task_header {
	font-family: Montserrat;
	font-size: 12px;
	font-weight: 600;
	line-height: 15px;
	letter-spacing: 0em;
	text-align: left;
}

.project-task_basic_header {
	height: 50px;
	padding: 0 20px 0 20px;
}

.status-light {
	width: 60px;
	height: 16px;
	display: flex;
	align-items: center;
	/*    position: relative;*/
	transform-style: preserve-3d;
}

.status-light .item {
	position: relative;
	border-style: solid;
	border-color: #00000066;
	height: 16px;
	width: 16px;
	border-width: 1px;
	padding: 1.5px;
}
/*.status-light .item::after, .status-light .item::before {
            content:'';
            position:absolute;
            left:0;
            width:100%;
            height:1px;
            background-color:#00000066;
        }
        .status-light .item::after{*/
/*top:0;*/
/*bottom:0;
        }
        .status-light .item::before{*/
/*bottom:0;*/
/*top:0;
        }

        .first + .space_between_status_light::before,
        .second + .space_between_status_light::after
        {
            content:'';
            position:absolute;
            top:0;
            width:1px;
            height:100%;
            background-color:#00000066;
        }
        .first + .space_between_status_light::before{
            left:-16px;
        }
        .second + .space_between_status_light::after{
            left:20px;
        }*/

.status-light .first {
	border-right-color: transparent;
}

.status-light .second {
	border-left-color: transparent;
	border-right-color: transparent;
}

.status-light .third {
	border-left-color: transparent;
}

.status-light[readonly="readonly"] .status-indicator-palce {
	pointer-events: none;
}

.space_between_status_light {
	width: 4px;
	height: 100%;
	position: relative;
}

.space_between_status_light .top {
	top: 0;
	height: 4px;
	border-width: 0 1px 1px 1px;
	border-style: solid;
	border-color: #00000066;
}

.space_between_status_light .bottom {
	height: 4px;
	width: 4px;
	position: absolute;
	bottom: 0px;
	border-width: 1px 1px 0 1px;
	border-style: solid;
	border-color: #00000066;
}

.status-indicator-palce {
	width: 100%;
	height: 100%;
}

.project-task__headers-status,
.project-task__item-status {
	margin-left: 0;
}

.project-task__curator {
	text-align: left;
	display: flex;
	align-items: center;
	/*  padding-left: 20px;
    padding-right: 5px;*/
	width: 60px;
	margin-right: 30px;
}

.project-task[tasklevel="0"] .project-task-content__curator {
	min-height: 17px;
}

.project-task-content__curator {
	min-height: 13px;
}

.project-task-content__curator {
	text-align: left;
	display: flex;
	align-items: flex-end;
	width: 60px;
}

.project-task__headers-hours {
	width: 90px;
	justify-content: left;
	padding-left: 7px;
}

.project-task__headers-assignee {
	flex: 1;
	padding-left: 25px;
}

.project-task-content__due {
	text-align: left;
	display: flex;
	align-items: center;
	min-width: 80px;
	margin-right: 17px;
}

.project-task-content__time {
	/*text-align: center;*/
	display: flex;
	align-items: center;
	/*justify-content: left;*/
	/*    padding-left: 5px;
    padding-right: 5px;*/
	min-width: 90px;
	margin-right: 18px;
}

.project-task-content__text {
	font-family: Arial;
	font-size: 12px;
	font-weight: 400;
	line-height: 13.8px;
	letter-spacing: 0.02em;
	text-align: left;
}

.project-task.task-content,
.project-task.item-content {
	height: 40px;
	padding: 0px 0px 0px 30px;
	/*border: 0px 0px 1px 0px;*/
	background: var(--white);
	display: flex;
	position: relative;
	overflow-x: hidden;
	min-height: 34px;
	color: var(--black);
	width: 100%;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.02em;
	vertical-align: middle;
	/*text-align: left;*/
	border-bottom: 1px solid #0000004d;
	background: var(--white);
	padding-right: 0px !important;
}

.tasks-container > .project-task.task-content ~ .project-task.task-content {
	margin-top: 7px;
}

.tasks-container > div.project-task.task-content,
.task-node > div.project-task.item-content {
	height: 40px;
	padding: 0px 0px 0px 30px;
	/*border: 0px 0px 1px 0px;*/
	background: #f2f2f2;
	display: flex;
	position: relative;
	overflow-x: hidden;
	min-height: 34px;
	color: var(--darkgrey);
	width: 100%;
	font-family: Arial;
	font-size: 14px;
	font-weight: 700;
	line-height: 17.07px;
	/*text-align: left;*/
	border-bottom: 1px solid #0000001a;
}

.project-task__headers-deadline {
	min-width: 90px;
}

.collapsible_project_tasks_btn_toggle {
	transform: rotate(180deg);
}

.task-node > .project-task > .task-content__icon:before,
.item-node > .project-task > .item-content__icon:before {
	content: "";
	display: block;
	position: absolute;
	border-top: 1px dotted var(--grey);
	top: 50%;
	transform: translateY(-50%) translateZ(-1px);
	left: 0px;
	width: 30px;
	visibility: visible;
}

.active .toggle-arrow {
	transform: rotate(90deg);
}

.task-node > .project-task > .toggle-arrow {
	border-left: 1px dotted var(--grey);
	top: 1px;
	bottom: 21px;
	z-index: 2;
}

.task-node-bottom--border {
	position: absolute;
	border-left: 1px dotted var(--grey);
	top: 50%;
	bottom: 1px;
	z-index: 2;
}

.project-task__add_text {
	font-family: "Montserrat";
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	text-align: right;
}

.project-task__basic_text {
	/*    font-family: Montserrat;
    font-size: 14px;
    font-weight: 700;*/
	line-height: 17.07px;
	/*text-align: left;*/
}

.position-info-block_name {
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 700;
	line-height: 17.07px;
	text-align: left;
	text-transform: uppercase;
}

.position-info-block_text {
	font-family: Arial;
	font-size: 12px;
	font-weight: 400;
	line-height: 13.8px;
	letter-spacing: 0.02em;
	text-align: left;
}

.project-task_toggle_tbl {
	height: 40px;
	width: 40px;
}

.project-task_toggle_btn {
	width: 100%;
	height: 100%;
	gap: 10px;
}

.total-selected-text {
	font-family: Montserrat;
	font-size: 12px;
	font-weight: 600;
	line-height: 14.63px;
	text-align: left;
}

.total-selected-value {
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 700;
	line-height: 17.07px;
	text-align: center;
}

.total-selected,
.other-positions-info-block {
	position: fixed;
	bottom: 20px;
	width: 640px;
	height: 30px;
	background-color: #fff0b3;
}

.project-task__add_additional_btn {
	width: 40px;
	height: 40px;
	font-weight: 500;
	font-size: 30px;
}

#mo-num-input::-webkit-inner-spin-button,
#mo-num-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

#mo-num-input {
	-moz-appearance: textfield;
}

.radio-input-oddin {
	appearance: none;
	width: 14px;
	height: 14px;
	border: 1px solid #ccc;
	border-radius: 50%;
	outline: none;
	cursor: pointer;
	background-color: white;
	position: relative;
	transition:
		background-color 0.3s,
		border-color 0.3s;
}

.radio-input-oddin:checked {
	border-color: rgb(255, 205, 0);
}

.radio-input-oddin:checked::before {
	content: "";
	width: 9px;
	height: 9px;
	background-color: rgb(255, 205, 0);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.radio-input-oddin:hover {
	border-color: rgb(255, 205, 0);
}

.time_log_textarea {
	height: 100px;
}

.w-60 {
	width: 60% !important;
}

.w-74p {
	width: 74px;
}

.is-paid-by-customer-btn {
	font-size: 37px !important;
}

.finance-data-import-btn {
	font-size: 37px !important;
	margin-top: -2px;
}

.is-paid-by-customer {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	overflow: hidden;
}

.finance-header-component {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	overflow: hidden;
	background-color: rgb(105, 105, 105);
}

.finance-header-component:hover,
.finance-header-component:active,
.finance-header-component:focus,
.is-paid-by-customer:hover,
.is-paid-by-customer:active,
.is-paid-by-customer:focus {
	background-color: var(--darkgrey);
	color: var(--darkyellow);
	transition: all 0.3s;
}

.finance-data-import-btn:hover,
.is-paid-by-customer-btn:hover {
	text-decoration: none;
}

.project-item__google_drive {
	width: 50px;
	height: 100%;
	angle: 0 deg;
	opacity: 1;
	gap: 10px;
	padding-right: 9px;
	padding-left: 9px;
	background: #ffcd00;
}

.commercial-title-image {
	top: 10px;
	left: 10px;
	width: 20px;
	height: 20px;
	z-index: 0;
	background: url("/images/google-drive.png") no-repeat center center;
	background-size: contain;
}

.project-item__top {
	height: 30px;
}

#three_toggle_btn .material-icons {
	display: block;
	text-align: center;
	font-size: 24px;
	line-height: 1;
	line-height: 14px;
	overflow: hidden;
}

#three_toggle_btn .material-icons + .material-icons {
}

.hierarchy-index {
	width: 30px;
	text-align: center;
	color: var(--darkgrey);
	font-family: "Montserrat";
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	line-height: 150%;
}

.hierarchy-index[show-addition-index="true"] {
	display: block;
}

.hierarchy-index[show-addition-index="false"] {
	display: none;
}

.modal-xxl {
	max-width: 1400px;
}

.select-category-error {
	color: red;
	font-weight: bold;
	text-align: center;
	display: none;
}
.highlight_yellow {
	color: yellow !important;
}

.highlight_green {
	color: green !important;
}

button.close {
	outline: none;
}

.context-menu-list {
	background: var(--white);
	outline: solid 1px var(--litegrey);
}

.context-menu-list .context-menu-list {
	margin: 0.5em 0.3em 0;
}

.context-menu-item.context-menu-input {
	padding: 0.3em 1em 0.4em;
}

	.context-menu-item.context-menu-input > label {
		display: flex;
		align-items: center;
	}

	.context-menu-item.context-menu-input span {
		margin-right: 8px;
		color: rgba(255, 255, 255, 0.6);
	}

	.context-menu-item.context-menu-input input {
		min-height: 1px;
		font-size: 14px;
		font-family: 'Agency FB', sans-serif, Arial !important;
	}

.context-menu-item.active {
	color: var(--white) !important;
	background-color: rgba(255,255,255,0.14);
}

.context-menu-item.context-menu-input.context-menu-hover span,
.context-menu-item.context-menu-input.context-menu-hover input {
	color: rgba(255, 255, 255, 1);
}

.context-menu-field-button .context-menu-input-container {
	padding: .4em 1em .3em;
	margin-bottom: 4px;
	/*margin-top: 4px;*/
}

.context-menu-item:first-child {
	/*border-radius: 5px 5px 0 0;*/
}

.context-menu-field-button input {
	font-size: 14px;
	font-family: 'Agency FB', sans-serif, Arial !important;
}

.context-menu-field-button .context-menu-button {
	border-bottom: 0;
	border-left: 0;
	border-right: 0;
}

.context-menu-item,
.context-menu-item.context-menu-hover {
	color: var(--grey);
}

.context-menu-item {
	position: relative;
	/*padding-left: 40px;*/
	height: 30px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	width: 100%;
	font-family: "Monsterrat", sans-serif, Arial;
	font-size: 14px;
}

.context-menu-submenu .context-menu-item span {
	display: inline-block;
	max-width: 150px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: middle;
}

	.context-menu-item:hover {
		background-color: var(--darkyellow) !important;
		color: var(--black);
	}

	.context-menu-item:not(:last-child) {
		margin-bottom: 3px;
	}

.context-menu-item:hover:after {
	border-left-color: var(--j3m-orange);
}

.context-menu-icon::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-position: center center;
}

.context-menu-icon::before {
	top: 20px;
}


.context-menu-submenu:after {
	border-color: transparent transparent transparent var(--grey);
}

.context-menu-submenu > .context-menu-list {
	transform: translate(3px, 1px);
}

.context-menu-item.scrollable-submenu.context-menu-visible > .context-menu-list {
	display: block;
	max-height: 300px;
	overflow-y: auto !important;
	overflow-x: hidden !important;
	white-space: normal;
}

	.context-menu-list.scrollable-submenu .context-menu-item {
		white-space: nowrap;
	}
.project-attributes-new-container table tbody tr:nth-child(odd) {
	background-color: #FAFAFA;
}

.project-attributes-new-container table tbody tr:nth-child(even) {
	background-color: #FFFFFF;
}

.project-attributes-new-container .field-group {
	margin-top: 8px;
	padding-bottom: 8px;
	min-width: 0;
}

.project-attributes-new-container .field-group > label {
	padding-left: 12px;
}

.project-attributes-new-container .field-group .nice-select.select-control,
.project-attributes-new-container > .d-flex > .field-group > .d-flex {
	margin-left: 12px;
}

#section-wood .field-group .nice-select.select-control {
	width: calc(100% - 12px) !important;
}

.project-attributes-new-container [id^="section-"] > .d-flex > .col-4.py-2:nth-child(n+2),
.project-attributes-new-container [id^="section-"] > .d-flex > .col-4.justify-content-around {
	padding-left: 12px !important;
}

.project-attributes-new-container .d-flex > .col-4 {
	min-width: 0;
}

#section-steel-structures .fm-monst,
#section-concrete .fm-monst,
#section-wood .fm-monst,
#section-facades .fm-monst,
#section-engineering-networks .fm-monst {
	font-weight: bold;
}

#section-steel-structures table .fm-monst,
#section-concrete table .fm-monst,
#section-wood table .fm-monst,
#section-facades table .fm-monst,
#section-engineering-networks table .fm-monst {
	font-weight: normal;
}

.project-attributes-new-container input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
	border: 2px solid #ccc;
	background-color: #fff;
	cursor: pointer;
	position: relative;
}

.project-attributes-new-container input[type="checkbox"]:checked {
	background-color: var(--darkyellow);
	border-color: var(--darkyellow);
	background-image: url('/images/checksvg.svg');
	background-size: 12px;
	background-position: center;
	background-repeat: no-repeat;
}

.project-attributes-new-container input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
	border: 2px solid #ccc;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
}

.project-attributes-new-container input[type="radio"]:checked {
	background-color: var(--darkyellow);
	border-color: var(--darkyellow);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='4.5' fill='%23000'/%3E%3C/svg%3E");
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}

.project-attributes-new-container .nice-select.select-control {
	background-color: #999;
	color: #fff;
	border: none;
	padding-left: 12px;
	padding-top: 6px;
	padding-bottom: 6px;
	width: 100%;
	max-width: 240px;
	min-width: 0;
	
}

.project-attributes-new-container .nice-select.select-control .option {
	padding-left: 12px;
}

.project-attributes-new-container .nice-select.select-control.autowidth-select {
	width: 240px;
	max-width: 240px;
	min-width: 0;
}

.project-attributes-new-container .nice-select.select-control .current {
	color: #fff;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 20px;
}

.project-attributes-new-container .nice-select.select-control:after {
	border-color: #fff;
	left: unset;
	right: 12px;
}

.project-attributes-new-container .nice-select .search-wrap {
	padding: 6px 10px;
	border-bottom: 1px solid #ddd;
}

.project-attributes-new-container .nice-select .search-input {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 4px 8px;
	font-size: 13px;
	outline: none;
	box-sizing: border-box;
}

.project-attributes-new-container .nice-select .search-input:focus {
	border-color: var(--darkyellow);
	box-shadow: none;
}

.project-attributes-new-container input.text-control:not(.text-right):not([placeholder="Comment for other features..."]) {
	border: none !important;
}

.project-attributes-new-container input.text-control:not(.text-right):not([placeholder="Comment for other features..."]):focus {
	outline: none !important;
	border: none !important;
	box-shadow: 0 1px 0 0 var(--darkyellow) !important;
}

.project-attributes-new-container [name="details-new-location-link-attr"] {
	border: none !important;
}

.project-attributes-new-container [name="details-new-location-link-attr"]:focus {
	outline: none !important;
	border: none !important;
	box-shadow: 0 1px 0 0 var(--darkyellow) !important;
}

.project-attributes-new-container [name="details-new-location-link-attr"]:empty::before {
	content: "Value";
	color: #999;
	font-weight: 400;
}

.project-attributes-new-container input.text-control.text-right {
	background-color: #EEEEEE;
	border: none !important;
	width: 65px;
	height: 18px;
	float: right;
}

.project-attributes-new-container input.text-control.text-right:focus {
	outline: none !important;
	box-shadow: none !important;
}

.project-attributes-new-container input.text-control:not(.text-right):not([placeholder="Comment for other features..."])::placeholder {
	color: #999;
	font-weight: 400;
}
