:root {
	--rapid-white: #ffffff;
	--rapid-grey: #8c8c8c;
	--rapid-grey-light: #eeeeee;
	--rapid-grey-dark: #4b4b4b;
	--rapid-teal: #2a2a30;
	--rapid-teal-light: #e6e6eb;
	--rapid-teal-dark: #000000;
	--rapid-blue: #606269;
	--rapid-blue-light: #2d1a7a;
	--rapid-yellow: #FFD100;
	--rapid-yellow-dark: #ffc400;
	--rapid-purple: #A6A1B9;
	--rapid-red: #AF2020;
	--rapid-red-dark: #961a1a;
	--rapid-green: #22C957;
	--rapid-text: #212529;
	--rapid-dev: #20C20E;
	--rapid-money-green: #85bb65;
}

/* Chat button at the bottom-right of the screen */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
  z-index:999;
}

.chat-box-close {
  position:absolute;
  top:15px;
  right:20px;
  font-weight:bold;
  color:#000;
  cursor:pointer;
  font-size:1.2em;
}
/* Main chat box container */
.chat-box {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 20px; /* Above the chat button */
    right: 20px;
    width: 450px;
    height: 550px;
    background-color: white;
    border: none;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index:999;

}

/* Top header section */
.chat-box-top {
    padding: 15px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
}

/* Chat content area - scrollable */
.chat-box-content {
    flex-grow: 1;
    padding: 10px;
  padding-bottom:50px;
    height: calc(100% - 115px); /* Adjust height based on the total of other elements */
    overflow-y: auto; /* Enables scrolling */
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
}
.chat-box-top h2 {
  font-size:1.1em;
  font-weight:600;
}

.message:last-child {
  margin-bottom:50px;
}

.copy-btn, .email-btn {
    position: absolute;
    top: 5px;
    padding: 2px 6px;
    font-size: 0.8rem;
    background-color: #e9ecef;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    opacity: 0.5;
}

.copy-btn {
    right: -35px; /* Copy button on the left */
}

.email-btn {
    right: -35px; /* Email button on the right */
    top: 40px;
}

.copy-btn:hover, .email-btn:hover {
    background-color: #d6d8db;
    opacity: 1;
}


.message-content p {
  margin-bottom: 1em;
  line-height: 1.6;
}

.message-content ul {
  margin: 0.8em 0;
  padding-left: 1.5em;
}

.message-content li {
  margin-bottom: 0.5em;
}

.message-content a {
  color: #0a58ca;
  text-decoration: underline;
}



/* Input container at the bottom */
.input-container {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    position:absolute;
    bottom:0;
    right:0;
    width:100%;
}

#prompt {
    flex-grow: 1;
    resize: none;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    margin-right: 10px;
}

#submitBtn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#submitBtn:hover {
    background-color: #0056b3;
}

/* Message bubble styling */
.message {
    max-width: 80%;
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    word-wrap: break-word;
}

.user-message {
    background-color: #DCF8C6;
    align-self: flex-end;
    text-align: right;
}

.assistant-message {
    background-color: #fff;
    color: #221551;
    border: 1px solid #e0e0e0;
    align-self: flex-start;
    text-align: left;
}


