/******************************************************************************/
/******************************************************************************/
.button-style {
  outline: 0;
  padding: 1ch 3ch;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background: #448AFF;
  border: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  font-size: 15px;
  color: #f9f9fb;
  margin: 1em;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
}
.button-style:hover {
  background: #5e9aff;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.button-style:focus {
  background: #2a7aff;
}
.button-style.disabled {
  background: #8f9db4;
  color: rgba(249, 249, 251, 0.6);
  pointer-events: none;
  box-shadow: none;
}
.button-style .icon-end {
  margin-right: 1em;
}
.button-style .icon-start {
  margin-left: 1em;
}
.button-secondary {
  outline: 0;
  padding: 1ch 3ch;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background: white;
  border: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  font-size: 15px;
  color: #f9f9fb;
  margin: 1em;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
  color: #212121;
}
.button-secondary:hover {
  background: #ffffff;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.button-secondary:focus {
  background: #f2f2f2;
}
.button-secondary.disabled {
  background: #ffffff;
  color: rgba(249, 249, 251, 0.6);
  pointer-events: none;
  box-shadow: none;
  color: rgba(33, 33, 33, 0.6);
}
.button-secondary .icon-end {
  margin-right: 1em;
}
.button-secondary .icon-start {
  margin-left: 1em;
}
.back-button {
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: 5em;
  border: 2px solid;
  color: #3F51B5;
  outline: 0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: .2s;
  margin: 1em;
}
.back-button:hover,
.back-button:focus {
  color: #32408f;
  background: rgba(63, 81, 181, 0.1);
}
.back-button:hover .button-icon:first-of-type,
.back-button:focus .button-icon:first-of-type {
  transform: translateX(0.25em);
}
.back-button .button-icon {
  transition: inherit;
  margin-left: 1ch;
}
.movement-fix {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}
.tiny-button {
  padding: .5em 1.5em;
  font-size: 0.8em;
  margin: .5em;
  border-radius: 5em;
  font-weight: 500;
  background: transparent;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(48, 57, 107, 0.2);
  text-decoration: none;
  color: #212121;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: .2s;
  vertical-align: middle;
  outline: 0;
}
.tiny-button:hover {
  color: #3F51B5;
  background: rgba(63, 81, 181, 0.05);
  box-shadow: inset 0 0 0 1px rgba(48, 57, 107, 0.23);
}
.tiny-button .icon-end {
  margin-right: 1em;
}
.tiny-button .icon-start {
  margin-left: 1em;
}
.tiny-button.disabled {
  opacity: .45;
  pointer-events: none;
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
::selection {
  background: #3F51B5;
  color: white;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
}
input,
textarea,
button {
  font: inherit;
}
html,
body {
  height: 100%;
}
body {
  direction: rtl;
  font-family: Heebo, Arial;
  letter-spacing: -0.25px;
  color: #212121;
  margin: 0;
  padding: 0;
  background: #f9f9fb;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  /*&#input-page {
        #content-sidebar {
            position: fixed;
            right: 0;
            top: 0;
            bottom: 0;
            width: auto;
            z-index: 13;

            &::-webkit-scrollbar {width: 10px; background: fade(@primary, 33%);}
            &::-webkit-scrollbar-thumb {background: @primary; border-radius: 10em;}
        }

        overflow-y: hidden;
    }*/
}
body.mobile #content-sidebar {
  overflow-y: auto;
}
.website-logo {
  height: 2em;
  padding: 1em;
  box-sizing: content-box;
}
.explain {
  opacity: 0.5;
  display: inline-flex;
  vertical-align: middle;
  transition: opacity .2s;
}
.explain:hover {
  opacity: .75;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea {
  padding: 0.5em 1em;
  border: 0;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin: 1em;
  outline: 0;
  transition: 0.2s;
  box-sizing: border-box;
  font-size: inherit;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #3F51B5;
}
input[type="text"].error,
input[type="email"].error,
input[type="tel"].error,
input[type="number"].error,
input[type="password"].error,
textarea.error,
form .form-field .field-value-container label.error,
.select2-container.error .select2-selection {
  border-color: #d95753;
  background: rgba(217, 87, 83, 0.05);
}
input[type="text"].success,
input[type="email"].success,
input[type="tel"].success,
input[type="number"].success,
input[type="password"].success,
textarea.success {
  border-color: #3ecf8e;
  background: rgba(62, 207, 142, 0.05);
}
input[type="text"][disabled],
input[type="email"][disabled],
input[type="tel"][disabled],
input[type="number"][disabled],
input[type="password"][disabled],
textarea[disabled] {
  /*border-top: 0;
        border-left: 0;
        border-right: 0;
        border-radius: 0;*/
  border-color: rgba(0, 0, 0, 0.05);
  color: #212121;
}
form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1em;
  text-align: center;
  position: relative;
  z-index: 1;
  background: #fcfcfd;
  border-radius: 0.5em;
  box-shadow: 0 0 0 1px rgba(63, 81, 181, 0.06);
}
form .form-field {
  text-align: right;
  display: flex;
}
form .form-field + .form-field {
  padding-top: 1em;
  margin-top: 1em;
  box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.07);
}
form .form-field .field-name {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: .5625em 0;
  margin-left: 1em;
  align-self: flex-start;
}
form .form-field .field-name i,
form .form-field .field-name svg {
  color: #3F51B5;
}
form .form-field .field-name i:last-of-type,
form .form-field .field-name svg:last-of-type {
  margin-left: .75em;
}
form .form-field .field-name .explain {
  margin-right: .5em;
}
form .form-field .field-name .field-name-content .field-description {
  font-size: .8em;
  color: rgba(33, 33, 33, 0.6);
}
form .form-field .field-value-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 0;
}
form .form-field .field-value-container input,
form .form-field .field-value-container textarea {
  margin: 0;
}
form .form-field .field-value-container label {
  cursor: pointer;
  padding: .25em .5em;
  padding-right: 0;
}
form .form-field .field-value-container label input {
  margin-left: .33333333333333333em;
}
form .form-field .field-value-container label.error {
  color: #d95753;
}
form .form-field .field-value-container label.error input[type=checkbox]:after {
  border-color: #715655;
}
form .form-field .field-value-container *:not(.not-100-percent-width) + .select2-container {
  width: 100% !important;
}
form .form-field.titled {
  box-shadow: none;
  margin-bottom: 1em;
}
form .form-field.titled .field-name {
  justify-content: center;
  /* font-weight: bold; */
  color: #3F51B5;
  background: rgba(63, 81, 181, 0.06);
  margin-left: 0;
  border-radius: 10em;
}
form .form-field.titled + .form-field {
  box-shadow: none;
  margin-top: 0;
  padding-top: 0;
}
body.mobile form .form-field,
form .form-field.column {
  flex-wrap: wrap;
}
body.mobile form .form-field .field-name,
form .form-field.column .field-name {
  margin-left: 0;
  margin-bottom: 1em;
  padding: 0;
}
body.mobile form .form-field .field-value-container,
form .form-field.column .field-value-container {
  flex-basis: 100%;
}
form .form-submit {
  outline: 0;
  padding: 1ch 3ch;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background: #448AFF;
  border: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  font-size: 15px;
  color: #f9f9fb;
  margin: 1em;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
}
form .form-submit:hover {
  background: #5e9aff;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
form .form-submit:focus {
  background: #2a7aff;
}
form .form-submit.disabled {
  background: #8f9db4;
  color: rgba(249, 249, 251, 0.6);
  pointer-events: none;
  box-shadow: none;
}
form .form-submit .icon-end {
  margin-right: 1em;
}
form .form-submit .icon-start {
  margin-left: 1em;
}
form .form-submit:not(.regular-margin-top) {
  margin-top: 2em;
}
h1 + form {
  margin-top: 2.5em;
}
table {
  border-spacing: 0px;
  border-radius: 0.5em;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.15);
  margin: auto;
}
@media print {
  table {
    box-shadow: none;
    border: 2px solid rgba(0, 0, 0, 0.2);
  }
  table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  }
}
table.centered {
  text-align: center;
}
table.colored-header thead {
  background: linear-gradient(to left, #3F51B5, #3f8cb5);
  -webkit-print-color-adjust: exact;
  color: white;
}
table.colored-header thead tr:first-of-type th:first-of-type {
  border-top-right-radius: 0.5em;
}
table.colored-header thead tr:first-of-type th:last-of-type {
  border-top-left-radius: 0.5em;
}
table.colored-header thead th {
  padding: .35em .5em;
  font-weight: inherit;
}
table.colored-header thead th.darker {
  background: rgba(0, 0, 0, 0.1);
}
table.colored-header thead th + th {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
table.colored-first-column thead th:first-of-type:first-of-type {
  background: #4558be;
}
table.colored-first-column tbody {
  /*tr:nth-child(odd) {
                td {
                    &:first-of-type {
                        background: lighten(@primary, 4%);
                    }
                }
            }*/
}
table.colored-first-column tbody td:first-of-type {
  background: #4d5ec1;
  color: white;
}
table tbody tr {
  background: #fbfcfe;
}
@media print {
  table tbody tr {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }
}
table tbody tr td {
  padding: .25em .5em;
}
@media print {
  table tbody tr td {
    padding: .1em .25em;
  }
}
table tbody tr:nth-child(odd) {
  background: #f7f8fc;
}
@media print {
  table tbody tr:nth-child(odd) {
    background: transparent;
  }
}
table tbody tr:last-of-type {
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}
table tbody tr:last-of-type td:first-of-type {
  border-bottom-right-radius: 0.5em;
}
table tbody tr:last-of-type td:last-of-type {
  border-bottom-left-radius: 0.5em;
}
input[type=checkbox] {
  position: relative;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: 0;
  margin: 0.5em;
  border-radius: 2px;
  vertical-align: middle;
}
input[type=checkbox]:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  display: table;
  width: 4px;
  height: 9px;
  border: 2px solid #fff;
  border-top-width: 0;
  border-left-width: 0;
  -webkit-transition: 240ms;
  -o-transition: 240ms;
  transition: 240ms;
  -webkit-transform: rotate(45deg) scale(0);
  -ms-transform: rotate(45deg) scale(0);
  -o-transform: rotate(45deg) scale(0);
  transform: rotate(45deg) scale(0);
}
input[type=checkbox]:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.6);
  border-radius: 2px;
  -webkit-transition: 240ms;
  -o-transition: 240ms;
  transition: 240ms;
  box-shadow: inset 0 0 0 0 #3F51B5;
}
input[type=checkbox]:checked:before {
  webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  -o-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
  transition-delay: .05s;
}
input[type=checkbox]:checked:after {
  border-color: #3F51B5;
  box-shadow: inset 0 0 0 8px #3F51B5;
}
input[type=radio] {
  position: relative;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: 0;
  margin: 0.5em;
  border-radius: 100%;
  vertical-align: middle;
}
input[type=radio]:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  display: table;
  width: 10px;
  background: #3F51B5;
  height: 10px;
  transition: 240ms cubic-bezier(0.5, 0, 0, 1);
  border-radius: 10px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
input[type=radio]:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.6);
  border-radius: 100%;
  -webkit-transition: 240ms;
  -o-transition: 240ms;
  transition: 240ms;
  box-shadow: inset 0 0 0 0 #3F51B5;
}
input[type=radio]:checked:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
input[type=radio]:checked:after {
  border-color: #3F51B5;
}
#content-sidebar {
  display: flex;
  background: #1e202f;
  box-shadow: 0 4px 10px rgba(63, 81, 181, 0.07);
  flex-grow: 1;
  flex-direction: column;
  width: 100%;
  height: 100%;
  /*body:not(.mobile) & {
        #header-navs {
            display: flex !important;
        }
    }*/
}
@media print {
  #content-sidebar {
    display: none;
  }
}
#content-sidebar #logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  box-shadow: none;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background .2s;
  outline: 0;
  height: 4em;
}
body:not(.redirecting) #content-sidebar #logo:focus {
  background: rgba(0, 0, 0, 0.5);
}
#content-sidebar #header-navs {
  display: flex;
  justify-content: end;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  overflow-y: overlay;
  overflow-x: hidden;
}
#content-sidebar #header-navs::-webkit-scrollbar {
  background: transparent;
  width: .375em;
}
#content-sidebar #header-navs::-webkit-scrollbar-thumb {
  background: rgba(159, 168, 218, 0.5);
  border-radius: .25em;
}
#content-sidebar #header-navs #pages-nav {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex: 1 0;
}
#content-sidebar #header-navs .nav-item {
  outline: 0;
  text-decoration: none;
  color: #cfd4ed;
  transition: .2s;
  user-select: none;
  position: relative;
  align-items: center;
  /*@media @md {
                padding: .5em 0.8em;
                margin-right: .4em;
            }

            @media @sm {
                padding: .5em 0.6em;
                margin-right: .3em;
            }

            @media @xs {
                padding: .5em 0.4em;
                margin-right: .2em;
            }*/
  /*body.mobile & {
                padding: .5em .5em;
                width: 100%;
                margin-top: .125em;
                margin-right: 0;
                text-align: right;
                display: block;
            }

            & > &:first-of-type {
                margin-right: 2.5em; // so his dropdown wont get out of screen
            }*/
}
#content-sidebar #header-navs .nav-item .nav-item-title {
  padding: 1em 1.25em;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  text-decoration: none;
  color: currentColor;
  outline: 0;
}
#content-sidebar #header-navs .nav-item .nav-item-title .nav-item-icon {
  margin-left: 1em;
  color: rgba(159, 168, 218, 0.75);
  transition: color .2s;
}
#content-sidebar #header-navs .nav-item .nav-item-title:focus .nav-item-icon {
  color: #9fa8da;
}
#content-sidebar #header-navs .nav-item:hover {
  /*.nav-item-name {
                    opacity: 1;
                }*/
  color: white;
}
#content-sidebar #header-navs .nav-item:hover:before {
  background: #3c415d;
}
#content-sidebar #header-navs .nav-item .nav-item-items-wrapper {
  margin: auto;
  display: none;
}
#content-sidebar #header-navs .nav-item .nav-item-items {
  display: flex;
  flex-direction: column;
  transition: inherit;
  position: relative;
  overflow: hidden;
  /*body.mobile & {
                    box-shadow: none;
                    background: transparent;
                    flex-flow: row wrap;
                    margin-top: .25em;
                }*/
}
#content-sidebar #header-navs .nav-item .nav-item-items .nav-url {
  text-decoration: none;
  color: rgba(207, 212, 237, 0.75);
  padding: .75em;
  line-height: 1.25em;
  transition: .2s;
  position: relative;
  display: flex;
  z-index: 2;
  padding-right: 2em;
  /*body.mobile & {
                        border: 0 !important;
                        border-radius: 10em;
                        background: fade(@primary, 8%);
                        margin: .25em;
                        padding: .5em 1em;

                        &:hover {
                            background: @primary;
                            color: white;

                            .icon {color: inherit; transition: none;}
                        }
                    }*/
}
#content-sidebar #header-navs .nav-item .nav-item-items .nav-url:hover {
  background: #14161f;
  color: white;
}
#content-sidebar #header-navs .nav-item .nav-item-items .nav-url:hover .icon {
  opacity: 1;
}
#content-sidebar #header-navs .nav-item .nav-item-items .nav-url:focus {
  outline: 0;
}
#content-sidebar #header-navs .nav-item .nav-item-items .nav-url:focus .icon {
  opacity: 1;
}
#content-sidebar #header-navs .nav-item .nav-item-items .nav-url .icon {
  flex-grow: 0;
  margin-left: .5em;
  opacity: .5;
  transition: opacity .2s;
}
#content-sidebar #header-navs .nav-item .nav-item-items .nav-url .name {
  flex-grow: 1;
  font-size: .875em;
}
#content-sidebar #header-navs .nav-item .nav-item-items .nav-url:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(to right, #000000, transparent);
  opacity: 0;
  transition: inherit;
}
#content-sidebar #header-navs .nav-item .nav-item-items .nav-url.active {
  color: white;
  pointer-events: none;
}
#content-sidebar #header-navs .nav-item .nav-item-items .nav-url.active .icon {
  opacity: 1;
}
#content-sidebar #header-navs .nav-item .nav-item-items .nav-url.active:before {
  opacity: 1;
}
#content-sidebar #header-navs .nav-item:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: .25em;
  background: transparent;
  height: 100%;
  transition: inherit;
  pointer-events: none;
  z-index: 3;
}
#content-sidebar #header-navs .nav-item.opened {
  color: white;
  background: #181a25;
  margin-bottom: .75em;
}
#content-sidebar #header-navs .nav-item.opened:before {
  background: #cfd4ed;
}
#content-sidebar #header-navs .nav-item.opened .nav-item-icon {
  color: #9fa8da;
}
#content-sidebar #header-navs .nav-item.opened .nav-item-title {
  background: #2c3044;
}
body.animate-all-page #content-sidebar #header-navs .nav-item {
  animation: slideFromRight 1s cubic-bezier(0, 0, 0, 1), fadeIn 0.5s;
  animation-fill-mode: both;
}
body.mobile #content-sidebar {
  justify-content: space-between;
}
#body-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
}
#body-wrapper #site-right-pane {
  min-width: 250px;
  max-width: 250px;
  flex: 1 0;
  display: flex;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.25, 0, 0, 1);
  margin-right: -250px;
}
#body-wrapper #site-right-pane.shown {
  margin-right: 0;
}
#body-wrapper #site-right-pane.shown:not(.no-sidebar) ~ #site-left-pane #menu-open-content-overlay {
  opacity: 1;
  pointer-events: all;
}
#body-wrapper #site-right-pane.no-sidebar {
  max-width: 0;
  min-width: 0;
  margin-right: 0;
}
@media print {
  #body-wrapper #site-right-pane {
    display: none;
  }
}
body.animate-all-page #body-wrapper #site-right-pane {
  animation: sidebarAllPageAnimation 0.6s cubic-bezier(0, 0, 0, 1);
}
@keyframes sidebarAllPageAnimation {
  0% {
    transform: translateX(250px);
  }
  100% {
    transform: translateX(0);
  }
}
#body-wrapper #site-left-pane {
  flex: 4 0;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 0;
}
body.mobile #body-wrapper #site-left-pane {
  flex-basis: 100%;
}
#body-wrapper #site-left-pane #menu-open-content-overlay {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(30, 32, 47, 0.5);
  opacity: 0;
  z-index: 999;
  transition: .2s;
  display: none;
  box-shadow: inset -4em 0 6em -4em rgba(30, 32, 47, 0.25);
}
body.mobile #body-wrapper #site-left-pane #menu-open-content-overlay {
  display: block;
}
@media print {
  #body-wrapper #site-left-pane #menu-open-content-overlay {
    display: none;
  }
}
#content-header {
  height: 4em;
  background: white;
  box-shadow: 0 4px 10px rgba(63, 81, 181, 0.07);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}
#content-header.hidden {
  display: none;
}
#content-header #menu-button {
  cursor: pointer;
  flex-direction: column;
  align-self: center;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 4em;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 0;
  border-radius: 10em;
  flex-shrink: 0;
}
#content-header #menu-button .bar-1 {
  margin-top: 3px;
}
#content-header #menu-button .bar-1,
#content-header #menu-button .bar-2,
#content-header #menu-button .bar-3 {
  width: 18px;
  height: 2px;
  margin: 2px 0;
  display: block;
  transition: inherit;
  background: #212121;
}
#content-header #menu-button.toggle {
  margin-right: -4em;
  margin-left: .75em;
}
#content-header #menu-button.toggle .bar-1,
#content-header #menu-button.toggle .bar-2,
#content-header #menu-button.toggle .bar-3 {
  background: white;
}
#content-header #menu-button.toggle .bar-1 {
  transform: rotate(45deg) translate(4.5px, 4px);
}
#content-header #menu-button.toggle .bar-2 {
  transform: scaleX(0);
}
#content-header #menu-button.toggle .bar-3 {
  transform: rotate(-45deg) translate(4px, -4px);
}
body:not(.mobile) #content-header #menu-button.toggle {
  transform: rotate(0);
}
body:not(.mobile) #content-header #menu-button.toggle .bar-1 {
  transform: rotate(45deg) translate(6.75px, -2px);
  width: 9px;
}
body:not(.mobile) #content-header #menu-button.toggle .bar-2 {
  transform: scaleX(1);
}
body:not(.mobile) #content-header #menu-button.toggle .bar-3 {
  transform: rotate(-45deg) translate(6.75px, 2px);
  width: 9px;
}
#content-header #search-container {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  transition: .2s;
  position: relative;
  padding: 1em 0;
}
#content-header #search-container #search-input {
  margin: 0;
  border: 0;
  border-radius: 0 10em 10em 0;
  background: rgba(94, 102, 151, 0.06);
  transition: inherit;
  width: 100%;
  max-width: 200px;
  min-width: 100px;
}
#content-header #search-container #search-input:focus {
  box-shadow: inset 0 4px 10px rgba(63, 81, 181, 0.07);
}
#content-header #search-container #search-button {
  border-radius: 10em 0 0 10em;
  background: rgba(94, 102, 151, 0.06);
  padding: .5em .75em;
  cursor: pointer;
  transition: inherit;
  width: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#content-header #search-container #search-button:focus,
