/*
Default
*/
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  cursor: pointer;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/*
Allgemein
*/
html, body {
	width: 100%;
	height: 100%;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	font-weight: 400;
	padding: 0px;
	margin: 0px;
	background-color: #f2f4f8;
	color: #2b333e;
	-webkit-font-smoothing: antialiased;
}

p {
	padding: 0px;
	margin: 0px;
}
a, a:link, a:active, a:visited, a:hover {
	text-decoration: none;
	cursor: pointer;
}
input, textarea, table {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	padding: 0px;
}

span > a, span > a:link, span > a:visited, span > a:active, span > a:hover {
	color: #2b333e;
}

label {
	cursor: pointer;
}
input[type="button"], input[type="submit"], input[type="text"], input[type="search"], input[type="number"], select, button {
	font-family: 'Roboto Condensed', sans-serif;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	/* border: none; */
}
input[type="button"] {
	height: 40px;
	line-height: 40px;
	border: 1px solid transparent;
	background-color: #54592A;
	color: white;
	box-sizing: border-box;
	border-radius: 3px;
	margin-right: 5px;
	padding-left: 5px;
	padding-right: 5px;
	cursor: pointer;
}

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

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

/*
Standard Select-Field
*/

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	font-size: 1em;
	width: 100%
}
/*
Customizing
*/
.tooltip {
	display: none;
	position: absolute;
	border: 1px solid #2b333e;
	background-color: rgba(43,51,62,0.75);
	border-radius: 3px;
	padding: 5px 10px 5px 10px;
	color: white;
	font-size: 14px;
	font-family: 'Roboto Condensed', sans-serif;
}
/*
Content, Header
*/

.navbar-default {
	background-color: #54592A !important;
	height: 80px;
}
.navbar-logo, .navbar-logo:link, .navbar-logo:active, .navbar-logo:visited {
	color: white;
}




.content_area {
	height: 100%;
	box-sizing: border-box;
}
.header_box {
	width: 100%;
	height: 80px;
	background-color: #54592A;
	box-sizing: border-box;
}
.content_box {
	height: auto;
	background-color: #f2f4f8;
	box-sizing: border-box;
	padding: 20px;
}
.inv_response_box, .article_response_box {
	height: auto;
	background-color: #f2f4f8;
	box-sizing: border-box;
	padding: 20px;
	display: none;
}
.content_value_box {
	background-color: white;
	border-radius: 5px;
	padding: 30px;
	margin-top: 20px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
.content_value_box_title {
	font-size: 28px;
	color: #2b333e;
	margin-top: 20px;
}
.content_value_box_utitle {
	font-size: 20px;
	color: #ccc;
	text-transform: lowercase;
}
/*
Login
*/

#login_main {
	width: 700px;
	min-height: 300px;
	background-color: #2b333e;
	margin: 0px auto;
	margin-top: 100px;
	border-radius: 5px;
	padding-bottom: 50px;
}
#login_main > #login_title {
	background-color: #54592A;
	height: 80px;
	width: 100%;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 36px;
	color: white;
	line-height: 80px;
	text-align: center;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	margin-bottom: 20px;
}
#login_main > .login_row {
	width: 100%;
	height: 50px;
	box-sizing: border-box;
}
.login_row > .login_inp_text {
	min-width: 200px;
	width: 60%;
 	height: 40px;
	line-height: 40px;
	border: 1px solid transparent;
	border-radius: 3px;
	background-color: #f2f4f8;
	color: #2b333e;
	box-sizing: border-box;
	text-align: center;
}
.login_row > .login_inp_text:focus {
	outline: none !important;
	box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
}
.login_row > .login_inp_chk {
	display: none;
}
.login_row > .login_inp_chk:checked + .login_inp_label:before {
	content: '\e834';
}
.login_inp_label:before {
	font-family: 'Material Icons';
	width: 20px;
	height: 20px;
	content: '\e835';
	color: white;
	margin-right: 20px;
	vertical-align: middle;
}
.login_row > .login_inp_label {
	color: white;
	cursor: pointer;
}
.login_row > .login_inp_button {
	min-width: 200px;
	width: 40%;
	height: 40px;
	font-weight: 700;
	line-height: 40px;
	color: white;
	border: 1px solid transparent;
	border-radius: 3px;
	background-color: #A2A633;
	box-sizing: border-box;
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
	margin-top: 10px;
}
.login_row > .login_inp_button:hover {
	box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
}
#login_error_message {
	display: none;
	color: #fc5047;
	line-height: 50px;
	box-sizing: border-box;
	padding-top: 20px;
}
/*
Dashboard
*/

#user_login_info {
	float: right;
}
#user_login_info_icon, #user_login_dashboard_icon, #user_login_cart_icon {
	width: 32px;
	height: 32px;
	float: right;
	line-height: 32px;
	background-color: #54592A;
	margin-top: 24px;
	text-align: center;
	border-radius: 3px;
	margin-right: 10px;
}
#user_login_cart_icon {
	margin-right: 30px;
}
#user_login_exit_icon {
	width: 32px;
	height: 32px;
	float: right;
	line-height: 32px;
	background-color: #54592A;
	margin-top: 24px;
	text-align: center;
	border-radius: 3px;
	margin-right: 40px;
}
#user_navigate_next, #user_navigate_back {
	width: 32px;
	height: 32px;
	float: right;
	line-height: 32px;
	background-color: #54592A;
	margin-top: 24px;
	text-align: center;
	border-radius: 3px;
	margin-right: 10px;
}
#user_login_info_icon > i, #user_login_exit_icon > i, #user_login_exit_icon > a, #user_login_dashboard_icon > i, #user_login_dashboard_icon > a, #user_login_cart_icon > i, #user_login_cart_icon > a, #user_navigate_next > i, #user_navigate_next > a, #user_navigate_back > i, #user_navigate_back > a {
	font-size: 24px;
	vertical-align: middle;
	color: white;
	margin: 0px;
	cursor: pointer;
	margin-bottom: 3px;
}
#user_login_dashboard_micon, #user_login_cart_micon, #user_login_exit_micon, #user_navigate_next_micon, #user_navigate_back_micon {
	padding-top: 4px;
}
#user_login_info > div:hover {
	box-shadow: 0 0 10px 0 rgba(255,255,255,0.75);
	-webkit-user-select: none;
	-webkit-touch-callout: none;
}

