html {
  scroll-behavior: smooth;
}

body {
  background: #efefef;
  margin: 0px;
  padding: 0px;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 14px !important;
  line-height: 20px !important;
  color: #555555;
  scroll-behavior: smooth;
}

.mobile-app-root {
  width: 100%;
  border: 1px solid red;
  height: 100%;
  padding: 25px;
}

.loader-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.hm-spinner {
  height: 115px;
  width: 115px;
  border: 6px solid transparent;
  border-top-color: #24306e;
  border-bottom-color: #24306e;
  border-radius: 50%;
  position: relative;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.hm-spinner::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 6px solid transparent;
  border-top-color: #ee2239;
  border-bottom-color: #ee2239;
  border-radius: 50%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.signature-container {
  margin-bottom: 30px;
}

canvas {
  border: 2px dashed #000;
  width: 400px;
  height: 200px;
  touch-action: none;
  background-color: #f9f9f9;
}

canvas.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.c_btn {
  border: 0px;
  border-radius: 3px;
  background: #6c757d;
  padding: 5px 10px;
  color: #fff;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.c_btn:hover {
  background: #3c4349;
}

.iconKontrola_0 {
  width: 30px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.iconKontrola_1 {
  width: 30px;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.iconKontrola_0:hover,
.iconKontrola_1:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

#preview {
  max-width: 100%;
  margin-top: 20px;
}

#crop-button {
  display: none;
  margin-top: 10px;
}

.cropper-bg {
  height: 600px !important;
}

#m_logo_phone {
  display: none;
}

#popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  border-radius: 5px;
}

#popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.c_body_licznik {
  background: #ee2239;
  text-align: center;
  padding: 3px 10px;
  color: #fff;
  border-radius: 0px 0px 6px 6px;
  width: fit-content;
  position: fixed;
  top: 60px;
  right: 10px;
  z-index: 200;
}

.c_body_licznik span {
  font-weight: bold;
}

legend {
  font-size: 16px;
}

.multiselect {
  width: 200px;
}

.selectBox {
  position: relative;
}

.selectBox select {
  width: 100%;
}

.overSelect {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#checkboxes {
  display: none;
  border: 1px #dadada solid;
  position: absolute;
  background: #fff;
}

#checkboxes label {
  display: block;
}

#checkboxes label:hover {
  background-color: #1e90ff;
}

.c_bordertop {
  border-top: 3px solid #24306e;
  margin-top: -3px !important;
}

.c_wyszukiwarkaGlobalna {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #8f8f9d;
  padding: 7px;
  margin-top: 3px;
}

.c_wyszukiwarkaGlobalna_input {
  width: 58%;
  margin-right: 2%;
  float: left;
  border-right: 1px solid #8f8f9d;
  box-sizing: border-box;
}

.c_wyszukiwarkaGlobalna_input input {
  border: 0px;
  padding: 5px 0px 5px 5px;
  width: 95%;
}

.c_wyszukiwarkaGlobalna_select {
  width: 30%;
  float: left;
}

.c_wyszukiwarkaGlobalna_select select {
  border: 0px;
  padding: 5px;
  background: #fff;
}

.c_wyszukiwarkaGlobalna_search {
  width: 10%;
  float: left;
}

.c_wyszukiwarkaGlobalna_search input {
  background: url(img/szukaj.svg) center no-repeat;
  background-size: 25px 25px;
  width: 25px;
  height: 25px;
  border: 0px;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  border-radius: 30px;
  cursor: pointer;
}

.c_wyszukiwarkaGlobalna_search input:hover {
  background-color: #ee2239;
}

.c_wyszukiwarka_menu {
  margin: 40px 20px 0px 40px;
}

.c_menu_wyszukiwarka {
  background: #fff;
  padding: 15px 30px;
  margin-left: 10px;
  text-decoration: none;
  border-radius: 5px;
  color: #7c7c7c;
  float: left;
}

.c_menu_wyszukiwarka_active {
  background: #fff;
  padding: 15px 30px 25px 30px;
  margin-left: 10px;
  text-decoration: none;
  border-radius: 5px 5px 0px 0px;
  color: #24306e;
  font-weight: bold;
  border-top: 3px solid #24306e;
  border-right: 3px solid #24306e;
  border-left: 3px solid #24306e;
  float: left;
}

.c_wyszukiwarka_menu img {
  height: 20px;
  margin-bottom: -4px;
  margin-right: 10px;
}

hr {
  border: 0;
  height: 1px;
  background: #8d8d8d;
}

.c_row_1 {
  padding: 5px;
  background: #ddd;
  border-radius: 5px;
}

.c_row_2 {
  padding: 5px;
  background: #fff;
  border-radius: 5px;
}

.c_fieldset {
  background: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  margin-bottom: 10px;
}

.c_fieldset_green {
  background: #fff;
  border: 1px solid #72b46c;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px #72b46c;
  margin-bottom: 10px;
}

.c_fieldset_50 {
  width: 48%;
  margin: 10px 1%;
  float: left;
}

.c_stanowisko_pion {
  border-radius: 10px;
  background: #f1f1f2;
  border: 1px solid #24306e;
  width: 46%;
  margin: 20px 2%;
  float: left;
  box-sizing: border-box;
  height: 1100px;
}