#content-header #search-container #search-button:hover {
  outline: 0;
  background: rgba(0, 0, 0, 0.06);
}
#content-header #search-container #search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  transition: .2s;
  min-width: 200px;
}
#content-header #search-container #search-results .search-result-style {
  padding: .5em 1em;
  background: white;
  border-radius: .5em;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  margin-bottom: .25em;
  text-decoration: none;
  color: #212121;
  animation: fadeIn .2s, slideFromBottom .3s;
  animation-fill-mode: both;
  outline: 0;
  transition: .2s;
}
#content-header #search-container #search-results .search-result-style:hover {
  color: #3F51B5;
}
#content-header #search-container #search-results .search-result-style.structure {
  display: none;
}
#content-header #search-container #search-results .search-result-style.removing {
  animation: fadeOut .2s, slideToTop .3s;
  animation-fill-mode: both;
}
#content-header #search-container #search-results .search-result-style b {
  color: #3F51B5;
  font-weight: 500;
}
#content-header #search-container #search-results .search-result-style:focus {
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2), 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
}
#content-header #search-container #search-results .search-result:not(.structure):not(.removing) ~ #close-results {
  opacity: 1 !important;
  pointer-events: all;
}
#content-header #search-container #search-results #close-results {
  cursor: pointer;
  text-align: center;
  font-size: .8em;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
  margin-left: 1em;
  margin-right: 1em;
  opacity: 0 !important;
  pointer-events: none;
  transition: .2s;
  animation: 0s;
  z-index: -1;
}
#content-header #search-container #search-results #close-results i,
#content-header #search-container #search-results #close-results svg {
  margin-left: .5em;
}
body.mobile #content-header #search-container.hidden #search-input {
  width: 0;
  padding-right: 0;
  padding-left: 0;
  opacity: 0;
  min-width: 0;
}
body.mobile #content-header #search-container.hidden #search-button {
  border-radius: 10em;
}
#content-header #search-container.hidden #search-results {
  opacity: 0;
  pointer-events: none;
}
@media print {
  #content-header {
    display: none;
  }
}
body.animate-all-page #content-header {
  animation: headerAllPageAnimation 0.6s cubic-bezier(0, 0, 0, 1);
  animation-delay: .25s;
  animation-fill-mode: both;
}
@keyframes headerAllPageAnimation {
  0% {
    transform: translateY(-4em);
  }
  100% {
    transform: translateY(0);
  }
}
#content-header #header-user-menu-wrapper {
  display: flex;
  align-self: stretch;
  position: relative;
  justify-content: flex-end;
  flex-grow: 1;
}
#content-header #header-user-menu-wrapper #header-user-menu {
  display: flex;
  padding: 0 .75em;
  align-items: center;
  flex-shrink: 0;
}
body.animate-all-page #content-header #header-user-menu-wrapper #header-user-menu {
  animation: slideFromTop 1s cubic-bezier(0, 0, 0, 1), fadeIn 0.5s;
  animation-fill-mode: both;
  animation-delay: 1s;
}
body.mobile:not(.redirecting) #content-header #header-user-menu-wrapper #header-user-menu:hover {
  background: rgba(63, 81, 181, 0.03);
  transition: .2s;
  box-shadow: inset -1px 0 0 0 rgba(63, 81, 181, 0.1);
}
body.mobile:not(.redirecting) #content-header #header-user-menu-wrapper #header-user-menu:hover #user-menu-list {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: .2s;
}
#content-header #header-user-menu-wrapper #header-user-menu #header-profile-picture .status-icon {
  display: none;
}
#content-header #header-user-menu-wrapper #header-user-menu .profile-picture-wrapper {
  font-size: 1.25em;
}
body.mobile #content-header #header-user-menu-wrapper #header-user-menu .profile-picture-wrapper {
  pointer-events: none;
}
#content-header #header-user-menu-wrapper #header-user-menu #user-menu-list {
  display: flex;
  align-items: center;
}
body.mobile #content-header #header-user-menu-wrapper #header-user-menu #user-menu-list {
  position: absolute;
  left: .5em;
  width: 200px;
  top: 100%;
  background: white;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1em);
  transition: .3s;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  padding: 1em;
  flex-direction: column;
  border-radius: .5em;
}
body.mobile #content-header #header-user-menu-wrapper #header-user-menu #user-menu-list .info-wrapper {
  margin-bottom: 1em;
}
body.mobile #content-header #header-user-menu-wrapper #header-user-menu #user-menu-list:before {
  content: "";
  position: absolute;
  font-size: .75em;
  height: 1em;
  width: 1em;
  top: -0.5em;
  left: 1.5em;
  transform: rotate(45deg);
  background: inherit;
  box-shadow: -0.125em -0.125em 0.75em -0.25em rgba(63, 81, 181, 0.5);
}
#content-header #header-user-menu-wrapper #header-user-menu #user-menu-list .info-wrapper {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}
#content-header #header-user-menu-wrapper #header-user-menu #user-menu-list .username {
  padding: .25em .75em;
  font-family: Montserrat, Heebo, Arial;
  font-weight: 500;
  font-size: .875em;
}
#content-header #header-user-menu-wrapper #header-user-menu #user-menu-list .user-settings {
  text-decoration: none;
  color: currentColor;
  display: flex;
  margin-left: .5em;
  opacity: .333;
  transition: .2s;
}
body:not(.redirecting) #content-header #header-user-menu-wrapper #header-user-menu #user-menu-list .user-settings:hover {
  opacity: 1;
  transform: rotate(30deg);
}
#content-header #header-user-menu-wrapper #header-user-menu #user-menu-list .log-out {
  border-radius: inherit;
  cursor: pointer;
  background: #f9f9fb;
  margin-right: 0;
  padding: .25em .75em;
  color: rgba(33, 33, 33, 0.6);
  transition: .2s;
  border-radius: .5em;
}
#content-header #header-user-menu-wrapper #header-user-menu #user-menu-list .log-out:hover {
  background: #f3f3f7;
}
body.mobile #content-header #header-user-menu-wrapper #header-user-menu #user-menu-list .log-out {
  text-align: center;
}
#content-header #header-user-menu-wrapper #header-user-menu #user-menu-list .log-out:before {
  content: none;
}
#page-content-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
  overflow-y: scroll;
}
body:not(.mobile-device) #page-content-container::-webkit-scrollbar {
  width: .5em;
  background: transparent;
}
body:not(.mobile-device) #page-content-container::-webkit-scrollbar-thumb {
  background: #c6cceb;
  box-shadow: inset 0 0 0 1px #b3bbe5;
  border-radius: 1em;
}
#page-content-container #page-wrapper,
#page-content-container footer,
#page-content-container #profile-header {
  animation: fadeIn 0.3s;
}
@media print {
  #page-content-container {
    width: auto;
    height: auto;
    overflow: visible;
  }
}
#page-content-container.vertical-center {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}
#page-content-container.vertical-center h1 {
  margin-top: 0;
}
#page-content-container.vertical-center h1 + form {
  margin-top: 0;
}
#page-content-container.vertical-center #page-wrapper {
  flex-grow: 0;
}
#page-wrapper {
  padding: 1em;
  padding-top: 0;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  align-self: center;
  flex-grow: 1;
}
body.mobile #page-wrapper {
  padding-right: .5em;
  padding-left: .5em;
}
#page-wrapper.full-width {
  max-width: none;
}
#page-wrapper h1 {
  font-weight: 300;
  font-size: 2.5em;
  margin: 0;
  margin: 1em 0;
}
#page-wrapper h1 .explain {
  font-size: .5em;
}
#page-wrapper h1 + p {
  margin: 0 auto;
  margin-top: -2.5em;
  margin-bottom: 2.5em;
  line-height: 1.25em;
  padding: 1em;
  padding-bottom: 0;
  color: rgba(33, 33, 33, 0.6);
  /*position: relative;

            &:before, &:after {
                content: "";
                top: 0;
                bottom: 0;
                width: 2em;
                position: absolute;
                border-radius: 1em;
                border-color: fade(@text, 10%) !important;
            }

            &:before {
                border-left: 2px solid;
                left: 0;
            }

            &:after {
                border-right: 2px solid;
                right: 0;
            }*/
}
#page-wrapper h1 .title-icon {
  margin-left: .5em;
  vertical-align: middle;
}
@media print {
  #page-wrapper {
    padding-bottom: 0;
    padding-top: 0;
  }
}
footer {
  margin-top: 2em;
  flex-shrink: 0;
  text-align: center;
  padding: 1em;
  background-color: #f6f6f9;
  animation: fadeIn 0.3s;
  transform-origin: bottom;
  color: #747a97;
  border-top: 1px solid rgba(37, 47, 105, 0.07);
  position: relative;
  overflow: hidden;
}
footer .website-name-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .25em 6em;
  line-height: 1;
}
footer .website-name-container .credits {
  opacity: .5;
  margin: 0 .5em;
}
footer #notifications {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid rgba(37, 47, 105, 0.07);
  justify-content: center;
  margin: -1.33333333em;
  margin-bottom: 1.3333333333em;
  background: #f3f3f7;
  padding: .5em;
  font-size: .75em;
}
footer #notifications .notification {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
}
footer #notifications .notification .time {
  margin-left: 1ch;
  padding: .25em .5em;
  border-radius: 100px;
  background: #eaebf1;
  box-shadow: inset 0 0 0 1px rgba(37, 47, 105, 0.07);
  display: flex;
}
.itay-name {
  text-decoration: none;
  color: inherit;
  font-size: .75em;
  position: absolute;
  left: 1.6666667em;
  bottom: 1.6666667em;
  display: flex;
  align-items: center;
  color: rgba(63, 81, 181, 0.25);
  transition: .2s;
  direction: ltr;
  font-family: Montserrat, Heebo, Arial;
  font-weight: 600;
  text-transform: lowercase;
  animation: fadeIn 0.5s, slideFromBottom2x 1s cubic-bezier(0, 0, 0, 1);
  animation-delay: .5s;
  animation-fill-mode: both;
}
.itay-name svg {
  max-width: 1em;
  width: 100%;
  height: auto;
  margin-left: .75em;
  fill: currentColor;
}
.itay-name:hover {
  color: #3F51B5;
}
.itay-name.bright {
  color: rgba(255, 255, 255, 0.25);
}
.itay-name.bright:hover {
  color: white;
}
#homepage-links {
  display: flex;
  flex-wrap: wrap;
  text-align: right;
}
#homepage-links .homepage-link-wrapper {
  display: flex;
  flex: 1;
  min-width: 18.5em;
  opacity: 0;
}
body.loaded #homepage-links .homepage-link-wrapper {
  animation: fadeIn 0.5s, slideFromBottom 0.7s cubic-bezier(0, 0, 0, 1);
  animation-fill-mode: forwards;
}
#homepage-links .homepage-link-wrapper .homepage-link {
  background: white;
  box-shadow: 0 4px 10px rgba(63, 81, 181, 0.07);
  border-radius: 4px;
  margin: .25em;
  display: flex;
  flex-direction: column;
  width: 100%;
}
#homepage-links .homepage-link-wrapper .homepage-link .link-title {
  display: flex;
  font-size: 1.25em;
  padding: .8em;
  color: #3F51B5;
  border-bottom: 1px solid rgba(63, 81, 181, 0.1);
}
#homepage-links .homepage-link-wrapper .homepage-link .link-title .title-icon {
  margin-left: .8em;
}
#homepage-links .homepage-link-wrapper .homepage-link .link-title .title-name {
  flex-grow: 1;
}
#homepage-links .homepage-link-wrapper .homepage-link .link-list {
  display: flex;
  flex-direction: column;
}
#homepage-links .homepage-link-wrapper .homepage-link .link-list .link-list-item {
  padding: .5em 1em;
  text-decoration: none;
  color: inherit;
  transition: .2s;
  display: flex;
}
#homepage-links .homepage-link-wrapper .homepage-link .link-list .link-list-item .item-icon-container {
  margin-left: .75em;
}
#homepage-links .homepage-link-wrapper .homepage-link .link-list .link-list-item .item-name {
  flex-grow: 1;
}
#homepage-links .homepage-link-wrapper .homepage-link .link-list .link-list-item:hover {
  color: #3F51B5;
  background: rgba(63, 81, 181, 0.05);
}
#homepage-links-list {
  display: flex;
  flex-direction: column;
}
#homepage-links-list .homepage-link-item {
  position: relative;
  background: white;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
  margin: .25em;
  border-radius: .5em;
  display: flex;
  transition: opacity 0.2s, background 0.2s, box-shadow 0.2s;
}
#homepage-links-list .homepage-link-item.structure {
  display: none;
}
body.mobile #homepage-links-list .homepage-link-item {
  flex-direction: column;
}
#homepage-links-list .homepage-link-item .link-item-delete {
  position: absolute;
  right: 0;
  top: 0;
  padding: .25em .5em;
  opacity: 0.25;
  transition: .2s;
  cursor: pointer;
}
#homepage-links-list .homepage-link-item .link-item-delete:hover {
  opacity: 1;
}
#homepage-links-list .homepage-link-item .link-item-move {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .25em .5em;
  opacity: 0.5;
  transition: .2s;
  cursor: pointer;
}
.use-hover#homepage-links-list .homepage-link-item .link-item-move:hover {
  opacity: 1;
}
body.mobile #homepage-links-list .homepage-link-item .link-item-move {
  right: auto;
  bottom: auto;
  top: 0;
  left: 0;
}
#homepage-links-list .homepage-link-item .link-item-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.mobile #homepage-links-list .homepage-link-item .link-item-icon-wrapper {
  padding: 1em;
  flex-direction: row;
}
#homepage-links-list .homepage-link-item .link-item-icon-wrapper .link-item-icon-name {
  font-size: 0.9em;
  width: 10em;
  padding: 0.25em;
  border: 0;
  font-family: monospace, Heebo, Arial;
  direction: ltr;
  background: rgba(0, 0, 0, 0.05);
  text-align: center;
}
body.mobile #homepage-links-list .homepage-link-item .link-item-icon-wrapper .link-item-icon-name {
  flex-grow: 2;
}
body.mobile #homepage-links-list .homepage-link-item .link-item-icon-wrapper .link-item-icon {
  flex-grow: 1;
}
#homepage-links-list .homepage-link-item .link-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1em;
  border-right: 1px solid rgba(63, 81, 181, 0.1);
}
body.mobile #homepage-links-list .homepage-link-item .link-item-info {
  border-right: 0;
  border-top: 1px solid rgba(63, 81, 181, 0.1);
}
#homepage-links-list .homepage-link-item .link-item-info .link-item-name,
#homepage-links-list .homepage-link-item .link-item-info .link-item-href {
  /*padding: 0 0.25em;
                border-right: 0;
                border-top: 0;
                border-left: 0;
                border-radius: 0;
                background: transparent;*/
}
#homepage-links-list .homepage-link-item .link-item-info .link-item-name {
  width: 100%;
  margin: 0;
  font-size: 1.5em;
  padding: .25em .75em;
}
#homepage-links-list .homepage-link-item .link-item-info .link-item-href {
  margin: .5em 0;
  width: 100%;
  direction: ltr;
  font-family: monospace, Heebo, Arial;
}
#homepage-links-list .homepage-link-item .link-item-info .link-item-new-window {
  margin-right: 0;
}
#homepage-links-list .homepage-link-item .link-item-info label {
  margin-bottom: -0.5em;
}
#homepage-links-list .homepage-link-item.sortable-ghost {
  opacity: .5;
  background: transparent;
  box-shadow: none;
}
#add-homepage-link {
  outline: 0;
  padding: 1ch 3ch;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background: white;
  border: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  font-size: 15px;
  color: #f9f9fb;
  margin: 1em;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
  color: #212121;
}
#add-homepage-link:hover {
  background: #ffffff;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
#add-homepage-link:focus {
  background: #f2f2f2;
}
#add-homepage-link.disabled {
  background: #ffffff;
  color: rgba(249, 249, 251, 0.6);
  pointer-events: none;
  box-shadow: none;
  color: rgba(33, 33, 33, 0.6);
}
#add-homepage-link .icon-end {
  margin-right: 1em;
}
#add-homepage-link .icon-start {
  margin-left: 1em;
}
#jobtype-edit-modal #edit-jobtype-fields #no-name-parts {
  font-size: .8em;
  margin-top: 0;
}
#jobtype-edit-modal #edit-jobtype-fields #no-name-parts.hidden {
  display: none;
}
/*
table#jobtypes {

    th, td {
        width: 5em;
        line-height: 1.125em;

        .type-field {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: .15s;

            &.invisible {
                //opacity: 0.35;

                .type-field-show {
                    color: fade(desaturate(@primary, 25%), 45%);
                    //box-shadow: none;
                    //background: transparent;
                    transform: rotate(90deg);
                }
            }

            .type-field-show {
                display: flex;
                user-select: none;
                cursor: pointer;
                padding: .25em;
                border-radius: 100px;
                //background: white;
                //box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(0, 0, 0, 0.1);
                color: @primary;
                transition: .2s;
            }

            .type-field-default {
                input {
                    margin: 0;
                    padding: 0.25em .5em;

                    width: 8em;
                }
            }
        }
    }
}
*/
#work-log-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em 1em;
}
#work-log-details .month-info {
  font-size: 2.5em;
  font-weight: 300;
}
#work-log-details .month-info span:before {
  content: " ";
}
@media print {
  #work-log-details .month-info {
    font-size: 1em;
    font-weight: bold;
  }
}
#work-log-details .user-name {
  font-size: 1.25em;
}
#work-log-details .user-name:before {
  content: "";
  height: 2px;
  width: 2em;
  background: #cfd4ed;
  display: block;
  margin: .5em auto .9em;
}
@media print {
  #work-log-details .user-name:before {
    display: none;
  }
}
#work-log-details .user-name:before.centered {
  margin-left: auto;
  margin-right: auto;
}
#work-log-details .user-name:before.invisible {
  opacity: 0;
  height: .05px;
}
#work-log-details .user-name:before.transparent {
  opacity: 0;
}
@media print {
  #work-log-details .user-name {
    margin-right: 1em;
  }
}
@media print {
  #work-log-details {
    padding-top: 0;
    padding-bottom: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
table#work-log {
  position: relative;
  /*.future-date {
        .date {
            &:before {
                content: "עתידי";
                background: @warning;
                box-shadow: 0 3px 7px fade(@warning, 50%);
                animation: none;
                border-radius: .25em;
            }
        }
    }*/
}
table#work-log .exception {
  direction: ltr;
}
table#work-log .day {
  border-left: 1px solid rgba(63, 81, 181, 0.1);
}
table#work-log .day,
table#work-log .date {
  background: rgba(63, 81, 181, 0.01);
}
table#work-log .saturday:not(:last-of-type) td {
  border-bottom: 1px solid rgba(63, 81, 181, 0.1);
}
table#work-log .work-time,
table#work-log .total,
table#work-log .exception {
  text-align: center;
}
table#work-log .note {
  max-width: 10em;
  line-height: 1.25em;
  text-align: right;
  border-bottom-left-radius: 0.5em;
}
table#work-log tr .date {
  position: relative;
}
table#work-log tr .date:before {
  position: absolute;
  left: 100%;
  background: #3F51B5;
  top: 0;
  bottom: 0;
  margin: auto 1.3333em;
  border-radius: 10em;
  width: 0.66666em;
  height: 0.66666em;
  font-size: .75em;
  transition: 0.5s cubic-bezier(0.3, 0, 0, 1);
  display: flex;
  overflow: hidden;
  text-align: center;
  align-items: center;
  animation: float2px 1s ease-in-out infinite;
  justify-content: center;
  animation-direction: alternate;
  text-indent: 5em;
  color: transparent;
  letter-spacing: 1em;
  box-shadow: 0 3px 7px rgba(63, 81, 181, 0.5);
}
@media print {
  table#work-log tr .date:before {
    display: none;
  }
}
table#work-log tr:hover td.date:before {
  color: white;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.25);
  text-indent: 0;
  width: 3em;
  height: 3em;
  letter-spacing: 0;
  animation-play-state: paused;
  box-shadow: 0 5px 20px rgba(88, 177, 159, 0.35);
}
table#work-log tr:hover .edit {
  transform: scaleX(1);
  opacity: 1;
}
table#work-log .edit {
  position: absolute;
  border-color: transparent !important;
  opacity: 0;
  transition: 0.4s cubic-bezier(0.25, 0, 0, 1);
  transform: scale(0);
  padding: 0;
  margin-right: -2em;
}
table#work-log .edit:before {
  content: "";
  position: absolute;
  top: 0.25em;
  right: 0.25em;
  bottom: 0.25em;
  left: 0.25em;
  background: #3F51B5;
  border-radius: 2em;
  pointer-events: none;
  z-index: 0;
  transition: .2s;
}
table#work-log .edit .edit-day {
  opacity: 0.5;
  font-size: 2em;
  vertical-align: middle;
  cursor: pointer;
  transition: .2s;
  padding: .3em;
  color: white;
  position: relative;
}
@media print {
  table#work-log .edit {
    display: none;
  }
}
table#work-log .edit:hover .edit-day {
  opacity: 1;
  padding: .25em;
}
table#work-log .edit:hover:before {
  top: -0.25em;
  bottom: -0.25em;
  right: -0.25em;
  left: -0.25em;
}
table#work-log td {
  border-right: .125em solid transparent;
  border-left: .125em solid transparent;
}
table#work-log .work-day {
  -webkit-print-color-adjust: exact;
}
table#work-log .work-day td:first-child {
  border-right-color: #3F51B5;
}
table#work-log .work-day .date,
table#work-log .work-day .day {
  font-weight: 500;
  color: #3F51B5;
}
table#work-log .work-day.absent td:first-child {
  border-right-color: #d95753;
}
table#work-log .work-day.absent .date,
table#work-log .work-day.absent .day {
  color: #d95753;
}
table#work-log .has-reason {
  -webkit-print-color-adjust: exact;
  background: #fff7f4;
}
table#work-log .has-reason td {
  border-top: 1px solid rgba(255, 87, 34, 0.1);
  border-bottom: 1px solid rgba(255, 87, 34, 0.1);
}
table#work-log .include-in-hours {
  -webkit-print-color-adjust: exact;
  background: #f6fbf6;
}
table#work-log .include-in-hours td {
  border-top: 1px solid rgba(76, 175, 80, 0.1);
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}
table#work-log .today td.date:before {
  content: "היום";
  background: #58B19F;
  box-shadow: 0 3px 7px rgba(88, 177, 159, 0.5);
}
@media print {
  table#work-log {
    font-size: .9em;
  }
}
body.mobile table#work-log {
  width: 100%;
}
body.mobile table#work-log thead {
  display: none;
}
body.mobile table#work-log td,
body.mobile table#work-log .td-title {
  display: flex;
  width: 100%;
  flex: 1 0;
  margin: 0;
  max-width: none;
  align-items: center;
}
body.mobile table#work-log td.empty,
body.mobile table#work-log .td-title.empty {
  display: none;
}
body.mobile table#work-log td.day,
body.mobile table#work-log .td-title.day {
  border-left-color: transparent;
}
body.mobile table#work-log td.exception .td-title,
body.mobile table#work-log .td-title.exception .td-title {
  direction: rtl;
  order: 1;
}
body.mobile table#work-log td.td-title,
body.mobile table#work-log .td-title.td-title {
  font-weight: 500;
}
body.mobile table#work-log td.edit,
body.mobile table#work-log .td-title.edit {
  display: flex !important;
  bottom: 0;
  border: 0;
  width: auto;
}
body.mobile table#work-log .saturday td {
  border-bottom: 0;
}
body.mobile table#work-log tr {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
body.mobile table#work-log tr:not(.show-in-mobile) {
  display: none;
}
body.mobile table#work-log tr + tr {
  margin-top: .5em;
  padding-top: .5em;
  border-top: 2px solid rgba(63, 81, 181, 0.25);
}
.exception-icon {
  vertical-align: middle;
  margin-right: 0.5em;
}
.exception-icon.more {
  color: #3ecf8e;
}
.exception-icon.less {
  color: #d95753;
}
#work-log-table-wrapper {
  display: inline-block;
}
body.mobile #work-log-table-wrapper {
  width: 100%;
}
#table-buttons {
  display: flex;
  justify-content: flex-end;
}
@media print {
  #table-buttons {
    display: none;
  }
}
#table-buttons .table-button {
  padding: .25em .5em;
  border-radius: 4px;
  background: rgba(63, 81, 181, 0.15);
  color: #3F51B5;
  cursor: pointer;
  opacity: .75;
  font-size: .875em;
  user-select: none;
  transition: .2s;
  margin: .5em .25em;
  text-decoration: none;
}
#table-buttons .table-button:hover {
  opacity: 1;
  box-shadow: 0 2px 3px rgba(63, 81, 181, 0.1);
}
#table-buttons .table-button i,
#table-buttons .table-button svg {
  margin-left: .5em;
}
#work-log-totals {
  display: flex;
  flex-direction: column;
  margin: 2em auto 1em;
  max-width: 20em;
}
#work-log-totals .work-log-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#work-log-totals .work-log-total .work-log-total-name {
  padding: .5em;
  margin-left: 1em;
  text-align: right;
}
@media print {
  #work-log-totals .work-log-total .work-log-total-name {
    padding-top: .25em;
    padding-bottom: .25em;
  }
}
#work-log-totals .work-log-total .work-log-total-value {
  font-weight: 600;
  text-align: left;
}
#work-log-totals .work-log-total.exception .work-log-total-value {
  direction: ltr;
}
#work-log-totals .work-log-total.exception i,
#work-log-totals .work-log-total.exception svg {
  margin: 0;
  margin-left: .5em;
}
@media print {
  #work-log-totals {
    margin-top: 1em;
    margin-bottom: 0;
  }
}
#work-log-navigation {
  text-align: center;
}
@media print {
  #work-log-navigation {
    display: none;
  }
}
#work-log-navigation a {
  outline: 0;
  padding: 1ch 3ch;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background: #448AFF;
  border: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  font-size: 15px;
  color: #f9f9fb;
  margin: 1em;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
}
#work-log-navigation a:hover {
  background: #5e9aff;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