.itemSelect {
  height:calc(100vh - 120px);
  overflow-y:scroll;
    -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.itemSelect::-webkit-scrollbar {
  display: none;
}

.avatar-circle {
    border-radius: 50%; /* This makes the image round */
    object-fit: cover; /* This will handle different aspect ratios */
    overflow: hidden; /* Hides parts of the image that don't fit in the circle */
}
.ai {
background: rgb(255,194,0);
background: linear-gradient(47deg, rgba(255,194,0,1) 0%, rgba(255,209,0,1) 21%, rgba(251,229,115,1) 28%, rgba(255,209,0,1) 60%, rgba(254,231,128,1) 66%, rgba(255,209,0,1) 72%, rgba(255,209,0,1) 100%);
}
.feedDD {
  background-color:#ffd100;
  padding-top:10px!important;
  padding-bottom:10px!important;
}
.feedDD:hover {
  background-color:#ffc400;

  color:#000;
}
.sideNote {
  color:#333;
  font-size:0.7em;
}
.headerIcon {
  color:#fff;
}
.headerIcon:hover {
  color:#ffd100;
}
.changelogTable {
  width:100%;
}
.changelogTable td {
  padding-bottom:20px;
}

.changelog {
  padding:2px 10px;
  font-size:0.8em;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.changeLogBumper {
  padding-top:3px;
}

.changeAdded {
  background-color:#2d1a7a;
  color:#fff;
}
.changeChanged {
  background-color:#ffd100;
  color:#333;
}
.changeRemoved {
  background-color:#961a1a;
  color:#fff;
}
.changeFixed {
  background-color:#22C957;
  color:#fff;
}
.changeSecurity {
  background-color:#000000;
  color:#fff;
}
.changeOperations {
  background-color:#A6A1B9;
  color:#fff;
}
.changeEfficiency {
  color:#fff;
  background: linear-gradient(120deg, #4caf50, #76ff03, #4caf50);
    background-size: 200% 200%;
    animation: speedBoost 5s linear infinite;
}

.changeEfficiency:hover {
    transform: scale(1.1);
}

@keyframes speedBoost {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.trend {
  font-size:1.3em;
  padding-top:3px;
}

.trendUp {
  color:var(--rapid-green);
}
.trendUpText {
  color:var(--rapid-green);
  font-style:italic;
  font-size:0.9em;
}

.form-error {
  font-size:0.9em;
  color:var(--rapid-red);
}
.voucher {
  margin-top:3px;
  color:var(--rapid-red);
}
.voucherOn {
  color:var(--rapid-money-green);
}

.sageIcon {
  width:20px;  
  margin-top:-3px;
}
.dot {
  height: 5px;
  width: 5px;
  background-color: var(--rapid-red);
  border-radius: 50%;
  display: inline-block;
  position:absolute;
  left:10px;
  top:11px;
}
.green-dot {
  background-color: var(--rapid-green);
}
.dot-holder {
  position:relative;
}
.receiptBlock {
  border:solid 1px #ccc;
  border-radius:5px;
  margin:3px;
  position:relative;
  float:left;
  padding:15px 5px;
  text-align:center;
  width:110px;
}
.receiptBlock i {
  color:#58556A;
}
.receiptBlock:hover i {
  color:#FFD100;
}

h3 {
font-size:1.2em;
}
#social-links ul a {
  text-decoration:none;
}
#social-links ul  {
  padding-left:0px;
  text-align:center;
  padding-top:10px;
}
.social-button {
  padding:10px;
}
.redBar {
  background-color:var(--rapid-red)!important;
  color:#fff;
}
.article:hover {
  cursor:pointer;
}
.document:hover {
  cursor:pointer;
}
#enrolledCourses-id > tr > td
{
    width:16%;
}
.subData {
  display:none;
  background-color:var(--rapid-teal-light);
  margin:10px 0px;
  padding:10px;
}
.nohover:hover {
  text-decoration:none;

}
.alert1 {
  background-color:var(--rapid-red);
  color:#fff;
  -webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.alert2 {
  background-color:var(--rapid-yellow);
  color:#333;
  -webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.declinedOption {
  text-decoration:line-through;
}
.tile-small{
    height:150px!important;
    width:229px!important;
    max-height:150px!important;
    max-width:250px!important;
    min-width:33.3% !important;
    min-height:100% !important;

    }

    .tile-wide{
      width:229px!important;
      min-width:66.6% !important;
      min-height:100% !important;

      }


      .tile-full{
        display: block;
        color: #fff;
        min-width: 100%!important;
        height: 150px!important;
        -webkit-box-shadow: inset 0 0 1px #ffc;
        box-shadow: inset 0 0 1px #ffc;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        max-width: none!important;

      }

  .branding-bar{
    text-align:center !important;
    overflow:visible !important;
    min-height:37%!important;
    min-width:50%!important;

    }

    .branding-bar1{
      text-align:center !important;
      overflow:visible !important;
      min-height:37%!important;
      min-width:50%!important;
    }

    .icon1{
      margin-top: -15px;
      margin-left:45%;
    }

    .icon{
      margin-top: -15px;
      margin-left:-5%;
    }
  /* start of tile metro section */
.tiles-group{

    text-shadow: 2px 2px 4px #000000;
    font-family: Brandon Grotesque Black;
    font-size:1.5rem!important;
    color:#ffffff;
  }


  .tiles-grid{
      margin-top:5%;
      margin-left:2%;
  }


/*page tabs */

.nav-tabs .nav-link.active {
	color: var(--rapid-blue);
	background-color: var(--rapid-white);
	border-color: var(--rapid-teal);
	border-bottom-color: var(--rapid-white);
}

.nav-tabs {
	border-bottom: 1px solid var(--rapid-teal);
	font-size: 0.9em;
	font-weight: bold;
}

.nav-tabs .nav-link {
	color: var(--rapid-teal);
}

.tab-body {
	border-bottom: 1px solid var(--rapid-teal);
	border-left: 1px solid var(--rapid-teal);
	border-right: 1px solid var(--rapid-teal);
	min-height: 10px;
	padding-top: 10px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

/*in page tabs */

html {
	height: 100%;
}

body {
	height: 100%;
	position: relative;
  background-color:var(--rapid-grey-light);
  font-size:0.95em!important;

}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
	-webkit-appearance: none;
	border-radius: 0;
}

a {
  color:var(--rapid-text);
}
.teal {
  color:var(--rapid-teal);
}
.blue {
  color:var(--rapid-blue);
}

.formError {
  background-color:var(--rapid-red);
  color:var(--rapid-white);
  padding:2px 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align:center;
  display:block;
  margin-top:5px;
}

.formSuccess {
  background-color:var(--rapid-green);
  color:var(--rapid-white);
  padding:2px 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align:center;
  display:block;
  margin:5px;
}

.clear {
  clear:both;
}
#app {
  position:relative;
  height:100%;
}

#sideNav {
  position:fixed;
  left:0px;
  top:0px;
  width:230px;
  background-color:var(--rapid-white);
  min-height:100%;
  -webkit-box-shadow: 6px 0px 29px -15px rgba(0,0,0,0.5);
  -moz-box-shadow: 6px 0px 29px -15px rgba(0,0,0,0.5);
  box-shadow: 6px 0px 29px -15px rgba(0,0,0,0.5);
  z-index:99;
}

#sideNavSearchConsole {
  position:fixed;
  left:0px;
  top:0px;
  width:330px;
  background-color:var(--rapid-white);
  height:100%;
  overflow-y:scroll;
  -webkit-box-shadow: 6px 0px 29px -15px rgba(0,0,0,0.5);
  -moz-box-shadow: 6px 0px 29px -15px rgba(0,0,0,0.5);
  box-shadow: 6px 0px 29px -15px rgba(0,0,0,0.5);
  z-index:99;
}

#multiCompany {
  background-color:var(--rapid-teal);
  text-align:center;
  color:var(--rapid-white);
  padding:3px;
  margin-top:5px;
  display:block;
}
#multiCompanyMobile {
  display:none;
}
#multiCompany i {
  width:15px;
}
#multiCompanySelect {
  cursor:pointer;
}
#multiCompanyList {
  background-color:var(--rapid-blue);
  color:var(--rapid-white);
  padding:5px;
  text-align:center;
  display:none;
}
#multiCompanyList a {
  display:block;
  padding:5px;
  color:var(--rapid-white);
}

