@use cssnext;

*
{
	padding: 0;
	margin: 0;
}

:root 
{
	--baseColor: /*#606468*/#9da5ac;
	--baseColor2: #606668;
	--htmlFontSize: 100%;
	
	--linkColor:#ffffff;
	--linkColorActive: var(--linkColor);
	--linkColorVisited: var(--linkColor);

	--bodyBackgroundColor: #2c3338;
	--bodyColor: var(--baseColor);
	--bodyFontFamily: 'Open Sans';
	--bodyFontFamilyFallback: sans-serif;
	--bodyFontSize: 1.0rem;/*0.875rem;*/
	--bodyFontWeight: 400;
	--bodyLineHeight: 1.5;
	
	--gridMaxWidth: 20rem;
	--gridWidth: 90%;
	
	--loginBorderRadus: 0.25rem;
	--loginColor: #eee;

	--loginInputBackgroundColor: #3b4148;
	--loginInputHoverBackgroundColor: #434a52;

	--loginLabelBackgroundColor: #363b41;

	--loginSubmitBackgroundColor: #ea4c88;
	--loginSubmitColor: #eee;
	--loginSubmitHoverBackgroundColor: #d44179;
	
	--sideMenuBackgroundColor: #ea4c88;
	--sideMenuHoverBackgroundColor: #A62858;
	
	--lightWhiteBack05: rgba(255, 255, 255, 0.05);
	--lightWhiteBack10: rgba(255, 255, 255, 0.1);
	--lightWhiteBack15: rgba(255, 255, 255, 0.15);
	
	--lightGrayBack05: rgba(0, 0, 0, 0.05);
	--lightGrayBack10: rgba(0, 0, 0, 0.1);
	--lightGrayBack15: rgba(0, 0, 0, 0.15);
	
	--lightGreenBack05: rgba(0, 96, 0, 0.25);
	--lightGreenBack10: rgba(0, 96, 0, 0.3);
	--lightGreenBack15: rgba(0, 96, 0, 0.45);
	--lightGreenBack20: rgba(0, 96, 0, 0.55);
	--lightYellowBack05: rgba(96, 96, 0, 0.25);
	--lightYellowBack10: rgba(96, 96, 0, 0.3);
	--lightYellowBack15: rgba(96, 96, 0, 0.45);
	--lightYellowBack20: rgba(96, 96, 0, 0.55);
	
	--formFieldMargin: 0.875rem;
	
	--markOK: #00bb00;
	--markOK1: #007700;
	--markWarn: #bbbb00;
	--markError: #bb0000;
	--markPreError: #bb5555;
	--markError1: rgba(255,0,0,0.3);
	--markWarn1: rgba(153,102,0,0.5);
	--markWarn1h: rgba(153,102,0,0.75);
	--markDone: rgba(8,98,0,1.00);
	
	--filterBackColor: rgba(0,92,240,0.2);
	
	--myColumn0: rgba(0,64,255,0.1);
	--myColumn1: rgba(0,255,64,0.1);
	--myColumnC: rgba(0,240,255,0.1);
	
	--myRowLeg1e: rgba(64,64,192,0.075);
	--myRowLeg1o: rgba(64,64,192,0.15);
	--myRowLeg1: rgba(64,64,192,0.2);
	--myRowLeg2e: rgba(64,255,64,0.075);
	--myRowLeg2o: rgba(64,255,64,0.15);
	--myRowLeg2: rgba(64,255,64,0.2);
	--myRowLeg3e: rgba(64,128,64,0.075);
	--myRowLeg3o: rgba(64,128,64,0.15);
	--myRowLeg3: rgba(64,128,64,0.2);
	--myRowLeg7e: rgba(128,128,64,0.075);
	--myRowLeg7o: rgba(128,128,64,0.15);
	--myRowLeg7: rgba(128,128,64,0.2);
	
	--myBasketFix: rgba(32,128,32,0.9);
	
	--extraColor: #ffffff;
	--color1:#bbbbbb;
	--color0:#000000;
	
	--myColumnOnFly: rgba(0,220,255,0.3);
	--myColumnAbsent: rgba(192,192,192,0.3)
}

html, body
{
	width: 100%;
	height: 100%;
	/*overflow:hidden;*/
}