#work-log-navigation a:focus {
  background: #2a7aff;
}
#work-log-navigation a.disabled {
  background: #8f9db4;
  color: rgba(249, 249, 251, 0.6);
  pointer-events: none;
  box-shadow: none;
}
#work-log-navigation a .icon-end {
  margin-right: 1em;
}
#work-log-navigation a .icon-start {
  margin-left: 1em;
}
#work-log-navigation a#next-month i,
#work-log-navigation a#next-month svg {
  margin-right: .5em;
  margin-left: -0.25em;
}
#work-log-navigation a#prev-month i,
#work-log-navigation a#prev-month svg {
  margin-left: .5em;
  margin-right: -0.25em;
}
@media print {
  #log-selections-title {
    display: none;
  }
}
@media print {
  #log-selections {
    display: none;
  }
}
#delete-user {
  color: white;
  background-color: #d95753;
  box-shadow: 0 5px 20px rgba(217, 87, 83, 0.5);
}
#delete-user:hover {
  box-shadow: 0 10px 20px rgba(217, 87, 83, 0.5);
  background-color: #de6b68;
}
#users-grid-section {
  border-top: 2px solid rgba(63, 81, 181, 0.1);
  margin-top: 2em;
}
#users-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
#users-grid .user-item-title-wrapper {
  width: 100%;
}
#users-grid .user-item-title-wrapper ~ .user-item-title-wrapper {
  margin-top: 2em;
}
#users-grid .user-item-title-wrapper + .user-item-title-wrapper {
  margin-top: 0;
}
#users-grid .user-item-title {
  padding: 0.25em .5em;
  font-weight: bold;
  color: #404040;
  border-bottom: 2px solid #dadce7;
  display: inline-block;
  margin-bottom: 1em;
}
#users-grid .user-item-title.highlighted {
  font-size: 1.25em;
  animation: jelly 1s linear both;
}
#users-grid .user-item-title:not(.type-title) {
  padding-top: 0;
}
#users-grid .user-item-title.type-title {
  width: 100%;
  font-size: 1.5em;
  text-align: center;
  border: 0;
  background: rgba(63, 81, 181, 0.1);
  border-radius: 5em;
  font-weight: 400;
  color: #32408f;
  margin-top: 1em;
  max-width: 37.5em;
}
#users-grid .user-item-wrapper {
  padding: .25em;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #users-grid .user-item-wrapper {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #users-grid .user-item-wrapper {
    width: 50%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #users-grid .user-item-wrapper {
    width: 33%;
  }
}
@media only screen and (min-width: 1200px) {
  #users-grid .user-item-wrapper {
    width: 25%;
  }
}
#users-grid .user-item-wrapper:nth-child(even) .user-item {
  background: #fdfdfe;
}
#users-grid .user-item-wrapper:nth-child(odd) .user-item {
  background: white;
}
#users-grid .user-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: 0.33333333s cubic-bezier(0.2, 0, 0, 1);
  width: 100%;
  user-select: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
}
#users-grid .user-item .user-name {
  padding: 1em;
  color: #3F51B5;
  font-size: 1.25em;
  flex-grow: 1;
  transition: inherit;
}
#users-grid .user-item .user-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  color: #212121;
  line-height: 1;
  position: absolute;
  bottom: -2em;
  left: 0;
  right: 0;
  opacity: 0;
  transition: inherit;
  background: rgba(244, 245, 251, 0.9);
}
#users-grid .user-item .user-info .user-info-item {
  display: flex;
  align-items: center;
  padding: .75em;
  font-size: .8em;
}
#users-grid .user-item .user-info .user-info-item i,
#users-grid .user-item .user-info .user-info-item svg {
  margin-left: .5em;
  font-size: initial;
}
#users-grid .user-item:hover {
  background: white;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
}
#users-grid .user-item:hover .user-info {
  opacity: 1;
  bottom: 0;
}
#users-grid .user-item:hover .user-name {
  transform: translateY(-0.833333em) scale(0.75);
}
#users-grid.list {
  flex-direction: column;
  text-align: right;
  max-width: 600px;
  margin: auto;
}
#users-grid.list .user-item-wrapper {
  width: 100%;
  padding: .125em 0;
}
#users-grid.list .user-item-wrapper .user-item {
  align-items: flex-start;
  flex-direction: row;
}
#users-grid.list .user-item-wrapper .user-item .user-name {
  padding: .3333333em 1em;
  transform-origin: center right;
  font-size: 1.125em;
}
#users-grid.list .user-item-wrapper .user-item .user-info {
  width: auto;
  right: auto;
  bottom: 0;
  left: -20em;
  top: 0;
  flex-wrap: nowrap;
  overflow-x: overlay;
  max-width: 100%;
}
#users-grid.list .user-item-wrapper .user-item .user-info::-webkit-scrollbar {
  height: 6px;
  background: rgba(63, 81, 181, 0.33);
}
#users-grid.list .user-item-wrapper .user-item .user-info::-webkit-scrollbar-thumb {
  background: #3F51B5;
  border-radius: 10em;
}
#users-grid.list .user-item-wrapper .user-item .user-info .user-info-item {
  padding-right: 1.5em;
  padding-left: 1.5em;
}
#users-grid.list .user-item-wrapper .user-item:hover .user-info {
  left: 0;
}
#users-grid.list .user-item-wrapper .user-item:hover .user-name {
  transform: scale(0.75);
}
#userlist-table {
  margin-top: 1em;
}
.userlist-checkboxes {
  max-width: 20em;
  margin: auto;
}
.userlist-checkboxes label {
  cursor: pointer;
}
#input-message {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-shadow: 0 4px 7px rgba(0, 0, 0, 0.15);
  color: white;
  z-index: 15;
}
#input-message #input-message-icon {
  font-size: 3em;
  margin: .5em;
  animation: fadeIn 0.5s, slideFromTop 0.7s cubic-bezier(0, 0, 0, 1);
  animation-delay: .25s;
  opacity: 0;
  animation-fill-mode: forwards;
}
#input-message #input-message-icon i,
#input-message #input-message-icon svg {
  -webkit-filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.1));
}
#input-message #input-message-icon .hidden {
  display: none;
}
#input-message #input-message-name {
  font-size: 2em;
  background: rgba(0, 0, 0, 0.1);
  padding: 0.125em .75em;
  animation: fadeIn 0.5s, slideFromTop2x 0.7s cubic-bezier(0, 0, 0, 1);
  border-radius: 2.5em;
  margin-bottom: .5em;
  animation-delay: .25s;
  opacity: 0;
  animation-fill-mode: forwards;
  text-align: center;
  line-height: 1.25em;
}
#input-message #input-message-name:empty {
  display: none;
}
#input-message #input-message-value {
  font-size: 3em;
  animation: fadeIn 0.5s, slideFromBottom 0.7s cubic-bezier(0, 0, 0, 1);
  animation-delay: .25s;
  opacity: 0;
  animation-fill-mode: forwards;
  padding: 0 1em;
  text-align: center;
  line-height: 1.25em;
}
#input-message #input-message-timer {
  background: rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 1em;
  left: 1em;
  right: 1em;
  margin: auto;
  border-radius: 100px;
  height: 1em;
  animation: shrink 1s linear;
  animation-fill-mode: forwards;
}
@keyframes shrink {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
#input-message.success {
  background: linear-gradient(to bottom right, #3ecf8e, #3ecfbe);
}
#input-message.error {
  background: linear-gradient(to bottom right, #d95753, #d98453);
}
#input-indicator {
  position: fixed;
  left: 1em;
  bottom: 1em;
  margin: auto;
  right: 1em;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background: #3ecf8e;
  z-index: 16;
  transition: .3s;
  box-shadow: 0 0 1em #3ecf8e, 0 0 0 0 #f9f9fb;
}
#input-indicator.busy {
  background: #d95753;
  box-shadow: 0 0 1em #d95753, 0 0 0 4px #f9f9fb;
}
#log-out-input {
  position: fixed;
  bottom: 0;
  left: 0;
  transition: .4s;
  transform-origin: bottom left;
}
#log-out-input .log-out {
  padding: .25em .75em;
  background: rgba(63, 81, 181, 0.1);
  color: #3F51B5;
  cursor: pointer;
  font-weight: 500;
  transition: .2s;
  border-top-right-radius: 1em;
}
#log-out-input:hover .log-out {
  background: rgba(63, 81, 181, 0.2);
  color: #32408f;
}
#log-out-input.idle:not(:hover) {
  transform: translateX(-100%);
  transition: 2s;
}
#input-settings {
  position: absolute;
  bottom: .5em;
  right: .5em;
  transition: .5s;
  transform-origin: bottom right;
  border-radius: .5em;
  display: inline-flex;
  flex-direction: column;
  z-index: 0;
  background: white;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  padding: 1em;
}
body.mobile #input-settings {
  left: .5em;
}
#input-settings.idle {
  opacity: 0;
  transform: scale(0.75);
}
#input-settings .radios {
  display: flex;
  background: rgba(63, 81, 181, 0.05);
  border: 2px solid rgba(63, 81, 181, 0.15);
  border-radius: 100px;
}
#input-settings .radios input {
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
#input-settings .radios label {
  cursor: pointer;
  padding: .75em 1em;
  display: flex;
  line-height: 1;
  align-items: center;
}
#input-settings .radios label + label {
  border-right: 2px solid rgba(63, 81, 181, 0.15);
}
#input-settings .radios label .explain {
  opacity: .5;
  margin-right: .5ch;
}
#input-settings .input-page-type-wrapper {
  display: none;
  margin-top: 1em;
  text-align: center;
  width: 0;
  min-width: 100%;
}
#input-settings .input-page-type-wrapper select {
  width: 100%;
  margin: 0;
  border-radius: 2em;
  margin-top: 1em;
}
#input-settings .input-page-type-wrapper:empty {
  margin: 0;
}
#input-settings .input-page-type-wrapper .explain-wrapper {
  display: flex;
  background: rgba(63, 81, 181, 0.05);
  border-radius: .5em;
  overflow: hidden;
  color: #1e2756;
  font-size: .85em;
}
#input-settings .input-page-type-wrapper .explain-wrapper .explain-icon {
  background: rgba(30, 39, 86, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .75em;
}
#input-settings .input-page-type-wrapper .explain-wrapper .explain-content {
  margin: 0;
  padding: .5em .75em;
  text-align: right;
  line-height: 1.25em;
}
#input-settings #input-settings-status {
  position: absolute;
  top: .25em;
  left: .25em;
  width: .5em;
  height: .5em;
  background: #3F51B5;
  border-radius: 100%;
}
#input-settings #input-settings-fullscreen {
  position: absolute;
  top: .3333333em;
  right: .333333em;
  transition: .2s;
  font-size: .8em;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#input-settings #input-settings-fullscreen .label {
  pointer-events: none;
  opacity: 0;
  transform: translateX(1em);
  transition: .2s;
  display: inline-block;
  vertical-align: middle;
  padding-right: .666667em;
}
#input-settings #input-settings-fullscreen i,
#input-settings #input-settings-fullscreen svg {
  width: 1em;
}
#input-settings #input-settings-fullscreen:hover {
  background: white;
  border-radius: 2em;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  padding: 1em;
  top: -0.666667em;
  right: -0.666667em;
}
#input-settings #input-settings-fullscreen:hover .label {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
#input-settings-icon {
  position: fixed;
  right: .5em;
  bottom: .5em;
  opacity: 0;
  text-align: right;
  transform-origin: bottom right;
  transform: scale(2);
  transition: 0.2s cubic-bezier(0, 0, 1, 0);
  z-index: -1;
}
body.mobile #input-settings-icon {
  left: .5em;
}
#input-settings.idle + #input-settings-icon {
  transform: scale(1);
  opacity: 1;
  transition: 1s cubic-bezier(0, 0, 0, 1);
}
#room-log tr td {
  padding: .25em 1em;
}
#room-log tr td.date,
#room-log tr td.name {
  background: rgba(63, 81, 181, 0.01);
}
#room-log tr td.name {
  border-left: 1px solid rgba(63, 81, 181, 0.1);
}
#notification-log {
  max-width: 600px;
  margin: auto;
}
#notification-log .notification {
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(63, 81, 181, 0.07);
  margin-bottom: .25em;
  border-radius: 4px;
  animation: fadeIn 0.5s cubic-bezier(0, 0, 0, 1), slideFromBottom 0.5s cubic-bezier(0, 0, 0, 1);
  opacity: 0;
  animation-fill-mode: forwards;
  /*& + .notification {
            border-top: 1px solid fade(@primary, 5%);
        }*/
}
#notification-log .notification.structure {
  display: none;
}
#notification-log .notification > * {
  padding: .75em;
}
#notification-log .notification .notification-icon {
  border-left: 1px solid rgba(63, 81, 181, 0.05);
  color: #3F51B5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#notification-log .notification .notification-content {
  flex-grow: 1;
  text-align: right;
}
#notification-log .notification .notification-timestamp {
  font-size: .8em;
  opacity: .75;
}
#notification-log .notification.highlighted {
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1);
}
#notification-log .notification.highlighted .notification-icon {
  color: white;
}
#notification-log .notification.highlighted .notification-icon:before {
  content: "";
  position: absolute;
  background: #3F51B5;
  border-radius: 3em;
  width: 2em;
  height: 2em;
  z-index: -1;
}
#notification-log .notification.new-day {
  margin-top: .75em;
}
.notification b {
  font-weight: 500;
}
.notification-storage-checkboxes .flex-table-row {
  padding: 0 1em;
  border-top: 1px solid rgba(63, 81, 181, 0.08);
}
.notification-storage-checkboxes .flex-table-row input {
  margin-left: 0;
}
.storage-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.storage-items .storage-item,
.storage-items .add-storage-item {
  padding: .5em;
  border-radius: .25em;
  background: white;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
  text-align: right;
  flex: 1 0;
  max-width: 16em;
  min-width: 12em;
  margin: .5em;
  position: relative;
  animation: fadeIn 0.5s, slideFromBottom2x 0.7s cubic-bezier(0, 0, 0, 1);
  overflow: hidden;
}
.storage-items .storage-item.structure {
  display: none !important;
}
.storage-items .storage-item.insert-animation {
  animation: jelly 1s linear both, shadowEmphasize 1s alternate 10 both;
  animation-delay: .5s;
}
@keyframes shadowEmphasize {
  0% {
    box-shadow: 0 5px 20px rgba(63, 81, 181, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1);
  }
  100% {
    box-shadow: 0 0 20px rgba(63, 81, 181, 0.4), 0 2px 3px rgba(0, 0, 0, 0.1);
  }
}
.storage-items .storage-item.hidden {
  animatino: none;
}
body.mobile .storage-items .storage-item {
  max-width: unset;
}
.storage-items .storage-item .storage-item-title {
  font-size: 1.33333333em;
}
.storage-items .storage-item .storage-item-title .storage-item-quantity,
.storage-items .storage-item .storage-item-title .storage-item-available {
  padding: .125em .5em;
  border-radius: 1em;
  margin: 0 .25em .25em 0;
  float: left;
  display: flex;
}
.storage-items .storage-item .storage-item-title .storage-item-quantity {
  color: white;
  font-family: monospace;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  background: #3F51B5;
}
.storage-items .storage-item .storage-item-title .storage-item-quantity[data-status="good"] {
  text-shadow: none;
  box-shadow: none;
  background: rgba(63, 81, 181, 0.08);
  color: #3F51B5;
}
.storage-items .storage-item .storage-item-title .storage-item-quantity[data-status="warning"] {
  background: #ea7b37;
}
.storage-items .storage-item .storage-item-title .storage-item-quantity[data-status="bad"] {
  background: #d95753;
}
.storage-items .storage-item .storage-item-title .storage-item-available {
  background: rgba(62, 207, 142, 0.1);
  color: #3ecf8e;
  padding: 0;
  width: 1.5em;
  height: 1.5em;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .875em;
}
body.mobile .storage-items .storage-item .storage-item-title .storage-item-available {
  font-size: .8em;
}
.storage-items .storage-item .storage-item-title .storage-item-available .storage-item-take-icon {
  display: none;
}
.storage-items .storage-item .storage-item-title .storage-item-available .storage-item-take-icon.icon-available {
  display: block;
}
.storage-items .storage-item .storage-item-title .storage-item-name {
  padding-right: .25em;
  line-height: 1.25em;
  word-break: break-word;
}
.storage-items .storage-item .storage-item-info {
  clear: both;
  border-top: 1px solid rgba(63, 81, 181, 0.1);
  margin-top: .5em;
  padding: 1em .5em .25em .5em;
  font-size: .75em;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.6);
  transition: color .2s;
  display: flex;
  flex-direction: column;
}
.storage-items .storage-item .storage-item-info:hover {
  color: #212121;
}
.storage-items .storage-item .info-line {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.storage-items .storage-item .info-line > *:not(.line-title) {
  flex-grow: 1;
}
.storage-items .storage-item .info-line > *:not(.line-title):empty ~ .line-title {
  opacity: .25;
}
.storage-items .storage-item .info-line .line-title {
  opacity: .666666667;
  margin-left: .5em;
}
.storage-items .storage-item .info-line .sentence {
  font-weight: initial;
}
.storage-items .storage-item .info-line .sentence span {
  font-weight: 500;
}
.storage-items .storage-item .storage-item-taken {
  background: rgba(63, 81, 181, 0.05);
  border: 1px solid rgba(63, 81, 181, 0.08);
  border-radius: .25em;
  padding: .5em;
}
.storage-items .storage-item .storage-item-in-room {
  background: rgba(163, 63, 181, 0.04);
  border: 1px solid rgba(163, 63, 181, 0.07);
  border-radius: 1em;
  padding: .5em;
}
.storage-items .storage-item.empty .storage-item-name {
  color: #d95753;
  font-weight: 500;
}
.storage-items .storage-item.empty:before {
  content: "אזל המלאי";
  display: block;
  background: rgba(217, 87, 83, 0.1);
  color: #c4302b;
  text-align: center;
  font-weight: 500;
  padding: .5em;
  border-top-right-radius: inherit;
  border-top-left-radius: inherit;
  margin: -0.5em;
  margin-bottom: .5em;
  border-bottom: 1px solid rgba(196, 48, 43, 0.1);
}
.storage-items .storage-item .storage-item-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  display: flex;
  border-radius: inherit;
  transition: 0.3s cubic-bezier(0.3, 0, 0, 1);
  top: 100%;
  height: 100%;
  background: #fbfcfe;
  justify-content: center;
  flex-direction: column;
  outline: 0;
}
.storage-items .storage-item .storage-item-buttons:focus,
.storage-items .storage-item .storage-item-buttons:hover {
  top: 0;
}
.storage-items .storage-item .storage-item-buttons:focus .storage-item-buttons-open,
.storage-items .storage-item .storage-item-buttons:hover .storage-item-buttons-open {
  transform: translateY(0) !important;
}
.storage-items .storage-item .storage-item-buttons .storage-item-buttons-open {
  position: absolute;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 100%;
  left: 0.125em;
  transform: translateY(100%);
  border-radius: 1em 1em 0 0;
  background: #eceef8;
  transition: inherit;
  cursor: pointer;
}
body.mobile .storage-items .storage-item .storage-item-buttons .storage-item-buttons-open {
  width: 2.5em;
  height: 2.5em;
  border-radius: 1.25em 1.25em 0 0;
  font-size: 1.25em;
}
.storage-items .storage-item .storage-item-button {
  padding: .5em;
  transition: inherit;
  display: flex;
  cursor: pointer;
  user-select: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.storage-items .storage-item .storage-item-button .button-icon {
  transition: inherit;
  color: #3F51B5;
  display: flex;
  border-radius: 10em;
  margin-left: .75em;
}
.storage-items .storage-item .storage-item-button span {
  font-size: .85em;
  text-align: center;
  display: inline-block;
}
.storage-items .storage-item .storage-item-button:hover,
.storage-items .storage-item .storage-item-button:focus {
  background: white;
  color: #3F51B5;
  text-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  box-shadow: 0 0 10px rgba(63, 81, 181, 0.1);
  outline: 0;
}
.storage-items .storage-item .storage-item-button + .storage-item-button {
  border-top: 1px solid rgba(63, 81, 181, 0.1);
}
.storage-items .storage-item:hover .storage-item-buttons {
  /*.storage-item-button {
                    transform: scale(1);
                }*/
}
.storage-items .storage-item:hover .storage-item-buttons .storage-item-buttons-open {
  transform: translateY(0);
}
.storage-items .storage-item[data-take-id]:not([data-take-id="0"]) .storage-item-available {
  color: #d95753;
  background: rgba(217, 87, 83, 0.1);
}
.storage-items .storage-item[data-take-id]:not([data-take-id="0"]) .storage-item-available .storage-item-take-icon.icon-taken {
  display: block;
}
.storage-items .storage-item[data-take-id]:not([data-take-id="0"]) .storage-item-available .storage-item-take-icon.icon-available {
  display: none;
}
.storage-items .storage-item[data-take-id]:not([data-take-id="0"]) .storage-item-taken {
  display: block;
  flex-basis: auto;
}
.storage-items .storage-item[data-room-id][data-room-id="0"] .storage-item-in-room {
  display: none;
}
.storage-items .add-storage-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #3F51B5;
  cursor: pointer;
}
.storage-items .add-storage-item i,
.storage-items .add-storage-item svg {
  margin-bottom: .25em;
  transition: 0.2s cubic-bezier(0.3, 0, 0, 1);
}
.storage-items .add-storage-item:hover i,
.storage-items .add-storage-item:hover svg {
  transform: rotate(90deg);
}
body.mobile .storage-items .add-storage-item {
  max-width: unset;
}
.storage-items.list {
  flex-direction: column;
  flex-wrap: nowrap;
}
.storage-items.list .storage-item,
.storage-items.list .add-storage-item {
  max-width: 100%;
  margin-top: .25em;
  margin-bottom: .25em;
}
.storage-items.list .storage-item {
  display: flex;
  margin-right: 0;
  margin-left: 0;
}
.storage-items.list .storage-item .storage-item-title {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  flex-grow: 1;
}
.storage-items.list .storage-item .storage-item-title .storage-item-quantity,
.storage-items.list .storage-item .storage-item-title .storage-item-available {
  margin: 0 .5em;
}
.storage-items.list .storage-item .storage-item-title .storage-item-name {
  flex-grow: 1;
  padding-right: .75em;
  padding-left: .25em;
}
body.mobile .storage-items.list .storage-item .storage-item-title .storage-item-name {
  padding-right: .5em;
}
.storage-items.list .storage-item .storage-item-info {
  border-top-width: 0;
  border-right: 1px solid rgba(63, 81, 181, 0.1);
  margin-top: 0;
  margin-right: .5em;
  padding: .25em .5em .25em .5em;
  flex-shrink: 0;
  flex-basis: 30%;
  flex-flow: row wrap;
}
body.mobile .storage-items.list .storage-item .storage-item-info {
  flex-basis: 35%;
}
.storage-items.list .storage-item .storage-item-info .info-line {
  margin-right: .5em;
  flex: 1 0 47%;
}
.storage-items.list .storage-item .storage-item-info .info-line:not([.line-title]) {
  flex-basis: 100%;
}
.storage-items.list .storage-item .storage-item-info.storage-item-taken,
.storage-items.list .storage-item .storage-item-info.storage-item-in-room {
  border-top-width: 1px;
}
.storage-items.list .storage-item .storage-item-info.storage-item-in-room {
  flex-basis: 15%;
  border-radius: .25em;
}
.storage-items.list .storage-item .storage-item-buttons {
  flex-direction: row;
}
.storage-items.list .storage-item .storage-item-button + .storage-item-button {
  border-top: 0;
  border-right: 1px solid rgba(63, 81, 181, 0.1);
}
.storage-items.list .storage-item.empty:before {
  border-bottom: 0;
  border-left: 1px solid rgba(217, 87, 83, 0.1);
  margin: -0.5em;
  margin-left: .5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0;
  border-bottom-right-radius: inherit;
}
.storage-item-modal-fields {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: .75em;
}
.storage-item-modal-fields.padding-top-instead-of-bottom {
  padding-bottom: 0;
  padding-top: .75em;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper {
  flex: 1 0;
  min-width: 50%;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper.full-width {
  min-width: 100%;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper.third-width {
  min-width: 33.333333333333333%;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field {
  display: flex;
  flex-direction: column;
  margin: .5em;
  border-radius: 1em;
  /*.explain {
                margin-right: 1ch;
                transition: .2s;
                font-size: 0;
            }

            &:hover {
                .explain {
                    font-size: inherit;
                }
            }*/
  background: rgba(63, 81, 181, 0.07);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .field-value {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  direction: ltr;
  color: inherit;
  width: 100%;
  text-align: center;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .field-value::-webkit-inner-spin-button,
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .field-value::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .field-value::-webkit-input-placeholder {
  color: rgba(33, 33, 33, 0.5);
  direction: rtl;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .top,
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .top {
  font-size: 1.5em;
  position: relative;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .top .explain {
  position: absolute;
  top: .5em;
  right: .5em;
  font-size: .75em;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .bottom {
  padding: .5em;
  position: relative;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .bottom .smart-calculate {
  position: absolute;
  left: .25em;
  bottom: .25em;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2em;
  transition: .2s;
  cursor: pointer;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .bottom .smart-calculate .light {
  opacity: 0;
  transition: .5s;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .bottom .smart-calculate.on {
  background: white;
  box-shadow: 0 0.33333em 1.5em -0.4em;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .bottom .smart-calculate.on .light {
  opacity: 1;
}
body.mobile .storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .bottom .smart-calculate {
  left: -0.75em;
  bottom: -0.75em;
  background: white;
}
body.mobile .storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .bottom .smart-calculate:not(.on) {
  color: rgba(33, 33, 33, 0.5);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .bottom {
  color: #3F51B5;
  background: rgba(63, 81, 181, 0.08);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field .top {
  color: #3a3e54;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.warning {
  background: rgba(234, 123, 55, 0.07);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.warning .bottom {
  color: #ea7b37;
  background: rgba(234, 123, 55, 0.08);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.warning .top {
  color: #8d522e;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.bad {
  background: rgba(217, 87, 83, 0.07);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.bad .bottom {
  color: #d95753;
  background: rgba(217, 87, 83, 0.08);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.bad .top {
  color: #844442;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.accent {
  background: rgba(63, 140, 181, 0.07);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.accent .bottom {
  color: #3f8cb5;
  background: rgba(63, 140, 181, 0.08);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.accent .top {
  color: #3a4b54;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.quantity .field-value {
  font-size: 1.5em;
  font-weight: 500;
  color: #384070;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status {
  overflow: visible;
  position: relative;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .ranges {
  width: 100%;
  flex-direction: row-reverse;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .range {
  height: .33333333333em;
  flex: 1 0;
  min-width: 0.125em;
  transition: 0.2s cubic-bezier(0, 0, 0, 1);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .range.minimum-range {
  background: rgba(217, 87, 83, 0.5);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .range.warning-range {
  background: rgba(234, 123, 55, 0.3);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .quantity-indicator {
  position: absolute;
  height: 1em;
  width: .25em;
  background: #3ecf8e;
  border-radius: 2em;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.2s cubic-bezier(0, 0, 0, 1);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .quantity-indicator:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  -webkit-filter: blur(5px);
  opacity: .5;
  border-radius: inherit;
  transform: translateY(2px);
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .quantity-indicator:after {
  content: "!";
  opacity: 0;
  color: white;
  font-weight: bold;
  transition: inherit;
  font-size: .75em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .quantity-indicator.bad {
  background: #d95753;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .quantity-indicator.warning {
  background: #ea7b37;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .quantity-indicator.empty {
  background: #d95753;
  width: 1em;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .quantity-indicator.empty:after {
  opacity: 1;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .quantity-indicator .indicator-icon {
  display: none;
  position: absolute;
  bottom: 100%;
  transform: translateY(-0.25em);
  margin: auto;
  opacity: .5;
  transition: inherit;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .quantity-indicator .indicator-icon[data-visible] {
  display: block;
}
.storage-item-modal-fields .storage-item-modal-field-wrapper .storage-item-modal-field.status .quantity-indicator.idle .indicator-icon {
  opacity: 0;
  transition: 1s;
}
.items-for-renewal {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}
.items-for-renewal .item-for-renewal {
  display: flex;
  align-items: center;
  text-align: right;
  padding: .5em;
  margin: .125em 0;
  border: 1px solid #eaebf1;
  border-radius: .5em;
  background: #fcfcfd;
  overflow: hidden;
  position: relative;
  transition: background .2s;
}
.items-for-renewal .item-for-renewal .item-icon {
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  padding: .5em;
  border-radius: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.items-for-renewal .item-for-renewal .item-icon i,
.items-for-renewal .item-for-renewal .item-icon svg {
  display: none;
}
.items-for-renewal .item-for-renewal .item-icon:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 0 0 10em;
  border-radius: inherit;
  opacity: .1;
}
.items-for-renewal .item-for-renewal .item-name {
  flex-grow: 1;
  color: #212121;
  word-break: break-word;
  padding: 0 .5em;
}
.items-for-renewal .item-for-renewal .item-status {
  font-size: .8em;
  margin-left: 1em;
  transition: .3s;
  text-align: left;
}
.items-for-renewal .item-for-renewal .item-add-quantity {
  color: white;
  padding: .5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10em;
  transition: .3s;
  background: #3ecf8e;
  cursor: pointer;
  position: absolute;
  left: -4.8em;
}
.items-for-renewal .item-for-renewal .item-add-quantity:before {
  content: "הוספת מלאי";
  position: absolute;
  left: 0;
  width: 3em;
  top: 0;
  bottom: 0;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  transition: inherit;
  line-height: 1;
  padding-left: 3em;
  text-align: left;
  color: #269a66;
}
.items-for-renewal .item-for-renewal .item-add-quantity:hover {
  background: #2baf74;
}
.items-for-renewal .item-for-renewal:hover {
  background: white;
}
.items-for-renewal .item-for-renewal:hover .item-add-quantity {
  left: .5em;
}
.items-for-renewal .item-for-renewal:hover .item-add-quantity:before {
  opacity: 1;
}
.items-for-renewal .item-for-renewal:hover .item-status {
  opacity: .5;
  transform: translateX(6.5em);
}
.items-for-renewal .item-for-renewal.problem-warning {
  color: #ea7b37;
}
.items-for-renewal .item-for-renewal.problem-warning .warning-icon {
  display: block;
}
.items-for-renewal .item-for-renewal.problem-minimum {
  color: #d95753;
}
.items-for-renewal .item-for-renewal.problem-minimum .minimum-icon {
  display: block;
}
#storage-add-items .storage-add-item-sentence {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 1.25em;
}
#storage-add-items .storage-add-item-sentence #add-items-quantity {
  border-radius: 5em;
  border: 0;
  background: rgba(63, 81, 181, 0.07);
  color: #3F51B5;
  padding: .75em;
  margin: .5em;
  width: 4em;
}
#storage-add-items .storage-add-item-sentence #add-items-quantity::-webkit-input-placeholder {
  color: rgba(63, 81, 181, 0.6);
  font-size: 0.8em;
  font-family: Heebo, Arial;
}
#storage-add-items .storage-add-item-sentence #add-items-quantity::-webkit-inner-spin-button,
#storage-add-items .storage-add-item-sentence #add-items-quantity::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
#storage-add-items .storage-add-item-sentence #add-items-quantity:focus {
  box-shadow: inset 0 0 0 2px rgba(63, 81, 181, 0.15);
}
#storage-add-items .storage-add-item-sentence .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
#storage-add-items .storage-add-item-sentence .item .select2-container {
  flex-grow: 1;
  text-align: right;
  margin-right: .5em;
  min-width: 0;
  max-width: 15em;
}
#storage-add-items .storage-add-item-sentence .item .select2-container .select2-selection {
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}
@media screen and (max-width: 30em) {
  #storage-add-items .storage-add-item-sentence .item {
    flex-direction: column;
  }
  #storage-add-items .storage-add-item-sentence .item .select2-container {
    max-width: none;
    width: 100% !important;
    margin-right: 0;
  }
}
#storage-item-log tr td.date,
#storage-item-log tr td.time {
  background: rgba(63, 81, 181, 0.01);
}
#storage-item-log tr td.time {
  border-left: 1px solid rgba(63, 81, 181, 0.1);
}
#storage-item-log tr td.quantity {
  display: flex;
  align-items: center;
}
#storage-item-log tr td.quantity .icon {
  margin-left: .5em;
}
#storage-item-log tr td.quantity .number {
  flex-grow: 1;
}
#storage-item-log tr td.stock-change,
#storage-item-log tr td.no-return,
#storage-item-log tr td.no-approx {
  font-size: .85em;
  color: rgba(33, 33, 33, 0.4);
  letter-spacing: .125em;
  font-weight: 500;
}
#storage-item-log tr.action-take .quantity .icon {
  color: #ea7b37;
}
#storage-item-log tr.action-subtract .quantity .icon {
  color: #d95753;
}
#storage-item-log tr.action-add .quantity .icon {
  color: #3ecf8e;
}
.storage-item-view-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body.mobile .storage-item-view-options {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
.storage-item-view-options .storage-search {
  display: flex;
  align-items: center;
  margin-right: 2em;
}
body.mobile .storage-item-view-options .storage-search {
  margin-bottom: 1em;
  margin-right: 0;
}
.storage-item-view-options .storage-search .input-with-button {
  border-radius: 4em;
}
.storage-item-view-options .storage-search .clear-search {
  padding: .5em 1.5em;
  font-size: 0.8em;
  margin: .5em;
  border-radius: 5em;
  font-weight: 500;
  background: transparent;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(125, 60, 58, 0.2);
  text-decoration: none;
  color: #212121;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: .2s;
  vertical-align: middle;
  outline: 0;
  color: #7d3c3a;
  display: flex;
  margin-right: 1em;
}
.storage-item-view-options .storage-search .clear-search:hover {
  color: #d95753;
  background: rgba(217, 87, 83, 0.05);
  box-shadow: inset 0 0 0 1px rgba(125, 60, 58, 0.23);
}
.storage-item-view-options .storage-search .clear-search .icon-end {
  margin-right: 1em;
}
.storage-item-view-options .storage-search .clear-search .icon-start {
  margin-left: 1em;
}
.storage-item-view-options .storage-search .clear-search.disabled {
  opacity: .45;
  pointer-events: none;
}
.storage-item-view-options .storage-search .clear-search .label {
  line-height: 1em;
}
.storage-item-view-options .storage-search .clear-search:not(.shown) {
  font-size: 0;
}
#tasks {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
#tasks .tasks-list-wrapper {
  flex-grow: 1;
  padding: .25em;
  width: 33.333333333333%;
}
@media only screen and (max-width: 767px) {
  #tasks .tasks-list-wrapper {
    width: 100%;
  }
}
body.mobile #tasks .tasks-list-wrapper {
  width: 100%;
}
#tasks .tasks-list {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  position: relative;
  border-radius: .5em;
}
#tasks .tasks-list .tasks-list-title {
  font-size: 1.25em;
  padding: .5em;
  color: white;
  text-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  background: #eaebf1;
}
#tasks .tasks-list.to-do {
  background: rgba(74, 159, 249, 0.05);
}
#tasks .tasks-list.to-do .tasks-list-title {
  background: #4A9FF9;
  box-shadow: 0 5px 20px rgba(74, 159, 249, 0.05), 0 2px 3px rgba(0, 0, 0, 0.1);
}
#tasks .tasks-list.to-do .item-title {
  color: #2e6daf;
}
#tasks .tasks-list.to-do .item-user {
  background: #edf5fe;
  color: #2e6daf;
}
#tasks .tasks-list.pending {
  background: rgba(249, 148, 74, 0.05);
}
#tasks .tasks-list.pending .tasks-list-title {
  background: #f9944a;
  box-shadow: 0 5px 20px rgba(249, 148, 74, 0.05), 0 2px 3px rgba(0, 0, 0, 0.1);
}
#tasks .tasks-list.pending .item-title {
  color: #af652e;
}
#tasks .tasks-list.pending .item-user {
  background: #fef4ed;
  color: #af652e;
}
#tasks .tasks-list.completed {
  background: rgba(53, 208, 122, 0.05);
}
#tasks .tasks-list.completed .tasks-list-title {
  background: #35d07a;
  box-shadow: 0 5px 20px rgba(53, 208, 122, 0.05), 0 2px 3px rgba(0, 0, 0, 0.1);
}
#tasks .tasks-list.completed .item-title {
  color: #3a654d;
}
#tasks .tasks-list.completed .item-user {
  background: #ebfaf2;
  color: #3a654d;
}
#tasks .tasks-list-item[data-id="structure"] {
  display: none !important;
}
.tasks-list-items {
  flex-grow: 1;
  padding: 1em .25em;
  display: flex;
  flex-direction: column;
}
.tasks-list-items:before {
  content: "אין משימות";
  letter-spacing: 2px;
  font-weight: 500;
  font-size: .85em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1em;
  pointer-events: none;
  opacity: 0;
}
.tasks-list-items:empty,
.tasks-list-items.empty {
  padding: 1.5em;
  transition: 0.7s cubic-bezier(0.25, 0, 0, 1);
  animation: fadeIn .5s;
}
.tasks-list-items:empty:before,
.tasks-list-items.empty:before {
  transition: inherit;
  opacity: .5;
}
.tasks-list-items .tasks-list-item {
  background: white;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: .333333em;
  margin: .25em;
  transition: opacity 0.2s, box-shadow 0.2s;
  text-align: right;
}
.tasks-list-items .tasks-list-item .item-content {
  padding: .5em .75em;
  position: relative;
  border-radius: inherit;
  overflow: hidden;
}
.tasks-list-items .tasks-list-item .item-content .item-move {
  position: absolute;
  left: .5em;
  top: .4em;
  opacity: .25;
  transition: .2s;
  cursor: move;
}
.tasks-list-items .tasks-list-item .item-content .item-edit {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  padding: .5em;
  transition: 0.3s cubic-bezier(0.3, 0, 0, 1);
  background: white;
  color: #212121;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(2em);
  cursor: pointer;
  user-select: none;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}
