﻿/*
    Note: I love .scss

    Actual Note: in KeyWhere, css classes that are prefixed with 'js-' are only to
    be used for js manipulation, not for styling. Css classes without the 'js-'
    prefix should not be used for js manipulation. 

    MEDIA QUERIES

    Current Media Query Sizes:
     'p'  - Phone: 576px and up
     't'  - Tablet: 768px and up
     'd'  - Desktop: 992px and up
     'ld' - Large Desktop: 1200px and up

      @media only screen and (min-width: 576px) {
      }

      @media only screen and (min-width: 768px) {
      }

      @media only screen and (min-width: 992px) {
      }

      @media only screen and (min-width: 1200px) {
      }

    Z-INDEXES

    Leaving gaps here on purpose in case we add more elements that have special positioning

    0 - 25: Page/Form elements (stuff in the main content)
    50 - 75: Navigation/Menus/Sidebars
    100 - 125: Popups

    MUCH CSS. Index below (ctrl-f these headings to jump to a section):
        RESPONSIVE GRID LAYOUT 
        GENERAL ELEMENTS 
        TEXTBOXES/VALIDATION 
        HEADING/TEXT STYLES 
        PAGE/FORM LAYOUT 
        SEARCH AND SELECT 
        DROPDOWNS 
        CLOSE BUTTON 
        SNACKBAR 
        NAVIGATION 
        CHECKBOXES, RADIO BUTTONS, TOGGLES 
        BUTTONS & LINKS 
        JQUERY DATEPICKER STYLING 
        FILE UPLOADER 
        PAGE FRAMING ELEMENTS 
        SCROLL BARS 
        PILLS/DOTS BLINKING 
        CARDS 
        BLAND DATA TABLES 
        LIST PAGES/VIEW 
        TAB SYSTEM 
        POPUPS/LOADING SCREENS 
        KEY PANEL 
        DASHBOARD
        TOOLTIPS
*/
/* VARIABLE DEFINITION */
/*$paper: #ffffff;
$paper2: #f4f8fb;
$paper2: #eaf3fb;
$paper3: white;*/
[class*=col-] {
  float: left;
}

.col-p-1 {
  width: 8.33%;
}

.col-p-2 {
  width: 16.66%;
}

.col-p-3 {
  width: 25%;
}

.col-p-4 {
  width: 33.33%;
}

.col-p-5 {
  width: 41.66%;
}

.col-p-6 {
  width: calc(50% - 2px);
}

.col-p-7 {
  width: 58.33%;
}

.col-p-8 {
  width: 66.66%;
}

.col-p-9 {
  width: 75%;
}

.col-p-10 {
  width: 83.33%;
}

.col-p-11 {
  width: 91.66%;
}

.col-p-12 {
  width: 100%;
}

/* RESPONSIVE GRID LAYOUT */
@media only screen and (min-width: 576px) {
  [class*=col-] {
    float: left;
  }
  .col-p-1 {
    width: 8.33%;
  }
  .col-p-2 {
    width: 16.66%;
  }
  .col-p-3 {
    width: 25%;
  }
  .col-p-4 {
    width: 33.33%;
  }
  .col-p-5 {
    width: 41.66%;
  }
  .col-p-6 {
    width: calc(50% - 2px);
  }
  .col-p-7 {
    width: 58.33%;
  }
  .col-p-8 {
    width: 66.66%;
  }
  .col-p-9 {
    width: 75%;
  }
  .col-p-10 {
    width: 83.33%;
  }
  .col-p-11 {
    width: 91.66%;
  }
  .col-p-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  [class*=col-] {
    float: left;
  }
  .col-t-1 {
    width: 8.33%;
  }
  .col-t-2 {
    width: 16.66%;
  }
  .col-t-3 {
    width: 25%;
  }
  .col-t-4 {
    width: 33.33%;
  }
  .col-t-5 {
    width: 41.66%;
  }
  .col-t-6 {
    width: 50%;
  }
  .col-t-7 {
    width: 58.33%;
  }
  .col-t-8 {
    width: 66.66%;
  }
  .col-t-9 {
    width: 75%;
  }
  .col-t-10 {
    width: 83.33%;
  }
  .col-t-11 {
    width: 91.66%;
  }
  .col-t-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  [class*=col-] {
    float: left;
  }
  .col-d-1 {
    width: 8.33%;
  }
  .col-d-2 {
    width: 16.66%;
  }
  .col-d-3 {
    width: 25%;
  }
  .col-d-4 {
    width: 33.33%;
  }
  .col-d-5 {
    width: 41.66%;
  }
  .col-d-6 {
    width: 50%;
  }
  .col-d-7 {
    width: 58.33%;
  }
  .col-d-8 {
    width: 66.66%;
  }
  .col-d-9 {
    width: 75%;
  }
  .col-d-10 {
    width: 83.33%;
  }
  .col-d-11 {
    width: 91.66%;
  }
  .col-d-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  [class*=col-] {
    float: left;
  }
  .col-ld-1 {
    width: 8.33%;
  }
  .col-ld-2 {
    width: 16.66%;
  }
  .col-ld-3 {
    width: 25%;
  }
  .col-ld-4 {
    width: 33.33%;
  }
  .col-ld-5 {
    width: 41.66%;
  }
  .col-ld-6 {
    width: 50%;
  }
  .col-ld-7 {
    width: 58.33%;
  }
  .col-ld-8 {
    width: 66.66%;
  }
  .col-ld-9 {
    width: 75%;
  }
  .col-ld-10 {
    width: 83.33%;
  }
  .col-ld-11 {
    width: 91.66%;
  }
  .col-ld-12 {
    width: 100%;
  }
}
.row {
  width: 100%;
  padding: 0 16px;
}
@media (min-width: 992px) {
  .row {
    padding: 0px 20px;
  }
}
.row textarea {
  height: 80px;
}
@media (max-width: 575px) {
  .row {
    padding: 5px 16px;
  }
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.container {
  width: 100%;
  padding: 0px 15px;
}

.container-fluid {
  width: 100%;
  padding: 0;
  margin: 0;
}

.full-width {
  width: 100%;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

@media only screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
@media only screen and (min-width: 1450px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
}
/* GENERAL ELEMENTS */
*:focus {
  outline: none;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: #333333;
  margin: 0;
  height: 100%;
  position: relative;
  background-color: #f4f8fb;
}
@media (max-width: 575px) {
  body {
    font-size: 1.1rem;
  }
}

input::placeholder {
  overflow: visible;
}

hr {
  border: none;
  background-color: #f4f8fb;
  margin: 0;
}

hr.divider {
  border-top: 1px solid rgba(43, 110, 182, 0.15);
}

/* UTILITIES*/
/* marging */
/*
    1 -  .25rem   (4px if font-size is 16px)
    2 -  .5rem    (8px if font-size is 16px)
    3 -   1rem    (16px if font-size is 16px)
    4 -   1.5rem  (24px if font-size is 16px)
    5 -   3rem    (48px if font-size is 16px)
*/
.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.m-4 {
  margin: 1.5rem;
}

.m-5 {
  margin: 3rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 1rem;
}

.ml-4 {
  margin-left: 1.5rem;
}

.ml-5 {
  margin-left: 3rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 1rem;
}

.mr-4 {
  margin-right: 1.5rem;
}

.mr-5 {
  margin-right: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Padding (same as padding) */
.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 1rem;
}

.pl-4 {
  padding-left: 1.5rem;
}

.pl-5 {
  padding-left: 3rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 1rem;
}

.pr-4 {
  padding-right: 1.5rem;
}

.pr-5 {
  padding-right: 3rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* Font color */
.ire-orange {
  color: #ec7615;
}

.text-error {
  color: #f15c46;
}

.text-medium {
  color: #6b6b6b;
}

.text-primary {
  color: #2b6eb6;
}

.text-overdue {
  color: #7c10e9;
}

.collapse-minus {
  color: #2b6eb6;
  font-size: 24px;
}

/* Element Alignment */
.left {
  float: left;
}

.right {
  float: right;
}

.dt-filter-search {
  padding-right: 10px;
}

.inline-block {
  display: inline-block;
}

.text-center {
  text-align: center;
}

/* Vertical allign */
.middle > * {
  vertical-align: middle;
}

.top > * {
  vertical-align: top;
}

.bottom > * {
  vertical-align: bottom;
}

.border {
  border: 1px dashed red;
}

/*CURSOR*/
.pointer {
  cursor: pointer;
}

/* TEXTBOXES/VALIDATION */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #999999;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #999999;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #999999;
}

:-moz-placeholder { /* Firefox 18- */
  color: #999999;
}

textarea {
  resize: none;
  padding: 10px;
}

input[type=number],
input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=datetime-local],
input[type=tel],
input[type=datetime],
input[type=time],
textarea, select {
  font-family: var(--font-body);
  height: 40px;
  border-radius: 4px;
  border: solid 2px rgba(43, 110, 182, 0.15);
  background-color: white;
  /* 8px is to correct for margin*/
  width: calc(100% - 8px);
  padding: 12px;
  margin: 4px;
  display: block;
  color: #333333;
  font-size: 16px;
  line-height: 12px;
}
@media (max-width: 575px) {
  input[type=number],
  input[type=text],
  input[type=password],
  input[type=email],
  input[type=search],
  input[type=datetime-local],
  input[type=tel],
  input[type=datetime],
  input[type=time],
  textarea, select {
    font-size: 1.1rem;
  }
}

textarea {
  height: inherit !important;
  line-height: inherit !important;
}

input[type=number]:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=datetime-local]:focus,
input[type=tel]:focus,
input[type=datetime]:focus,
input[type=time]:focus,
textarea:focus, select:focus {
  border: solid 2px #2b6eb6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input[type=number]:disabled,
input[type=text]:disabled,
input[type=password]:disabled,
input[type=email]:disabled,
input[type=search]:disabled,
input[type=datetime-local]:disabled,
input[type=tel]:disabled,
input[type=datetime]:disabled,
input[type=time]:disabled,
textarea:disabled, select:disabled {
  border: solid 2px rgba(153, 153, 153, 0.4);
  background-color: rgba(153, 153, 153, 0.4);
}

input[type=number]:read-only,
input[type=text]:read-only,
input[type=password]:read-only,
input[type=email]:read-only,
input[type=search]:read-only,
input[type=datetime-local]:read-only,
input[type=tel]:read-only,
input[type=datetime]:read-only,
input[type=time]:read-only,
textarea:read-only, select:read-only {
  border: solid 2px rgba(153, 153, 153, 0.4);
  background-color: rgba(153, 153, 153, 0.4);
}

@media (max-width: 575px) {
  small {
    font-size: 1rem;
  }
}

.input-error {
  border: solid 2px #f15c46 !important;
  background-color: rgba(241, 92, 70, 0.05) !important;
}

.text-danger {
  color: #f15c46;
}

.text-info {
  color: #2b6eb6;
}

.text-note {
  color: #2b6eb6;
  font-size: 12px;
  line-height: normal;
}

.field-validation-error {
  font-size: 12px;
  padding-left: 4px;
  display: inline-block;
}

/* This exists to allow for form reset, hidden fields are not reset when 
    we call $('form').reset(); so we display-none a regular input */
.hidden-field {
  display: none !important;
}

.popup .sms-container {
  height: 120px;
}

.tab-system-tab .sms-container {
  height: 120px;
}

.password_requirement {
  margin-left: 5px;
  font-size: 13px;
}

.invalid.password_requirement {
  color: #2b6eb6;
}

.valid.password_requirement {
  color: #3db265;
}

/* HEADING/TEXT STYLES */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 0px;
  margin-top: 0px;
  display: inline-block;
  font-weight: normal;
  line-height: normal;
}

h1 {
  font-size: 32px;
  color: #333333;
}
@media (max-width: 575px) {
  h1 {
    font-size: 2.1rem;
  }
}

h2 {
  font-size: 24px;
  color: #6b6b6b;
}
@media (max-width: 575px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-size: 20px;
  color: #333333;
}
@media (max-width: 575px) {
  h3 {
    font-size: 1.6rem;
  }
}

h4 {
  font-size: 16px;
  color: #333333;
}
@media (max-width: 575px) {
  h4 {
    font-size: 1.2rem;
  }
}

h5 {
  font-size: 14px;
  color: #999999;
}
@media (max-width: 575px) {
  h5 {
    font-size: 1.1rem;
  }
}

h6 {
  font-size: 12px;
  color: #6b6b6b;
}
@media (max-width: 575px) {
  h6 {
    font-size: 1rem;
  }
}

.row h4 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.row h5 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.row h3 {
  margin-top: 8px;
  margin-bottom: 6px;
}

.row .filter {
  padding: 0px !important;
  margin-bottom: 6px;
  margin-left: -4px;
  min-width: 90px;
  /*    .dropdown {
          min-width: 50px;
      }*/
}

.input-caption {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #999999;
  display: inline-block;
  line-height: 1.21;
}
@media (max-width: 575px) {
  .input-caption {
    font-size: 1.1rem;
  }
}