body
{
	background-color: var(--bodyBackgroundColor);
  	color: var(--bodyColor);
  	font-family: var(--bodyFontFamily), var(--bodyFontFamilyFallback);
  	font-size: var(--bodyFontSize);
  	font-weight: var(--bodyFontWeight);
  	line-height: var(--bodyLineHeight);
  	margin: 0;
  	min-height: 100%;
}

a, .edit-button {
	color: var(--linkColor);
	text-decoration: none;
	cursor: pointer;
}

a:hover, .edit-button:hover {
	color: var(--linkColorActive);
	text-decoration:underline;
}

select {
	font-size: 1.2rem;
}

#lcontainer
{
	display: table; 
	position: absolute; 
	height: 100%; 
	width: 100%;

	/*box-sizing: border-box;

	background-color: var(--bodyBackgroundColor);
	color: var(--bodyColor);
	font-family: var(--bodyFontFamily), var(--bodyFontFamilyFallback);
	font-size: var(--bodyFontSize);
	font-weight: var(--bodyFontWeight);
	line-height: var(--bodyLineHeight);
	margin: 0;
	min-height: 100%;*/
}

.italic {
	font-style: italic;
}

/* Main container and side menu */
.container {
    position: relative;
    height: 100%;
	width: 100%;
    left: 0;
    -webkit-transition:  left 0.4s ease-in-out;
    -moz-transition:  left 0.4s ease-in-out;
    -ms-transition:  left 0.4s ease-in-out;
    -o-transition:  left 0.4s ease-in-out;
    transition:  left 0.4s ease-in-out;
}
.container.open-sidebar {
    left: 240px;
}
.swipe-area 
{
    position: absolute;
    width: 50px;
    left: 0;
	top: 0;
    height: 100%;
    background: #f3f3f3;
    z-index: 0;
}
#sidebar {
	z-index: 100;
    background: var(--sideMenuBackgroundColor);
    position:absolute;
    width: 240px;
    /*height: 100%;*/
	top: 0px;
    left: -240px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
	-webkit-transition:  left 0.4s ease-in-out;
    -moz-transition:  left 0.4s ease-in-out;
    -ms-transition:  left 0.4s ease-in-out;
    -o-transition:  left 0.4s ease-in-out;
    transition:  left 0.4s ease-in-out;
}
#sidebar.active_side0
{
	left: 0px;
}
.active_side
{
	left: 240px;
}
#sidebar ul { 
    margin: 0;
    padding: 0;
    list-style: none;
}
#sidebar ul li {
    margin: 0;
}

#sidebar ul > li {
    position: relative;
}

#sidebar ul li a {
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 100;
    color: white;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid var(--sideMenuHoverBackgroundColor);
    -webkit-transition:  background 0.3s ease-in-out;
    -moz-transition:  background 0.3s ease-in-out;
    -ms-transition:  background 0.3s ease-in-out;
    -o-transition:  background 0.3s ease-in-out;
    transition:  background 0.3s ease-in-out;
}

#sidebar ul li span {
	padding: 5px 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid var(--sideMenuHoverBackgroundColor);
    -webkit-transition:  background 0.3s ease-in-out;
    -moz-transition:  background 0.3s ease-in-out;
    -ms-transition:  background 0.3s ease-in-out;
    -o-transition:  background 0.3s ease-in-out;
    transition:  background 0.3s ease-in-out;
}

#sidebar ul li:hover > a {
    background: var(--sideMenuHoverBackgroundColor);
}

#sidebar .fl {
	float: left;
}

#sidebar .fll {
	margin-left: 20px;
}

#sidebar ul li ul {
    position: absolute; 
    display: none; 
    top: 2px; 
    left: 240px; 
	background: var(--sideMenuBackgroundColor);
	min-width: 200px;
}

#sidebar ul li:hover ul {
   	display: block; 
}

#sidebar ul li ul li {
	text-align:left;
  	background: var(--sideMenuBackgroundColor);
}

#sidebar ul li ul li:hover {
	/*background: var(--sideMenuHoverBackgroundColor);*/
}

#sidebar ul li ul li a {
  	padding: 5px 15px;
    font-size: 12px;
    font-weight: 100;
    color: white;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid var(--sideMenuHoverBackgroundColor);
	background: var(--sideMenuBackgroundColor);
}

#sidebar ul li ul li a:hover {
  	background: var(--sideMenuHoverBackgroundColor);
}