.tasks-list-items .tasks-list-item .item-content .item-edit:hover {
  padding: .75em;
}
.tasks-list-items .tasks-list-item .item-content .item-title {
  font-size: 1.125em;
  font-weight: 500;
  color: #32408f;
  padding-left: 1em;
  line-height: 1.25em;
  letter-spacing: -0.25px;
}
.tasks-list-items .tasks-list-item .item-content .item-description {
  font-size: 0.875em;
  letter-spacing: -0.125px;
}
.tasks-list-items .tasks-list-item .item-content .item-users {
  margin: 0.25em -0.25em 0;
}
.tasks-list-items .tasks-list-item .item-content .item-users .item-user {
  border: 0;
  background: #eceef8;
  border-radius: 5em;
  padding: .125em .5em;
  color: #3F51B5;
  font-size: .8em;
  text-decoration: none;
  margin: .25em;
  display: inline-block;
}
.tasks-list-items .tasks-list-item .item-content .item-users:empty {
  margin: 0;
}
.use-hover.tasks-list-items .tasks-list-item:hover .item-move {
  opacity: 1;
}
.use-hover.tasks-list-items .tasks-list-item:hover .item-edit {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transform: translateX(0);
}
.tasks-list-items .tasks-list-item.sortable-ghost {
  opacity: .5;
}
.tasks-list-items .tasks-list-item.new {
  animation: fadeIn 0.5s, slideFromBottom2x 0.7s cubic-bezier(0, 0, 0, 1);
}
#specific-user {
  display: none;
}
#specific-user .name {
  font-weight: 500;
  cursor: pointer;
}
#specific-user #clear-specific {
  display: inline-flex;
  vertical-align: middle;
  margin-right: .5em;
  border-radius: 10em;
  width: 2em;
  height: 2em;
  align-items: center;
  justify-content: center;
  font-size: .666666667em;
  background: rgba(217, 87, 83, 0.1);
  border: 1px solid rgba(217, 87, 83, 0.1);
  color: #d95753;
  cursor: pointer;
  transition: .2s;
}
#specific-user #clear-specific:hover {
  background: rgba(217, 87, 83, 0.15);
}
body#login-page.not(.loaded) {
  background: linear-gradient(to right, rgba(30, 32, 47, 0.75), rgba(30, 44, 47, 0.75));
}
body#login-page #page-content-container {
  background-image: linear-gradient(to right, rgba(30, 32, 47, 0.75), rgba(30, 44, 47, 0.75)), url('../../images/login.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: white;
}
body#login-page #page-content-container h1 {
  font-weight: 100;
}
body#login-page #page-content-container #login-form {
  background: transparent;
  box-shadow: none;
}
body#login-page #page-content-container #login-form .form-field {
  box-shadow: none;
}
body#login-page #page-content-container #login-form .form-field .field-name i,
body#login-page #page-content-container #login-form .form-field .field-name svg {
  color: currentColor;
}
body#login-page #page-content-container #login-form .form-field .field-value-container .field-value {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0);
  color: currentColor;
}
body#login-page #page-content-container #login-form .form-field .field-value-container .field-value:focus {
  border-color: rgba(255, 255, 255, 0.2);
}
#equipment-items-wrapper {
  display: none;
  margin-top: 2.5em;
}
#equipment-items-wrapper h1 {
  margin-top: 0;
}
#equipment-items-wrapper #equipment-items {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
  margin-top: -0.5em;
}
#equipment-items-wrapper #equipment-items .equipment-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  background: white;
  padding: 1em;
  border-radius: 1em;
  margin: .5em 0;
  animation: fadeIn 0.5s, slideFromTop100percent 0.7s cubic-bezier(0, 0, 0, 1);
  transition: box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}
