body {
  height: 100vh;
  max-height: 100vh;
  text-rendering: geometricPrecision;
  overflow-y: scroll;
  overflow-x: hidden;
}

#app {
  display: grid;
  grid-template-rows: 80px 1fr 56px;
  height: 100vh;
}

#app a {
  text-decoration: none;
}

#app > .header {
  height: 80px;
}

#app > .footer {
  height: 56px;
}

#app > .content > div {
  display: none;
}

#app > .content > div.active {
  display: block;
}

#app header, #app > footer {
  position: fixed;
  width: 100vw;
  display: grid;
  align-items: center;
}

#app header > div, #app > footer > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#app header {
  top: 0;
  grid-template-columns: 125px 1fr 125px;
}

#app header > * {
  width: 100%;
  height: 100%;
}

#app main {
  padding-bottom: 65px;
  height: fit-content;
}

#app footer {
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

#app footer > * {
  width: 100%;
  height: 100%;
}

#app > main {
  padding-top: 80px;
}

body {
  margin: 0;
  padding: 0;
}

body * {
  box-sizing: border-box;
}

body button {
  border: 0;
  outline: 0;
  background: none;
}

body input, body textarea {
  background: none;
  outline: none;
  width: 100%;
}

body ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

@font-face {
  font-family: "Archivo";
  src: url("./../fonts/Archivo-VariableFont_wdth,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
}

@font-face {
  font-family: 'Material Icons Outlined';
  font-style: normal;
  font-weight: 400;
  src: local("Material Icons Outlined"), local("MaterialIconsOutlined-Regular"), url("./../fonts/MaterialIconsOutlined-Regular.otf") format("opentype");
}

.icon {
  font-family: 'Material Icons Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
}

.container {
  width: 100%;
  padding: 15px;
}

.input-text.search input {
  border-color: var(--lightgray);
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
}

.input-text.search input, .input-text.search label {
  padding: 16px 14px;
  font-weight: 300;
}

.input-text.search label {
  z-index: -1;
}

.input-text.search input:focus + label,
.input-text.search input:not(:placeholder-shown) + label {
  padding: 8px 7px;
  top: -16px;
  font-size: 14px;
  z-index: 1;
}

.input-text.search input:focus {
  box-shadow: 0 0 0 4px var(--active);
}

.switch-field {
  display: flex;
}

.switch-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.switch-field label {
  border-radius: 4px;
  padding: 16px 14px;
  text-align: center;
  margin-right: -1px;
  transition: all 400ms ease-in-out;
}

.switch-field label:hover {
  cursor: pointer;
}

.switch-field label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
  border-radius: 0 4px 4px 0;
}

.button.action {
  width: 175px;
  height: 50px;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  background: var(--active);
  border: 0;
  color: var(--bg);
}

.button.floating {
  position: fixed;
  bottom: 73px;
  right: 15px;
  width: 175px;
  height: 50px;
  z-index: 1;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  background: var(--text);
  border: 0;
  color: var(--bg);
}

.button.floating .icon {
  margin-left: 10px;
}

.modal {
  box-shadow: var(--shadow);
}

.modal > .dialog > .header {
  height: 70px;
  border-bottom: solid 1px var(--lightgray);
}

.modal > .dialog > .header > .button {
  justify-content: center;
  width: 70px;
  margin-right: 15px;
  border: 0;
}

.modal > .dialog > .header > .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
}

.modal > .dialog > .header > .save, .modal > .dialog > .header > .edit {
  margin-left: auto;
}

.modal > .dialog > .header > .save, .modal > .dialog > .header > .edit, .modal > .dialog > .header > .cancel {
  flex-direction: column;
  font-size: 12px;
}

.modal > .dialog > .header > .save::before, .modal > .dialog > .header > .edit::before, .modal > .dialog > .header > .cancel::before {
  content: '';
  font-family: 'Material Icons Outlined';
  font-size: 22px;
  position: relative;
  padding: 10px;
}

.modal > .dialog > .header .button.save::before {
  content: 'check';
}

.modal > .dialog > .header .button.edit::before {
  content: 'edit';
}

.modal > .dialog > .header .button.cancel::before {
  content: 'close';
}

.modal > .dialog > .body {
  height: calc(100vh - 70px);
}