.help-message {
  font-size: 12px;
  color: rgba(43, 110, 182, 0.8);
}

.indent-help-message {
  font-size: 12px;
  color: rgba(43, 110, 182, 0.8);
  padding-left: 24px;
}

.note-message {
  font-size: 12px;
  color: #333333;
}

.sub-heading {
  font-size: 12px;
  color: #999999;
  font-family: var(--font-body);
}
@media (max-width: 575px) {
  .sub-heading {
    font-size: 0.85rem;
  }
}

.note-text {
  margin-left: 4px;
  display: inline-block;
  font-size: 12px;
  color: #999999;
  font-family: var(--font-body);
}

.body-data {
  padding-bottom: 12px;
  word-break: break-all;
  word-wrap: break-word;
  display: flex;
  align-items: center;
}

.label-text .label-dark .label-medium .label-success, label-error, label-overdue {
  font-family: var(--font-body);
  line-height: normal;
  font-size: 16px;
}
@media (max-width: 575px) {
  .label-text .label-dark .label-medium .label-success, label-error, label-overdue {
    font-size: 14px;
  }
}

.label-text {
  color: #999999;
}

.label-dark {
  color: #333333;
}

.label-medium {
  color: #6b6b6b;
}

.label-success {
  color: #3db265;
}

.label-error {
  color: #f15c46;
}

.label-overdue {
  color: #7c10e9;
}

.text-hint {
  font-family: var(--font-body);
  line-height: normal;
  font-size: 12px;
  color: #999999;
}
@media (max-width: 575px) {
  .text-hint {
    font-size: 1rem;
  }
}

.text-code {
  font-family: fira-mono;
  overflow-x: auto;
  background-color: black;
  padding: 15px;
  max-height: 500px;
  width: 100%;
}
.text-code > div {
  white-space: pre;
}

/* Based on the colours PuTTY uses */
.text-code-colour-defaut,
.text-code-colour-white {
  color: rgb(187, 187, 187);
}

.text-code-colour-black {
  color: rgb(0, 0, 0);
}

.text-code-colour-red {
  color: rgb(187, 0, 0);
}

.text-code-colour-green {
  color: rgb(0, 187, 0);
}

.text-code-colour-yellow {
  color: rgb(187, 187, 0);
}

.text-code-colour-blue {
  color: rgb(0, 0, 187);
}

.text-code-colour-magenta {
  color: rgb(187, 0, 187);
}

.text-code-colour-cyan {
  color: rgb(0, 187, 187);
}

/* PAGE/FORM LAYOUT */
.page {
  margin: auto;
  position: relative;
  background-color: #f4f8fb;
  height: 100%;
  width: 100%;
}
.page .page-footer.btn-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.form-page {
  width: 100%;
  height: calc(100% - 64px);
  background-color: #f4f8fb;
  overflow-y: auto;
  overflow-x: hidden;
}
.form-page .page-footer.btn-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.heading-container {
  margin: 16px 16px 0px 16px;
  position: relative;
}
.heading-container .page-heading {
  padding: 0;
  height: auto;
}
@media (min-width: 992px) {
  .heading-container {
    margin: 16px 20px;
  }
}

.heading-btn-container {
  position: absolute;
  top: 6px;
  right: 20px;
}

.form-container {
  height: calc(100% - 40px);
  overflow-y: hidden;
  padding: 0 20px;
}
.form-container form {
  height: 100%;
}
.form-container > .list-heading-row {
  padding: 0;
}
.form-container > .list-container {
  height: calc(100% - 30px);
}
.form-container .btn-container {
  position: absolute;
  top: 2px;
  right: 8px;
}
@media (max-width: 575px) {
  .form-container {
    height: calc(100% - 55px);
    padding: 0px;
  }
}

.form-container-large {
  height: 100%;
  overflow-y: hidden;
}

.form-container-commander {
  height: calc(100% - 92px);
  overflow-y: hidden;
}
.form-container-commander form {
  height: 100%;
}

.w-space-pl {
  white-space: pre-line;
}

.w-space-pw {
  white-space: pre-wrap;
}

.w-space-bs {
  white-space: break-spaces;
}

.commander-header {
  width: 300px;
}
@media (max-width: 575px) {
  .commander-header {
    width: unset;
  }
}
@media (max-width: 575px) {
  .commander-header .icon-search {
    margin-left: 25px;
  }
}

@media (max-width: 575px) {
  .commander-options {
    max-height: 300px;
    overflow: auto;
  }
  .commander-options .row {
    padding: 0 16px;
  }
  .commander-options .col-ld-2 {
    width: 100%;
    padding: 5px 0px;
  }
}

.content-container {
  height: calc(100% - 64px);
  overflow-y: auto;
}
.content-container form {
  height: unset;
}

.email-container {
  width: 100%;
  overflow-x: auto;
}

.page-content {
  height: 100%;
}
@media (max-width: 1200px) {
  .page-content {
    height: calc(100% - 47px);
  }
}
@media (max-width: 575px) {
  .page-content {
    height: calc(100% - 52px) !important;
  }
}

.page-content-container {
  height: calc(100% - 60px);
  overflow-y: auto;
}

.page-heading .btn-container {
  position: absolute;
  top: 2px;
  right: 8px;
}

.page-heading .link {
  font-size: 20px;
}

.heading-container a {
  padding-top: 5px;
  padding-bottom: 5px;
}

.page-heading a:hover {
  cursor: pointer;
  opacity: 0.4;
}

.page-footer.btn-footer {
  bottom: 0;
  position: absolute;
  padding: 8px 10px;
}
.page-footer.btn-footer .footer-option {
  display: none;
}
@media (max-width: 575px) {
  .page-footer.btn-footer {
    padding: 4px 5px;
  }
}
@media (min-width: 768px) {
  .page-footer.btn-footer .footer-option {
    margin-right: 20%;
  }
  .page-footer.btn-footer .btn-container {
    float: right;
  }
}
@media (min-width: 1200px) {
  .page-footer.btn-footer .footer-option {
    margin-right: 35%;
  }
  .page-footer.btn-footer .btn-container {
    float: right;
  }
}

.page-footer {
  background-color: white;
}

.btn-footer {
  box-shadow: 0 -1px 6px 0 rgba(43, 110, 182, 0.15);
  width: 100%;
  background-color: white;
  text-align: center;
}

@media only screen and (min-width: 576px) {
  .footer-option {
    display: block !important;
    float: right;
  }
}
/* SEARCH AND SELECT */
.search-and-select {
  height: 100%;
  position: relative;
}

.search-and-select-container {
  position: relative;
  height: 100%;
}

.tab-system-tab {
  height: calc(100% - 100px);
}
@media only screen and (min-width: 1200px) {
  .tab-system-tab {
    height: calc(100% - 52px);
  }
}

.tab-system-tab .search-and-select-heading {
  display: none;
}

.search-and-select-message {
  font-size: 12px;
  color: #6b6b6b;
  margin: auto;
  height: 30px;
  text-align: center;
}

.search-and-select-message .small-loader {
  margin: auto;
}

.search-and-select-heading {
  text-align: center;
  padding-top: 16px;
}

.search-and-select-search {
  margin: 16px 16px 0px 16px;
  height: 48px;
}

.search-and-select input {
  background-image: url(../images/search.png);
  background-position-y: center;
  background-position-x: calc(100% - 8px);
  background-repeat: no-repeat;
  right: 8px;
}

.search-and-select-list {
  border-radius: 4px;
  margin: 0px 22px 0px 22px;
  height: calc(100% - 220px);
  overflow-y: auto;
  box-shadow: 0 2px 14px 0 rgba(43, 110, 182, 0.4);
  padding-top: 8px;
}
@media (max-width: 575px) {
  .search-and-select-list {
    height: calc(100% - 215px);
    margin: 0 12px;
  }
}

.select-item-heading {
  width: 100%;
}

.search-and-select .select-item {
  position: relative;
}

.select-item-click-area {
  padding: 12px 12px 8px 24px;
}

.search-and-select .select-item > div {
  display: inline-block;
}

.search-and-select .select-item:hover {
  background-color: #f4f8fb;
  cursor: pointer;
}

.select-item.selected {
  background-color: #f4f8fb;
}

.search-and-select-buttons.btn-footer {
  height: 64px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 575px) {
  .search-and-select-buttons.btn-footer {
    height: 56px;
    padding: 4px 5px;
  }
}

.search-and-select-buttons.btn-footer .footer-option {
  position: absolute;
  left: 12px;
  bottom: 8px;
}

.search-and-select-buttons.btn-footer .btn-container {
  position: absolute;
  right: 12px;
  bottom: 8px;
}
@media (max-width: 575px) {
  .search-and-select-buttons.btn-footer .btn-container {
    position: unset;
  }
}

.search-and-select-prompt {
  height: 52px;
  color: #2b6eb6;
  text-align: center;
  font-family: var(--font-heading);
  border: 2px dashed rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  margin: 4px;
  padding-top: 12px;
  background-color: white;
}

.search-and-select-prompt:hover {
  cursor: pointer;
  border: 2px dashed #2b6eb6;
}

.select-item-selector {
  width: 30px;
  position: absolute;
  right: 16px;
  top: 0px;
}

/* SEARCH AND DROPDOWN */
.search-and-dropdown {
  position: relative;
}

.dropdown-content.dropdown-search-items {
  display: none;
  position: absolute;
  color: #6b6b6b;
  width: 98%;
  position: absolute;
  background-color: #ffffff;
  z-index: 1;
  padding: 12px 0;
  border: 1px solid rgba(43, 110, 182, 0.15);
  box-sizing: border-box;
  border-radius: 4px;
  margin-top: 7px;
  margin-left: 4px;
  height: 180px;
  overflow-y: auto;
  overflow-x: hidden;
}

.search-and-dropdown input {
  background-image: url(../images/search.png);
  background-position-y: center;
  background-position-x: calc(100% - 8px);
  background-repeat: no-repeat;
  left: 8px;
}

.search-bar input {
  background-image: url(../images/search.png);
  background-position-y: center;
  background-position-x: calc(100% - 8px);
  background-repeat: no-repeat;
  left: 8px;
}

.search-bar {
  width: 35%;
}
@media (max-width: 575px) {
  .search-bar {
    width: 100%;
  }
}

.user-select-all {
  user-select: all;
}

/* DROPDOWNS */
.staff-dropdown {
  width: 180px;
}
@media (max-width: 575px) {
  .staff-dropdown {
    width: 150px;
  }
}

.panel-status-dropdown {
  width: 180px;
  text-align: left;
}

.client-type-dropdown {
  width: 180px;
  margin-top: 25px;
}

/*custom selectize*/
.selectize-control.custom-selectize.single .selectize-input,
.selectize-control.custom-selectize-search.single .selectize-input {
  height: 40px;
  color: #333333;
  background: white;
  border: solid 2px rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  box-shadow: none;
  font-size: 16px;
  margin: 4px;
}
@media (max-width: 575px) {
  .selectize-control.custom-selectize.single .selectize-input,
  .selectize-control.custom-selectize-search.single .selectize-input {
    font-size: 1.1rem;
  }
}
.selectize-control.custom-selectize.single .selectize-input input,
.selectize-control.custom-selectize-search.single .selectize-input input {
  font-size: 16px;
  height: auto;
}
@media (max-width: 575px) {
  .selectize-control.custom-selectize.single .selectize-input input,
  .selectize-control.custom-selectize-search.single .selectize-input input {
    font-size: 1.1rem;
    width: 100% !important;
  }
}

.selectize-control.custom-selectize.single .selectize-input {
  width: 95%;
}

.selectize-control.custom-selectize.single .selectize-input.input-active,
.selectize-control.custom-selectize-search.single .selectize-input.input-active {
  border: solid 2px #2b6eb6;
}