#equipment-items-wrapper #equipment-items .equipment-item.sent {
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
}
#equipment-items-wrapper #equipment-items .equipment-item.structure {
  display: none;
}
#equipment-items-wrapper #equipment-items .equipment-item .item-title {
  font-size: 1.25em;
  flex: 1 0;
  text-align: right;
}
body.mobile #equipment-items-wrapper #equipment-items .equipment-item .item-title {
  line-height: 1em;
}
#equipment-items-wrapper #equipment-items .equipment-item .item-description {
  background: rgba(63, 81, 181, 0.1);
  color: #30396b;
  padding: .25em 1.5em;
  border-radius: .5em;
  margin-left: 1em;
  flex-shrink: 0;
  font-size: .8em;
  font-weight: 500;
}
#equipment-items-wrapper #equipment-items .equipment-item .item-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  flex-shrink: 0;
  align-self: normal;
  color: rgba(33, 33, 33, 0.75);
  border-right: 1px solid rgba(33, 33, 33, 0.1);
  padding-right: 1em;
  margin-right: 1em;
}
#equipment-items-wrapper #equipment-items .equipment-item .item-card i,
#equipment-items-wrapper #equipment-items .equipment-item .item-card svg {
  margin-right: .5em;
}
#equipment-items-wrapper #equipment-items .equipment-item .item-card .card-code {
  font-size: .8em;
}
#equipment-items-wrapper #equipment-items .equipment-item .item-remove,
#equipment-items-wrapper #equipment-items .equipment-item .item-status {
  transition: 0.5s cubic-bezier(0.25, 0, 0, 1);
}
#equipment-items-wrapper #equipment-items .equipment-item .item-status {
  border-radius: .5em;
  position: absolute;
  top: .5em;
  left: .5em;
  bottom: .5em;
  right: .5em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateY(100%);
  opacity: 0;
  padding: .125em 2.5em;
  line-height: 1;
  pointer-events: none;
}
#equipment-items-wrapper #equipment-items .equipment-item .item-status.success {
  background: #ecfaf4;
  color: #307858;
}
#equipment-items-wrapper #equipment-items .equipment-item .item-status.error {
  background: #fbeeee;
  color: #7d3c3a;
}
#equipment-items-wrapper #equipment-items .equipment-item .item-status i,
#equipment-items-wrapper #equipment-items .equipment-item .item-status svg {
  vertical-align: middle;
  margin-left: .5em;
}
#equipment-items-wrapper #equipment-items .equipment-item.sent .item-status {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: all;
}
#equipment-items-wrapper #equipment-items .equipment-item.sent:hover .item-status {
  transform: translateY(100%);
}
#equipment-items-wrapper #equipment-items .equipment-item:hover .item-remove,
#equipment-items-wrapper #equipment-items .equipment-item.sent .item-remove {
  opacity: 1;
  margin-left: 0;
}
#equipment-items-wrapper #equipment-items .equipment-item .item-remove {
  display: flex;
  position: relative;
  z-index: 1;
  opacity: 0;
  border-radius: .5em;
  background: white;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  height: 1.5em;
  width: 1.5em;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  margin-left: -2.5em;
  margin-right: 1em;
}
#equipment-items-wrapper #equipment-items .equipment-item .item-remove:hover {
  color: #d95753;
}
#payments-log .payment-item {
  background: white;
  box-shadow: 0 4px 10px rgba(63, 81, 181, 0.07);
  border-radius: .5em;
  padding: 1em 1.5em;
  display: flex;
  align-items: center;
  animation: fadeIn 0.5s cubic-bezier(0, 0, 0, 1), slideFromBottom 0.5s cubic-bezier(0, 0, 0, 1);
  animation-fill-mode: both;
  position: relative;
}
#payments-log .payment-item.structure {
  display: none;
}
#payments-log .payment-item + .payment-item {
  margin-top: .5em;
}
#payments-log .payment-item .payment-date {
  display: none;
}
#payments-log .payment-item.new-day {
  margin-top: 3em;
}
#payments-log .payment-item.new-day .payment-date {
  bottom: 100%;
  right: 0;
  padding: .25em;
  display: flex;
  position: absolute;
  color: rgba(33, 33, 33, 0.5);
  font-size: .875em;
  font-weight: 500;
  animation: inherit;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-delay: inherit;
}
#payments-log .payment-item .payment-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#payments-log .payment-item .payment-price .money-container {
  color: #6ab04c;
  display: flex;
  align-items: baseline;
  line-height: 1;
}
#payments-log .payment-item .payment-price .money-container .payment-price-agorots {
  direction: ltr;
  font-weight: 400;
}
#payments-log .payment-item .payment-price .money-container .payment-price-agorots:before {
  content: '.';
}
#payments-log .payment-item .payment-price .money-container .payment-price-shekels {
  font-size: 2.5em;
  font-weight: 300;
  direction: ltr;
}
#payments-log .payment-item .payment-price .money-container .shekel-sign {
  font-size: .8em;
}
#payments-log .payment-item .payment-price .instead-of {
  font-size: .8em;
}
#payments-log .payment-item .payment-titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1.5em;
  flex-grow: 1;
  line-height: 1;
}
#payments-log .payment-item .payment-titles .payment-payer {
  font-size: 1.5em;
}
#payments-log .payment-item .payment-titles .payment-for-container {
  display: flex;
  margin-top: .5em;
  align-items: baseline;
}
#payments-log .payment-item .payment-titles .payment-for-container .payment-for {
  color: rgba(33, 33, 33, 0.5);
  padding-left: .5em;
  margin-left: .5em;
  border-left: 1px solid rgba(33, 33, 33, 0.2);
}
#payments-log .payment-item .payment-info {
  display: flex;
  flex-direction: column;
  color: rgba(33, 33, 33, 0.9);
}
#payments-log .payment-item .payment-info .payment-info-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
#payments-log .payment-item .payment-info .payment-info-line .icon-container {
  margin-left: 1em;
}
#payments-log .payment-item .payment-info .payment-info-line .info-line-secondary {
  color: rgba(33, 33, 33, 0.5);
  margin-right: .5em;
  font-size: .875em;
}
body.mobile #payments-log .payment-item {
  flex-wrap: wrap;
}
body.mobile #payments-log .payment-item .payment-price {
  order: 2;
}
body.mobile #payments-log .payment-item .payment-titles {
  padding-right: 0;
  order: 1;
}
body.mobile #payments-log .payment-item .payment-info {
  order: 3;
  width: 100%;
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid rgba(33, 33, 33, 0.1);
}
.form-field.titled.money-summary {
  margin-bottom: 0;
}
.form-field.titled.money-summary .field-name {
  background: rgba(106, 176, 76, 0.06);
  color: #6ab04c;
  font-size: 1.25em;
}
.form-field.titled.money-summary .field-name svg {
  color: currentColor;
}
.form-field.titled.money-summary .field-name span {
  margin: 0 .5em 0 .125em;
  display: inline-block;
}
.form-field.titled.money-summary .field-name .icon-suffix {
  font-size: .75rem;
  margin-left: 0;
  opacity: .75em;
}
.initial-price-container {
  display: none;
  color: #6ab04c;
}
.initial-price-container * {
  display: inline-block;
}
#page-wrapper .profile-titles {
  padding: 3em 1em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  animation: fadeIn 0.5s, slideFromBottom2x 0.7s cubic-bezier(0, 0, 0, 1);
  animation-delay: .125s;
  animation-fill-mode: both;
}
#page-wrapper .profile-titles .title-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
#page-wrapper .profile-titles .title-row + .title-row {
  margin-top: 1em;
}
#page-wrapper .profile-titles .title-row.may-wrap {
  flex-wrap: wrap;
}
#page-wrapper .profile-titles .profile-title {
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}
#page-wrapper .profile-titles .profile-title#profile-title-username {
  font-family: Montserrat, Heebo, Arial;
}
#page-wrapper .profile-titles .profile-title + .profile-title {
  border-right: 1px solid rgba(33, 33, 33, 0.1);
  margin-right: 1em;
  padding-right: 1em;
}
body.mobile #page-wrapper .profile-titles .profile-title + .profile-title {
  margin-right: .5em;
  padding-right: .5em;
}
#page-wrapper .profile-titles .profile-title:first-of-type {
  justify-content: flex-end;
}
#page-wrapper .profile-titles .profile-title:last-of-type {
  justify-content: flex-start;
}
.profile-summary {
  font-size: .875em;
  background: #f6f6f9;
  border-radius: .5em;
  border: 1px solid rgba(50, 64, 143, 0.1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeIn 0.5s, slideFromBottom2x 0.7s cubic-bezier(0, 0, 0, 1);
  animation-delay: .25s;
  animation-fill-mode: both;
}
.profile-summary .summary-item {
  margin: 1em;
  display: flex;
  color: #666e99;
}
.profile-summary .summary-item .summary-item-name {
  font-weight: 500;
  color: #979cba;
  margin-left: .5em;
  display: flex;
  align-items: center;
}
.profile-summary .summary-item .summary-item-name i,
.profile-summary .summary-item .summary-item-name svg {
  margin-left: .5em;
}
#profile-header {
  height: 15em;
  background: #dadce7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  position: relative;
}
#profile-header #profile-header-blurred-background {
  -webkit-filter: blur(0.25em);
  position: absolute;
  top: -2em;
  right: -2em;
  bottom: -2em;
  left: -2em;
  margin: auto;
  width: 120%;
  height: auto;
  object-fit: cover;
  z-index: 1;
  animation: scaleFromBigToSmall 10s cubic-bezier(0, 0, 0, 1);
}
@keyframes scaleFromBigToSmall {
  0% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
#profile-header #profile-header-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -1px;
  z-index: 2;
  background: linear-gradient(to left, rgba(249, 249, 251, 0.5), #f9f9fb);
}
body.mobile-device #profile-header #profile-header-overlay {
  background: rgba(249, 249, 251, 0.75);
}
#profile-picture-container {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideFromBottom2x 0.7s cubic-bezier(0, 0, 0, 1);
  position: relative;
  z-index: 1;
  margin-top: -5em;
}
#profile-picture-container #profile-picture-circle {
  font-size: 5em;
}
#profile-picture-container #profile-picture-circle .status-icon.box-shadow {
  box-shadow: 0 0 0 0.08em #f9f9fb;
}
#profile-picture-container #profile-picture-circle:hover .picture-circle-change-overlay {
  opacity: 1;
  pointer-events: all;
}
#profile-picture-container #profile-picture-circle .picture-circle-change-overlay {
  position: absolute;
  top: .25em;
  right: .25em;
  bottom: .25em;
  left: .25em;
  border-radius: 100%;
  background: rgba(102, 110, 153, 0.5);
  color: #f9f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .5em;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  cursor: pointer;
}
#profile-picture-container #profile-picture-circle .picture-circle-change-overlay:hover {
  transform: scale(1.14285);
  background: rgba(102, 110, 153, 0.75);
}
#change-profile-picture-modal #new-profile-picture-preview {
  font-size: 4em;
  margin: .25em auto;
  transition: .4s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  animation: scaleIn .9s;
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-delay: -0.2s;
}
#change-profile-picture-modal #new-profile-picture-preview.hidden {
  font-size: 0;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  transition-duration: .25s;
  pointer-events: none;
}
#hierarchy-list {
  display: flex;
  flex-direction: column;
  animation: slideFromBottom 0.5s cubic-bezier(0, 0, 0, 1);
}
#hierarchy-list .hierarchy-level-container {
  padding: .5em 0;
}
#hierarchy-list .hierarchy-level-container .hierarchy-level {
  display: flex;
  background: #f5f6fb;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  position: relative;
  transition: box-shadow 0.2s, background 0.2s, opacity 0.2s;
}
#hierarchy-list .hierarchy-level-container .hierarchy-level .level-identifier {
  max-width: 6em;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1em 1.5em;
  transition: .2s;
}
#hierarchy-list .hierarchy-level-container .hierarchy-level .level-identifier .level-label {
  font-size: .8em;
  font-weight: 500;
  color: #99a3d8;
}
#hierarchy-list .hierarchy-level-container .hierarchy-level .level-identifier .level-number {
  font-size: 2em;
  font-weight: 300;
  font-family: Montserrat, Heebo, Arial;
  color: #4758b8;
  animation: slideFromBottom 0.5s cubic-bezier(0, 0, 0, 1);
}
#hierarchy-list .hierarchy-level-container .hierarchy-level .level-roles-wrapper {
  background: white;
  border-radius: 1em;
  flex-grow: 1;
  padding: 1em 1.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#hierarchy-list .hierarchy-level-container .hierarchy-level .level-roles-wrapper .roles-label {
  font-size: .8em;
  font-weight: 500;
  color: #99a3d8;
}
#hierarchy-list .hierarchy-level-container:nth-child(2) .level-identifier {
  max-width: 10em;
}
#hierarchy-list .hierarchy-level-container:nth-child(3) .level-identifier {
  max-width: 9em;
}
#hierarchy-list .hierarchy-level-container:nth-child(4) .level-identifier {
  max-width: 8em;
}
#hierarchy-list .hierarchy-level-container:nth-child(5) .level-identifier {
  max-width: 7em;
}
#hierarchy-list .hierarchy-level-container.structure {
  display: none;
}
#hierarchy-list .hierarchy-level-container .level-controls {
  position: absolute;
  left: .5em;
  top: .5em;
  opacity: .33;
  transition: .2s;
  display: flex;
}
#hierarchy-list .hierarchy-level-container .level-controls .level-control {
  width: 2em;
  height: 2em;
  border-radius: 2em;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: inherit;
  cursor: pointer;
  overflow: hidden;
}
#hierarchy-list .hierarchy-level-container .level-controls .level-control:hover {
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
}
#hierarchy-list .hierarchy-level-container .level-controls .level-control.level-drag {
  cursor: move;
}
#hierarchy-list .hierarchy-level-container .level-controls .level-control.level-remove {
  width: 0;
  opacity: 0;
}
.use-hover#hierarchy-list .hierarchy-level-container:hover .level-controls {
  opacity: 1;
}
#hierarchy-list .hierarchy-level-container.empty-level .level-identifier {
  opacity: .25;
}
#hierarchy-list .hierarchy-level-container.empty-level .level-controls .level-control.level-remove {
  width: 2em;
  opacity: 1;
}
#hierarchy-list .hierarchy-level-container.sortable-ghost {
  opacity: .5;
  background: transparent;
  box-shadow: none;
}
#hierarchy-list .hierarchy-level-container.sortable-ghost .level-number {
  animation-duration: 0s !important;
}
.level-roles-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: -0.25em;
  min-height: 2.5em;
  min-width: 2.5em;
  transition: .2s;
  border-radius: .5em;
}
.level-roles-list .level-role-item {
  padding: .25em;
}
.level-roles-list .level-role-item .level-role-item-content {
  background: #f5f6fb;
  border-radius: .5em;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.level-roles-list .level-role-item .role-item-name {
  padding: .25em 1em;
}
.level-roles-list .level-role-item .role-item-drag {
  color: #99a3d8;
  position: absolute;
  left: 0em;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  padding: 0 .5em;
  cursor: move;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  background: rgba(245, 246, 251, 0.9);
}
.use-hover.level-roles-list .level-role-item:hover .role-item-drag {
  opacity: 1;
}
#hierarchy-list.mark-landing-areas .level-roles-list {
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
}
#admins-list .items-list-value {
  display: flex;
  align-items: center;
  padding-right: 0;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
#admins-list .items-list-value .admin-profile-picture {
  margin-left: .5em;
}
#admins-list .items-list-value .admin-username {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  color: inherit;
  transition: .2s;
  flex-shrink: 2;
  line-height: 1.25em;
  word-break: break-word;
}
#admins-list .items-list-value .admin-username[href] {
  position: relative;
}
#admins-list .items-list-value .admin-username[href]:before {
  height: 1px;
  background-color: #448AFF;
  left: 0;
  bottom: 3px;
  width: 0%;
  position: absolute;
  transition: 0.3s;
  content: "";
}
#admins-list .items-list-value .admin-username[href]:hover {
  color: #448AFF;
}
#admins-list .items-list-value .admin-username[href]:hover:before {
  right: 0;
  left: auto;
  width: 100%;
}
#admins-list .items-list-value .admin-username[href].active {
  color: #448AFF;
}
#admins-list .items-list-value .associated-identity {
  display: inline-block;
  vertical-align: middle;
  font-size: .8em;
  margin-right: .625em;
  padding: .46875em .625em;
  border-radius: .25em;
  background: rgba(68, 138, 255, 0.1);
  color: #2a7aff;
  flex-shrink: 1;
  line-height: 1;
  text-align: center;
}
#admins-list .items-list-value .associated-identity:empty {
  display: none;
}
#admins-list .current-admin {
  position: relative;
}
#admins-list .current-admin:before {
  content: "";
  right: -2em;
  width: .5em;
  height: .5em;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #3F51B5;
  position: absolute;
  border-radius: 2em;
}
#admin-permissions-modal .has-from-role-identifier {
  display: inline-flex;
  align-items: center;
}
#admin-permissions-modal .has-from-role-identifier:before {
  margin-right: 0 !important;
  font-size: initial;
}
#admin-permissions-modal .has-from-role-identifier:after {
  content: "";
  margin: 0 .5em;
  height: 1px;
  width: .333333em;
  background: currentColor;
  opacity: .666667;
  display: inline-block;
  vertical-align: middle;
}
#settings-sections .settings-section {
  background: white;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: .25em;
  overflow: hidden;
  margin: 1em auto;
  max-width: 600px;
}
#settings-sections .settings-section .settings-section-title {
  color: #212121;
  text-align: right;
  padding: .5em 1em;
  font-size: 1.25em;
}
#settings-sections .settings-section .section-setting {
  display: flex;
  flex-wrap: wrap;
  padding: 1em;
  align-items: center;
}
body.mobile #settings-sections .settings-section .section-setting {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  box-shadow: inset 0 1px 0 0 rgba(63, 81, 181, 0.07);
}
#settings-sections .settings-section .section-setting .section-setting-name-wrapper {
  flex: 3 2;
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
}
#settings-sections .settings-section .section-setting .section-setting-name-wrapper .section-setting-icon {
  width: 2.625em;
  height: 2.625em;
  background: rgba(63, 81, 181, 0.1);
  color: #3F51B5;
  display: flex;
  align-items: center;
  border-radius: 5em;
  justify-content: center;
  margin-left: 1em;
  flex-shrink: 0;
}
body.mobile #settings-sections .settings-section .section-setting .section-setting-name-wrapper .section-setting-icon {
  width: 2.25em;
  height: 2.25em;
  margin-left: .75em;
}
#settings-sections .settings-section .section-setting .section-setting-name-wrapper .section-setting-name {
  display: flex;
  flex-direction: column;
  text-align: right;
  align-self: center;
}
#settings-sections .settings-section .section-setting .section-setting-name-wrapper .section-setting-name .description {
  font-size: 0.8em;
  color: rgba(33, 33, 33, 0.5);
}
#settings-sections .settings-section .section-setting .section-setting-action-wrapper {
  text-align: left;
  flex: 2 3;
  margin-right: .6666667em;
}
body.mobile #settings-sections .settings-section .section-setting .section-setting-action-wrapper {
  margin-right: 0;
  margin-top: .6666667em;
}
#settings-sections .settings-section .section-setting .section-setting-action-wrapper > *:not(.tiny-button) {
  text-align: initial;
}
#settings-sections .settings-section .section-setting .section-setting-action-wrapper .no-margin {
  margin: 0;
}
#settings-sections .settings-section .section-setting .section-setting-action-wrapper.scrollable-setting {
  overflow-y: auto;
  max-height: 300px;
}
body:not(.mobile-device) #settings-sections .settings-section .section-setting .section-setting-action-wrapper.scrollable-setting::-webkit-scrollbar {
  width: .5em;
  background: transparent;
}
body:not(.mobile-device) #settings-sections .settings-section .section-setting .section-setting-action-wrapper.scrollable-setting::-webkit-scrollbar-thumb {
  background: #c6cceb;
  box-shadow: inset 0 0 0 1px #b3bbe5;
  border-radius: 1em;
}
#settings-sections .settings-section .section-setting .section-setting-action-wrapper label {
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  padding-top: .375em;
}
#settings-sections .settings-section .section-setting .section-setting-action-wrapper label input[type=radio],
#settings-sections .settings-section .section-setting .section-setting-action-wrapper label input[type=checkbox] {
  margin-top: .125em;
  margin-left: .75em;
  margin-right: 0;
}
#courses-list {
  transition: 0.5s cubic-bezier(0.25, 0, 0, 1);
}
#courses-list.has-opened {
  max-width: 52em;
}
#courses-list .items-list-single .items-list-value {
  transition: 0.5s cubic-bezier(0.25, 0, 0, 1);
  border-radius: .25em;
  position: relative;
}
#courses-list .items-list-single .items-list-value .course-info-trigger {
  cursor: pointer;
}
#courses-list .items-list-single .items-list-value .course-id {
  position: absolute;
  transition: opacity 0.5s cubic-bezier(0.25, 0, 0, 1), transform 0.5s cubic-bezier(0.25, 0, 0, 1);
  opacity: 0;
  font-size: .5em;
  margin-right: 1em;
  display: inline-flex;
  top: 0;
  bottom: 0;
  right: 0;
  align-items: center;
  z-index: -1;
  width: 1px;
  pointer-events: none;
  direction: ltr;
}
body.mobile #courses-list .items-list-single .items-list-value .course-id {
  width: auto;
  top: 100%;
  padding-top: 1em;
  z-index: auto;
  margin-right: 0;
}
#courses-list .items-list-single .course-details {
  display: none;
}
#courses-list .items-list-single .course-details .meetings-list {
  display: none;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single {
  text-align: right;
  margin: 0 .25em;
  border-top: 1px solid rgba(33, 33, 33, 0.1);
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single.structure {
  display: none;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single.structure + .meeting-single {
  margin-top: .5em;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single .meeting-date {
  display: inline-block;
  margin-right: 2em;
  font-size: .8em;
  font-weight: 500;
  opacity: .75;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single .meeting-start,
#courses-list .items-list-single .course-details .meetings-list .meeting-single .meeting-end {
  font-weight: 500;
  margin: 0 .5em;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single .flex-table {
  padding: 1em;
  padding-top: 0;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single .flex-table .flex-table-row + .flex-table-row {
  margin-top: 1em;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single .flex-table b {
  font-weight: 500;
  font-size: .8em;
  color: rgba(37, 47, 105, 0.7);
  padding: .25em .75em;
  border-radius: 2em;
  background: rgba(63, 81, 181, 0.1);
  display: inline-block;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single.single-accordion.shown {
  border-color: transparent;
  border-radius: .5em;
  margin-top: 1em;
  margin-bottom: 1em;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single.single-accordion.shown .accordion-title {
  opacity: 1;
  font-size: 1.5em;
  padding-right: .75em;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single .meeting-single-info {
  position: relative;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single .meeting-single-info .meeting-delete {
  color: #d95753;
  position: absolute;
  cursor: pointer;
  bottom: .25em;
  left: .25em;
  padding: .5em 1em;
  font-size: .8em;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: .2s;
  border-radius: .5em;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single .meeting-single-info .meeting-delete i,
#courses-list .items-list-single .course-details .meetings-list .meeting-single .meeting-single-info .meeting-delete svg {
  margin-left: .5em;
}
#courses-list .items-list-single .course-details .meetings-list .meeting-single .meeting-single-info .meeting-delete:hover {
  background: rgba(217, 87, 83, 0.1);
}
#courses-list .items-list-single .items-list-single-buttons {
  transition: 0.5s cubic-bezier(0.25, 0, 0, 1);
  transform-origin: top left;
  position: relative;
  z-index: 1;
}
#courses-list .items-list-single .items-list-single-buttons .course-info-trigger i,
#courses-list .items-list-single .items-list-single-buttons .course-info-trigger svg {
  transition: transform 0.5s cubic-bezier(0.25, 0, 0, 1);
}
#courses-list .items-list-single.opened + .items-list-single {
  border-width: .25em;
}
#courses-list .items-list-single.opened .items-list-value {
  font-size: 2em;
  margin-bottom: .25em;
  padding-right: 1em;
  background: rgba(63, 81, 181, 0.05);
  color: #3F51B5;
}
#courses-list .items-list-single.opened .items-list-value .course-id {
  opacity: .5;
  transform: translateX(3em);
}
body.mobile #courses-list .items-list-single.opened .items-list-value .course-id {
  transform: none;
}
#courses-list .items-list-single.opened .items-list-single-buttons {
  transform: scale(1.5);
  margin-left: .5em;
}
#courses-list .items-list-single.opened .items-list-single-buttons .items-list-single-button {
  margin-top: .875em;
}
#courses-list .items-list-single.opened .items-list-single-buttons .course-info-trigger i,
#courses-list .items-list-single.opened .items-list-single-buttons .course-info-trigger svg {
  transform: rotateX(180deg);
}
#course-edit-modal form .course-number-of-month {
  padding: 0 .33333333333em;
  margin-right: 0.33333333333em;
}
#edit-meeting-modal #meeting-teachers-list,
#edit-meeting-modal #meeting-students-list {
  display: flex;
  flex-direction: column;
}
#edit-meeting-modal #meeting-students-list .meeting-student-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.25em -0.5em;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  background: white;
  border-radius: .25em;
  padding-right: 1.25em;
  transition: .2s;
}
#edit-meeting-modal #meeting-students-list .meeting-student-item.structure {
  display: none;
}
#edit-meeting-modal #meeting-students-list .meeting-student-item .student-name {
  flex-grow: 1;
  line-height: 1;
  font-weight: 500;
  transition: inherit;
}
#edit-meeting-modal #meeting-students-list .meeting-student-item.has-selected {
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
  padding-right: 1em;
}
#edit-meeting-modal #meeting-students-list .meeting-student-item.has-selected .student-name {
  color: rgba(33, 33, 33, 0.7);
}
body.mobile #edit-meeting-modal #meeting-students-list .meeting-student-item {
  flex-direction: column;
  padding-right: 0;
  padding-top: .75em;
}
body.mobile #edit-meeting-modal #meeting-students-list .meeting-student-item .student-name {
  font-size: 1.25em;
}
#course-log-section {
  overflow-x: auto;
  padding: 1em 0;
  padding-top: 0;
  position: relative;
  animation: slideFromBottom2x 1s cubic-bezier(0, 0, 0, 1);
  display: flex;
}
#course-log-section::-webkit-scrollbar {
  height: .75em;
  background: rgba(63, 81, 181, 0.06);
  border-radius: 1em;
}
#course-log-section::-webkit-scrollbar-thumb {
  border-radius: 1em;
  background-image: url(../../images/icons/left-chevron.png), url(../../images/icons/right-chevron.png), url(../../images/icons/draggable.png), linear-gradient(to right, #3F51B5, #3f8cb5);
  background-size: .5em .5em, .5em .5em, .5em .5em, 100% 100%;
  background-repeat: no-repeat;
  background-position: center left, center right, center center, center center;
}
#course-log-section:before,
#course-log-section:after {
  content: "";
  width: 1em;
  display: block;
  height: 1px;
  background: transparent;
  flex-shrink: 0;
}
#course-log .absents a {
  color: #d95753;
}
#course-log tr td.student-name,
#course-log tr td.student-payments {
  background: rgba(63, 81, 181, 0.01);
}
#course-log tr td.student-payments {
  border-left: 1px solid rgba(63, 81, 181, 0.1);
}
#course-log thead {
  transition: .2s;
}
#course-log .structure {
  display: none;
}
#course-log .meeting-header {
  line-height: 1;
  padding: 0;
  min-width: 5.5em;
  border: 0;
  box-shadow: inset -1px 0 0 0px rgba(0, 0, 0, 0.1);
}
#course-log .meeting-header .meeting-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: .5em;
  animation: slideFromBottom 1s cubic-bezier(0, 0, 0, 1), fadeIn 0.5s;
  position: relative;
}
#course-log .meeting-header .title {
  display: flex;
  direction: ltr;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: .5em .75em;
  border-radius: 3em;
  margin: .5em;
  transition: .3s;
}
#course-log .meeting-header .title .meeting-number {
  margin-top: 1px;
}
#course-log .meeting-header .date {
  font-size: .75em;
  opacity: .75;
  padding: 0 0.666667em;
  transition: .3s;
}
#course-log .meeting-header .time-range {
  direction: ltr;
  margin-top: .5em;
  opacity: .6;
  font-size: .666666666667em;
  padding: 0 0.75em;
  transition: .3s;
}
#course-log .meeting-header .edit-meeting {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  background: white;
  color: #3F51B5;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  border-radius: 2em;
  margin: auto;
  transition: .3s;
  transform: translateY(0em) scale(0);
  cursor: pointer;
}
#course-log .meeting-header .edit-meeting:hover {
  transform: translateY(0em) scale(1.1) !important;
}
#course-log .meeting-header:hover .edit-meeting {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#course-log .meeting-header:hover .title {
  transform: translateY(-0.5em);
  opacity: .25;
}
#course-log .meeting-header:hover .date,
#course-log .meeting-header:hover .time-range {
  opacity: .25;
  transform: translateY(0.5em);
}
#course-log .teacher-name-title {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.75);
}
#course-log .teacher-name-title .teacher-icon {
  vertical-align: middle;
  margin-left: .5em;
}
#course-log .teacher-header {
  line-height: 1;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.75);
  box-shadow: inset -1px 0 0 0px rgba(0, 0, 0, 0.1);
}
#course-log .teacher-header .teacher-header-content {
  font-size: .75em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.666667em;
  animation: slideFromTop2x 1s cubic-bezier(0, 0, 0, 1), fadeIn 0.5s;
}
#course-log .teacher-header .teacher-header-content a {
  color: currentColor;
  text-decoration: none;
}
#course-log tbody {
  right: 0;
}
#course-log tbody:not([style="right: 0px;"]) .student-name {
  box-shadow: -10px 0 10px -10px rgba(0, 0, 0, 0.2), -1px 0 0 0 rgba(0, 0, 0, 0.05);
}
#course-log .student-row {
  right: inherit;
}
#course-log .student-row .student-payments {
  direction: ltr;
  position: relative;
  box-shadow: inset -1px 1px 0 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