.icon-logo {
  display:none;
}

.large-logo {
  display:block;
  padding:10px 20px;
}

#fullNav {
  display:block;
  list-style:none;
  padding-top:15px;
}

#fullNav a {
  display:block;
  padding:8px 20px;
  text-decoration:none;
  color:var(--rapid-teal);

}

.subNav {
  display:none;
  width:100%;
  background-color:var(--rapid-teal);
  color:var(--rapid-white);
  padding:5px 0px;
}

.subNav a {
  color:var(--rapid-white)!important;
}

.navIcon {
  color:var(--rapid-teal);
  font-size:1.2em;
  width:30px!important;
  
}

.course_desc
{
    width:100%;
}

.navText {
  display:table-cell;
  position:relative;
  padding-left:15px;
}
.navText:hover {
  font-weight:600;
  color:var(--rapid-yellow);
}

.fas {
  text-align:center;
  display:table-cell!important;
  vertical-align:middle;
  width:30px;
}
.fa {
  text-align:center;
  display:table-cell!important;
  vertical-align:middle;
  width:30px;

}
.far {
  text-align:center;
  display:table-cell!important;
  vertical-align:middle;
  width:30px;


}

#topNavRight .fas:hover {
  color:var(--rapid-yellow);
}
#topNavRight .fa:hover {
  color:var(--rapid-yellow);
}
#topNavRight .far:hover {
  color:var(--rapid-yellow);
}

#mainContent {
  position:relative;
  float:left;
  width:calc(100% - 230px);
  margin-left:230px;
}

#mainContentSearchConsole {
  position:relative;
  float:left;
  width:calc(100% - 330px);
  margin-left:330px;
}

#alertBar {
  background-color:var(--rapid-yellow);
  color:var(--rapid-text);
  width:100%;
  height:auto;
  font-size:0.8em;
  padding:5px 20px;
}

#topNav {
  background-color:var(--rapid-teal);
  color:var(--rapid-white);
  width:100%;
  height:auto;
  padding:5px 20px;
  -webkit-box-shadow: 0px 13px 25px -21px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 13px 25px -21px rgba(0,0,0,0.75);
  box-shadow: 0px 13px 25px -21px rgba(0,0,0,0.75);
  z-index:50;
}

#topNavLeft {
  position:relative;
  float:left;
  width:30%;
  padding-top:6px;
}

#topNavRight {
  position:relative;
  float:right;
  width:70%;
  text-align:right;
}

#topNavRight i {
  float:right;
  font-size:1.2em;
  padding:6px;
  margin:2px;
  cursor:pointer;
  width:30px;
}

#topNavSearch {
  position:relative;
  float:right;
  padding:3px 10px;
  -webkit-border-radius: 3px!important;
  -moz-border-radius: 3px!important;
  border-radius: 3px!important;
  width:250px;
  margin-left:10px;
  -webkit-box-shadow: inset 3px 3px 9px -5px rgba(0,0,0,0.5);
  -moz-box-shadow: inset 3px 3px 9px -5px rgba(0,0,0,0.5);
  box-shadow: inset 3px 3px 9px -5px rgba(0,0,0,0.5);
}

#subTopNav {
  display:none;
  background-color:var(--rapid-teal-light);
  border-bottom:solid 3px var(--rapid-teal);
  width:100%;
  height:auto;
  padding:13px 20px;
  -webkit-box-shadow: 0px 13px 25px -21px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 13px 25px -21px rgba(0,0,0,0.75);
  box-shadow: 0px 13px 25px -21px rgba(0,0,0,0.75);
  z-index:30;
}

