.fit-parent {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
}
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-SemiBold.ttf");
  font-weight: 500;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-Bold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-ExtraBold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: Muli;
  src: url("/fonts/muli/Muli-Black.ttf");
  font-weight: 800;
}
html,
body {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
  font-family: Muli;
  overflow: hidden;
  font-size: 18px;
}
#app-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  overflow: hidden;
}
#panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  overflow: hidden;
  transition: width 0.5s, height 0.5s;
}
#app {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  transition: top 0.5s, left 0.5s;
}
.hide-panel #app {
  top: 0;
}
.hide-panel #panel {
  height: 0;
}
#overlay {
  z-index: 3;
}
#panel {
  z-index: 2;
}
#app {
  z-index: 1;
}
.color-primary {
  color: #4e94ad;
}
.bg-primary {
  background-color: #4e94ad;
}
.border-color-primary {
  border-color: #4e94ad;
}
.button.color-primary {
  color: #4e94ad;
}
.color-light-grey {
  color: #f2f2f2;
}
.bg-light-grey {
  background-color: #f2f2f2;
}
.border-color-light-grey {
  border-color: #f2f2f2;
}
.color-semi-light-grey {
  color: #dcdcdc;
}
.bg-semi-light-grey {
  background-color: #dcdcdc;
}
.border-color-semi-light-grey {
  border-color: #dcdcdc;
}
.color-grey {
  color: #adadad;
}
.bg-grey {
  background-color: #adadad;
}
.border-color-grey {
  border-color: #adadad;
}
.color-dark-grey {
  color: #757575;
}
.bg-dark-grey {
  background-color: #757575;
}
.border-color-dark-grey {
  border-color: #757575;
}
.color-white {
  color: #ffffff;
}
.bg-white {
  background-color: #ffffff;
}
.border-color-white {
  border-color: #ffffff;
}
.color-black {
  color: #303133;
}
.bg-black {
  background-color: #303133;
}
.border-color-black {
  border-color: #303133;
}
.color-blue {
  color: #4e94ad;
}
.bg-blue {
  background-color: #4e94ad;
}
.primary-color-blue .color-primary {
  color: #4e94ad;
}
.primary-color-blue .bg-primary {
  background-color: #4e94ad;
}
.primary-color-blue .border-color-primary {
  border-color: #4e94ad;
}
.color-purple {
  color: #2e1a47;
}
.bg-purple {
  background-color: #2e1a47;
}
.primary-color-purple .color-primary {
  color: #2e1a47;
}
.primary-color-purple .bg-primary {
  background-color: #2e1a47;
}
.primary-color-purple .border-color-primary {
  border-color: #2e1a47;
}
.color-green {
  color: #618138;
}
.bg-green {
  background-color: #618138;
}
.primary-color-green .color-primary {
  color: #618138;
}
.primary-color-green .bg-primary {
  background-color: #618138;
}
.primary-color-green .border-color-primary {
  border-color: #618138;
}
.color-dark-blue {
  color: #143e54;
}
.bg-dark-blue {
  background-color: #143e54;
}
.primary-color-dark-blue .color-primary {
  color: #143e54;
}
.primary-color-dark-blue .bg-primary {
  background-color: #143e54;
}
.primary-color-dark-blue .border-color-primary {
  border-color: #143e54;
}
.color-red {
  color: #c7392d;
}
.bg-red {
  background-color: #c7392d;
}
.primary-color-red .color-primary {
  color: #c7392d;
}
.primary-color-red .bg-primary {
  background-color: #c7392d;
}
.primary-color-red .border-color-primary {
  border-color: #c7392d;
}
.box-center {
  margin-left: auto;
  margin-right: auto;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}
