@charset "UTF-8";
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, table {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  padding: 0px;
  margin: 0px;
  cursor: default;
  text-align: left;
}

/* ===================================================================================================
							GÓRA
	================================================================================================= */
	
#header {
	display: flex; 
	align-items: center;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#cadcff), to(#a9c8ff)); 
	background-image: linear-gradient(#cadcff, #a9c8ff);
	min-height: 25px;
	border-bottom: 1px solid #7890bb;
	margin-bottom:10px;
}
#header .h_right { text-align:right; flex-grow:0; padding-right:5px; }

@media (max-width:500px) {
	#header .h_right { font-size:9px; }
}

#footer { margin-top:10px; padding:10px; box-shadow: 0px -2px 4px #0004; background-image: url(../image/bg.png); text-align:center; position: relative; }
#info_system { position: absolute; bottom:10px; right:15px; font-size:14px; }




/* ===================================================================================================
							MENU GŁÓWNE
	================================================================================================= */
#main_menu {
  margin-top: 5px;
  height: 65px;
  position: relative;
  background-image: url('../image/bg_menu.gif');
  background-repeat: repeat-x;
  background-position: center bottom; 
}

#main_menu > div.menu_flex {
  display: flex;
  z-index: 1;
}

#main_menu > div.menu_flex > div.logo {
  margin: 5px 0 0 25px;
  height: 52px;
  flex: 0 0 155px;
  border-radius: 50px;
  border-top: 2px solid #7aaafe;
  border-bottom: 2px solid #ff9e22;
  border-left: 2px solid #ff9e22;
  border-right: 2px solid #ff9e22;
  background-color: #fff;
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

#main_menu > div.menu_flex > div.logo img {
  width: 100%;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}

#main_menu > div.menu_flex > div:last-child {
	overflow-x:auto;
	padding:3px;
	margin-left: 10px;
	margin-top: 10px;
}

#main_menu > div.menu_flex div.menu_elements {
  display: flex;


}

#main_menu > div.menu_flex div.menu_elements > a {
  text-align: center;
  margin-right: 5px;
  text-decoration: none;
  min-width: 60px;
  overflow: hidden;
  padding: 0 5px;
}

#main_menu > div.menu_flex div.menu_elements > a > img {
  display: block;
  margin: auto;
  max-height: 36px;
}

#main_menu > div.menu_flex div.menu_elements > a:hover {
  -webkit-box-shadow: 0px 0px 2px #534141;
          box-shadow: 0px 0px 2px #534141;
  background-color: rgba(242, 242, 242, 0.5);
  border-radius: 3px;
  color: #ee000b;
}

#main_menu > div.menu_flex div.menu_elements > a.active {
  -webkit-box-shadow: 0px 0px 2px #534141;
          box-shadow: 0px 0px 2px #534141;
  background-color: #f2f2f2;
  border-radius: 3px;
  color: #ee000b;
}


/* ===================================================================================================
							MENU LEWE
	================================================================================================= */
#main_content { display:flex; width:100%; overflow:hidden; }
#main_content > .menu { overflow:hidden; background-color: #fcfcfc; margin: 0 10px 0 10px; box-shadow: 1px 0px 3px #f3f3f3; transition: min-width 1s, max-width 1s; }
#main_content > .content { overflow:auto; width:100%; margin-right: 10px; }
	
/*  ================================================================================================== 
								FLEX TABLE
	================================================================================================== */
nav.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 5px;
}

nav.pagination > div.pagination_left {
  width: 15px;
  color: #959191;
  cursor: pointer;
  position: relative;
}

nav.pagination > div:nth-child(2) > input {
  width: 40px;
  text-align: center;
}

nav.pagination > div:nth-child(3) {
  width: 30px;
  text-align: center;
}

nav.pagination > div.pagination_totalPages {
  margin: 0 5px 0 0px;
}

nav.pagination > div.pagination_right {
  width: 15px;
  color: #959191;
  cursor: pointer;
  position: relative;
}

nav.pagination > div.pagination_right::after {
  content: '';
  left: 0px;
  top: -5px;
  width: 12px;
  height: 12px;
  border: solid black;
  border-width: 3px 3px 0 0;
  border-color: #959191;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  border-radius: 2px;
}

nav.pagination > div.pagination_left::after {
  content: '';
  left: 0px;
  top: -5px;
  width: 12px;
  height: 12px;
  border: solid black;
  border-width: 0 0 3px 3px;
  border-color: #959191;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  border-radius: 2px;
}

nav.pagination > div.pagination_hide {
  visibility: hidden;
}

/* ===================================================================================================
							LOADING
	================================================================================================= */
	