.c_stanowisko_poziom {
  border-radius: 10px;
  background: #f1f1f2;
  border: 1px solid #24306e;
  width: 96%;
  margin: 20px 2%;
  float: left;
  box-sizing: border-box;
  height: 450px;
}

.c_stanowisko_poziom2 {
  border-radius: 10px;
  background: #f1f1f2;
  border: 1px solid #24306e;
  width: 96%;
  margin: 20px 2%;
  float: left;
  box-sizing: border-box;
  height: 225px;
}

.c_stanowisko_poziom_serwis {
  border-radius: 10px;
  background: #f1f1f2;
  border: 1px solid #ff0000;
  width: 96%;
  margin: 20px 2%;
  float: left;
  box-sizing: border-box;
  height: 450px;
}

.c_stanowisko_content {
  padding: 10px;
}

.c_stanowisko_name {
  background: #24306e;
  padding: 5px;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  position: relative;
  top: -15px;
  left: -5px;
}

.c_stanowisko_dodaj {
  background: #fff;
  border: 1px solid #ee2239;
  padding: 5px 10px;
  display: inline-block;
  color: #24306e;
  font-weight: bold;
  border-radius: 10px;
  position: relative;
  top: -15px;
  left: -5px;
}

.c_lakiernia_piaskarnia {
  padding: 2px 0px;
  border: 1px solid #e31e24;
  border-radius: 3px;
  color: #e31e24 !important;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  margin: 1px 2px;
  display: block;
  text-align: center;
}

.c_lakiernia_piaskarnia:hover {
  color: #fff !important;
  background: #e31e24;
}

.ukrytyDiv {
  display: none;
}

.c_border_bottom {
  border-bottom: 1px solid #666;
  margin: 5px 0px;
}

.c_bazawiedzy {
  display: flex;
}

.c_bazawiedzy_lewa {
  flex: 1;
  border-right: 1px solid #c9cde4;
}

.c_bazawiedzy_lewa img,
.c_bazawiedzy_dodaj img {
  width: 16px;
}

.c_bazawiedzy_prawa {
  flex: 4;
}

.c_bazawiedzy_wpis_right h3 {
  padding: 0px;
  margin-bottom: 0px;
}

.c_bazawiedzy_wpis_right h3 a {
  font-weight: normal;
  text-decoration: none;
  font-size: 24px;
  color: #24306e;
  margin-bottom: 0px;
}

.c_bazawiedzy_wpis_right h4 {
  font-weight: normal;
  font-size: 16px;
  color: #ee2239;
  margin-bottom: 20px;
  padding: 0px;
  margin: 0px 0px 10px 0px;
}

.c_bazawiedzy_wpis_right_hashtag {
  margin: 10px 0px;
}

.c_bazawiedzy_wpis_right_hashtag a {
  margin: 5px;
  background: #e8e8e8;
  padding: 0px 10px;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  text-decoration: none;
}

.c_bazawiedzy_wpis_right_hashtag a:hover {
  background: #24306e;
  color: #fff;
  text-decoration: none;
}

.c_bazawiedzy_prawa_content {
  padding-left: 30px;
}

.c_bazawiedzy_lewa ul {
  padding-left: 20px;
}

.c_bazawiedzy_lewa ul li {
  list-style: none;
  padding: 2px;
}

.c_bazawiedzy_prawa_legenda {
  border-bottom: 1px solid #c9cde4;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.c_bazawiedzy_dodaj {
  width: 16px;
  padding: 0px 2px;
  margin: 0px 3px;
  color: #000;
  opacity: 0.2;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.c_bazawiedzy_dodaj:hover {
  background: #2bc48a;
  border-radius: 999px;
  opacity: 1;
}

.c_bazawiedzy_usun {
  padding: 0px 2px;
  margin: 0px 3px;
  opacity: 0.2;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.c_bazawiedzy_usun:hover {
  background: #ff0000;
  border-radius: 999px;
  opacity: 1;
}

.c_bazawiedzy_menu_right {
  width: 33.3%;
  float: left;
}

.c_bazawiedzy_menu_right img {
  margin-right: 10px;
  margin-bottom: -6px;
}

.c_bazawiedzy_wpis_right {
  padding: 5px;
  border-bottom: 1px solid #c9cde4;
}

.has-submenu,
.has-submenu-active {
  list-style: disclosure-closed !important;
}

.c_iconDown {}

.c_bazawiedzy_lewa ul li img {
  width: 14px;
}

.active-submenu {
  color: #ee2239 !important;
}

.c_legenda_oferta {
  display: table;
  margin: 20px 0px;
}

.c_legenda_oferta_item_active {
  display: table-cell;
  width: 12%;
  text-align: center;
  background: #24306e;
  border: 2px solid #24306e;
  padding: 5px 0px;
  border-radius: 5px;
  color: #fff;
  vertical-align: middle;
}

.c_legenda_oferta_item {
  display: table-cell;
  width: 9%;
  text-align: center;
  background: #eeeeee;
  border: 2px solid #eee;
  padding: 5px 0px;
  border-radius: 5px;
  vertical-align: middle;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.c_legenda_oferta_item:hover {
  border: 2px solid #24306e;
}

.c_legenda_oferta_arrow {
  display: table-cell;
  width: 2%;
  text-align: center;
  vertical-align: middle;
}

.morris-hover {
  position: absolute;
  z-index: 90;
}

.morris-hover.morris-default-style {
  border-radius: 10px;
  padding: 6px;
  color: #fff;
  background: rgba(36, 48, 110, 0.8);
  border: solid 2px #f2b70a;
  font-family: sans-serif;
  font-size: 12px;
  text-align: center;
}

.morris-hover.morris-default-style .morris-hover-row-label {
  font-weight: bold;
  margin: 0.25em 0;
}

.morris-hover.morris-default-style .morris-hover-point {
  white-space: nowrap;
  margin: 0.1em 0;
}

#showHide-pulpit img {
  width: 12px;
}

#showHide-pulpit {
  background: #ee2239;
  line-height: 0px;
  margin-top: 0px;
  padding: 0px 60px;
  border-radius: 0px 0px 30px 30px;
  position: absolute;
  left: calc(50% - 66px);
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

#showHide-pulpit:hover {
  background: #24306e;
}

.showHideImg1 {
  transform: rotate(180deg);
}

#m_pulpit_all {
  position: relative;
  background: #24306e url(img/bg.jpg) no-repeat center;
  background-size: cover;
}

