#page-layout {
  background: #19297c;
  background: -webkit-gradient(linear, left top, right top, from(#19297c), to(#5b2a86));
  background: linear-gradient(to right, #19297c 0%, #5b2a86 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#19297c', endColorstr='#5b2a86',GradientType=1 );
}

[data-layout='list'] .main-content {
  background: white;
  background: -webkit-gradient(linear, left top, right top, from(white), to(#E6E6E6));
  background: linear-gradient(to right, white 0%, #E6E6E6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='white', endColorstr='#E6E6E6',GradientType=1 );
}

.button .text, table th > *:not(.button), table td > *:not(.button) {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

:root {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 18px;
}

::-webkit-scrollbar {
  width: 0.666rem;
}

::-webkit-scrollbar-track {
  background: #31184C;
}

::-webkit-scrollbar-thumb {
  background: #7F7F7F;
}

::-webkit-scrollbar-thumb:hover {
  background: #2597BF;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, cite, code,
del, dfn, img, ins, kbd, samp,
tt, var, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

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

textarea {
  font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6, p, a, abbr, acronym, address, cite,
code, del, em, dt, dd, li, label, input, select, textarea {
  font-size: 1rem;
  line-height: 140%;
  text-overflow: ellipsis;
}

a {
  text-decoration: none;
  color: #29ABE2;
  -webkit-transition: color 0.15s ease-out;
  transition: color 0.15s ease-out;
}

a:hover {
  color: #2597BF;
}

.link-null {
  border-bottom: 0.111rem dashed rgba(37, 151, 191, 0.12);
  -webkit-transition: border-color 0.15s ease-out;
  transition: border-color 0.15s ease-out;
  cursor: pointer;
}

.link-null:hover,
.link-null:focus {
  border-color: rgba(37, 151, 191, 0.3);
}

html, body, div, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, cite, code, kbd, samp,
tt, var, dl, dt, dd, ol, ul,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, audio, video, input, select {
  width: 100%;
}

img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

#message-box {
  position: fixed;
  z-index: 50;
  background-color: #D8D8D8;
  width: auto;
  height: auto;
  padding: 0.444rem 1.333rem;
  border-radius: 2rem;
  bottom: 1rem;
  left: 50%;
  color: white;
  font-weight: 500;
  -webkit-box-shadow: 0 0.222rem 0.222rem rgba(0, 0, 0, 0.12);
          box-shadow: 0 0.222rem 0.222rem rgba(0, 0, 0, 0.12);
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translateX(-50%) translateY(5rem);
          transform: translateX(-50%) translateY(5rem);
}

#message-box #message-box-icon {
  max-width: 1.666rem;
  width: 1.666rem;
  min-width: 1.666rem;
  height: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

#message-box #message-box-icon::before {
  content: '\f00c';
  line-height: 140%;
}

#message-box #message-box-text, #message-box #message-box-text * {
  display: inline;
}

#message-box a {
  font-weight: 500;
  font-style: italic;
  border-bottom: 0.055rem solid rgba(37, 151, 191, 0.12);
}

#message-box a:hover,
#message-box a:focus {
  border-bottom-color: rgba(37, 151, 191, 0.3);
}

#message-box * {
  font-size: 0.777rem;
}

#message-box:not(.hidden) {
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}

#message-box:not(.hidden) #message-box-icon {
  display: block;
}

#message-box:not(.hidden) a {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

#message-box:not(.hidden) a:hover, #message-box:not(.hidden) a:focus {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

#message-box.positive {
  background-color: #39B54A;
}

#message-box.negative {
  background-color: #C1272D;
}

#message-box.informative {
  background-color: #2597BF;
}

#page-layout {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  min-height: 100vh;
  padding: 2rem;
}

#page-layout > *:not(:last-child) {
  margin-bottom: 1rem;
}