#content {
  padding:20px 5px;
}

.card {
	margin-bottom: 20px;
	border: none;
  z-index:50;
}

.card-header {
	font-weight: bold;
	color: var(--rapid-teal);
	background-color: #eee;
	border-bottom: solid 2px var(--rapid-yellow);
	padding: 0px 10px;

}

.card-body {
	padding: 10px;
}

.btn {
  	-webkit-border-radius: 3px!important;
    -moz-border-radius: 3px!important;
    border-radius: 3px!important;
    margin: 2px;
    font-size:inherit!important;
    font-weight:600;
    cursor:pointer;
}

.btn-slim {
  padding:2px 10px;
}

.btn-blue {
	background-color: var(--rapid-blue);
	color: var(--rapid-white)!important;
	border: none;
}

.btn-blue:hover {
	background-color: var(--rapid-teal);
	color: var(--rapid-yellow)!important;
	border: none;
}

.btn-blue2 {
	background-color: #221551;
	color: var(--rapid-white)!important;
	border: none;
}

.btn-blue2:hover {
	background-color: #19103b;
	color: #f0f0f0!important;
	border: none;
}

.btn-blue-border {
	border:1px solid var(--rapid-blue);
	color: var(--rapid-blue);
}

.btn-blue-border:hover {
	background-color: var(--rapid-blue-light);
	color: var(--rapid-white)!important;
	border: 1px solid var(--rapid-blue-light);
}

.btn-green-border {
	border:1px solid var(--rapid-money-green);
	color: var(--rapid-money-green)!important;
}

.btn-green-border:hover {
	background-color: var(--rapid-money-green);
	color: var(--rapid-white)!important;
	border: 1px solid var(--rapid-money-green);
}
.btn-white-border {
	border:1px solid var(--rapid-white);
	color: var(--rapid-white);
}
.btn-white-border:hover {
	background-color: var(--rapid-white);
	color: var(--rapid-teal);
	border: 1px solid var(--rapid-white);
}

.btn-teal {
	background-color: var(--rapid-teal);
	color: var(--rapid-white);
	border: none;
}

.btn-teal:hover {
	background-color: var(--rapid-yellow);
	color: var(--rapid-teal);
	border: none;
}
.btn-red {
	background-color: var(--rapid-red);
	color: var(--rapid-white);
	border: none;
}

.btn-red:hover {
	background-color: var(--rapid-red-dark);
	color: var(--rapid-white);
	border: none;
}
.btn-red-border {
	border:1px solid var(--rapid-red);
	color: var(--rapid-red);
}

.btn-red-border:hover {
  background-color:var(--rapid-red);
	color: var(--rapid-white);
	border: 1px solid #fff;
}

.btn-yellow {
	background-color: var(--rapid-yellow);
	color: var(--rapid-teal);
	border: none;
}

.btn-yellow:hover {
	background-color: var(--rapid-yellow-dark);
	color: var(--rapid-teal);
	border: none;
}

.btn-red {
	background-color: var(--rapid-red);
	color: var(--rapid-white);
	border: none;
}

.btn-disabled {
	border:1px solid #ccc;
	color: #ccc!important;
  cursor: not-allowed;
}

.btn-red:hover {
	background-color: var(--rapid-red-dark);
	color: var(--rapid-white);
	border: none;
}

.btn-green {
	background-color: var(--rapid-green);
	color: var(--rapid-white);
	border: none;
}
.btn-money-green {
	background-color: var(--rapid-money-green);
	color: var(--rapid-white);
	border: none;
}


.modal-header {
	background-color: var(--rapid-yellow);
	color: var(--rapid-teal);
  padding-top:5px;
  padding-bottom:5px;
}
.modal-footer {
  padding-top:5px;
  padding-bottom:5px;
}
.modal-title {
  font-weight:600;
}