.main-content {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    position: relative;
}
.main-content .content{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
	/* padding-left: 40px; */
	width: 100%;
}
.main-content .content h1{
    font-weight: 100;
}
.main-content .content p{
    width: 100%;
    line-height: 160%;
}
.main-content #sidebar-toggle {
    background: var(--sideMenuBackgroundColor);
    border-radius: 3px;
    display: block;
    position: fixed;
    padding: 10px 7px;
    float: left;
}
.main-content #sidebar-toggle .bar{
    display: block;
    width: 18px;
    margin-bottom: 3px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
}
.main-content #sidebar-toggle .bar:last-child{
     margin-bottom: 0;
}

.main-content input {
	font-size: 1rem;
	padding: 3px;
	border-radius: 3px;
	border: 1px dotted var(--baseColor);
	text-align: center;
}
/* end of main container and side menu */
.error {
	color: var(--markError);
	font-weight: bold;
}
.success {
	color: var(--markOK);
	font-weight: bold;
}

.bold {
	font-weight: bold;
}

h2 {
	padding: 0 10px;
}

.clear-divider{
	/* height: 20px;  */
	height: 60px;
}

.h-back {
	display: none !important;
	width: 100%;
	background: var(--lightWhiteBack05);
}

.money1 {
	
}

.money0 {
	font-size: 0.75rem;
}

.profile td {
	padding: 4px 10px;
}

.profile tr.odd {
	background: var(--lightWhiteBack05);
}

.profile tr.even {
	background: var(--lightWhiteBack10);
}

.form__field {
  	display: flex;
  	margin: var(--formFieldMargin);
}

.form__input {
 	flex: 1;
}

.profile__input {
	padding: 0.1rem;
	font-size: 0.8rem;
}

.profile__submit {
	font-size: 1rem;
}

.font_lower0 {
	font-size: 0.75rem !important;
}

.font_lower1 {
	font-size: 0.5em !important;
}

.font_bigger0 {
	font-size: 1.25rem !important;
}

.opac75 {
	opacity: 0.75;
}

.opac50 {
	opacity: 0.5;
}

.divider-border {
	border-top:3px solid var(--markWarn);
}

.font_m1 {
	font-size: 0.6rem;
}

.font_p1 {
	font-size: 1rem;
}

.font_p2 {
	font-size: 1.2rem;
}