.box_loading { background-color:#ffffffb5; z-index:10; position:absolute; left:0px; right:0px; top:0px; bottom:0px; padding-left: calc(50% - 50px); padding-top: 150px; }
.box_loading > .loader {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid blue;
  border-bottom: 8px solid blue;
  -webkit-animation: loader-spin 2s linear infinite;
  animation: loader-spin 2s linear infinite;
  width:100px;
  height:100px;
}

@-webkit-keyframes box-loader-spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes box-loader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===================================================================================================
							FORMULARZE
	================================================================================================= */
input[type=text],
input[type=file],
select:not([multiple]),
input[type=password],
textarea {
  border: 1px solid #bbb;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  padding: 1px;
  margin: 0px;
  border-radius: 2px;
  font-size: 1rem;
}

input[type=text], input[type=password] { width: 180px; }
input.noBorder { border:0px; background: transparent !important; }

input:not[type=checkbox]:focus,
select:focus,
button:focus,
textarea:focus { outline-style: groove; outline-color: #006eff; outline-offset: 0px; outline-width: 2px; }

input.buts {
  font-weight: bold;
}

input[type=submit],
input[type=reset],
button,
input[type=button] {
  border-radius: 2px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  min-width: 54px;
  outline: 0px;
  background: #e4e4e4;
  border: 1px solid #c0c0c0;
  color: #333;
  font-weight: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 2px 6px 2px 0px;
}

input[type=submit] {
  font-weight: bold;
}

input[type=submit]:hover, input[type=submit]:focus, input[type=submit]:active,
input[type=reset]:hover, input[type=reset]:focus, input[type=reset]:active,
button:hover, button:focus, button:active,
input[type=button]:hover, input[type=button]:focus, input[type=button]:active {
  background-color: #d4d4d4;
}

input[type=submit]:disabled,
input[type=button]:disabled,
button:disabled,
input[type=password]:disabled {
  color: #777;
  cursor: default;
}

input[type=text]:disabled {
  background-color: #e4e2e2;
  color: #959191;
}

input[type=text]:-moz-read-only {
  background-color: #f9f9f9;
}

input[type=text]:read-only {
  background-color: #f9f9f9;
}

label.checkbox {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	margin-bottom: 1px;
	cursor: pointer;
	font-size: 1rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 18px;
	padding-top: 1px;
	
}


label.checkbox > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  display: none;
}

label.checkbox > span {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #fff;
  border: 1px solid #adb5bd;
  border-radius: 2px;
}

label.checkbox span:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

label.checkbox input ~ span {
  background-color: #fff;
}

label.checkbox input:checked ~ span {
  background-color: #2196F3;
  border: none;
}

label.checkbox > span:after {
  content: "";
  position: absolute;
  display: none;
}

label.checkbox input:disabled ~ span {
  background-color: #ccc;
}

label.checkbox input:checked ~ span:after {
  display: block;
}

label.checkbox.x2 {
  padding-left: 25px;
  margin-bottom: 1px;
	height: 16px;
  padding-top:6px;
}

label.checkbox.x2 > span {
  height: 20px;
  width: 20px;
}

label.checkbox.x2 span:after {
  left: 6px;
  top: 1px;
  width: 8px;
  height: 15px;
}

/* =========== float labels */

label.floatLabel {
	display:inline-block;
    margin-top:9px;
    position:relative;
}
label.floatLabel > input{
    padding:7px 2px 4px 2px;
	border-radius:4px;
}
label.floatLabel > input::placeholder{
    opacity:0;
}
label.floatLabel > span{
    position:absolute;
    top:8px;
    left:2px;
	padding:0px 5px;
    font-size:0.825em;
    transition-duration:300ms;
	background-color:transparent;
	cursor:text;
	border-radius:3px;
	transition: all 0.3s;
	color:#999;
}

label.floatLabel:focus-within > span,
label.floatLabel > input:not(:placeholder-shown) + span{
    top:-6px;
	color:#707070;
	background-color:#ddd;
	padding: 1px 5px;
}

/* ================================= ends forms ================================================= */
div.footer_window {
  position: fixed;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-color: #f9f9f9;
  padding: 5px 2px;
  margin: 0px;
  -webkit-box-shadow: 0px -1px 4px #d0d0d0;
          box-shadow: 0px -1px 4px #d0d0d0;
  text-align: center;
}

body.footer_window {
  margin-bottom: 40px;
}

/* ================================================================================== */
.ro {
  background-color: #F2F2F2;
}

a:link, a:visited {
  color: #006699;
  text-decoration: none;
}

a:hover, a:active {
  color: #ff9933;
  text-decoration: none;
}

a.menu {
  display: table;
  width: 75px;
  float: left;
  color: #006699;
}

a.menu:hover {
  color: #000;
  text-decoration: none;
}

a.orange_ball {
  padding-left: 12px;
  background: url(../image/orange-ball.png) no-repeat left center;
  color: #006699;
}

a.menu1 {
  display: block;
  text-decoration: none;
  background-image: url(../image/orange-ball.png);
  background-repeat: no-repeat;
  background-position: 0px 4px;
  padding: 2px 8px 2px 11px;
  margin: 2px;
}

a.menu1:hover {
  -webkit-box-shadow: 0px 0px 2px #534141;
          box-shadow: 0px 0px 2px #534141;
  background-color: #f2f2f2;
  border-radius: 3px;
  color: #ee000b;
}

.tabelka {
  border: 1px solid #9c9c9c;
  display: block;
  float: left;
}

.tabelka_center {
  border: 1px solid #9c9c9c;
  display: block;
  margin: 0 auto;
  box-shadow: 4px 4px 8px #00000026;
}

.tab_naglowek {
  border-bottom: 1px solid #c0c0c0;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  color: #666666;
  padding-top: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#eaeae9), to(#f4f5f4)) repeat-x top left;
  background: linear-gradient(#eaeae9, #f4f5f4) repeat-x top left;
  display: block;
  height: 25px;
}

.tab_tresc {
  text-align: left;
  margin: 8px;
  overflow:auto;
}

.tab_lewa_naglowek {
  border-bottom: 1px solid #c0c0c0;
  width: 100%;
  font-weight: bold;
  text-align: center;
  color: #666666;
  background: url(../image/resize.png) no-repeat top right #ddd;
  display: block;
  height: 15px;
}

.tab_lewa {
  border: 1px solid #9c9c9c;
  padding: 0px;
  margin: 0px;
  margin-bottom: 10px;
  display: table;
}

.table {
  border: 1px solid #b8c0c6;
}

.table_naglowek {
  background-color: #d3dce3;
  height: 30px;
  font-weight: bold;
  text-align: center;
}

.br {
  border-bottom: 1px solid #b8c0c6;
  border-right: 1px solid #b8c0c6;
}

.li {
  border-bottom: 1px solid #b8c0c6;
}

.wiersz_1 {
  background-color: #fff;
  height: 25px;
}

.wierszH_1 {
  height: 25px;
  background-color: #bbddff;
}

.wiersz_2 {
  background-color: #f1f1f1;
  height: 25px;
}

hr { border: 0; height: 1px; background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)); }