.valign-middle {
  vertical-align: middle;
}
.valign-transform-middle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 800px) {
  .desktop-valign-transform-middle {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}
.margin-auto {
  margin: auto;
}
.margin-none {
  margin: 0px;
}
.margin-small {
  margin: 10px;
}
.margin-medium {
  margin: 30px;
}
.margin-large {
  margin: 50px;
}
.margin-top-auto {
  margin-top: auto;
}
.margin-top-none {
  margin-top: 0px;
}
.margin-top-small {
  margin-top: 10px;
}
.margin-top-medium {
  margin-top: 30px;
}
.margin-top-large {
  margin-top: 50px;
}
.margin-bottom-auto {
  margin-bottom: auto;
}
.margin-bottom-none {
  margin-bottom: 0px;
}
.margin-bottom-small {
  margin-bottom: 10px;
}
.margin-bottom-medium {
  margin-bottom: 30px;
}
.margin-bottom-large {
  margin-bottom: 50px;
}
.margin-left-auto {
  margin-left: auto;
}
.margin-left-none {
  margin-left: 0px;
}
.margin-left-small {
  margin-left: 10px;
}
.margin-left-medium {
  margin-left: 30px;
}
.margin-left-large {
  margin-left: 50px;
}
.margin-right-auto {
  margin-right: auto;
}
.margin-right-none {
  margin-right: 0px;
}
.margin-right-small {
  margin-right: 10px;
}
.margin-right-medium {
  margin-right: 30px;
}
.margin-right-large {
  margin-right: 50px;
}
.padding-auto {
  padding: auto;
}
.padding-none {
  padding: 0px;
}
.padding-small {
  padding: 10px;
}
.padding-medium {
  padding: 30px;
}
.padding-large {
  padding: 50px;
}
.padding-top-auto {
  padding-top: auto;
}
.padding-top-none {
  padding-top: 0px;
}
.padding-top-small {
  padding-top: 10px;
}
.padding-top-medium {
  padding-top: 30px;
}
.padding-top-large {
  padding-top: 50px;
}
.padding-bottom-auto {
  padding-bottom: auto;
}
.padding-bottom-none {
  padding-bottom: 0px;
}
.padding-bottom-small {
  padding-bottom: 10px;
}
.padding-bottom-medium {
  padding-bottom: 30px;
}
.padding-bottom-large {
  padding-bottom: 50px;
}
.padding-left-auto {
  padding-left: auto;
}
.padding-left-none {
  padding-left: 0px;
}
.padding-left-small {
  padding-left: 10px;
}
.padding-left-medium {
  padding-left: 30px;
}
.padding-left-large {
  padding-left: 50px;
}
.padding-right-auto {
  padding-right: auto;
}
.padding-right-none {
  padding-right: 0px;
}
.padding-right-small {
  padding-right: 10px;
}
.padding-right-medium {
  padding-right: 30px;
}
.padding-right-large {
  padding-right: 50px;
}
.p-2 {
  padding: 0.5rem;
}
.full-height {
  height: 100%;
}
.full-width {
  width: 100%;
}
.max-width-xsmall {
  max-width: 400px;
}
.max-width-small {
  max-width: 600px;
}
.max-width-medium {
  max-width: 800px;
}
.max-width-large {
  max-width: 1000px;
}
.max-width-xlarge {
  max-width: 1200px;
}
@media screen and (min-width: 800px) {
  .full-height-web {
    height: 100%;
  }
}
.shadow-medium,
.shadow {
  box-shadow: shadow-medium;
}
.weight-light {
  font-weight: 300;
}
.weight-regular {
  font-weight: 400;
}
.weight-semibold {
  font-weight: 500;
}
.weight-bold {
  font-weight: 600;
}
.weight-black {
  font-weight: 700;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.border-box {
  box-sizing: border-box;
}
.truncate-column {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 1px;
}
html,
body {
  font-size: 20px;
}
.underline {
  text-decoration: underline;
}
.pre-wrap {
  white-space: pre-wrap;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
@media screen and (max-width: 600px) {
  .hide-mobile-small {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .hide-mobile {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .hide-mobile-large {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .hide-web-small {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .hide-web {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .hide-web-large {
    display: none;
  }
}
.page {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  overflow: auto;
  transition: transform 0.5s;
}
.logo-background {
  background-image: url('images/logo-background-grey.svg');
  background-size: cover;
  background-position: center;
  transition: background 0.3s;
}
.primary-color-green .page.logo-background {
  background-image: url('images/logo-background-green.svg');
}
.primary-color-red .page.logo-background {
  background-image: url('images/logo-background-red.svg');
}
.window {
  width: 100%;
  margin: auto;
  position: relative;
  box-sizing: border-box;
  overflow: auto;
}
.window-xsmall {
  max-width: 400px;
}
.window-small {
  max-width: 600px;
}
.window-medium {
  max-width: 800px;
}
.window-large {
  max-width: 1000px;
}
.window-xlarge {
  max-width: 1200px;
}
.panel-background {
  background-image: url('images/logo-background-grey.svg');
  background-position: center;
  background-size: cover;
}
.panel-background.narrow-background {
  background-image: url('images/logo-background-grey-narrow.svg');
  background-position: center;
  background-size: cover;
}
.panel {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  box-sizing: border-box;
  padding: 15px;
  overflow: hidden;
  color: white;
  z-index: 2;
  transition: background-color 0.3s;
}
.panel .panel-table {
  display: table;
  width: 100%;
}
.panel .panel-row {
  display: table-row;
}
.panel .panel-cell {
  display: table-cell;
}
.sub-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  padding: 50px;
  background-color: white;
  overflow: auto;
  transition: width 0.2s, height 0.2s;
  z-index: 1;
  /*
  @media screen and (max-width: @mobile-transition-width) {
    width: 100%;
    max-width: 100%;
    height: $sub-panel-mobile-height;
    padding: 30px;
  }
  */
}
h1,
h2,
h3 h4,
h5,
h6 {
  font-weight: 400;
}
/*
h1 { font-size: 50px; }
h2 { font-size: 40px; }
h3 { font-size: 30px; }
h4 { font-size: 26px; }
h5 { font-size: 18px; }
h6 { font-size: 14px; }
*/
h1 {
  font-size: 80px;
}
h2 {
  font-size: 60px;
}
h3 {
  font-size: 50px;
}
h4 {
  font-size: 40px;
}
h5 {
  font-size: 30px;
}
h6 {
  font-size: 20px;
}
.button {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  min-width: 100px;
  padding: 10px 15px;
  font-size: 22px;
  font-weight: 300;
  color: white;
  border-radius: 3px;
  text-align: center;
  border: 1px solid transparent;
  transition: background-color 0.1s;
}
.button:not(.disabled) {
  cursor: pointer;
}
.button:not(.disabled):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  transition: background-color 0.1s;
}
.button:not(.disabled):hover:after {
  background-color: rgba(255, 255, 255, 0.1);
}
.button.bg-dim {
  background-color: rgba(0, 0, 0, 0.15);
}
.button.bg-dim:hover {
  background-color: transparent;
}
.button.icon-button {
  min-width: 20px;
  min-height: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 40px;
}
.button.icon-button.button-size-small {
  width: 30px;
  height: 30px;
}
.button.selectable-button {
  position: relative;
}
.button.selectable-button .tick-circle {
  width: 20px;
  height: 20px;
  position: absolute;
  top: -10px;
  right: -10px;
  border-width: 2px;
  border-style: solid;
  border-radius: 30px;
  background-color: white;
  transition: border-color 0.2s;
}
.button.selectable-button .tick-circle .tick {
  width: 12px;
  height: 5px;
  position: absolute;
  left: 3px;
  top: 6px;
  border-left-width: 2px;
  border-left-style: solid;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.2s, border-color 0.2s;
}
.button.selectable-button.selected .tick-circle .tick {
  transform: scale(1) rotate(-45deg);
}
.app-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  transition: left 0.2s, top 0.2s;
}
.app-content.with-sub-panel,
.app-content.with-heading {
  left: 50%;
}
@media screen and (max-width: 800px) {
  .app-view .open-menu-button {
    position: fixed;
    top: 20px;
    width: 40px;
    height: 40px;
  }
  .app-view .open-menu-button.left {
    left: 0;
    border-radius: 0 10px 10px 0;
  }
  .app-view .open-menu-button.right {
    right: 0;
    border-radius: 10px 0 0 10px;
  }
  .app-view .app-content {
    left: 0;
    transform: translateX(0%);
    transition: transform 0.2s;
  }
  .app-view .app-content .app-heading {
    background-color: white;
    padding: 60px 30px;
  }
  .app-view .sub-panel {
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.2s;
  }
  .app-view.sub-panel-open .app-content {
    transform: translateX(100%);
  }
  .app-view.sub-panel-open .sub-panel {
    transform: translateX(0%);
  }
}
input,
textarea,
select,
.input {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  padding: 10px 15px;
  background-color: white;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  font-size: 14px;
  text-align: left;
}
input:focus,
textarea:focus,
select:focus,
.input:focus {
  outline: none;
}
.input-edit-icon-red input,
.input-edit-icon-red textarea,
.input-edit-icon-red select,
.input-edit-icon-red .input {
  padding-right: 40px;
  background-position: right 5px center;
  background-image: url('images/icons/edit-red.svg');
  background-repeat: no-repeat;
  background-size: 30px;
}
.primary-color-blue input:focus,
.primary-color-blue textarea:focus,
.primary-color-blue select:focus,
.primary-color-blue .input:focus {
  border-color: #4e94ad;
}
.primary-color-purple input:focus,
.primary-color-purple textarea:focus,
.primary-color-purple select:focus,
.primary-color-purple .input:focus {
  border-color: #2e1a47;
}
.primary-color-green input:focus,
.primary-color-green textarea:focus,
.primary-color-green select:focus,
.primary-color-green .input:focus {
  border-color: #618138;
}
.primary-color-dark-blue input:focus,
.primary-color-dark-blue textarea:focus,
.primary-color-dark-blue select:focus,
.primary-color-dark-blue .input:focus {
  border-color: #143e54;
}
.primary-color-red input:focus,
.primary-color-red textarea:focus,
.primary-color-red select:focus,
.primary-color-red .input:focus {
  border-color: #c7392d;
}
.divider {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 0 10px;
  text-align: center;
  color: #adadad;
  font-weight: 300;
}
.divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #adadad;
  z-index: -1;
}
.divider .divider-text {
  display: inline-block;
  padding: 0 10px;
  background-color: #f2f2f2;
  z-index: 1;
}
.section-review-list {
  width: 100%;
}
.section-review-list .listing {
  background-color: white;
  border-radius: 3px;
  padding: 10px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
}
.section-review-list .listing .listing-label,
.section-review-list .listing .listing-totals,
.section-review-list .listing .listing-total {
  display: inline-block;
  vertical-align: middle;
}
.section-review-list .listing .listing-label {
  width: calc(100% - ((40px + 10px) * 2));
  padding-left: 10px;
  box-sizing: border-box;
}
.section-review-list .listing .listing-totals {
  width: 100px;
  text-align: right;
}
.section-review-list .listing .listing-total {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  margin-left: 10px;
  box-sizing: border-box;
  text-align: center;
  padding: 11px 0;
  color: white;
  font-weight: 400;
  font-size: 14px;
}
.icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
}
.icon-up {
  background-image: url('images/icons/up-white.svg');
}
.icon-down {
  background-image: url('images/icons/down-white.svg');
}
.icon-left {
  background-image: url('images/icons/left-white.svg');
}
.icon-right {
  background-image: url('images/icons/right-white.svg');
}
.icon-tick {
  background-image: url('images/icons/tick-white.svg');
}
.icon-cross {
  background-image: url('images/icons/cross-white.svg');
}
.icon-plus {
  background-image: url('images/icons/plus-white.svg');
}
.icon-edit {
  background-image: url('images/icons/edit-white.svg');
}
.icon-upload {
  background-image: url('images/icons/upload-white.svg');
}
.icon-menu {
  background-image: url('images/icons/menu-white.svg');
}
.icon-eye {
  background-image: url('images/icons/eye-white.svg');
}
.box {
  box-sizing: border-box;
  width: 100%;
  padding: 30px;
  border-radius: 3px;
  background-color: white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
}
.column {
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  overflow-x: hidden;
  padding-bottom: 10px;
}
.column.perc-10 {
  width: 10%;
}
.column.perc-20 {
  width: 20%;
}
.column.perc-30 {
  width: 30%;
}
.column.perc-33 {
  width: 33%;
}
.column.perc-34 {
  width: 34%;
}
.column.perc-40 {
  width: 40%;
}
.column.perc-50 {
  width: 50%;
}
.column.perc-60 {
  width: 60%;
}
.column.perc-70 {
  width: 70%;
}
.column.perc-76 {
  width: 76%;
}
.column.perc-80 {
  width: 80%;
}
.column.perc-90 {
  width: 90%;
}
.column.perc-100 {
  width: 100%;
}
@media screen and (max-width: 400px) {
  .column.max-400 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .column.max-600 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .column.max-800 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .column.max-1000 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .column.max-1200 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 400px) {
  .column.max-xsmall {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .column.max-small {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .column.max-medium {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .column.max-large {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .column.max-xlarge {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.connect-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 60px auto;
  border-radius: 80px;
  border-width: 4px;
  border-style: solid;
}
.connect-icon .line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 0%;
  transform: translate(-50%);
  border-bottom-width: 4px;
  border-bottom-style: solid;
  transition: top 0.3s, width 0.3s, height 0.3s, border 0.3s;
}
.connect-icon .line.line1 {
  transform: translate(-50%) rotate(-45deg);
  border-left-width: 4px;
  border-left-style: solid;
}
.connect-icon .line.line2 {
  transform: translate(-50%) rotate(45deg);
}
.connected .connect-icon .line.line1 {
  top: 35%;
  height: 20%;
  width: 50%;
}
.connected .connect-icon .line.line2 {
  width: 0;
}
table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table th,
table td {
  border-bottom: 1px solid #adadad;
  padding: 10px 0;
}
table th {
  font-weight: 400;
  font-size: 18px;
}
table th .sort-arrow {
  width: 15px;
  height: 7px;
  display: inline-block;
  background-image: url('images/icons/dropdown-arrow-outline-grey.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
table th .sort-arrow.active {
  background-image: url('images/icons/dropdown-arrow-grey.svg');
}
table th .sort-arrow.ascending {
  transform: rotate(180deg);
}
table.no-border th,
table.no-border td {
  border: none;
}
.form-block {
  margin-bottom: 10px;
}
.form-error-message {
  color: #c7392d;
  font-size: 16px;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  z-index: 100;
}
.overlay .overlay-background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.overlay .overlay-content .box-wrapper {
  max-height: calc(100% - 65px);
  overflow: auto;
}
.overlay input.overlay-input {
  width: 100%;
  height: 100px;
  font-size: 20px;
}
.overlay textarea.overlay-textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  max-height: 200px;
  font-size: 20px;
}
.calendar .calendar-header {
  margin-bottom: 40px;
}
.calendar .calendar-header th {
  border: none;
}
.calendar .calendar-row {
  text-align: center;
}
.calendar .calendar-row .calendar-day {
  width: 14%;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  vertical-align: middle;
  transition: font-size 0.2s;
}
.calendar .calendar-row .calendar-day.selected {
  font-size: 40px;
  font-weight: 500;
}
.form-fill-panel {
  height: 100%;
}
.form-fill-panel .panel-top-section,
.form-fill-panel .panel-bottom-section {
  width: 100%;
  overflow-y: auto;
}
.form-fill-panel .panel-top-section {
  height: calc(100% - 350px);
}
.form-fill-panel .panel-bottom-section {
  margin-top: 20px;
  height: 350px;
}
.form-fill-panel .panel-menu {
  display: table;
  width: 100%;
  margin: auto;
  margin-top: 30px;
}
.form-fill-panel .panel-menu .panel-menu-row {
  display: table-row;
}
.form-fill-panel .panel-menu .panel-menu-row .panel-menu-cell {
  display: table-cell;
  width: 33%;
  vertical-align: middle;
}
.scroll-box {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.fake-selector {
  padding: 5px 10px;
  padding-right: 40px;
  background-color: white;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  color: #618138;
  background-image: url('images/icons/down-green.svg');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}
.previous-values {
  display: flex;
  justify-content: center;
}
.previous-values__title {
  color: #adadad;
  flex-shrink: 0;
}
.previous-values__response {
  color: #adadad;
  margin: 0 10px;
  white-space: pre-wrap;
}
.previous-values__copy {
  height: 25px;
  position: relative;
  display: flex;
  color: #618138;
  cursor: pointer;
}
.previous-values__copy__icon {
  margin-left: 5px;
  margin-top: 2px;
}
.previous-values__tooltip {
  position: absolute;
  top: 150%;
  left: 50%;
  transform-origin: 0 center;
  transform: scale(0) translateX(-50%);
  background-color: #303133;
  padding: 10px;
  color: white;
  border-radius: 3px;
  width: fit-content;
  min-width: 200px;
  text-align: center;
  z-index: 4;
  transition: transform 0.2s;
}
.previous-values__tooltip:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 14px;
  height: 14px;
  background-color: #303133;
  border-radius: 3px;
  transform: translate(-50%, calc(-50% + 2px)) rotate(45deg);
}
.previous-values__tooltip--left {
  left: -120px;
  top: 25%;
}
.previous-values__tooltip--left:after {
  left: unset;
  top: 7px;
  right: -6%;
}
.previous-values__tooltip--open {
  transform: scale(1) translateX(-50%);
}
.previous-values__tooltip__value {
  margin-bottom: 10px;
}
.previous-values__tooltip__message {
  font-size: 12px;
  font-weight: bold;
  color: #adadad;
}
#status-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.status-bar {
  width: 100%;
  height: 40px;
  background-color: #4e94ad;
  transform: translateY(100%);
  transition: transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
}
.status-bar--show {
  transform: translateY(0%);
}
.input-table {
  border: 1px solid #f2f2f2;
  border-spacing: 0;
  width: 100%;
}
.input-table__cell {
  vertical-align: top;
  border: 1px solid #f2f2f2;
}
.input-table__cell--header {
  padding: 5px;
}
.input-table__cell--input {
  white-space: pre-wrap;
  color: #adadad;
}
.input-table__cell--input:focus {
  color: #4e94ad;
  outline: none;
  border: 1px solid #4e94ad;
}
.input-table__cell--control {
  padding: 5px;
  text-align: center;
  width: 80px;
}
.input-table__cell__input {
  border: 1px solid transparent;
  padding: 8px;
  transition: color 0.2s, border-color 0.2s;
  color: #adadad;
  margin: 0;
  border-radius: 0;
  outline: none;
  font-size: 16px;
}
.input-table__cell__input:focus {
  border-color: #4e94ad;
  color: #4e94ad;
  outline: none;
}
.link {
  color: #618138;
  cursor: pointer;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}
.link--red {
  color: #c7392d;
}
.login-view {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  background-image: url('images/palm-background.jpg');
  background-position: center;
  background-size: cover;
}
.login-view .logo {
  position: absolute;
  left: 50%;
  bottom: 50px;
  width: calc(100% - 60px);
  max-width: 500px;
  transform: translateX(-50%);
}
.login-view .form-box {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 400px;
  max-width: calc(100% - 40px);
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  transform: translateX(-50%);
}
.login-view .form-box input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #618138;
  border-radius: 0px;
  color: #618138;
  font-size: 20px;
  margin-bottom: 10px;
}
.login-view .form-box .submit-button {
  color: #618138;
  font-size: 22px;
}