#m_pulpit {
  position: relative;
  background: rgba(36, 48, 110, 0.75);
  padding: 30px 5%;
  color: #fff;
}

#m_pulpit h2 {
  margin-bottom: 30px;
}

#m_pulpit_1 {
  width: 20%;
  float: left;
}

#m_pulpit_2 {
  width: 30%;
  float: left;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}

#m_pulpit_3 {
  width: 45%;
  margin-left: 5%;
  float: left;
}

#graph {
  max-width: 250px;
  margin-left: 10%;
  margin-top: 30px;
}

#graphBar {
  width: 100%;
  height: 300px;
}

#graphLine {
  width: 100%;
  height: 180px;
}

#graphBarOferta {
  height: 230px;

}

.c_textalign_center {
  text-align: center;
}

.c_nowans_button {
  background: #24306e;
  width: 95%;
  max-width: 400px;
  padding: 30px 0px;
  display: inline-block;
  margin: 10px;
  color: #fff !important;
  font-weight: bold;
  text-align: center;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.c_nowans_button:hover {
  background: #ee2239;
}

.c_dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 999px;
  margin-right: 5px;
}

.c_50 {
  width: 48%;
  float: left;
  padding: 5px 1%;
}

.c_33 {
  width: 31.33%;
  float: left;
  padding: 5px 1%;
}

.c_30 {
  width: 28%;
  float: left;
  padding: 5px 1%;
}

.c_25 {
  width: 23%;
  float: left;
  padding: 5px 1%;
}

.c_10 {
  width: 8%;
  float: left;
  padding: 5px 1%;
}

.c_20 {
  width: 18%;
  float: left;
  padding: 5px 1%;
}

.c_15 {
  width: 13%;
  float: left;
  padding: 5px 1%;
}

.c_70 {
  width: 68%;
  float: left;
  padding: 5px 1%;
}

.c_borderBottom {
  border-bottom: 1px solid #aaa;
}

.c_textCenter {
  text-align: center;
}

#m_logowanie_all {
  background: url(img/bg.jpg) no-repeat center;
  background-size: auto;
  background-size: cover;
  height: 100vh;
}

#m_logowanie_form {
  width: 80%;
  margin: 0px auto;
  padding-top: 15%;

}

#m_logowanie_form_left {
  width: 50%;
  float: left;
}

#m_logowanie_form_right {
  width: 50%;
  float: left;
  border-left: 1px solid #fff;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.c_logowanie_form_input {
  background: #fff;
  border-radius: 25px;
  padding: 5px;
  margin: 30px 0px;
}

.c_logowanie_form_input img {
  float: left;
  width: 20px;
  padding: 5px 15px;
  border-right: 1px solid #a2a2a2;
  margin-right: 5px;
}

.logowanieinput {
  color: #333;
  width: 72%;
  border: 0px;
  padding: 8px;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.logowanieinput:focus {
  outline: none;
}

.button {
  background: #24306e;
  border: 0px;
  border-radius: 15px;
  color: #fff;
  font-weight: bold;
  padding: 10px 70px;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  cursor: pointer;
  font-family: 'Fira Sans Condensed', sans-serif;
}

.button:hover {
  background: #e31e24;
  color: #fff;
}

#menuCennik {
  position: fixed;
  left: 0px;
  top: calc(45% - 182px);
  background: #213675;
  border-radius: 0px 15px 15px 0px;

}

#menuCennik a {
  display: block;
  color: #fff !important;
  padding: 10px;
}

.scroll-smooth {
  scroll-behavior: smooth;
  overflow: auto;
  margin-left: 40px;
  height: calc(100vh - 370px);
}

.column_worker {
  width: 125px;
  float: left;
}

.c_abc {
  display: block;
  margin: 35px 0px;
}

