html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: Helvetica, Arial;
  font-size: 17px;
  font-weight: 100;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: black;
}

h1 {
  font-size: 2.2rem;
  font-weight: 100;
}

h2 {
  font-size: 1.7rem;
  font-weight: 100;
}

button {
  apperance: none;
  border: none;
  cursor: pointer;
  font-weight: 100;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.container--padded {
  padding: 30px;
}

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

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

.text-green {
  color: #86BC25;
}

.text-yellow {
  color: #E2D223;
}

.hide {
  display: none;
}

.btn {
  padding: 10px 20px;
  background: #F4F4F4;
  color: black;
  border: none;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  display: inline-block;
}

.btn--green {
  background: #86BC25;
  color: white;
}

.btn--red {
  background: #D41818;
  color: white;
}

.btn--full-width {
  width: 100%;
}

.btn-group {
  display: block;
}

.btn-group .btn {
  margin-right: 10px;
}

.btn-group .btn:last-child {
  margin-right: 0px;
}

.form {
  width: 100%;
}

.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

.form__group-label {
  margin-bottom: 15px;
}

.form__group-label .required {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.6em;
  line-height: 17px;
  color: #BEBEBE;
}

.form__group-input {
  width: 100%;
  height: 40px;
  padding: 5px;
  font-size: 1rem;
  background: white;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #BEBEBE;
  border-radius: 2px;
  outline: none;
}

.form__group-input-file {
  position: relative;
  overflow: hidden;
}

.form__group-input-file input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  margin: 0;
  margin-right: 10px;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.form__group-input-file label {
  display: inline-block;
}

.form__group-input-file i {
  display: inline-block;
  margin-right: 10px;
}

.autocomplete {
  width: 100%;
  max-height: 200px;
  border: 1px solid #BEBEBE;
  display: none;
  border-top: none;
  border-radius: 2px;
  position: absolute;
  margin-top: 75px;
  z-index: 1;
  background: white;
  overflow-y: scroll;
}

.autocomplete .form__group-input {
  border: 0;
  border-bottom: 1px solid #BEBEBE;
}

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

.autocomplete__item {
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid #BEBEBE;
  cursor: pointer;
}

.autocomplete__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.form__group-error {
  color: #D41818;
  margin-top: 5px;
  margin-bottom: 10px;
}

.form__group-error:before {
  content: '\F1F1';
  font-family: 'Material-Design-Iconic-Font';
  margin-right: 5px;
}

.form--inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.form--inline .form__group {
  margin-right: 20px;
}

.form--inline .form__group:last-child {
  margin-right: 0;
}

.dropdown-container {
  background: white;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}

.dropdown-container select {
  padding: 10px 30px 10px 10px;
}

.dropdown-container:after {
  content: '\F2F2';
  display: block;
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: 'Material-Design-Iconic-Font';
  font-size: 20px;
  color: #BEBEBE;
}

.filter {
  margin-bottom: 20px;
}

.filter .form__group {
  margin-bottom: 5px;
}

.filter__header {
  height: 50px;
  margin-bottom: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.filter__header .search-icon {
  margin-right: 15px;
}

.filter__header input {
  height: 100%;
  width: 80%;
  border: none;
  outline: none;
}

.filter__header .btn {
  position: absolute;
  right: 0;
}

.filter__form {
  padding: 15px;
  background: #F4F4F4;
  margin-bottom: 10px;
  border-radius: 2px;
}

.filter__form .shrink {
  -ms-flex-negative: 2;
      flex-shrink: 2;
}

.filter__form .btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 5px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table td {
  vertical-align: top;
  padding: 15px 0;
}

.table .table__actions {
  text-align: right;
  vertical-align: middle;
  white-space: nowrap;
}

.table .table__actions form {
  display: inline;
}

.table .table__actions .btn {
  position: relative;
  top: -4px;
}

.table__row {
  border-bottom: 1px solid #BEBEBE;
}

.table__row--empty {
  text-align: center;
  color: #BEBEBE;
}

.table__row--empty td {
  padding: 30px 0;
}

.table--top-border {
  border-top: 1px solid #BEBEBE;
}

.table__additional {
  display: block;
  line-height: 130%;
}

.table__additional:first-of-type {
  margin-top: 5px;
}

.alert {
  position: fixed;
  bottom: 40px;
  right: 40px;
  padding: 15px 22px;
  border-radius: 3px;
  font-size: 1.2em;
  z-index: 3;
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.alert i {
  display: block;
  float: left;
  position: relative;
  top: -2px;
  font-size: 1.3em;
  margin-right: 10px;
}

.alert--success {
  background-color: #86BC25;
  color: #FFFFFF;
}

.alert--error {
  background-color: #D41818;
  color: #FFFFFF;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.navigation {
  height: 100px;
  border-bottom: 1px solid #BEBEBE;
}

.navigation__inner {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  position: relative;
}

.navigiation__logo {
  width: 60px;
  height: 60px;
  margin-right: 60px;
}

.navigation__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  padding: 0;
}

.navigation__item {
  height: 100px;
  margin-right: 30px;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 3px solid white;
}

.navigation__item:last-of-type {
  margin-right: 0px;
}

.navigation__item i {
  color: #BEBEBE;
  font-size: 1.4rem;
  margin-right: 10px;
}

.navigation__item:hover,
.navigation__item--active {
  border-top: 3px solid #86BC25;
}

.user-actions {
  position: absolute;
  right: 20px;
}

.review-header {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: #3C3C3C;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.review-header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.review-header__title i {
  margin-right: 15px;
  font-size: 1.8rem;
}

.review-header__exit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

.review-header__exit i {
  margin-left: 15px;
  font-size: 1.8rem;
}

.review-container {
  width: 100%;
  height: calc(100% - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review-container__preview {
  width: 700px;
  height: calc(100% - 30px);
  background: #F4F4F4;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.review-container__preview iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.review-container__preview #image-viewer {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.review-container__preview-navigator {
  width: 100%;
  height: 30px;
  background: #F4F4F4;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.review-container__preview-navigator a {
  color: #BEBEBE;
  display: block;
  padding: 0 5px;
}

.review-container__preview-navigator span {
  font-size: .9rem;
  padding: 0 10px;
}

.review-container__preview-navigator-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.review-container__details {
  width: 100%;
  overflow-y: scroll;
}

.review-container__details-inner {
  width: 85%;
  max-width: 600px;
  height: 800px;
  margin: 0 auto;
  margin-top: 100px;
  position: relative;
}

.review-container__details-inner h1 {
  margin-bottom: 55px;
}

.review-container__details-inner .table {
  margin-bottom: 55px;
}

.review-container__details-approval {
  padding: 20px;
  border: 1px solid #BEBEBE;
  border-radius: 2px;
}

.review-container__details-approval p {
  margin-bottom: 30px;
}

.review-container__details-approval .btn__group {
  text-align: right;
}

.review-container__details-approval--approved {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

.review-container__details-approval--approved .zmdi {
  margin-right: 20px;
}

.review-container__details-approval--approved .time-ago {
  margin-left: auto;
}

.review-container__details-navigator {
  position: absolute;
  right: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.main {
  width: 100%;
  height: 100vh;
  overflow: auto;
  cursor: grab;
  cursor: -o-grab;
  cursor: -webkit-grab;
}

.main img {
  height: auto;
  width: 100%;
}

.add {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}

.add__form {
  width: 40%;
  margin-right: 20px;
}

.add__attachments {
  width: 50%;
}

.add__attachments--wide,
.existing__attachments {
  width: 100%;
}

.add__header {
  display: block;
  margin-bottom: 10px;
}

.users__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.add-user {
  width: 40%;
}

.auth {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.auth__form {
  width: 40%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.auth__form h1 {
  margin-bottom: 50px;
}

.auth__form form {
  width: 340px;
  margin-bottom: 30px;
}

.auth__form .forgot-password {
  text-decoration: underline;
  color: #006BA9;
  font-size: .9rem;
}

.auth__form .footer-text {
  color: #BEBEBE;
  position: absolute;
  left: 30px;
  bottom: 15px;
  margin-right: 30px;
  font-size: .9rem;
  line-height: 130%;
}

.auth__form .footer-text a {
  color: #BEBEBE;
  text-decoration: underline;
}

.auth__image {
  width: 60%;
  height: 100%;
  background-image: url("https://www.officespaceintown.com/sites/default/files/_mg_8999_copy.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.auth__logo {
  margin-top: 60px;
}

.auth__first-time-msg {
  line-height: 25px;
  width: 400px;
  color: #D41818;
  margin-bottom: 40px;
}

