body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
  margin: 0;
  height: 100%;
}

html {
  width: 100%;
  height: 100%;
}

*, ::after, ::before {
  box-sizing: border-box;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: inline-block;
}

.info {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

/* Variables */
/* Mixins */
textarea,
input.text,
input[type=text],
input[type=button],
input[type=submit],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
}

/* Fixs flash when it has focus */
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

.arrow {
  border: solid #c7c7cc;
  border-width: 0 2px 2px 0;
  display: inline-block;
  vertical-align: middle;
  padding: 12px;
  transition: transform 200ms ease;
}
.arrow.right {
  margin-right: 8px;
  transform: rotate(-45deg);
}
.arrow.right.solid {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid white;
  border-right: none;
  transform: rotate(0deg);
  padding: 0 !important;
  margin-left: 10px;
}
.arrow.left {
  margin-left: 8px;
  transform: rotate(135deg);
}
.arrow.left.solid {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid white;
  transform: rotate(0deg);
  padding: 0 !important;
  margin-right: 10px;
}
.arrow.up {
  transform: rotate(-135deg);
}
.arrow.up.solid {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
  transform: rotate(0deg);
  padding: 0 !important;
  margin-bottom: 0;
}
.arrow.down {
  margin-top: -8px;
  transform: rotate(45deg);
}
.arrow.down.solid {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
  transform: rotate(0deg);
  padding: 0 !important;
  margin-top: 0;
}
.arrow.small {
  padding: 4px;
  border-width: 0 2px 2px 0;
}

.scroll {
  display: none;
  height: 100%;
  /* overflow-y: overlay; */
  overflow-y: auto;
  /* padding-top: $tableHeaderHeight; */
  -webkit-overflow-scrolling: touch;
}

/* Global Input */
input[type=text], input[type=password], input[type=number] {
  padding: 10px 20px;
  border-radius: 4px;
  border: thin solid #dbdadd;
  font-size: 16px;
}
input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=number]::-moz-placeholder {
  font-size: 16px;
  color: #c7c7cd;
}
input[type=text]::placeholder, input[type=password]::placeholder, input[type=number]::placeholder {
  font-size: 16px;
  color: #c7c7cd;
}

/* Global Select */
select {
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 4px;
  border: thin solid #dbdadd;
}

.parentcontainer {
  position: relative;
  width: 100%;
  height: 100%;
}

