body {
  margin: 0 !important;
  background: #f3f3f3;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

h1, h2 {
  color: #374258;
}

h2, h4 {
  color: #6a7285;
}

#main-container {
  display: flex;
  flex-direction: row;
}

.content-container {
  position: relative;
  width: calc(100%);
  margin-left: 0;
  padding: 10px;
  padding-top: 100px;
  transition: 0.3s;
}
@media screen and (min-width: 992px) {
  .content-container {
    width: calc(100% - 250px);
    margin-left: 250px;
  }
}
.content-container.short {
  width: calc(100%);
  transition: 0.3s;
  margin-left: 0;
}

.paper {
  padding: 25px;
}

#page .header {
  padding: 0 15px;
}

.lock-drawer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000000000000000;
  background: rgba(255, 255, 255, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 5px 0;
  background: #374258;
  color: white;
  opacity: 1;
  transition: 0.15s;
}
.btn:hover {
  opacity: 0.9;
  transition: 0.15s;
}

button:disabled {
  opacity: 0.6;
  transition: 0.15s;
}

.background-image {
  background-size: cover !important;
  background-position-x: center !important;
  background-position-y: center !important;
  background-repeat: no-repeat !important;
}

.submit-container {
  margin-top: 20px;
}
.submit-container button {
  margin: 0 5px;
}

.error-container {
  display: inline-block;
  list-style-type: none;
  padding-left: 10px;
  margin: 0;
  font-size: 12px;
  color: red;
}

.horizontal-form-container .error-container {
  padding-left: 0;
}

#header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 100;
  top: 0;
  left: 250px;
  width: calc(100% - 250px);
  height: 80px;
  background: white;
  border-bottom: 1px solid #c4c4c4;
  transition: 0.3s;
}
#header.short {
  width: calc(100%);
  left: 0;
  transition: 0.3s;
}

a, a:visited, a:hover, a:active {
  text-decoration: none;
  color: inherit;
}

.language-select {
  margin-left: 92%;
}

#navigation .navigation-content-container {
  width: 250px;
  height: 100vh;
  background: #374258;
  transition: 0.3s;
}
#navigation .navigation-content-container.short {
  width: 0;
  transition: 0.3s;
}
#navigation .navigation-content-container.short .navigation-text {
  display: none;
}
#navigation .navigation-content-container.short .logo-container .title {
  display: none;
}
#navigation .navigation-content-container .logo-container {
  display: flex;
  flex-direction: row;
  padding: 15px;
  align-items: center;
  justify-content: center;
}
#navigation .navigation-content-container .logo-container .logo {
  width: 50px;
}
#navigation .navigation-content-container .logo-container .title {
  color: #f74464;
}
#navigation .navigation-content-container .navigation-item .navigation-icon {
  color: #f74464;
}
#navigation .navigation-content-container .navigation-item .navigation-text span {
  color: white;
}
#navigation .navigation-content-container .submenu {
  padding-left: 20px;
}
#navigation .navigation-content-container .navigation-link {
  display: flex;
  text-decoration: none;
  transition: 0.15s;
}
#navigation .navigation-content-container .navigation-link:hover, #navigation .navigation-content-container .navigation-link.active {
  background: #6a7285;
  transition: 0.15s;
}

#filter .filter-header {
  width: 250px;
  padding: 5px;
  background: #374258;
}
#filter .filter-header button {
  color: white;
}
#filter .filter-content-container {
  width: 250px;
}

.calculator-select {
  display: flex;
  margin-left: 10px; }

.calculator-text {
  margin-top: 2%;
  width: 530px; }

.calculator-h3 {
  float: left;
  margin-left: 1%; }

.page-header {
  display: flex; }

#filter .control-container {
  margin-top: 50px;
  text-align: center;
}

