@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700|Roboto:400,500,700,900);
.rct9k-timeline-div {
  width: 100%;
  height: 95vh;
  background-color: #a5a5a5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Timeline items */

.rct9k-items-outer {
  white-space: nowrap;
  position: absolute;
  display: inline-block;
  overflow: hidden;
  z-index: 3;
}

.rct9k-items-inner {
  display: inline-block;
  margin: 3px;
  padding: 3px;
  width: 100%;
}

.rct9k-marker-overlay {
  z-index: 2;
  height: 475px;
  position: absolute;
  width: 2px;
  background: red;
  pointer-events: none;
}

.rct9k-item-renderer-inner {
  pointer-events: none;
}

.rct9k-row {
  /* white-space: nowrap; */
  box-sizing: border-box;
  border: 1px solid black;
  border-top: 0;
}

.rct9k-row:nth-child(2) {
  border-top: 1px solid black;
}

.rct9k-items-selected {
  background-color: magenta;
}

.ReactVirtualized__Grid {
  overflow-x: hidden;
}

/* Timeline groups */

.rct9k-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid black;
  border-top: 0;
  background-color: white;
  z-index: 6;
}

.rct9k-group__resizeHandle {
  z-index: 100;
  cursor: col-resize;
  min-width: 9px;
  height: 100%;
  margin: 0 -4px;
  transition: all 200ms ease;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.rct9k-group__resizeHandle--hover {
  border-left: 4px solid #ff8a65;
  border-right: 4px solid #ff8a65;
  transition: all 200ms ease;
}

.rct9k-group:first-child {
  border-top: 1px solid black;
}

/* Timeline top timebar */

.rct9k-timebar-outer {
  height: 60px;
  background-color: white;
  border: 1px solid black;
  box-sizing: border-box;
}

.rct9k-timebar-inner {
  height: 30px;
  white-space: nowrap;
  overflow: hidden;
}

.rct9k-timebar-item {
  text-align: center;
  display: inline-block;
  border-left: 1px solid;
  white-space: nowrap;
  box-sizing: border-box;
}

.rct9k-timebar-item-selected {
  background-color: lightblue;
}

.rct9k-timebar-group-title {
  display: inline-block;
  position: absolute;
  height: 4em;
}

/* Multi-select box */

.rct9k-selector-outer {
  display: inline-block;
  background-color: #5bb3ff80;
  width: 1px;
  height: 1px;
  position: fixed;
  z-index: 5;
}

/* Row layer */

.rct9k-row-layer {
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
/* ========================================================================
   Component: Base
 ========================================================================== */

/*
 * 1. Set `font-size` to support `rem` units
 *    Not using `font` property because a leading hyphen (e.g. -apple-system) causes the font to break in IE11 and Edge
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 * 3. Style
 */

html {
  /* 1 */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 3 */
  background: #fff;
  color: #666;
}

/*
 * Removes default margin.
 */

body {
  margin: 0;
}

/* Links
 ========================================================================== */

/*
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}

/*
 * Remove the outline on focused links when they are also active or hovered
 */

a:active,
a:hover {
  outline: 0;
}

/*
 * Style
 */

a,
.uk-link {
  color: #1e87f0;
  text-decoration: none;
  cursor: pointer;
}

a:hover,
.uk-link:hover {
  color: #0f6ecd;
  text-decoration: underline;
}

/* Text-level semantics
 ========================================================================== */

/*
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/*
 * 1. Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 * 2. Add the correct font weight in Chrome, Edge, and Safari.
 */

/* 1 */

b,
strong {
  font-weight: inherit;
}

/* 2 */

b,
strong {
  font-weight: bolder;
}

/*
 * 1. Correct the odd `em` font sizing in all browsers.
 * 2. Consolas has a better baseline in running text compared to `Courier`
 * 3. Style
 */

:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  /* 1 */
  font-size: 0.875rem;
  /* 2 */
  font-family: Consolas, monaco, monospace;
  /* 3 */
  color: #f0506e;
  white-space: nowrap;
}

/*
 * Emphasize
 */

em {
  color: #f0506e;
}

/*
 * Insert
 */

ins {
  background: #ffd;
  color: #666;
  text-decoration: none;
}

/*
 * Mark
 */

mark {
  background: #ffd;
  color: #666;
}

/*
 * Quote
 */

q {
  font-style: italic;
}

/*
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
 ========================================================================== */

/*
 * Remove the gap between embedded content and the bottom of their containers.
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Responsiveness
 * 1. Set a maximum width
 * 2. Auto scale the height. Only needed if `height` attribute is present
 * 2. Corrects `max-width` behavior if padding and border are used
 */

audio,
canvas,
img,
video {
  /* 1 */
  max-width: 100%;
  /* 2 */
  height: auto;
  /* 3 */
  box-sizing: border-box;
}

/*
 * Remove the border on images inside links in IE 10-.
 */

img {
  border-style: none;
}

/*
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Block elements
 ========================================================================== */

/*
 * Margins
 */

p,
ul,
ol,
dl,
pre,
address,
fieldset,
figure {
  margin: 0 0 20px 0;
}

/* Add margin if adjacent element */

* + p,
* + ul,
* + ol,
* + dl,
* + pre,
* + address,
* + fieldset,
* + figure {
  margin-top: 20px;
}

/* Headings
 ========================================================================== */

h1,
.uk-h1,
h2,
.uk-h2,
h3,
.uk-h3,
h4,
.uk-h4,
h5,
.uk-h5,
h6,
.uk-h6 {
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: normal;
  color: #333;
  text-transform: none;
}

/* Add margin if adjacent element */

* + h1,
* + .uk-h1,
* + h2,
* + .uk-h2,
* + h3,
* + .uk-h3,
* + h4,
* + .uk-h4,
* + h5,
* + .uk-h5,
* + h6,
* + .uk-h6 {
  margin-top: 40px;
}

/*
 * Sizes
 */

h1,
.uk-h1 {
  font-size: 2.23125rem;
  line-height: 1.2;
}

h2,
.uk-h2 {
  font-size: 1.7rem;
  line-height: 1.3;
}

h3,
.uk-h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

h4,
.uk-h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}

h5,
.uk-h5 {
  font-size: 16px;
  line-height: 1.4;
}

h6,
.uk-h6 {
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Lists
 ========================================================================== */

ul,
ol {
  padding-left: 30px;
}

/*
 * Reset margin for nested lists
 */

ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
  margin: 0;
}

/* Description lists
 ========================================================================== */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Horizontal rules
 ========================================================================== */

/*
 * 1. Add the correct box sizing and height in Firefox.
 * 2. Show the overflow in Edge and IE.
 * 3. Style
 */

hr,
.uk-hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
  /* 3 */
  margin: 0 0 20px 0;
  border: 0;
  border-top: 1px solid #e5e5e5;
}

/* Add margin if adjacent element */

* + hr,
* + .uk-hr {
  margin-top: 20px;
}

/* Address
 ========================================================================== */

address {
  font-style: normal;
}

/* Blockquotes
 ========================================================================== */

blockquote {
  margin: 0 0 20px 0;
  font-size: 1.25rem;
  line-height: 1.5;
  font-style: italic;
}

/* Add margin if adjacent element */

* + blockquote {
  margin-top: 20px;
}

/*
 * Content
 */

blockquote p:last-of-type {
  margin-bottom: 0;
}

blockquote footer {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Preformatted text
 ========================================================================== */

/*
 * 1. Contain overflow in all browsers.
 * 2. Override UA
 */

pre {
  font: 0.875rem / 1.5 Consolas, monaco, monospace;
  color: #666;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  /* 1 */
  overflow: auto;
}

pre code {
  font-family: Consolas, monaco, monospace;
}

/* Selection pseudo-element
 ========================================================================== */

::-moz-selection {
  background: #39f;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #39f;
  color: #fff;
  text-shadow: none;
}

/* HTML5 elements
 ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  /* 1 */
  display: block;
}

/*
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/*
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */

template,
[hidden] {
  display: none;
}

/* Iframe
 ========================================================================== */

iframe {
  border: 0;
}

/* Prevent the 300ms delay for touchscreen interactions
 ========================================================================== */

/*
 * Most browsers prevent the 300ms delay automatically for sites that use the `width=device-width` property.
 * For Safari on iOS 9.3+, IE 11 and Edge on desktops and IE 11 on Windows Phone 8.1 it must be applied manually.
 */

a,
area,
button,
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

/* Pass media breakpoints to JS
 ========================================================================== */

/*
 * Breakpoints
 */

.var-media-s:before {
  content: "640px";
}

.var-media-m:before {
  content: "960px";
}

.var-media-l:before {
  content: "1200px";
}

.var-media-xl:before {
  content: "1600px";
}

