.header {
  z-index: 10;
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
  color: #404040;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}
.header__logo {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #0f91b0;
  color: #fff;
  transition: opacity 0.35s;
}
.header__logo:hover,
.header__logo:focus {
  opacity: 0.75;
}
.header__logo-image {
  max-height: 20px;
  margin-right: 7px;
}
.header__title {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.loading {
  animation: loading_two 2.5s infinite;
  width: 43px;
  height: 43px;
  margin: 60px auto 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.loading.active {
  opacity: 1;
}
.loading__ball {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  position: absolute;
  background-color: #fff;
  animation: loading_one 2.5s infinite ease;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}
.loading__ball-wrapper {
  width: 43px;
  height: 43px;
  position: absolute;
}
.loading__ball-wrapper:nth-of-type(1) .loading__ball {
  opacity: 0.85;
  top: 0;
  left: 0;
}
.loading__ball-wrapper:nth-of-type(2) .loading__ball {
  opacity: 0.75;
  top: 0;
  left: 23px;
}
.loading__ball-wrapper:nth-of-type(3) .loading__ball {
  opacity: 0.65;
  top: 23px;
  left: 0;
}
.loading__ball-wrapper:nth-of-type(4) .loading__ball {
  opacity: 0.55;
  top: 23px;
  left: 23px;
}
@-moz-keyframes loading_one {
  0% {
    position: absolute;
  }
  50% {
    top: 12px;
    left: 12px;
    position: absolute;
    opacity: 0.5;
  }
  100% {
    position: absolute;
  }
}
@-webkit-keyframes loading_one {
  0% {
    position: absolute;
  }
  50% {
    top: 12px;
    left: 12px;
    position: absolute;
    opacity: 0.5;
  }
  100% {
    position: absolute;
  }
}
@-o-keyframes loading_one {
  0% {
    position: absolute;
  }
  50% {
    top: 12px;
    left: 12px;
    position: absolute;
    opacity: 0.5;
  }
  100% {
    position: absolute;
  }
}
@keyframes loading_one {
  0% {
    position: absolute;
  }
  50% {
    top: 12px;
    left: 12px;
    position: absolute;
    opacity: 0.5;
  }
  100% {
    position: absolute;
  }
}
@-moz-keyframes loading_two {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.25);
  }
  100% {
    transform: rotate(720deg) scale(1);
  }
}
@-webkit-keyframes loading_two {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.25);
  }
  100% {
    transform: rotate(720deg) scale(1);
  }
}
@-o-keyframes loading_two {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.25);
  }
  100% {
    transform: rotate(720deg) scale(1);
  }
}
@keyframes loading_two {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.25);
  }
  100% {
    transform: rotate(720deg) scale(1);
  }
}
.navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.navigation__link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  padding: 7px 10px;
  margin: 0 5px;
  transition: color 0.25s;
}
.navigation__link:hover,
.navigation__link:focus {
  color: #13b5dc;
}
.navigation__link.true {
  color: #13b5dc;
}
.navigation__link:last-of-type {
  margin-right: 12px;
}
html.print {
  padding: 70px 0;
  height: auto;
  background-color: #d3d3d3;
}
html.print body {
  display: block;
  height: 29.7cm;
  width: 21cm;
  margin: 0 auto;
  color: #000;
  background-color: #fff;
}
@media print {
  html.print {
    background-color: #fff;
    padding: 0;
  }
  .print-button {
    display: none;
  }
}
.print-button {
  position: fixed;
  top: 15px;
  left: 30px;
}
.a4 {
  padding: 0.8cm 1cm;
  position: relative;
}
.a4 header {
  display: flex;
  justify-content: space-between;
}
.a4 h3 {
  margin: 0;
}
.a4 main {
  display: flex;
  justify-content: space-between;
}
.a4 main div {
  margin-top: 3cm;
}
.a4 main table {
  margin: 0;
  width: auto;
}
.a4 main table tbody td {
  padding: 0.05cm 0.2cm;
}
.a4 main table tbody tr:nth-child(even) {
  background-color: #fff;
}
.a4 main table tbody tr td:nth-of-type(2) {
  text-align: right;
}
.a4 table {
  margin-top: 1.5cm;
  width: 100%;
  text-align: left;
}
.a4 table th {
  background-color: #d3d3d3;
}
.a4 table th,
.a4 table td {
  padding: 0.1cm 0.2cm;
}
.a4 table th:nth-of-type(3),
.a4 table td:nth-of-type(3) {
  text-align: right;
}
.a4 table th:nth-of-type(4),
.a4 table td:nth-of-type(4) {
  text-align: right;
}
.a4 table th:nth-of-type(2),
.a4 table td:nth-of-type(2) {
  width: 0.5cm;
  padding-right: 0.25cm;
  text-align: right;
}
.a4 table tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}
.a4 table tfoot {
  background-color: #d3d3d3;
}
.drop-in__header {
  padding: 20px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: row;
  position: relative;
  box-shadow: 2px 0px 5px rgba(0,0,0,0.5);
}
.drop-in__header .drop-in__button:last-of-type {
  margin-left: auto;
}
.drop-in__button {
  border: 0;
  background: transparent;
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
  outline: 0;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: space-around;
  padding: 10px 20px;
  box-shadow: 0px 0px 1px rgba(0,0,0,0.5);
  background-color: #4cb2da;
  color: #fff;
  transition: background-color 0.25s, opacity 0.25s;
}
.drop-in__button:hover,
.drop-in__button:focus {
  background-color: #2ba1cf;
}
.drop-in__button .tcn {
  margin-left: 7px;
  font-size: 26px;
}
.drop-in__button--with-icon {
  padding: 4px 20px;
  padding-right: 12px;
}
.drop-in__button--delete {
  background-color: #cb5252;
}
.drop-in__button--delete:hover,
.drop-in__button--delete:focus {
  background-color: #ba3838;
}
.drop-in__button--small {
  padding: 5px 10px;
  font-size: 16px;
}
.drop-in__button--small .tcn {
  font-size: 16px;
}
.drop-in__button--deactive {
  opacity: 0.5;
}
.drop-in__button--deactive:hover,
.drop-in__button--deactive:focus {
  opacity: 1;
}
.drop-in__button > div > .tcn {
  margin-top: -6px;
  display: inline-block;
}
.drop-in__wrapper {
  height: 100%;
  width: calc(100% - 300px);
  display: flex;
  flex-direction: column;
}
.drop-in__content {
  height: calc(100% - 79px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px 20px 20px;
}
.drop-in__title {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
}
.drop-in__title--small-margin {
  margin-bottom: 15px;
}
.drop-in__title--big-margin {
  margin-bottom: 80px;
}
.drop-in__title--intro {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}
.drop-in__sub-title {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}
.drop-in__form {
  max-width: 350px;
  margin: 0 auto 30px;
  transition: opacity 0.25s;
}
.drop-in__form.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.drop-in__form--large {
  max-width: 700px;
}
.drop-in__form--large .drop-in__button-wrapper {
  margin-top: 20px;
}
.drop-in__form--large .drop-in__button-wrapper:last-of-type {
  margin-top: 60px;
}
.drop-in__input-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 350px;
  margin: 0 auto 30px;
  transition: opacity 0.25s;
}
.drop-in__input-wrapper.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.drop-in__input-wrapper .drop-in__input,
.drop-in__input-wrapper .drop-in__display-input {
  margin: 0;
}
.drop-in__input,
.drop-in__display-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  background-color: inherit;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  border-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  cursor: text;
  line-height: normal;
  color: #000;
  font-size: 18px;
  display: block;
  max-width: 350px;
  margin: 0 auto 30px;
  padding: 10px;
  background-color: #f9f9f9;
  border-bottom: 2px solid #4cb2da;
}
.drop-in__input:focus,
.drop-in__display-input:focus {
  outline: none;
}
.drop-in__input::-webkit-search-cancel-button,
.drop-in__display-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.drop-in__input:input-placeholder,
.drop-in__display-input:input-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__input:-input-placeholder,
.drop-in__display-input:-input-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__input::-webkit-input-placeholder,
.drop-in__display-input::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__input:-moz-placeholder,
.drop-in__display-input:-moz-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__input::-moz-placeholder,
.drop-in__display-input::-moz-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__input:-ms-input-placeholder,
.drop-in__display-input:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__display-input {
  transition: background-color 0.25s, border-bottom 0.25s, color 0.25s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.drop-in__display-input:hover,
.drop-in__display-input:focus {
  color: #fff;
  background-color: #4ac54f;
  border-bottom: 2px solid #4ac54f;
}
.drop-in__input-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 26px;
  padding: 0 10px;
  background-color: #4cb2da;
  transition: background-color 0.25s;
}
.drop-in__input-button:hover,
.drop-in__input-button:focus {
  background-color: #2ba1cf;
}
.drop-in__input-button:before {
  margin-top: -3px;
}
.drop-in__input-button--delete {
  background-color: #cb5252;
}
.drop-in__input-button--delete:hover,
.drop-in__input-button--delete:focus {
  background-color: #ba3838;
}
.drop-in__input-button--save {
  background-color: #4ac54f;
}
.drop-in__input-button--save:hover,
.drop-in__input-button--save:focus {
  background-color: #38ae3d;
}
.drop-in__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 350px;
  margin: 40px auto 0;
}
.drop-in__list .drop-in__input-wrapper {
  margin: 0 0 12px;
}
.drop-in__button-wrapper {
  text-align: right;
}
.drop-in__button-wrapper--justify {
  text-align: left;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.drop-in__supplier-info {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin: 40px auto 20px;
}
.drop-in__transactions-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  margin: 80px 0 0;
  border-bottom: 1px solid #d3d3d3;
}
.drop-in__select {
  display: block;
  margin: 0 auto 30px;
}
.drop-in__transaction-type {
  max-width: 450px;
  margin: 30px auto 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.drop-in__transaction-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  margin-bottom: 10px;
}
.drop-in__transaction-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  background-color: inherit;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  border-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  cursor: text;
  line-height: normal;
  color: #000;
  font-size: 18px;
  display: block;
  width: auto;
  padding: 10px;
  background-color: #f9f9f9;
  border-bottom: 2px solid #4cb2da;
}
.drop-in__transaction-input:focus {
  outline: none;
}
.drop-in__transaction-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.drop-in__transaction-input:input-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__transaction-input:-input-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__transaction-input::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__transaction-input:-moz-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__transaction-input::-moz-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__transaction-input:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}
.drop-in__transaction-input:nth-of-type(1) {
  width: 65%;
}
.drop-in__transaction-input:nth-of-type(2) {
  width: 15%;
}
.drop-in__transaction-input:nth-of-type(3) {
  width: 15%;
}
.drop-in__transactions-overview {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto 30px;
  max-width: 400px;
}
.drop-in__transactions-overview .drop-in__sub-title {
  font-size: 18px;
}
.drop-in__transactions-tabs {
  display: block;
  margin-bottom: 15px;
}
.drop-in__transactions-tab {
  border: 0;
  background: transparent;
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
  outline: 0;
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  opacity: 0.5;
  padding: 3px 10px 5px;
  background-color: #4cb2da;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  transition: background-color 0.25s, opacity 0.25s;
}
.drop-in__transactions-tab:hover,
.drop-in__transactions-tab:focus {
  opacity: 1;
  background-color: #4cb2da;
}
.drop-in__transactions-tab:last-of-type {
  margin-right: 0;
}
.drop-in__transactions-tab--active {
  opacity: 1;
  background-color: #4cb2da;
}
.drop-in__transaction-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: table;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 40px;
}
.drop-in__transaction-list--small {
  max-width: 500px;
  margin: 60px auto 40px;
}
.drop-in__transaction-list--small span:nth-of-type(3),
.drop-in__transaction-list--small span:nth-of-type(4) {
  text-align: right;
}
.drop-in__transaction-list header {
  display: table-row;
  font-weight: 600;
}
.drop-in__transaction-list footer {
  display: table-row;
  font-weight: 600;
}
.drop-in__transaction-list footer span {
  padding-top: 60px;
}
.drop-in__transaction-list a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: table-row;
  transition: background-color 0.25s;
}
.drop-in__transaction-list a:hover,
.drop-in__transaction-list a:focus {
  background-color: #f5f5f5;
}
.drop-in__transaction-list li {
  display: table-row;
}
.drop-in__transaction-list header > span,
.drop-in__transaction-list a > span,
.drop-in__transaction-list li > span {
  display: table-cell;
  padding: 1px 0;
  vertical-align: middle;
}
.drop-in__transaction-list header > span:nth-of-type(4),
.drop-in__transaction-list a > span:nth-of-type(4),
.drop-in__transaction-list li > span:nth-of-type(4),
.drop-in__transaction-list header > span:nth-of-type(5),
.drop-in__transaction-list a > span:nth-of-type(5),
.drop-in__transaction-list li > span:nth-of-type(5),
.drop-in__transaction-list header > span:nth-of-type(6),
.drop-in__transaction-list a > span:nth-of-type(6),
.drop-in__transaction-list li > span:nth-of-type(6),
.drop-in__transaction-list header > span:nth-of-type(7),
.drop-in__transaction-list a > span:nth-of-type(7),
.drop-in__transaction-list li > span:nth-of-type(7) {
  text-align: right;
}
.drop-in__transaction-list .tcn {
  font-size: 24px;
}
.recent-suppliers {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 300px;
  border-right: 1px solid #d3d3d3;
}
.recent-suppliers__title {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-weight: 600;
  padding: 15px;
  background-color: #f0f0f0;
  position: relative;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.35);
}
.recent-suppliers__search {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  background-color: inherit;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  border-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  cursor: text;
  line-height: normal;
  color: #404040;
  display: block;
  width: 100%;
  padding: 12px 15px;
  padding-right: 3px;
  background-color: #f0f0f0;
}
.recent-suppliers__search:focus {
  outline: none;
}
.recent-suppliers__search::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.recent-suppliers__search:input-placeholder {
  color: #404040;
  opacity: 1;
  font-size: inherit;
}
.recent-suppliers__search:-input-placeholder {
  color: #404040;
  opacity: 1;
  font-size: inherit;
}
.recent-suppliers__search::-webkit-input-placeholder {
  color: #404040;
  opacity: 1;
  font-size: inherit;
}
.recent-suppliers__search:-moz-placeholder {
  color: #404040;
  opacity: 1;
  font-size: inherit;
}
.recent-suppliers__search::-moz-placeholder {
  color: #404040;
  opacity: 1;
  font-size: inherit;
}
.recent-suppliers__search:-ms-input-placeholder {
  color: #404040;
  opacity: 1;
  font-size: inherit;
}
.recent-suppliers__entry {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: block;
  padding: 10px;
  padding-right: 0;
  border-bottom: 1px solid #d3d3d3;
  transition: opacity 0.25s, background-color 0.25s;
}
.recent-suppliers__entry:hover,
.recent-suppliers__entry:focus {
  opacity: 0.5;
  background-color: #d3d3d3;
}
.recent-suppliers__entry:first-of-type {
  border-top: 1px solid #d3d3d3;
}
.recent-suppliers__entry.true {
  cursor: default;
  opacity: 0.5;
  background-color: #d3d3d3;
}
.drop-in__text-statistics {
  border: 1px solid #d3d3d3;
  margin: 50px auto 0;
}
.drop-in__text-statistics th,
.drop-in__text-statistics td {
  border: 1px solid #d3d3d3;
  padding: 10px 15px;
  text-align: left;
}
.drop-in__text-statistics th {
  font-weight: 600;
}
.drop-in__text-statistics td:not(:first-of-type) {
  min-width: 175px;
  text-align: right;
}
.enroll__form {
  display: block;
  margin: 0 auto;
  padding: 70px 10px;
  max-width: 320px;
  width: 100%;
}
.enroll__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  background-color: inherit;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  border-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  cursor: text;
  line-height: normal;
  padding: 0 0 3px;
  border-bottom: 2px solid #fff;
}
.enroll__input:focus {
  outline: none;
}
.enroll__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.enroll__input:input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.enroll__input:-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.enroll__input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.enroll__input:-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.enroll__input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.enroll__input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.enroll__button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 320px;
  padding: 60px 0 0;
}
.enroll__button {
  border: 0;
  background: transparent;
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
  outline: 0;
  display: inline-block;
  display: block;
  padding: 9px 35px;
  border: 2px solid #fff;
  border-radius: 50px;
  transition: opacity 0.25s, background-color 0.2s, color 0.2s;
}
.enroll__button:hover,
.enroll__button:focus {
  background-color: #fff;
  color: #0f91b0;
}
.forgot-password__form {
  display: block;
  margin: 0 auto;
  padding: 70px 10px;
  max-width: 320px;
  width: 100%;
}
.forgot-password__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  background-color: inherit;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  border-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  cursor: text;
  line-height: normal;
  padding: 0 0 3px;
  border-bottom: 2px solid #fff;
}
.forgot-password__input:focus {
  outline: none;
}
.forgot-password__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.forgot-password__input:input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.forgot-password__input:-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.forgot-password__input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.forgot-password__input:-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.forgot-password__input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.forgot-password__input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.forgot-password__button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 320px;
  padding: 60px 0 0;
}
.forgot-password__button {
  border: 0;
  background: transparent;
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
  outline: 0;
  display: inline-block;
  display: block;
  padding: 9px 35px;
  border: 2px solid #fff;
  border-radius: 50px;
  transition: opacity 0.25s, background-color 0.2s, color 0.2s;
}
.forgot-password__button:hover,
.forgot-password__button:focus {
  background-color: #fff;
  color: #0f91b0;
}
.login-header {
  padding: 10px 0 75px;
  color: #fff;
  text-align: center;
}
.login-header__login-logo {
  height: 80px;
}
.login-header__title {
  padding-top: 15px;
  font-size: 21px;
  font-weight: 600;
}
.login-form {
  max-width: 320px;
  padding: 0 15px;
  margin: 0 auto;
}
.login-form__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  background-color: inherit;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  border-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  cursor: text;
  line-height: normal;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 0 3px;
  margin: 0 0 30px;
  border-bottom: 2px solid #fff;
}
.login-form__input:input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.login-form__input:-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.login-form__input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.login-form__input:-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.login-form__input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.login-form__input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.login-form__input:focus {
  outline: none;
}
.login-form__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.login-form__input:last-of-type {
  margin: 0;
}
.login-form__button {
  border: 0;
  background: transparent;
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
  outline: 0;
  display: inline-block;
  margin: 90px 0 0;
  padding: 9px 35px;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 20px;
  color: #fff;
  transition: opacity 0.25s, background-color 0.2s, color 0.2s;
}
.login-form__button[disabled] {
  opacity: 0.5;
}
.login-form__button:hover,
.login-form__button:focus {
  background-color: #fff;
  color: #0f91b0;
}
.login-form__wrapper {
  text-align: center;
}
.login-form__link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: block;
  color: #fff;
  margin: 20px 0 0;
  padding: 7px;
}
.reset-password__form {
  display: block;
  margin: 0 auto;
  padding: 70px 10px;
  max-width: 320px;
  width: 100%;
}
.reset-password__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
  background-color: inherit;
  box-shadow: none;
  outline: none;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  border-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  cursor: text;
  line-height: normal;
  padding: 0 0 3px;
  border-bottom: 2px solid #fff;
}
.reset-password__input:focus {
  outline: none;
}
.reset-password__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.reset-password__input:input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.reset-password__input:-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.reset-password__input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.reset-password__input:-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.reset-password__input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.reset-password__input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: inherit;
}
.reset-password__button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 320px;
  padding: 60px 0 0;
}
.reset-password__button {
  border: 0;
  background: transparent;
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
  outline: 0;
  display: inline-block;
  display: block;
  padding: 9px 35px;
  border: 2px solid #fff;
  border-radius: 50px;
  transition: opacity 0.25s, background-color 0.2s, color 0.2s;
}
.reset-password__button:hover,
.reset-password__button:focus {
  background-color: #fff;
  color: #0f91b0;
}
html,
body {
  box-sizing: border-box;
  height: 100%;
  background-color: #0f91b0;
}
body {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Source Sans Pro';
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
#react-root {
  height: 100%;
}
.four-oh-four {
  margin: 0;
  padding-top: 50px;
  color: #fff;
  text-align: center;
}
.layout {
  height: 100%;
}
.layout .wrapper {
  height: calc(100% - 43px);
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
  background-color: #fff;
  color: #404040;
}
.wrapper {
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  margin: 0 auto;
  max-width: 1200px;
}
@media (min-height: 600px) {
  .wrapper--center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.wrapper--flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