.c_klient_abc {
  border: 1px solid #ddd;
  background: #f1f1f1;
  padding: 15px 20px;
  margin: 3px;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.c_klient_abc:hover {
  background: #ee2239;
  color: #fff !important;
}

.c_abc_current {
  background: #213675;
  color: #fff !important;
}

.button_disk {
  border: 1px solid #ee2239;
  border-radius: 999px;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  line-height: 0px;
  padding: 4px;
  cursor: pointer;
}

.button_disk:hover {
  background: #ee2239;
}

.c_tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  color: #ff0000;
  cursor: pointer;
}

.c_tooltip .c_tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.c_tooltip:hover .c_tooltiptext {
  visibility: visible;
}

.c_tabela {
  width: 4%;
  float: left;
  font-size: 7px;
  text-align: center;
}

.c_tabela2 {
  width: 8%;
  float: left;
  font-size: 7px;
  text-align: center;
}

.c_tabela3 {
  width: 12%;
  float: left;
  font-size: 7px;
  text-align: center;
}

.c_tabela4 {
  width: 16%;
  float: left;
  font-size: 7px;
  text-align: center;
}

.c_tabela9 {
  width: 36%;
  float: left;
  font-size: 7px;
  text-align: center;
}

.c_tabela_row {
  padding: 1px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.c_tabela_row:hover {
  background: #ddd !important;
}

.c_tabela a {
  color: #000 !important;
}

.tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 3px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.c_tabela:hover .tooltiptext {
  visibility: visible;
}

.c_clear {
  clear: both;
}

#m_offer_total {
  position: fixed;
  bottom: 10px;
  right: 0px;
  background: #e32329;
  color: #fff;
  padding: 20px;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
}

#m_offer_total_new {
  position: fixed;
  bottom: 10px;
  right: 0px;
  background: #fefefe;
  color: #213675;
  padding: 20px;
  font-size: 20px;
  line-height: 20px;
  border-radius: 30px 0px 0px 30px;
  -webkit-box-shadow: 0px 0px 12px 0px #6e6e6e;
  -moz-box-shadow: 0px 0px 12px 0px #6e6e6e;
  box-shadow: 0px 0px 12px 0px #6e6e6e;

}

#total,
#totalDodatki,
#totalRazem,
#totaleu,
#totalDodatkieu,
#totalRazemeu,
#totalgbp,
#totalDodatkigbp,
#totalRazemgbp {
  font-weight: bold;
  color: #ee2239;
}

.c_kalWeek_d {
  width: 16%;
  min-height: 80vh;
  float: left;
  text-align: center;
  padding: 20px 0px 5px 0px;
  border: 1px solid #dddddd;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.c_kalWeekend_d {
  width: 10%;
  min-height: 80vh;
  float: left;
  text-align: center;
  padding: 20px 0px 5px 0px;
  border: 1px solid #f85656;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.c_kal {
  width: 14%;
  float: left;
  border: 1px solid #dddddd;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.c_kal_d {
  width: 14%;
  float: left;
  text-align: center;
  font-weight: bold;
  padding: 20px 0px 5px 0px;
}

.c_kal_clear {
  width: 14%;
  float: left;
}

.c_kal_current {
  width: 14%;
  float: left;
  border: 1px solid #ff0000;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.c_kal_content {
  padding: 5px;
  height: 220px;
}

.c_kal_przyjecie a {
  background: #e31e24;
  color: #fff !important;
  display: block;
  font-size: 12px !important;
  margin-top: 2px;
}

.c_kal_zgloszenie a {
  background: #a6a6a6;
  color: #fff !important;
  display: block;
  font-size: 12px !important;
  text-align: left;
  padding: 5px;
  margin-top: 2px;
}

.c_kal_zgloszenie a {
  background: #a6a6a6;
  color: #fff !important;
  display: block;
  font-size: 12px !important;
  margin-top: 2px;
}

.c_kal_wydanie a {
  background: #437d44;
  color: #fff !important;
  display: block;
  font-size: 12px !important;
  margin-top: 2px;
}

.c_kal_item_feedback_kalendarz a {
  background: #cef933;
  color: #3a3a3a !important;
  display: block;
  font-size: 12px !important;
  text-align: left;
  padding: 5px;
  margin: 2px 5px 2px 2px;
}

.c_kal_item_feedback_wykonany a {
  background: #33ff18;
  color: #3a3a3a !important;
  display: block;
  font-size: 12px !important;
  text-align: left;
  padding: 5px;
  margin: 2px 5px 2px 2px;
}

.c_kal_item_feedback_niewykonany a {
  background: #fc1212;
  color: #fff !important;
  display: block;
  font-size: 12px !important;
  text-align: left;
  padding: 5px;
  margin: 2px 5px 2px 2px;
}

.c_texttransform {
  text-transform: uppercase;
}

.c_oferta {
  width: 18%;
  margin: 10px 1%;
  border: 1px solid #d23731;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  float: left;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.c_oferta_img {
  height: 190px;
}

.c_oferta_img img {
  max-width: 100%;
  max-height: 100%;
}

.c_oferta:hover {
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.75);
}

.c_oferta_item {
  font-size: 12px;
  height: 15px;
}

#m_belka {
  padding: 5px;
  background: #f1f1f2;
  margin-bottom: 10px;
}

.c_30_arrow {
  float: left;
  width: 30%;
  text-align: center;
  margin-top: 9px;
}