.button {
  line-height: 100%;
  background-color: #29ABE2;
  color: white;
  padding: 0.444rem 0.777rem;
  border-radius: 100rem;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-shadow: 0 0.444rem 0.666rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.444rem 0.666rem rgba(0, 0, 0, 0.08);
  -webkit-transition: color 0.15s ease-out, background-color 0.15s ease-out, -webkit-box-shadow 0.15s ease-out;
  transition: color 0.15s ease-out, background-color 0.15s ease-out, -webkit-box-shadow 0.15s ease-out;
  transition: box-shadow 0.15s ease-out, color 0.15s ease-out, background-color 0.15s ease-out;
  transition: box-shadow 0.15s ease-out, color 0.15s ease-out, background-color 0.15s ease-out, -webkit-box-shadow 0.15s ease-out;
}

.button .text {
  font-weight: 700;
  font-size: 0.777rem;
}

.button .icon {
  font-size: 0.666rem;
}

.button > *:not(:first-child) {
  margin-left: 0.444rem;
}

.button:hover, a.button:focus {
  color: white;
  background-color: #2597BF;
  -webkit-box-shadow: 0 0.444rem 0.777rem rgba(0, 0, 0, 0.12);
          box-shadow: 0 0.444rem 0.777rem rgba(0, 0, 0, 0.12);
}

.button-person {
  padding: 0 0.666rem 0 0;
  -webkit-box-shadow: 0 0.222rem 0.444rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.222rem 0.444rem rgba(0, 0, 0, 0.08);
}

.button-person .person-photo {
  height: 1.333rem;
  width: 1.333rem;
  border-radius: 100rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.button-person .person-name {
  padding-top: 0.222rem;
  padding-bottom: 0.222rem;
  font-size: 0.666rem;
  font-weight: 600;
}

.button-person:hover, a.button-person:focus {
  -webkit-box-shadow: 0 0.222rem 0.666rem rgba(0, 0, 0, 0.12);
          box-shadow: 0 0.222rem 0.666rem rgba(0, 0, 0, 0.12);
}

#sidenav-toggler {
  position: fixed;
  left: 0;
}

table tbody > tr:not(:last-child):not(.row-selectable), table thead > tr:not(:last-child):not(.row-selectable) {
  border-bottom: 0.055rem solid #D8D8D8;
}