.center {
  margin: 0px auto;
}

.t_right {
  text-align: right;
}

.t_left {
  text-align: left;
}

.t_center {
  text-align: center;
}

.red {
  color: #f00 !important;
}

.yellow {
  color: #f00;
}

.green {
  color: #0a0 !important;
}

.gray {
  color: #a0a0a0 !important;
}

.blue {
  color: #009 !important;
}

.bold {
  font-weight: bold !important;
}

.normal {
  font-weight: normal !important;
}

.t_9 {
  font-size: 9px;
}

.t_10 {
  font-size: 10px;
}

.t_12 {
  font-size: 12px;
}

.t_14 {
  font-size: 12px;
}

.t_16 {
  font-size: 12px;
}

.nowrap { 
	white-space: nowrap;
}

.mb_3 {
  margin-bottom: 3px;
}
.mb-2, .my-2 { margin-bottom: .5rem !important; }
.mt-2, .my-2 { margin-top: .5rem !important; }

.clear {
  clear: both;
}

.arrow_up_down {
  width: 12px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
}

.arrow_up_down img:last-child {
  top: 8px;
}

.arrow_up_down img:first-child {
  top: 0px;
}

.arrow_up_down img.pointer {
  cursor: pointer;
  position: absolute;
}

a.button img {
  margin: 1px 0px 0px 1px;
  border: 1px solid transparent;
}

a.button:hover img {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  margin: 0px 1px 1px 0px;
}

a.button.inactive { cursor:default; }
a.button.inactive img { filter:alpha(opacity=30);-moz-opacity:0.3; opacity:0.3 }
a.button.inactive:hover img { border: 1px solid transparent; margin:1px 0px 0px 1px; }

.button_checkbox {
  display: inline-block;
  padding: 4px;
  background-color: #d4d0c8;
  border: 1px solid #bbbbbb;
  cursor: pointer;
  margin: 2px 0;
}

.button_checkbox > input {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  cursor: pointer;
}

.button_checkbox:hover {
  background: #dddddd;
}

#dhtmltooltip {
  text-decoration: none;
  position: absolute;
  border: 2px solid #d2d2d2;
  border-radius: 5px;
  padding: 5px;
  background-color: #fff;
  z-index: 100;
  box-shadow: 0 0 5px #aaa;
  font-size: 13px;
}

#okno_popup {
  position: absolute;
  border: 1px solid #000;
  background-color: #fff;
  visibility: hidden;
  z-index: 0;
}

#okno_popup .okno_popup_nag {
  background: url(../image/okno_nag.png) bottom left repeat-x;
  height: 20px;
  border-bottom: 1px solid #C0C0C0;
  font-weight: bold;
  text-align: left;
  padding-top: 3px;
  padding-left: 10px;
}