.c_arrow_button {
  background: #e31e24;
  border-radius: 25px;
  color: #fff !important;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 16px;
}

.c_40 {
  float: left;
  width: 38%;
  padding: 5px 1%;
  text-align: center;
}

.c_iconPdf {
  display: block;
  padding: 20px 0px;
  border-radius: 10px;
  text-align: left;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  border-bottom: 1px solid #e3e3e3;
}

.c_iconPdf img {
  height: 20px;
}

.c_iconPdf:hover {
  background: #fff;
}

.c_iconPdf img {
  max-width: 100px;
}

.c_box-klient {
  display: none;
}

.c_czat {
  border: 1px solid #ddd;
  padding: 10px;
  min-height: 300px;
}

.c_czat_info {
  font-size: 10px;
  text-align: right;
  margin-top: 5px;
}

.c_czat_user {
  margin: 5px 20% 5px 0px;
  width: 80%;
}

.c_czat_user_content {
  background: #e31e24;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
}

.c_czat_admin {
  margin: 5px 0px 5px 20%;
  width: 80%;
}

.c_czat_admin_content {
  background: #e6e6e6;
  padding: 10px;
  border-radius: 10px;
}

#m_szukaj {
  border: 1px solid #e31e24;
  padding: 20px;
  margin-bottom: 10px;
}

.c_search {
  width: 100%;
  float: left;
  padding: 10px;
  box-sizing: border-box;
}

.c_search_select {
  width: 100%;
  float: left;
  padding: 10px;
  box-sizing: border-box;
}

.c_button_search {
  width: 100%;
  float: left;
  padding: 11px 0px;
  background: #e31e24;
  border: 0px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.c_button_search:hover {
  background: #ae1b1f;
}

#preview {
  position: absolute;
  z-index: 500;
  border: 1px solid #ccc;
  background: #333;
  padding: 5px;
  display: none;
  color: #fff;
}

.c_name_kat {
  font-size: 12px;
  color: #727271;
}


.c_zalacznik {
  padding: 40px 20px;
  margin-bottom: 5px;
  background: #f6f6f6;
  border-radius: 5px;
}

.c_legend {
  background: #ffffff;
  padding: 10px;
  border: 1px solid #e5e5e5;
}

.c_legend_row_vertical_middle {
  vertical-align: middle;
  display: table-cell;
  height: 38px;
}

.c_legend_row {
  padding: 10px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  box-sizing: unset !important;
}

.c_legend_row:hover {
  background: #ddd !important;
}

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

.c_legend_bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 10px;
}

.c_legend_bottom select {
  padding: 5px;
}

.c_button_prev_1,
.c_button_next_1 {
  font-weight: bold;
  padding: 0px 5px;
  color: #213675 !important;
}

.c_button_next_0,
.c_button_prev_0 {
  font-weight: bold;
  padding: 0px 5px;
  color: #ddd !important;
}

.c_logowanie_bottom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #ffffff;
}

.c_logowanie_bottom a {
  color: #b8b8b8;
  text-decoration: none;
}

.c_logowanie_bottom a:hover {
  text-decoration: underline;
}

.error_content {
  padding: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: #ffc0cb;
  border: 1px solid #800000;
}

.ok_content {
  padding: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: #c3ffc0;
  border: 1px solid #298424;
}

.warning_content {
  padding: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: #fee833;
  border: 1px solid #ff0000;
}

.error {
  position: relative;
  top: 10px;
  width: 300px;
  padding: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: #ffc0cb;
  border: 1px solid #800000;
}

.ok {
  position: relative;
  top: 10px;
  width: 300px;
  padding: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: #c3ffc0;
  border: 1px solid #298424;
}

#form1 h3 {
  text-align: center;
  padding: 0px;
  margin: 10px 0px;
  font-size: 20px;
  color: #24306e;
}

#logowanie {
  width: 300px;
  padding: 35px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0px 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0px 0 rgba(0, 0, 0, 0.02);
  border-radius: 5px;
  text-align: center;
}

.c_logo {
  text-align: center;
  padding-bottom: 40px;
  padding-top: 120px;
}

.c_logowanie_left {
  width: 30%;
  float: left;
  margin-bottom: 5px;
  text-align: right;
  padding: 3% 0;
}

.c_logowanie_right {
  width: 70%;
  float: left;
  margin-bottom: 5px;
}

.c_logowanie_left b {
  padding-right: 10%;
}

.c_logowanie_half {
  width: 48%;
  padding: 0 1%;
  float: left;
}

.c_logowanie_half input {
  float: right;
}

.logowanieselect {
  border: 1px solid #e3e3e3;
  padding: 3%;
  color: #333;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 5px;
}

#glowny {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#top {
  background: #24306e;
  box-shadow: 0 0px 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0px 0 rgba(0, 0, 0, 0.02);
  position: fixed;
  top: 0px;
  z-index: 500;
  width: 100%;
  height: 60px;
}

#topleft {
  width: 5%;
  height: 60px;
  float: left;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#topcenter {
  width: 20%;
  float: left;
  padding: 6px 0%;
}

#topright {
  width: 75%;
  float: left;
  padding: 7px 1%;
}

.c_sort {
  width: 29%;
  padding: 2%;
  float: left;
}