#course-log .student-row .student-payments .current-payments {
  font-size: 1.2em;
}
#course-log .student-row .student-payments .payments-slash {
  opacity: .33;
}
#course-log .student-row .student-payments .total-payments {
  font-size: .8em;
  opacity: .75;
}
#course-log .student-row .student-payments.partly {
  background: #fef8f5;
}
#course-log .student-row .student-payments.partly .current-payments {
  color: #ea7b37;
}
#course-log .student-row .student-payments.zero {
  background: #fcf3f3;
}
#course-log .student-row .student-payments.zero .current-payments {
  color: #d95753;
}
#course-log .student-row .student-payments.fully {
  background: #f5fdf9;
}
#course-log .student-row .student-payments.fully .current-payments {
  color: #3ecf8e;
}
#course-log .student-row .student-payments .add-payment {
  direction: rtl;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 1px;
  top: 1px;
  margin: 0;
  transition: .2s;
  transform: translateY(100%);
  color: #3F51B5;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: .8em;
  text-decoration: none;
  padding: .25em .5em;
}
#course-log .student-row .student-payments .add-payment .icon {
  margin-left: .5em;
}
#course-log .student-row .student-payments:hover .add-payment {
  transform: translateY(0);
}
#course-log .student-row .status {
  font-weight: 500;
  transition: font-size 0.2s;
  line-height: 1;
}
#course-log .student-row .status[data-status="absent"] {
  font-size: .75em;
  opacity: .5;
}
#course-log .student-row .status[data-status="present"] {
  color: #3ecf8e;
}
#course-log .student-row .status[data-status="late"] {
  color: #ea7b37;
}
#course-log .student-row .student-name {
  position: relative;
  right: inherit;
  background-color: inherit;
  z-index: 3;
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1.25em;
}
#course-log .student-row .student-name a {
  box-shadow: inset 0 -1px 0 transparent;
  color: currentColor;
}
#course-log.edit-mode thead {
  background: linear-gradient(to left, #d76e18, #b33c41);
  background-position: 100% 0%;
}
#course-log.edit-mode .student-row .status .status-str {
  cursor: pointer;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