.modal > .dialog > .body .data-fields {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modal > .dialog > .body .data-fields > form {
  height: 100%;
}

.modal > .dialog > .body .button.delete {
  padding: 15px;
  color: var(--red);
}

.modal > .dialog > .footer {
  height: 70px;
  background-color: var(--bg);
}

.modal > .dialog > .footer > .button {
  justify-content: center;
  width: 70px;
  margin-right: 15px;
  border: 0;
  flex-direction: column;
  font-size: 12px;
}

.modal > .dialog > .footer > .button::before {
  content: '';
  font-family: 'Material Icons Outlined';
  font-size: 22px;
  position: relative;
  padding: 10px;
}

.modal > .dialog > .footer .button.delete::before {
  content: 'delete';
}

.tabs .links {
  border-bottom-color: var(--lightgray) !important;
}

.tabs .links li {
  flex: 1 1 0px;
}

.tabs .links li.active {
  border-bottom-color: var(--active) !important;
}

.tabs .links .button {
  border: 0;
  padding: 15px;
  justify-content: center;
  width: 100%;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 35px;
  aspect-ratio: 1;
  --c1:linear-gradient(90deg,#0000 calc(100%/3),#046D8B 0 calc(2*100%/3),#0000 0);
  --c2:linear-gradient( 0deg,#0000 calc(100%/3),#046D8B 0 calc(2*100%/3),#0000 0);
  background: var(--c1), var(--c2), var(--c1), var(--c2);
  background-size: 300% 4px,4px 300%;
  background-repeat: no-repeat;
  animation: l3 1000ms infinite linear;
}

@keyframes l3 {
  0% {
    background-position: 50%  0,100% 100%,0    100%,0 0;
  }
  25% {
    background-position: 0    0,100% 50% ,0    100%,0 0;
  }
  50% {
    background-position: 0    0,100% 0   ,50%  100%,0 0;
  }
  75% {
    background-position: 0    0,100% 0   ,100% 100%,0 50%;
  }
  75.01% {
    background-position: 100% 0,100% 0   ,100% 100%,0 50%;
  }
  100% {
    background-position: 50%  0,100% 0   ,100% 100%,0 100%;
  }
}

header {
  background-color: var(--bg);
  border-bottom: solid 1px var(--lightgray);
  z-index: 2;
}

header .button {
  width: 100%;
  height: 100%;
  justify-content: center;
  border: 0;
  column-gap: 5px;
}

footer {
  border-top: solid 1px var(--lightgray);
  background-color: #fff;
}

footer .button {
  width: 100%;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  border: 0;
}

footer .button span {
  font-size: 22px;
  padding: 2px;
  margin-bottom: 4px;
}

footer .button.active span {
  background-color: var(--active);
}

#clients-table td[data-label='Ostatnie spotkania'] {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#clients-table td[data-label='Ostatnie spotkania'] > span {
  font-size: 12px;
  color: #fff;
  background: var(--red);
  padding: 4px;
  margin: 2px;
}

table.table-type-1 {
  border-collapse: collapse;
  width: 100%;
}

table.table-type-1 > thead {
  border-bottom: solid 1px var(--table-head-border);
}

table.table-type-1 > thead td {
  line-height: 1.5;
  padding: 10px;
  font-weight: 700;
  vertical-align: top;
}

table.table-type-1 > tbody > tr {
  border-bottom: solid 1px var(--table-border);
  position: relative;
  display: none;
}

table.table-type-1 > tbody > tr.active {
  display: table-row;
}

table.table-type-1 > tbody > tr:nth-child(even) {
  background-color: var(--row-hover);
}

table.table-type-1 > tbody > tr td {
  line-height: 1.5;
  padding: 8px 10px;
}

table.table-type-1 > tbody > tr td p {
  margin: 0;
}

ul.list-type-1 > li {
  display: flex;
  flex-direction: row;
  border-bottom: solid 1px var(--lightgray);
}

ul.list-type-1 > li > label, ul.list-type-1 > li > div {
  width: 50%;
  font-size: 16px;
}

ul.list-type-1 > li > label {
  color: var(--gray);
  padding: 15px 0 15px 15px;
}

ul.list-type-1 > li.fluid {
  flex-direction: column;
  flex-grow: 1;
}

ul.list-type-1 > li.fluid > label {
  padding: 15px 15px 0 15px;
}

ul.list-type-1 > li.fluid > div {
  padding: 15px 0 0 0;
  align-items: start;
}

ul.list-type-1 > li.fluid > label, ul.list-type-1 > li.fluid > div {
  width: 100%;
}

ul.list-type-1 > li.fluid > div {
  height: 100%;
}

ul.list-type-1 > li.fluid .textarea:not(.input-text) {
  padding: 15px;
}

ul.list-type-1 > li > div {
  display: flex;
  align-items: center;
}

ul.list-type-1 > li > div > input, ul.list-type-1 > li > div > textarea {
  border: 0;
  height: 100%;
  padding-left: 7px;
  color: var(--darkblue);
  background-color: var(--lightlightgray);
}

ul.list-type-1 > li > div > input:focus, ul.list-type-1 > li > div > textarea:focus {
  background-color: #eee;
  padding-left: 7px;
}

ul.list-type-1 > li > div > textarea, ul.list-type-1 > li > div > textarea:focus {
  height: 10rem;
  height: 100%;
  padding: 0 15px;
  line-height: 2;
}

.accordion > .header {
  cursor: pointer;
}

.accordion > .content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms;
  transform-origin: top;
}

.accordion > .content.active {
  grid-template-rows: 1fr;
  transform-origin: bottom;
}

.accordion > .content > div {
  overflow: hidden;
}

.autocomplete {
  position: relative;
  width: max-content;
}

.autocomplete > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  visibility: hidden;
  background-color: inherit;
}