/* */
.toggleMenu {
  display: none;
  background: url(img/index_14.png) no-repeat scroll 50% 50%;
  padding: 15px 10px;
  text-decoration: none;
  width: 30px;
  color: #435966;
  z-index: 100;
  position: relative;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.toggleMenu:hover {
  background: #171f48 url(img/index_14.png) no-repeat scroll 50% 50%;
}

.c_hidden {
  display: none;
}

.nav {
  list-style: none;
  margin: 0px;
  padding: 0px;
  z-index: 100;
  float: right;
}

.nav:before,
.nav:after {
  content: " ";
  display: table;
  z-index: 100;
}

.nav:after {
  clear: both;
}

.nav ul {
  list-style: none;
  z-index: 100;
}

.nav a {
  color: #fff;
  padding: 15px 12px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  z-index: 100;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  background: #24306e;
  border-radius: 10px;
}

.nav a:hover {
  background: #e31e24;
  color: #fff;
  z-index: 100;
}

.nav li {
  position: relative;
  z-index: 100;
}

.nav>li {
  float: left;
  z-index: 100;
}

.nav>li>.parent {}

.nav>li>.parent:hover {
  background: #e31e24;
}

.nav>li>a {
  display: block;
}

.nav li ul {
  position: absolute;
  left: -9999px;
  -webkit-box-shadow: 0px 10px 14px 0px #bfbfbf;
  -moz-box-shadow: 0px 10px 14px 0px #bfbfbf;
  box-shadow: 0px 10px 14px 0px #bfbfbf;
}

.nav>li.hover>ul {
  left: 0;
}

.nav li li.hover ul {
  left: 100%;
  top: 0;
}

.nav li li a {
  display: block;
  background: #fff;
  padding: 10px 20px;
  margin-left: -40px;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #a2a2a2;
  width: 180px;
  color: #24306e;
  border-radius: 0px;
}

.nav li li a:hover {
  background: #ee2239;
}

.c_logout a {
  font-weight: bold;
  color: #fe2121 !important;
}

.c_logout a:hover {
  color: #fff !important;
  background: #fe2121 !important;
}

blockquote {
  font-style: italic;
  margin: 5px 20px;
  color: #929292;
}

@media screen and (max-width: 959px) {
  .active {
    display: block;
  }

  .c_hidden_menu {
    display: block;
  }

  .nav {
    float: none;
    position: absolute;
    width: 96%;
    left: 2%;
  }

  .nav li ul {
    position: absolute;
    left: -9999px;
    padding: 0%;
    width: 100%;
  }

  .nav a {
    padding: 15px 0px;
    color: #fff;
    background: #171f48;
    text-decoration: none;
    text-align: center;
    z-index: 100;
    border-bottom: 1px solid #3a3a3a;
    border-right: 0px;
    width: 100%;
    height: auto;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    border-radius: 0px;
  }

  .nav>li>a {
    display: block;
  }

  .nav li li a {
    width: 100%;
    padding: 15px 0px;
    margin: 0px;
    background: #24306e;
    color: #fff;
  }

  .nav>li {
    float: none;
  }

  .nav ul {
    display: block;
    width: 100%;
  }

  .nav>li.hover>ul,
  .nav li li.hover ul {
    position: static;
  }

  .nav>li>.parent {
    background: #171f48 center 93% url("downArrow.png") no-repeat;
    padding-right: 0px;
  }

  .nav>li>.parent:hover {
    background: #ff0000 center 93% url("downArrow.png") no-repeat;
    padding-right: 0px;
  }

}

/* */
#logout {
  width: 20%;
  float: left;
  color: #fff;
  padding: 8px 0px 7px 0px;
  text-align: center;
  background: #000;
}

#logout a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

#logout a:hover {
  text-decoration: underline;
}

#middle {}

#left {
  width: 200px;
  float: left;
  margin-top: 50px;
  min-height: 400px;
  border-top: 1px dotted #9e9c9b;
}

#right {
  width: 100%;
  float: left;
  padding-top: 60px;
}

.c_opcje {
  text-align: right;
}

.c_status {
  padding: 3px 10px;
  color: #fff;
  border-radius: 5px;
}

.c_button_column {
  color: #727271 !important;
  padding: 3px 10px;
  border-right: 1px solid #dddddd;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.c_button_column_red {
  color: #ea2121 !important;
  padding: 3px 10px;
  border-right: 1px solid #dddddd;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.c_button_column:hover {}

.form_left {
  width: 48%;
  float: left;
  padding: 1%;
  text-align: right;
}

.form_right {
  width: 48%;
  float: left;
  padding: 1%;
}

.form_left_main,
.form_right_main {
  width: 48%;
  float: left;
  padding: 1%;
}

.form_left_25 {
  width: 53%;
  float: left;
  padding: 1%;
  text-align: right;
}

.form_right_25 {
  width: 13%;
  float: left;
  padding: 1%;
}

.form_right_33 {
  width: 31%;
  float: left;
  padding: 1%;
}

.form_left_70 {
  width: 68%;
  float: left;
  padding: 1%;
}

.form_left_30 {
  width: 28%;
  float: left;
  padding: 1%;
}

.content {
  padding: 35px;
  background: #fff;
  margin: 20px;
  -webkit-box-shadow: 0px 0px 14px 0px #bfbfbf;
  -moz-box-shadow: 0px 0px 14px 0px #bfbfbf;
  box-shadow: 0px 0px 14px 0px #bfbfbf;
}

.content h1 {
  font-weight: normal;
  font-size: 36px;
  color: #24306e;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 0px;
}

.content h2 {
  font-weight: normal;
  font-size: 16px;
  color: #ee2239;
  margin-bottom: 20px;
  text-align: center;
}

.content a,
#logowanie a {
  text-decoration: none;
  color: #98a6af;
}