body {
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.container,
.bhp-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.bhp-button {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.5rem;
  display: inline-block;
  height: 40px;
  padding: 0 20px;
  outline: none;
  background-size: 100%;
}

.bhp-button.bhp-semi-round {
  border-radius: 25px;
}

.bhp-button.bhp-primary {
  background-color: #e8e8e8;
  color: #fff;
}

table {
  margin: 0;
  border: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

a {
  text-decoration: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #f4511e;
}

a:hover,
a:focus {
  outline: none;
  color: #f4511e;
}

img {
  border: 0;
}

label {
  display: inline-block;
  vertical-align: middle;
}

fieldset {
  margin-top: 10px;
}

fieldset label {
  display: inline-block;
  vertical-align: middle;
}

.bhp-fieldset.bhp-tab {
  position: relative;
  border: 1px solid #78909c;
  border-radius: 4px;
  background-color: #fff;
  padding: 10px 0;
  margin-top: 40px;
  margin-bottom: 0px;
}

.bhp-fieldset.bhp-tab legend {
  position: absolute;
  top: -27px;
  left: 10px;
  width: auto;
  font-size: 14px;
  color: #555;
  border: 1px solid #78909c;
  border-bottom: 1px solid #ffffff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: #fff;
  padding: 2px 15px;
  margin-bottom: 0;
}

input {
  width: 200px;
  line-height: normal;
}

input[type='file'] {
  display: inline-block;
  line-height: 0;
}

/*****************************
 * BHP TYPOGRAPHY
 *****************************/

/*
Font Sizes in REM
32px = 2rem
30px = 1.875rem
24px = 1.5rem
20px = 1.25rem
18px = 1.125rem
16px = 1rem (base)
14px = 0.875rem
12px = 0.75rem
10px = 0.625rem,
*/

[class*='bhp-title'] {
  font-family: "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
}

.bhp-title-6 {
  font-size: 32px;
  font-size: 2rem;
}

.bhp-title-5 {
  font-size: 30px;
  font-size: 1.875rem;
}

.bhp-title-4 {
  font-size: 24px;
  font-size: 1.5rem;
}

.bhp-title-3 {
  font-size: 20px;
  font-size: 1.25rem;
}

.bhp-title-2 {
  font-size: 18px;
  font-size: 1.125rem;
}

.bhp-title-1 {
  font-size: 16px;
  font-size: 1rem;
}

.bhp-margin-bottom-1x {
  display: block;
  margin-bottom: 5px;
}

.bhp-margin-bottom-2x {
  display: block;
  margin-bottom: 10px;
}

.bhp-margin-bottom-3x {
  display: block;
  margin-bottom: 15px;
}

.bhp-margin-bottom-4x {
  display: block;
  margin-bottom: 20px;
}

.bhp-padding-1x {
  display: block;
  padding: 5px;
}

.bhp-padding-2x {
  display: block;
  padding: 10px;
}

.bhp-padding-3x {
  display: block;
  padding: 15px;
}

.bhp-padding-4x {
  display: block;
  padding: 20px;
}

.bhp-clearfix {
  clear: both;
}

.bhp-show,
.bhp-open {
  display: block !important;
}

.bhp-hide {
  display: none !important;
}

.bhp-visible {
  visibility: visible !important;
}

.bhp-invisible {
  visibility: hidden !important;
}

.bhp-collapse {
  visibility: collapse !important;
}

.bhp-float-left {
  float: left !important;
}

.bhp-float-right {
  float: right !important;
}

.bhp-overflow-none {
  overflow: hidden;
}

.bhp-overflow-scroll {
  overflow: scroll;
}

.bhp-primary {
  background-color: #f4511e;
  color: #fff;
}

.bhp-primary-text {
  color: #f4511e;
}

/*****************************
 * CONTAINERS
 *****************************/

.bhp-version {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5px;
  text-align: center;
  background: #455a64;
  font-size: 12px;
}

.bhp-pastille {
  display: inline-block;
  visibility: hidden;
  position: absolute;
  top: 3px;
  left: 25px;
  z-index: 2;
  background: #ff0000;
  color: #fff;
  height: 20px;
  min-width: 20px;
  line-height: 20px;
  padding: 0 4px;
  border-radius: 50%;
  font-family: 'Arial';
  font-weight: 400;
  font-size: 11px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
}

.bhp-pastille.bhp-visible {
  visibility: visible;
}

.bhp-checkmark {
  display: inline-block;
}

.bhp-checkmark:after {
  /*Add another block-level blank space*/
  content: '';
  display: block;
  /*Make it a small rectangle so the border will create an L-shape*/
  width: 6px;
  height: 12px;
  /*Add a white border on the bottom and left, creating that 'L' */
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  /*Rotate the L 45 degrees to turn it into a checkmark*/
  transform: rotate(45deg);
}

.bhp-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.bhp-container-footer {
  overflow: hidden;
  height: calc(100% - 50px);
}

.bhp-container-footer .bhp-table {
  height: calc(100% - 40px);
}

.bhp-content-container {
  position: relative;
  width: 100%;
  height: calc(100% - 50px);
}

.bhp-inline-container {
  display: inline-block;
  height: 100%;
  position: relative;
}

.bhp-layout-container {
  background: #e6e9ee;
}

.bhp-no-data {
  display: block;
  padding: 10px;
}

.bhp-height-100 {
  display: block;
  height: 100%;
  position: relative;
}

.bhp-width-100 {
  display: block;
  width: 100%;
  position: relative;
}

.quicklink_header {
  font-size: large;
  text-align: center;
}

.bhp-site-layout {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.bhp-site-header {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.bhp-site-content {
  position: absolute;
  top: 60px;
  width: 100%;
  overflow: hidden;
  height: calc(100% - 100px);
  background-color: #eceff1;
}

@media (min-width: 1200px) {
  .bhp-site-content {
    top: 95px;
    height: calc(100% - 95px);
  }
}

.bhp-site-header {
  -ms-flex: none;
      flex: none;
  overflow: hidden;
  height: 95px;
  background-color: #263238;
  color: #fff;
}

.bhp-scroll {
  overflow: auto;
}

.bhp-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bhp-list .bhp-list-item {
  display: inline-block;
}

.bhp-list-horizontal {
  display: -ms-flexbox;
  display: flex;
}

.bhp-list-horizontal > .bhp-list-item {
  display: inline-block;
}

.bhp-active {
  color: #52c41a;
}

.bhp-inactive {
  color: #f5222d;
}

.bhp-right {
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

.bhp-left {
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
}

.bhp-title {
  font-family: "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bhp-side-bar {
  border-right: 1px solid #e8e8e8;
  background-color: #fff;
}

.bhp-update-notice {
  position: absolute;
  z-index: 999;
}

.bhp-update-notice .bhp-banner {
  z-index: 1;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  font-size: 0.875rem;
}

.bhp-update-notice .bhp-banner .anticon {
  padding-right: 5px;
}

.bhp-login,
.bhp-tenancy {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(/assets/images/train-background.jpg);
}

.bhp-login-panel,
.bhp-tenancy-panel {
  overflow: hidden;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1001;
  color: #fff;
}

.bhp-login .bhp-banner,
.bhp-tenancy .bhp-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-size: 0.875rem;
}

.bhp-login .bhp-banner .anticon,
.bhp-tenancy .bhp-banner .anticon {
  padding-right: 5px;
}

.bhp-login .bhp-header,
.bhp-login .bhp-content,
.bhp-login .bhp-footer,
.bhp-tenancy .bhp-header,
.bhp-tenancy .bhp-content,
.bhp-tenancy .bhp-footer {
  padding: 15px;
  text-align: center;
}

.bhp-login .bhp-header img,
.bhp-tenancy .bhp-header img {
  height: 30px;
}

.bhp-login .bhp-content,
.bhp-tenancy .bhp-content {
  font-size: 14px;
  font-size: 0.875rem;
}

.bhp-login .bhp-footer,
.bhp-tenancy .bhp-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  color: white;
  font-size: 12px;
}

.bhp-login .bhp-login-option,
.bhp-tenancy .bhp-login-option {
  font-size: 16px;
  font-size: 1rem;
}

.bhp-login .bhp-button-container,
.bhp-tenancy .bhp-button-container {
  display: inline-block;
  max-width: 640px;
}

.bhp-login form,
.bhp-tenancy form {
  display: inline-block;
  width: 300px;
  margin-bottom: 10px;
}

.bhp-login form input,
.bhp-tenancy form input {
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  height: 40px;
  border: 1px solid #777;
  border-radius: 25px;
  outline: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.bhp-login .ant-form-item,
.bhp-tenancy .ant-form-item {
  margin-bottom: 10px;
}

.bhp-login .ant-form-item-control,
.bhp-tenancy .ant-form-item-control {
  line-height: normal;
}

.bhp-login .ant-input-affix-wrapper .ant-input-prefix,
.bhp-tenancy .ant-input-affix-wrapper .ant-input-prefix {
  color: #fff;
}

.bhp-login .ant-btn,
.bhp-tenancy .ant-btn {
  width: 100%;
  height: 40px;
  margin: 10px 0;
  border-radius: 25px;
  line-height: 40px;
}

.bhp-login .has-error .ant-input,
.bhp-login .has-error .ant-input:hover,
.bhp-tenancy .has-error .ant-input,
.bhp-tenancy .has-error .ant-input:hover {
  border-color: #f00;
}

.bhp-login .has-error .ant-form-explain,
.bhp-login .has-error .ant-form-split,
.bhp-tenancy .has-error .ant-form-explain,
.bhp-tenancy .has-error .ant-form-split {
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  margin-top: 0;
  color: #f00;
}

.bhp-login .ant-alert-error,
.bhp-tenancy .ant-alert-error {
  display: inline-block;
  width: 300px;
  border: 1px solid red;
  border-radius: 25px;
  background-color: rgba(255, 0, 0, 0.1);
  color: #fff;
}

.bhp-login .ant-alert-error .ant-alert-message,
.bhp-tenancy .ant-alert-error .ant-alert-message {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  color: #fff;
}

.bhp-tenancy .bhp-no-access .bhp-details {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin: 15px 0px;
}

.bhp-tenancy .bhp-no-access .bhp-details i {
  display: block;
  margin-top: 20px;
  font-size: 40px;
  font-size: 2.5rem;
}

.bhp-tenancy .bhp-site-access {
  font-size: 16px;
  font-size: 1rem;
}

.bhp-tenancy .bhp-site-access .bhp-button-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex: 1 1 0px;
      flex: 1 1 0;
  -ms-flex-pack: center;
      justify-content: center;
  margin: auto;
}

.bhp-tenancy .bhp-site-access .ant-btn {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.125rem;
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  height: auto;
  margin: 10px;
  width: 140px;
  min-height: 80px;
  word-wrap: break-word;
  white-space: normal;
}

.bhp-site-menu {
  display: none;
  -ms-flex-positive: 1;
      flex-grow: 1;
}

@media (min-width: 1200px) {
  .bhp-site-menu {
    display: block;
  }
}

.bhp-site-menu,
.bhp-report-menu {
  margin-left: 20px;
}

.bhp-site-menu .ant-menu,
.bhp-report-menu .ant-menu {
  border-bottom: 0;
  background: transparent;
  color: #fff;
}

.bhp-site-menu .ant-menu-item,
.bhp-report-menu .ant-menu-item {
  height: 32px;
  margin: 10px 2px 0;
  padding: 0 25px;
  border: 0;
  transition: none;
}

.bhp-site-menu .ant-menu-item:hover,
.bhp-report-menu .ant-menu-item:hover {
  border-bottom: 0;
}

.bhp-site-menu .ant-menu-item-selected,
.bhp-report-menu .ant-menu-item-selected {
  border: 1px solid #e8e8e8;
  border-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: #fff;
  color: #f00;
}

.bhp-site-menu .ant-menu-item-selected:hover,
.bhp-report-menu .ant-menu-item-selected:hover {
  background-color: #fff;
}

.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  background: #fff;
  color: #f00;
}

.bhp-report-menu {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.bhp-report-menu .submenu-title-wrapper {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2rem;
  display: inline-block;
  border: 0;
  border-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: #FF3D00;
  color: #fff;
  transition: none;
  height: 32px;
  margin: 10px 0 0;
  padding: 0 20px;
  cursor: pointer;
}

.ant-menu-horizontal .ant-menu-submenu {
  top: 0;
  margin-top: 0;
  background: none;
}

.ant-menu-submenu:hover {
  background: none;
}

.bhp-sub-menu {
  display: none;
  width: 100%;
}

@media (min-width: 1200px) {
  .bhp-sub-menu {
    display: block;
  }
}

.bhp-sub-menu .ant-menu {
  height: 54px;
  color: #000;
  line-height: 54px;
}

.bhp-sub-menu .ant-menu-item {
  top: 0;
  border: 0;
}

.bhp-sub-menu .ant-menu-item:first-child {
  margin-left: 10px;
}

.bhp-sub-menu .ant-menu-item:hover {
  border-bottom: 0;
}

.bhp-sub-menu .ant-menu-item .bhp-link {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: normal;
}

.bhp-sub-menu .ant-menu-item .bhp-link i {
  line-height: 20px;
}

.bhp-sub-menu .ant-menu-item .bhp-link .bhp-text {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 3px;
}

.ant-menu-horizontal {
  line-height: 31px;
}

.ant-menu-horizontal > .ant-menu-submenu {
  border-bottom: 0;
}

.ant-menu-horizontal > .ant-menu-submenu:hover {
  border-bottom: 0;
}

.ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover {
  background-color: #FF3D00;
  color: #fff;
}

.bhp-burger__menu {
  font-size: 22px;
  font-size: 1.375rem;
  position: absolute;
  right: 15px;
  top: 14px;
  cursor: pointer;
  z-index: 999;
}

@media (min-width: 1200px) {
  .bhp-burger__menu {
    display: none;
  }
}

.bhp-container {
  transition: all 0.1s ease-in;
}

.toggle {
  transform: translate(-310px, 0);
}

.toggle:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.bhp-site-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 60px;
}

@media (min-width: 1200px) {
  .bhp-site-header {
    height: 95px;
  }
}

.bhp-site-header .bhp-application-name {
  font-size: 12px;
  font-size: 0.75rem;
  display: none;
  text-align: center;
  line-height: 25px;
}

.bhp-site-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  height: 60px;
}

@media (min-width: 1200px) {
  .bhp-site-logo {
    width: 120px;
    height: 40px;
  }
}

.bhp-site-logo > img {
  height: 20px;
}

.bhp-site-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-size: 0.875rem;
  z-index: 100;
}

