@charset "UTF-8";
/*
 * COLORS
 */
/*
 * FONT AND TEXT
 */
/*
 * SIZES AND PREFIXES
 */
/*
 * MEDIA QUERIES
 */
.--center-ver, .header__search-bar-button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.--unselectable, .header__user-menu-name {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.--click-through, .header__search-bar__input-icon::after {
  pointer-events: none;
}

.--no-scroll-bar {
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
}
.--no-scroll-bar::-webkit-scrollbar {
  width: 0 !important;
}

.input-base, .header__search-bar__input-wrapper input {
  border: none;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  padding: 11px 0px 11px 13px;
  box-shadow: none;
  -webkit-transition: border 0.3s ease-in-out;
  -moz-transition: border 0.3s ease-in-out;
  -ms-transition: border 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  -webkit-transition: box-shadow 0.3s ease-in-out;
  -moz-transition: box-shadow 0.3s ease-in-out;
  -ms-transition: box-shadow 0.3s ease-in-out;
  -o-transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
}
.input-base::placeholder, .header__search-bar__input-wrapper input::placeholder {
  color: #8DA1B7;
}

.display-none {
  display: none;
}

/*
 * HEADER
 *
 * These are the Styles needed for the header.
 * If you can use constants, avoid using colors outside the contants and remember mobile first.
 */
.header {
  display: flex;
  position: fixed;
  width: 100%;
  background-color: rgb(var(--secondary-navigation-color));
  color: white;
  height: 50px;
  z-index: 15;
  /* Have to use this otherwise the inline elements won't line */
  font-size: 0;
  padding-left: 7px;
  padding-right: 7px;
}
@media (min-width: 1200px) {
  .header {
    height: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header__menu {
  display: inline-block;
  cursor: pointer;
}
.header__menu::after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  /* "X" */
  font-weight: 300;
  padding: 10px 13px 10px 3px;
  font-size: 24px;
  line-height: 50px;
}
@media (min-width: 1200px) {
  .header__menu::after {
    line-height: 60px;
  }
}
.side-menu--hide .header__menu::after {
  content: "";
  /* "=" (hamburger menu) */
  font-weight: 900;
  padding: 10px 10px 10px 0px;
}

.header__menu-chevron {
  display: none;
}
.header__menu-chevron::after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  font-weight: 300;
  font-size: 16px;
  line-height: 50px;
  padding-right: 5px;
  padding-left: 15px;
}
@media (min-width: 1200px) {
  .header__menu-chevron::after {
    line-height: 60px;
  }
}
@media (min-width: 1200px) {
  .header__menu-chevron {
    display: inline-block;
  }
}

.header__title {
  min-width: 152px;
  display: inline-block;
  /* Have to use this otherwise the inline elements won't line */
  vertical-align: top;
  height: 100%;
}

.header__image {
  vertical-align: unset;
  position: relative;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

.header__search-bar-button {
  display: inline-block;
  right: 60px;
  color: #C9D3DC;
  cursor: pointer;
}
.header__search-bar-button::after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  font-weight: 500;
  font-size: 16px;
  line-height: 50px;
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .header__search-bar-button {
    display: none;
  }
}

.header__search-bar__input-wrapper {
  display: flex;
}

.header__search-bar-button--show-bar::after {
  background-color: rgb(var(--primary-navigation-color));
  border-radius: 60px;
}

.header__user-menu {
  display: inline-block;
  align-self: center;
}

.header__user-menu-container {
  display: flex;
}

.header__menu-secondary-container {
  display: inline-flex;
  flex: 1;
  align-self: center;
}

.header__spacing {
  display: inline-block;
  flex: 1;
}

.user-dropdown {
  position: fixed;
  font-size: 14px;
  background-color: rgb(var(--primary-navigation-color));
  color: white;
  width: 300px;
  top: 50px;
  right: 0;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: calc(100% - 50px);
}
@media (min-width: 1200px) {
  .user-dropdown {
    top: 60px;
    height: calc(100% - 50px);
    height: 120px;
    width: 162px;
    right: 15px;
  }
}

.user-dropdown--hide {
  right: -300px;
}
@media (min-width: 1200px) {
  .user-dropdown--hide {
    right: 15px;
    top: -120px;
  }
}

.user-dropdown__button {
  height: 60px;
  line-height: 60px;
  border-bottom: solid 1px rgb(var(--secondary-navigation-color));
}
.user-dropdown__button a {
  display: block;
  height: 100%;
  width: 100%;
  padding-left: 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}
.user-dropdown__button a:hover {
  padding-left: 17px;
  border-left: solid 3px rgb(var(--primary-color));
  background-color: rgba(var(--primary-color), 0.3);
  text-decoration: none;
  color: white;
}

.header__user-menu-avatar {
  width: 26px;
  height: 26px;
  line-height: 26px;
  background-color: rgb(var(--primary-color));
  border-radius: 60px;
  text-transform: uppercase;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  display: inline-block;
}

.header__user-menu-name {
  display: inline-block;
  font-size: 14px;
  margin-left: 15px;
  display: none;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 98px;
  flex: 1;
  line-height: 26px;
}
@media (min-width: 1200px) {
  .header__user-menu-name {
    display: inline-block;
  }
}

.header__user-menu-chevron {
  display: none;
}
@media (min-width: 1200px) {
  .header__user-menu-chevron {
    display: inline;
  }
}
.header__user-menu-chevron::after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  margin-left: 15px;
}