#table-page .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#table-page table {
  position: relative;
  margin-bottom: 30px;
}
#table-page table .lock-table {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 500;
}
#table-page .table-header {
  background: #374258;
}
#table-page .table-header th {
  color: white;
}
#table-page .table-row-0 {
  background: rgba(178, 199, 220, 0.2);
  transition: 0.15s;
}
#table-page .table-row-0:hover, #table-page .table-row-0.selected {
  background: rgba(178, 199, 220, 0.4);
  transition: 0.15s;
}
#table-page .table-row-1 {
  background: rgba(199, 221, 255, 0.2);
}
#table-page .table-row-1:hover, #table-page .table-row-1.selected {
  background: rgba(178, 199, 220, 0.4);
  transition: 0.15s;
}

.footer-sum {
  margin-top: 30px;
  font-weight: bold;
  font-size: 120%;
}

.drawer-wrapper .drawer-wrapper-header {
  width: 300px;
  padding: 5px;
  background: #374258;
}
@media screen and (min-width: 992px) {
  .drawer-wrapper .drawer-wrapper-header {
    width: 550px;
  }
}
.drawer-wrapper .drawer-wrapper-header button {
  color: white;
}
.drawer-wrapper .drawer-wrapper-content {
  width: 300px;
}
@media screen and (min-width: 992px) {
  .drawer-wrapper .drawer-wrapper-content {
    width: 550px;
  }
}

.autocomplete {
  width: 100%;
  margin-top: 16px !important;
  margin-bottom: 8px !important;
}

.datepicker-control-container {
  display: flex;
  align-items: flex-end;
}
.datepicker-control-container .react-datepicker-wrapper {
  width: 100%;
}
.datepicker-control-container label {
  font-size: 13px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.54);
  margin-bottom: 8px;
  display: block;
}
.datepicker-control-container.error label {
  color: red;
}
.datepicker-control-container .error {
  color: red;
  font-size: 13px;
  line-height: 1;
  margin: 8px 0;
}
.datepicker-control-container input {
  margin-top: 8px;
  height: 37px;
  padding: 0 10px;
  font-size: 13px;
  border-radius: 2px;
  border: 1px solid;
  width: 100%;
}

.dateLabel {
  margin-top: 1%;
}

form .datepicker-control-container {
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
}
form .datepicker-control-container .react-datepicker__input-container,
form .datepicker-control-container .react-datepicker-wrapper {
  display: block;
  width: 100%;
}
form .datepicker-control-container .react-datepicker__input-container input,
form .datepicker-control-container .react-datepicker-wrapper input {
  width: 100%;
}

.select-control-container {
  margin-top: 8px;
  min-width: 150px;
}
.select-control-container label {
  font-size: 13px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.54);
  margin-bottom: 8px;
  display: block;
}
.select-control-container.error label {
  color: red;
}
.select-control-container .error {
  color: red;
  font-size: 13px;
  line-height: 1;
  margin: 8px 0;
}

#not-found {
  width: 100vw;
  height: 100vh;
  background: #374258;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#not-found h1 {
  font-size: 150px;
  margin-bottom: 0;
  color: #f74464;
}
#not-found h3 {
  font-size: 26px;
  margin-top: 15px;
  color: #f74464;
}

#forbidden {
  width: 100vw;
  height: 100vh;
  background: #374258;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#forbidden h1 {
  font-size: 150px;
  margin-bottom: 0;
  color: #f74464;
}
#forbidden h3 {
  font-size: 26px;
  margin-top: 15px;
  color: #f74464;
}

#error {
  width: 100vw;
  height: 100vh;
  background: #374258;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#error h1 {
  font-size: 150px;
  margin-bottom: 0;
  color: #f74464;
}
#error h3 {
  font-size: 26px;
  margin-top: 15px;
  color: #f74464;
}

.report-button {
  display: flex;
  margin-right: 20px;
}

.filter-controls {
  display: flex;
}

.header-label {
  font-size: 25px;
  text-decoration: underline;
  margin-bottom: 5px;
  display: inline-block;
  margin-top: 5px;
}

#login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

#lock {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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