.modal-content {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


.form__group {
	position: relative;
	padding: 5px 0 0;
	width: 100%;
}

.form__field {
	position: relative;
	font-family: inherit;
	width: 100%;
	border: 0;
	border-bottom: 1px solid #9b9b9b;
	outline: 0;
	font-size: 1em;
	color: var(--rapid-text);
	padding: 3px 5px 0px 5px;
	background: transparent;
	transition: border-color 0.2s;
	margin-top: 15px;
	border-image: linear-gradient(to right, var(--rapid-grey), var(--rapid-white));
	border-image-slice: 1;
	z-index: 99!important;
}

.form__field::placeholder {
	color: transparent;
}

.form__field:placeholder-shown~.form__label {
	font-size: 1em;
	cursor: text;
	top: 15px;
}

.form__label {
	position: absolute;
	top: 5px;
	display: block;
	transition: 0.2s;
	font-size: 1em;
	padding: 2px 5px;
	z-index: 50;
}

select {
	height: 27px;
}

.form__field .form__field:invalid {
	border-image: linear-gradient(to right, var(--rapid-red), var(--rapid-white));
	border-image-slice: 1;
}

.form__field:invalid~.form__label {
	position: absolute;
	top: 5px;
	display: block;
	transition: 0.2s;
	font-size: 0.8em;
	color: var(--rapid-red);
}

.form__field:valid {
	font-weight: 700;
	border-image: linear-gradient(to right, var(--rapid-teal), var(--rapid-white));
	border-image-slice: 1;
}

.form__field:valid~.form__label {
	position: absolute;
	top: 5px;
	display: block;
	transition: 0.2s;
	font-size: 0.8em;
	color: var(--rapid-teal);
}

.form__field:focus {
	font-weight: 700;
}

.form__field:focus~.form__label {
	position: absolute;
	top: 5px;
	display: block;
	transition: 0.2s;
	font-size: 1em;
	font-weight: bold;
}

.form__field:placeholder-shown~.form__label {
	top: 20px;
	font-size: 1em;
}

/* reset input */

.form-check {
  color:var(--rapid-blue);
}

.form__field:required,
.form__field:invalid {
	box-shadow: none;
}

.noRecord {
  font-style:italic;
  opacity:0.5;
  padding:10px 10px;
}

.companyRecord {
  position:relative;
  cursor:pointer;
  padding:7px 10px;
  border-bottom: solid 1px var(--rapid-teal);
}
.companyRecord:hover {
  background-color: var(--rapid-teal-light);
}
.companyRecord h3 {
  font-size:1em;
  font-weight:bold;
  margin:0;
  padding-right:20px;
  color:var(--rapid-blue);

}
.companyClass {
  position:absolute;
  top:0px;
  right:5px;
  color:var(--rapid-grey);
}
.crmCurrentClass {
  font-size:1.3em;
  color:var(--rapid-blue);
}
.crmTargetClass {
  font-size:0.8em;
}

.pill {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-size:0.8em;
  padding:2px 10px;
  white-space:pre;
}
.inactivePill {
  opacity:0.4!important;
}

.notQualifiedPill {
  background-color:var(--rapid-red);
  color:#fff;
}
.qualifiedPill {
  background-color:var(--rapid-green);
  color:#fff;
}

.divTable .divTableRow:nth-child(odd) {
	background-color: var(--rapid-teal-light);
}

.divTableRow {
  min-height:30px;
  padding:5px;
}


.rapidTable {
	width: 100%;
	border-top: 1px dashed var(--rapid-teal-light);
	border-bottom: 1px dashed var(--rapid-teal-light);
	background-color: var(--rapid-white);
  white-space: wrap;
  text-align:center;
}

.rapidTable th {
	font-weight: bold;
	padding: 2px 6px;
	color: var(--rapid-blue);
	border-right: 1px dashed var(--rapid-teal-light);
	border-left: 1px dashed var(--rapid-teal-light);
}

.rapidTable tr:nth-child(odd) {
	background-color: var(--rapid-teal-light);
}

.rapidTable tr:first-child {
	background-color: var(--rapid-white);
	border-bottom: 2px solid var(--rapid-blue);
}

.rapidTable td {
	padding: 2px 6px;
	border-right: 1px dashed var(--rapid-teal-light);
	border-left: 1px dashed var(--rapid-teal-light);
	word-break: break-word;
	vertical-align: top;
}

.devTable {
	width: 100%;
	border-top: 2px solid var(--rapid-dev);
	border-bottom: 2px solid var(--rapid-dev);
	background-color: var(--rapid-white);
  white-space: wrap;
  text-align:center;
}

.devTable th {
	font-weight: bold;
	padding: 2px 6px;
	color: var(--rapid-blue);
	border-right: 1px solid var(--rapid-dev);
	border-left: 1px solid var(--rapid-dev);
}

.devTable tr:nth-child(odd) {
	background-color: var(--rapid-teal-light);
}

.devTable tr:first-child {
	background-color: var(--rapid-white);
	border-bottom: 2px solid var(--rapid-dev);
}

.devTable td {
	padding: 2px 6px;
	border-right: 2px solid var(--rapid-dev);
	border-left: 2px solid var(--rapid-dev);
	word-break: break-word;
	vertical-align: top;
}

.displayOnly {
  display:block;
}
.desktopOnly {
  display:table-cell;
}
.mobileOnly {
  display:none;
}

.itemBox-outer {
  position:relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin:20px 0px;
  height:auto;
  cursor:pointer;
}
.itemBox-inner {
  position:relative;
  background-color:#fff;
  color:var(--rapid-text);
  -webkit-border-top-left-radius: 30px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topleft: 30px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  border-top-left-radius: 30px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  height:auto;
  margin-left:30px;
  overflow:hidden;
  padding-top:5px;
  padding-bottom:5px;
}
.itemBox-icon {
  position:relative;
  float:left;
  width:65px;
}
.itemBox-content {
  position:relative;
  float:left;
  padding-top:5px;
  padding-bottom:5px;
  height:auto;
  width:calc(70% - 80px);

}
.itemBox-content h3 {
  color:var(--rapid-grey);
  font-size:0.8em;
}
.itemBox-content h2 {
  color:var(--rapid-blue);
  font-size:1.3em;
  font-weight:bold;
}
.itemBox-content p {
  margin-bottom:3px;
}
.itemBox-inner .itemBox-image {
  position:absolute;
  right:0px;
  top:0px;
  width:200px;
  max-width:30%;
  height:100%;
  background-size:cover;
  background-repeat:no-repeat;
  background-position-y:center;
  background-position-x:center;
}
.itemBox-statusLabel {
  position:absolute;
  bottom:70px;
  left:-55px;
  font-weight:bold;
  font-size:0.8em;
  display:block;
  width:150px;
  height:30px;
  transform: rotate(-90deg);
  text-align:left;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
.itemBox-statusLabelMobile {
  display:none;
}
.itemSidebar-outer {
  position:fixed;
  bottom:0px;
  right:0px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-left-radius: 10px;
  height:calc(100vh - 120px);
  display:none;
  padding:0px;
  -webkit-box-shadow: -6px 0px 10px -4px rgba(0,0,0,0.5);
  -moz-box-shadow: -6px 0px 10px -4px rgba(0,0,0,0.5);
  box-shadow: -6px 0px 10px -4px rgba(0,0,0,0.5);
  overflow-y:scroll;

}
.itemSidebar-inner {
  background-color:var(--rapid-white);
  position:relative;
  background-color:#fff;
  color:var(--rapid-text);
  -webkit-border-top-left-radius: 30px;
  -moz-border-radius-topleft: 30px;
  border-top-left-radius: 30px;
  height:auto;
  min-height:100%;
  margin-left:30px;
  padding:15px;
}
.itemSidebar-inner h2 {
  font-size:1.4em;
  font-weight:bold;
}
.itemSidebar-statusLabel {
  position:absolute;
  top:300px;
  left:-255px;
  font-weight:bold;
  font-size:0.9em;
  display:inline-block;
  width:550px;
  height:30px;
  transform: rotate(-90deg);
  text-align:right;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  cursor:pointer;
}
.itemSidebar-icon {
  position:relative;
  float:left;
  width:80px;
  margin-left:-10px;
  margin-top:-3px;
}
.hiddenItem {
  opacity:0.4;
}


.nav-tabs .nav-link.active {
	color: var(--rapid-blue);
	background-color: var(--rapid-white);
	border-color: var(--rapid-teal);
	border-bottom-color: var(--rapid-white);
}

.nav-tabs {
	border-bottom: 1px solid var(--rapid-teal);
	font-size: 0.9em;
	font-weight: bold;
}

.nav-tabs .nav-link {
	color: var(--rapid-teal);
}

.tab-body {
	border-bottom: 1px solid var(--rapid-teal);
	border-left: 1px solid var(--rapid-teal);
	border-right: 1px solid var(--rapid-teal);
	min-height: 10px;
	padding-top: 10px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
.tab-pane {
  padding-bottom:10px;
}
.currencyTag {
  color:var(--rapid-grey);
  font-size:0.7em;
}
.helperIcon i {
  display:inline!important;
  width:auto;
  cursor:pointer;
  font-weight:normal;
  color:var(--rapid-grey);
  font-size:0.8em;
}
.helperIcon:hover {
  color:var(--rapid-blue);
}
.popover-header {
  background-color:var(--rapid-teal);
  color:var(--rapid-white);
  font-weight:bold;
}
.popover-body {
  font-size:1.1em;
}
.transactionDetail {
  cursor:pointer;
}
.rapidData {
  background-color:var(--rapid-grey-light);
  padding:10px;
}

.searchResult {
  background-color:var(--rapid-white);
  padding:10px 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom:5px;
  font-size:0.9em;

}
.searchResult h3 {
  font-size:1.3em;
  color:var(--rapid-blue);
}

.addItemIcon {
  text-align:center;
  position:relative;
  float:left;
}
.addItemIcon h3 {
  font-size:1em;
}
.addItemIcon img {
  width:100%;
}
.fabutton {
  background: none;
  padding: 0px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.addIcon {
  cursor:pointer;
  font-size:1.2em;
}
.deleteIcon {
  cursor:pointer;
  font-size:1.2em;
  color:var(--rapid-red);
}
.modal-header-delete {
  background-color:var(--rapid-red);
}


.pagination {
    margin-top:10px;
}
.pagination li a {
    color:var(--rapid-teal)
}
.pagination .page-item.active .page-link {
    background-color:var(--rapid-teal);
    border-color:var(--rapid-teal);
}

.creditAccount {
  background-color:var(--rapid-white);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding:10px;
  margin-bottom:5px;
  margin-top:5px;
}
.creditAccount h2 {
  font-size:1.2em;
  color:var(--rapid-teal);
  font-weight:bold;
}


.creditBar {
	height: 20px;
	width: 100%;
	background-color: var(--rapid-green);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}

.creditUse {
	position: relative;
	float: left;
	height: 30px;
	background-color: var(--rapid-blue-light);
	color: #fff;
	text-align: center;
}

.creditOverdue {
	position: relative;
	float: left;
	height: 30px;
	background-color: #e11e1e;
	color: #fff;
	text-align: center;
}





.creditBarButton {
	height: 5px;
	background-color: var(--rapid-green);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}

.creditUseButton {
	position: relative;
	float: left;
	height: 20px;
	background-color: var(--rapid-blue-light);
	color: #fff;
	text-align: center;
}

.creditOverdueButton {
	position: relative;
	float: left;
	height: 20px;
	background-color: #e11e1e;
	color: #fff;
	text-align: center;
}

.select2-container{

  border:none!important;
}
.select2-container--default .select2-results__option--selected {
  background-color:var(--rapid-blue);
  color:var(--rapid-white);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color:var(--rapid-teal);
  color:var(--rapid-white);
}
.select2-selection .select2-selection--single {
	border-image: linear-gradient(to right, var(--rapid-grey), var(--rapid-white));
	border-image-slice: 1;
}

.meterBar {
  width:100%;
  height:20px;
  background-color: blue;
  background-image: linear-gradient(
   90deg,
   var(--rapid-red) 16%,
   var(--rapid-red)  25%,
   var(--rapid-yellow)  45%,
   var(--rapid-yellow)  50%,
   var(--rapid-green)  63%,
   var(--rapid-green)  65%,
  	#2bff6f  67%,
   	#2bff6f  70%,
   var(--rapid-green) 72%,
   var(--rapid-green) 75%,
   var(--rapid-yellow) 87%,
   var(--rapid-yellow) 92%,
   var(--rapid-red) 100%);
  background-size: 100% 100%;
}


.category {
  background-color:var(--rapid-white);
  color:var(--rapid-blue);
  padding:10px 20px;
  border-bottom:1px solid var(--rapid-teal);
  cursor:pointer;
  font-weight:bold;
}
.category:hover {
  background-color:var(--rapid-teal);
  color:var(--rapid-white);
}
.sub-category {
  background-color:var(--rapid-teal-light);
  padding:10px 20px;
}
.article {
  cursor:pointer;
  width:100%;
  display:block;
  padding:5px;
}

#reviewArticle {
  border-top:1px solid var(--rapid-blue);
  margin-top:10px;
  padding:10px 0px;
}

#editArticle {
  border-top:1px solid var(--rapid-blue);
  margin-top:10px;
  padding:10px 0px;
}

.note-modal-content {
  border:none;
}
.note-modal-header {
  background-color:var(--rapid-teal)!important;
    border:none;

}

.note-modal-title {
  color:#fff!important;
}

.note-modal-footer {
  height:60px !important;
}

.btn-primary {
  background-color:var(--rapid-yellow)!important;
  color:var(--rapid-blue)!important;
  border:none;
}
.btn-primary:hover {
    border:none;
  background-color:var(--rapid-yellow-dark)!important;
}

#searchSidebar {
  position:relative;
  float:left;
  width:220px;
  height:100%;
  background-color:#fff;
}

#searchConsoleBox {
  background-color:var(--rapid-teal);
  margin:10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding:5px 10px 10px 10px;
  color:#fff;
}
#searchConsoleFilterBox {
  background-color:none;
  margin:10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding:5px 10px 10px 10px;
  color:var(--rapid-teal);
  border:1px solid var(--rapid-teal);
}
#searchConsoleEnquiryBox {
  background-color:none;
  margin:10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding:5px 10px 10px 10px;
  color:var(--rapid-teal);
  border:1px solid var(--rapid-teal);
}
.searchConsoleForm {
  background-color:#fff;
  margin-top:0px;
}
.searchConsoleLabel {
  margin-bottom:0px;
  font-size:0.8em;
}