a.pdf-download {
	display: block;
	width: 32px;
	height: 32px;
	background-image: url(/imgs/icons/icon_pdf.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 32px 32px;
}

table.tsuppliers {
	border-top:1px dotted var(--baseColor);
	border-left:1px dotted var(--baseColor);
}

table.tsuppliers td {
	padding: 4px;
	border-bottom:1px dotted var(--baseColor);
	border-right:1px dotted var(--baseColor);
}

/*
table.tsuppliers td:last-of-type {
	border-right:1px dotted var(--baseColor);
}

table.tsuppliers tr:last-of-type td {
	border-bottom:1px dotted var(--baseColor);
}*/

table.tsuppliers tr.odd {
	background: var(--lightWhiteBack05);
}

table.tsuppliers tr.even {
	background: var(--lightWhiteBack10);
}

table.tsuppliers tr.odd:hover, table.tsuppliers tr.even:hover {
	background: var(--lightWhiteBack15);
}

table tr.oddW {
	background: var(--lightGrayBack05);
}

table tr.evenW {
	background: var(--lightGrayBack10);
}

table tr.oddW:hover, table tr.evenW:hover {
	background: var(--lightGrayBack15);
}

table.tsuppliers tr.legSt1-odd {
	background: var(--myRowLeg1o);
}

table.tsuppliers tr.legSt1-even {
	background: var(--myRowLeg1e);
}

table.tsuppliers tr.legSt1-odd:hover, table.tsuppliers tr.legSt1-even:hover {
	background: var(--myRowLeg1);
}

table.tsuppliers tr.legSt2-odd {
	background: var(--myRowLeg2o);
}

table.tsuppliers tr.legSt2-even {
	background: var(--myRowLeg2e);
}

table.tsuppliers tr.legSt2-odd:hover, table.tsuppliers tr.legSt2-even:hover {
	background: var(--myRowLeg2);
}

table.tsuppliers tr.legSt20-odd {
	font-weight: bold;
	color: var(--extraColor);
	background: var(--myRowLeg2o);
}

table.tsuppliers tr.legSt20-even {
	font-weight: bold;
	color: var(--extraColor);
	background: var(--myRowLeg2e);
}

table.tsuppliers tr.legSt20-odd:hover, table.tsuppliers tr.legSt2-even:hover {
	background: var(--myRowLeg2);
}

table.tsuppliers tr.legSt3-odd {
	background: var(--myRowLeg3o);
}

table.tsuppliers tr.legSt3-even {
	background: var(--myRowLeg3e);
}

table.tsuppliers tr.legSt3-odd:hover, table.tsuppliers tr.legSt3-even:hover {
	background: var(--myRowLeg3);
}

table.tsuppliers tr.legSt7-odd {
	background: var(--myRowLeg7o);
}

table.tsuppliers tr.legSt7-even {
	background: var(--myRowLeg7e);
}

table.tsuppliers tr.legSt7-odd:hover, table.tsuppliers tr.legSt7-even:hover {
	background: var(--myRowLeg7);
}

.tsuppliers_editrow {
	background: rgba(255,255,0,0.25) !important;
}

table.tmainview {
	border-top:1px dotted var(--baseColor);
	border-left:1px dotted var(--baseColor);
	background: #ffffff;
	color:#000000;
}

table.tmainview td {
	padding: 1px;
	border-bottom:1px dotted var(--baseColor);
	border-right:1px dotted var(--baseColor);
}

table.tmainview td.pad {
	padding: 3px !important;
}

/*
table.tmainview td:last-of-type {
	border-right:1px dotted var(--baseColor);
}

table.tmainview tr:last-of-type td {
	border-bottom:1px dotted var(--baseColor);
}*/

table.tmainview tr.odd {
	background: var(--lightWhiteBack05);
}

table.tmainview tr.even {
	background: var(--lightWhiteBack10);
}

table.tmainview tr.odd:hover, table.tmainview tr.even:hover {
	background: var(--lightWhiteBack15);
}

table.tmainview tr.legSt1-odd {
	background: var(--myRowLeg1o);
}

table.tmainview tr.legSt1-even {
	background: var(--myRowLeg1e);
}

table.tmainview tr.legSt1-odd:hover, table.tmainview tr.legSt1-even:hover {
	background: var(--myRowLeg1);
}

table.tmainview tr.legSt2-odd {
	background: var(--myRowLeg2o);
}

table.tmainview tr.legSt2-even {
	background: var(--myRowLeg2e);
}

table.tmainview tr.legSt2-odd:hover, table.tmainview tr.legSt2-even:hover {
	background: var(--myRowLeg2);
}

table.tmainview tr.legSt20-odd {
	font-weight: bold;
	color: var(--extraColor);
	background: var(--myRowLeg2o);
}

table.tmainview tr.legSt20-even {
	font-weight: bold;
	color: var(--extraColor);
	background: var(--myRowLeg2e);
}

table.tmainview tr.legSt20-odd:hover, table.tmainview tr.legSt2-even:hover {
	background: var(--myRowLeg2);
}

table.tmainview tr.legSt3-odd {
	background: var(--myRowLeg3o);
}

table.tmainview tr.legSt3-even {
	background: var(--myRowLeg3e);
}

table.tmainview tr.legSt3-odd:hover, table.tmainview tr.legSt3-even:hover {
	background: var(--myRowLeg3);
}

.filter-row {
	background-color: var(--filterBackColor);
}

.extraColor {
	color: var(--extraColor);
}

.edit_button0 {
	width: 24px; 
	height: 24px;
	background: url(/imgs/icons/icon_edit.svg); 
	background-size: 24px 24px; 
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
}

.mark-warn {
	color: var(--markWarn) !important;
}
.mark-ok {
	color: var(--markOK) !important;
}
.mark-ok1 {
	color: var(--markOK1) !important;
}
.mark-preerror {
	color: var(--markPreError) !important;
}
.mark-error {
	color: var(--markError) !important;
}
.mark-gray {
	color: var(--baseColor);
}
.mark-wdisable {
	color: var(--color1) !important;
}

.warn-back {
	color: var(--color1);
	background: var(--markWarn1) !important;
	font-weight: bold;
}

.warn-back:hover {
	background: var(--markWarn1h) !important;
}

.error-back {
	color: var(--color1);
	background: var(--markError) !important;
	font-weight: bold;
}

.error-back1 {
	color: var(--color0);
	background: var(--markError1) !important;
	font-weight: bold;
}

.success-back {
	background-color: var(--markOK) !important;
	color: var(--color1);
}

.column0-back {
	background: var(--myColumn0);
	color: var(--color0);
	font-weight: bold;
}

.column1-back {
	background: var(--myColumn1);
	color: var(--color0);
	font-weight: bold;
}

.columnOnFly-back {
	background: var(--myColumnOnFly);
	color: var(--color0);
}

.columnAbsent-back {
	background: var(--myColumnAbsent);
	color: var(--color0);
}

.columnC-back {
	background: var(--myColumnС);
	color: var(--color0);
	font-weight: bold;
}

input.h-dis {
	font-size: 1em;
	color: black;
}

input.h-dis:disabled {
	background: none;
	border: none;
	color: var(--baseColor2);
}

input.jfilter, input.jfilter2 {
	text-align: center !important;
	border-radius: 3px !important;
	border: none !important;
	padding: 3px 4px !important;
	margin-top: 1px !important;
	font-size: 0.7rem !important;
}

.tcontroller-box {
	position: relative;
    display: inline-block;
    cursor: pointer;
}

.tcontroller-box label {
	font-size: 0.75rem;
}

.dropbtn {
	border: none;
	padding: 2px;
    /*background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    
    cursor: pointer;*/
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	font-size: 12px;
    display: none;
    position: absolute;
	background: var(--bodyBackgroundColor);
    min-width: 220px;
	border: 1px dotted var(--baseColor);
    /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content label {
    padding: 3px 12px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.clearb {
	padding: 4px;
	cursor: pointer;
}

.spacer1 {
	width: 40px;
	display: inline-block;
}

.th-box {
	padding: 4px;
	border: 1px dotted var(--baseColor);
	border-radius: 3px;
	background: var(--lightWhiteBack15);
	display: inline-block;
	margin: 3px;
}

.th-box span {
	padding: 1px 3px;
	border: 1px solid var(--extraColor);
	border-radius: 3px;
	background: var(--markError);
	font-size: 0.75rem;
	display: inline-block;
	margin:0px 1px 1px 1px;
	color:var(--extraColor);
	opacity: 0.5;
	cursor: pointer;
	-webkit-transition: all 0.1s ease-in-out;
    -moz-transition:  all 0.1s ease-in-out;
    -ms-transition:  all 0.1s ease-in-out;
    -o-transition:  all 0.1s ease-in-out;
    transition:  all 0.1s ease-in-out;
}

.justAdded {
	border:1px solid var(--markWarn);
}

.th-box span:hover {
	opacity: 1;
}

#submitH input {
	padding: 3px;
	font-size: 1rem;
	width: 50px;
}

#submitH button {
	padding: 4px;
	margin: 4px;
	font-size: 1rem;
}

#actBasketFix {
	position: fixed; 
	top: 6px; 
	right: 6px;
	border: 1px dotted var(--color1);
	padding: 6px;
	background: var(--myBasketFix);
	color: var(--extraColor);
	font-size: 0.75rem;
	font-weight: bold;
}