.ant-layout-content,
.ant-table-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.ant-layout-footer {
  padding: 20px;
}

.ant-layout-content,
.ant-layout-footer {
  background: #fff;
}

.ant-drawer-body {
  height: 100%;
}

.bhp-settings {
  position: fixed;
  transform: translate(310px, 0);
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 310px;
  background-color: #b0bec5;
}

@media (min-width: 1200px) {
  .bhp-settings {
    top: 41px;
    right: 0;
    transform: translate(0, 0);
  }
}

.bhp-settings-header {
  padding: 40px 20px;
}

.bhp-settings-content {
  padding: 0;
}

.bhp-settings-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  height: 40px;
  border-top: 1px solid #fff;
  color: #fff;
  vertical-align: middle;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 1200px) {
  .bhp-settings-item {
    display: -ms-flexbox;
    display: flex;
  }
}

.bhp-settings-item a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  color: #fff;
  width: 100%;
  height: 100%;
  -ms-flex-align: center;
      align-items: center;
}

.bhp-settings-item:first-child {
  display: none;
}

.bhp-settings-item:last-child {
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #fff;
}

.bhp-settings-item:hover {
  background-color: #f00;
  color: #fff;
  text-decoration: none;
}

.bhp-settings-item i {
  margin: 0 15px;
}

.bhp-settings-version {
  font-size: 12px;
  font-size: 0.75rem;
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: #455a64;
  text-align: center;
}

.bhp-user-profile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  line-height: normal;
}

.bhp-user-profile .bhp-user-name {
  padding-left: 10px;
  text-align: left;
}

.bhp-user-profile.bhp-vertical {
  -ms-flex-direction: column;
      flex-direction: column;
}

.bhp-user-profile.bhp-vertical .bhp-user-name {
  margin-top: 10px;
}

.bhp-user-profile .ant-avatar-circle {
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border: 0;
  border-radius: 100%;
  background-color: #78909c;
}

.bhp-user-profile .ant-avatar-string {
  width: 100%;
}

.bhp-user-profile .ant-avatar img {
  display: inline-block;
  width: auto;
}

.bhp-user-profile.bhp-large .ant-avatar {
  width: 100px;
  height: 100px;
}

.bhp-user-profile.bhp-large .ant-avatar-string {
  font-size: 45px;
  font-size: 2.8125rem;
}

.bhp-user-profile.bhp-large .ant-avatar .anticon {
  transform: scale(3.5) !important;
}

.bhp-user-profile.bhp-default .ant-avatar {
  width: 80px;
  height: 80px;
}

.bhp-user-profile.bhp-default .ant-avatar-string {
  font-size: 32px;
  font-size: 2rem;
}

.bhp-user-profile.bhp-default .ant-avatar .anticon {
  transform: scale(2.5) !important;
}

.bhp-user-profile.bhp-small .ant-avatar {
  width: 60px;
  height: 60px;
}

.bhp-user-profile.bhp-small .ant-avatar-string {
  font-size: 24px;
  font-size: 1.5rem;
}

.bhp-user-profile.bhp-small .ant-avatar .anticon {
  transform: scale(1.5) !important;
}

.bhp-breadcrumb .bhp-item {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  text-align: center;
  line-height: 24px;
  background-color: #455A64;
  color: #fff;
  border-top: 1px solid #455A64;
  border-bottom: 1px solid #455A64;
  padding: 0px 10px 0px 15px;
  font-size: 14px;
  font-size: 0.875rem;
}

.bhp-breadcrumb .bhp-item:nth-child(n+2) {
  padding-left: 20px;
}

.bhp-breadcrumb .bhp-item:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: -2px;
  left: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 12px;
  border-left-color: #fff;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0px;
  z-index: 1;
}

.bhp-breadcrumb .bhp-item:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 10px;
  border-left-color: #455A64;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0px;
  z-index: 2;
}

.bhp-breadcrumb .bhp-item.bhp-inverted {
  background: #fff;
  color: #455A64;
}

.bhp-breadcrumb .bhp-item.bhp-inverted:before {
  border-left-color: #455A64;
  border-width: 12px 0 12px 10px;
  top: 0px;
}

.bhp-breadcrumb .bhp-item.bhp-inverted:after {
  border-left-color: #fff;
  left: calc(100% - 1px);
}

.bhp-card {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75rem;
  padding: 10px 15px;
  border: 1px solid #d8d8d8;
  background: #f5f5f5;
}

.bhp-slide-panel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  position: relative;
  width: 100%;
  overflow: hidden;
  -ms-flex: 1;
      flex: 1;
}

.bhp-slide-panel > .bhp-slide {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 0px;
  height: 100%;
  transition: 0;
  z-index: 2;
  overflow: auto;
}