#searchConsole-option {
  background-color:none;
  margin:10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding:5px 10px;
  color:var(--rapid-green);
  font-weight:bold;
  border:1px solid var(--rapid-green);
}
#searchConsole-callBack {
  background-color:none;
  margin:10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding:5px 10px;
  color:var(--rapid-yellow-dark);
  font-weight:bold;
  border:1px solid var(--rapid-yellow-dark);
}
#searchConsole-rejected {
  background-color:none;
  margin:10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding:5px 10px;
  color:var(--rapid-red);
  font-weight:bold;
  border:1px solid var(--rapid-red);
}

.dash-ticket {
  padding:0px 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom:2px;
}
.dash-status {
  font-size:0.7em;
}
.dash-title {
  font-weight:bold;
}

.propPhoto {
  position:relative;
  float:left;
  margin:15px;
}
.propPhoto img {
  max-height:200px;
}
.propPhoto .closeIcon {
  position:absolute;
  top:10px;
  right:5px;
  color:var(--rapid-white);
}
.propPhoto .closeIcon:hover {
  color:var(--rapid-teal);
  cursor:pointer;
}
.propPhoto .defaultIcon {
  position:absolute;
  top:10px;
  right:25px;
  color:var(--rapid-white);
}
.propPhoto .defaultIcon:hover {
  color:var(--rapid-teal);
  cursor:pointer;
}

