@import url("https://fonts.googleapis.com/css?family=Muli:300,400,500,600,700,900") all;
.theme-color {
  color: #8ABF4C;
}

.danger-color {
  color: #E86546;
}

.salmon {
  color: #E86546;
}

.blue {
  color: #E1F2FF;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -ms-overflow-style: scrollbar;
}
body.full-body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

body {
  background-color: #f2f2ee;
  color: #333;
}
body.draggable-area {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#zap-application {
  display: block;
  width: 100%;
  height: 100%;
}

.main-view {
  display: block;
  width: 100%;
  height: 100%;
}

.zap-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1 1 100%;
  min-height: 0;
}
.zap-page--overflow {
  height: 100vh;
  flex: initial;
}
.zap-page__container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  flex: 1 1 100%;
  position: relative;
}
.zap-page__sidebar {
  min-width: 240px;
}

.grid-view {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .grid-view {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex: 1 1 auto;
  }
}
.grid-view-content {
  flex: 1 1 auto;
}
.grid-view-content.board-view {
  overflow-x: visible;
  overflow-y: hidden;
  margin-right: 0 !important;
  display: flex;
}

.kpi-summary .grid-view {
  overflow: auto;
}
.kpi-summary .grid-view-content {
  overflow-x: hidden;
  overflow-y: auto;
}

.auto-scroll-height {
  overflow-y: auto;
}

.zap-footer {
  height: 3.125rem;
}

.horizontal-page {
  display: flex;
  flex-direction: row;
  flex: 1 1 100%;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.horizontal-page__header {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .horizontal-page__header {
    padding-left: 0;
    padding-right: 0;
  }
}
.horizontal-page__header--fixed {
  position: fixed;
  top: 0;
  left: 20%;
  right: 0;
  background: #FFF;
}
@media screen and (max-width: 1024px) {
  .horizontal-page__header--fixed {
    left: 0;
  }
}
.horizontal-page__footer {
  margin-top: auto;
}
.horizontal-page__body-top-logo {
  margin-left: auto;
  max-width: 120px;
}
@media screen and (max-width: 1024px) {
  .horizontal-page__body-top-logo {
    margin-left: 0;
  }
}
.horizontal-page__body {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-flow: column;
  width: calc(100% - 384px);
  height: 100vh;
  overflow: auto;
  overflow-x: hidden;
  background: #FFF;
}
@media screen and (max-width: 1024px) {
  .horizontal-page__body {
    width: 100%;
  }
}
.horizontal-page__banner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-flow: column;
  width: 384px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .horizontal-page__banner {
    display: none;
  }
}
.horizontal-page__banner:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.horizontal-page__banner-logo {
  width: 8.125rem;
  margin: auto auto 1.5rem;
  position: relative;
  z-index: 2;
}

.banner-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-image--desktop-large {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-height: 800px) {
  .banner-image--desktop-large {
    display: none;
  }
}
@media screen and (min-height: 801px) {
  .banner-image--desktop {
    display: none;
  }
}

.error-banner {
  background: #E86546;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.img-fluid {
  width: 100%;
  height: auto;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-auto {
  margin-top: auto;
}

.ml-3 {
  margin-left: 1rem;
}

@media screen and (min-width: 541px) {
  .ml-md-3 {
    margin-left: 1rem;
  }
}

.mr-4 {
  margin-right: 24px;
}

.mt-4 {
  margin-top: 24px;
}

@media screen and (max-width: 540px) {
  .mt-sm-3 {
    margin-top: 1rem;
  }
}

.d-flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

@media screen and (max-width: 540px) {
  .flex-sm-column {
    flex-flow: column;
  }
}

@media screen and (max-width: 540px) {
  .justify-content-sm-center {
    justify-content: center;
    align-items: center;
  }
}

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

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.error-banner {
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  background: #E86546;
  color: #FFF;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
}
.error-banner ul {
  margin: 0;
  padding: 0;
}
.error-banner ul li {
  list-style: none;
}

.horizontal-page {
  background: #FFF;
  font-family: Muli, sans-serif;
}
@media screen and (max-width: 1024px) {
  .horizontal-page {
    padding: 0 1.5rem;
  }
}
.horizontal-page__body-top-logo {
  margin-left: auto;
  max-width: 14.375rem;
}
@media screen and (max-width: 1024px) {
  .horizontal-page__body-top-logo {
    margin-left: 0;
  }
}
.horizontal-page__body--centered {
  justify-content: center;
  align-items: center;
}
.horizontal-page__footer {
  font-size: 0.875rem;
  padding-bottom: 1rem;
}
.horizontal-page__footer p {
  margin: 0;
  padding-bottom: 0.5rem;
}
.horizontal-page__footer p a {
  color: #8ABF4C;
  text-decoration: none;
  font-weight: 600;
}
.horizontal-page__footer p a:hover {
  text-decoration: underline;
}
.horizontal-page__footer p.bold {
  font-weight: 600;
}

h1 {
  color: #333;
  font-size: 1.75rem;
  font-weight: bold;
}

.login-form-section {
  width: 25rem;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .login-form-section {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .login-form-section {
    margin-top: 5.375rem;
  }
}
.login-form-section .form-info {
  color: #999;
  font-size: 0.75rem;
}
.login-form-section .form-error {
  color: #E86546;
  font-size: 0.75rem;
}
.login-form-section__intro {
  margin-bottom: 2.5rem;
}
.login-form-section__intro-text {
  display: block;
  font-size: 1rem;
}
.login-form-section__intro-img {
  width: 10.9375rem;
  margin: 0 0 2.625rem;
}
.login-form-section label {
  display: block;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
}
.login-form-section input {
  height: 3rem;
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #D9D9DA;
  border-radius: 0.25rem;
  box-sizing: border-box;
}
.login-form-section input:focus {
  outline: none;
  box-shadow: none;
  border-color: #333;
}
.login-form-section input.error {
  border: 1px solid #E86546;
}
.login-form-section__input-group {
  margin-bottom: 1.5rem;
}
.login-form-section__link {
  display: inline-block;
  padding-bottom: 0.5rem;
  color: #333;
  font-size: 0.875rem;
  font-weight: normal;
  text-decoration: none;
}
.login-form-section__link:hover {
  text-decoration: underline;
}
.login-form-section__link--green {
  color: #8ABF4C;
}
.login-form-section__primary-button {
  min-width: 8rem;
  padding: 0.625rem 1rem;
  background: #8ABF4C;
  color: #FFF;
  border: none;
  outline: none;
  border-radius: 0.25rem;
  font-size: 1rem;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 540px) {
  .login-form-section__primary-button {
    width: 100%;
  }
}
.login-form-section__primary-button:disabled {
  background: #C0C0C0 !important;
}
.login-form-section__microsoft-button {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.625rem 1rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 1rem;
  background: #4384F4;
  color: #FFF;
  box-sizing: border-box;
  text-decoration: none;
}
.login-form-section__microsoft-button:hover {
  background: #2b74f3;
}
.login-form-section__microsoft-button img {
  width: 16px;
  margin-right: 8px;
}
.login-form-section .error-text {
  display: block;
  color: #E86546;
  font-size: 0.875rem;
}
.login-form-section__divider {
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}
.login-form-section__divider:before {
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  background: #D9D9DA;
}
.login-form-section__divider span {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: #FFF;
  position: relative;
  z-index: 2;
}

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