table thead.sticky tr {
  position: fixed;
  top: 0;
  right: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 60;
  width: calc(100% - 14rem - 2rem - 2rem);
  -webkit-transition: width 0.15s ease-out;
  transition: width 0.15s ease-out;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

table tr {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-top: 0.666rem;
  padding-bottom: 0.666rem;
  font-weight: 400;
  background-color: transparent;
}

table tr > *:not(:last-child) {
  margin-right: 0.444rem;
}

table th, table td {
  text-align: left;
  overflow: hidden;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

table th > *:not(:last-child), table td > *:not(:last-child) {
  margin-right: 0.222rem;
}

table th > .text, table td > .text {
  height: 1rem;
}

table tr, table a {
  font-size: 0.777rem;
}

table a {
  font-weight: 600;
}

table thead tr {
  padding-top: 0;
  padding-bottom: 1rem;
}

table thead th {
  color: #4A4A4A;
  font-size: 0.666rem;
  z-index: 10;
}

table tbody .column-amount,
table tbody .column-price,
table tbody .column-total {
  font-family: 'PT Mono', monospace;
  font-weight: normal;
}

table tbody tr:not(.row-selectable):first-child {
  padding-top: 0;
}

table tbody tr:not(.row-selectable):last-child {
  padding-bottom: 0;
}

table .column-select {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-2rem);
          transform: translateY(-50%) translateX(-2rem);
  width: calc(100% + (2rem * 2));
  left: 0;
  height: calc(100% + (0.333rem * 2));
  z-index: 5;
  margin-right: 0;
}

table .column-select,
table .column-select a {
  height: 100%;
}

table .column-select a {
  width: 100%;
}

table .row-selectable::before {
  position: absolute;
  content: '';
  background-color: white;
  left: -2rem;
  top: 0;
  width: calc(100% + (2rem * 2));
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

table tbody > .row-selectable:not(:last-child)::after {
  position: absolute;
  content: '';
  right: -2rem;
  width: calc(100% + 2rem - 2.666rem - 0.666rem);
  height: 0.055rem;
  background-color: #D8D8D8;
  bottom: 0;
}

table .row-selectable:hover::before,
table .row-selectable:focus-within::before {
  opacity: 1;
}

table .column-photo {
  min-width: 2.666rem;
  width: 2.666rem;
  height: 2.666rem;
  margin-right: 0.666rem !important;
}

table .column-photo img {
  width: 2.666rem;
  height: 2.666rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.666rem;
}

table .column-amount,
table .column-total,
table .column-time {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

table .column-amount {
  max-width: 3rem;
}

table .column-gender {
  max-width: 4rem;
}

table .column-attendance {
  max-width: 5rem;
}

table .column-time,
table .column-section,
table .column-status,
table .column-period,
table .column-limit {
  max-width: 6rem;
}

table .column-status p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 0.777rem;
}

table .column-status .icon,
table .column-status .text {
  height: 1rem;
}

table .column-status .icon {
  margin-right: .333rem;
}

table .column-status .text::before {
  display: none;
}

table .column-employee .button-person {
  background-color: white;
  color: #29ABE2;
}

table .column-employee .button-person:hover, table .column-employee .button-person:focus {
  background-color: #E6E6E6;
}

table .column-date {
  max-width: 7rem;
}

table .column-total,
table .column-phone,
table .column-payment,
table .column-price {
  max-width: 8rem;
}

table .column-phone {
  z-index: 6;
}

table .column-trainers,
table .column-client,
table .column-employee {
  z-index: 7;
}

table th.column-actions {
  opacity: 0;
}

table .column-actions {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 8;
  min-width: 3rem;
  width: 3rem;
  max-width: 3rem;
}

table .column-actions .button {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

table .column-actions .icon {
  margin-right: 0;
}

table .column-actions .text {
  display: none;
}

table .row-selectable:hover .column-name a,
table .row-selectable:focus-within .column-name a {
  color: #2597BF;
}

table .row-selectable:hover .column-actions .button,
table .row-selectable:focus-within .column-actions .button {
  opacity: 1;
}

table .negative {
  color: #C1272D;
}

table .positive {
  color: #39B54A;
}

.table-items .row-selectable.row-item::after {
  width: calc(100% + 2.66rem - 0.666rem);
}

.table-items .row-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.table-items .column-time {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.table-items .negative .text::before {
  content: '-';
}

.table-items .positive .text::before {
  content: '+';
}

.column-name.new-category,
.column-name.new-category ~ td,
.column-time.new-day,
.column-time.new-day ~ td {
  margin-top: 2.666rem;
}

.new-category,
.new-day {
  overflow: visible;
}

.new-category .category,
.new-category .date,
.new-day .category,
.new-day .date {
  font-weight: 500;
  position: absolute;
  left: 0;
  top: -2rem;
}

#page-content {
  min-height: calc(100vh - 4rem - 1rem - 2.33rem);
  width: 100%;
}

#page-footer {
  margin-top: 1rem;
  padding-top: 2rem;
  color: white;
  font-weight: 500;
}

#page-footer .list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#page-footer .list li {
  padding-left: 1.333rem;
  padding-right: 1.333rem;
}

#page-footer .list li, #page-footer .list a {
  font-size: 0.777rem;
}

#page-footer .list > li:not(:last-child) {
  border-right: solid 0.055rem rgba(255, 255, 255, 0.12);
}

#page-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2rem;
  width: calc(100% + (2rem * 2));
  border-top: 0.055rem solid rgba(255, 255, 255, 0.12);
}

[data-layout='list'] .main-content {
  margin-left: 14rem;
  width: calc(100% - 14rem);
  padding: 1.333rem 2rem;
  border-radius: 2rem;
  min-height: calc(100vh - 4rem - 1rem - 2.33rem);
}

.filter-search input {
  padding: 0.222rem 0.666rem;
  border-radius: 1rem;
  border: 0.055rem solid #29ABE2;
  font-size: 0.777rem;
  text-align: center;
  outline: none;
  font-weight: 500;
}
/*# sourceMappingURL=main.css.map */