.bhp-slide-panel > .bhp-push {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  height: 100%;
  transition: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.bhp-slide-panel > .bhp-slide.bhp-left {
  left: 0px;
  border-right: 1px solid #e1e1e1;
}

.bhp-slide-panel > .bhp-push.bhp-left {
  transition: margin-left 0;
}

.bhp-slide-panel > .bhp-slide.bhp-right {
  right: 0px;
  border-left: 1px solid #e1e1e1;
}

.bhp-slide-panel > .bhp-push.bhp-right {
  transition: margin-right 0;
}

.bhp-roster-publish .bhp-form-container {
  padding: 20px;
}

.bhp-roster-publish .bhp-form > .ant-row {
  max-width: none;
}

.bhp-roster-publish h4 {
  text-transform: none;
}

.bhp-roster-publish table {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(34, 36, 38, 0.15);
  border-radius: 4px;
  border-collapse: separate;
  border-separate: 0;
}

.bhp-roster-publish table th {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(34, 36, 38, 0.15);
}

.bhp-roster-publish table td {
  padding: 10px;
  border-top: 1px solid rgba(34, 36, 38, 0.15);
}

.bhp-roster-publish table thead th {
  background: #f9fafb;
}

.bhp-roster-publish table thead tr:first-child > th:first-child {
  border-radius: 4px 0 0 0;
}

.bhp-roster-publish table thead tr:first-child > th:last-child {
  border-radius: 0 4px 0 0;
}

.bhp-roster-publish table tbody tr:first-child td {
  border-top: none;
}

.bhp-select-user-dropdown.ant-select-dropdown--empty {
  text-align: center;
}

.bhp-my-roster {
  height: 100%;
  overflow: auto;
}

.bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-select-roster span {
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 5px;
  font-weight: bold;
}

.bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-select-roster .ant-select {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
  width: initial !important;
}

.bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-select-roster .ant-select-selection {
  width: 100%;
}

@media (min-width: 1200px) {
  .bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-select-roster .ant-select-selection {
    min-width: 300px;
  }
}

.bhp-my-roster .fc {
  padding: 15px;
}

.bhp-my-roster .fc-list-empty-wrap2 {
  padding: 30px;
}

.bhp-my-roster .fc-toolbar {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media (min-width: 960px) {
  .bhp-my-roster .fc-toolbar {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}

.bhp-my-roster .fc-toolbar .fc-left,
.bhp-my-roster .fc-toolbar .fc-center,
.bhp-my-roster .fc-toolbar .fc-right {
  margin: 5px 0;
}

@media (min-width: 1200px) {
  .bhp-my-roster .fc-toolbar .fc-right {
    display: inline-block;
  }
}

.bhp-my-roster .fc-toolbar .fc-toolbar-label {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}

.bhp-my-roster .fc-toolbar .fc-btn-group {
  background: #fff;
}

@media (min-width: 1200px) {
  .bhp-my-roster .fc-toolbar .fc-timeGridDay-button,
  .bhp-my-roster .fc-toolbar .fc-timeGridWeek-button,
  .bhp-my-roster .fc-toolbar .fc-dayGridMonth-button {
    display: inline-block;
  }
}

.bhp-my-roster .fc-toolbar button {
  background-color: #fff;
  text-transform: capitalize;
  box-shadow: none;
  outline: none;
  border: 1px solid #ccc;
  color: #373a3c;
}

.bhp-my-roster .fc-toolbar button:hover {
  color: #ff6229;
  background-color: #fff;
  border-color: #ccc;
  cursor: pointer;
}

.bhp-my-roster .fc-toolbar button.fc-button-active {
  color: #fff;
  background-color: #FF3D00;
  border-color: #ccc;
  outline: none;
}

.bhp-my-roster .fc .fc-dayGrid-view,
.bhp-my-roster .fc .fc-dayGridMonth-view,
.bhp-my-roster .fc .fc-list-view {
  background: #fff;
}

.bhp-my-roster .fc .fc-dayGrid-view .fc-time-content,
.bhp-my-roster .fc .fc-dayGrid-view .fc-month-content,
.bhp-my-roster .fc .fc-dayGrid-view .fc-agenda-content,
.bhp-my-roster .fc .fc-dayGrid-view .fc-allday-cell,
.bhp-my-roster .fc .fc-dayGridMonth-view .fc-time-content,
.bhp-my-roster .fc .fc-dayGridMonth-view .fc-month-content,
.bhp-my-roster .fc .fc-dayGridMonth-view .fc-agenda-content,
.bhp-my-roster .fc .fc-dayGridMonth-view .fc-allday-cell,
.bhp-my-roster .fc .fc-list-view .fc-time-content,
.bhp-my-roster .fc .fc-list-view .fc-month-content,
.bhp-my-roster .fc .fc-list-view .fc-agenda-content,
.bhp-my-roster .fc .fc-list-view .fc-allday-cell {
  font-size: 14px;
  font-size: 0.875rem;
}

.bhp-my-roster .fc .fc-header {
  background: linear-gradient(#ffffff, #e1e1e1);
  line-height: 28px;
  padding: 0px 15px;
}

.bhp-my-roster .fc .fc-header-gutter {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: capitalize;
}

.bhp-my-roster .fc .fc-overlay-header {
  background-color: #263238;
  color: #fff;
  line-height: 32px;
  padding: 0px 15px;
  font-size: 14px;
  font-size: 0.875rem;
}

.bhp-my-roster .fc .fc-show-more {
  display: inline-block;
  padding: 4px 10px;
  margin: 8px 0px 5px 5px;
  background: #FF3D00;
  color: #fff;
  border-radius: 25px;
  font-weight: normal;
  font-size: 12px;
  font-size: 0.75rem;
}

.bhp-my-roster .fc .fc-event {
  padding: 0px;
  background-color: transparent;
  border-radius: 0px;
  cursor: default;
}

.bhp-my-roster .fc .fc-event .bhp-event-content {
  padding: 4px 10px;
  border-radius: 0px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
}

.bhp-my-roster .fc .fc-event .bhp-event-content .bhp-time {
  display: inline-block;
  line-height: 24px;
  vertical-align: middle;
  font-weight: 500;
}

.bhp-my-roster .fc .fc-event .bhp-event-content .bhp-time.bhp-single-day i {
  margin-right: 5px;
}

.bhp-my-roster .fc .fc-event .bhp-event-content .bhp-time.bhp-multi-day {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  text-align: center;
  line-height: 22px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0px 10px;
  margin: 2px 0px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
}

.bhp-my-roster .fc .fc-event .bhp-event-content .bhp-time.bhp-multi-day.bhp-start:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 10px;
  border-left-color: rgba(0, 0, 0, 0.7);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.bhp-my-roster .fc .fc-event .bhp-event-content .bhp-time.bhp-multi-day.bhp-end {
  margin-left: 10px;
}

.bhp-my-roster .fc .fc-event .bhp-event-content .bhp-time.bhp-multi-day.bhp-end:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0px;
  right: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 10px 11px 0px;
  border-right-color: rgba(0, 0, 0, 0.7);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.bhp-my-roster .fc .fc-event .bhp-event-content .bhp-time .bhp-tag {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  color: #fff;
  padding: 0 8px;
  margin-right: 5px;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 18px;
  vertical-align: middle;
}

.bhp-my-roster .fc .fc-event .bhp-event-content .bhp-comments {
  display: inline-block;
  line-height: 24px;
  vertical-align: middle;
  margin-left: 10px;
}

.bhp-my-roster .fc .fc-event .bhp-event-content .bhp-title {
  display: block;
  text-transform: capitalize;
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
}

.bhp-my-roster .fc .fc-day-slot .fc-event {
  border: 1px solid #e8e8e8;
}

.bhp-my-roster .fc .fc-day-slot .fc-event .fc-event-label {
  display: none;
}

.bhp-my-roster .fc .fc-day-slot .fc-event .bhp-event-content {
  height: 100%;
}

.bhp-roster-settings .ant-tabs.ant-tabs-card > .ant-tabs-bar {
  margin-bottom: 0px;
}

.bhp-roster-settings .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-nav-wrap {
  position: absolute;
  bottom: 0px;
  margin-bottom: 0px;
  margin-left: 5px;
}

.bhp-roster-settings .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  line-height: 30px;
}

.bhp-roster-settings .ant-tabs.ant-tabs-card .ant-tabs-tabpane {
  min-height: 450px;
}

.bhp-roster-settings .bhp-timeline-options-form .bhp-form,
.bhp-roster-settings .bhp-timeline-filters-form .bhp-form {
  padding-top: 20px;
}

.bhp-assignment-notes {
  display: inline-block;
  margin: 0 3px;
}

.bhp-timeline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  border: 0;
  overflow: auto;
  background-color: #fff;
}

.bhp-timeline-popover {
  width: 300px;
}

.bhp-timeline-popover .ant-popover-inner {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.bhp-timeline-popover .ant-popover-inner .ant-popover-title {
  background-color: #263238;
  color: #fff;
}

.bhp-timeline-popover .ant-popover-inner .ant-popover-inner-content {
  padding: 10px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #000;
  line-height: 1.5;
}

.bhp-timeline-popover .ant-popover-inner .ant-popover-inner-content label {
  font-weight: bold;
  min-width: 45px;
}

.bhp-timeline-popover .ant-popover-inner .ant-popover-inner-content .ant-tag {
  margin-top: 5px;
}

.bhp-template-mapper .bhp-tool-bar {
  -ms-flex-positive: 0;
      flex-grow: 0;
}

.bhp-template-mapper .bhp-user-list .bhp-tool-bar {
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.bhp-template-mapper .bhp-timeline-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  overflow: auto;
}

.bhp-template-mapper .bhp-timeline-container::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.bhp-template-mapper .bhp-timeline-container::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

.bhp-template-mapper .bhp-timeline-container::-webkit-scrollbar-thumb {
  height: 10px;
  border-radius: 10px;
  background-color: #b0bec5;
  outline: 1px solid #cfd8dc;
}

.bhp-template-mapper .bhp-timeline-container .bhp-tool-bar {
  -ms-flex-positive: 0;
      flex-grow: 0;
}

.bhp-template-mapper .bhp-timeline-container .bhp-timeline {
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  min-width: 1000px;
}

.react-calendar-timeline .rct-outer {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.react-calendar-timeline .rct-scroll {
  display: inline-block;
  overflow-x: scroll;
  overflow-y: hidden;
  vertical-align: top;
  white-space: normal;
  -ms-touch-action: none;
      touch-action: none;
}

.react-calendar-timeline .rct-canvas {
  position: relative;
}

.react-calendar-timeline .rct-item {
  font-size: 12px;
  font-size: 0.75rem;
  position: absolute;
  z-index: 80;
  color: #fff;
  cursor: pointer;
}

.react-calendar-timeline .rct-item:hover {
  z-index: 88;
}

.react-calendar-timeline .rct-item.selected.can-move {
  cursor: move;
}

.react-calendar-timeline .rct-item.selected.can-resize-left .rct-drag-left {
  cursor: w-resize;
}

.react-calendar-timeline .rct-item.selected.can-resize-left .rct-drag-right {
  cursor: e-resize;
}

.react-calendar-timeline .rct-item-content {
  display: inline-block;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  width: 100%;
  height: 100%;
}

.react-calendar-timeline .rct-item-details {
  font-size: 14px;
  font-size: 0.875rem;
  height: inherit;
  padding: 0 16px;
}

.selected .react-calendar-timeline .rct-item-details {
  z-index: 82;
  border: 2px dotted #FF3D00;
}

.react-calendar-timeline .rct-item-details .title {
  margin-top: -2px;
}

.react-calendar-timeline .rct-item .rct-drag-left,
.react-calendar-timeline .rct-item .rct-drag-right {
  position: absolute;
  top: 0;
  z-index: 88;
  width: 18px;
  min-width: 2px;
  max-width: 20%;
  height: 100%;
  cursor: pointer;
}

.react-calendar-timeline .rct-item .rct-drag-left-icon,
.react-calendar-timeline .rct-item .rct-drag-right-icon {
  display: none;
  position: absolute;
  top: 6px;
  color: #fff;
}

.selected .react-calendar-timeline .rct-item .rct-drag-left-icon,
.selected
      .react-calendar-timeline .rct-item .rct-drag-right-icon {
  display: block;
}

.react-calendar-timeline .rct-item .rct-drag-left {
  left: 0;
}

.react-calendar-timeline .rct-item .rct-drag-left-icon {
  left: 2px;
}

.react-calendar-timeline .rct-item .rct-drag-right {
  right: 0;
}

.react-calendar-timeline .rct-item .rct-drag-right-icon {
  right: 2px;
}

.react-calendar-timeline .rct-header {
  overflow-x: hidden;
  z-index: 90;
  height: 70px !important;
  margin: 0;
}

.react-calendar-timeline .rct-header-container {
  display: -ms-flexbox;
  display: flex;
  z-index: 90;
}

.react-calendar-timeline .rct-header-container.header-sticky {
  position: -webkit-sticky;
  position: sticky;
}

.react-calendar-timeline .rct-header .top-header {
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  height: 40px !important;
}

.react-calendar-timeline .rct-header .top-header,
.react-calendar-timeline .rct-header .bottom-header {
  position: relative;
}

.react-calendar-timeline .rct-header .rct-label-group {
  font-size: 14px;
  font-size: 0.875rem;
  position: absolute;
  top: 0;
  padding: 0 5px;
  height: 40px !important;
  line-height: 40px !important;
  border-bottom: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  background: linear-gradient(#ffffff, #e1e1e1);
  color: #555;
  cursor: pointer;
  text-align: center;
}

.react-calendar-timeline .rct-header .rct-label-group.rct-has-right-sidebar {
  border-right: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
}

.react-calendar-timeline .rct-header .rct-label-group > span {
  position: -webkit-sticky;
  position: sticky;
  right: 5px;
  left: 5px;
}

.react-calendar-timeline .rct-header .rct-label {
  position: absolute;
  border-bottom: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  background: linear-gradient(#fff, #eceff1);
  color: #252525;
  cursor: pointer;
  text-align: center;
}

.react-calendar-timeline .rct-header .rct-label.rct-label-only {
  background: #c52020;
  color: #fff;
}

.react-calendar-timeline .rct-header .rct-label.rct-first-of-type {
  border-left: 1px solid #d8d8d8;
}

.react-calendar-timeline .rct-sidebar {
  display: inline-block;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  border-right: 1px solid #d8d8d8;
  vertical-align: top;
  white-space: normal;
}

.react-calendar-timeline .rct-sidebar-header {
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  background: #fff;
  color: #555;
  text-align: center;
}

.react-calendar-timeline .rct-sidebar-header.rct-sidebar-right {
  border-right: 0;
  border-left: 1px solid #d8d8d8;
}

.react-calendar-timeline .rct-sidebar-header > div {
  line-height: 30px;
}

.react-calendar-timeline .rct-sidebar-right {
  border-right: 0;
  border-left: 1px solid #d8d8d8;
}

.react-calendar-timeline .rct-sidebar-row {
  overflow: hidden;
  box-sizing: content-box;
  margin: 0;
  padding: 0 4px;
  border-bottom: 1px solid #d8d8d8;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.react-calendar-timeline .rct-sidebar-row-odd {
  background: rgba(0, 0, 0, 0.05);
}

.react-calendar-timeline .rct-sidebar-row-even {
  background: transparent;
}

.react-calendar-timeline .rct-vertical-lines .rct-vl {
  position: absolute;
  z-index: 30;
  border-left: 1px solid #d8d8d8;
  background: #fff;
}

.react-calendar-timeline .rct-vertical-lines .rct-vl-first {
  border-left-width: 1px;
}

.react-calendar-timeline .rct-vertical-lines .rct-vl.rct-day-6,
.react-calendar-timeline .rct-vertical-lines .rct-vl.rct-day-0 {
  background: rgba(250, 246, 225, 0.5);
}

.react-calendar-timeline .rct-horizontal-lines .rct-hl-even,
.react-calendar-timeline .rct-horizontal-lines .rct-hl-odd {
  position: absolute;
  z-index: 40;
  box-sizing: content-box;
  border-bottom: 1px solid #d8d8d8;
}

.react-calendar-timeline .rct-horizontal-lines .rct-hl-odd {
  background: rgba(0, 0, 0, 0.05);
}

.react-calendar-timeline .rct-horizontal-lines .rct-hl-even {
  background: transparent;
}

.react-calendar-timeline .rct-today {
  position: absolute;
  z-index: 50;
  width: 2px;
  background: #f00;
}

.react-calendar-timeline .rct-cursor-line {
  position: absolute;
  z-index: 51;
  width: 2px;
  background: #2196f3;
}

.react-calendar-timeline .rct-infolabel {
  font-size: 20px;
  font-size: 1.25rem;
  position: fixed;
  bottom: 50px;
  left: 100px;
  z-index: 85;
  padding: 10px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.ReactVirtualized__Grid {
  position: absolute;
  top: 60px;
  left: 0;
  height: calc(100% - 60px) !important;
  width: 100% !important;
  overflow: auto !important;
}

.ReactVirtualized__Grid::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.ReactVirtualized__Grid::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

.ReactVirtualized__Grid::-webkit-scrollbar-thumb {
  height: 10px;
  border-radius: 10px;
  background-color: #b0bec5;
  outline: 1px solid #cfd8dc;
}

.ReactVirtualized__Grid:focus {
  outline: none;
}

.rct9k-marker-overlay {
  bottom: 0;
  height: auto !important;
  z-index: 2;
  background: rgba(197, 32, 32, 0.2);
}

.rct9k-timebar-group-title {
  position: absolute;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 10;
}

.rct9k-timebar-group-title .bhp-group-title {
  position: absolute;
  bottom: 0;
  min-width: 100px;
  line-height: 20px;
  margin-bottom: 3px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}

.rct9k-timebar-outer {
  position: absolute;
  z-index: 1;
  height: auto;
  border: 0;
  background-color: #b0bec5;
}

.rct9k-timebar-inner {
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  white-space: nowrap;
  overflow: hidden;
  outline: none;
}

.rct9k-timebar-inner-top {
  height: 40px;
  background: #b0bec5;
}

.rct9k-timebar-inner-bottom {
  font-size: 11px;
  font-size: 0.6875rem;
  background: #cfd8dc;
}

.rct9k-timebar-item {
  font-family: "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  border-left: 1px solid #78909c;
  white-space: nowrap;
  text-transform: uppercase;
}

.rct9k-timebar-item:first-child {
  border-left: 1px solid #e8e8e8;
}

.rct9k-timebar-item__dot {
  transform: translate(50%, -50%);
  transform-origin: 100% 0%;
  box-shadow: 0 0 0 1px #fff;
  border-radius: 100%;
  width: 6px;
  height: 6px;
  background: #FF0000;
  position: absolute;
  top: 0;
  right: 0;
}

.rct9k-timebar-item__dot.green {
  background: #7cc24d;
}

.rct9k-timebar-item__dot.orange {
  background: #f67b2f;
}

.rct9k-timebar-item__dot.black {
  background: #000;
}

.rct9k-timebar-item__indicator {
  transform: translate(-50%, 50%);
  transform-origin: 0 100%;
  box-shadow: 0 0 0 1px #fff;
  border-radius: 100%;
  width: 6px;
  height: 6px;
  background: #2196f3;
  position: absolute;
  bottom: 0;
  left: 0;
}

.rct9k-timebar-item__indicator.admin {
  background: #e3b459;
  transform: translate(50%, 50%);
  right: 0;
  left: unset;
}

.rct9k-timebar-item__validations {
  transform: translate(-50%, -50%);
  transform-origin: 0 100%;
  color: #FF0000;
  position: absolute;
  top: 0;
  left: 0;
}

.rct9k-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  z-index: 6;
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}

.rct9k-group:first-child {
  border-top: 0;
}

.rct9k-group-item {
  font-family: "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  max-width: 100%;
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 0px;
  text-transform: uppercase;
}

.rct9k-group-item-draggable:hover {
  cursor: move;
  background: #eceff1;
}

.rct9k-group-item-clickable:hover {
  cursor: pointer;
  color: #FF3D00;
}

.rct9k-group-item-inactive {
  background: #FFCDD2;
}

.rct9k-group-item .index:before {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  content: "";
}

.rct9k-group-item .index {
  display: inline-block;
  min-width: 30px;
  max-width: 30px;
  height: 100%;
  margin-right: 5px;
  background-color: #FF3D00;
  border-right: 1px solid #ccc;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  vertical-align: middle;
  padding-top: 1px;
}

.rct9k-group-item .title {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  overflow: hidden;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rct9k-group-item .commands {
  display: inline-block;
  margin-left: auto;
  padding: 0px 5px;
  font-size: 12px;
  font-size: 0.75rem;
}

.rct9k-group-item .commands i {
  display: inline-block;
  cursor: pointer;
  padding: 2px;
}

.rct9k-group-item .commands .fa-thumbtack {
  transform: rotate(45deg);
}

.rct9k-group-item .commands .is-pinned {
  transform: rotate(0deg);
  color: #FF3D00;
}

.rct9k-row {
  box-sizing: border-box;
  border: 1px solid #e8e8e8;
  border-top: 0;
  border-left: 1px solid #e8e8e8;
  background: #fff;
}

.rct9k-row:nth-child(2) {
  border-top: 0;
}

.rct9k-items-outer {
  overflow: visible;
  margin: 2px 0;
}

.rct9k-items-inner {
  font-size: 11px;
  font-size: 0.6875rem;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 24px;
  margin: 0;
  padding: 2px;
  -ms-flex-align: center;
      align-items: center;
  outline: none;
}

.rct9k-items-inner span {
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  overflow: hidden;
}

.rct9k-items-selected {
  font-size: 11px;
  font-size: 0.6875rem;
}

.rct9k-items-selected:before {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-right: 3px;
  color: #006400;
  content: '\F058';
  font-family: 'Font Awesome 5 Free';
}

.rct9k-timebar-item-selected {
  background-color: #5a7e92;
}

.rct9k-selector-outer {
  position: fixed;
  z-index: 2;
  width: 1px;
  height: 1px;
  background: rgba(33, 150, 243, 0.2);
}

.rct9k-timeline-div {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex: 1;
      flex: 1;
  background-color: #fff !important;
}

.rct9k-timeline-div > div {
  height: 100% !important;
  width: 100% !important;
}

.rct9k-timeline-div .parent-div {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.rct9k-timeline-div .parent-div > div:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  width: 100%;
}

/* Timeline Toolbar - Start */

.bhp-timeline-toolbar {
  background: #f1f1f1;
}

.bhp-timeline-toolbar > .bhp-header-bar {
  height: 40px;
  border-bottom: 1px solid #e8e8e8;
  background: linear-gradient(#ffffff, #e1e1e1);
}

.bhp-timeline-toolbar .bhp-selected-item-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  width: 100%;
  height: 73px;
  padding: 5px;
}

.bhp-timeline-toolbar .bhp-selected-item-container .bhp-selected-item {
  font-size: 14px;
  font-size: 0.875rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background-color: #fff;
}

.bhp-timeline-toolbar .bhp-selected-item-container .bhp-details {
  width: 100%;
}

.bhp-timeline-toolbar .bhp-selected-item-container .bhp-selected-item .bhp-details > div {
  display: -ms-flexbox;
  display: flex;
  line-height: 1.3;
}

.bhp-timeline-toolbar .bhp-selected-item-container .bhp-selected-item .bhp-details .bhp-indicator {
  display: inline-block;
  width: 40px;
  height: 16px;
  border-radius: 4px;
  margin-left: auto;
  text-align: center;
  border: 1px solid #aaa;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}

.bhp-timeline-toolbar .bhp-selected-item-container .bhp-selected-item .bhp-details i {
  margin-right: 5px;
}

.bhp-timeline-toolbar .bhp-selected-item-container .bhp-selected-item .bhp-details > div > label {
  width: 80px;
  font-weight: 600;
  text-align: right;
  padding-right: 5px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}

.bhp-timeline-toolbar .bhp-selected-item-container .bhp-selected-item .bhp-details > div > span {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding-left: 5px;
}

.bhp-timeline-toolbar .ant-tabs {
  height: 100%;
}

.bhp-timeline-toolbar .ant-tabs .ant-tabs-bar {
  margin-bottom: 0px;
}

.bhp-timeline-toolbar .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-nav-wrap {
  position: absolute;
  bottom: 0px;
  margin-bottom: 0px;
  margin-left: 5px;
}

.bhp-timeline-toolbar .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  line-height: 30px;
}

.bhp-timeline-toolbar .ant-tabs .ant-tabs-content {
  height: calc(100% - 40px);
}

.bhp-timeline-toolbar .ant-tabs .ant-tabs-content .ant-tabs-tabpane {
  background-color: #ffffff;
}

.bhp-timeline-toolbar .ant-tabs .ant-tabs-content .ant-tabs-tabpane > .ant-collapse > .ant-collapse-item > .ant-collapse-header {
  background: #eceff1;
}

.bhp-timeline-toolbar .ant-tabs .ant-tabs-content .ant-tabs-tabpane > .ant-collapse > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
  padding: 0;
}

.bhp-timeline-toolbar .ant-tabs .ant-tabs-content .ant-tabs-tabpane > .ant-collapse > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box > .ant-divider-horizontal {
  height: 3px;
  margin: 0px 0;
}

/* Timeline Toolbar - End */

/* ListItem Picker - Start */

.bhp-list-item-picker .bhp-header-bar {
  height: 60px;
}

.bhp-list-item-picker .bhp-header-bar .bhp-tool-bar .bhp-tag-filter {
  display: block;
  margin-left: 5px;
  width: 300px;
}

.bhp-list-item-picker .bhp-header-bar .bhp-tool-bar .bhp-tag-filter .ant-select-sm .ant-select-selection--multiple {
  height: 44px;
}

.bhp-list-item-picker .bhp-header-bar .bhp-tool-bar .bhp-tag-filter button {
  margin-left: 5px;
  margin-right: 0px;
}

.bhp-list-item-picker .bhp-table {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  height: calc(100% - 60px);
}

.bhp-list-item-picker .bhp-table .ant-table-small .ant-table-tbody > tr > td > div {
  line-height: 24px;
}

.bhp-list-item-picker .bhp-table .ant-table-small .ant-table-tbody > tr > td > div > span {
  vertical-align: middle;
}

/* ListItem Picker - Start */

.bhp-timeline-options-form .bhp-tool-bar,
.bhp-timeline-filters-form .bhp-tool-bar {
  height: 50px;
  border-bottom: 0px;
  margin-bottom: -20px;
}

.bhp-timeline-options-form .bhp-form > form,
.bhp-timeline-filters-form .bhp-form > form {
  min-width: auto;
  max-width: auto;
}

.bhp-timeline-options-form .bhp-form > form > fieldset:last-child,
.bhp-timeline-filters-form .bhp-form > form > fieldset:last-child {
  margin-bottom: 0;
}

.rdt {
  position: relative;
}

.rdtPicker {
  display: none;
  position: absolute;
  width: 250px;
  padding: 4px;
  margin-top: 1px;
  z-index: 99999 !important;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f9f9f9;
}

.rdtOpen .rdtPicker {
  display: block;
}

.rdtStatic .rdtPicker {
  box-shadow: none;
  position: static;
}

.rdtPicker .rdtTimeToggle {
  text-align: center;
}

.rdtPicker table {
  width: 100%;
  margin: 0;
}

.rdtPicker td,
.rdtPicker th {
  text-align: center;
  height: 28px;
}

.rdtPicker td {
  cursor: pointer;
}

.rdtPicker td.rdtDay:hover,
.rdtPicker td.rdtHour:hover,
.rdtPicker td.rdtMinute:hover,
.rdtPicker td.rdtSecond:hover {
  background: #eeeeee;
  cursor: pointer;
}

.rdtPicker .rdtTimeToggle:hover {
  background: #eeeeee;
  cursor: pointer;
}

.rdtPicker td.rdtOld,
.rdtPicker td.rdtNew {
  color: #999999;
}

.rdtPicker td.rdtToday {
  position: relative;
}

.rdtPicker td.rdtToday:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #428bca;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}

.rdtPicker td.rdtActive {
  background-color: #428bca;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.rdtPicker td.rdtActive:hover {
  background-color: #428bca;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.rdtPicker td.rdtActive.rdtToday:before {
  border-bottom-color: #fff;
}

.rdtPicker td.rdtDisabled {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker td.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker td span.rdtOld {
  color: #999999;
}

.rdtPicker td span.rdtDisabled {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker td span.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker th {
  border-bottom: 1px solid #f9f9f9;
}

.rdtPicker .dow {
  width: 14.2857%;
  border-bottom: none;
  cursor: default;
}

.rdtPicker th.rdtSwitch {
  width: 100px;
}

.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
  font-size: 21px;
  vertical-align: top;
}

.rdtPrev span,
.rdtNext span {
  display: block;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

.rdtPicker th.rdtDisabled {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker th.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker thead tr:first-child th {
  cursor: pointer;
}

.rdtPicker thead tr:first-child th:hover {
  background: #eeeeee;
}

.rdtPicker tfoot {
  border-top: 1px solid #f9f9f9;
}

.rdtPicker button {
  border: none;
  background: none;
  cursor: pointer;
}

.rdtPicker button:hover {
  background-color: #eee;
}

.rdtPicker thead button {
  width: 100%;
  height: 100%;
}

td.rdtMonth,
td.rdtYear {
  width: 25%;
  height: 50px;
  cursor: pointer;
}

td.rdtMonth:hover,
td.rdtYear:hover {
  background: #eee;
}

.rdtCounters {
  display: inline-block;
}

.rdtCounters > div {
  float: left;
}

.rdtCounter {
  height: 100px;
  width: 40px;
}

.rdtCounterSeparator {
  line-height: 100px;
}

.rdtCounter .rdtBtn {
  height: 40%;
  line-height: 40px;
  cursor: pointer;
  display: block;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

.rdtCounter .rdtBtn:hover {
  background: #eee;
}

.rdtCounter .rdtCount {
  height: 20%;
  font-size: 1.2em;
}

.rdtMilli {
  vertical-align: middle;
  padding-left: 8px;
  width: 48px;
}

.rdtMilli input {
  width: 100%;
  font-size: 1.2em;
  margin-top: 37px;
}

.rdtTime td {
  cursor: default;
}

.bhp-quicklinks {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  z-index: 1;
  background: #263238;
}

@media (min-width: 1200px) {
  .bhp-quicklinks {
    position: relative;
    -ms-flex-positive: 0;
        flex-grow: 0;
    width: auto;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.bhp-quicklinks-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  height: 40px;
}

@media (min-width: 1200px) {
  .bhp-quicklinks-menu {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}

.bhp-quicklinks-item {
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 100%;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-right: 1px solid #37474f;
  background-color: #455a64;
  color: #fff;
}

.bhp-quicklinks-item:hover {
  text-decoration: none;
  color: #fff;
}

.bhp-quicklinks-item.bhp-clock {
  font-size: 12px;
  font-size: 0.75rem;
  height: auto;
  padding: 0 10px;
  background-color: #263238;
  border-right: 0;
}

@media (min-width: 1200px) {
  .bhp-quicklinks-item.bhp-clock {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 5px 15px;
    border-radius: 25px;
    border-right: 1px solid #37474f;
    background-color: #455a64;
  }
}

.bhp-quicklinks-item.bhp-site-info {
  padding: 0 5px;
  -ms-flex-pack: right;
      justify-content: right;
  background-color: transparent;
}

.bhp-quicklinks-item.bhp-site-info .bhp-details {
  text-align: left;
  margin-left: 4px;
  line-height: 1.1;
}

.bhp-quicklinks-item.bhp-site-info .bhp-details .bhp-site-name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}

.bhp-quicklinks-item.bhp-site-info .bhp-details .bhp-site-title {
  font-size: 9px;
  font-size: 0.5625rem;
  color: #B0BEC5;
}

.bhp-quicklinks-item.bhp-site-info .anticon-team {
  font-size: 24px;
  font-size: 1.5rem;
  padding-bottom: 4px;
}

.bhp-quicklinks-item.bhp-icon {
  width: 80px;
  background: transparent;
  cursor: pointer;
  display: none;
}

@media (min-width: 1200px) {
  .bhp-quicklinks-item.bhp-icon {
    display: -ms-flexbox;
    display: flex;
  }
}

.bhp-quicklinks-item.bhp-icon.bhp-active {
  border-color: #263238;
  background-color: #37474f;
}

.bhp-quicklinks-item.bhp-profile {
  display: none;
  padding: 0 20px;
  background-color: #37474f;
}

@media (min-width: 1200px) {
  .bhp-quicklinks-item.bhp-profile {
    display: -ms-flexbox;
    display: flex;
  }
}

.bhp-quicklinks-item.bhp-profile .bhp-details {
  text-align: right;
  margin-left: 10px;
}

.bhp-quicklinks-item.bhp-profile .bhp-details .bhp-name {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}

.bhp-quicklinks-item.bhp-profile .bhp-details .bhp-name.bhp-text-lg {
  font-size: 16px;
  font-size: 1rem;
}

.bhp-quicklinks-item.bhp-profile .bhp-details .bhp-position-title {
  font-size: 12px;
  font-size: 0.75rem;
}

.bhp-quicklinks-item.bhp-profile .ant-avatar-image {
  margin: 0 7px;
  background-color: #455a64;
}

.bhp-quicklinks-item.bhp-profile.bhp-active {
  background-color: #b0bec5;
}

.bhp-quicklinks-item:last-child {
  border-right: 0px;
}

.bhp-header-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  -ms-flex-align: center;
      align-items: center;
  padding: 5px 15px;
  border-bottom: 1px solid #e8e8e8;
  background-color: #fff;
}

.bhp-header-bar.bhp-inverted {
  background: #b0bec5;
  color: #fff;
}

.bhp-my-roster .bhp-header-bar {
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1200px) {
  .bhp-my-roster .bhp-header-bar {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

.bhp-header-bar .bhp-title {
  font-size: 16px;
  font-size: 1rem;
  display: inline-block;
  margin-right: 15px;
}

.bhp-header-bar .bhp-title.bhp-capitalize {
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bhp-my-roster .bhp-header-bar .bhp-title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5rem;
  display: none;
}

@media (min-width: 1200px) {
  .bhp-my-roster .bhp-header-bar .bhp-title {
    display: block;
  }
}

.bhp-header-bar .bhp-title .anticon {
  margin-right: 15px;
}

.bhp-header-bar .bhp-tool-bar {
  padding: 0;
  border-bottom: 0;
  background-color: transparent;
}

.bhp-my-roster .bhp-header-bar .bhp-tool-bar {
  -ms-flex-positive: 1;
      flex-grow: 1;
}

@media (min-width: 1200px) {
  .bhp-my-roster .bhp-header-bar .bhp-tool-bar {
    -ms-flex-positive: 0;
        flex-grow: 0;
  }
}

.bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-right {
  -ms-flex-positive: 1;
      flex-grow: 1;
  margin-left: 0;
}

@media (min-width: 1200px) {
  .bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-right {
    -ms-flex-positive: 0;
        flex-grow: 0;
    margin-left: auto;
  }
}

.bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-commands {
  -ms-flex-positive: 1;
      flex-grow: 1;
  margin: 0;
}

@media (min-width: 1200px) {
  .bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-commands {
    -ms-flex-positive: 0;
        flex-grow: 0;
  }
}

.bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-select-user-roster {
  width: initial;
}

.bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-select-grouping {
  display: block;
  width: 100%;
}

.bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-select-grouping .bhp-select-roster:nth-of-type(2) {
  margin-top: 6px;
}

@media (min-width: 1200px) {
  .bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-select-grouping {
    display: -ms-flexbox;
    display: flex;
  }

  .bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-select-grouping .bhp-select-roster:nth-of-type(2) {
    margin-left: 12px;
    margin-top: 0px;
  }
}

.bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-select-roster {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-positive: 1;
      flex-grow: 1;
}

@media (min-width: 1200px) {
  .bhp-my-roster .bhp-header-bar .bhp-tool-bar .bhp-select-roster {
    -ms-flex-positive: 0;
        flex-grow: 0;
  }
}

.bhp-header-bar > .bhp-commands .bhp-filter-button {
  margin-right: 10px;
}

.bhp-tool-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 15px;
  background-color: #fff;
}

.bhp-tool-bar .bhp-left {
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
}

.bhp-tool-bar .bhp-center {
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

.bhp-tool-bar .bhp-right {
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

.bhp-tool-bar .bhp-commands {
  margin-left: -5px;
  margin-right: -5px;
}

.bhp-tool-bar .bhp-commands button,
.bhp-tool-bar .bhp-commands .ant-calendar-picker,
.bhp-tool-bar .bhp-commands .ant-btn {
  margin: 0 5px;
  vertical-align: top;
}

.bhp-tool-bar .bhp-commands .bhp-tag {
  display: inline-block;
  padding: 0 10px;
  background: #e4a52a;
  line-height: 24px;
  border-radius: 4px;
  color: #fff;
}

.bhp-tool-bar .bhp-commands .bhp-tag-arrow {
  display: inline-block;
  position: relative;
  margin-right: 20px;
  vertical-align: middle;
  text-align: center;
  height: 24px;
  line-height: 24px;
  background-color: #FF3D00;
  color: #fff;
  border-radius: 2px;
  width: 115px;
  font-size: 14px;
  font-size: 0.875rem;
}

.bhp-tool-bar .bhp-commands .bhp-tag-arrow:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 115px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 10px;
  border-left-color: #FF3D00;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0px;
}

.bhp-filter-wrapper {
  padding: 24px 24px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}

.bhp-header-bar .bhp-filter-wrapper {
  padding: 0;
}

.bhp-filterbar {
  width: 100%;
}

.bhp-filterbar-compact {
  padding: 0;
}

.bhp-filterbar-compact .ant-form-item {
  margin: 5px 10px 5px 0;
  padding: 0;
}

.bhp-form.bhp-filter {
  padding: 0;
}

.bhp-form.bhp-filter form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  min-width: 0;
  max-width: 100%;
  padding: 0;
}

.bhp-form.bhp-filter .ant-form-item-label {
  line-height: 1.5;
}

.bhp-filter-button.active {
  background: #f00;
}

.bhp-form-container {
  position: relative;
  width: 100%;
  height: calc(100% - 40px);
}

.bhp-form-container::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.bhp-form-container::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

.bhp-form-container::-webkit-scrollbar-thumb {
  height: 10px;
  border-radius: 10px;
  background-color: #b0bec5;
  outline: 1px solid #cfd8dc;
}

.bhp-form-container .ant-tabs.ant-tabs-vertical {
  height: 100%;
}

.bhp-form-container .ant-tabs.ant-tabs-vertical .ant-tabs-bar {
  position: relative;
  width: 180px;
  background-color: #cfd8dc;
}

.bhp-form-container .ant-tabs.ant-tabs-vertical .ant-tabs-bar .ant-tabs-nav-container {
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  height: calc(100% - 24px);
}

.bhp-form-container .ant-tabs .ant-tabs-content {
  height: 100%;
  padding: 0;
}

.bhp-form-container .ant-tabs .ant-tabs-content .ant-tabs-tabpane {
  overflow: hidden;
}

.bhp-form-container .ant-tabs-nav .ant-tabs-tab:hover,
.bhp-form-container .ant-tabs-nav .ant-tabs-tab-active {
  font-weight: bold;
}

.bhp-form {
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.bhp-form > form {
  width: 100%;
  min-width: 600px;
  max-width: 600px;
  padding: 24px;
}

.bhp-form .ant-form-item {
  margin-bottom: 5px;
}

.bhp-form .ant-form-item-label,
.bhp-form .ant-form-item-control {
  line-height: 34px;
}

.bhp-form > .ant-row {
  max-width: 600px;
}

.bhp-form > .ant-row > [class*='ant-col'] > .bhp-commands {
  margin: 0 -5px;
}

.bhp-form > .ant-row > [class*='ant-col'] > .bhp-commands button {
  display: inline-block;
  margin: 0 5px;
}

.bhp-form .has-error .ant-form-explain {
  margin-top: 0;
  line-height: 1.5;
}

.bhp-userleave .bhp-form > form {
  max-width: 800px;
}

.bhp-form-item-text .ant-form-item-label,
.bhp-form-item-text .ant-form-item-control {
  line-height: 1.2;
}

.bhp-item-tag-detail .bhp-form > form,
.bhp-user-competency-detail .bhp-form > form,
.bhp-travel-route-leg-detail .bhp-form > form {
  min-width: 800px;
}

.bhp-travel-booking-detail .bhp-form > form {
  min-width: 800px;
}

.bhp-travel-booking-detail .bhp-fieldset.bhp-tab {
  margin-top: 30px;
  padding-top: 20px;
  border-radius: 6px;
}

.bhp-travel-booking-detail .bhp-fieldset.bhp-tab legend {
  top: -14px;
  left: 15px;
  padding: 1px 10px;
  border: 1px solid #78909c;
  border-radius: 6px;
  background-color: #78909c;
  color: #fff;
}

.bhp-booking-form-input.bhp-leg-input span {
  display: inline-block;
  min-width: 70px;
  font-weight: bold;
}

.bhp-travel-itinerary-list .bhp-booking-summary span {
  display: inline-block;
  width: 80px;
  font-weight: bold;
}

.ant-input-group .ant-input-number {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ant-input-group .ant-input-number:hover {
  border-right: 1px solid #FF0000;
}

.bhp-user-detail-profile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: absolute;
  top: 0;
  z-index: 1;
  width: 200px;
  height: 220px;
  padding: 0;
  text-align: center;
  line-height: 220px;
}

.bhp-user-detail .bhp-form-container .ant-tabs.ant-tabs-vertical .ant-tabs-bar {
  width: 200px;
}

.bhp-user-detail .bhp-form-container .ant-tabs.ant-tabs-vertical .ant-tabs-bar .ant-tabs-nav-container {
  position: absolute;
  top: 220px;
  right: 0;
  left: 0;
  height: calc(100% - 220px);
}

.bhp-ad-user {
  line-height: 32px;
  margin: 0 0 25px;
  padding: 0 15px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}

.bhp-ad-user .fa-stack {
  margin-right: 5px;
}

.bhp-ad-user .fa-circle {
  color: #faad14;
  font-size: 20px;
  font-size: 1.25rem;
}

.bhp-ad-user .fa-info {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
}

.bhp-user-travel-form-approved-routes .bhp-route-picker {
  display: inline-block;
  width: 250px;
  margin-right: 10px;
}

.bhp-user-travel-form-approved-routes .bhp-route-picker-container {
  margin-bottom: 10px;
}

.bhp-user-travel-form-approved-routes .bhp-approved-route-list {
  overflow: hidden;
  height: 350px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}

.bhp-user-competency-list .bhp-badge {
  display: inline-block;
  color: #fff;
  padding: 2px 10px;
  border-radius: 25px;
  min-width: 100px;
}

.bhp-filter .ant-form-item-label {
  white-space: normal;
}

.bhp-timeline-options-form .ant-select {
  width: 120px;
}

.ant-tabs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  height: 100%;
}

.ant-tabs-vertical .ant-tabs-bar {
  position: relative;
  width: 180px;
  background-color: #cfd8dc;
}

.ant-tabs-content {
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 0;
}

.ant-tabs-vertical.ant-tabs-left .ant-tabs-content {
  padding-left: 0;
}

.ant-tabs-vertical .ant-tabs-nav-container {
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  height: calc(100% - 24px);
}

.ant-tabs-tabpane {
  overflow: auto;
  height: 100%;
}

.ant-tabs-vertical {
  height: 100%;
  -ms-flex-direction: row;
      flex-direction: row;
}

.ant-tabs-nav .ant-tabs-tab-active {
  font-weight: 400;
}

.ant-table {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: calc(100% - 45px);
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.bhp-approved-route-list .ant-table {
  height: 100%;
}

.ant-table-content {
  width: 100%;
}

.ant-table-header {
  -ms-flex: none;
      flex: none;
}

.ant-table-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-direction: column;
      flex-direction: column;
}

.ant-table-body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.ant-table-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

.ant-table-body::-webkit-scrollbar-thumb {
  height: 10px;
  border-radius: 10px;
  background-color: #b0bec5;
  outline: 1px solid #cfd8dc;
}

.bhp-table {
  height: calc(100% - 40px);
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-direction: column;
      flex-direction: column;
}

.bhp-approved-route-list .bhp-table {
  height: 100%;
}

.bhp-table .ant-table-small {
  border: 0;
  border-radius: 0;
}

.bhp-table .ant-table-small > .ant-table-content {
  height: 100%;
}

.bhp-table .ant-table-small > .ant-table-content > .ant-table-scroll {
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.bhp-table .ant-table-small > .ant-table-content .ant-table-header {
  overflow: hidden;
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

.bhp-table .ant-table-small > .ant-table-content .ant-table-body {
  height: 100%;
  margin: 0;
  overflow: auto !important;
}

.bhp-table .ant-table-small.ant-table-fixed-header > .ant-table-content .ant-table-body {
  height: calc(100% - 38px);
}

.bhp-table .ant-table-small.ant-table-fixed-header > .ant-table-content .ant-table-placeholder {
  position: absolute;
  top: 38px;
  width: 100%;
}

.bhp-table .ant-table-small > .ant-table-content .ant-table-body > table {
  padding: 0;
}

.bhp-table .ant-table-small > .ant-table-content .ant-table-body > table > .ant-table-thead > tr > th {
  padding: 5px 8px;
}

.bhp-table .ant-table-small > .ant-table-content .ant-table-body > table > .ant-table-tbody > tr > td {
  padding: 5px 8px;
  vertical-align: top;
  white-space: normal;
}

.bhp-table .ant-table-small > .ant-table-content .ant-table-body > table > .ant-table-tbody > tr > td .bhp-draggable {
  cursor: move;
  margin: -5px -8px;
  padding: 5px 8px;
}

.bhp-table .ant-table-small > .ant-table-content .ant-table-body > table > .ant-table-tbody > tr > td .is-pinned {
  transform: rotate(0deg);
  color: #FF3D00;
}

.bhp-table .ant-table-small .bhp-item-commands button {
  margin: 0 3px;
}

.bhp-table-filter .bhp-input {
  padding: 8px;
}

.bhp-table-filter .bhp-input input {
  width: 150px;
}

.bhp-table-filter .bhp-commands {
  padding: 7px 8px;
  text-align: right;
}

.bhp-table-filter .bhp-commands button {
  margin-left: 8px;
}

.ant-layout-sider {
  overflow: auto;
  box-shadow: inset -5px 0 5px -2px rgba(0, 0, 0, 0.2);
}

.ant-layout-sider-light {
  background: #eceff1;
}

.ant-layout-sider .bhp-filter-wrapper .bhp-header-bar {
  border-bottom: 0;
  background: #cfd8dc;
  box-shadow: inset -5px 0 5px -2px rgba(0, 0, 0, 0.2);
}

.ant-drawer-wrapper-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.ant-drawer-body {
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
}

.bhp-alert-message {
  margin: 20px auto;
}

.bhp-alert-message ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bhp-alert-message li {
  display: block;
}

.bhp-alert-message li i {
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  width: 20px;
  margin-top: 3px;
  text-align: left;
  vertical-align: top;
}

.bhp-alert-message li span {
  display: inline-block;
  width: calc(100% - 20px);
}

.bhp-alert-title {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  margin: 1px 0 5px;
}

.bhp-alert-success {
  color: #52c41a;
}

.bhp-alert-info {
  color: #1890ff;
}

.bhp-alert-warning {
  color: #faad14;
}

.bhp-alert-error {
  color: #f5222d;
}

.bhp-modal-form .ant-modal {
  min-width: 520px;
}

.bhp-modal-form .ant-modal .bhp-form > form {
  max-width: 100%;
}

.bhp-modal-form .ant-modal-content .ant-modal-close {
  color: #fff;
}

.bhp-modal-form .ant-modal-header {
  /* border-radius: 0; */
  background: #263238;
  color: #fff;
}

.bhp-modal-form .ant-modal-header .ant-modal-title {
  color: #fff;
}

.bhp-modal-form .ant-modal-body {
  padding: 0;
}

.bhp-modal-form .ant-modal-body .ant-tabs-tabpane {
  overflow: auto;
}

.bhp-modal-form .ant-modal-body .ant-tabs-tabpane::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.bhp-modal-form .ant-modal-body .ant-tabs-tabpane::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

.bhp-modal-form .ant-modal-body .ant-tabs-tabpane::-webkit-scrollbar-thumb {
  height: 10px;
  border-radius: 10px;
  background-color: #b0bec5;
  outline: 1px solid #cfd8dc;
}

.bhp-modal-form .bhp-tool-bar {
  border: 0;
}

.bhp-modal-form.bhp-vertical-centered {
  text-align: center;
  white-space: nowrap;
}

.bhp-modal-form.bhp-vertical-centered:before {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: '';
}

.bhp-modal-form.bhp-vertical-centered .ant-modal {
  display: inline-block;
  top: 0;
  vertical-align: middle;
  text-align: left;
}

.bhp-modal-form.bhp-vertical-centered.bhp-fullscreen {
  padding: 40px;
}

.bhp-modal-form.bhp-vertical-centered.bhp-fullscreen .ant-modal {
  width: 100% !important;
  transform-origin: 50% 50% 0 !important;
  height: 100%;
  padding-bottom: 0;
}

.bhp-modal-form.bhp-vertical-centered.bhp-fullscreen .ant-modal-content {
  height: 100%;
}

.bhp-modal-form.bhp-vertical-centered.bhp-fullscreen .ant-modal-content .ant-modal-body {
  height: calc(100% - 108px);
  overflow: auto;
}

.bhp-modal-form.bhp-vertical-centered.bhp-fullscreen.bhp-no-footer .ant-modal-content .ant-modal-body {
  height: calc(100% - 55px);
}

.bhp-modal-form .ant-modal.zoom-enter,
.bhp-modal-form .ant-modal.zoom-appear,
.bhp-modal-form .ant-modal.zoom-leave {
  animation-duration: 0s;
}

/* The Modal (background) */

.bhp-modal {
  display: none;
  position: fixed;
  z-index: 888;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.upgrade-modal {
  z-index: 999;
}

.bhp-modal > .bhp-modal-panel {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  box-pack: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.bhp-rotateSlideOut {
  animation: rotateSlideOut 0.5s both ease;
}

.bhp-rotateSlideIn {
  animation: rotateSlideIn 0.5s both ease;
}

@keyframes rotateSlideOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

@keyframes rotateSlideIn {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.bhp-notifications-popup {
  min-height: 300px;
}

.bhp-notifications-popup .ant-table-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.bhp-notifications-popup .ant-spin-nested-loading {
  height: auto;
}

.bhp-notifications-popup .bhp-header-bar {
  display: none;
}

.bhp-notifications-popup .ant-popover-inner-content {
  padding: 0;
}

.bhp-transfer .bhp-source-list {
  height: calc(100% - 50px);
  z-index: 1;
}

.bhp-transfer .bhp-destination-list {
  height: 100%;
  z-index: 1;
}

.bhp-transfer-commands {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-align: center;
      align-items: center;
  height: 50px;
  text-align: center;
  border-top: 1px solid #e8e8e8;
}

.bhp-transfer-commands button {
  width: 100px;
}

.bhp-transfer .bhp-table .ant-checkbox-checked .ant-checkbox-inner {
  background-color: #fff;
  border-color: #fff;
  border-radius: 0px;
}

.bhp-transfer .bhp-table .ant-checkbox-checked .ant-checkbox-inner:after {
  border: 2px solid #ff3d00;
  border-top: 0px;
  border-left: 0px;
}

.bhp-transfer .bhp-table .ant-table-small.ant-table-fixed-header > .ant-table-content .ant-table-body {
  height: calc(100% - 39px);
}

.bhp-transfer .bhp-table .ant-table-small.ant-table-fixed-header > .ant-table-content .ant-table-placeholder {
  position: absolute;
  top: 39px;
  width: 100%;
}

.Pane.horizontal.Pane1 {
  -ms-flex: 1 1 0%;
      flex: 1 1 0%;
}

.Pane.vertical.Pane1,
.Pane.vertical.Pane2 {
  display: -ms-flexbox;
  display: flex;
  background-color: #f5f5f5;
  overflow: hidden;
}

.Pane.horizontal.Pane1,
.Pane.horizontal.Pane2 {
  display: -ms-flexbox;
  display: flex;
  background-color: #f5f5f5;
  overflow: hidden;
}

.Resizer {
  background: #e8e8e8;
  opacity: 1;
  z-index: 1;
  box-sizing: border-box;
  background-clip: padding-box;
}

.Resizer:hover {
  transition: all 2s ease;
}

.Resizer.horizontal {
  height: 9px;
  margin: -4px 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  cursor: row-resize;
  width: 100%;
}

.Resizer.horizontal:hover {
  border-top: 4px solid #ff8a65;
  border-bottom: 4px solid #ff8a65;
}

.Resizer.vertical {
  width: 9px;
  margin: 0 -4px;
  z-index: 100;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  cursor: col-resize;
}

.Resizer.vertical:hover {
  border-left: 4px solid #ff8a65;
  border-right: 4px solid #ff8a65;
}

.Resizer.disabled {
  cursor: not-allowed;
}

.Resizer.disabled:hover {
  border-color: transparent;
}

/* OLD
.Pane.vertical.Pane1,
.Pane.horizontal.Pane1 {
  background-color: color(white);
  max-width: 100%;
}

.Resizer {
  background: color(grey, 300);
  opacity: 1;
  z-index: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
}

.Resizer:hover {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.Resizer.horizontal {
  height: 9px;
  margin: -4px 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  cursor: row-resize;
  width: 100%;
}

.Resizer.horizontal:hover {
  border-top: 4px solid #ff8a65;
  border-bottom: 4px solid #ff8a65;
}

.Resizer.vertical {
  width: 9px;
  margin: 0 -4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  cursor: col-resize;
}

.Resizer.vertical:hover {
  border-left: 4px solid #ff8a65;
  border-right: 4px solid #ff8a65;
}
.Resizer.disabled {
  cursor: not-allowed;
}
.Resizer.disabled:hover {
  border-color: transparent;
}
*/

.bhp-extended-spin {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1;
      flex: 1;
  height: 100%;
  overflow: hidden;
}

.bhp-extended-spin .ant-spin-nested-loading .ant-spin-blur {
  opacity: 1;
  filter: blur(2px);
}

.bhp-extended-spin .ant-spin-nested-loading .ant-spin {
  max-height: 100%;
  transition: initial;
}

.bhp-extended-spin .ant-spin-nested-loading .ant-spin .ant-spin-text {
  text-shadow: none;
}

.bhp-extended-spin.bhp-vertical .ant-spin .ant-spin-text {
  display: block;
}

.bhp-extended-spin.bhp-horizontal .ant-spin .ant-spin-text {
  display: inline-block;
}

.ant-spin-nested-loading .ant-spin-blur {
  opacity: 1;
  filter: blur(2px);
}

.bhp-context-menu {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.bhp-context-menu-dropdown {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.bhp-comments {
  position: relative;
  height: 100%;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.bhp-comments .ant-comment-actions {
  margin: 10px 0 0;
}

.bhp-comments .ant-list-item {
  display: block;
  padding: 0 20px;
}

.bhp-comments .ant-list-item .ant-list-item-action {
  margin: 0;
}

.bhp-comments-active {
  background: #FF3D00;
  color: #fff;
}

.bhp-comments .ant-comment {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
}

.bhp-comments .ant-spin-nested-loading {
  overflow: auto;
}

.bhp-comments .ant-spin-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: auto;
}

.bhp-comments .ant-list-pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  z-index: 1;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 10px;
  border-top: 1px solid #eceff1;
  background: #fff;
  -ms-flex-order: 0;
      order: 0;
}

.bhp-comments .ant-list-pagination .ant-pagination {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-align: left;
}

.bhp-comments .ant-list-pagination .ant-pagination-total-text {
  display: inline-block;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-order: 1;
      order: 1;
  text-align: right;
}

.bhp-rosterbuilder-addToRosterContainer .ant-calendar-picker {
  min-width: 470px !important;
}

.bhp-rosterbuilder-addToRosterContainer .ant-form-vertical .ant-form-item {
  padding-bottom: 0px !important;
}

.bhp-rosterbuilder-loader {
  min-height: 20rem;
}

.bhp-rosterbuilder-loader .ant-spin-spinning {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bhp-rosterbuilder-successContainer {
  text-align: center;
  font-size: 16px;
  padding: 14px;
}

.bhp-rosterbuilder-successIconContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.bhp-rosterbuilder-successIcon {
  color: #52c41a;
  font-size: 38px;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px;
}

.loader-container {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #263238;
  color: #fff;
}

.ant-carousel {
  margin: 30px 0;
}

.ant-popover .ant-carousel {
  max-width: 650px;
}

.ant-carousel .slick-dots {
  bottom: -10px;
}

.ant-carousel .slick-dots li button {
  background: #455a64;
  border-radius: 10px;
  width: 10px;
  height: 10px;
}

.ant-carousel .slick-dots li.slick-active button {
  width: 10px;
  background: #FF3D00;
}

.bhp-fatigue-counter {
  width: 850px;
}

.sk-cube-grid {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: auto;
}

.sk-cube-grid .sk-cube {
  float: left;
  width: 33%;
  height: 33%;
  background-color: #FF3D00;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
  animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
  animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
  animation-delay: 0.2s;
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    transform: scale3d(1, 1, 1);
  }

  35% {
    transform: scale3d(0, 0, 1);
  }
}

.spinner {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 70px;
  margin: auto;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}

.spinner > div {
  width: 10px;
  height: 100%;
  background-color: #FF3D00;
  display: inline-block;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  animation-delay: -1.1s;
}

.spinner .rect3 {
  animation-delay: -1.0s;
}

.spinner .rect4 {
  animation-delay: -0.9s;
}

.spinner .rect5 {
  animation-delay: -0.8s;
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1);
  }
}

/* Ant Design Overrides - Start */

.ant-empty {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  color: #777;
}

.ant-empty-image {
  height: 50px;
}

.ant-avatar-image {
  background: #cfd8dc;
}

.anticon,
.ant-btn {
  line-height: 1;
  vertical-align: middle;
}

.ant-form [class*='ant-divider-with-text'].ant-divider-horizontal span {
  font-weight: 700;
  color: #ff5722;
}

.ant-form [class*='ant-divider-with-text'].ant-divider-horizontal:before,
.ant-form [class*='ant-divider-with-text'].ant-divider-horizontal:after {
  border-color: #ff5722;
}

.ant-form fieldset {
  margin-bottom: 20px;
}

.ant-form fieldset:first-child {
  margin-top: 0;
}

.ant-form legend {
  color: #ff3d00;
  border-bottom: 1px solid #ff3d00;
}

.ant-spin-nested-loading,
.ant-spin-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1;
      flex: 1;
  height: 100%;
}

.ant-spin-container {
  height: 100%;
}

.ant-table .ant-table-tbody > tr.ant-table-row-selected > td {
  background: #FF3D00;
}

.ant-table .ant-table-thead > tr > th,
.ant-table .ant-table-tbody > tr > td {
  word-break: break-word;
}

.ant-table .ant-table-thead > tr > th .anticon-filter,
.ant-table .ant-table-thead > tr > th .ant-table-filter-icon {
  vertical-align: middle;
}

.ant-table .ant-table-tbody > tr {
  cursor: pointer;
  transition: none;
}

.ant-table .ant-table-tbody > tr > td .anticon {
  vertical-align: middle;
}

.ant-table .ant-table-tbody > tr:nth-child(2n + 1) {
  background-color: #f8f8f8;
}

.ant-table .ant-table-tbody > tr.ant-table-row-selected td {
  color: #fff;
}

.ant-table .ant-table-tbody > tr.ant-table-row-selected td .bhp-inactive,
.ant-table .ant-table-tbody > tr.ant-table-row-selected td .anticon {
  color: #fff;
}

.ant-table .ant-table-tbody > tr.ant-table-row-selected > td .bhp-checkmark {
  display: inline-block;
}

.ant-table .ant-table-tbody > tr.ant-table-row-selected button {
  border: 1px solid #fff;
}

.ant-table .ant-table-tbody > tr > td .bhp-indicator {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
  text-align: center;
  border: 1px solid #e8e8e8;
}

.ant-table .ant-table-tbody > tr > td .bhp-checkmark {
  display: none;
}

.ant-table-pagination.ant-pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 45px;
  margin: 0;
  padding: 10px 5px;
  border-top: 1px solid #e8e8e8;
  text-align: left;
  float: none;
}

.ant-table-pagination.ant-pagination .ant-pagination-total-text {
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-order: 1;
      order: 1;
  text-align: right;
}

.ant-dropdown-menu-item-selected {
  background: none;
}

.ant-input.has-error {
  border-color: #f5222d;
}

.ant-spin-nested-loading > div > .ant-spin {
  max-height: 100%;
}

.ant-message-notice-content {
  padding: 0;
  overflow: hidden;
}

.ant-message-custom-content {
  padding: 10px 32px;
  color: #fff;
  font-size: 16px;
}

.ant-message-custom-content .anticon {
  margin-right: 10px;
}

.ant-message-custom-content.ant-message-success {
  background: #52c41a;
}

.ant-message-custom-content.ant-message-error {
  background: #f5222d;
}

.ant-message-custom-content.ant-message-info {
  background: #1890ff;
}

.ant-message-custom-content.ant-message-warning {
  background: #faad14;
}

.ant-message-custom-content.ant-message-loading {
  background: #1890ff;
}

.ant-message-success .anticon,
.ant-message-error .anticon,
.ant-message-info .anticon,
.ant-message-warning .anticon,
.ant-message-loading .anticon {
  color: #fff;
}

.ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow {
  border-color: #263238;
}

.ant-popover-inner {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.ant-popover-inner .ant-popover-title {
  background-color: #263238;
  color: #fff;
}

.ant-popover-inner .ant-popover-inner-content {
  padding: 10px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #000;
  line-height: 1.5;
}

.ant-popover-inner .ant-popover-inner-content label {
  font-weight: bold;
  min-width: 45px;
}

.ant-popover-inner .ant-popover-inner-content .ant-tag {
  margin-top: 5px;
}

/* Ant Design Overrides - End */

/*# sourceMappingURL=0.c491e34828045c8bd6f0.css.map*/