.dashboard {
	border-collapse: inherit;
}
.dashboard_slogan {
	width: 300px;
	height: 80px;
	background-color: #54592A;
	box-sizing: border-box;
	float: left;
	text-transform: uppercase;
	font-size: 24px;
	color: white;
	font-weight: 700;
	line-height: 80px;
	text-align: center;
}
.dashboard_slogan > a, .dashboard_slogan > a:visited, .dashboard_slogan > a:hover, .dashboard_slogan > a:active {
	width: 300px;
	height: 80px;
	background-color: #54592A;
	box-sizing: border-box;
	float: left;
	text-transform: uppercase;
	font-size: 24px;
	color: white;
	font-weight: 700;
	line-height: 80px;
	text-align: center;
}
.dashboard_btn_cell {
	border-radius: 5px;
	background: #8A8C3E;
	color: white;
	width: 28%;
	height: 100px;
	line-height: 100px;
	font-size: 24px;
	font-weight: 700;
	text-align: center !important;
	padding: 10px;
}

.dashboard_btn_cell:hover, .dashboard_btn_cell:active {
	background: rgba(43, 51, 62, 0.8);
	outline: none !important;
	box-shadow: 0 0 10px 0 rgba(84, 89, 42, 0.5);
	color: white;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
}
.dashboard_btn_cell > a, .dashboard_btn_cell > a:visited, .dashboard_btn_cell > a:hover {
	color: white;
}
.dashboard_btn_cell:hover > a, .dashboard_btn_cell:active > a {
	color: white;
}
.article_list_link {
	color: #2b333e;
}
#inv_search_input, #article_search_input, .article_input {
	/*
	width: 100%;
	height: 40px;
	line-height: 40px;
	border: 1px solid #54592A !important;
	background-color: white;
	color: #2b333e;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	border-radius: 3px;
	*/
}
#inv_search_input:active, #inv_search_input:focus, #article_search_input:active, #article_search_input:focus, .article_input:focus, .article_input:active {
	/*
	border: 1px solid #54592A;
	background-color: white;
	outline: none !important;
	box-shadow: 0 0 10px 0 rgba(84, 89, 42, 0.5);
	*/
}
.article_textarea {
	width: 100%;
	height: 40px;
	line-height: 40px;
	border: 1px solid #54592A !important;
	background-color: white;
	color: #2b333e;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	border-radius: 3px;
}
.article_textarea:active, .article_textarea:focus {
	border: 1px solid #54592A;
	background-color: white;
	outline: none !important;
	box-shadow: 0 0 10px 0 rgba(84, 89, 42, 0.5);
}
#inv_search_grp, #article_search_grp, .article_select {
	/*
	border: 1px solid #54592A;
	padding: 5px 5px 5px 10px;
	line-height: 30px;
	background-color: white;
	background-image: url('../img-files/form_select.png');
	background-size: 20px 16px;
	background-position: right;
	background-repeat: no-repeat;
	border-radius: 3px;
	*/
}
#inv_search_grp:active, #inv_search_grp:focus, #article_search_grp:active, #article_search_grp:focus, .article_select:focus, .article_select:active {
	/*
	border: 1px solid #54592A;
	background-color: white;
	outline: none !important;
	box-shadow: 0 0 10px 0 rgba(84, 89, 42, 0.5);
	*/
}
#inv_search_reset, #inv_search_grp_reset, #article_search_reset, #article_search_grp_reset {
	font-size: 20px;
	/* margin: 0px; */
	cursor: pointer;
	/* line-height: 32px; */
	margin-left: 5px;
}

/*
dataTable - Anpassungen
*/

.dataTables_length, .dataTables_info {
	font-size: 18px;
}

#inventur_analysis_filter > label > .input, #inventur_product_list_filter > label > .input, #inventur_overview_filter > label > .input  {
	height: 40px;
	line-height: 40px;
	border: 1px solid #54592A !important;
	background-color: white;
	color: #2b333e;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	border-radius: 3px;
}

#article_product_list_length, #inventur_overview_length, #inventur_product_list_length, #seller_price_length {
	margin-bottom: 25px;
}
#article_product_list_length > label > div > select, #inventur_overview_length > label > div > select, #inventur_product_list_length > label > div > select, #seller_price_length > label > div > select, #inventur_analysis_length > label > div > select {
	width:80px;
}
#article_product_list_info, #article_product_list_paginate, #inventur_overview_info, #inventur_overview_paginate, #inventur_product_list_info, #inventur_product_list_paginate, #seller_price_info, #seller_price_paginate {
	margin-top: 25px;
	margin-bottom: 25px;
}
#article_price_length {
	display:none;
}