#okno_popup .okno_popup_nag img {
  padding-right: 5px;
  padding-top: 3px;
}

/* ============= okno pupop np admin_podglad ==================== */
/* ==== pamietaj inne style sa dla mobile */
.mainWindowPopUp {
	padding:15px; 
	overflow-y: scroll;
}
/* ====================== koniec =============================== */

a.a_zakladka {
  display: table;
  padding: 5px;
  text-decoration: none;
  font-weight: bold;
}

.mainSG {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #a0a0a0;
  max-width: 600px;
  width: 95vw;
}

.mainSG:hover {
  background-color: #f1f1f1;
  text-decoration: none;
}

.kal_gl_tab {
  border: 1px solid #9C9C9C;
}

.kal_days_0 {
  font-size: 9px;
  height: 18px;
  color: #ddd;
  background-color: #F3F2F2;
  border-right: 1px solid #EAEBEA;
  border-bottom: 1px solid #EAEBEA;
}

.kal_days_2 {
  font-size: 9px;
  cursor: pointer;
  height: 18px;
  color: #000000;
  background-color: #F3F2F2;
  border-right: 1px solid #bab1b1;
  border-bottom: 1px solid #bab1b1;
}

.kal_days_6 {
  font-size: 9px;
  cursor: pointer;
  height: 18px;
  color: #ff0000;
  background-color: #F3F2F2;
  border-right: 1px solid #bab1b1;
  border-bottom: 1px solid #bab1b1;
}

.kal_days_7 {
  font-size: 9px;
  cursor: pointer;
  height: 18px;
  color: #ee0000;
  background-color: #F3F2F2;
  border-right: 1px solid #bab1b1;
  border-bottom: 1px solid #bab1b1;
}

.kal_gl_td1 {
  background-color: #DDDDDD;
  font-weight: bold;
}

.kal_days_no, .kal_days_so, .kal_days_nd {
  background-color: #DDDDDD;
  border-right: 1px solid #9C9C9C;
  border-bottom: 1px solid #9C9C9C;
  border-top: 1px solid #d6d4e7;
  border-left: 1px solid #d6d4e7;
  height: 16px;
}

.kal_days_over {
  font-size: 9px;
  cursor: pointer;
  border-left: 1px solid #bab1b1;
  border-top: 1px solid #bab1b1;
  height: 16px;
}

.kal_font_1 {
  color: #000000;
  text-decoration: underline;
}

.kal_font_2 {
  color: #000000;
  font-weight: bold;
}

.bor_t {
  border-top: 1px solid #000;
}

.bor_l {
  border-left: 1px solid #000;
}

.bor_r {
  border-right: 1px solid #000;
}

.bor_b {
  border-bottom: 1px solid #000;
}

/* ===================================== MessageBox ===================================== */
.myMessageBoxContents {
  /* font-size: 14px;  usunąłem bo za duże było litery w wystawinaie faktury na podstawie proformy */
}

/* ===================================== Tabela z danumi ===================================== */
table.tabData > tbody > tr > td {
  white-space: nowrap;
}

/* notatki */
.notatka {
  float: left;
  width: 400px;
  min-height: 240px;
  border-radius: 10px;
  padding: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.notatka_zielony {
  background: #00a000;
  border: 1px solid #004100;
}

.notatka_czerwony {
  background: #a00000;
  border: 1px solid #410000;
}

.notatka_niebieski {
  background: #0000a0;
  border: 1px solid #000041;
  color: #ffffff;
}

.notatka_niebieski input, .notatka_niebieski select, .notatka_niebieski textarea {
  color: #ffffff;
}

.notatka_zolty {
  background: #d0d000;
  border: 1px solid #414100;
}

.notatka_szary {
  background: #c0c0c0;
  border: 1px solid #505050;
}

.notatka textarea {
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  width: 100%;
  height: 182px;
  font-size: 14px;
  resize: none;
}

.notatka input,
.notatka input[type="text"]:read-only {
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
}

.notatka input.tyt {
  font-size: 14px;
}

.notatka select {
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  width: 89px;
}

.notatka input:nth-child(1) {
  width: 345px;
}

.notatka img {
  cursor: pointer;
}

/* pasek postępu */
#progressbox {
  border: 1px solid #0099CC;
  padding: 1px;
  position: relative;
  width: 370px;
  border-radius: 3px;
  margin: 0px 10px 10px 10px;
  text-align: left;
}

#progressbar {
  height: 20px;
  border-radius: 3px;
  background-color: #D0DBEF;
  width: 0%;
}

#statustxt {
  top: 3px;
  left: 50%;
  position: absolute;
  display: inline-block;
  color: #000000;
}

#progressbox img {
  margin-left: 10px;
  position: absolute;
  display: inline;
  top: 2px;
  right: -20px;
}

/* Styl dla autocomplete */
.ui-menu-item a > span {
  font-size: 10px;
  display: block;
}