.header__project {
  margin-left: 10px;
  margin-right: 10px;
  display: none;
  vertical-align: top;
  font-size: 14px;
}
@media (min-width: 1200px) {
  .header__project {
    display: inline-block;
    width: 510px;
  }
}
@media (min-width: 1440px) {
  .header__project {
    display: inline-block;
    width: 595px;
  }
}

.header__project-select {
  height: 40px;
  border-radius: 6px;
  background-color: #1E242D;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 6px 15px;
  font-size: 14px;
  color: white;
}

.header__search-bar {
  position: relative;
  display: none;
}
@media (min-width: 1200px) {
  .header__search-bar {
    display: inline-block;
    width: 270px;
  }
}

.header__search-bar--show {
  display: block;
}

.header__search-bar__input-wrapper input {
  background-color: rgb(var(--secondary-navigation-color));
  border: 1px solid rgba(141, 161, 183, 0.5);
  border-radius: 6px;
  height: 40px;
  padding: 0px;
  padding-right: 40px;
  padding-left: 20px;
  flex: 1;
  color: #C9D3DC;
}

.header__search-bar__input-icon {
  cursor: pointer;
}
.header__search-bar__input-icon::after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  color: #C9D3DC;
  font-weight: 500;
  font-size: 18px;
  position: absolute;
  top: 0;
  right: 20px;
  padding: 5px;
}

.header__search-bar__input-icon--show-clear::after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  color: #C9D3DC;
  font-weight: 300;
  font-size: 18px;
  position: absolute;
  top: 0;
  right: 20px;
  padding: 5px;
  pointer-events: unset;
}

.header__login-link {
  float: right;
  margin-right: 28px;
  line-height: 50px;
}
@media (min-width: 1200px) {
  .header__login-link {
    line-height: 60px;
  }
}

.login-title {
  text-align: center;
  font-size: 21px;
  line-height: 31px;
  font-weight: 700;
  margin-bottom: 33px;
}

.login-container {
  margin-top: 16px;
  padding-left: 2.5px;
  padding-right: 2.5px;
}
@media (min-width: 576px) {
  .login-container {
    max-width: 460px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.button__max-width {
  width: 100%;
  height: 40px;
  margin-top: 15px;
}

.form-section {
  margin-bottom: 13px;
}

.form-label {
  margin-bottom: 10px;
  display: inline-block;
}

.forgot-link {
  margin-top: 15px;
  text-align: center;
}

.email-contact {
  border-top: solid 1px #C2D1D9;
  margin-top: 15px;
  padding-top: 15px;
  text-align: center;
}

.remember-check {
  margin-top: 30px;
}
.remember-check .form-input__checkbox-label {
  margin-right: 5px;
}
.remember-check .form-input__checkbox-info-label {
  margin-left: 0;
}

.header__company-link {
  text-decoration: none;
}
.header__company-link:hover, .header__company-link:focus {
  text-decoration: none;
}

.header__company-name {
  color: white;
  font-size: 18px;
  line-height: 50px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .header__company-name {
    line-height: 60px;
  }
}

#dashboards-widget {
  max-width: 950px;
}

.kpi-placeholder {
  display: none !important;
}
@media (min-width: 650px) {
  .kpi-placeholder {
    display: inline-block !important;
  }
}

/*# sourceMappingURL=header.css.map */