.prevent-overflow {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.nudge {
  position: relative;
  transition-property: top, transform, left, opacity, bottom, right;
  transition-timing-function: ease;
  transition-duration: 0.4s;
  transition-delay: 0s;
  top: 0;
  left: 0;
  transform: translate3d(0, 0, 0) !important;
  will-change: transform;
}
.nudge.nudgeup {
  transform: translate3d(0, -10%, 0) !important;
}
.nudge.nudgedown {
  transform: translate3d(0, 10%, 0) !important;
}
.nudge.nudgeleft {
  transform: translate3d(-10%, 0, 0) !important;
}
.nudge.nudgeright {
  transform: translate3d(10%, 0, 0) !important;
}

/* Pushes the form slightly up for visual effect */
.form-container {
  position: relative;
  width: 100%;
  height: 100%;
  /* Optional catefory */
}
.form-container > .group > .header {
  position: relative;
  border-width: 0.05em 0 0.05em 0;
  border-style: solid;
  border-color: #dbdadd;
  background-color: #efeff4;
  height: 50px;
}
.form-container > .group > .header .title {
  position: absolute;
  bottom: 5px;
  left: 10px;
  font-size: 16px;
  color: #7a7a7f;
}
.form-container > .group .inputcontainer {
  padding: 0;
  height: 50px;
}
.form-container > .group input[type=text], .form-container > .group input[type=password] {
  flex: 0 1 calc(100% - 200px);
  padding: 0;
  border: none;
  border-radius: 0;
}
.form-container > .group .checkbox {
  display: block;
}
.form-container > .group.checklist .inputcontainer > label {
  flex: 0 1 auto;
}
.form-container > .group.checklist .inputcontainer > .checkbox {
  margin-left: auto;
  margin-right: 50px;
  background-repeat: no-repeat;
  background-position: 5px center;
  background-image: none;
  height: 24px;
  width: 24px;
}
.form-container > .group.checklist .inputcontainer[data-checked="1"] > .checkbox {
  background-image: url(../img/check_selected.png);
}
.form-container.list > .group:last-child {
  /* Add a bottom border at last group*/
  border-width: 0 0 0.05em 0 !important;
  border-style: solid !important;
  border-color: #dbdadd !important;
}
.form-container.list > .group > .inputcontainer:not(:last-child) { /* Exclude the last 2 items */
  /* Add the bottom border to the end of this class*/
  border-width: 0 0 0.05em 0;
  border-style: solid;
  border-color: #dbdadd;
}

.inputcontainer {
  display: flex;
  /* Default */
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  font-size: 16px;
  /*
  	The line under an input box does not show, this is the fix.
  	It's because the inputbox border is supressed
  */
  padding: 1px 0 1px 0;
  /* Take out */
  margin: 0;
  /*
  justify-items: center;
  */
  grid-template-columns: max-content 1fr;
  color: #000000;
  /* height: 40px; */
  /*
  	Exclude the last child
  	:not(:last-child)

  	Exclude the last 2 items
  	*:not(:nth-last-child(-n+2)) {
  */
  /* Optional Stacked */
}
.inputcontainer.inline {
  display: inline-block;
}
.inputcontainer.stack {
  flex-direction: column;
  flex: 1;
  flex-basis: 0.000000001px;
}
.inputcontainer.stack > * {
  align-self: flex-start;
}
.inputcontainer.stack label {
  display: block;
  flex: 0 0 auto;
  margin-left: 3px;
  font-size: 14px;
  padding-bottom: 5px;
}
.inputcontainer.stack > label:nth-of-type(1) {
  flex: 0 1 auto;
  padding: 0;
}
.inputcontainer.stack > input:nth-of-type(1) {
  flex-basis: auto;
  padding-left: 10px;
  width: 100%;
}
.inputcontainer > label {
  margin-left: 10px;
  justify-content: flex-start;
  flex: 0 1 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
}
.inputcontainer > input:nth-of-type(1) {
  flex: 0 1 200px;
}
.inputcontainer input {
  flex: 0 1 auto;
  /* margin: 10px 0 10px 0; */ /* provides default row height by padding it */
}
.inputcontainer div.align-right { /* for Arrows and things */
  flex: 0 1 100%;
  cursor: pointer;
  text-align: right;
  margin-right: 10px;
}

.column {
  display: flex;
  flex-direction: column;
}
.column .header {
  position: relative;
  flex: 0 1 50px;
  overflow: hidden;
  background-color: #FFFFFF;
}
.column .header.solid {
  background-color: #efeff4;
}
.column .body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.column .footer {
  position: relative;
  flex: 0 1 50px;
  overflow: hidden;
  background-color: #FFFFFF;
}
.column .footer.solid {
  background-color: #efeff4;
}

.menu-bar {
  position: absolute;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 50px;
  overflow: hidden;
  font-size: 18px;
  border-width: 0.05em 0 0.05em 0;
  border-style: solid;
  border-color: #dbdadd;
  transform: translate3d(0, 0, 0);
  transition-property: top, transform, left, bottom, right;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-delay: 0s;
  background-color: #FFFFFF;
  /* Optional slide up transition */
}
.menu-bar.solid {
  background-color: #efeff4;
}
.menu-bar.slideup {
  transform: translate3d(0, 100%, 0);
}
.menu-bar.slideup.show {
  transform: translate3d(0, 0, 0);
}
.menu-bar.slidedown {
  transform: translate3d(0, -100%, 0);
}
.menu-bar.slidedown.show {
  transform: translate3d(0, 0, 0);
}
.menu-bar.slideleft {
  transform: translate3d(100%, 0, 0);
}
.menu-bar.slideleft.show {
  transform: translate3d(0, 0, 0);
}
.menu-bar.slideright {
  transform: translate3d(-100%, 0, 0);
}
.menu-bar.slideright.show {
  transform: translate3d(0, 0, 0);
}
.menu-bar > * {
  flex: 0 1 25%;
  white-space: nowrap;
  overflow: hidden;
}
.menu-bar > *:first-child {
  justify-content: flex-start;
  left: 5px;
}
.menu-bar > *:last-child {
  justify-content: flex-end;
  right: 5px;
}
.menu-bar > *:nth-child(2) {
  text-align: center;
  flex-basis: 50%;
}
.menu-bar > .title {
  font-weight: 600;
}

.menu {
  border-width: 0 0 0.05em 0;
  border-style: solid;
  border-color: #dbdadd;
  padding: 0 20px;
}
.menu li.menu-item {
  position: relative;
  border-width: 0 0 0.05em 0;
  border-style: solid;
  border-color: #dbdadd;
  cursor: pointer;
  padding: 20px 0;
  overflow: hidden;
}
.menu li.menu-item .arrow {
  position: absolute;
  right: 20px;
  vertical-align: middle;
  margin-top: 2px;
}
.menu li.menu-item:last-child {
  border-width: 0 0 0 0;
}

.button {
  display: inline-flex;
  border: thin solid #dbdadd;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000000;
  padding: 5px;
  border-radius: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.button.flat {
  border: none;
  font-weight: inherit;
  border-radius: 0;
  /*
  padding: 0;
  height: 100%;
  > * {
  	// height: 100%;
  }
  */
}
.button.big {
  padding: 10px 20px;
}
.button.solid {
  background-color: #4868cf;
  color: #FFFFFF;
}
.button.link {
  color: #007aff;
}
.button.gray {
  background-color: #E9ECEE;
  border-color: #A0A3A8;
}
.button.toggle {
  height: 50px;
  width: 90px;
  font-size: 18px;
  font-weight: 500;
}
.button.toggle[button-selected="1"] {
  background-color: #6495ed;
}

.slide {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 16px;
  background-color: #FFFFFF;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.27, 0.125, 0, 1);
  transition-duration: 0.3s;
  transition-delay: 10ms;
  /* Optional slide up transition */
}
.slide > .header {
  display: flex;
  /* Default */
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 50px;
  /* padding: 20px 30px 10px 30px; */
  font-size: 18px;
  border-bottom: 1px solid #dbdadd;
  background-color: #FFFFFF;
  overflow: hidden;
  /*
  .arrow {
  	margin-left: 20px;
  	margin-top: 20px;
  }
  */
}
.slide > .header.no-border {
  border-style: none;
}
.slide > .header > * {
  position: relative;
  flex: 0 1 25%;
}
.slide > .header > *:first-child {
  left: 10px;
  text-align: left;
  justify-content: flex-start;
}
.slide > .header > *:nth-child(2) {
  text-align: center;
  justify-content: center;
  flex-basis: 50%;
}
.slide > .header > *:last-child {
  right: 10px;
  text-align: right;
  justify-content: flex-end;
}
.slide > .header > .title {
  font-weight: 600;
}
.slide > .body {
  /* padding: 20px; */
  flex: 1;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.slide > .body.nowrap {
  white-space: nowrap;
}
.slide > .body.center {
  text-align: center;
}
.slide.show {
  opacity: 1;
}
.slide.slideup {
  transform: translate3d(0, 100%, 0);
  opacity: 1;
}
.slide.slideup.show {
  transform: translate3d(0, 0, 0);
}
.slide.slidedown {
  transform: translate3d(0, -100%, 0);
  opacity: 1;
}
.slide.slidedown.show {
  transform: translate3d(0, 0, 0);
}
.slide.slideleft {
  transform: translate3d(100%, 0, 0);
  opacity: 1;
}
.slide.slideleft.show {
  transform: translate3d(0, 0, 0);
}
.slide.slideright {
  transform: translate3d(-100%, 0, 0);
  opacity: 1;
}
.slide.slideright.show {
  transform: translate3d(0, 0, 0);
}

.modal {
  /*
  $windowTransitionTime: 5s;
  $opacityTransitionTime: .3s;
  $opacityDelay: 5s;
  */
  display: flex;
  position: fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: opacity 0.3s cubic-bezier(0.27, 0.125, 0, 1) 0.2s;
  opacity: 0;
  /* Optional slide up transition */
}
.modal.darker {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal.show {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.modal.show > .window {
  transition-timing-function: cubic-bezier(0.27, 0.125, 0, 1);
  transition-duration: 0.3s;
  opacity: 1;
}
.modal.dialog .window .body {
  display: flex;
  flex-flow: column nowrap;
  justify-items: center;
  align-items: center;
}
.modal.dialog .window .body .msg {
  flex: 0 0 auto;
  font-size: 1.3em;
}
.modal.dialog .window .body .button {
  margin-top: 10px;
  width: 80px;
  height: 60px;
  font-size: 1.3em;
}
.modal.dialog .window .body .button:nth-child(n+2) {
  margin-left: 30px;
}
.modal.dialog .window .body .button.yes {
  color: #007000;
  font-weight: 600;
}
.modal.dialog .window .body .button.no {
  color: #c20000;
  font-weight: 600;
}
.modal.slideup {
  justify-content: center;
  align-items: center;
}
.modal.slideup.show .window {
  transform: translate3d(0, 0, 0);
}
.modal.slideup > .window {
  opacity: 1;
  transform: translate3d(0, calc(50vh + 50%), 0);
}
.modal.slidedown {
  justify-content: center;
  align-items: center;
}
.modal.slidedown.show .window {
  transform: translate3d(0, 0, 0);
}
.modal.slidedown > .window {
  opacity: 1;
  transform: translate3d(0, calc(-50vh - 50%), 0);
}
.modal.slideleft {
  justify-content: center;
  align-items: center;
}
.modal.slideleft.show .window {
  transform: translate3d(0, 0, 0);
}
.modal.slideleft > .window {
  opacity: 1;
  transform: translate3d(calc(50vw + 50%), 0, 0);
}
.modal.slideright {
  justify-content: center;
  align-items: center;
}
.modal.slideright.show {
  align-items: center;
}
.modal.slideright.show .window {
  transform: translate3d(0, 0, 0);
}
.modal.slideright > .window {
  opacity: 1;
  transform: translate3d(calc(-50vw - 50%), 0, 0);
}
.modal > .window {
  position: absolute;
  border-radius: 4px;
  max-width: 90%;
  min-width: 500px;
  max-height: 90%;
  min-height: 100px;
  width: auto;
  background-color: #FFFFFF;
  opacity: 0;
  overflow: hidden;
  will-change: transform, opacity;
  display: flex;
  flex-flow: column nowrap;
  transition-property: top, transform, left, opacity, bottom, right;
  transition-timing-function: cubic-bezier(0.27, 0.125, 0, 1);
  transition-duration: 0.3s;
  transition-delay: 0;
}
.modal > .window.big {
  min-width: 50%;
}
@media (max-width: 400px) and (orientation: portrait) {
  .modal > .window.big {
    min-width: 90%;
  }
}
.modal > .window > .header {
  display: flex;
  /* Default */
  /* flex-flow: row nowrap; */
  justify-content: space-between;
  align-items: center;
  flex: 0 0 50px;
  /* padding: 20px 30px 10px 30px; */
  font-size: 1.3em;
  border-bottom: 1px solid #dbdadd;
  background-color: #FFFFFF;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.modal > .window > .header > * {
  flex: 0 1 auto;
  white-space: nowrap;
  overflow: hidden;
}
.modal > .window > .header > *.yellow {
  background-color: #FFFF00;
}
.modal > .window > .header > *:first-child {
  text-align: left;
  position: relative;
}
.modal > .window > .header > *:first-child.button {
  left: 10px;
  justify-content: flex-start;
}
.modal > .window > .header > *:nth-child(2) {
  text-align: center;
  flex: 0 1 auto;
  margin-left: 7px;
  margin-right: 7px;
}
.modal > .window > .header > *:last-child {
  text-align: right;
  position: relative;
}
.modal > .window > .header > *:last-child.button {
  right: 10px;
  justify-content: flex-end;
}
.modal > .window > .header > *.button {
  font-size: 1em;
  padding-left: 0px;
  padding-right: 0px;
}
.modal > .window > .header .title {
  font-weight: 600;
}
.modal > .window > .body {
  padding: 20px;
  overflow-y: auto;
}
.modal > .window > .body.nowrap {
  white-space: nowrap;
}
.modal > .window > .body.center {
  text-align: center;
}
.modal > .window > .footer {
  display: flex;
  flex: 0 0 40px;
  /* Default */
  /* flex-flow: row nowrap; */
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  border-width: 0.05em 0 0 0;
  border-style: solid;
  border-color: #dbdadd;
}
.modal > .window > .footer.center > div {
  flex: 0 1 25%;
}
.modal > .window > .footer.center > div:nth-child(2) {
  flex-basis: 50%;
}
.modal > .window > .footer > * {
  flex: 0 1 auto;
  white-space: nowrap;
  overflow: hidden;
}
.modal > .window > .footer > *.yellow {
  background-color: #FFFF00;
}
.modal > .window > .footer > *:first-child {
  text-align: left;
}
.modal > .window > .footer > *:first-child.button {
  margin-left: 10px;
}
.modal > .window > .footer > *:nth-child(2) {
  text-align: center;
}
.modal > .window > .footer > *:last-child {
  text-align: right;
}
.modal > .window > .footer > *:last-child.button {
  margin-right: 10px;
}
.modal > .window > .footer > *.button {
  min-width: 100px;
}
.modal > .window > .footer > *.button:nth-child(n+2) {
  margin-left: 10px;
}
.modal > .window.larger {
  max-height: 400px;
  min-width: 80%;
  min-height: 80%;
}
.modal > .window.larger[theme=ms-win] > .header {
  padding: 10px 5px 10px 5px;
  flex-basis: 50px;
}
.modal > .window.larger[theme=ms-win] > .header .close-button img {
  width: 35px;
  height: 35px;
}
.modal > .window[theme=ms-win] > .header {
  background: linear-gradient(to bottom, #000036 0%, #0000b3 80%);
  color: white;
  flex-basis: 40px;
  padding: 0px 5px 0px 5px;
}
.modal > .window[theme=ms-win] > .header .close-button {
  position: absolute;
  right: 10px;
  top: 7px;
  cursor: pointer;
  z-index: 2;
}
.modal > .window[theme=ms-win] > .header .close-button img {
  width: 25px;
  height: 25px;
}
.modal > .window[theme=ms-win] > .body {
  margin-bottom: 8px;
  padding: 10px 5px 10px 5px;
}
.modal > .window[theme=ms-win] > .footer {
  display: inline-block;
  flex-basis: auto;
  padding: 15px 5px 5px 5px;
  margin-right: 0px;
  text-align: right;
}
.modal > .window[theme=ms-win] > .footer.noborder {
  border-width: 0;
}
.modal > .window[theme=ms-win] .button {
  padding: 10px 15px;
  border-color: #9c9c9c;
  background: linear-gradient(to bottom, #eeeeee 0%, #ffffff 80%);
  color: #272727;
}
.modal > .window[theme=ms-win] .toolbar {
  margin-bottom: 14px;
}
.modal > .window[theme=ms-win] .toolbar .button {
  padding: 7px 10px;
  background: none;
  background-color: white;
}
.modal > .window[theme=mobile] > .header {
  background: linear-gradient(to bottom, #6495ED 0%, #3d7aeb 80%);
  color: white;
  flex-basis: 40px;
  padding: 0px 5px 0px 5px;
}
.modal > .window[theme=mobile] > .header .close-button {
  position: absolute;
  right: 10px;
  top: 7px;
  cursor: pointer;
  z-index: 2;
}
.modal > .window[theme=mobile] > .header .close-button img {
  width: 25px;
  height: 25px;
}
.modal > .window[theme=mobile] > .body {
  padding: 10px 5px 10px 5px;
}
.modal > .window[theme=mobile] > .footer {
  display: inline-block;
  flex-basis: auto;
  padding: 15px 5px 5px 5px;
  margin-right: 0px;
  text-align: right;
}
.modal > .window[theme=mobile] > .footer.noborder {
  border-width: 0;
}
.modal > .window[theme=mobile] .button {
  padding: 10px 15px;
  border-color: #9c9c9c;
  background: linear-gradient(to bottom, #eeeeee 0%, #ffffff 80%);
  color: #272727;
}
.modal > .window[theme=mobile] .toolbar {
  margin-bottom: 14px;
}
.modal > .window[theme=mobile] .toolbar .button {
  padding: 7px 10px;
  background: none;
  background-color: white;
}
.modal > .window > .header .title {
  text-align: center;
  width: 100%;
  font-weight: normal;
}
.modal > .window > .body {
  position: relative;
}
.modal > .window > .body .title {
  font-weight: 700;
  color: black;
}
.modal > .window > .body .title .col {
  border-width: 0;
}
.modal > .window > .body .table .flex.row {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: center;
  justify-items: flex-start;
  justify-items: center;
  justify-content: center;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #e0e0e0;
}
.modal > .window > .body .table .flex.row:nth-child(n+2) > .col {
  border-top-width: 0;
}
.modal > .window > .body .table .flex.row > .col {
  flex: 0 1 50%;
  cursor: pointer;
  padding: 3px 10px;
}
.modal > .window > .body .table .flex.row > .col.buttons {
  flex: 0 0 90px !important;
  display: none;
}
.modal > .window > .body .table .flex.row > .col .button.delete-button {
  background: linear-gradient(to bottom, #8f0000 0%, #a50000 80%) !important;
  color: white;
  font-weight: 500;
  font-size: 15px;
}
.modal > .window > .body .table .flex.row > .col.template-icon {
  flex: 0 0 70px !important;
}
.modal > .window > .body .table .flex.row > .col.template-icon img {
  height: 30px;
  padding: 0;
}
.modal > .window > .body .table .flex.row.title > .col {
  border-width: 0 0 1px 0;
}
.modal > .window > .body .table .flex.row:nth-child(n+2) {
  border-top-width: 0;
}
.modal > .window > .body .table.edit .flex.row > .col {
  flex: 0 1 50%;
}
.modal > .window > .body .table.edit .flex.row > .col .button {
  background: none;
  padding: 5px;
}
.modal > .window > .body .table.edit .flex.row > .col.buttons {
  display: block !important;
  border-width: 0px;
}

.calendarWidget {
  font-size: 1vmax;
  min-width: 90%;
  margin: 0 auto 0 auto;
}
.calendarWidget .calendar-header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 3% 0 3% 0;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 3vmin;
  text-align: center;
  height: auto;
}
.calendarWidget .calendar-header .title-container {
  flex: 0 0 auto;
}
.calendarWidget .calendar-header .title-container .title {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  justify-items: center;
  align-items: center;
  align-content: center;
}
.calendarWidget .calendar-header .title-container .title > * {
  flex: 1;
  flex-basis: 0.000000001px;
}
.calendarWidget .calendar-header .title-container .title .calendar-button {
  position: relative;
}
.calendarWidget .calendar-header .title-container .title .calendar-button .arrow {
  padding: 1.2vmin;
}
.calendarWidget .calendar-header .title-container .title .month {
  margin-right: 10px;
}
.calendarWidget .calendar-header .title-container .title select {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
  font-size: 3vmin;
  -webkit-user-select: unset;
     -moz-user-select: unset;
          user-select: unset;
}
.calendarWidget .calendar-header .title-container .calendar-today {
  color: #007aff;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.calendarWidget .calendar-header span {
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.calendarWidget .calendar-header .calendar-button {
  flex: 0 1 auto;
  cursor: pointer;
}
.calendarWidget .calendar-header .calendar-button:first-child {
  margin-left: 2vmin;
}
.calendarWidget .calendar-header .calendar-button:last-child {
  margin-right: 2vmin;
}
.calendarWidget .calendar-header .calendar-button .arrow {
  padding: 2vmin;
}
.calendarWidget .calendar-body {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 0 0;
  justify-items: center;
  align-items: center;
  margin: 0;
  /* height: $calendar-height; */
  background-color: #000000;
  color: #FFFFFF;
  padding: 0 0 20px 0;
  font-size: 1.8em;
  /*
  	grid-template-rows: repeat(6, 1fr);
  */
}
@media (max-width: 750px) {
  .calendarWidget .calendar-body {
    font-size: 2.5em;
  }
}
.calendarWidget .calendar-body > div {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  /* border: 2px solid rgb(137,153,175); */
  text-align: center;
  /*
  height: 40px;
  width: 40px;
  */
  height: 7vmin;
  width: 7vmin;
  margin: 0.6vw 1vw;
  cursor: pointer;
  position: relative;
}
.calendarWidget .calendar-body > div.weekdays {
  font-size: 0.6em;
  color: #FFFF00;
  height: auto;
  margin: 0;
}
.calendarWidget .calendar-body > div.inactive {
  color: #555;
}
.calendarWidget .calendar-body > div.today {
  border-radius: 1px;
  border: 1px solid #FFFF00;
}
.calendarWidget .calendar-body > div.selected {
  border-radius: 7vmin;
  background-color: #FFFFFF;
  color: #000000;
}
.calendarWidget .calendar-body > div span {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.calendarWidget .calendar-footer {
  background-color: #000000;
  height: 60px;
}
.calendarWidget .calendar-footer .button {
  border: 1px solid #CCCCCC;
  color: #FFFFFF;
  background-color: transparent;
}

.popupwindow {
  position: absolute;
  border: 1px solid #000000;
  background-color: #FFFFFF;
}
.popupwindow .header {
  display: flex;
  /* Default */
  /* flex-flow: row nowrap; */
  justify-content: space-between;
  align-items: center;
  flex: 0 0 50px;
  /* padding: 20px 30px 10px 30px; */
  font-size: 18px;
  border-bottom: 1px solid #dbdadd;
  background-color: #FFFFFF;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.popupwindow .header > * {
  flex: 0 1 auto;
  white-space: nowrap;
  overflow: hidden;
}
.popupwindow .header > *:first-child {
  text-align: left;
  padding-left: 10px;
}
.popupwindow .header > *:first-child.button {
  padding-left: 10px;
  justify-content: flex-start;
}
.popupwindow .header > *:nth-child(2) {
  text-align: center;
  flex: 0 1 auto;
  margin-left: 7px;
  margin-right: 7px;
}
.popupwindow .header > *:last-child {
  text-align: right;
  padding-right: 10px;
}
.popupwindow .header > *:last-child.button {
  padding-right: 10px;
  justify-content: flex-end;
}
.popupwindow .header > *.button {
  font-size: 18px;
  padding-left: 0px;
  padding-right: 0px;
}
.popupwindow .body {
  width: auto;
  font-size: 1.2em;
}

.tableWidget .table-header {
  padding: 5px 5px 0 5px; /* Prevents weird horizontal scroll bar.  Any size  */
}
.tableWidget .table, .tableWidget .table-header {
  border-spacing: 0 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
  border-collapse: collapse;
}
.tableWidget .table-header {
  border-style: solid;
  border-width: 0 0 thin 0;
  border-color: #CCCCCC;
}
.tableWidget .table-header th {
  text-align: center;
}
.tableWidget .table-header tr {
  height: 30px;
}
.tableWidget .table {
  width: 100%;
}
.tableWidget .table.border td {
  border-style: solid;
  border-width: 0 thin 0 thin;
  border-color: #CCCCCC;
}
.tableWidget .table.zebra tr:nth-child(even) {
  background-color: rgb(245, 245, 245);
}
.tableWidget .table.hover tr:hover {
  background-color: #E9ECEE;
}
.tableWidget .table tbody tr {
  transition: 0.2s background-color ease;
}
.tableWidget .table tbody tr td {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 3px;
  /*
  &:nth-child(1) { width: 50px; }
  &:nth-child(2) { width: 150px; }
  &:nth-child(3) { width: 50px; }
  &:nth-child(4) { width: 350px; }
  &:nth-child(5) { width: 50px; }
  */
}
.tableWidget .tablewrapper {
  overflow-y: auto;
  padding: 0 5px 5px 5px; /* Prevents weird horizontal scroll bar.  Any size  */
  -webkit-overflow-scrolling: touch;
}
.tableWidget .tablewrapper.bottomborder {
  border-style: solid;
  border-width: 0 0 thin 0;
  border-color: #CCCCCC;
}/*# sourceMappingURL=common-core.css.map */