button.actDelete {
	padding: 4px;
	font-size: 0.8rem;
}

.clearable{
  background: #fff url(http://i.stack.imgur.com/mJotv.gif) no-repeat right center;
  border: 1px solid #999;
  padding: 3px 18px 3px 4px;     /* Use the same right padding (18) in jQ! */
  border-radius: 3px;
  transition: background 0.4s;
}
.clearable.x  { background-position: right center; } /* (jQ) Show icon */
.clearable.onX{ cursor: pointer; }              /* (jQ) hover cursor style */
.clearable::-ms-clear {display: none; width:0; height:0;} /* Remove IE default X */

a.blck_btn {
	display: inline-block;
	padding: 0px 2px;
	background: black;
	opacity: 0.5;
}
a.blck_btn:hover {
	opacity: 1;
}

.rotate90 {
	-webkit-transform: rotate(90deg);	
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	writing-mode: lr-tb;
}

input.edit_source {
	text-align: left;
}

textarea.edit_source {
	resize: none;
}

.edit_source:disabled {
	color: var(--color1) !important;
}

.grill_inactive {
	opacity: 0.25 !important;
}

table tr.oddWProgress {
	background: var(--lightGreenBack05);
}

table tr.evenWProgress {
	background: var(--lightGreenBack10);
}

table tr.oddWProgress:hover, table tr.evenWProgress:hover {
	background: var(--lightGreenBack15);
}