.selectize-control.custom-selectize-search.single .selectize-input:after {
  content: url(../images/search.png);
  display: block;
  position: absolute;
  top: 10px;
  right: 25px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: none;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

.selectize-control.custom-selectize.single .selectize-input:after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: rgba(43, 110, 182, 0.4);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.selectize-control.custom-selectize.single .selectize-input.dropdown-active:after {
  margin-top: -3px;
  top: 18px;
  border-width: 2px 0 0 2px;
  border-color: rgba(43, 110, 182, 0.4);
}

.selectize-dropdown.single.custom-selectize,
.selectize-dropdown.single.custom-selectize-search {
  color: #6b6b6b;
  background: white;
  border: solid 2px rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  font-size: 16px;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0 1px;
  margin-top: 1px;
  margin-left: 4px;
}
@media (max-width: 575px) {
  .selectize-dropdown.single.custom-selectize,
  .selectize-dropdown.single.custom-selectize-search {
    font-size: 1.1rem;
  }
}

.selectize-dropdown.single.custom-selectize-search {
  border: solid 2px #2b6eb6;
  border-top: none;
  margin-top: 0;
  margin-left: 4px;
  display: none !important;
}

.custom-select {
  position: relative;
  font-family: var(--font-body);
  font-size: 16px;
}
@media (max-width: 575px) {
  .custom-select {
    font-size: 1.1rem;
  }
}

/*hide original SELECT element:*/
.custom-select select {
  display: none;
}

/*custom selectize not sorted*/
.selectize-control.custom-selectize-notSorted.single .selectize-input,
.selectize-control.custom-selectize-notSorted-search.single .selectize-input {
  height: 40px;
  color: #333333;
  background: white;
  border: solid 2px rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  box-shadow: none;
  font-size: 16px;
  margin: 4px;
}
@media (max-width: 575px) {
  .selectize-control.custom-selectize-notSorted.single .selectize-input,
  .selectize-control.custom-selectize-notSorted-search.single .selectize-input {
    font-size: 1.1rem;
  }
}
.selectize-control.custom-selectize-notSorted.single .selectize-input input,
.selectize-control.custom-selectize-notSorted-search.single .selectize-input input {
  font-size: 16px;
  height: auto;
}
@media (max-width: 575px) {
  .selectize-control.custom-selectize-notSorted.single .selectize-input input,
  .selectize-control.custom-selectize-notSorted-search.single .selectize-input input {
    font-size: 1.1rem;
  }
}

.selectize-control.custom-selectize-notSorted.single .selectize-input {
  width: 95%;
}

.selectize-control.custom-selectize-notSorted.single .selectize-input.input-active,
.selectize-control.custom-selectize-notSorted-search.single .selectize-input.input-active {
  border: solid 2px #2b6eb6;
}

.selectize-control.custom-selectize-notSorted-search.single .selectize-input:after {
  content: url(../images/search.png);
  display: block;
  position: absolute;
  top: 10px;
  right: 25px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: none;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

.selectize-control.custom-selectize-notSorted.single .selectize-input:after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: rgba(43, 110, 182, 0.4);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.selectize-control.custom-selectize-notSorted.single .selectize-input.dropdown-active:after {
  margin-top: -3px;
  top: 18px;
  border-width: 2px 0 0 2px;
  border-color: rgba(43, 110, 182, 0.4);
}

.selectize-dropdown.single.custom-selectize-notSorted,
.selectize-dropdown.single.custom-selectize-notSorted-search {
  color: #6b6b6b;
  background: white;
  border: solid 2px rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  font-size: 16px;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0 1px;
  margin-top: 1px;
  margin-left: 4px;
}
@media (max-width: 575px) {
  .selectize-dropdown.single.custom-selectize-notSorted,
  .selectize-dropdown.single.custom-selectize-notSorted-search {
    font-size: 1.1rem;
  }
}

.selectize-dropdown.single.custom-selectize-notSorted-search {
  border: solid 2px #2b6eb6;
  border-top: none;
  margin-top: 0;
  margin-left: 4px;
}

.custom-selectize-notSorted {
  position: relative;
  font-family: var(--font-body);
  font-size: 16px;
}
@media (max-width: 575px) {
  .custom-selectize-notSorted {
    font-size: 1.1rem;
  }
}

/*hide original SELECT element:*/
.custom-selectize-notSorted select {
  display: none;
}

/*End custom-selectize-notSorted*/
.select-selected {
  height: 40px;
  color: #6b6b6b;
  background: white;
  border: solid 2px rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  padding: 8px 20px 0px 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 4px;
  display: block;
  /* Prevent text highlighting on cursor double click or drag */
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
}

.select-selected:focus {
  border: solid 2px #2b6eb6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  right: 16px;
  top: 12px;
  width: 6px;
  height: 6px;
  border: solid rgba(43, 110, 182, 0.4);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  content: "";
}

/*focus input when the select box is open (active):*/
.select-selected.select-arrow-active {
  border: solid 2px #2b6eb6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/*style the items (options), including the selected item:*/
.select-items div {
  padding: 8px 16px;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  color: #6b6b6b;
  position: absolute;
  background-color: white;
  border: solid 2px rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  box-shadow: 0 2px 8px 0 rgba(43, 110, 182, 0.15);
  top: calc(100% + 8px);
  left: 4px;
  right: 4px;
  z-index: 2;
  max-height: 180px;
  overflow-y: auto;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #f4f8fb;
}

/*DROPDOWN*/
/* The dropdown container */
.dropdown-menu {
  border: 1px solid rgba(43, 110, 182, 0.15);
  box-sizing: border-box;
  box-shadow: rgba(43, 110, 182, 0.3);
  border-radius: 4px;
  background-color: white;
  margin-top: 4px;
  display: none;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  color: #6b6b6b;
  width: 200px;
  position: absolute;
  background-color: #ffffff;
  z-index: 1;
  padding: 8px 0;
  border: 1px solid rgba(43, 110, 182, 0.15);
  box-sizing: border-box;
  border-radius: 4px;
  margin-top: 0;
}

.dropdown-item {
  text-decoration: none;
  color: #333333;
  display: block;
  line-height: 40px;
  padding: 0 16px;
}

.dropdown-item.link {
  margin-left: 0;
}

.dropdown-item.icon {
  width: 100%;
  line-height: 40px;
}

.user-profile .dropdown-item {
  width: 200px;
}

.dropdown-item:hover {
  background-color: #f4f8fb;
  cursor: pointer;
}

/* Add a background color to navbar links on hover */
.navbar a:hover {
  background-color: #f4f8fb;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  color: #6b6b6b;
  width: 200px;
  position: absolute;
  background-color: #ffffff;
  z-index: 1;
  padding: 8px 0;
  border: 1px solid rgba(43, 110, 182, 0.15);
  box-sizing: border-box;
  border-radius: 4px;
  margin-top: 0;
}

@media (max-width: 575px) {
  .user-profile .dropdown-content {
    right: 1px;
  }
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px 12px 32px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f4f8fb;
  color: #2b6eb6;
}

.datalist-container {
  position: relative;
}

/* Datalist */
datalist {
  font-size: 16px;
  z-index: 100;
  border: solid 2px rgba(43, 110, 182, 0.15);
  border-top: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-color: white;
  margin-left: 4px;
  display: none;
  width: calc(100% - 8px);
  color: #6b6b6b;
  background: white;
  padding: 0 1px;
  margin-top: 2px;
  margin-left: 4px;
  position: absolute;
  overflow-y: scroll;
  max-height: 182px;
}
datalist option {
  font-family: var(--font-body);
  font-size: 16px;
  text-decoration: none;
  color: #6b6b6b;
  display: block;
  line-height: 18px;
  padding: 4px 10px;
}
datalist option:hover, datalist .active {
  background-color: #f5fafd;
}

.show {
  display: block;
}

.hide {
  display: none !important;
}

.show-data {
  display: flex !important;
  flex-direction: column !important;
}

.user-profile {
  user-select: none;
}
.user-profile .drop-toggle {
  cursor: pointer;
}

.user-full {
  border: 1px solid #f4f8fb;
  min-width: 200px;
  padding: 2px 16px;
}

.user-circle {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.user-circle span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  margin-right: 5px;
}

.help-circle {
  text-decoration: none;
}

.logged-in-as {
  height: 64px;
  color: #999999;
  display: none;
  align-items: center;
}

.logged-in-as-small {
  line-height: normal;
  min-height: 40px;
  color: #999999;
  display: flex;
  align-items: center;
}

.nav-brand {
  padding: 14px !important;
}

.dot {
  height: 30px;
  width: 30px;
  background-color: #2b6eb6;
  border-radius: 50%;
  display: inline-block;
}

/* SNACKBAR */
.snackbar {
  font-family: var(--font-heading);
  box-shadow: 0px 2px 4px rgba(43, 110, 182, 0.15);
  min-height: 35px;
  color: white;
  padding: 5px;
  width: 320px;
  position: absolute;
  top: 16px;
  left: calc(50% - 160px);
  z-index: 100;
  border-radius: 4px;
  text-align: center;
}

.snackbar-good {
  background-color: #3cb365;
}

.snackbar-danger {
  background-color: #f15b45;
}

/* CHECKBOXES, RADIO BUTTONS, TOGGLES */
.input-container {
  display: inline-block;
  position: relative;
  padding-left: 34px;
  padding-right: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.7;
  margin: 8px 4px 8px 4px;
}

.cb-product {
  width: 180px;
}

.no-label {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.input-container input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.no-hover {
  pointer-events: none;
}

/* Checkboxes */
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: white;
  border-radius: 4px;
  border: solid 2px rgba(43, 110, 182, 0.15);
}

.checkmark-lg {
  margin-top: -2px;
  height: 36px !important;
  width: 36px !important;
}

.input-container .checkmark-lg:after {
  left: 12px !important;
  top: 6px !important;
  width: 6px !important;
  height: 14px !important;
}

/* On mouse-over, add the focus border */
.input-container:hover input ~ .checkmark {
  border: solid 2px #2b6eb6 !important;
}

/* When the checkbox is checked, add a green background */
.input-container input:checked ~ .checkmark {
  background-color: #3db265;
  border: solid 2px #3db265;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.input-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark */
.input-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Disabled styling when checked */
.input-container input:checked:disabled ~ .checkmark {
  background-color: #3db265;
  opacity: 0.4;
}

/* Disabled styling when not checked */
.input-container input:disabled ~ .checkmark {
  border: solid 2px rgba(153, 153, 153, 0.4);
  background-color: rgba(153, 153, 153, 0.4);
}

/*Radio buttons */
/* Create a custom radio button */
.circle {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: #f4f8fb;
  border: solid 2px rgba(43, 110, 182, 0.15);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* On mouse-over, add the focus border */
.input-container:hover input ~ .circle {
  border: solid 2px #2b6eb6;
}

/* When the checkbox is checked, add a green background */
.input-container input:checked ~ .circle {
  /*background-color: $success;
  border: none;*/
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.circle:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.input-container input:checked ~ .circle:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.input-container .circle:after {
  top: 0px;
  left: 0px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #3db265;
  border: 4px solid white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* Disabled styling when not checked */
.input-container input:disabled ~ .circle {
  border: solid 2px rgba(153, 153, 153, 0.4);
  background-color: rgba(153, 153, 153, 0.4);
}

/* Disabled styling when checked */
.input-container input:checked:disabled ~ .circle:after {
  opacity: 0.4;
}

.input-container input:checked:disabled ~ .circle {
  background-color: #f4f8fb;
}

/*Toggles/Switches*/
.toggle-container {
  position: relative;
  display: inline-block;
  padding-top: 2px;
  padding-left: 60px;
  padding-right: 12px;
}

.toggle-container input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle {
  position: absolute;
  cursor: pointer;
  width: 48px;
  height: 24px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #999999;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}

.toggle:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  top: 2px;
  left: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle {
  background-color: #3db265;
}

input:checked + .toggle:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}

/* Disabled styling when checked */
.toggle-container input:checked:disabled ~ .toggle {
  opacity: 0.4;
  cursor: default !important;
}

/* Disabled styling when not checked */
.toggle-container input:disabled ~ .toggle {
  opacity: 0.4;
  cursor: default !important;
}

/* BUTTONS & LINKS */
.btn {
  font-family: var(--font-heading);
  font-size: 16px;
  height: 40px;
  min-width: 150px;
  border-radius: 4px;
  border: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  text-decoration: none;
  /* Prevent text highlighting on cursor double click or drag */
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
}
@media (max-width: 575px) {
  .btn {
    font-size: 1.1rem;
    height: 40px;
    min-width: 120px;
    padding: 0px 10px;
  }
}

.btn-small {
  font-size: 14px;
  height: 32px;
  min-width: 120px;
  border-radius: 4px;
  border: none;
}

.btn-small-square {
  font-family: var(--font-heading);
  font-size: 16px;
  height: 40px;
  min-width: 40px;
  border-radius: 4px;
  border: none;
  padding-left: 15px;
  padding-right: 12px;
  /* for <a> elements that have been styled as buttons */
  text-align: center;
  padding-top: 6px;
  display: inline-block;
  margin: 4px;
  text-decoration: none;
  /* Prevent text highlighting on cursor double click or drag */
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
}
@media (max-width: 575px) {
  .btn-small-square {
    font-size: 14px;
    height: 32px;
    min-width: 120px;
    padding-top: 4px;
  }
}

.btn:hover {
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(43, 110, 182, 0.15);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btn:active {
  opacity: 0.4 !important;
}

.btn:disabled {
  opacity: 0.4;
}

.btn:disabled:hover {
  cursor: default !important;
  box-shadow: none !important;
  opacity: 0.4 !important;
}

.btn-major {
  background-color: #2b6eb6;
  color: #ffffff;
  border: solid 1px #2b6eb6;
}

.btn-major:hover {
  opacity: 0.8;
}

.btn-minor {
  background-color: #f4f8fb;
  color: #2b6eb6;
  border: solid 1px rgba(43, 110, 182, 0.12);
}

.btn-minor.highlighted {
  border: solid 1px #2b6eb6;
}

.btn-minor:hover {
  opacity: 0.8;
}

.btn-error {
  background-color: #f15c46;
  color: #ffffff;
  border: solid 1px #f15c46;
}

.btn-error:hover {
  opacity: 0.8;
}

.btn-complete-container {
  text-align: center;
}

.btn-plus-expand {
  display: none;
}

@media (max-width: 1200px) {
  .btn-plus-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 10px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #3db265;
    color: white;
    text-decoration: none;
  }
}
.btn-drop-down-container {
  margin-bottom: 15px;
  height: 40px;
}

.btn-drop-down-container > div {
  height: 40px;
  background-color: #2b6eb6;
  color: white;
  position: relative;
  width: 178px;
  margin: auto;
  border-radius: 4px;
}

.btn-drop-down {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 40px;
  background-color: #2b6eb6;
  color: white;
  margin: 0px;
  width: 138px;
  min-width: inherit;
  z-index: 5;
}

@media (max-width: 575px) {
  .btn-drop-down {
    padding-top: 6px;
  }
}
.btn-dropdown-arrow {
  width: 40px;
  border-left: 1px solid rgba(51, 51, 51, 0.15);
  height: 40px;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 12px;
}

.btn-drop-down-container .select-selected {
  opacity: 0;
}

.btn-drop-down-container .select-items {
  background-color: #2b6eb6;
  color: white;
  top: calc(100% + 8px);
  left: 0px;
  right: 0px;
}

.btn-drop-down-container .select-items div:hover {
  color: white;
  background-color: #709ece;
}

.menu-drop-down-container {
  margin-bottom: 15px;
  height: 40px;
}

.menu-drop-down-container > div {
  height: 40px;
  background-color: #3db265;
  color: white;
  position: relative;
  width: 176px;
  margin: auto;
  border-radius: 4px;
}

.menu-drop-down-btn {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 40px;
  background-color: #3db265;
  color: white;
  margin: 0px;
  width: 136px;
  min-width: inherit;
  z-index: 5;
}

.menu-dropdown-arrow {
  width: 40px;
  border-left: 1px solid rgba(51, 51, 51, 0.15);
  height: 40px;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 12px;
}

.menu-drop-down-container .select-selected {
  opacity: 0;
}

.menu-drop-down-container .select-items {
  background-color: #3db265;
  color: white;
  top: calc(100% + 8px);
  left: 0px;
  right: 0px;
}

.menu-drop-down-container .select-items {
  background-color: #3db265;
  top: calc(100% + 8px);
  left: 0px;
  right: 0px;
}

.menu-drop-down-container .select-items div:hover {
  color: white;
  background-color: rgb(87, 212, 129);
}

input[type=submit].btn, input[type=button].btn {
  padding-top: 0px; /* 'real' buttons do not need top-padding, but <a> elements with btn class do */
}

.link {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #2b6eb6;
  text-decoration: none;
}
@media (max-width: 575px) {
  .link {
    font-size: 1.1rem;
  }
}

.disable {
  opacity: 0.4;
}

.disable:hover {
  opacity: 0.4 !important;
  cursor: default !important;
}

.link.small-link {
  font-size: 12px;
  /*margin: 0px !important;*/
}
@media (max-width: 575px) {
  .link.small-link {
    font-size: 1rem;
  }
}

.link.medium-link {
  font-size: 14px;
}
@media (max-width: 575px) {
  .link.medium-link {
    min-width: 60px;
    font-size: 1.1rem;
  }
}

.wide-link {
  min-width: 100px;
  display: inline-block;
  text-align: center;
}
@media (max-width: 575px) {
  .wide-link {
    min-width: 60px;
  }
}

.text-link {
  font-family: var(--font-body);
  text-decoration-line: underline;
  color: #2b6eb6;
}

.link:hover {
  opacity: 0.8;
  cursor: pointer;
}

.link:disabled {
  opacity: 0.4;
}

.link:active {
  opacity: 0.4 !important;
}

/* FIND EXISTING */
.search-for-existing {
  color: #2b6eb6;
}

.search-for-existing div {
  display: inline-block;
  margin: 4px;
}

.search-for-existing span {
  padding-left: 8px;
}

.search-for-existing .loader {
  display: inline-block;
  padding-left: 8px;
  margin-top: 9px;
}

.add-new-supplier-prompt, .add-new-retail-price-prompt {
  height: 52px;
  min-width: 250px;
  color: #2b6eb6;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  border: 2px dashed rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  padding-top: 12px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: white;
  /* for <a> elements that have been styled as buttons */
  text-align: center;
  display: inline-block;
  text-decoration: none;
  /* Prevent text highlighting on cursor double click or drag */
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
}
@media (max-width: 575px) {
  .add-new-supplier-prompt, .add-new-retail-price-prompt {
    font-size: 14px;
    height: 52px;
    min-width: 120px;
  }
}

.add-new-supplier-prompt:hover, .add-new-retail-price-prompt:hover {
  cursor: pointer;
  border: 2px dashed #2b6eb6;
}

/* NAVIGATION */
@media only screen and (max-width: 767px) {
  .main-content {
    width: 100% !important;
  }
}
@media only screen and (min-width: 768px) {
  .main-content {
    width: calc(100% - 80px);
  }
  .action-sidebar {
    width: 50% !important;
  }
}
@media only screen and (min-width: 992px) {
  .products-dropdown {
    display: block !important;
  }
  .action-sidebar {
    width: 43% !important;
  }
}
@media only screen and (min-width: 1200px) {
  .main-content {
    width: calc(100% - 220px);
  }
  .action-sidebar {
    width: 40% !important;
  }
}
.top-nav-item {
  display: flex;
  align-items: center;
  height: 64px;
}

.top-nav-container {
  height: 64px;
  width: 100%;
  box-shadow: 0 2px 8px 0 rgba(43, 110, 182, 0.15);
  z-index: 2;
  position: fixed;
  background-color: white;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
}

.top-nav-container img {
  padding: 16px 8px 16px 24px;
}

.top-nav-container .select-selected {
  background-color: #f4f8fb;
}

.nav-container-left {
  display: flex;
  flex: 1;
}
.nav-container-left .global-search-wrapper {
  height: 42px !important;
  align-self: center;
}

@media only screen and (max-width: 1450px) {
  .global-search-wrapper {
    width: 400px;
  }
}
.nav-container-right {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .nav-container-right {
    flex: 6;
  }
}
@media (min-width: 992px) {
  .nav-container-right {
    flex: 2;
  }
}

.expanded-menu-container {
  height: calc(100vh - 64px);
  position: absolute;
  top: 64px;
  left: 0;
  z-index: 1;
}
.expanded-menu-container .menu-item {
  display: flex !important;
  align-items: center;
}
.expanded-menu-container i {
  padding-top: 0 !important;
}

.collapsed-main-menu {
  display: flex;
}

#ExpandedMenuCover {
  background-color: rgba(43, 110, 182, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
}

.kwm-label {
  display: inline-block;
}

@media only screen and (max-width: 980px) {
  .kwm-label {
    display: none;
  }
}
/* JQUERY DATEPICKER STYLING */
.ui-datepicker.ui-widget {
  font-family: var(--font-heading);
  border: solid 2px rgba(43, 110, 182, 0.15);
  box-shadow: 0 2px 8px 0 rgba(43, 110, 182, 0.15);
}

.ui-datepicker-next > span,
.ui-datepicker-prev > span {
  background-position: center;
  background-size: 24px;
}

.ui-datepicker-next {
  position: absolute;
  right: 18px;
  top: 20px;
}

.ui-datepicker-prev {
  position: absolute;
  right: 50px;
  top: 20px;
}

.ui-datepicker-next > span {
  background-image: url(../images/dp-next.png) !important;
}

.ui-datepicker-prev > span {
  background-image: url(../images/dp-prev.png) !important;
}

.ui-datepicker-next .ui-icon,
.ui-datepicker-prev .ui-icon {
  height: 24px;
  width: 24px;
}

.ui-datepicker-next:hover, .ui-datepicker-prev:hover {
  opacity: 0.6;
  border: none !important;
  background: white !important;
}

.ui-datepicker .ui-widget-header {
  font-size: 20px;
  color: #6b6b6b;
  border: none;
  background: white;
  position: relative;
  padding: 12px 24px 4px 24px;
}

.ui-datepicker .ui-widget-header .ui-datepicker-title {
  line-height: 1;
}

.ui-datepicker .ui-datepicker-calendar {
  padding: 12px;
}

.ui-datepicker .ui-datepicker-calendar td {
  width: 36px;
  text-align: center;
}

.ui-datepicker .ui-datepicker-calendar th {
  color: #6b6b6b;
  opacity: 0.5;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-default {
  border: none;
  background: white;
  color: #2b6eb6;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-default:hover {
  opacity: 0.5;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-highlight {
  color: #3db265 !important;
}

input.js-datepicker {
  background-image: url(../images/calendar.png);
  background-position-y: center;
  background-position-x: calc(100% - 8px);
  right: 8px;
  background-repeat: no-repeat;
}

input:read-only.js-datepicker {
  background-image: url(../images/calendar.png);
  background-position-y: center;
  background-position-x: calc(100% - 8px);
  right: 8px;
  background-repeat: no-repeat;
  border: solid 2px rgba(43, 110, 182, 0.15);
  background-color: white;
}

input:disabled.js-datepicker {
  border: solid 2px rgba(153, 153, 153, 0.4);
  background-color: rgba(153, 153, 153, 0.4);
}

input:read-only.js-datetimepicker {
  background-image: url(../images/calendar.png);
  background-position-y: center;
  background-position-x: calc(100% - 8px);
  right: 8px;
  background-repeat: no-repeat;
  border: solid 2px rgba(43, 110, 182, 0.15);
  background-color: white;
}

input:disabled.js-datetimepicker {
  border: solid 2px rgba(153, 153, 153, 0.4);
  background-color: rgba(153, 153, 153, 0.4);
}

.ui-datepicker .ui-datepicker-buttonpane button {
  background-color: #2b6eb6;
  color: #ffffff;
  border: solid 1px #2b6eb6;
  font-family: var(--font-body);
  font-size: 14px;
}

.ui_tpicker_time_label,
.ui_tpicker_hour_label,
.ui_tpicker_minute_label {
  color: #6b6b6b;
  font-family: var(--font-body);
  font-size: 14px;
}
@media (max-width: 575px) {
  .ui_tpicker_time_label,
  .ui_tpicker_hour_label,
  .ui_tpicker_minute_label {
    font-size: 1.1rem;
  }
}

.ui-tpicker-grid-label {
  color: #2b6eb6;
  font-size: 14px;
  color: #6b6b6b;
}

.ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input {
  border: none;
  font-size: 14px;
  color: #333333;
}
@media (max-width: 575px) {
  .ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input {
    font-size: 1.1rem;
  }
}

.ui-timepicker-div td {
  font-size: 10px;
  color: #2b6eb6;
}

.ui-timepicker-div dl dd {
  margin: 0 5px 5px 40%;
}

.ui-timepicker-div dl {
  margin: 0;
}

@media (max-width: 575px) {
  .ui-timepicker-div .ui-timepicker-select {
    padding: 5px;
  }
}

/* FILE UPLOADER */
.file-uploader {
  position: relative;
  margin: 4px;
}

.file-uploader .upload-area {
  height: 88px;
  width: 100%;
  border: 2px dashed rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  background-color: white;
  text-align: center;
  padding-top: 12px;
  color: #999999;
}

.file-uploader .file-preview {
  position: relative;
  width: 100%;
  border: solid 2px rgba(43, 110, 182, 0.15);
  text-align: center;
  border-radius: 4px;
}

.file-uploader .file-preview img {
  max-width: 200px;
  max-height: 170px;
  margin-top: 6px;
}

.file-uploader .file-input {
  display: none;
}

.file-uploader .dragover {
  border: 2px dashed #2b6eb6;
}

.file-uploader .loader {
  margin: auto;
  margin-top: 36px;
}

.key-image {
  max-width: 200px;
  max-height: 170px;
}

/* CLOSE BUTTON*/
.close {
  position: absolute;
  right: -8px;
  top: -8px;
  font-size: 18px;
  color: rgba(43, 110, 182, 0.4);
  border-radius: 50%;
}

.close:hover {
  cursor: pointer;
  color: #2b6eb6;
}

.close-attach {
  position: absolute;
  right: -8px;
  top: -8px;
  font-size: 18px;
  color: rgba(43, 110, 182, 0.4);
  border-radius: 50%;
}

.close-attach:hover {
  cursor: pointer;
  color: #2b6eb6;
}

/* PAGE FRAMING ELEMENTS */
.main-content {
  height: calc(100vh - 64px);
  position: relative;
  background-color: #f4f8fb;
  float: left;
  top: 64px;
  z-index: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.main-container {
  float: left;
  height: 100%;
  width: calc(100% - 220px);
}

.side-nav-container {
  margin-top: 64px;
  float: left;
  height: calc(100vh - 64px);
  position: relative;
  z-index: 1;
}

.collapsed-main-menu-container {
  height: 40px;
  width: 100%;
}

.collapsed-main-menu {
  color: #fefeff;
  font-size: 0; /*prevents stupid whitespace in between inline-block elements*/
  text-align: left;
}

.collapsed-main-menu .menu-item {
  display: inline-block;
}

.collapsed-main-menu i {
  padding-top: 11px;
}

.expanded-menu-container .main-menu {
  width: 260px;
}

.main-menu {
  background-color: white;
  color: #999999;
  width: 220px;
  position: relative;
  z-index: 0;
  height: calc(100vh - 64px);
  flex-direction: column;
}
@media (max-width: 575px) {
  .main-menu {
    width: 260px;
  }
}

.minimize-menu {
  background-color: white;
  color: #999999;
  width: 80px;
  position: relative;
  z-index: 0;
  height: calc(100vh - 64px);
  flex-direction: column !important;
}
.minimize-menu .vertical-words-menu {
  padding-top: 10px;
  padding-left: 8px;
}

.main-menu-top {
  width: 100%;
  overflow-y: auto;
  padding-top: 20px;
}

.main-menu-separator {
  height: 1px;
  margin: 0 20px;
  background-color: #d6e3f1;
  margin-top: auto;
}

.main-menu-bottom {
  width: 100%;
  padding-bottom: 25px;
}

.menu-item {
  font-family: var(--font-heading);
  font-size: 18px;
  height: 48px;
  text-decoration: none;
  color: #999999;
  padding: 6px 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  /* Prevent text highlighting on cursor double click or drag */
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Standard syntax */
}
@media (max-width: 575px) {
  .menu-item {
    font-size: 1.4rem;
    height: 48px;
    padding: 4px 0;
  }
}

.menu-item:hover {
  background-color: #f4f8fb;
  cursor: pointer;
}

.menu-item-active {
  background-color: #f4f8fb;
  color: #2b6eb6;
}

.menu-item i {
  width: 40px;
  text-align: center;
}

.menu-item span {
  display: inline-block;
  padding-left: 4px;
}

.hamburger-menu {
  color: #999999;
  font-size: 18px;
}
@media (max-width: 575px) {
  .hamburger-menu {
    font-size: 16px;
  }
}

.hamburger-menu i {
  width: 40px;
}

.vertical-words-menu .menu-item {
  display: block;
  padding-left: 8px;
}

.vertical-words-menu {
  padding-left: 16px;
}

.vertical-words-menu i {
  padding-top: 10px;
}

.menu-item-tab-list {
  height: 0px;
  width: 0px;
  transition: height 0.4s, width 0.3s;
  position: absolute;
  margin-top: -65px; /*Offset*/
  top: 0px;
  left: 220px;
  display: inline;
  overflow: hidden;
  background-color: white;
  color: #999999;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin-right: 0px;
}

.menu-item-tab {
  white-space: nowrap;
  padding-right: 0px;
}

.menu-item-tab-a {
  display: block;
}

.menu-item-tab-a-active {
  background-color: #f4f8fb;
  color: #2b6eb6;
}

.products-dropdown {
  margin-left: 8px;
  width: 220px;
  float: left;
  display: none;
}

.products-dropdown .select-selected:after {
  margin-top: 4px;
}

.expanded-menu-dropdown-items {
  display: none;
  background-color: #edf0f3;
}

.expanded-menu-dropdown-item {
  padding-left: 60px;
}

.expanded-menu-dropdown-icon {
  float: right;
  margin-left: auto;
}

/* SCROLL BARS */
/* Width */
::-webkit-scrollbar {
  border-radius: 8px;
  width: 6px;
  height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 8px;
  background: #f4f8fb;
  padding-right: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #999999;
  margin-right: 1px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #6b6b6b;
}

/* KEY PANEL */
.mute-circle-btn {
  position: absolute;
  left: 16px;
}
.mute-circle-btn :hover {
  cursor: pointer;
}
.mute-circle-btn img {
  background-color: #f15c46;
  border-radius: 50%;
  padding: 10px;
}

/*.mute-circle-btn.btn-container {
    left: 8px !important;
    right:unset;
}*/
@media only screen and (max-width: 576px) {
  #panelContent .panel-container {
    padding: 6px;
  }
  .panel-container .key-panel {
    margin: 16px 0;
  }
  .panel-container .key-panel .key-panel-row:nth-child(odd) {
    margin-left: 13.5px;
  }
  .panel-container .key-panel .key-panel-row:nth-child(even) {
    margin-right: 13.5px;
  }
  .key-panel .hook-container {
    width: 20px;
    height: 27.5px;
    margin: 0 1px;
    padding-top: 1px;
  }
  .key-panel .hook-container .led-indicator-large {
    width: 10px;
    height: 10px;
    display: block;
    margin: auto;
  }
  .key-count {
    font-size: 9px;
  }
  .key-count h5 {
    font-size: 9px;
  }
}
.action-sidebar-form-background .card-asset {
  width: auto;
  height: auto;
}
.action-sidebar-form-background .card-key {
  height: auto;
}

@media only screen and (max-width: 768px) {
  .action-sidebar-form-background .card-key {
    width: auto;
  }
}
.panel-action:hover {
  cursor: pointer;
}
.panel-action:hover .led-indicator-large {
  background-color: rgba(43, 110, 182, 0.4);
  width: 15px;
  height: 15px;
}
@media (max-width: 575px) {
  .panel-action:hover .led-indicator-large {
    width: 10px;
    height: 10px;
  }
}

.led-indicator-large.led-indicator-active {
  background-color: rgba(43, 110, 182, 0.4);
  width: 14px;
  height: 14px;
}
@media (max-width: 575px) {
  .led-indicator-large.led-indicator-active {
    width: 10px;
    height: 10px;
  }
}

.panel-container {
  padding: 12px;
  text-align: center;
  user-select: none;
}

.page .tab-system-tab .panel-container {
  height: calc(100% - 50px);
  overflow-y: auto;
  overflow-x: hidden;
}

.page .panel-container {
  height: calc(100% - 120px);
  overflow-y: auto;
  overflow-x: hidden;
}

.key-panel {
  background: white;
  box-shadow: 0px 2px 8px rgba(43, 110, 182, 0.3);
  border-radius: 32px;
  padding: 20px 12px 20px 12px;
  display: inline-block;
  margin: 16px 20px;
}

.key-panel-row:nth-child(odd) {
  margin-left: 22px;
}

.key-panel-row:nth-child(even) {
  margin-right: 22px;
}

.panel-name {
  border-top: solid 2px rgba(43, 110, 182, 0.15);
  border-width: 1px;
  margin: 16px 12px 0px 12px;
  padding-top: 12px;
  position: relative;
}

.btn-edit:hover {
  color: #2b6eb6;
  cursor: pointer;
}

.hook-container {
  display: inline-block;
  height: 44px;
  width: 32px;
  margin: 0px 4px 0px 4px;
  padding-top: 4px;
  text-align: center;
}

.led-indicator-large {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.led-indicator-small {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.led-indicator-grey {
  background-color: #999999;
}

.led-indicator-green {
  background-color: #3db33d;
}

.led-indicator-greenpulse {
  background-color: #3db33d;
  animation: pulse 1.5s infinite;
  -moz-animation: pulse 1.5s infinite; /* Firefox */
  -webkit-animation: pulse 1.5s infinite; /* Safari and Chrome */
}

.led-indicator-blue {
  background-color: #2626d9;
}

.led-indicator-bluepulse {
  background-color: #2626d9;
  animation: pulse 1.5s infinite;
  -moz-animation: pulse 1.5s infinite; /* Firefox */
  -webkit-animation: pulse 1.5s infinite; /* Safari and Chrome */
}

.led-indicator-red {
  background-color: #f15c46;
}

.led-indicator-redflash {
  background-color: #f15c46;
  animation: pulse 0.3s infinite;
  -moz-animation: pulse 0.3s infinite; /* Firefox */
  -webkit-animation: pulse 0.3s infinite; /* Safari and Chrome */
}

.led-indicator-whitepulse {
  background-color: #ffffff;
  animation: pulse 1.5s infinite;
  -moz-animation: pulse 1.5s infinite; /* Firefox */
  -webkit-animation: pulse 1.5s infinite; /* Safari and Chrome */
}

.led-indicator-aquapulse {
  background-color: #5cc7c7;
  animation: pulse 1.5s infinite;
  -moz-animation: pulse 1.5s infinite; /* Firefox */
  -webkit-animation: pulse 1.5s infinite; /* Safari and Chrome */
}

.led-indicator-orangepulse {
  background-color: #F69529;
  animation: pulse 1.5s infinite;
  -moz-animation: pulse 1.5s infinite; /* Firefox */
  -webkit-animation: pulse 1.5s infinite; /* Safari and Chrome */
}

.led-indicator-lightorangepulse {
  background-color: #ffde80;
  animation: pulse 1.5s infinite;
  -moz-animation: pulse 1.5s infinite; /* Firefox */
  -webkit-animation: pulse 1.5s infinite; /* Safari and Chrome */
}

.led-indicator-purple {
  background-color: #7c10e9;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
/* PILLS/DOTS */
.page-heading .large-pill {
  vertical-align: top;
}

.large-pill, .normal-pill, .small-pill {
  display: inline-block;
}

.pill {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.small-pill .pill {
  font-family: var(--font-heading);
  font-size: 12px;
  padding: 0px 8px 0px 6px;
  height: 16px;
  border-radius: 8px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .small-pill .pill {
    font-size: 1rem;
    padding: 0px 12px 0px 10px;
    height: 20px;
  }
}

.normal-pill .pill {
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 0px 10px 0px 8px;
  height: 20px;
  border-radius: 10px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .normal-pill .pill {
    font-size: 1.1rem;
  }
}

.large-pill .pill {
  font-family: var(--font-heading);
  font-size: 16px;
  padding: 0px 12px 0px 10px;
  height: 24px;
  border-radius: 12px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .large-pill .pill {
    font-size: 1.2rem;
  }
}

.led-indicator {
  margin-right: 4px;
}

.large-pill .led-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.normal-pill .led-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.small-pill .led-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pill-text {
  display: inline-block;
}

.large-pill .pill-text {
  margin-top: 0.5px;
}

.pill-grey {
  color: #6b6b6b;
  background-color: rgba(107, 107, 107, 0.15);
}

.pill-green {
  color: #3db33d;
  background-color: rgba(61, 179, 61, 0.15);
}

.pill-greenpulse {
  color: #3db33d;
  background-color: rgba(61, 179, 61, 0.15);
}

.pill-blue {
  color: #2626d9;
  background-color: rgba(38, 38, 217, 0.15);
}

.pill-bluepulse {
  color: #2626d9;
  background-color: rgba(38, 38, 217, 0.15);
}

.pill-purple {
  color: #7c10e9;
  background-color: rgba(124, 16, 233, 0.15);
}

.pill-red {
  color: #f15c46;
  background-color: rgba(241, 92, 70, 0.15);
}

.pill-redflash {
  color: #f15c46;
  background-color: rgba(241, 92, 70, 0.15);
}

.pill-aquapulse {
  color: #5cc7c7;
  background-color: rgba(92, 199, 199, 0.15);
}

.pill-orangepulse {
  color: #F69529;
  background-color: rgba(246, 149, 41, 0.15);
}

/*note for above: there is no 'correct position' pill (makes no sense) */
/* CARDS */
.card {
  border: solid 2px rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  background: white;
  padding: 12px 16px;
  margin: 0px 16px 16px 0px;
  position: relative;
  user-select: none;
  line-height: 0.9;
}
.card h4 {
  margin: 0;
  width: 100%;
}
.card h6 {
  margin: 0;
  font-family: var(--font-body);
  color: #999999;
}
.card a {
  text-decoration: none;
}
.card :visited {
  color: unset;
}

.card-key {
  width: 250px;
  height: 100px;
  display: inline-block;
}
@media (max-width: 575px) {
  .card-key {
    height: 140px;
  }
}

.card-part {
  cursor: pointer;
  width: 250px;
  height: 100px;
  display: inline-block;
}

.card-supplier-part {
  height: 120px !important;
}

.card-popart {
  cursor: pointer;
  width: 250px;
  height: 150px;
  display: inline-block;
}

.card-process {
  cursor: pointer;
  width: 250px;
  min-height: 80px;
  display: inline-block;
}

.card-process:active {
  cursor: pointer;
  background-color: rgba(43, 110, 182, 0.15);
  box-shadow: 0 2px 8px 0 rgba(43, 110, 182, 0.15);
}

.card-process:hover:not(:active) {
  cursor: pointer;
  background-color: rgba(43, 110, 182, 0.15);
  box-shadow: 0 2px 8px 0 rgba(43, 110, 182, 0.15);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.card-jobprocess {
  cursor: pointer;
  width: 280px;
  min-height: 80px;
  display: inline-block;
}

.card-supplier {
  cursor: pointer;
  width: 250px;
  height: 100px;
  display: inline-block;
}

.card-partsupplierlink {
  cursor: pointer;
  width: 220px;
  min-height: 100px;
  display: inline-block;
}

.card-retailpricelink {
  cursor: pointer;
  width: 280px;
  min-height: 100px;
  display: inline-block;
}

.card-warehouse {
  cursor: pointer;
  width: 250px;
  height: 100px;
  display: inline-block;
}

.card-bin {
  cursor: pointer;
  width: 250px;
  height: 80px;
  display: inline-block;
}

.card-jobtemplate {
  cursor: pointer;
  width: 250px;
  height: 80px;
  display: inline-block;
}

.card-tracker {
  width: 250px;
  height: 100px;
  display: inline-block;
}

.card-asset {
  width: 355px;
  min-height: 92px;
  display: inline-block;
}
@media (max-width: 575px) {
  .card-asset {
    width: 290px;
  }
}

.card-loan {
  width: 319px;
  min-height: 66px;
  display: inline-block;
}
@media (max-width: 575px) {
  .card-loan {
    width: 290px;
  }
}

.card-staff, .card-borrower, .card-owner, .card-tenant {
  width: 243px;
  min-height: 92px;
  display: inline-block;
}

.card-file {
  width: 306px;
  min-height: 70px;
}
@media (max-width: 575px) {
  .card-file {
    width: 290px;
  }
}

.card-attach {
  width: 306px;
  min-height: 70px;
}
.card-attach img {
  height: 100%;
  max-width: 200px;
  margin: auto;
}
@media (max-width: 575px) {
  .card-attach {
    width: 290px;
  }
}

.card-image {
  width: 306px;
  height: 92px;
  text-align: center;
  padding: unset;
}
.card-image img {
  height: 100%;
  max-width: 200px;
}
@media (max-width: 575px) {
  .card-image {
    width: 290px;
  }
}

.image-card {
  padding: 4px 0px;
  text-align: center;
}

.image-card img {
  max-width: 200px;
  max-height: 150px;
  vertical-align: middle;
}

.card-details {
  vertical-align: top;
  display: inline-block;
  width: 80%;
}

.card-icon {
  padding-top: 5px;
  margin-right: 8px;
  vertical-align: top;
  display: inline-block;
  width: 20px;
  font-size: 20px;
  color: #6b6b6b;
}

.error {
  color: #f15c46;
}

.success {
  color: #3db265;
}

/* BLAND DATA TABLES */
.data-table {
  overflow-y: hidden;
  height: 100%;
}

.data-table table {
  border-radius: 4px;
  border-spacing: 0px;
  border-collapse: collapse;
  border: 1px solid rgba(43, 110, 182, 0.15);
  margin-top: 12px;
}

.data-table td {
  background-color: white;
  border-top: 1px solid rgba(43, 110, 182, 0.15);
  border-bottom: 1px solid rgba(43, 110, 182, 0.15);
  padding: 8px 16px 8px 16px;
  /*@include media-breakpoint(sm) {
      min-width: 150px;
  }*/
}

/*ALERT*/
.alert-container {
  width: 35%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 100;
}

.alert-body {
  color: #333333;
}

.alert {
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 6px 12px 8px 12px;
  position: relative;
}

.alert .close {
  top: 8px;
  right: 12px;
  color: #999999;
}

.alert .close:hover {
  color: #6b6b6b;
}

.alert-primary {
  border-color: #2b6eb6;
  background: rgba(43, 110, 182, 0.15);
}

.alert-second {
  border-color: #F69529;
  background: rgba(246, 149, 41, 0.15);
}

.alert-danger {
  border-color: #f15c46;
  background: #fde6ce;
  padding: 14px 18px;
  margin: 5px 16px;
  float: right;
  width: 100%;
}

.alert-danger .icon-warning {
  color: #f15c46;
}

/* TAB SYSTEM */
@media only screen and (max-width: 576px) {
  .tab-name-container .tab-name {
    font-size: 1rem;
    padding: 0 12px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .tab-name .tab-selected-indicator {
    margin-top: 4px;
    margin-left: -12px;
    height: 6px;
    border-radius: 3px;
    width: calc(100% + 24px);
  }
}
.tab-name-container {
  /*margin-top: 12px;
  margin-bottom: 12px;*/
  border-bottom: 1px solid rgba(43, 110, 182, 0.15);
  padding-bottom: 1px;
  padding-top: 12px;
  white-space: nowrap;
  overflow-x: auto;
}
@media (max-width: 575px) {
  .tab-name-container {
    padding-top: 0.9rem;
  }
}

.tab-selected-indicator {
  margin-top: 8px;
  margin-left: -25px;
  height: 6px;
  border-radius: 3px;
  width: calc(100% + 50px);
  background-color: none;
}

.tab-name-active .tab-selected-indicator {
  background-color: #2b6eb6;
}

.tab-name {
  color: #999999;
  font-family: var(--font-heading);
  display: inline-block;
  padding-left: 30px;
  padding-right: 30px;
}

.tab-name a {
  text-decoration: none;
  color: inherit;
}

.tab-name {
  cursor: default;
  text-decoration: none;
}

.tab-name:hover {
  cursor: pointer;
  color: #333333;
}

.tab-name-active:hover {
  cursor: default !important;
  color: inherit !important;
}

.tab-name-active {
  color: #333333;
}

.order-parts-list > .list-item-minor[data-is-spare-part=True] {
  border-top: 1px solid #2b6eb6;
}

.order-parts-list > .list-item-minor[data-is-spare-part=True] ~ .list-item-minor[data-is-spare-part=True] {
  border: unset;
}

/* POPUPS/LOADING SCREENS */
.popup-background {
  background-color: rgba(43, 110, 182, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.popup-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.popup {
  position: fixed;
  top: 10%;
  left: 10%;
  z-index: 110;
  height: 60%;
  width: 80%;
  border-radius: 4px;
  background-color: white;
}
@media (min-width: 576px) {
  .popup {
    width: 424px;
    height: 525px;
    left: calc(50% - 212px);
  }
}
@media (max-width: 575px) {
  .popup {
    top: 15%;
    height: 450px;
  }
}

@media (min-width: 576px) {
  .popup-xl {
    width: 700px;
    height: 500px;
    left: calc(50% - 350px);
  }
}
.popup-xl .popup-body {
  height: 426px;
}
@media (max-width: 575px) {
  .popup-xl .popup-body {
    height: calc(100% - 93px);
  }
}

@media (min-width: 576px) {
  .popup-lg {
    width: 500px;
    height: 550px;
    left: calc(50% - 250px);
  }
}
.popup-lg .popup-body {
  height: 426px;
}
@media (max-width: 575px) {
  .popup-lg .popup-body {
    height: calc(100% - 93px);
  }
}

.popup-sm {
  top: 20%;
  height: 265px;
}

.popup-xs {
  top: 20%;
  height: 160px;
}

@media (max-width: 575px) {
  .popup-xs {
    height: 135px;
  }
}
.popup-heading {
  text-align: center;
  padding: 16px 0;
  height: 60px;
}
@media (max-width: 575px) {
  .popup-heading {
    min-height: 45px;
    padding: 8px 0;
    display: inline-block;
    height: auto;
    width: 100%;
  }
}

.popup-body {
  color: #6b6b6b;
  text-align: left;
  font-size: 16px;
  height: 400px;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .popup-body {
    height: calc(100% - 93px);
    font-size: 1.1rem;
  }
}
.popup-body .page-footer.btn-footer {
  justify-content: right;
}
.popup-body .page-footer.btn-footer .btn-container {
  float: right;
}
@media (max-width: 575px) {
  .popup-body .page-footer.btn-footer .btn-container {
    float: unset;
  }
}

.popup-content {
  padding: 12px 20px;
  height: calc(100% - 60px);
  overflow-y: auto;
}
@media (max-width: 575px) {
  .popup-content {
    height: 100%;
  }
}

.popup-form .input-caption {
  font-size: 14px;
  line-height: 1;
}
.popup-form input {
  height: 32px;
  margin: 2px;
}

.popup-btn-container {
  height: 64px;
  position: absolute;
  bottom: 0;
  padding: 8px 10px;
  box-shadow: 0 -1px 6px 0 rgba(43, 110, 182, 0.15);
  width: 100%;
  background-color: white;
  text-align: center;
}
@media (max-width: 575px) {
  .popup-btn-container {
    height: 55px;
    padding: 4px 5px;
  }
}
.popup-btn-container .btn-container {
  float: right;
}
@media (max-width: 575px) {
  .popup-btn-container .btn-container {
    float: unset;
  }
}

.popup-nav-cover {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(43, 110, 182, 0.4);
  z-index: 100;
}

.popup-side-nav-cover {
  width: 100%;
  height: 100%;
}

.popup-top-nav-cover {
  width: 100%;
  height: 100%;
}

.action-side-nav-cover {
  width: 100%;
  height: 100%;
}

.confirm-popup-background {
  z-index: 100; /* just for clarity's sake */
}

.loading-popup-background {
  z-index: 110;
}

.confirm-popup {
  position: fixed;
  top: 20%;
  left: 10%;
  z-index: 110;
  min-height: 240px;
  width: 80%;
  border-radius: 4px;
  background-color: white;
}
@media (min-width: 576px) {
  .confirm-popup {
    width: 424px;
    left: calc(50% - 212px);
  }
}

.message-popup {
  position: absolute;
  padding: 7px;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  max-width: 200px;
  background-color: #2b6eb6;
  color: #fefeff;
  border-radius: 2px;
}

.release-note-popup .popup-body {
  padding: 0 10px;
  text-align: center;
}
.release-note-popup .popup-body > div {
  text-align: left;
}

.price-popup-row {
  display: flex;
  align-items: center;
}

.loading-screen-indicator {
  height: 100px;
  width: 200px;
  border-radius: 4px;
  color: white;
  position: absolute;
  background-color: #2b6eb6;
  z-index: 115;
  text-align: center;
  vertical-align: top;
  padding-top: 25px;
}

.loader {
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
}

.small-loader {
  border: 3px solid #2b6eb6;
  border-top: 3px solid white;
  width: 15px;
  height: 15px;
}

.large-loader {
  margin: auto;
  border: 4px solid white;
  border-top: 4px solid #2b6eb6;
  width: 46px;
  height: 46px;
}

.large-blue-loader {
  margin: auto;
  border: 4px solid #2b6eb6;
  border-top: 4px solid #f4f8fb;
  width: 46px;
  height: 46px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* DASHBOARD */
@media only screen and (min-width: 768px) {
  .dash-columns {
    padding: 0px 3px 0px 12px !important;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 4px;
    -moz-column-gap: 4px;
    column-gap: 4px;
    orphans: 1;
    widows: 1;
  }
}
@media only screen and (min-width: 992px) {
  .dash-columns {
    padding: 0px 10px 0px 20px !important;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 4px;
    -moz-column-gap: 4px;
    column-gap: 4px;
    orphans: 1;
    widows: 1;
  }
}
.error-dashcard .dashcard-heading-container {
  border-bottom-color: #f15c46 !important;
}
.error-dashcard .dashcard-heading {
  color: #f15c46;
}
.error-dashcard .dashcard-sub2-heading {
  color: #f15c46 !important;
}
.error-dashcard .dashcard-heading-circle-bg {
  background-color: #f15c46 !important;
}
.error-dashcard .dashcard-heading-left-sub1 {
  color: #333333 !important;
}
.error-dashcard .dashcard-heading-left-sub2 {
  color: #f15c46 !important;
}

.warning-dashcard .dashcard-heading-container {
  border-bottom-color: #F69529 !important;
}
.warning-dashcard .dashcard-heading {
  color: #F69529;
}
.warning-dashcard .dashcard-sub2-heading {
  color: #F69529 !important;
}
.warning-dashcard .dashcard-heading-circle-bg {
  background-color: #F69529 !important;
}
.warning-dashcard .dashcard-heading-left-sub1 {
  color: #333333 !important;
}
.warning-dashcard .dashcard-heading-left-sub2 {
  color: #F69529 !important;
}

.overdue-dashcard .dashcard-heading-container {
  border-bottom-color: #7c10e9 !important;
}
.overdue-dashcard .dashcard-heading {
  color: #7c10e9;
}
.overdue-dashcard .dashcard-heading-circle-bg {
  background-color: #7c10e9 !important;
}
.overdue-dashcard .dashcard-heading-left-sub1 {
  color: #333333 !important;
}
.overdue-dashcard .dashcard-heading-left-sub2 {
  color: #7c10e9 !important;
}

.out-dashcard .dashcard-heading-container {
  border-bottom-color: #2626d9 !important;
}
.out-dashcard .dashcard-heading {
  color: #2626d9;
}
.out-dashcard .dashcard-heading-circle-bg {
  background-color: #2626d9 !important;
}

.wrongpos-dashcard .dashcard-heading-container {
  border-bottom-color: #5cc7c7 !important;
}
.wrongpos-dashcard .dashcard-heading {
  color: #5cc7c7;
}
.wrongpos-dashcard .dashcard-heading-circle-bg {
  background-color: #5cc7c7 !important;
}
.wrongpos-dashcard .dashcard-heading-left-sub1 {
  color: #333333 !important;
}
.wrongpos-dashcard .dashcard-heading-left-sub2 {
  color: #5cc7c7 !important;
}

.done-dashcard .dashcard-heading-container {
  border-bottom: none !important;
}
.done-dashcard i {
  font-size: 45px;
}

.dash-columns {
  width: 100%;
  overflow-y: auto;
  padding-left: 10px;
}

.dashcard {
  margin-bottom: 14px;
  width: calc(100% - 12px);
  background-color: white;
  box-shadow: 0px 2px 4px rgba(43, 110, 182, 0.55);
  border-radius: 4px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.dashcard .pill {
  margin-top: 4px;
}

.dashcard-heading-container {
  position: relative;
  text-align: center;
  padding: 26px 0px;
  border-bottom: 2px solid #6b6b6b;
}
.dashcard-heading-container .row {
  padding: 0;
}

.dashcard-heading-left {
  text-align: left;
  height: 45px;
}

.dashcard-heading-circle-bg {
  height: 45px;
  background: #6b6b6b;
  min-width: 45px;
  padding: 0 4px;
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashcard-heading-circle {
  font-family: var(--font-heading);
  font-size: 32px;
  color: white;
}
@media (min-width: 768px) {
  .dashcard-heading-circle {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .dashcard-heading-circle {
    font-size: 28px;
  }
}

.dashcard-heading-left-sub1 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #6b6b6b;
  display: block;
}
@media (max-width: 575px) {
  .dashcard-heading-left-sub1 {
    font-size: 1.2rem;
  }
}

.dashcard-heading-left-sub2 {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #333333;
  display: block;
}
@media (max-width: 575px) {
  .dashcard-heading-left-sub2 {
    font-size: 1.1rem;
  }
}

.dashcard-heading {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 56px;
  color: white;
  vertical-align: middle;
}

.dashcard-sub1-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #6b6b6b;
}

.dashcard-sub2-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #333333;
  height: 28px;
}

.dashcard-ad-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: #999999;
  padding: 12px 20px 20px 20px;
}
@media (max-width: 575px) {
  .dashcard-ad-body {
    font-size: 14px;
  }
}

.dashcard-ad-body .dashcard-sub1-heading {
  margin-bottom: 8px;
}

.dashcard-ad img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.dashcard-ad-body .small-link {
  padding-top: 8px;
  display: inline-block;
}

.dashcard-data {
  padding: 0 16px 16px 16px;
  border-top: 1px solid white;
}

.dashcard-data a {
  margin: 0;
  padding-top: 8px;
}

.dashcard-footer {
  padding: 16px 0;
}

.dashcard-data-item {
  color: #6b6b6b;
  padding: 8px 0 4px 0;
  line-height: 1em;
  border-bottom: 1px solid #f4f8fb;
}

.dashcard-data-item table {
  border-spacing: 0px;
  width: 100%;
}

.dashcard-data-item td {
  padding: 1px;
}

.dashcard-data-item td:last-child {
  text-align: right;
  color: #6b6b6b;
}

.dashcard-data-item td:last-child i {
  color: #f15c46;
}

.dashcard-actioned {
  height: 28px;
  text-align: center;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.dashcard-actioned > div {
  display: inline-block;
  vertical-align: middle;
}

.dashcard-action {
  /*margin-top: 2px;
  margin-left: 4px;
  color: $primary-transparent-dark;*/
}

.dashcard-action:hover {
  /*color: $primary;*/
  cursor: pointer;
}

.dashcard-actioned-stats {
  color: #999999;
  font-family: var(--font-heading);
  font-size: 14px;
}

.dashcard-actioned .action-tickbox {
  margin-top: -2px;
  margin-left: 4px;
}

.dash-checkbox-tick {
  position: absolute;
  top: 7px;
  left: 13px;
  content: "";
  display: block;
  width: 7px;
  height: 15px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.dash-checkbox {
  height: 38px;
  width: 32px;
  margin: auto;
  margin-top: 10px;
  position: relative;
}

.dash-checkbox-back {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: none;
  background-color: #3db265;
}

/* HTML EDITOR */
.readonly-htmleditor .mce-tinymce {
  border: none !important;
  box-shadow: none !important;
  margin: 0px !important;
  width: calc(100% - 12px) !important;
}

.readonly-htmleditor .mce-top-part {
  display: none !important;
}

.mce-tinymce {
  border: solid 2px rgba(43, 110, 182, 0.15) !important;
  box-shadow: none !important;
  border-radius: 4px;
  margin: 4px !important;
  width: calc(100% - 12px) !important;
}

.mce-top-part {
  border-bottom: 2px solid rgba(43, 110, 182, 0.15) !important;
}

.mce-toolbar {
  padding: 1px !important;
  background-color: #f4f8fb !important;
}

.mce-edit-area {
  border-top: none !important;
}

.mce-top-part::before {
  box-shadow: none !important;
}

.mce-btn-group {
  border: 2px solid rgba(43, 110, 182, 0.15) !important;
  margin: 1px !important;
  border-radius: 4px;
  background-color: white !important;
}

.mce-txt {
  color: #999999 !important;
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
}

.mce-btn-group .mce-btn {
  margin-left: 1px !important;
  margin-right: 1px !important;
}

.mce-widget i {
  color: #999999 !important;
}

@media only screen and (max-width: 599px) {
  .mce-tinymce {
    width: calc(100% - 16px) !important;
  }
}
/* for the little table popup thing*/
.mce-tinymce.mce-tinymce-inline.mce-arrow.mce-container.mce-panel.mce-floatpanel.mce-arrow-up {
  width: inherit !important;
}

.mce-arrow.mce-arrow-up:before {
  border-bottom-color: rgba(43, 110, 182, 0.15) !important;
}

/* ACTION SIDEBAR */
.action-tickbox {
  height: 17px;
  width: 17px;
  margin: auto;
  /*margin-top: 10px;*/
  position: relative;
}

.action-tickbox-tick {
  position: absolute;
  top: 3px;
  left: 6px;
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.action-tickbox-back {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  border: none;
}

.action-tickbox-good {
  background-color: #3db265;
}

.action-tickbox-inactive {
  background-color: #999999;
}

.action-sidebar-container {
  position: fixed;
  top: 64px;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(43, 110, 182, 0.4);
  z-index: 50;
}

.action-sidebar {
  position: fixed;
  top: 64px;
  right: 0;
  height: calc(100vh - 64px);
  width: 80%;
  background-color: white;
  z-index: 55;
  box-shadow: -2px 0 8px 0 rgba(43, 110, 182, 0.15);
  overflow-y: auto;
}
@media (max-width: 575px) {
  .action-sidebar {
    width: 90%;
  }
}

.action-sidebar .close {
  top: 18px;
  right: 12px;
  font-size: 32px;
  color: rgba(43, 110, 182, 0.4);
  background-color: white;
  box-shadow: none;
}

.action-sidebar .close:hover {
  color: #2b6eb6;
  cursor: pointer;
}

.action-sidebar-info {
  position: relative;
  background-color: #f4f8fb;
  padding: 16px;
}

.action-sidebar-info h2 {
  color: #333333;
}

.action-sidebar-info .pill {
  margin-top: 0px;
  vertical-align: top;
  margin-left: 4px;
}

.action-sidebar-info h4 {
  font-family: var(--font-body);
  color: #999999;
}

.action-sidebar-info-sub {
  background-color: #f4f8fb;
  border-top: 1px solid rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  padding: 17px 0px;
  margin-top: 16px;
}

.action-sidebar-sub-info {
  background-color: #f4f8fb;
  border: solid 2px rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  padding: 10px;
  margin-top: 8px;
}
.action-sidebar-sub-info .h6 {
  overflow-wrap: break-word;
}

.action-sidebar-sub-info h4 {
  color: #333333;
  font-weight: bold;
}

.action-sidebar-form-background {
  padding: 16px;
  background-color: white;
}
.action-sidebar-form-background .btn-container {
  background-color: #f4f8fb !important;
  border-top: solid 2px rgba(43, 110, 182, 0.15);
}
@media (min-width: 576px) {
  .action-sidebar-form-background .btn-container {
    text-align: right;
  }
}
.action-sidebar-form-background h3 {
  margin-bottom: 0;
  line-height: 1em;
}
.action-sidebar-form-background h4 {
  font-family: var(--font-body);
  color: #333333;
  margin: 0;
}
.action-sidebar-form-background h5 {
  margin: 0 0 4px 0;
}
.action-sidebar-form-background h6 {
  font-family: var(--font-body);
  color: #999999;
  line-height: 12px;
  margin: 0;
}
.action-sidebar-form-background .card h4 {
  font-family: var(--font-heading);
}

.action-sidebar-form {
  margin: 8px 4px 0 4px;
  border: solid 2px rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  background-color: white;
}

.action-sidebar-form-header {
  margin: 8px 10px;
}

.action-sidebar-nav {
  text-align: center;
  padding: 16px 16px 0 16px;
  background-color: #f4f8fb;
}
.action-sidebar-nav span {
  line-height: 24px;
  vertical-align: middle;
}

.action-sidebar-nav a {
  display: inline-block;
  height: 32px;
  width: 32px;
  padding-top: 2px;
  text-align: center;
  color: rgba(43, 110, 182, 0.4);
}

.action-sidebar .loader {
  margin: auto;
  margin-top: 40%;
}

.action-sidebar-action-button {
  background-color: #f4f8fb;
  border: solid 2px rgba(43, 110, 182, 0.15);
  border-radius: 4px;
  color: #2b6eb6;
  font-size: 20px;
  font-family: var(--font-heading);
  padding: 16px 24px;
  margin: 8px 4px 0 4px;
  line-height: 1em;
}
@media (max-width: 575px) {
  .action-sidebar-action-button {
    font-size: 16px;
  }
}

.action-complete-container {
  text-align: center;
  vertical-align: central;
  margin-top: 50px;
}

.action-complete-container img {
  width: 50%;
}

.action-complete-text {
  text-align: center;
  width: 50%;
  margin: auto;
  padding: 20px 0px;
}

/* LOAN PAGE */
.compound-radio-button {
  display: inline-block;
  vertical-align: top;
}

.today-date {
  margin-top: -8px;
  margin-left: 40px;
  display: block;
  line-height: 12px;
  font-size: 12px;
  color: #999999;
  font-family: var(--font-body);
}

.later-date {
  margin-top: -8px !important;
  margin-left: 40px !important;
  width: 150px !important;
}

/* ODDBALLS */
.inline-textbox-checkbox .input-container {
  padding-right: 0px;
}

.inline-textbox-checkbox input[type=text] {
  display: inline-block;
  width: 72px;
  padding: 8px;
  height: 36px;
  text-align: center;
}

.inline-textbox-checkbox.large-input-text input[type=text] {
  width: 250px;
  text-align: left;
}

.inline-textbox-checkbox .additional-text {
  display: inline-block;
}

.key-number-info {
  display: inline-block;
  margin-top: 5px;
  margin-left: 8px;
  font-size: 12px;
  font-family: var(--font-heading);
  color: #999999;
}

/* reverse direction of signout icon */
.fa-sign-out-alt {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}

/* TOOLTIPS */
/*Tippy*/
.tippy-box {
  background-color: #2b6eb6;
}

.tippy-arrow:before {
  color: #2b6eb6;
}

.tippy-content {
  font-size: 12px;
}

/* MENU POPUP */
.menu-popup-btn :hover {
  cursor: pointer;
}

.menu-popup {
  display: inline-block;
  position: relative;
}

.menu-popup-content {
  display: none;
  position: absolute;
  color: #6b6b6b;
  width: 150px;
  background-color: #ffffff;
  z-index: 1;
  padding: 8px 0;
  border: 1px solid rgba(43, 110, 182, 0.15);
  box-sizing: border-box;
  box-shadow: red;
  border-radius: 4px;
  margin-top: 7px;
  user-select: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul li {
  padding: 6px 25px;
  text-align: left;
}
ul li a {
  text-decoration: none;
  color: inherit;
}
ul li:hover {
  background-color: #f4f8fb;
}

.download-file {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

/* WIZARD */
.wizard-steps-container, .wizard-steps-container-done {
  padding: 16px 20px;
  overflow-x: scroll;
  white-space: nowrap;
}

.wizard-steps-container-done:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 36%;
  transform: translateY(-50%);
  height: 3px;
  width: 100%;
  background: #3db265;
}

.wizard-step {
  width: 150px;
  display: inline-block;
}

.wizard-step:hover {
  opacity: 0.8;
  cursor: pointer;
}

.wizard-step-circle, .wizard-step-circle-last {
  position: relative;
  z-index: 2;
  height: 45px;
  background: #999999;
  width: 45px;
  padding: 0 4px;
  border-radius: 45px;
  display: inline-block;
  box-shadow: 0 0 0 10px #f4f8fb;
  text-align: center;
}
.wizard-step-circle span, .wizard-step-circle-last span {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: bold;
  line-height: 45px;
  color: white;
  vertical-align: middle;
}

.wizard-step-circle:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 55px;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  width: 85px;
  background: #999999;
}

/*.wizard-step-circle-last:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    height: 5px;
    width: 85px;
    background: $paper;
}*/
.wizard-step-circle.active {
  background: #2b6eb6;
}

.wizard-step-circle.inprogress:not(.active) {
  background: #7c10e9;
}

.wizard-step-circle-last.active {
  background: #2b6eb6;
}

.wizard-step-circle-last.inprogress:not(.active) {
  background: #7c10e9;
}

.wizard-step-circle.finished:after {
  background: #2b6eb6;
}

.wizard-step-circle.completed:not(.active):after {
  background: #3db265;
}

.wizard-step-circle.inprogress:not(.active):after {
  background: #7c10e9;
}

.wizard-step-circle.completed:not(.active, .inprogress), .wizard-step-circle-last.completed:not(.active, .inprogress), .wizard-step-circle.finished {
  background: #3db265;
}

.wizard-step-circle-title {
  margin-top: 6px;
  color: #999999;
  font-weight: bold;
}

.wizard-step-circle-title.active {
  color: #2b6eb6;
}

.wizard-step-circle-title.inprogress:not(.active) {
  color: #7c10e9;
}

.wizard-step-circle-title.completed:not(.active, .inprogress), .wizard-step-circle-title.finished {
  color: #3db265;
}

/* BARCODES */
.keylabel-row {
  height: 95px;
}

.keylabel-text {
  max-width: 157px;
  overflow: hidden;
  padding: 0px;
  text-align: center;
  font: 400 13px helvetica;
  white-space: nowrap;
}

.video_wrapper {
  max-width: 500px;
}
.video_wrapper div {
  position: relative;
  padding-bottom: 56.25%; /* 16:9, for an aspect ratio of 1:1 change to this value to 100% */
}
.video_wrapper div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ICONS */
.icon {
  font-size: 16px;
}
@media (max-width: 575px) {
  .icon {
    font-size: 1.2rem;
  }
}

.icon-md {
  font-size: 20px;
}
@media (max-width: 575px) {
  .icon-md {
    font-size: 1.4rem;
  }
}

.icon-xs {
  font-size: 12px;
}
@media (max-width: 575px) {
  .icon-xs {
    font-size: 1rem;
  }
}

.icon-sm {
  font-size: 14px;
}
@media (max-width: 575px) {
  .icon-sm {
    font-size: 1.1rem;
  }
}

.icon-lg {
  font-size: 24px;
}

.icon-xl {
  font-size: 32px;
}

.icon-primary {
  color: #2b6eb6;
}

.icon-primary-transparent-dark {
  color: rgba(43, 110, 182, 0.4);
}

.icon-primary-transparent-dark:hover {
  color: #2b6eb6;
}

.icon-dark {
  color: #6b6b6b;
}

.icon-dark-transparent {
  color: rgba(107, 107, 107, 0.15);
}

.icon-light {
  color: #999999;
}

.icon-success {
  color: #3db265;
}

.icon-error {
  color: #f15c46;
}

.icon-drop-down:hover {
  cursor: pointer;
  color: #2b6eb6;
}

.copy-icon {
  display: inline-block;
}

.copy-icon:hover {
  cursor: pointer;
}

/*.icon-warning {
    color: $warning;
}*/
@font-face {
  font-family: "kw-icon";
  src: url("../fonts/kw-icon.eot?2wh675");
  src: url("../fonts/kw-icon.eot?2wh675#iefix") format("embedded-opentype"), url("../fonts/kw-icon.ttf?2wh675") format("truetype"), url("../fonts/kw-icon.woff?2wh675") format("woff"), url("../fonts/kw-icon.svg?2wh675#kw-icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "fira-mono";
  src: url("https://use.typekit.net/af/46dcca/00000000000000007735a3a3/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/46dcca/00000000000000007735a3a3/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/46dcca/00000000000000007735a3a3/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "kw-icon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-dashboard:before {
  content: "\e900";
}

.icon-keys:before {
  content: "\e901";
}

.icon-keybook:before {
  content: "\e902";
}

.icon-assets:before {
  content: "\e903";
}

.icon-borrowers:before {
  content: "\e904";
}

.icon-notifications:before {
  content: "\e905";
}

.icon-settings:before {
  content: "\e906";
}

.icon-filter:before {
  content: "\e907";
}

.icon-changelog:before {
  content: "\e908";
}

.icon-search:before {
  content: "\e909";
}

.icon-chevron-left:before {
  content: "\e90a";
}

.icon-drag-and-drop:before {
  content: "\e90b";
}

.icon-check-success:before {
  content: "\e90c";
}

.icon-menu:before {
  content: "\e90d";
}

.icon-user-profile:before {
  content: "\e90e";
}

.icon-drop-down:before {
  content: "\e90f";
}

.icon-chevron-right:before {
  content: "\e910";
}

.icon-camera:before {
  content: "\e911";
}

.icon-photo:before {
  content: "\e912";
}

.icon-info:before {
  content: "\e913";
}

.icon-question:before {
  content: "\e914";
}

.icon-reports:before {
  content: "\e915";
}

.icon-overflow:before {
  content: "\e916";
}

.icon-add:before {
  content: "\e917";
}

.icon-quick-add:before {
  content: "\e918";
}

.icon-remove:before {
  content: "\e919";
}

.icon-warning:before {
  content: "\e91a";
}

.icon-close:before {
  content: "\e91b";
}

.icon-logout:before {
  content: "\e91c";
}

.icon-person:before {
  content: "\e91d";
}

.icon-uniE920:before {
  content: "\e920";
}

.icon-uniE921:before {
  content: "\e921";
}

.icon-ascending:before {
  content: "\e922";
}

.icon-descending:before {
  content: "\e923";
}

.icon-phone:before {
  content: "\e924";
}

.icon-mobile:before {
  content: "\e925";
}

.icon-email1:before {
  content: "\e926";
}

.icon-wifi:before {
  content: "\e927";
}

.icon-no-wifi:before {
  content: "\e928";
}

.icon-nopower:before {
  content: "\e929";
}

.icon-show:before {
  content: "\e92a";
}

.icon-hide:before {
  content: "\e92b";
}

.icon-clip:before {
  content: "\e934";
}

.icon-loading:before {
  content: "\e937";
}

.icon-uniE938:before {
  content: "\e938";
}

.icon-uniE939:before {
  content: "\e939";
}

.icon-uniE93A:before {
  content: "\e93a";
}

.icon-uniE93B:before {
  content: "\e93b";
}

.icon-uniE93C:before {
  content: "\e93c";
}

.icon-uniE93D:before {
  content: "\e93d";
}

.icon-uniE93E:before {
  content: "\e93e";
}

.icon-uniE93F:before {
  content: "\e93f";
}

.icon-panel:before {
  content: "\e940";
}

.icon-calendar:before {
  content: "\e941";
}

.icon-wizard:before {
  content: "\e942";
}

.icon-edit:before {
  content: "\e943";
}

.icon-mail_outline:before {
  content: "\e944";
}

.icon-email:before {
  content: "\e945";
}

.icon-send:before {
  content: "\e946";
}

.icon-message:before {
  content: "\e947";
}

.icon-textsms:before {
  content: "\e948";
}

.icon-envelope-o:before {
  content: "\f003";
}

.icon-trash-o:before {
  content: "\f014";
}

.icon-download:before {
  content: "\f019";
}

.icon-volume-off:before {
  content: "\f026";
}

.icon-volume-down:before {
  content: "\f027";
}

.icon-volume-up:before {
  content: "\f028";
}

.icon-qrcode:before {
  content: "\f029";
}

.icon-barcode:before {
  content: "\f02a";
}

.icon-print:before {
  content: "\f02f";
}

.icon-chevron-left1:before {
  content: "\f053";
}

.icon-chevron-right1:before {
  content: "\f054";
}

.icon-question-circle:before {
  content: "\f059";
}

.icon-info-circle:before {
  content: "\f05a";
}

.icon-plus2:before {
  content: "\f067";
}

.icon-minus1:before {
  content: "\f068";
}

.icon-chevron-up:before {
  content: "\f077";
}

.icon-chevron-down:before {
  content: "\f078";
}

.icon-phone1:before {
  content: "\f095";
}

.icon-square-o:before {
  content: "\f096";
}

.icon-filter1:before {
  content: "\f0b0";
}

.icon-briefcase:before {
  content: "\f0b1";
}

.icon-group:before {
  content: "\f0c0";
}

.icon-chain:before {
  content: "\f0c1";
}

.icon-envelope:before {
  content: "\f0e0";
}

.icon-comment-o:before {
  content: "\f0e5";
}

.icon-comments-o:before {
  content: "\f0e6";
}

.icon-cloud-download:before {
  content: "\f0ed";
}

.icon-cloud-upload:before {
  content: "\f0ee";
}

.icon-suitcase:before {
  content: "\f0f2";
}

.icon-sort-amount-asc:before {
  content: "\f160";
}

.icon-sort-amount-desc:before {
  content: "\f161";
}

.icon-file-pdf-o:before {
  content: "\f1c1";
}

.icon-file-word-o:before {
  content: "\f1c2";
}

.icon-file-excel-o:before {
  content: "\f1c3";
}

.icon-file-powerpoint-o:before {
  content: "\f1c4";
}

.icon-file-image-o:before {
  content: "\f1c5";
}

.icon-file-archive-o:before {
  content: "\f1c6";
}

.icon-file-audio-o:before {
  content: "\f1c7";
}

.icon-file-movie-o:before {
  content: "\f1c8";
}

.icon-file-code-o:before {
  content: "\f1c9";
}

.icon-paper-plane:before {
  content: "\f1d8";
}

.icon-paper-plane-o:before {
  content: "\f1d9";
}

.icon-bell-slash:before {
  content: "\f1f6";
}

.icon-bell-slash-o:before {
  content: "\f1f7";
}

.icon-trash:before {
  content: "\f1f8";
}

.icon-commenting:before {
  content: "\f27a";
}

.icon-commenting-o:before {
  content: "\f27b";
}

.icon-warehouse:before {
  content: "\e935";
}

.icon-green-check {
  display: grid;
}
.icon-green-check .path1 {
  grid-area: 1/1/2/2;
}
.icon-green-check .path1:before {
  content: "\e91e";
  color: rgb(61, 178, 101);
}
.icon-green-check .path2 {
  grid-area: 1/1/2/2;
}
.icon-green-check .path2:before {
  content: "\e91f";
  color: rgb(255, 255, 255);
}

.icon-gray-check {
  display: grid;
}
.icon-gray-check .path1 {
  grid-area: 1/1/2/2;
}
.icon-gray-check .path1:before {
  content: "\e92c";
  color: rgb(153, 153, 153);
}
.icon-gray-check .path2 {
  grid-area: 1/1/2/2;
}
.icon-gray-check .path2:before {
  content: "\e92d";
  color: rgb(255, 255, 255);
}

.icon-right-circle {
  display: grid;
}
.icon-right-circle .path1 {
  grid-area: 1/1/2/2;
}
.icon-right-circle .path1:before {
  content: "\e92e";
  color: rgb(43, 110, 182);
  opacity: 0.15;
}
.icon-right-circle .path2 {
  grid-area: 1/1/2/2;
}
.icon-right-circle .path2:before {
  content: "\e92f";
  color: rgb(43, 110, 182);
  opacity: 0.4;
}

.icon-left-circle {
  display: grid;
}
.icon-left-circle .path1 {
  grid-area: 1/1/2/2;
}
.icon-left-circle .path1:before {
  content: "\e930";
  color: rgb(43, 110, 182);
  opacity: 0.15;
}
.icon-left-circle .path2 {
  grid-area: 1/1/2/2;
}
.icon-left-circle .path2:before {
  content: "\e931";
  color: rgb(43, 110, 182);
  opacity: 0.4;
}

.icon-close-circle {
  display: grid;
}
.icon-close-circle .path1 {
  grid-area: 1/1/2/2;
}
.icon-close-circle .path1:before {
  content: "\e932";
  color: rgb(43, 110, 182);
  opacity: 0.15;
}
.icon-close-circle .path2 {
  grid-area: 1/1/2/2;
}
.icon-close-circle .path2:before {
  content: "\e933";
  color: rgb(43, 110, 182);
  opacity: 0.4;
}

.icon-cogs:before {
  content: "\e995";
}

.icon-clipboard:before {
  content: "\e9b8";
}

.icon-bin:before {
  content: "\e936";
}

.icon-log {
  padding-left: 10px;
}

.uart-log, .command-queue {
  height: calc(100% - 35px);
  overflow-y: auto;
  max-height: unset;
}

.uart-log > * {
  display: block;
}
