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%;
  min-height: 650px;
}

.mobile-app-buttons-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  background-color: #24306e;
}

.mobile-app-button {
  min-width: 200px;
  min-height: 44px;
  max-height: 44px;
  text-align: center;
  padding: 12px 0px;
  background: #e31e24;
  border: 0px;
  color: #fff !important;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-app-button-small {
  min-width: 100px;
  min-height: 44px;
  max-height: 44px;
  text-align: center;
  padding: 6px 0px;
  background: #e31e24;
  border: 0px;
  color: #fff !important;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  font-size: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notifs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.notifs-table th, .notifs-table td {
  border: 1px solid #ddd;
  padding: 8px;
  vertical-align: top;
}
.notifs-table th {
  text-align: left;
}
.notifs-table td code {
  font-size: 12px;
  word-break: break-all;
}

.mobile-app-button-disabled {
  min-width: 200px;
  min-height: 44px;
  max-height: 44px;
  text-align: center;
  padding: 12px 0px;
  background: grey;
  border: 0px;
  color: #fff;
  font-weight: bold;
  cursor: not-allowed;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.mobile-app-textarea {
  width: 100%;
  min-width: 500px;
  max-width: 960px;
  min-height: 120px;
  padding: 14px 16px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-app-textarea::placeholder {
  color: #9ca3af;
}

.mobile-app-textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}


.mobile-app-button:hover {
  background: #ae1b1f;
}

.mobile-app-section {
  width: 100%;
  min-height: 500px;
}

.mobile-app-sendToAll {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  padding: 25px;
}

.send-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 16px;
  font-size: 14px;
}

/* Switch container */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

/* Hide default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider */
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  transition: background 0.3s;
}

/* Knob */
.slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Checked state */
.switch input:checked+.slider {
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
}

.switch input:checked+.slider::before {
  transform: translateX(22px);
}

.switch-label {
  user-select: none;
  color: #333;
}

.mobile-app-notifications {
  width: 100%;
  min-height: 500px;

}

.mobile-app-notifications-text {
  width: 100%;
  height: 100%;
  resize: none;
  overflow-y: scroll;
}


.mobile-app-sendToAllNotification {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  padding: 25px;
}



.mobile-app-seeAllMessages {
  width: 100%;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  padding: 15px;
}

.mobile-app-seeAllMessages-threads-wrapper {
  width: 100%;
  height: 700px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border: 1px solid black;
  border-radius: 10px;
  padding: 8px;
  gap: 15px;
}

.mobile-app-seeAllMessages-threads {
  height: 100%;
  width: 40%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  overflow-y: scroll;
  overflow-x: hidden;
  box-sizing: border-box;
}


.thread {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 12px;
  margin-right:6px;
  background: #fff;
  font-family: system-ui, sans-serif;
  width: 100%;
}

.thread:hover {
  cursor: pointer;
  background: cornflowerblue;
}

.thread-customer{
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
}

.thread-header,
.thread-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
}


.thread-message {
  font-size: 14px;
  color: #222;
  margin: 8px 0;
}

.thread-id {
  color: #0078d4;
}

.thread-date {
  font-style: italic;
}

.message {
  max-width: 75%;
  padding: 8px 12px;
  margin: 6px 0;
  border-radius: 10px;
  font-size: 14px;
}

/* author = 0 → left */
.message-left {
  align-self: flex-start;
  background: #f1f1f1;
  margin: 15px;
}

/* author ≠ 0 → right */
.message-right {
  align-self: flex-end;
  background: #dbeafe;
  margin: 15px;
}