.awayf-odd {
	background: var(--lightGreenBack05);
}
.awayf-even {
	background: var(--lightGreenBack10);
}
.away-odd {
	background: var(--lightYellowBack05);
}
.away-even {
	background: var(--lightYellowBack10);
}
.awayf-odd:hover {
	background: var(--lightGreenBack15);
}
.awayf-even:hover {
	background: var(--lightGreenBack20);
}
.away-odd:hover {
	background: var(--lightYellowBack15);
}
.away-even:hover {
	background: var(--lightYellowBack20);
}

/* NEW MENU STYLES */

#menu{
	position: fixed;
	font-family: 'Roboto' !important;
    top: 0;
    left: 0;
	margin: 10px 0.5% 0;
	width: 99%;
    background: #fff;
    z-index: 100;
    padding: 8px 20px;
	border-radius: 3px;
	box-sizing: border-box;
}

.menu_shown{
	box-shadow: 0px 4px 5px 0px #80808085;
}

.menu_top .menu_handler,
.menu_top .menu_dir,
.menu_top #menu_other,
.menu_top #menu_other_links,
.menu_top #menu_other_links div,
.menu_user div{
	display: inline-block !important;
}

#menu_other div{
	display: inline-block !important;
	font-size: 13px !important;
	color: grey !important;
	font-weight: 300 !important;
	background: #a2a3a22b !important;
    border-radius: 3px !important;
	padding: 5px 10px 6px !important;
	margin-left: 5px !important;
}

#menu_other div:hover{
	color: grey;
	background: #eaeaea;
	cursor: pointer !important;
}

.menu_handler{
	padding: 5px 10px 6px;
	border-radius: 3px;
	background: #a2a3a22b; 
	color: lightgrey;
	font-size: 12px;
}

.menu_handler:hover{
	cursor: pointer;
	background: #eaeaea;
	color: grey;
}

.menu_home_link,
.menu_home_link:hover{
	font-size: 12px !important;
	text-decoration: none !important;
}

.menu_home_link{
	font-weight: 300;
	color: grey !important;
}

.menu_home_link:hover{
	font-weight: 400;
	color: #333 !important;
}


.menu_dir{
	line-height: 20px;
	margin-left: 5px;
	font-size: 12px !important;
	color: grey;
	font-weight: 300;
	background: #a2a3a22b;
    padding: 5px 20px;
    border-radius: 3px;
}

.menu_root{
	font-weight: 400;
}

.menu_dir i{
	font-size: 10px !important;
	color: lightgrey;
	margin: 0 5px;
}

.menu_other_links{
	float: right;
}

/* .menu_buttons,  */
.menu_user,
.menu_release_notes{
	float: right;
	line-height: 28px;
	font-size: 12px !important;
	color: grey;
	font-weight: 300;
	background: #a2a3a22b;
    border-radius: 3px;
	padding: 1px 15px;
	margin-left: 5px;
}

/* .menu_buttons:hover,  */
.menu_user:hover,
.menu_release_notes:hover,
.menu_release_notes a:hover{
	color: #333;
	background: #a2a3a22b;
	cursor: pointer;
} 

.menu_item_active{
	color: #333 !important;
	background: #a2a3a22b !important;
}

.menu_user i{
	margin-right: 3px;
}

.menu_calculation,
.menu_notification{
	float: right;
	line-height: 28px;
	font-size: 12px !important;
	color: grey;
	font-weight: 300;
	background: #a2a3a22b;
    border-radius: 3px;
	padding: 1px 15px;
	margin-left: 5px;
}

.menu_calculation:hover,
.menu_notification:hover{
	color: #333;
	background: #a2a3a22b;
	cursor: pointer;
} 

.menu_notification_active{
	background: #C5E99B;
	color: #fff;
}

.menu_cabinet{
	display: none;
	position: absolute;
	width: 350px;
    right: 20px;
    background: #fff;
    padding: 25px;
    top: 55px;
	border-radius: 3px;
	box-shadow: 0px 2px 10px 0px #80808080;
	z-index: 10000;
}

.cabinet_data{
	width: 100%;
}

.cabinet_data tr td{
	position: relative;
	width: 50%;
}

.cabinet_left_data{
	text-align: left;
}

.cabinet_right_data{
	text-align: right;
}

.cabinet_buttons{
	position: absolute;
	top: 0px;
    color: #d3d3d3ba;
	font-size: 15px;
	display: block;
	padding: 5px 7px;
	border-radius: 3px;
	background: #a2a3a22b;
}

.cabinet_settings{
	left: 0px;
}

.cabinet_logout{
	left: 34px;
}