.feedTile {
  display:block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding:5px 10px;
  margin-bottom:5px;
}
.feedHigh {
  border:none;
  background-color:var(--rapid-yellow);
  color:var(--rapid-teals);
}
.feedMed {
  border:solid 2px var(--rapid-yellow);
  color:var(--rapid-text);
}
.feedLow {
  background:none;
  color:var(--rapid-text);
  border-bottom:solid 1px #ccc;
}

.courseBar {
-webkit-border-top-right-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
-moz-border-radius-topright: 20px;
-moz-border-radius-bottomright: 20px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
  border:1px solid var(--rapid-teal);
  margin-top:5px;
  margin-bottom:5px;
}
.courseBar img {
    position:relative;
    float:left;
    width:25%;
    max-width:130px;
    margin-right:3%;
}
.courseBarContent {
  position:relative;
  float:left;
  width:70%;
}
.courseBar h3 {
  font-weight:bold;
  color:var(--rapid-teal);
  font-size:1.2em;
  padding-top:10px;
}

















@media only screen and (max-width: 992px) {

.desktopOnly {
  display:none;
}
  .courseBar img {
display:none;
}
    .courseBarContent {
padding-left:20px;
}

.displayOnly {
  display:none;
}
.mobileOnly {
  display:block;
}


#sideNav {
  width:60px;
  padding:7px 10px;
  z-index:99;
}