.mobile-app-seeAllMessages-messages {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.mobile-app-seeAllMessages-messages-content {
  scrollbar-gutter: stable;
  height: 80%;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: nowrap;
  overflow-y: scroll;
  overflow-x: hidden;
  box-sizing: border-box;
  border: 1px solid black;
  border-radius: 10px;
}

.mobile-app-seeAllMessages-messages-sender {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  gap: 15px;
}



.mobile-app-textarea-newmsg {
  width: 70%;
  flex: 1;
  margin: 0;
  min-height: 60px;
  max-height: 120px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  resize: none;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-app-textarea-newmsg::placeholder {
  color: #9ca3af;
}

.mobile-app-textarea-newmsg:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-modal {
  background: white;
  padding: 25px;
  border-radius: 8px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-label {
  font-weight: bold;
}

.modal-input {
  padding: 8px;
  font-size: 14px;
}

.modal-buttons {
  display: flex;
  justify-content: space-between;
}

.modal-confirm {
  background: #28a745;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
}

.modal-cancel {
  background: #dc3545;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
}

.mobile-app-seeAllBookings-wrapper {
  width: 100%;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 15px;
}


.mobile-app-seeAllBookings {
  width: 100%;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 15px;
  scrollbar-gutter: stable;
  overflow-y: scroll;
  overflow-x: hidden;
}

.mobile-app-booking {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-width: 960px;
  max-width: 1280px;
}

.mobile-app-booking:hover {
  cursor: pointer;
  background-color: lightblue;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.booking-id {
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
}

.booking-status {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.booking-status.pending {
  background: #fff4e5;
  color: #b36b00;
}

.booking-status.accepted {
  background: #e6f4ff;
  color: #0057a3;
}

.booking-status.completed {
  background: #e6f7ef;
  color: #0f7a45;
}

.booking-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
}

.booking-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.booking-row span {
  color: #777;
}

.booking-row strong {
  color: #111;
  font-weight: 600;
}

.booking-meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  color: #777;
}

.booking-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-meta-row span:first-child {
  font-weight: 500;
  color: #888;
}

.booking-meta-row span:last-child {
  font-weight: 600;
  color: #444;
}

.booking-actions {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 12px;
  font-size: 0.75rem;
}

.dm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.dm-modal {
  background: #fff;
  width: 90%;
  max-width: 380px;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.dm-modal h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.dm-modal textarea {
  width: 100%;
  resize: none;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.dm-modal textarea:focus {
  outline: none;
  border-color: #007bff;
}

.dm-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.dm-btn {
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.85rem;
  cursor: pointer;
}

.dm-btn.cancel {
  background: #eee;
  color: #333;
}

.dm-btn.send {
  background: #007bff;
  color: #fff;
}




.mobile-app-customers-wrapper {
  width: 100%;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 15px;
}

.mobile-app-customers {
  width: 100%;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 15px;
  scrollbar-gutter: stable;
  overflow-y: scroll;
  overflow-x: hidden;
}

.mobile-app-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-app-header-row > h3 {
  margin:0;
}

.mobile-app-search input {
  min-width: 240px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.2;

  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background-color: #fff;

  color: #1f2937;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-app-search input::placeholder {
  color: #9ca3af;
}

.mobile-app-search input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.mobile-app-search {
  position: relative;
}

.mobile-app-search input {
  padding-left: 36px;
}

.mobile-app-search::before {
  content: "🔍";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.6;
  pointer-events: none;
}

.mobile-app-customer-card-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: stretch;
  height: auto;
}

.mobile-app-customer-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 750px;
}

.mobile-app-customer-card-appdetails {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 300px;
}

/* HEADER */
.mobile-app-customer-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-app-customer-id {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1f2937;
}

.mobile-app-customer-badge {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  background: #eef2ff;
  color: #3730a3;
}

/* NAME */
.mobile-app-customer-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

/* BODY */
.mobile-app-customer-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-app-customer-row {
  display: flex;
  flex-direction: column;
  /* 🔥 vertical = more height */
  gap: 2px;
  font-size: 0.85rem;
}

.mobile-app-customer-row span {
  color: #6b7280;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-app-customer-row strong {
  color: #111827;
  font-weight: 600;
  word-break: break-word;
  line-height: 1.35;
}

/* ACTIONS */
.mobile-app-customer-actions {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: white;
}

.mobile-app-customer-customer-extra {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-app-customer-customer-extra-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85rem;
}

.mobile-app-customer-customer-extra-row span {
  color: #6b7280;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-app-customer-customer-extra-row strong {
  font-weight: 600;
  color: #111827;
}

.mobile-app-customer-customer-active,
.mobile-app-customer-customer-inactive {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 12px;
  border-radius: 999px;
  /* pill shape */

  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  width: fit-content;
}

/* ACTIVE */
.mobile-app-customer-customer-active {
  background: #dcfce7;
  /* light green */
  color: #166534;
  /* dark green */
  border: 1px solid #86efac;
}

/* INACTIVE */
.mobile-app-customer-customer-inactive {
  background: #fee2e2;
  /* light red */
  color: #7f1d1d;
  /* dark red */
  border: 1px solid #fecaca;
}

.mobile-app-customer-customer-password-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
}

.mobile-app-customer-customer-password-box {
  flex: 1;
  margin-top: 8px;
  border: 1px dashed #d1d5db;
  border-radius: 14px;
  padding: 12px 14px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-app-customer-customer-password-box span {
  font-size: 12px;
  color: #6b7280;
}

.mobile-app-customer-customer-password-box strong {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.02em;
}

.mobile-app-customer-customer-password-reset {
  margin-top: 8px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #eca2a2;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.05s ease;
}

/* Animate while changing (fade out + tiny lift) */
.mobile-app-customer-customer-password-box strong {
  display: inline-block;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
  will-change: opacity, transform;
}

.mobile-app-customer-customer-password-box strong.pwd-changing {
  opacity: 0;
  transform: translateY(-4px) rotateX(20deg);
}

/* Animate after change (fade in + subtle pop + glow) */
.mobile-app-customer-customer-password-box strong.pwd-changed {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  filter: drop-shadow(0 2px 10px rgba(59, 130, 246, 0.25));
}

.mobile-app-customer-customer-password-reset:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.mobile-app-customer-customer-password-reset:active {
  transform: scale(0.97);
}

.mobile-app-customer-customer-password-reset:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

.fade-collapse {
  animation: fadeCollapse 280ms ease forwards;
}

@keyframes fadeCollapse {
  from {
    opacity: 1;
    transform: scale(1);
    max-height: 500px;
    margin-bottom: 14px;
  }

  to {
    opacity: 0;
    transform: scale(0.97);
    max-height: 0;
    margin-bottom: 0;
  }
}










#manageCustomers .customer-card {
  padding: 10px 15px;
  margin: 6px 0;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Arial, sans-serif;
}

#manageCustomers .customer-card:hover {
  background: #f0f0f0;
}

.customer-id {
  font-weight: bold;
  color: #444;
}

.customer-name {
  color: #222;
}

.customer-qr img,
.customer-qr canvas {
  border: 1px solid #ccc;
  background: #fff;
  padding: 3px;
  border-radius: 4px;
}
.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: 18%;
  float: left;
  padding: 7px 1%;
}
#topcenter {
    width: 20%;
    float: left;
    padding: 6px 0%;
  }
#topright {
  width: 58%;
  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;
  padding: 12px;
}
.c_logout a:hover {
  color: #fff !important;
  background: #fe2121 !important;
}
.c_logout svg {
    width: 24px;
    fill: #e31e24;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.c_logout:hover svg {
    width: 24px;
    fill: #fff;
}
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%;
  }
}

.mobile-app-ststs-wrapper{
  width: 100%;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 15px;
}

#stats canvas {
    border: none !important;
    background: transparent;
}