.cabinet_buttons:hover{
	cursor: pointer;
    color: grey;
	background: #d3d3d3ba;
}

.cabinet_name{
	font-size: 15px;
    color: #333;
	text-align: right;
	margin-bottom: 30px
}

.cabinet_info_title{
	font-size: 12px;
    color: grey;
    font-weight: 300;
}

.cabinet_info_text{
	font-size: 14px;
    color: #333;
	font-weight: 400;
	margin-bottom: 25px
}

.cabinet_name{
	font-size: 16px;
    color: #333;
    text-align: right;
	font-weight: 500;
	margin-bottom: 55px;
}

.cabinet_name i{
	font-size: 12px;
}

.bottom_hide{
	display: none;
}

.bottom_show{
	display: block;
}

.menu_bottom_left{
	float: left;
	display: inline-block;
	line-height: 25px;
    width: 30px;
	margin: 25px 15px 0 0 ;
	padding: 15px 0;
	font-size: 20px;
	border-radius: 3px;
	font-weight: 600;
	color: #ecebeb;
	position: relative;
}

.menu_bottom_left span{
	display: block;
    transform: rotate(-90deg);
} 

.menu_bottom_right{
	display: inline-block;
	width: 96.5%;
	margin: 20px 0 0 15px;
}

.menu_tabs_item {
	display: none;
	color: #333;
	/*  sdisplay: inline-block; */
	margin-right: 20px;
	font-size: 18px;
	font-weight: 500;
}

#menu_tabs{
	display: grid;
	overflow-x: auto; 
	grid-template-columns: 1fr;
	grid-column-gap: 20px;
}

#menu_tabs::-webkit-scrollbar{
	width: 1px !important;
}

.menu_tabs_title{
	position: relative;
	display: inline-block;
    color: #333;
	font-weight: 500;
	margin-right: 40px;
}

.menu_tabs_title:hover{
	cursor: pointer;
}

.menu_tabs_title i{
	pointer-events: none !important;
}

.c_spetsm .menu_links_columns{
    display: grid;
	grid-template-columns: repeat(5,1fr);
	grid-column-gap: 15px;

}

.c_loveks .menu_links_columns{
    display: grid;
	grid-template-columns: repeat(6,1fr);
	grid-column-gap: 15px;

}

.active_tab{
	display: inline-block;
}

.title_back{
	display: none;
	position: absolute;
	height: 15%;
    width: 40%;
    z-index: 10;
    bottom: 0;
	left: 18px;
}

.links_title,
.links_title a{
	font-size: 14px;
	color: #333;
	font-weight: 500;
	margin: 25px 0px 15px;
}

.links_title a,
.links_title a:hover{
	text-decoration: none;
}

.links_item{
	position: relative;
	color: darkgrey !important;
	font-size: 13px;
	font-weight: 300; 
	margin-bottom: 10px;
}

.spm_links,
.spm_text_color{  
	background: #F6B352;
}

.lv_links,
.lv_text_color{
	background: #30A9DE;
}

.links_item:hover .link_item_back{
	height: 25%;
    width: 10%;
}

.links_item:hover a{
	color: #333 !important;
    text-decoration: none !important;
	font-weight: 500 !important;
}

.link_item_back{
	position: absolute;
    height: 0%;
    width: 0%;
    z-index: 1;
	bottom: 0;
}

.link_item_text{
	position: relative;
	color: grey;
	z-index: 1000;
}

.menu_support{
    color: grey;
    margin: 30px 0 10px;
    font-size: 13px;
    font-weight: 300;
}

.menu_support div{
	display: inline-block;
}

.menu_support div a{
	display: inline-block;
	font-size: 12px;
    font-weight: 400;
    color: grey;
	text-decoration: none;
}

.menu_support div a:hover{
    font-weight: 500;
    color: #333;
	text-decoration: none;
}

/* NOTIFICATION CENTER */

.noti_center{
	font-family: 'Roboto' !important;
	position: absolute;
    z-index: 1000;
    background: #fff;
    padding: 25px;
    border-radius: 3px;
	width: 350px;
	box-shadow: 0px 2px 10px 0px #80808080;
	display: none;
}

.noti_center_title{
	margin-bottom: 20px;
}
 
.center_title_text{
	display: inline-block;
	width: 60%;
	color: #333;
	font-size: 16px;
	font-weight: 500;
}

.center_title_buttons{
	display: inline-block;
	font-size: 14px;
	float: right;
}