#sideNavSearchConsole {
  width:60px;
  padding:7px 10px;
  z-index:99;
}


#multiCompany {
  display:none;
}
#multiCompanyMobile {
  display:block;
  font-size:1.4em;
  color:var(--rapid-teal);
  text-align:center;
  margin-top:20px;
}
#multiCompanySelect {
  cursor:pointer;
}
#multiCompanyList {
  position:absolute;
  left:60px;
  background-color:var(--rapid-blue);
  color:var(--rapid-white);
  padding:5px;
  text-align:center;
  display:none;
  width:250px;
  z-index:999;
  margin-top:-40px;
}
#multiCompanyList a {
  display:block;
  padding:5px;
  color:var(--rapid-white);
}


.subNav {
  padding:0px;
  width:250px;
  z-index:99;
  position:absolute;
  left:60px;
  margin-top:-40px;
  font-size:0.8em;
}
.subNavText {
  display:table-cell!important;
}

#fullNav a {
  text-align:center;
  padding:10px 5px;
  font-size:1.2em;
}
#mainContent {
  width:calc(100% - 60px);
  margin-left:60px;
}
#mainContentSearchConsole {
  width:calc(100% - 60px);
  margin-left:60px;
}

.navText {
  display:none;
}
#topNavLeft {
  width:30%;
  overflow:hidden;
}

#topNavRight {
  width:70%;
}
#topNavRight i {
  width:25px;
}

#topNavSearch{
  width:50%;
  margin-left:10px;
}

.icon-logo {
  display:block;
}

.large-logo {
  display:none;
}
.itemSidebar-outer {
  width:80%!important;
  height:calc(100vh - 60px);
  top:60px;
  bottom:auto;

}
.itemSidebar-statusLabel {
  left:-260px;
}
.itemSidebar-inner {
  margin-left:20px;
  padding-bottom:150px;
}
.itemBox-outer {
}
.itemBox-inner {
  margin-left:0px;
  -webkit-border-top-left-radius: 15px;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-topleft: 15px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-top-left-radius: 15px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.itemBox-icon {
  width:40px;
}
.itemBox-content {
  width:calc(100% - 40px);
}
.itemBox-inner .itemBox-image {
  display:none;
}
.itemBox-statusLabel {
  display:none;
}
.itemBox-statusLabelMobile {
  display:block;
  padding:0px;
  margin:0px;
  font-weight:bold;
  text-align:right;
  padding-right:10px;
  font-size:0.9em;
}

.nav-tabs .nav-link {
  border: 1px solid var(--rapid-teal);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: var(--rapid-teal);
  margin-right: 3px;
  margin-bottom: 3px;
}
.nav-tabs {
  border: none;
}
.nav-tabs .nav-link.active {
  border: 1px solid var(--rapid-teal);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: var(--rapid-teal-light);
  color: var(--rapid-blue);
}
.tab-body {
  border: none;
  border-top: 1px solid var(--rapid-teal);
  padding: 0px;
  padding-top: 5px;
  margin-top: 5px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
  


}


@media only screen and (max-width: 602px) {

.desktopOnly {
  display:none;
}
}

.ui-datepicker-div {
   z-index: 9999 !important; /* has to be larger than 1050 */
}

.select2-container--open {
    z-index: 9999999
}

.reconciled {
  background-color:var(--rapid-green)!important;
  color:var(--rapid-teal)!important;
}
