/*
 * COLORS
 */
/*
 * FONT AND TEXT
 */
/*
 * SIZES AND PREFIXES
 */
/*
 * MEDIA QUERIES
 */
.--center-ver {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.--unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.--click-through {
  pointer-events: none;
}

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

.input-base {
  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 {
  color: #8DA1B7;
}

.display-none {
  display: none;
}

/*
 * APP-CONTENT
 */
.app-content {
  display: flex;
  height: calc(100% - 50px);
  padding-top: 50px;
  /*@TODO
   * Added because of the current css incompatibilities */
  box-sizing: content-box;
}
@media (min-width: 1200px) {
  .app-content {
    height: calc(100% - 60px);
    padding-top: 60px;
  }
}

.app-content__content {
  flex: 1;
  overflow: auto;
  flex-direction: column;
  background-color: #F9FAFC;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 1200px) {
  .app-content__content {
    padding: 20px 40px;
  }
}

.app-content__project {
  display: block;
  width: 100%;
}
@media (min-width: 1200px) {
  .app-content__project {
    display: none;
  }
}

.login-container + .app-content__project {
  display: none;
}

.app-content__project-select {
  height: 32px;
  background-color: #ECF1F5;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 6px 15px;
  font-size: 14px;
}

.app-content__title {
  margin-bottom: 20px;
  line-height: 38px;
}

.search-title {
  font-size: 26px;
  line-height: 38px;
}

.search-not-found-message {
  margin-top: 40px;
}

.search-not-found-icon {
  display: block !important;
  font-size: 40px !important;
  color: #C2D1D9;
  margin: 18px 0;
}

.deny-container__wrapper {
  height: 100%;
}

.deny-container {
  display: flex;
  flex-direction: column;
  max-width: 650px;
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.deny-container h3 {
  font-size: 28px;
  margin-bottom: 50px;
}

.deny-container p {
  font-size: 18px;
  margin-bottom: 20px;
}

.deny-container a {
  font-size: 18px;
  text-decoration: none;
}

.deny-container a {
  font-size: 18px;
  text-decoration: none;
}

/*# sourceMappingURL=app-content.css.map */