.center_title_button{
	display: inline-block;
	color: lightgrey;
	text-align: right;
	margin-left: 2px;
	background: #efefef;
	padding: 2px 7px;
	border-radius: 3px;
}

.center_title_button:hover{
	cursor: pointer;
	color: grey;
}

.noti_center_body{
	max-height: 300px;
	overflow-y: auto;
}

.noti_center_body::-webkit-scrollbar{
	width: 1px !important;
}

.noti_item{
	background: #efefef;
	border-radius: 3px;
	padding: 10px;
	position: relative;
	margin-bottom: 5px;
}

.noti_empty{
	text-align:center; 
	font-size: 12px; 
	font-weight: 300; 
	color: grey; 
	margin-bottom: 15px;
}

.noti_item_seen{
	background: #efefef7a !important;
}

.noti_item_seen div,
.noti_item_seen a{ 
	color: #8080806b !important;
}

.noti_item:hover .noti_item_delete{
	display: inline-block;
}

.noti_item_left,
.noti_item_right{
	display: inline-block;
}

.noti_item_left{
	width: 5%;
}

.noti_item_right{
	width: 90%;
}

.noti_item_status{
	font-size: 12px;
	color: grey;
	top: 10px;
    position: absolute;
}

.noti_status_done{
	color: #8FBC94;
}

.noti_status_add{
	color: #C5E99B;
}

.noti_status_change{
	color: grey;
}

.noti_status_away{
	color: #FDD692;
}

.noti_item_delete{
	display: none;
	position: absolute;
	top: 10px;
	right: 10px;
    font-size: 12px;
    color: lightgray;
}

.noti_item_delete:hover{
	cursor: pointer;
	color: grey;
}

.noti_item_text{
	font-size: 13px;
	color: #333;
	font-weight: 400;
}

.noti_item_text a{
	text-decoration: none;
	border-bottom: 1px dotted grey;
	color: grey;
}

.noti_item_time{
	color: #888888;
    font-size: 10px;
    font-weight: 200;
}

/* MENU CALCULATION */
.calculation_block * {
	box-sizing: border-box;
	font-family: 'Roboto';
}

.calculation_block{
	position: absolute;
    width: 550px;
    background: #fff;
    padding: 25px;
	top: 65px;
	right: 10px;
    border-radius: 3px;
    box-shadow: 0px 2px 10px 0px #80808080;
    z-index: 10000;
}

.calc_head_title{
	display: inline-block;
    color: #333;
    font-size: 16px;
    font-weight: 500;
	margin-bottom: 10px;
}

.calc_head_buttons{
	float: right;
}

#calc_close,
#calc_math,
#calc_undo,
#calc_send{
	display: none;
}

.calc_head_button{
	box-sizing: border-box;
	display: inline-block;
	margin-left: 5px;
	background: #efefef;
	border-radius: 3px;
	font-size: 12px;
	color: grey;
	padding: 5px 10px !important;
}

.calc_subhead{
	width: 100%;
	display: none;
    background: #efefef;
	border-radius: 3px;
    padding: 10px;
    font-weight: 300;
    font-size: 13px;
    color: grey;
}

.calc_subhead div{
	display: inline-block;
}

.calc_subhead_buttons{
	float: right;
}

.subhead_button{
	padding: 2px 7px;
	border-radius: 3px;
	margin-left: 7px;
	font-size: 12px;
}

.subhead_button:hover{
	cursor: pointer;
}

.calc_subhead_accept{
	background: #C5E99B;
}

.calc_subhead_denide{
	background: lightgrey;
}

.calc_body_titles{
	border-bottom: 2px solid #efefef;
}

.body_title_item{
	display: inline-block;
    font-size: 14px;
    margin-right: 25px;
    font-weight: 400;
    color: #333;
}

.body_title_item_active{
	font-weight: 500;
}

.body_title_item:hover{
	cursor: pointer;
	color: #f5b85c;
}

.calc_footer div{
	display: inline-block;
}

.calc_footer{
	width: 100%;
	padding: 5px;
	margin-top: 20px;
    border-radius: 3px;
	background: #efefef;
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.calc_footer_total{
	float: right;
}



@media screen and (max-width: 1440px) {
	#menu {
		margin: 10px 0.7% 0;
		width: 98.6%;
	}

	.menu_bottom_right{
		width: 95.5%;
		margin: 20px 0 0 15px;
	}

	.links_item{
		font-size: 12px;
	}
}