.content a:hover,
#logowanie a:hover {
  text-decoration: underline;
}

.c_input_link {
  background: none;
  border: none;
  color: #98a6af;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.c_input {
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  padding: 5px 3%;
  width: 90%;
}

.c_input_30 {
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  padding: 5px 3%;
  width: 22%;
}

.c_input_60 {
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  padding: 5px 3%;
  width: 60%;
}

.c_input_70 {
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  padding: 5px 3%;
  width: 70%;
}

.c_input_80 {
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  padding: 5px 3%;
  width: 80%;
}

#bottom {
  padding: 28px;
  background: #f1f1f1;
  background-position: top;
}

.bottom_logo {
  margin: 3px 30px;
  float: left;
}

.bottom_dane {
  margin: 0px;
  float: left;
  border-left: 1px solid #213675;
  padding-left: 30px;
}

.c_link {
  background: #e31e24;
  border-bottom: 2px solid #e31e24;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}

.module {
  background: #ddd;
  padding: 10px;
  display: block;
  margin: 2px;
}

.module:hover {
  background: #c7c7c7;
}

.photo_content {
  width: 160px;
  height: 160px;
  float: left;
  text-align: center;
  border: 1px dashed #163d64;
  margin: 2px;
  padding: 10px;
}

.photo_content:hover {
  background: #ededed;
}

.photo_content_img {
  width: 150px;
  height: 140px;
}

.c_info_oferta {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #ff0000;
  color: #fff;
  border-radius: 15px;
  padding: 1px 4px;
  font-size: 10px;
  font-weight: bold;
}

/* Tooltip */
.help {}

#tooltip {
  position: absolute;
  z-index: 3000;
  width: 350px;
  background: #a2d109;
  color: #fff;
  padding: 15px;
  opacity: 1;
  box-shadow: 0px 0px 10px #000;
  border-radius: 15px;
}

#m_wyswig {
  padding: 10px 0;

}

#m_wyswig a {
  color: #000;
  width: 170px;
  padding: 5px;
}

#m_wyswig h1 {
  color: #000;
  font-size: 32px;
}

#m_wyswig h2 {
  color: #000;
  font-size: 30px;
}

.column_4_rotate {
  transform: rotate(-90deg);
  position: absolute;
  left: 0px;
  bottom: 25px;
}

.column_4_head {
  height: 100px;
  position: relative;
}

.c_status_zlecenie {
  width: 80%;
  text-align: center;
  color: #fff;
  display: inline-block;
}

.c_colorSelect {
  border: 3px solid gray;
  /* Domyślne obramowanie */
  border-radius: 5px;
  outline: none;
}

#tooltip h3,
#tooltip div {
  margin: 0;
  color: #fff;
  font-size: 12px;
}

/* Table */
.column_3,
.column_4,
.column_5,
.column_6,
.column_7,
.column_10,
.column_12,
.column_15,
.column_6,
.column_8,
.column_20,
.column_25,
.column_30,
.column_33,
.column_35,
.column_40,
.column_50,
.column_60,
.column_70,
.column_80,
.column_88,
.column_90 {
  float: left;
}

.column_3 {
  width: 3%;
}

.column_4 {
  width: 4%;
}

.column_5 {
  width: 5%;
}

.column_6 {
  width: 6%;
}

.column_7 {
  width: 7%;
}

.column_10 {
  width: 10%;
}

.column_12 {
  width: 12%;
}

.column_15 {
  width: 15%;
}

.column_8 {
  width: 8%;
}

.column_20 {
  width: 20%;
}

.column_25 {
  width: 25%;
}

.column_30 {
  width: 30%;
}

.column_33 {
  width: 33%;
}

.column_35 {
  width: 35%;
}

.column_40 {
  width: 40%;
}

.column_50 {
  width: 50%;
}

.column_60 {
  width: 60%;
}

.column_70 {
  width: 70%;
}

.column_80 {
  width: 80%;
}

.column_88 {
  width: 88%;
}

.column_90 {
  width: 90%;
}

img {
  max-width: 100%;
}

/*  Scrool content  */
h2.trigger {

  /*background: url(img/triggerplus.png) no-repeat;*/
  font-size: 12px;
  margin: 0px;
}

h2.trigger a {
  padding: 15px 5px 15px 10px;
  color: #000;
  text-decoration: none;
  display: block;
}

h2.trigger a:hover {
  text-decoration: none;
  background: url(img/dark.png) repeat;
}

h2.active {
  /*background: url(img/triggerminus.png) no-repeat;*/
}

/*--Kiedy panel zostanie rozwinięty okno panelu zostanie przesunięte do spodu by ukazać jego “otwarty stan”--*/
.toggle_container {
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  font-size: 12px;
  clear: both;
}