#course-log.edit-mode .student-row .status.edited .status-str {
  border-bottom-color: currentColor;
}
#course-log-table-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: .5em;
}
#course-log-table-buttons .animating {
  white-space: nowrap;
  overflow: hidden;
  transition: 0s;
}
#attendance-change-wrapper {
  display: none;
}
.attendance-change {
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  background: white;
  border-radius: .25em;
}
.attendance-change .attendance-change-title {
  padding: 1.333333333em;
  padding-bottom: 0;
  font-size: .8em;
  font-weight: 500;
  text-align: center;
  color: #212121;
  line-height: 1;
}
.attendance-change .attendance-change-content {
  padding: 1em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.attendance-change .attendance-option {
  padding: .25em 1em;
  border-radius: .25em;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  color: white;
  margin: .25em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: .2s;
  color: #909090;
}
body.mobile .attendance-change .attendance-option {
  padding-right: .75em;
  padding-left: .75em;
}
.attendance-change .attendance-option:before {
  content: "";
  background: white;
  opacity: 0;
  transition: inherit;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.attendance-change .attendance-option:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: .125em;
  transition: inherit;
  background: currentColor;
}
.attendance-change .attendance-option span {
  position: relative;
  z-index: 1;
  transition: inherit;
  cursor: pointer;
}
.attendance-change .attendance-option:hover,
.attendance-change .attendance-option:focus {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0), 0 2px 3px rgba(0, 0, 0, 0.1), 0 5px 40px -8px currentColor;
}
.attendance-change .attendance-option:hover:before,
.attendance-change .attendance-option:focus:before {
  opacity: .2;
}
.attendance-change .attendance-option:active:after {
  height: .5em;
}
.attendance-change .attendance-option[data-option="absent"] {
  color: #d95753;
}
.attendance-change .attendance-option[data-option="present"] {
  color: #3ecf8e;
}
.attendance-change .attendance-option[data-option="late"] {
  color: #ea7b37;
}
.attendance-change .attendance-option.selected {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}
.attendance-change .attendance-option.selected:after {
  height: 100%;
}
.attendance-change .attendance-option.selected span {
  color: white;
}
.attendance-change.inline {
  box-shadow: none;
  background: transparent;
}
.attendance-change.inline .attendance-change-content {
  padding: .5em;
  font-size: .875em;
}
.short-divider {
  height: 2px;
  width: 2em;
  background: #cfd4ed;
  display: block;
}
@media print {
  .short-divider {
    display: none;
  }
}
.short-divider.centered {
  margin-left: auto;
  margin-right: auto;
}
.short-divider.invisible {
  opacity: 0;
  height: .05px;
}
.short-divider.transparent {
  opacity: 0;
}
.top-0 {
  margin-top: 0 !important ;
}
.top-0-5 {
  margin-top: 0.5em !important ;
}
.top-1 {
  margin-top: 1em !important ;
}
.top-2 {
  margin-top: 2em !important ;
}
.top-3 {
  margin-top: 3em !important ;
}
.top-4 {
  margin-top: 4em !important ;
}
.bottom-0 {
  margin-bottom: 0 !important ;
}
.bottom-0-5 {
  margin-bottom: 0.5em !important ;
}
.bottom-1 {
  margin-bottom: 1em !important ;
}
.bottom-2 {
  margin-bottom: 2em !important ;
}
.bottom-3 {
  margin-bottom: 3em !important ;
}
.bottom-4 {
  margin-bottom: 4em !important ;
}
.left-0 {
  margin-left: 0 !important ;
}
.left-0-5 {
  margin-left: 0.5em !important ;
}
.right-0 {
  margin-right: 0 !important ;
}
.right-0-5 {
  margin-right: 0.5em !important ;
}
.right-0-25 {
  margin-right: 0.25em !important ;
}
.display-flex {
  display: flex !important;
}
.flex-grow-1 {
  flex-grow: 1;
}
.direction-ltr {
  direction: ltr;
}
.ltr {
  direction: ltr;
}
.no-webkit-spin {
  -moz-appearance: textfield;
}
.no-webkit-spin::-webkit-inner-spin-button,
.no-webkit-spin::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.cursor-pointer {
  cursor: pointer;
}
.error-box {
  color: #a22824;
}
.error-box:before {
  content: "!";
  color: white;
  background: #a22824;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-left: 1em;
  font-family: monospace;
  font-weight: 900;
}
.error-box:not(.text-only) {
  background: rgba(217, 87, 83, 0.05);
  padding: 1em;
  border-radius: 1em;
  margin: 1em 0;
  box-shadow: inset 0 0 0 1px rgba(162, 40, 36, 0.15);
}
.flex-table {
  display: flex;
  flex-direction: column;
}
.flex-table .flex-table-row {
  display: flex;
  align-items: center;
}
.flex-table .flex-table-row:not(.sentence) {
  justify-content: space-between;
}
.flex-table .flex-table-row.line-break {
  align-items: flex-start;
  flex-direction: column;
}
.flex-table .flex-table-header {
  font-weight: 300;
  font-size: 1.5em;
  margin: 1em;
  border-radius: 1em;
  background: rgba(63, 81, 181, 0.05);
  justify-content: center !important;
  color: #3F51B5;
}
.flex-table.modal-style input {
  margin: .5em;
}
.flex-table.inline-flex {
  display: inline-flex;
}
.hide-if-empty:empty {
  display: none;
}
.hide-if-empty:empty + form {
  margin-top: 0;
}
.after-form-checkbox-space {
  margin-top: .25em;
  margin-bottom: .25em;
}
.after-form-checkbox-space .explain {
  margin-right: .25em;
}
.my-background-is-primary {
  display: none;
  background: #3F51B5;
}
#not-found {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 2em;
}
#not-found i,
#not-found svg {
  margin: .5em;
}
.storage-item-modal .show-on-edit,
.task-item-modal .show-on-edit,
#course-edit-modal .show-on-edit,
#edit-meeting-modal .show-on-edit,
#role-edit-modal .show-on-edit,
#admin-edit-modal .show-on-edit {
  display: block;
}
.storage-item-modal .show-on-add,
.task-item-modal .show-on-add,
#course-edit-modal .show-on-add,
#edit-meeting-modal .show-on-add,
#role-edit-modal .show-on-add,
#admin-edit-modal .show-on-add {
  display: none;
}
.storage-item-modal[data-storage-item-id="add"] .show-on-add,
.task-item-modal[data-storage-item-id="add"] .show-on-add,
#course-edit-modal[data-storage-item-id="add"] .show-on-add,
#edit-meeting-modal[data-storage-item-id="add"] .show-on-add,
#role-edit-modal[data-storage-item-id="add"] .show-on-add,
#admin-edit-modal[data-storage-item-id="add"] .show-on-add,
.storage-item-modal[data-task-id="add"] .show-on-add,
.task-item-modal[data-task-id="add"] .show-on-add,
#course-edit-modal[data-task-id="add"] .show-on-add,
#edit-meeting-modal[data-task-id="add"] .show-on-add,
#role-edit-modal[data-task-id="add"] .show-on-add,
#admin-edit-modal[data-task-id="add"] .show-on-add,
.storage-item-modal[data-course-id="add"] .show-on-add,
.task-item-modal[data-course-id="add"] .show-on-add,
#course-edit-modal[data-course-id="add"] .show-on-add,
#edit-meeting-modal[data-course-id="add"] .show-on-add,
#role-edit-modal[data-course-id="add"] .show-on-add,
#admin-edit-modal[data-course-id="add"] .show-on-add,
.storage-item-modal[data-meeting-a-i="add"] .show-on-add,
.task-item-modal[data-meeting-a-i="add"] .show-on-add,
#course-edit-modal[data-meeting-a-i="add"] .show-on-add,
#edit-meeting-modal[data-meeting-a-i="add"] .show-on-add,
#role-edit-modal[data-meeting-a-i="add"] .show-on-add,
#admin-edit-modal[data-meeting-a-i="add"] .show-on-add,
.storage-item-modal[data-role-id="add"] .show-on-add,
.task-item-modal[data-role-id="add"] .show-on-add,
#course-edit-modal[data-role-id="add"] .show-on-add,
#edit-meeting-modal[data-role-id="add"] .show-on-add,
#role-edit-modal[data-role-id="add"] .show-on-add,
#admin-edit-modal[data-role-id="add"] .show-on-add,
.storage-item-modal[data-admin-id="add"] .show-on-add,
.task-item-modal[data-admin-id="add"] .show-on-add,
#course-edit-modal[data-admin-id="add"] .show-on-add,
#edit-meeting-modal[data-admin-id="add"] .show-on-add,
#role-edit-modal[data-admin-id="add"] .show-on-add,
#admin-edit-modal[data-admin-id="add"] .show-on-add {
  display: block;
}
.storage-item-modal[data-storage-item-id="add"] .show-on-edit,
.task-item-modal[data-storage-item-id="add"] .show-on-edit,
#course-edit-modal[data-storage-item-id="add"] .show-on-edit,
#edit-meeting-modal[data-storage-item-id="add"] .show-on-edit,
#role-edit-modal[data-storage-item-id="add"] .show-on-edit,
#admin-edit-modal[data-storage-item-id="add"] .show-on-edit,
.storage-item-modal[data-task-id="add"] .show-on-edit,
.task-item-modal[data-task-id="add"] .show-on-edit,
#course-edit-modal[data-task-id="add"] .show-on-edit,
#edit-meeting-modal[data-task-id="add"] .show-on-edit,
#role-edit-modal[data-task-id="add"] .show-on-edit,
#admin-edit-modal[data-task-id="add"] .show-on-edit,
.storage-item-modal[data-course-id="add"] .show-on-edit,
.task-item-modal[data-course-id="add"] .show-on-edit,
#course-edit-modal[data-course-id="add"] .show-on-edit,
#edit-meeting-modal[data-course-id="add"] .show-on-edit,
#role-edit-modal[data-course-id="add"] .show-on-edit,
#admin-edit-modal[data-course-id="add"] .show-on-edit,
.storage-item-modal[data-meeting-a-i="add"] .show-on-edit,
.task-item-modal[data-meeting-a-i="add"] .show-on-edit,
#course-edit-modal[data-meeting-a-i="add"] .show-on-edit,
#edit-meeting-modal[data-meeting-a-i="add"] .show-on-edit,
#role-edit-modal[data-meeting-a-i="add"] .show-on-edit,
#admin-edit-modal[data-meeting-a-i="add"] .show-on-edit,
.storage-item-modal[data-role-id="add"] .show-on-edit,
.task-item-modal[data-role-id="add"] .show-on-edit,
#course-edit-modal[data-role-id="add"] .show-on-edit,
#edit-meeting-modal[data-role-id="add"] .show-on-edit,
#role-edit-modal[data-role-id="add"] .show-on-edit,
#admin-edit-modal[data-role-id="add"] .show-on-edit,
.storage-item-modal[data-admin-id="add"] .show-on-edit,
.task-item-modal[data-admin-id="add"] .show-on-edit,
#course-edit-modal[data-admin-id="add"] .show-on-edit,
#edit-meeting-modal[data-admin-id="add"] .show-on-edit,
#role-edit-modal[data-admin-id="add"] .show-on-edit,
#admin-edit-modal[data-admin-id="add"] .show-on-edit {
  display: none;
}
.storage-item-modal[data-storage-item-id="add"] .hide-on-add,
.task-item-modal[data-storage-item-id="add"] .hide-on-add,
#course-edit-modal[data-storage-item-id="add"] .hide-on-add,
#edit-meeting-modal[data-storage-item-id="add"] .hide-on-add,
#role-edit-modal[data-storage-item-id="add"] .hide-on-add,
#admin-edit-modal[data-storage-item-id="add"] .hide-on-add,
.storage-item-modal[data-task-id="add"] .hide-on-add,
.task-item-modal[data-task-id="add"] .hide-on-add,
#course-edit-modal[data-task-id="add"] .hide-on-add,
#edit-meeting-modal[data-task-id="add"] .hide-on-add,
#role-edit-modal[data-task-id="add"] .hide-on-add,
#admin-edit-modal[data-task-id="add"] .hide-on-add,
.storage-item-modal[data-course-id="add"] .hide-on-add,
.task-item-modal[data-course-id="add"] .hide-on-add,
#course-edit-modal[data-course-id="add"] .hide-on-add,
#edit-meeting-modal[data-course-id="add"] .hide-on-add,
#role-edit-modal[data-course-id="add"] .hide-on-add,
#admin-edit-modal[data-course-id="add"] .hide-on-add,
.storage-item-modal[data-meeting-a-i="add"] .hide-on-add,
.task-item-modal[data-meeting-a-i="add"] .hide-on-add,
#course-edit-modal[data-meeting-a-i="add"] .hide-on-add,
#edit-meeting-modal[data-meeting-a-i="add"] .hide-on-add,
#role-edit-modal[data-meeting-a-i="add"] .hide-on-add,
#admin-edit-modal[data-meeting-a-i="add"] .hide-on-add,
.storage-item-modal[data-role-id="add"] .hide-on-add,
.task-item-modal[data-role-id="add"] .hide-on-add,
#course-edit-modal[data-role-id="add"] .hide-on-add,
#edit-meeting-modal[data-role-id="add"] .hide-on-add,
#role-edit-modal[data-role-id="add"] .hide-on-add,
#admin-edit-modal[data-role-id="add"] .hide-on-add,
.storage-item-modal[data-admin-id="add"] .hide-on-add,
.task-item-modal[data-admin-id="add"] .hide-on-add,
#course-edit-modal[data-admin-id="add"] .hide-on-add,
#edit-meeting-modal[data-admin-id="add"] .hide-on-add,
#role-edit-modal[data-admin-id="add"] .hide-on-add,
#admin-edit-modal[data-admin-id="add"] .hide-on-add {
  display: none;
}
.items-list {
  margin: auto;
}
.items-list:not(.full-width) {
  max-width: 26em;
}
.items-list.full-width {
  width: 100%;
}
.items-list:not(.no-container) {
  padding: 1em;
  background: white;
  border-radius: 4px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.125);
}
.items-list:not(.no-container):not(.tags-list) {
  padding-top: 0;
  padding-bottom: 0;
}
.items-list .items-list-single {
  padding-bottom: .5em;
  padding-top: .5em;
  clear: both;
  transition: border-width 0.2s;
  /*&:not(.structure):not(.removing) ~ .items-list-add {
            padding-top: 1em;
        }*/
}
.items-list .items-list-single .items-list-single-buttons {
  display: flex;
  float: left;
  animation: slideFromLeft 0.5s cubic-bezier(0, 0, 0, 1), fadeIn 0.3s;
  animation-fill-mode: backwards;
  animation-delay: .25s;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button {
  color: rgba(33, 33, 33, 0.25);
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.3, 0, 0, 1);
  display: flex;
  user-select: none;
  align-items: center;
  margin-top: .5em;
  position: relative;
  z-index: 1;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button:hover {
  color: #3F51B5;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button:hover .items-list-single-button-label {
  opacity: 1;
  padding-left: 2.25em;
  padding-right: .75em;
  color: #3F51B5;
  text-indent: 0;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button .items-list-single-button-label {
  color: transparent;
  font-size: 0.8em;
  font-weight: 500;
  transition: 0.5s cubic-bezier(0.3, 0, 0, 1);
  border-radius: .33em;
  padding: 0.25em 0;
  background: #e2e5f4;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  left: 0%;
  z-index: 0;
  text-indent: -8.75em;
  text-align: right;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button .items-list-single-button-icon {
  padding: .25em;
  box-sizing: content-box;
  position: relative;
  z-index: 1;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button.items-list-delete-single:hover {
  color: #d95753;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button.items-list-delete-single:hover .items-list-single-button-label {
  color: #d95753;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button.items-list-delete-single .items-list-single-button-label {
  background: #f9e6e5;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button.items-list-edit-single:hover {
  color: #EF6C00;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button.items-list-edit-single:hover .items-list-single-button-label {
  color: #EF6C00;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button.items-list-edit-single .items-list-single-button-label {
  background: #fde9d9;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button.room-items:hover {
  color: #6ab04c;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button.room-items:hover .items-list-single-button-label {
  color: #6ab04c;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button.room-items .items-list-single-button-label {
  background: #e9f3e4;
}
.items-list .items-list-single .items-list-single-buttons .items-list-single-button .items-list-single-button-counter {
  font-size: .8em;
  font-weight: 500;
  margin-right: .33333em;
}
.items-list .items-list-single .items-list-value-container {
  display: flex;
  align-items: center;
  animation: slideFromRight 0.5s cubic-bezier(0, 0, 0, 1), fadeIn 0.3s;
  animation-fill-mode: backwards;
}
.items-list .items-list-single .items-list-value-container > .items-list-value {
  animation: none;
}
.items-list .items-list-single .items-list-value {
  padding: .5em;
  flex-grow: 1;
  text-align: initial;
  animation: slideFromRight 0.5s cubic-bezier(0, 0, 0, 1), fadeIn 0.3s;
  animation-fill-mode: backwards;
}
.items-list .items-list-single .items-list-badges:not(:empty) {
  padding: .5em;
  text-align: initial;
  padding-left: 0;
}
.items-list .items-list-single .items-list-badges:not(:empty) .god-badge {
  color: #e84393;
}
.items-list .items-list-single .items-list-desciption {
  font-size: .8em;
  color: rgba(33, 33, 33, 0.6);
  padding: .625em;
  margin-top: -0.625em;
  padding-top: 0;
  text-align: initial;
}
.items-list .items-list-single:not(.structure) ~ .items-list-single {
  border-top: 1px solid rgba(33, 33, 33, 0.1);
}
.items-list .items-list-single:not(.structure) ~ .items-list-add {
  border-top-color: rgba(33, 33, 33, 0.1);
}
.items-list .items-list-single.structure {
  display: none;
}
.items-list .items-list-add {
  display: flex;
  color: #448AFF;
  align-items: center;
  flex-wrap: wrap;
  transition: border-top-color 0.2s;
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px solid rgba(33, 33, 33, 0);
}
.items-list .items-list-add input {
  margin: 0;
  margin-right: .5em;
  flex-grow: 1;
  padding: .4em .75em;
}
.items-list .items-list-add input:focus {
  border-color: #448AFF;
}
.items-list .items-list-add input:valid + button {
  outline: 0;
  padding: 1ch 3ch;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background: #448AFF;
  border: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  font-size: 15px;
  color: #f9f9fb;
  margin: 1em;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
  pointer-events: all;
  transform: scale(1);
}
.items-list .items-list-add input:valid + button:hover {
  background: #5e9aff;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.items-list .items-list-add input:valid + button:focus {
  background: #2a7aff;
}
.items-list .items-list-add input:valid + button.disabled {
  background: #8f9db4;
  color: rgba(249, 249, 251, 0.6);
  pointer-events: none;
  box-shadow: none;
}
.items-list .items-list-add input:valid + button .icon-end {
  margin-right: 1em;
}
.items-list .items-list-add input:valid + button .icon-start {
  margin-left: 1em;
}
.items-list .items-list-add > .select2 {
  flex-grow: 1;
  min-width: 0;
  margin-right: .5em;
}
.items-list .items-list-add button {
  outline: 0;
  padding: 1ch 3ch;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background: #b0b0b0;
  border: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  font-size: 15px;
  color: #f9f9fb;
  margin: 1em;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
  margin: 1em 0 0 !important;
  pointer-events: none;
  transform-origin: center;
  width: 100%;
}
.items-list .items-list-add button:hover {
  background: #bdbdbd;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.items-list .items-list-add button:focus {
  background: #a3a3a3;
}
.items-list .items-list-add button.disabled {
  background: #b0b0b0;
  color: rgba(249, 249, 251, 0.6);
  pointer-events: none;
  box-shadow: none;
}
.items-list .items-list-add button .icon-end {
  margin-right: 1em;
}
.items-list .items-list-add button .icon-start {
  margin-left: 1em;
}
.tags-list {
  text-align: center;
}
.tags-list .tags-list-single {
  background: rgba(63, 81, 181, 0.1);
  color: #252f69;
  border-radius: 5em;
  padding: .1em .75em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: .25em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.tags-list .tags-list-single.structure {
  display: none;
}
.tags-list .tags-list-single .tag-action {
  margin-right: 1em;
  position: relative;
  font-size: .75em;
  display: flex;
  cursor: pointer;
  color: rgba(37, 47, 105, 0.5);
  transition: .2s;
}
.tags-list .tags-list-single .tag-action:before {
  content: "";
  position: absolute;
  right: -2em;
  bottom: -2em;
  top: -2em;
  left: -2em;
  height: 1.5em;
  width: 1.5em;
  margin: auto;
  transition: inherit;
  border-radius: 3em;
  z-index: 0;
  background: rgba(63, 81, 181, 0.1);
}
.tags-list .tags-list-single .tag-action:hover {
  color: white;
}
.tags-list .tags-list-single .tag-action:hover:before {
  background: #3F51B5;
}
.tags-list .tags-list-single .tag-action i,
.tags-list .tags-list-single .tag-action svg {
  position: relative;
}
.tags-list .tags-list-single.animating {
  white-space: nowrap;
  overflow: hidden;
}
.tags-list .tags-list-single:not(.structure) ~ .tags-list-add {
  margin-top: 1em;
  padding-top: 1em;
  border-color: rgba(0, 0, 0, 0.07);
}
.tags-list .tags-list-single.error {
  background: #d95753;
  color: white;
  box-shadow: 0 5px 20px rgba(217, 87, 83, 0.15);
  transition-duration: .5s, .5s, .5s;
}
.tags-list .tags-list-add {
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  transition: margin-top 0.2s, padding-top 0.2s, border-color 0.2s;
}
.tags-list .tags-list-add > i,
.tags-list .tags-list-add > svg {
  margin-left: .5em;
}
.tags-list .tags-list-add .select2-container .select2-selection {
  padding: .25em .5em;
  border-radius: 5em;
}
.floating-button {
  position: fixed;
  bottom: 1em;
  left: 1em;
  padding: .75em;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10em;
  cursor: pointer;
  transition: .15s;
  z-index: 15;
  animation: fadeIn 0.5s cubic-bezier(0, 0, 0, 1), slideFromBottom 0.5s cubic-bezier(0, 0, 0, 1);
  color: white;
  background-color: #448AFF;
  box-shadow: 0 5px 20px rgba(68, 138, 255, 0.5);
}
.floating-button:hover {
  transform: translateY(-2px);
}
.floating-button:hover {
  box-shadow: 0 10px 20px rgba(68, 138, 255, 0.5);
  background-color: #5e9aff;
}
.floating-button i,
.floating-button svg {
  width: 1em !important;
  height: 1em !important;
}
.grid-selection {
  display: flex;
  flex-wrap: wrap;
  margin: -0.125em;
}
.grid-selection .grid-selection-item-container {
  width: 25%;
  padding: .125em;
  flex-grow: 1;
}
@media screen and (max-width: 350px) {
  .grid-selection .grid-selection-item-container {
    width: 33.33%;
  }
}
.grid-selection .grid-selection-item-container .grid-selection-item {
  background: rgba(63, 81, 181, 0.07);
  padding: .25em;
  text-align: center;
  font-size: 0.8em;
  cursor: pointer;
  border-radius: .25em;
  transition: all 0.2s, font-weight 0.1s;
  user-select: none;
  color: #30396b;
}
.grid-selection .grid-selection-item-container .grid-selection-item:hover {
  background: rgba(63, 81, 181, 0.2);
}
.grid-selection .grid-selection-item-container .grid-selection-item:hover:active {
  background: rgba(63, 81, 181, 0.5);
}
.grid-selection .grid-selection-item-container .grid-selection-item:focus {
  background: rgba(63, 81, 181, 0.3);
  outline: 0;
}
.grid-selection .grid-selection-item-container .grid-selection-item.selected {
  background: #3F51B5 !important;
  color: white;
  font-weight: 500;
  box-shadow: 0 2px 3px rgba(63, 81, 181, 0.33);
}
.grid-selection .grid-selection-item-container.manual-type {
  width: 100%;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item input {
  text-align: center;
  cursor: pointer;
  background: transparent;
  padding: 0;
  border: 0;
  font-weight: initial;
  width: 100%;
  color: inherit;
  transition: none;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
  direction: rtl;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item input::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
  direction: rtl;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item input:-ms-input-placeholder {
  /* IE 10+ */
  color: white;
  direction: rtl;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item input:-moz-placeholder {
  /* Firefox 18- */
  color: white;
  direction: rtl;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item input[type="number"] {
  direction: ltr;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item input[type="number"]::-webkit-inner-spin-button,
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item:not(.selected) input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #30396b;
  direction: rtl;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item:not(.selected) input::-moz-placeholder {
  /* Firefox 19+ */
  color: #30396b;
  direction: rtl;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item:not(.selected) input:-ms-input-placeholder {
  /* IE 10+ */
  color: #30396b;
  direction: rtl;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item:not(.selected) input:-moz-placeholder {
  /* Firefox 18- */
  color: #30396b;
  direction: rtl;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item.selected input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white;
  direction: rtl;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item.selected input::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
  direction: rtl;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item.selected input:-ms-input-placeholder {
  /* IE 10+ */
  color: white;
  direction: rtl;
}
.grid-selection .grid-selection-item-container.manual-type .grid-selection-item.selected input:-moz-placeholder {
  /* Firefox 18- */
  color: white;
  direction: rtl;
}
.input-with-button-container {
  position: relative;
  display: flex;
  align-items: stretch;
}
.input-with-button-container .input-with-button {
  width: 100%;
  margin: 0;
}
.input-with-button-container .input-with-button-icon {
  position: absolute;
  left: .25em;
  top: 0;
  bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .5em;
  opacity: .5;
  transition: .2s;
  width: 2em;
  height: 2em;
  margin: auto;
  border-radius: 100%;
}
.input-with-button-container .input-with-button-icon:hover {
  opacity: 1;
  color: #3F51B5;
  background: rgba(63, 81, 181, 0.05);
}
.input-with-button-container:not(.no-icon) .input-with-button {
  padding-left: 3em;
}
.input-with-button-container.inline-flex {
  display: inline-flex;
}
.ajax-table tr.hidden {
  display: none;
}
.ajax-table tr.no-results td {
  color: rgba(33, 33, 33, 0.6);
  letter-spacing: 1px;
  font-size: .85em;
  font-weight: 500;
}
.ajax-table-loader-container {
  background: rgba(63, 81, 181, 0.05);
  padding: 1em;
  display: inline-block;
  border-radius: 1em;
  margin-top: 1em;
  overflow: hidden;
  animation: scaleIn 0.5s cubic-bezier(0, 0, 0, 1), fadeIn 1s cubic-bezier(0.25, 0, 0, 1);
}
.ajax-table-loader-container button {
  margin: 0;
  margin-left: 1em;
}
.ajax-table-loader-container input {
  border: 0;
  background: transparent;
  border-radius: 0;
  font-family: monospace;
  padding: .25em .5em;
  width: 7ch;
  transition: 0.3s cubic-bezier(0, 0, 0, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0;
}
.ajax-table-loader-container .ajax-table-loader-information {
  font-size: .75em;
  opacity: .75;
  margin: -1.333333em;
  margin-bottom: 1.33333em;
  padding: .5em;
  border-bottom: 1px solid rgba(63, 81, 181, 0.07);
  background: rgba(63, 81, 181, 0.05);
}
.ajax-table-loader-container .ajax-table-loader-information .current {
  font-size: 1.3333333333em;
  margin: 0 .5em;
}
.ajax-table-loader-container .ajax-table-loader-information .total {
  margin: 0 .66666667em;
}
.items-list-with-number {
  width: 100%;
}
.items-list-with-number .items-list-number {
  margin-top: .5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6ab04c;
  margin-left: .25em;
}
.items-list-with-number .items-list-number-input {
  padding: 0.25em .5em;
  margin: 0;
  border: 0;
  background: rgba(106, 176, 76, 0.1);
  margin-left: .25em !important;
}
.items-list-with-number .items-list-number-input::-webkit-input-placeholder {
  color: rgba(63, 105, 45, 0.6);
  font-size: 0.8em;
}
.items-list-with-number .items-list-number-input::-webkit-inner-spin-button,
.items-list-with-number .items-list-number-input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.single-accordion {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 300px;
  margin: 1em auto;
  transition: 0.5s cubic-bezier(0.25, 0, 0, 1);
}
.single-accordion:not(.no-container) {
  background: white;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: .25em;
}
.single-accordion.full-width {
  max-width: none;
}
.single-accordion .accordion-title {
  flex-grow: 1;
  cursor: pointer;
  padding: .5em 1em;
  transition: inherit;
}
.single-accordion .accordion-arrow {
  flex-shrink: 0;
  cursor: pointer;
  padding: .5em 1em;
  transition: inherit;
}
.single-accordion .accordion-open {
  display: none;
  width: 100%;
}
.single-accordion.shown {
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
}
.single-accordion.shown .accordion-title {
  opacity: .5;
}
.single-accordion.shown .accordion-arrow {
  transform: rotate(180deg);
}
.section-organizer .section-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin: 1em 0;
  background: rgba(63, 81, 181, 0.05);
  border-radius: 1em;
}
body.mobile .section-organizer .section-tabs {
  border-radius: .5em;
}
.section-organizer .section-tabs .section-tab {
  position: relative;
  border-radius: .5em;
  padding: 1em 1.5em;
  color: #3F51B5;
  background: white;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.09), 0 2px 3px rgba(0, 0, 0, 0.1);
  transition: .2s;
  cursor: pointer;
  user-select: none;
  margin: .5em;
  flex: 1 0;
  max-width: 20%;
}
.section-organizer .section-tabs .section-tab.full-width {
  max-width: none;
}
body.mobile .section-organizer .section-tabs .section-tab {
  margin: .25em;
  padding: .5em 1em;
  max-width: none;
}
.section-organizer .section-tabs .section-tab:before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  display: block;
  position: absolute;
  background: linear-gradient(to right, #3F51B5, #3f82b5);
  z-index: -1;
  transition: inherit;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}
.section-organizer .section-tabs .section-tab:hover {
  background: #eceef8;
}
.section-organizer .section-tabs .section-tab.active {
  background: transparent;
  color: #f9f9fb;
  pointer-events: none;
}
.section-organizer .section-tabs .section-tab.active:before {
  opacity: 1;
}
.section-organizer .section-tabs .section-tab.active:hover {
  background: rgba(0, 0, 0, 0.1);
}
.section-organizer .section-tabs .section-tab .section-tab-icon {
  margin-left: .5em;
}
.section-organizer section {
  display: none;
}
a:not([class]),
a.link-style {
  text-decoration: none;
  display: inline-block;
  /*background: fade(@primary, 5%);
    padding: 0 1ch;
    border-radius: .25em;
    box-shadow: inset 0 0 0 1px fade(@primary, 5%);*/
  padding: 0 .125em;
  transition: .2s;
  color: #3F51B5;
  box-shadow: inset 0 -1px 0 rgba(63, 81, 181, 0.1);
}
a:not([class]):hover,
a.link-style:hover {
  /*background: @primary;
        color: white;
        text-shadow: 1px 1px rgba(0,0,0,0.3333);*/
  box-shadow: inset 0 -1px 0;
}
#server-messages {
  position: fixed;
  bottom: .25em;
  left: .25em;
  padding: .25em .75em;
  border-radius: .5em;
  font-size: .8em;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.5);
  background: #eaebf1;
  pointer-events: none;
  opacity: 1;
  transition: .3s;
}
#server-messages.idle {
  opacity: 0;
}
.toggle-switch {
  display: inline-flex;
  background: white;
  box-shadow: 0 5px 20px rgba(63, 81, 181, 0.03), 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 200em;
  position: relative;
  padding: .4em;
  /*.switch-selected {
        background: @primary;
        border-radius: 20em;
        position: absolute;
        left: 0;
        top: 0;
        transition: .5s cubic-bezier(.3, 0, 0, 1);
    }*/
}
.toggle-switch .toggle-option {
  display: flex;
  border-radius: .5em;
  padding: .6em;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.3, 0, 0, 1);
}
.toggle-switch .toggle-option:before {
  content: "";
  background: linear-gradient(to bottom right, #8f3fb5, #3F51B5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 20em;
  transition: inherit;
  transform: scale(0) translateZ(0);
  opacity: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}
.toggle-switch .toggle-option.color-red:before {
  background: linear-gradient(to bottom right, #d9c753, #d95753);
}
.toggle-switch .toggle-option.color-green:before {
  background: linear-gradient(to bottom right, #3e97cf, #3ecf8e);
}
.toggle-switch .toggle-option.selected {
  color: white;
}
.toggle-switch .toggle-option.selected:before {
  transform: scale(1) translateZ(0);
  opacity: 1;
}
.toggle-switch .toggle-option + .toggle-option {
  margin-right: .4em;
}
.toggle-switch .toggle-option > i.onewidth,
.toggle-switch .toggle-option > svg.onewidth {
  width: 1em;
}
.toggle-switch-container:not(.no-margins) {
  margin: 1em 0;
}
.toggle-switch-container:not(.no-margins) .toggle-switch {
  margin-right: .5em;
}
.resize-on-type {
  font-family: monospace, Heebo, Arial;
  direction: ltr;
  text-align: center;
  transition: 0.4s cubic-bezier(0, 0, 0, 1) !important;
  width: 4em;
  box-sizing: content-box !important;
}
.clear-selection-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clear-selection {
  font-size: 0.8em;
  background: rgba(217, 87, 83, 0.1);
  box-shadow: inset 0 0 0 1px rgba(217, 87, 83, 0.1);
  color: #781d1b;
  margin-top: .75em;
  border-radius: 2em;
  cursor: pointer;
  padding: .125em .5em;
}
.permission-category {
  display: flex;
  flex-direction: column;
}
.permission-category .permission-category-name {
  font-weight: 500;
  padding: 0.25em .75em;
  color: #3F51B5;
  background: rgba(63, 81, 181, 0.1);
  border-radius: .25em;
  margin: .5em 0;
  align-self: flex-start;
}
.permission-category + .permission-category {
  margin-top: 1em;
}
.permission-category .permission-card {
  width: 100%;
}
.permission-card {
  display: flex;
  align-items: flex-start;
  padding: .5em 0 !important;
}
.permission-card .permission-info {
  display: flex;
  flex-direction: column;
  margin-right: .5em;
}
.permission-card .permission-info .permission-description {
  font-size: .8em;
  color: rgba(33, 33, 33, 0.6);
}
.permission-card + .permission-card {
  border-top: 1px solid rgba(63, 81, 181, 0.08);
}
.permission-card .permission-single {
  margin-top: .125em !important;
}
.permission-card.has-from-role .permission-name:after,
#admin-permissions-modal .has-from-role-identifier:before {
  content: "";
  vertical-align: middle;
  width: .5em;
  height: .5em;
  margin-right: .5em;
  border-radius: 1em;
  background: rgba(63, 81, 181, 0.15);
  display: inline-block;
  animation: scaleIn 0.5s cubic-bezier(0, 0, 0, 1), fadeIn 0.3s;
}
.loading {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.added-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  background-color: rgba(249, 249, 251, 0.8);
  display: none;
}
.added-overlay i,
.added-overlay svg {
  display: inline-block;
  color: #212121;
  font-size: 24px;
  vertical-align: middle;
}
.added-overlay i:before,
.added-overlay svg:before {
  animation: threesixty 1s cubic-bezier(0, 0, 0, 1);
}
.added-overlay:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.added-overlay.white-spinner i,
.added-overlay.white-spinner svg {
  color: white;
}
.profile-picture {
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #e0e2eb;
  position: relative;
  background-size: cover;
  background-position: center center;
}
.profile-picture .status-icon {
  position: absolute;
  bottom: .0625em;
  right: .0625em;
  height: 0.5em;
  width: 0.5em;
  border-radius: 0.5em;
  background: #cbcedc;
  animation: slideFromBottom .7s;
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-fill-mode: both;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 1s;
}
.profile-picture .status-icon.online-icon {
  background: #3ecf8e;
}
.profile-picture .status-icon.red-icon {
  background: #d95753;
}
.profile-picture .status-icon i,
.profile-picture .status-icon svg {
  font-size: .25em;
}
.profile-picture .status-icon.box-shadow {
  box-shadow: 0 0 0 0.125em #f9f9fb;
}
.ajax-item-select-template {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ajax-item-select-template .ajax-item-select-name {
  flex-grow: 1;
  display: flex;
}
.ajax-item-select-template .ajax-item-select-name i,
.ajax-item-select-template .ajax-item-select-name svg {
  color: #3F51B5;
  margin-top: .25em;
}
.select2-results__option[aria-selected=true] .ajax-item-select-template .ajax-item-select-name i,
.select2-results__option[aria-selected=true] .ajax-item-select-template .ajax-item-select-name svg {
  color: white;
}
.ajax-item-select-template .ajax-item-select-info {
  display: flex;
  font-size: 0.8em;
  direction: ltr;
  color: rgba(33, 33, 33, 0.5);
}
.select2-results__option[aria-selected=true] .ajax-item-select-template .ajax-item-select-info {
  color: rgba(255, 255, 255, 0.5);
}
.ajax-item-select-template .ajax-item-select-info i,
.ajax-item-select-template .ajax-item-select-info svg {
  margin-right: .25em;
  margin-left: 0;
  opacity: .75;
}
.ajax-item-select-template .ajax-item-select-info .ajax-item-select-identity,
.ajax-item-select-template .ajax-item-select-info .ajax-item-select-card {
  direction: ltr;
  display: flex;
  align-items: center;
}
.ajax-item-select-template .ajax-item-select-info .ajax-item-select-identity .god-badge,
.ajax-item-select-template .ajax-item-select-info .ajax-item-select-card .god-badge {
  color: #e84393;
}
.ajax-item-select-template .ajax-item-select-info .ajax-item-select-card {
  margin-left: 1em;
}
.ajax-item-select-template i,
.ajax-item-select-template svg {
  margin-left: .5em;
}
.ajax-item-select-template.storage-item-select-template[data-take-id]:not([data-take-id="0"]) {
  color: #d95753;
}
.ajax-item-select-template.storage-item-select-template[data-take-id]:not([data-take-id="0"]) .ajax-item-select-name i,
.ajax-item-select-template.storage-item-select-template[data-take-id]:not([data-take-id="0"]) .ajax-item-select-name svg {
  color: inherit;
}
.select2-results__option[aria-selected=true] .ajax-item-select-template.storage-item-select-template[data-take-id]:not([data-take-id="0"]) {
  color: white;
  position: relative;
}
.select2-results__option[aria-selected=true] .ajax-item-select-template.storage-item-select-template[data-take-id]:not([data-take-id="0"]):before {
  content: "";
  background: #d95753;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: -0.5em -0.75em;
  z-index: -1;
}
.iziModal {
  height: auto !important;
  max-height: 100%;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}
.iziModal:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.iziModal .iziModal-wrap {
  height: auto !important;
  background: #f9f9fb;
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.2), 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  pointer-events: all;
  /*position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;*/
  display: inline-block;
  vertical-align: middle;
  max-height: 100%;
  border-radius: 0.25em;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.hasScroll.iziModal .iziModal-wrap {
  border-radius: 0;
}
.iziModal .modal-title {
  padding: .6em 1em;
  border-radius: 0.25em 0.25em 0 0;
  color: #3F51B5;
  font-size: 1.5em;
  font-weight: 300;
  text-align: center;
  background: #f9f9fb;
  box-shadow: 0 0.25em 3em -1.175em;
  position: relative;
  z-index: 1;
  /*&:after {
            content: "";
            display: block;
            width: 2rem;
            height: 2px;
            background: currentColor;
            margin: auto;
            margin-top: .75em;
            opacity: .25;
        }*/
}
.iziModal .modal-title.normal-size {
  font-size: 1em;
  font-weight: inherit;
}
.hasScroll.iziModal .modal-title {
  border-radius: 0;
}
.iziModal .modal-title .explain {
  margin-right: .5em;
}
.iziModal .modal-content {
  padding: 1em 2em;
}
.iziModal .modal-content h1 {
  font-weight: 300;
  /*&:empty {
                display: none;
            }*/
}
.iziModal .modal-content h1 + form {
  margin-top: 1.5em;
}
.iziModal .modal-content.center {
  text-align: center;
}
.iziModal .modal-content .bold {
  font-weight: bold;
}
body.mobile .iziModal .modal-content {
  padding-right: 1em;
  padding-left: 1em;
}
.iziModal .modal-content form {
  background: transparent;
  box-shadow: none;
}
.iziModal .modal-buttons {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 0.25em 0.25em;
  background: linear-gradient(to right, transparent, rgba(63, 81, 181, 0.05), transparent);
}
.hasScroll.iziModal .modal-buttons {
  border-radius: 0;
}
.iziModal .modal-buttons button {
  outline: 0;
  padding: 1ch 3ch;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background: #448AFF;
  border: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  font-size: 15px;
  color: #f9f9fb;
  margin: 1em;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
  margin-right: .5em;
  margin-left: .5em;
}
.iziModal .modal-buttons button:hover {
  background: #5e9aff;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.iziModal .modal-buttons button:focus {
  background: #2a7aff;
}
.iziModal .modal-buttons button.disabled {
  background: #8f9db4;
  color: rgba(249, 249, 251, 0.6);
  pointer-events: none;
  box-shadow: none;
}
.iziModal .modal-buttons button .icon-end {
  margin-right: 1em;
}
.iziModal .modal-buttons button .icon-start {
  margin-left: 1em;
}
.iziModal .modal-buttons button.close-modal {
  background: white;
  color: #3F51B5;
}
.iziModal .modal-buttons button.close-modal:hover {
  color: #8591d5;
}
.iziModal .modal-buttons button.delete {
  background: white;
  color: #d95753;
}
.iziModal .modal-buttons button.delete:hover {
  color: #eba9a7;
}
.iziModal.transitionIn.transitionIn .iziModal-wrap,
.iziModal.transitionIn.transitionOut .iziModal-wrap {
  animation-duration: 0.3s;
}
.iziModal-overlay,
.iziModal {
  animation-duration: 0.3s !important;
}
html.iziModal-isAttached body,
html.iziModal-isOverflow body {
  overflow: hidden;
}
.regular-select {
  padding: 0.5em 1em;
  border: 0;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin: 1em;
  outline: 0;
  transition: 0.2s;
  box-sizing: border-box;
  font-size: inherit;
  font: inherit;
  padding: .25em .5em;
  margin: .5em;
}
.regular-select:focus {
  border-color: #3F51B5;
}
.regular-select.error {
  border-color: #d95753;
  background: rgba(217, 87, 83, 0.05);
}
.regular-select.success {
  border-color: #3ecf8e;
  background: rgba(62, 207, 142, 0.05);
}
.regular-select[disabled] {
  /*border-top: 0;
        border-left: 0;
        border-right: 0;
        border-radius: 0;*/
  border-color: rgba(0, 0, 0, 0.05);
  color: #212121;
}
.regular-select.no-margins {
  margin: 0;
}
.select2-container {
  min-width: 14em;
}
.select2-container .select2-selection {
  padding: 0.5em 1em;
  border: 0;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin: 1em;
  outline: 0;
  transition: 0.2s;
  box-sizing: border-box;
  font-size: inherit;
  margin: 0;
}
.select2-container .select2-selection:focus {
  border-color: #3F51B5;
}
.select2-container .select2-selection.error {
  border-color: #d95753;
  background: rgba(217, 87, 83, 0.05);
}
.select2-container .select2-selection.success {
  border-color: #3ecf8e;
  background: rgba(62, 207, 142, 0.05);
}
.select2-container .select2-selection[disabled] {
  /*border-top: 0;
        border-left: 0;
        border-right: 0;
        border-radius: 0;*/
  border-color: rgba(0, 0, 0, 0.05);
  color: #212121;
}
.select2-container--disabled.select2-container .select2-selection {
  background-color: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.05);
}
.select2-container .select2-selection--single {
  height: auto;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  height: auto;
  bottom: 0;
  top: 0;
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  transition: .5s;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 0 !important;
  padding-left: 14px !important;
  line-height: 1.5em;
}
.select2-container--default {
  /*().select2-results__option:not([id]) {
        position: relative;
        background-color: @accent;
        color: white;
        &:after {
            content: "+";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            padding-left: 1.25em;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 500;
        }
        &:before {
            content: "הוסף חדש";
            bottom: 0;
            left: 0;
            position: absolute;
            font-size: 0.6em;
            padding-left: .5em;
            opacity: 0.5;
        }
    }*/
}
.select2-container--default .select2-results__options::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}
.select2-container--default .select2-results__options::-webkit-scrollbar-thumb {
  background: #9fa8da;
  box-shadow: inset 0 0 0 3px white;
}
.select2-container--default .select2-results__option {
  transition: .15s;
  padding: .5em .75em;
  /*opacity: 0;
        animation: fadeIn .3s, slideFromTop .3s;
        animation-fill-mode: forwards;
        &:nth-child(1) {animation-delay: 0ms;}
        &:nth-child(2) {animation-delay: 40ms;}
        &:nth-child(3) {animation-delay: 80ms;}
        &:nth-child(4) {animation-delay: 120ms;}
        &:nth-child(5) {animation-delay: 160ms;}
        &:nth-child(6) {animation-delay: 200ms;}
        &:nth-child(7) {animation-delay: 240ms;}
        &:nth-child(8) {animation-delay: 280ms;}
        &:nth-child(9) {animation-delay: 320ms;}
        &:nth-child(10) {animation-delay: 360ms;}*/
}
.select2-container--default .select2-results__option.loading-results {
  position: absolute;
  background: white;
  left: .25em;
  right: .25em;
  margin-top: .25em;
  padding-top: .25em;
  padding-bottom: .25em;
  text-align: center;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  animation: slideFromTop 0.25s 1 cubic-bezier(0, 0, 0, 1), fadeIn 0.25s 1 cubic-bezier(0, 0, 0, 1);
  z-index: 1;
  border-radius: .25em;
}
.select2-container--default .select2-results__option.loading-results:before {
  content: "";
  width: .75em;
  height: .75em;
  display: inline-block;
  border-style: solid;
  border-radius: 1em;
  border-width: 2px;
  border-left-color: transparent;
  vertical-align: middle;
  margin-left: .5em;
  animation: rotate360 1s linear infinite;
}
.select2-container--default .select2-results__option.loading-results ~ .select2-results__option {
  opacity: .5;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #eceef8;
  color: inherit;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #3F51B5;
  color: white;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  padding: 0.5em 1em;
  border: 0;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin: 1em;
  outline: 0;
  transition: 0.2s;
  box-sizing: border-box;
  font-size: inherit;
  margin: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #3F51B5;
}
.select2-container--default .select2-search--dropdown .select2-search__field.error {
  border-color: #d95753;
  background: rgba(217, 87, 83, 0.05);
}
.select2-container--default .select2-search--dropdown .select2-search__field.success {
  border-color: #3ecf8e;
  background: rgba(62, 207, 142, 0.05);
}
.select2-container--default .select2-search--dropdown .select2-search__field[disabled] {
  /*border-top: 0;
        border-left: 0;
        border-right: 0;
        border-radius: 0;*/
  border-color: rgba(0, 0, 0, 0.05);
  color: #212121;
}
.select2-container--default .select2-results__group {
  background: white;
  border-radius: 5em;
  text-align: center;
  padding: .25em;
  margin: .5em .75em;
  color: #252f69;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  font-size: 1.125em;
  font-weight: 400;
}
.select2-dropdown {
  border-radius: 0;
  border: 0;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  animation: fadeIn 0.3s cubic-bezier(0, 0, 0, 1), slideFromTop 0.3s cubic-bezier(0, 0, 0, 1);
}
.select2-dropdown .select2-search--dropdown {
  padding: .5em;
  position: relative;
  box-shadow: 0 1em 1.5em -1em rgba(0, 0, 0, 0.15);
}
.select2-dropdown.select2-dropdown--above {
  animation-name: fadeIn, slideFromTop;
}
.select2-dropdown .select2-results .select2-results__message {
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
}
.iziToast {
  font-family: inherit;
}
.xdsoft_datetimepicker {
  border: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s cubic-bezier(0, 0, 0, 1), slideFromBottom 0.5s cubic-bezier(0, 0, 0, 1);
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  border: 0;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
  transition: background .1s, color .1s;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #3F51B5;
  box-shadow: none;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  background: #448AFF !important;
}
/*.datepicker {
    .datepicker--nav-title i {
        margin-left: 0;
        margin-right: 5px;
    }

    .datepicker--nav-action {
        transform: rotate(180deg);
    }

    .datepicker--time {
        flex-direction: row-reverse;

        .datepicker--time-current {
            flex-direction: row-reverse;
        }

        .datepicker--time-sliders {
            direction: ltr;
        }
    }
}*/
.ui-datepicker {
  padding: 0;
  border: 0 !important;
  box-shadow: 0 5px 30px rgba(63, 81, 181, 0.15), 0 2px 3px rgba(63, 81, 181, 0.2);
  z-index: 1000 !important;
}
.ui-datepicker .ui-datepicker-header {
  border: 0 !important;
  background: #3F51B5;
  color: white;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ui-datepicker .ui-datepicker-header select {
  padding: .125em .25em;
  margin: .25em 0;
  outline: 0;
  background: transparent;
  color: white;
  font-weight: 400;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.ui-datepicker .ui-datepicker-header select + select {
  margin-right: 0.25em;
}
.ui-datepicker .ui-datepicker-header select option {
  color: #212121;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next,
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  font-family: Material Icons;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  top: .5em;
  cursor: pointer;
  transition: .15s;
  border-radius: 2em;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon,
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon {
  display: none;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-state-hover,
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev.ui-state-hover {
  border: 0;
  background: #8591d5;
  font-weight: inherit !important;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  left: .5em;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before {
  content: "arrow_back";
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  right: .5em;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
  content: "arrow_forward";
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-close {
  outline: 0;
  padding: 1ch 3ch;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  background: #448AFF;
  border: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  font-size: 15px;
  color: #f9f9fb;
  margin: 1em;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
  margin: .5em .25em;
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-close:hover {
  background: #5e9aff;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-close:focus {
  background: #2a7aff;
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-close.disabled {
  background: #8f9db4;
  color: rgba(249, 249, 251, 0.6);
  pointer-events: none;
  box-shadow: none;
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-close .icon-end {
  margin-right: 1em;
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-close .icon-start {
  margin-left: 1em;
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-current {
  padding: .5em 1.5em;
  font-size: 0.8em;
  margin: .5em;
  border-radius: 5em;
  font-weight: 500;
  background: transparent;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(48, 57, 107, 0.2);
  text-decoration: none;
  color: #212121;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: .2s;
  vertical-align: middle;
  outline: 0;
  margin: .875em;
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-current:hover {
  color: #3F51B5;
  background: rgba(63, 81, 181, 0.05);
  box-shadow: inset 0 0 0 1px rgba(48, 57, 107, 0.23);
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-current .icon-end {
  margin-right: 1em;
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-current .icon-start {
  margin-left: 1em;
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-current.disabled {
  opacity: .45;
  pointer-events: none;
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-current:hover {
  color: #3F51B5;
  background: rgba(63, 81, 181, 0.05);
  box-shadow: inset 0 0 0 1px rgba(48, 57, 107, 0.23);
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-current .icon-end {
  margin-right: 1em;
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-current .icon-start {
  margin-left: 1em;
}
.ui-datepicker .ui-datepicker-buttonpane .ui-datepicker-current.disabled {
  opacity: .45;
  pointer-events: none;
}
.ui-datepicker table tr {
  background: transparent !important;
}
.ui-datepicker table tr td a {
  border: 0 !important;
  background: transparent !important;
  text-align: center;
  border-radius: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .556em .5em;
  transition: background .1s;
}
.ui-datepicker table tr td a.ui-state-hover {
  background: rgba(63, 81, 181, 0.15) !important;
}
.ui-datepicker table tr td a.ui-state-active {
  background: #3F51B5 !important;
}
.ui-datepicker table tr td.ui-datepicker-today a {
  box-shadow: inset 0 0 0 2px #448AFF;
  background: transparent !important;
}
.ui-datepicker table tr td.ui-datepicker-other-month {
  background: rgba(0, 0, 0, 0.02);
}
.ui-datepicker .ui-datepicker-calendar {
  margin: 0;
  padding: .25em;
  box-shadow: none;
}
.ui-datepicker .ui-datepicker-calendar tbody {
  animation: fadeIn 0.5s cubic-bezier(0, 0, 0, 1), slideFromBottom 0.5s cubic-bezier(0, 0, 0, 1);
}
.ui-datepicker .ui-timepicker-div dl {
  padding: 0 1em;
}
.ui-datepicker .ui-timepicker-div dl dt {
  margin-top: -0.5em;
  padding: 0 5px 0 0;
}
.ui-datepicker .ui-timepicker-div dl dt.ui_tpicker_time_label {
  display: none;
}
.ui-datepicker .ui-timepicker-div dl dd.ui_tpicker_time {
  margin: 0 auto;
  margin-bottom: 1em;
  text-align: center;
}
.ui-datepicker .ui-timepicker-div dl dd.ui_tpicker_time .ui_tpicker_time_input {
  font-weight: bold;
  border: 0;
  text-align: center;
  padding: .25em .5em;
  color: #3F51B5;
  background: rgba(63, 81, 181, 0.08);
  border-radius: 5em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button,
.ui-widget {
  font-family: inherit;
}
.ui-slider {
  border: 0 !important;
  border-radius: 1em;
  background: rgba(63, 81, 181, 0.18);
}
.ui-slider .ui-slider-handle {
  border: 0 !important;
  background: #3F51B5;
  border-radius: 100%;
  box-shadow: 0 2px 3px rgba(63, 81, 181, 0.3);
  transition: 0.3s cubic-bezier(0, 0, 0, 1);
  outline: 0;
}
.ui-slider .ui-slider-handle:focus {
  background: #7280ce;
}
.ui-slider .ui-slider-handle:before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #bec5e8;
  box-shadow: 0 5px 10px #3F51B5;
  border-radius: 1em;
  height: .5em;
  width: .5em;
  margin: auto;
  position: absolute;
  transform: scale(0);
  transition: .2s;
}
.ui-slider .ui-slider-handle:active:before {
  transform: scale(1);
}
.ui-slider:active .ui-slider-handle:before {
  transform: scale(1);
}
.ui-widget-header {
  border: 0;
  background: #3F51B5;
  color: white;
  font-weight: inherit;
  padding: .3em 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.tippy-tooltip.miller-theme {
  background-image: linear-gradient(to right, #3F51B5, #3fa0b5);
}
.tippy-tooltip.miller-theme:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(to right, #3F51B5, #3fa0b5);
  transform: translateY(6px);
  -webkit-filter: blur(6px);
  opacity: .55;
}
.tippy-tooltip.miller-theme .tippy-content {
  text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
  line-height: 1.25em;
}
.tippy-tooltip.miller-theme .tippy-arrow {
  border-top-color: #3f78b5;
  border-bottom-color: #3f78b5;
}
.tippy-tooltip.attendance-select-theme {
  background: white;
  padding: 0;
}
.tippy-tooltip.attendance-select-theme .tippy-arrow {
  border-top-color: white;
  border-bottom-color: white;
}
/*.tippy-tooltip.millerSmall-theme {
    &:extend(.tippy-tooltip.miller-theme all);
    font-size: .75em;
}*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideFromBottom {
  0% {
    transform: translateY(1em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideFromBottom2x {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideFromTop {
  0% {
    transform: translateY(-1em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideFromTop2x {
  0% {
    transform: translateY(-2em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideFromTop100percent {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideFromRight {
  0% {
    transform: translateX(1em);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideFromLeft {
  0% {
    transform: translateX(-1em);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideToTop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-1em);
  }
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Generated with Bounce.js. Edit at https://goo.gl/GX9FDu */
@keyframes jelly {
  0% {
    transform: matrix3d(0.001, 0, 0, 0, 0, 0.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  3.4% {
    transform: matrix3d(0.316, 0, 0, 0, 0, 0.408, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    transform: matrix3d(0.45, 0, 0, 0, 0, 0.6, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  6.81% {
    transform: matrix3d(0.66, 0, 0, 0, 0, 0.893, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    transform: matrix3d(0.884, 0, 0, 0, 0, 1.168, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  10.21% {
    transform: matrix3d(0.942, 0, 0, 0, 0, 1.226, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  13.61% {
    transform: matrix3d(1.123, 0, 0, 0, 0, 1.332, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    transform: matrix3d(1.141, 0, 0, 0, 0, 1.33, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  17.52% {
    transform: matrix3d(1.208, 0, 0, 0, 0, 1.239, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    transform: matrix3d(1.212, 0, 0, 0, 0, 1.187, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  21.32% {
    transform: matrix3d(1.196, 0, 0, 0, 0, 1.069, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    transform: matrix3d(1.15, 0, 0, 0, 0, 0.96, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  25.23% {
    transform: matrix3d(1.134, 0, 0, 0, 0, 0.938, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.03% {
    transform: matrix3d(1.063, 0, 0, 0, 0, 0.897, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    transform: matrix3d(1.048, 0, 0, 0, 0, 0.899, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    transform: matrix3d(0.979, 0, 0, 0, 0, 0.962, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  36.74% {
    transform: matrix3d(0.972, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    transform: matrix3d(0.961, 0, 0, 0, 0, 1.022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  44.44% {
    transform: matrix3d(0.966, 0, 0, 0, 0, 1.032, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    transform: matrix3d(0.991, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  59.86% {
    transform: matrix3d(1.006, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    transform: matrix3d(1.007, 0, 0, 0, 0, 0.992, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  75.28% {
    transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  90.69% {
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
.fade-in-half-sec {
  animation: fadeIn .5s 1;
}
@keyframes moveBG {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -28px;
  }
}
@keyframes float2px {
  0% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