/* koniec */
/* okno informacyjne */
#ramka_ok {
	display: flex;
	align-items: center;
  background-color: #d0e9b7;
  width: 100%;
  margin: 20px auto;
  border: 1px solid #a9c98b;
  border-radius: 9px;
  padding: 15px;
  -webkit-box-shadow: 2px 2px 3px #b7b7b7;
          box-shadow: 2px 2px 3px #b7b7b7;
}

#ramka_ok div:first-child {
  width: 50px;
}

#ramka_ok div.info {
  font-size: 12px;
  font-weight: bold;
  color: #4c7227;
}

/* koniec - okno informacyjne */
/* okno informacyjne */
#ramka_blad {
	display: flex;
	align-items: center;
  background-color: #EDADAD;
  width: 100%;
  margin: 20px auto;
  border: 1px solid #F88;
  border-radius: 9px;
  padding: 15px;
  -webkit-box-shadow: 2px 2px 3px #b7b7b7;
          box-shadow: 2px 2px 3px #b7b7b7;
}

#ramka_blad div:first-child {
  width: 50px;
}

#ramka_blad div.info {
  font-size: 12px;
  font-weight: bold;
  color: #4c7227;
}

/* koniec - okno informacyjne */
/* okno ostrzezenie */
#ramka_ostrzezenie {
	display: flex;
	align-items: center;
	background-color: #ecedad;
	width: calc(100% - 10px);
	margin: 20px auto;
  border: 1px solid #F88;
  border-radius: 9px;
  padding: 15px;
  -webkit-box-shadow: 2px 2px 3px #b7b7b7;
          box-shadow: 2px 2px 3px #b7b7b7;
}

#ramka_ostrzezenie div:first-child {
  width: 50px;
}

#ramka_ostrzezenie div.info {
  font-size: 12px;
  font-weight: bold;
  color: #4c7227;
}

/* koniec - okno ostrzezenie */
/* ===================================================================
                             Pod menu
   =================================================================== */
ul.podmenu {
  list-style: none;
  position: relative;
  border: 1px solid #c0c0c0;
  background-color: #F4F4F3;
  display: block;
  margin: 3px 0px 20px 0px;
  padding: 0px;
}

ul.podmenu li:first-child {
  background: none;
}

ul.podmenu li:last-child {
  float: none;
  background: none;
}

ul.podmenu li {
  float: left;
  padding: 6px;
  height: 35px;
  background: url(../image/podmenu-li.gif) no-repeat 0 13px;
}

ul.podmenu li a {
  border: 1px solid #F4F4F3;
  display: block;
  padding: 5px;
}

ul.podmenu li a.nolink {
  border: 1px solid #D0DBEF;
  display: block;
  padding: 5px;
  color: #c0c0c0;
}

ul.podmenu li a:hover {
  border: 1px solid #9ba8bf;
  background-color: #dbe4f4;
  text-decoration: none;
  color: #006699;
}

ul.podmenu li a.dodaj {
  background: url(../image/dodaj.gif) no-repeat 5px 6px;
  padding-left: 20px;
}

ul.podmenu li a.przegladaj {
  background: url(../image/list.png) no-repeat 5px 3px;
  padding-left: 25px;
}

ul.podmenu li a.nota {
  background: url(../image/nota.gif) no-repeat 5px 3px;
  padding-left: 25px;
}

ul.podmenu li a.statystyki {
  background: url(../image/stat.png) no-repeat 5px 3px;
  padding-left: 25px;
}

ul.podmenu li a.konfig {
  background: url(../image/repair.png) no-repeat 5px 3px;
  padding-left: 25px;
}

#strona_drukowana {
  display: none;
  font-size: 9px;
}

/* DRUKOWANIE */
@media print {
  .body {
    background-image: none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 9px;
  }
  #strona_glowna {
    display: none;
  }
  #strona_drukowana {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 9px;
    display: block;
  }
  #strona_drukowana .table {
    border: 1px solid #b8c0c6;
    font-size: 9px;
  }
  #strona_drukowana .wierszH1 {
    height: 25px;
    background-color: #fff;
  }
  #strona_drukowana .table_naglowek {
    background-color: #d3dce3;
    height: 20px;
    font-weight: bold;
    text-align: center;
  }
}

/* =============================================================================================================
                                     TABELA 
   ============================================================================================================= */
#tabela {
  border: 1px solid #c1c1c1;
  border-spacing: 1px;
}

#tabela > thead > tr {
  background-color: #d0dbef;
  padding: 3px;
}

#tabela > thead tr td {
  border-bottom: 1px solid #7988a4;
  border-right: 1px solid #7988a4;
  padding: 3px;
  font-weight: 400;
}

#tabela > tbody tr:nth-child(even) {
  background-color: #ffffff;
}

#tabela > tbody tr:nth-child(odd) {
  background-color: #f2f1ff;
}