.autocomplete.active > ul {
  visibility: visible;
}

.autocomplete.active > ul > li {
  display: none;
}

.autocomplete.active > ul > li.active {
  display: block;
}

.button {
  background: none;
  border-width: 1px;
  border-style: solid;
  font-family: inherit;
  outline: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-block: 0;
  position: relative;
  overflow: hidden;
  transition: background 400ms;
  cursor: pointer;
}

.button > span.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(0, 0, 0, 0.7);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.button > span.icon {
  margin-top: -2px;
}

.dropdown {
  position: relative;
  width: max-content;
}

.dropdown > .items {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  visibility: hidden;
  background-color: inherit;
}

.dropdown.active > .items {
  visibility: visible;
}

.input-text {
  position: relative;
}

.input-text label {
  position: absolute;
  top: 0;
  left: 0;
}

.input-text input::placeholder {
  opacity: 0;
}

.input-text input:focus + label,
.input-text input:not(:placeholder-shown) + label {
  top: -50%;
  left: 12px;
  font-size: 75%;
  background: #fff;
}

.modal {
  position: fixed;
  top: 0;
  transform: translateY(100vh);
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  transition: all 300ms ease;
}

.modal.active {
  transform: translateY(0);
}

.modal.active > .dialog > .footer {
  position: fixed;
  bottom: 0;
}

.modal > .dialog {
  max-height: 100%;
  position: relative;
}

.modal > .dialog > .header {
  display: flex;
  align-items: center;
}

.modal > .dialog > .body {
  overflow-y: auto;
}

.modal > .dialog > .footer {
  display: flex;
  align-items: center;
  width: 100%;
}

.tabs ul.links,
.tabs ul.contents {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.tabs ul.links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: inherit;
  cursor: pointer;
}

.tabs ul.links > li.active {
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-bottom-color: inherit;
}

.tabs ul.contents > li {
  display: none;
}

.tabs ul.contents > li.active {
  display: initial;
}

input {
  font-family: inherit;
  font-size: inherit;
}

.input-text.autocomplete,
.input-text.select,
.input-text.multiselect {
  position: relative;
}

.input-text.autocomplete ul,
.input-text.select ul,
.input-text.multiselect ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
}

.input-text.autocomplete.active > ul,
.input-text.select.active > ul,
.input-text.multiselect.active > ul {
  background: var(--bg);
  border: solid 1px var(--lightgray);
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.input-text.autocomplete.active > ul > li,
.input-text.select.active > ul > li,
.input-text.multiselect.active > ul > li {
  padding: 10px;
}

.input-text.autocomplete.active > ul > li:hover,
.input-text.select.active > ul > li:hover,
.input-text.multiselect.active > ul > li:hover {
  background-color: var(--lightgray);
  cursor: pointer;
}

.input-text.multiselect {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 15px 0;
}

.input-text.multiselect ul > li {
  display: none;
}

.input-text.multiselect ul > li.active {
  display: block;
}

.input-text.multiselect .badges > span {
  display: inline-flex;
  font-size: 16px;
  padding: 8px 12px;
  border: solid 1px var(--lightgray);
  border-radius: 100vw;
  margin-bottom: 15px;
  cursor: pointer;
}

.input-text.multiselect .badges > span:after {
  content: 'close';
  font-family: 'Material Icons Outlined';
  font-size: 16px;
  margin-left: 4px;
  color: var(--gray);
}

.input-text.multiselect input {
  padding: 15px;
}
/*# sourceMappingURL=core.css.map */