.toggle_container .block {
  padding: 15px;
}

fieldset {
  border: 1px solid #24306e;
  border-radius: 5px;
  background: #fff;
  padding: 2%;
}

@media only screen and (min-width: 1181px) and (max-width: 1380px) {
  .nav a {
    padding: 15px 6px;
  }

  .column_10 {
    width: 25%;
    height: 35px;
  }

  .column_30 {
    width: 100%;
    height: 35px;
  }
}

@media only screen and (min-width: 1120px) and (max-width: 1180px) {
  .nav a {
    padding: 15px 3px;
  }

  .column_10 {
    width: 25%;
    height: 35px;
  }

  .column_30 {
    width: 100%;
    height: 35px;
  }

  .column_60 {
    width: 65%;
  }

  .column_40 {
    width: 35%;
  }

  .c_opcje {
    background: #eee;
    padding-top: 15px;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1119px) {

  .column_60 {
    width: 65%;
  }

  .column_40 {
    width: 35%;
  }

  .column_10 {
    width: 25%;
    height: 35px;
  }

  .column_30 {
    width: 100%;
    height: 35px;
  }

  .column_60 {
    width: 65%;
  }

  .column_40 {
    width: 35%;
  }

  .c_opcje {
    background: #eee;
    padding-top: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  .column_60 {
    width: 65%;
  }

  .column_40 {
    width: 35%;
  }

  .column_10 {
    width: 25%;
    height: 35px;
  }

  .column_30 {
    width: 100%;
    height: 35px;
  }

  .column_60 {
    width: 65%;
  }

  .column_40 {
    width: 35%;
  }

  .c_opcje {
    background: #eee;
    padding-top: 15px;
  }

  #topright {
    width: 72%;
    text-align: right;
    padding: 7px 3%;
  }

  .c_status {
    padding: 3px 5px;
  }
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
  .column_10 {
    width: 100%;
    padding: 5px 0px;
  }

  .column_60 {
    width: 100%;
    padding: 5px 0px;
  }

  .column_40 {
    width: 100%;
    padding: 5px 0px;
  }

  .column_30 {
    width: 100%;
    padding: 5px 0px;
  }

  .c_button_column {}

  .c_button_column_red {}

  #topleft {
    width: 40%;
  }

  #topright {
    width: 52%;
    text-align: right;
    padding: 7px 3%;
  }

  .c_status {
    padding: 3px 5px;
  }

  .form_left_main,
  .form_right_main {
    width: 98%;
    float: left;
    padding: 1%;
  }

  .c_logo {
    padding-top: 40px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 539px) {

  .c_67_iphone {
    width: 65%;
  }

  .c_33_iphone {
    width: 31%;
  }

  .c_40_iphone {
    width: 31%;
  }

  .c_100_iphone {
    width: 100%;
  }

  .c_clear_iphone {
    clear: both;
  }

  #top {
    position: absolute;
  }

  .c_body_licznik {
    position: absolute;
  }

  #m_logo_phone {
    display: block;
  }

  #m_logo_full {
    display: none;
  }

  .c_body_licznik_text {
    display: none;
  }

  .column_10 {
    width: 100%;
    padding: 5px 0px;
  }

  .column_60 {
    width: 100%;
    padding: 5px 0px;
  }

  .column_40 {
    width: 100%;
    padding: 5px 0px;
  }

  .column_30 {
    width: 100%;
    padding: 5px 0px;
  }

  .c_button_column {}

  .c_button_column_red {}

  #topleft {
    width: 16%;
  }

  #topcenter {
    width: 64%;
  }

  #topright {
    width: 14%;
    text-align: right;
    padding: 7px 2%;
  }

  .c_status {
    padding: 3px 5px;
  }

  .form_left_main,
  .form_right_main {
    width: 98%;
    float: left;
    padding: 1%;
  }

  .content {
    padding: 35px 10px;
  }

  .bottom_logo {
    width: 94%;
    text-align: center;
  }

  .bottombox {
    margin: 20px 3%;
    width: 94%;
    text-align: center;
  }

  .c_logo {
    padding-top: 40px;
  }

  .error {
    width: 250px;
  }

  .ok {
    width: 250px;
  }

  .button {
    padding: 10px 15px;
  }

  #m_pulpit_1 {
    width: 100%;
  }

  #m_pulpit_2 {
    width: 100%;
    border-right: 0px solid #fff;
  }

  #graph {
    margin: 0px auto;
  }

  #m_pulpit_3 {
    width: 100%;
    margin-left: 0%;
  }

  .c_phone_5 {
    width: 50%;
    float: left;
  }

  .c_phone_10 {
    width: 50%;
    float: left;
  }

  .c_phone_20 {
    width: 100%;
    float: left;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #a1a1a1;
  }

  .c_opcje {
    text-align: left;
  }

  #graphBar {
    height: 150px;
  }

  #m_logowanie_form_left {
    width: 100%;
  }

  #m_logowanie_form_right {
    width: 100%;
    border-left: 0px solid #fff;
  }

  #logowanie {
    padding: 0px;
  }

  .form_left {
    width: 98%;
    text-align: left;
  }

  .form_right {
    width: 98%;
  }
}