#tabela > tbody tr:hover {
  background-color: #dcdcdc;
}

#tabela > tbody > tr > td.tab_buttons {
  width: 20px;
  text-align: center;
}

#tabela > tfoot > tr {
  background-color: #d0dbef;
  padding: 3px;
}

#tabela > tfoot tr td {
  border-top: 1px solid #7988a4;
  padding: 3px;
}

table.tabela {
  cursor: default;
  border: 1px solid #c1c1c1;
  border-spacing: 1px;
}

table.tabela > thead > tr {
  background-color: #d0dbef;
  padding: 3px;
}

table.tabela > thead > tr > td {
  text-shadow: 1px 1px 0px #fff;
  border-bottom: 1px solid #7988a4;
  border-right: 1px solid #7988a4;
  padding: 3px;
  font-weight: 400;
}

table.tabela > tbody > tr {
  height: 30px;
}

table.tabela > tbody > tr:nth-child(even), table.tabela > tbody > tr table.tabela > tbody tr.wiersz1 {
  background-color: #ffffff;
}

table.tabela > tbody > tr:nth-child(odd), table.tabela > tbody > tr table.tabela > tbody tr.wiersz2 {
  background-color: #f2f1ff;
}

table.tabela > tbody > tr:hover {
  background-color: #dcdcdc;
}

table.tabela > tbody > tr > td {
  border-bottom: 1px solid #dcdcdc;
}

table.tabela > tbody > tr > td.tab_buttons {
  width: 20px;
  text-align: center;
}

table.tabela > tbody > tr > td.brak {
  height: 25px;
  text-align: center;
  font-weight: 400;
}

table.tabela > tfoot > tr {
  background-color: #d0dbef;
  padding: 3px;
}

table.tabela > tfoot tr td {
  border-top: 1px solid #7988a4;
  padding: 3px;
}

.tabela_ramka {
  display: inline-block;
}

.tabela_ramka > .info {
  display: block;
  font-size: 1.2rem;
  border-radius: 2px;
  margin: 10px 0 10px 0;
  padding: 2px 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#fff));
  background-image: linear-gradient(#ddd, #fff);
  text-shadow: -1px -1px 1px #fff;
}

/* ===================================================================================================
						Stronicowanie
	==================================================================================================*/
.pagination {
  display: inline;
  font-weight: bold;
}

.pagination .page_button {
  display: inline-block;
  background-color: #ddd;
  border-radius: 2px;
  padding: 0px 10px;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  border: 1px solid #bdbdbd;
  text-shadow: 1px 1px 0px #fff;
  -webkit-box-shadow: 1px 1px 1px #eaeaea;
          box-shadow: 1px 1px 1px #eaeaea;
  font-size: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pagination .page_button:hover {
  background-color: #d4d4d4;
  text-decoration: none;
}

.pagination .disable {
  color: #959191;
  cursor: default;
}

/* ================================================================================================
							TABS 
	=============================================================================================== */
.tabs {
  border: 1px solid #959191;
  margin: 5px;
  border-radius: 5px;
  overflow: hidden;
}

.tabs > ul {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#ccc));
  background-image: linear-gradient(#e3e3e3, #ccc);
  margin: 0px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0px 0px 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tabs > ul > li {
  font-size: 1.04rem;
  padding-right: 2px;
}

.tabs > ul > li > a {
  display: block;
  color: #959191;
  border: 1px solid #d3d3d3;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 5px 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), color-stop(#eee), color-stop(#e6e6e6), to(#f1f1f1));
  background-image: linear-gradient(#eee, #eee, #e6e6e6, #f1f1f1);
  white-space: nowrap;
  text-decoration:none;
}

.tabs > ul > li > a.active {
  color: #000;
  cursor: default;
  background-color: #fff;
  background-image: none;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #a2a2a2;
  border-left: 1px solid #a2a2a2;
  border-right: 1px solid #a2a2a2;
  -webkit-box-shadow: 0px -1px 2px #b7b7b7;
          box-shadow: 0px -1px 2px #b7b7b7;
	
}

.tabs > div {
  margin: 5px;
}

/* ======================================= fieldset ============================================= */
fieldset {
  background-color: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 10px;
  border: 1px solid #a6a6a6;
  padding: 10px;
}

fieldset.inline {
  display: inline;
}

fieldset > legend {
  font-weight: bold;
  /* 400 */
  padding: 0 10px 2px 5px;
  border: 1px solid #aea3a3;
  border-radius: 6px;
  cursor: default;
  background-image: linear-gradient(#fff, #e3e3e3);
}

/* ======================================= ikonki ============================================= */
.icon_16 {
  display: inline-block;
  width: 16px;
  height: 16px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url(../image/icons_16.png);
}

.icon_16.info {
  background-position: 0px 0px;
}

.icon_16.error {
  background-position: 0px -34px;
}

.icon_16.warning {
  background-position: 0px -85px;
}

/* =========================================== Icon Button ====================================================*/
a.icon-button {
  color: #666;
  cursor: pointer;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  font-size: 17px;
  padding-left: 2px;
  position: relative;
  overflow: hidden;
  margin: 0px 2px 0px 0px;
}

a.icon-button > i {
  position: absolute;
  top: 3px;
  left: 3px;
}

a.icon-button:hover {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  background-color: #0001;
}

a.icon-button:active {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  background-color: #0000;
}

a.icon-button:active > i {
  top: 3px;
  left: 3px;
}

a.icon-button:hover > i {
  top: 2px;
  left: 2px;
}

/* ======================================================== dzwoneczek, powiadomienia ======================== */
.bell_notice {
  display: inline-block;
  height: 13px;
  position: relative;
  width: 17px;
}

.bell_notice > a > img {
  position: absolute;
  width: 18px;
  top: -3px;
  right: 0px;
}

.bell_notice span.count {
  display: inline-block;
  position: absolute;
  background-color: #fff300;
  color: #000;
  right: -4px;
  top: -3px;
  padding: 1px 4px;
  border-radius: 5pc;
  font-size: 0.8rem;
  font-weight: bold;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.bell_notice > .box {
  position: absolute;
  background-color: #f0f0f0;
  border-radius: 2px;
  border: 1px solid #aaa;
  -webkit-box-shadow: 2px 2px 5px rgba(100, 100, 100, 0.7);
          box-shadow: 2px 2px 5px rgba(100, 100, 100, 0.7);
  z-index: 99;
  top: 23px;
  font-size: 1.1rem;
  width: 300px;
  text-align: left;
  left: -45px;
}

.bell_notice > .box > .top {
  padding: 10px;
  background-color: #dbdbdb;
  font-weight: bold;
}

.bell_notice > .box > .footer {
  padding: 10px;
  background-color: #dbdbdb;
}

.bell_notice > .box > .middle {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  max-height: 300px;
  overflow-y: auto;
}

.bell_notice > .box > .middle > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #d7d7d7;
  padding: 10px;
  font-size: 1rem;
  cursor: pointer;
}

.bell_notice > .box > .middle > li:hover {
  background-color: #eaeaea;
}

.bell_notice > .box > .middle > li > div:last-child > div:first-child {
  height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bell_notice > .box > .middle > li > div:last-child > div:last-child {
  padding-top: 5px;
  font-style: italic;
}

.bell_notice > .box > .middle > li > div:first-child {
  padding-right: 7px;
}

/* ======================================================== ZADANIA ======================== */
.tasks-icon {
  display: inline-block;
  height: 13px;
  position: relative;
  width: 17px;
}

.tasks-icon > a > img {
  position: absolute;
  width: 18px;
  top: -6px;
  right: 6px;
}

.tasks-icon span.count {
  display: inline-block;
  position: absolute;
  background-color: #fff300;
  color: #000;
  right: 0px;
  top: -3px;
  padding: 1px 4px;
  border-radius: 5pc;
  font-size: 0.8rem;
  font-weight: bold;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.tasks-icon > .box {
  position: absolute;
  background-color: #f0f0f0;
  border-radius: 2px;
  border: 1px solid #aaa;
  -webkit-box-shadow: 2px 2px 5px rgba(100, 100, 100, 0.7);
          box-shadow: 2px 2px 5px rgba(100, 100, 100, 0.7);
  z-index: 99;
  top: 23px;
  font-size: 1.1rem;
  width: 300px;
  text-align: left;
  left: -45px;
}

.tasks-icon > .box > .top {
  padding: 10px;
  background-color: #dbdbdb;
  font-weight: bold;
}

.tasks-icon > .box > .footer {
  padding: 10px;
  background-color: #dbdbdb;
}

.tasks-icon > .box > .middle {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  max-height: 300px;
  overflow-y: auto;
}

.tasks-icon > .box > .middle > li {
  border-bottom: 1px solid #d7d7d7;
  padding: 10px;
  font-size: 1rem;
  width:100%;
  overflow: hidden;
  transition: opacity .3s;
}

.tasks-icon > .box > .middle > li:hover {
  background-color: #eaeaea;
}

.tasks-icon > .box > .middle > li > .name {
  font-weight: bold;
}

.tasks-icon > .box > .middle > li > .date {
  color: #535353;
}

.tasks-icon > .box > .middle > li > .progress_loading,
.tasks-icon > .box > .middle > li > .progress {
  display: flex;
  
}

.tasks-icon > .box > .middle > li > .progress_loading > div:first-child,
.tasks-icon > .box > .middle > li > .progress > div:first-child {
  position: relative;
  width:100%;
  background-color: #ddd;
  overflow: hidden;
  height:5px;
  margin-top:5px;
}

.tasks-icon > .box > .middle > li > .progress > div:first-child > span {
  background-color: #709bff;
  transition: width 0.3s;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right:0px;
  width:0%;
  left:0px;
}

.tasks-icon > .box > .middle > li > .progress_loading > div:first-child > span {
  background-color: #709bff;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right:0px;
  width:100px;
  left:-100px;
  animation-name: task-anim-1;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count:infinite;
}

@keyframes task-anim-1 {
  0% { left: -100px; }
  100% { left: 100%; }
}

.tasks-icon > .box > .middle > li > .progress_loading > div:last-child,
.tasks-icon > .box > .middle > li > .progress > div:last-child {
  width: 50px;
  margin-left: 5px;
}

/* ===============================================================================================
	===================================== Paski stanu ==================== 
   =============================================================================================== */
.beltYES { margin:1px; background-color: #00af00; border-radius: 5px; color: #fff; padding: 5px 10px; }
.beltYES > span { float:right; width:16px; height:16px;	background-color: #6be06b; border-radius: 5px; text-align:center; padding-top: 1px; padding-left: 1px; margin-top:-1px; }
.beltYES > span:before { font-family: "swzicons" !important; font-style: normal !important; font-weight: normal !important; font-variant: normal !important; text-transform: none !important; content: "\8094"; }
.beltNO { margin:1px; background-color: #e60000; border-radius: 5px; color: #fff; padding: 5px 10px; }
.beltNO > span { float:right; width:16px; height:16px; background-color: #ed9696; border-radius: 5px; text-align:center; padding-top: 1px; padding-left: 1px; margin-top:-1px; }
.beltNO > span:before {	font-family: "swzicons" !important; font-style: normal !important; font-weight: normal !important; font-variant: normal !important; text-transform: none !important; content: "\8095"; }
.beltNONE { margin:1px; background-color: #c3c3c3; border-radius: 5px; color: #000; padding: 5px 10px; }
.beltNONE > span { float:right; width:16px; height:16px; background-color: #dcd8d8; border-radius: 5px; text-align:center; padding-top: 1px; padding-left: 1px; margin-top:-1px; }


/* =============================================================================================================
                                     KOMUNIKATY 
   ============================================================================================================= */
.messageGOOD {
  background-color: #d0e9b7;
  border-radius: 7px;
  padding-left: 40px;
  padding-top: 10px;
  background-image: url(../image/ikona_ok.png);
  background-size: 20px;
  background-repeat: no-repeat;
  min-height: 20px;
  background-position: 10px 10px;
  margin: 15px 30px 15px 30px;
  font-size: 12px;
  padding-bottom: 15px;
  box-shadow: 2px 2px 3px #b7b7b7;
}

.messageERROR {
  background-color: #edadad;
  border-radius: 7px;
  padding-left: 40px;
  padding-top: 10px;
  background-image: url(../image/ikona_blad.png);
  background-size: 20px;
  background-repeat: no-repeat;
  min-height: 20px;
  background-position: 10px 10px;
  margin: 15px 30px 15px 30px;
  font-size: 12px;
  padding-bottom: 15px;
  box-shadow: 2px 2px 3px #b7b7b7;
}

.messageINFO {
  background-color: #cad4ef;
  border-radius: 7px;
  padding-left: 40px;
  padding-top: 10px;
  background-image: url(../image/ikona_info.png);
  background-size: 20px;
  background-repeat: no-repeat;
  min-height: 20px;
  background-position: 10px 10px;
  margin: 15px 30px 15px 30px;
  font-size: 12px;
  padding-bottom: 15px;
  box-shadow: 2px 2px 3px #b7b7b7;
}

.messageWARNING {
  background-color: #ecedad;
  border-radius: 7px;
  padding-left: 40px;
  padding-top: 10px;
  background-image: url(../image/ikona_ostrzezenie.png);
  background-size: 20px;
  background-repeat: no-repeat;
  min-height: 20px;
  background-position: 10px 10px;
  margin: 15px 30px 15px 30px;
  font-size: 12px;
  padding-bottom: 15px;
  box-shadow: 2px 2px 3px #b7b7b7;
}

.messageERROR > div, .messageGOOD > div, .messageINFO > div, .messageWARNING > div {
  padding-bottom: 5px;
}

.messageERROR > ul, .messageGOOD > ul, .messageINFO > div, .messageWARNING > div {
  margin: 0px;
  padding-left: 10px;
}


@media (max-width: 640px) {
	#main_menu > div.menu_flex > div.logo:not(.wanie) { flex: 0 0 65px; margin-left: 5px; }	
	.notatka {
		float: none;
		width: 100%;
		min-width:300px;
		margin-right: 0px;
		margin-bottom: 10px;
	}
	.notatka input:nth-child(1) {
		width: calc( 100% - 35px );
	}
	
	.mainWindowPopUp {
		padding:0px; 
	}
}