@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove _all_ animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-play-state: paused !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  background: #0b3d91;
}
body.content {
  background: #ffffff;
}
body.modal {
  overflow: hidden;
}

header.login-header {
  height: 105px;
  background: #ffffff;
}
header.login-header .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 0 62px 0 0;
}

header.header {
  background: #ffffff;
}
header.header .top-navigation {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  border-bottom: 1px solid #eeeeee;
}
header.header .top-navigation .settings, header.header .top-navigation .logout {
  font-size: 15px;
}
header.header .top-navigation .settings a, header.header .top-navigation .logout a {
  color: #5f5f5f;
  text-decoration: none;
}
header.header .top-navigation .settings {
  border-right: 1px solid #eeeeee;
  padding: 9px 10px 6px 0;
  margin: 0 16px 0 0;
}
header.header .top-navigation .logout {
  padding: 9px 0 6px 4px;
  margin: 0 59px 0 0;
}
header.header .navigation {
  border-bottom: 1px solid #eeeeee;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header.header .navigation .menu ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 45px 0 0 39px;
}
header.header .navigation .menu ul li {
  font-size: 18px;
  text-transform: uppercase;
  margin-right: 37px;
}
header.header .navigation .menu ul li a {
  color: #333333;
  text-decoration: none;
}
header.header .navigation .menu ul li.active a {
  color: #0b3d91;
}
header.header .navigation .logo {
  margin: 0 59px 23px 0;
}

.main {
  background: #ffffff;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}
.main h1 {
  font-size: 32px;
  font-weight: bold;
  color: #0b3d91;
  text-transform: uppercase;
  padding: 42px 0 39px 0;
}
.main .actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.main .actions .buttons {
  display: flex;
  flex-direction: row;
}
.main .actions .buttons .create {
  width: 300px;
  margin-right: 10px;
}
.main .actions .buttons .import {
  width: 200px;
}
.main .actions .search {
  width: 260px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  border: 1px solid #a3a3a3;
  width: 260px;
  height: 42px;
  background: #ffffff;
  margin: 15px 0 0 0;
}
.main .actions .search img {
  width: 20px;
  height: 20px;
  margin: 10px 0 0 9px;
}
.main .actions .search input {
  width: calc(100% - 16px);
  height: 40px;
  border: none;
  outline: none;
  font-size: 16px;
  margin-left: 16px;
}

footer {
  height: 170px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #222222;
}
footer .wrapper {
  margin: 0 0 0 45px;
}
footer .wrapper .headline {
  color: #ffffff;
  font-weight: bold;
  margin: 42px 0 0 0;
}
footer .wrapper .content {
  line-height: 26px;
  margin-top: 12px;
}
footer .wrapper .content a {
  color: #a3a3a3;
  text-decoration: none;
}

.input-text {
  position: relative;
  display: flex;
  transition: 0.1s ease-out;
  padding: 8px;
  color: #5f5f5f;
  cursor: text;
  flex-direction: row;
  background-color: #fff;
  border: 1px solid #a3a3a3;
}
.input-text ~ .error-message {
  display: none;
}
.input-text.error {
  border: 1px #e80004 solid !important;
}
.input-text.error ~ .error-message {
  display: block;
  font-size: 10px;
  color: #e80004;
  font-weight: bold;
}
.input-text .input-text__text {
  width: 100%;
  margin-top: 11px;
  margin-left: 8px;
  border: 0;
  color: #222;
  box-shadow: none;
  background-color: inherit;
  outline: none;
}
.input-text .input-text__label {
  display: block;
  position: absolute;
  top: 24px;
  left: 18px;
  transition: 0.1s ease-out;
  color: #5f5f5f;
}
.input-text .input-text__icon {
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 20px;
  height: 20px;
}
.input-text .input-text__icon svg {
  width: 20px;
  height: 20px;
  fill: #a3a3a3;
}
.input-text.input-text--focus {
  border-color: #0b3d91;
}
.input-text.input-text--focus .input-text__label {
  color: #0b3d91 !important;
}
.input-text.input-text--filled .input-text__label {
  top: 8px;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
}

.btn {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0);
  width: 100%;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  padding: 17px 24px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.5px;
  color: #fff;
  background-color: #0b3d91;
  border-color: #0b3d91;
  cursor: pointer;
}
.btn:hover {
  color: #fff;
  background-color: #082e6e;
  border-color: #082e6e;
}
.btn.width-300 {
  width: 300px;
}

.btn.secondary {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #0b3d91;
  width: 100%;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  padding: 17px 24px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.5px;
  color: #0b3d91;
  background-color: #fff;
  cursor: pointer;
}
.btn.secondary:hover {
  color: #fff;
  background-color: #082e6e;
}

.dropdown {
  position: relative;
  height: 55px;
}
.dropdown ~ .error-message {
  display: none;
}
.dropdown.error .dropdown__wrapper {
  border: 1px #e80004 solid !important;
}
.dropdown.error ~ .error-message {
  display: block;
  font-size: 10px;
  color: #e80004;
  margin-top: 3px;
  font-weight: bold;
}
.dropdown .dropdown__wrapper {
  background-color: #fff;
  border: 1px solid #a3a3a3;
  position: absolute;
  width: 100%;
}
.dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle {
  color: #5f5f5f;
  display: flex;
  flex-direction: row;
  line-height: 1;
  padding: 9px 16px 7px;
  width: 100%;
  height: 53px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  margin: 0;
  overflow: visible;
  outline: none;
  justify-content: space-between;
}
.dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  line-height: 40px;
  text-align: left;
}
.dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__icon {
  width: 24px;
  height: 24px;
  margin-top: 4px;
}
.dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__icon svg {
  width: 24px;
  height: 24px;
  fill: #5f5f5f;
}
.dropdown .dropdown__wrapper .dropdown__content {
  display: none;
  flex-direction: column;
  border: 1px solid #fff;
  top: 40px;
  width: 100%;
}
.dropdown .dropdown__wrapper .dropdown__content .dropdown__list {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  background-image: linear-gradient(to top, #fff 100%, #fff0 100%), linear-gradient(to bottom, #fff 100%, #fff0 100%);
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
}
.dropdown .dropdown__wrapper .dropdown__content .dropdown__list .dropdown__select {
  display: none;
}
.dropdown .dropdown__wrapper .dropdown__content .dropdown__list .dropdown__option {
  font-size: 14px;
  line-height: 21px;
  margin: 8px 0 7px;
  user-select: none;
  transition: 0.1s ease-out;
  color: #5f5f5f;
  cursor: pointer;
  padding: 0 0.25rem 0.25rem 1rem;
}
.dropdown .dropdown__wrapper .dropdown__content .dropdown__list .dropdown__option:hover {
  color: #222;
}
.dropdown .dropdown__wrapper.dropdown--is-open {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14), 0 1px 2px rgba(0, 0, 0, 0.14);
  border-color: #0000;
  z-index: 1;
}
.dropdown .dropdown__wrapper.dropdown--is-open .dropdown_button .dropdown_toggle {
  color: #222;
}
.dropdown .dropdown__wrapper.dropdown--is-open .dropdown__content {
  display: flex;
}

.checkbox {
  align-items: center;
  color: #5f5f5f;
  cursor: pointer;
  display: flex;
  position: relative;
}
.checkbox:hover .checkbox__box-outline {
  border: 2px solid #0b3d91;
}
.checkbox .checkbox__input {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.checkbox .checkbox__input:checked ~ .checkbox__box-outline {
  border: 2px solid #0b3d91;
  background-color: #0b3d91;
}
.checkbox .checkbox__box-outline {
  background-color: #fff;
  height: 18px;
  width: 18px;
  align-self: start;
  border: 1px solid #a3a3a3;
  flex-shrink: 0;
  margin: 8px 8px 8px 0;
  position: relative;
  transition: 0.1s ease-out;
}
.checkbox .checkbox__box-outline .checkbox__tick-outline {
  height: 0.8rem;
  width: 0.4rem;
  border: solid #fff;
  border-width: 0 0.1rem 0.1rem 0;
  bottom: 0.16rem;
  display: block;
  left: 4px;
  position: absolute;
  transform: rotate(45deg);
}
.checkbox .checkbox__label {
  font-size: 16px;
  color: #343434;
  line-height: 1.3125rem;
  margin: 8px 0 7px 2px;
  user-select: none;
  transition: 0.1s ease-out;
}

.radio-buttons {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
}
.radio-buttons .radio-button {
  color: #5f5f5f;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0 8px 8px 24px;
  flex: 0 0 auto;
}
.radio-buttons .radio-button:first-of-type {
  margin: 0 8px 8px 0;
}
.radio-buttons .radio-button:hover .radio-button__box-outline {
  border: 2px solid #0b3d91;
}
.radio-buttons .radio-button:hover .radio-button__label {
  color: #222;
}
.radio-buttons .radio-button .radio-button__input {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.radio-buttons .radio-button .radio-button__input:checked ~ .radio-button__box-outline {
  background-color: #0b3d91;
  border: 2px solid #0b3d91;
}
.radio-buttons .radio-button .radio-button__box-outline {
  height: 1.125rem;
  width: 1.125rem;
  align-self: start;
  border: 1px solid #a3a3a3;
  flex-shrink: 0;
  margin: 8px 8px 8px 0;
  position: relative;
  transition: 0.1s ease-out;
  border-radius: 50%;
  background-color: #fff;
}
.radio-buttons .radio-button .radio-button__label {
  font-size: 16px;
  color: #343434;
  line-height: 1.3125rem;
  margin: 8px 0 7px 2px;
  user-select: none;
  transition: 0.1s ease-out;
}

.password-box {
  width: 100%;
  position: relative;
  padding: 8px;
  color: #5f5f5f;
  cursor: no-drop;
  background-color: #f2f2f2;
  margin-bottom: 16px;
  border: 1px solid #a3a3a3;
  box-shadow: none;
  height: 54px;
}
.password-box .title {
  display: block;
  position: absolute;
  top: 8px;
  left: 18px;
  color: #5f5f5f;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
}
.password-box .circles {
  display: flex;
  flex-direction: row;
  margin-top: 24px;
  margin-left: 11px;
}
.password-box .circles .circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5f5f5f;
  margin-right: 5px;
}

.text-readonly {
  text-readonly: 100%;
  position: relative;
  padding: 8px;
  color: #5f5f5f;
  cursor: no-drop;
  background-color: #f2f2f2;
  border: 1px solid #a3a3a3;
  box-shadow: none;
  height: 54px;
}
.text-readonly .title {
  display: block;
  position: absolute;
  top: 8px;
  left: 18px;
  color: #5f5f5f;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
}
.text-readonly .content {
  margin-top: 14px;
  margin-left: 10px;
}

.textarea {
  width: 100%;
  box-shadow: none;
  position: relative;
  display: block;
  transition: 0.1s ease-out;
  padding: 0.5rem;
  color: #5f5f5f;
  cursor: text;
  flex-direction: row;
  background-color: #fff;
  border: 1px #a3a3a3 solid;
}
.textarea ~ .error-message {
  display: none;
}
.textarea.error {
  border: 1px #e80004 solid !important;
}
.textarea.error ~ .error-message {
  display: block;
  font-size: 10px;
  color: #e80004;
  font-weight: bold;
}
.textarea .textarea__text {
  width: 100%;
  margin-top: 11px;
  margin-left: 8px;
  border: 0;
  color: #222;
  box-shadow: none;
  background-color: inherit;
  outline: none;
  resize: none;
}
.textarea .textarea__label {
  display: block;
  position: absolute;
  top: 24px;
  left: 18px;
  transition: 0.1s ease-out;
  color: #5f5f5f;
}
.textarea.textarea--focus {
  border-color: #0b3d91;
}
.textarea.textarea--focus .textarea__label {
  color: #0b3d91 !important;
}
.textarea.textarea--filled .textarea__label {
  top: 8px;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
}

.data-table .head {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #dadada;
}
.data-table .head .col {
  display: flex;
  flex-direction: row;
  padding: 47px 0 7px 0;
}
.data-table .head .col .label {
  font-size: 16px;
  font-weight: bold;
  color: #5f5f5f;
  cursor: pointer;
}
.data-table .head .col .sort {
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  cursor: pointer;
  margin: 0 0 0 9px;
}
.data-table .head .col .sort .up, .data-table .head .col .sort .down {
  width: 14px;
  height: 12px;
}
.data-table .head .col .sort .up svg, .data-table .head .col .sort .down svg {
  fill: #a3a3a3;
}
.data-table .head .col .sort .up {
  margin: -5px 0 0 0;
}
.data-table .head .col .sort.up .up svg {
  fill: #333333;
}
.data-table .head .col .sort.up .down svg {
  fill: #ffffff;
}
.data-table .head .col .sort.down .up svg {
  fill: #ffffff;
}
.data-table .head .col .sort.down .down svg {
  fill: #333333;
}
.data-table .body {
  margin-bottom: 140px;
}
.data-table .body .row {
  height: 110px;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #dadada;
  overflow: hidden;
}
.data-table .body .row.hidden {
  display: none;
}
.data-table .body .row .col {
  font-size: 16px;
  color: #5f5f5f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
  line-height: 28px;
}

.context-menu {
  position: absolute;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.16);
  padding: 9px 0;
  min-width: 227px;
  transform-origin: top right;
  transform: scale(0.2);
  transition: all 0.15s ease-out;
}
.context-menu.show {
  transform: scale(1);
}
.context-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.context-menu ul li .menu-item {
  font-size: 15px;
  color: #5f5f5f;
  padding: 10px 0 10px 20px;
  cursor: pointer;
}
.context-menu ul li .menu-item.disabled {
  color: #a3a3a3;
  cursor: no-drop;
}
.context-menu ul li .menu-item:hover {
  background: #eeeeee;
}

.confirm-dialog {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.confirm-dialog.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.confirm-dialog.show .confirm-dialog-container {
  transform: translateY(0);
}
.confirm-dialog .confirm-dialog-container {
  position: relative;
  box-sizing: border-box;
  width: 700px;
  padding: 34px 40px 50px 40px;
  background: #ffffff;
  transform: translateY(-40px);
  transition-property: transform;
  transition-duration: 0.3s;
}
.confirm-dialog .confirm-dialog-container h2 {
  color: #0b3d91;
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 28px 0;
  padding: 0;
}
.confirm-dialog .confirm-dialog-container p {
  font-size: 16px;
  color: #333333;
  line-height: 28px;
  margin: 0 0 48px 0;
}
.confirm-dialog .confirm-dialog-container .buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.confirm-dialog .confirm-dialog-container .buttons .btn {
  margin-right: 40px;
}
.confirm-dialog .confirm-dialog-container .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 60px;
  cursor: pointer;
}
.confirm-dialog .confirm-dialog-container .close img {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 52px;
}

.month-picker {
  display: none;
  position: absolute;
  width: 300px;
  height: 338px;
  background-color: #ffffff;
  box-shadow: 2px 0px 8px -3px #000000;
  user-select: none;
}
.month-picker .default .header {
  padding: 5px 0px 19px 15px;
  box-sizing: border-box;
  background-color: #0b3d91;
}
.month-picker .default .header .year {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 6px;
  cursor: pointer;
}
.month-picker .default .header .month {
  font-size: 34px;
  color: #ffffff;
}
.month-picker .default .navigation {
  display: flex;
  flex-direction: row;
  margin-top: 6px;
  color: #333;
}
.month-picker .default .navigation .left {
  width: 36px;
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  margin-left: 30px;
  cursor: pointer;
}
.month-picker .default .navigation .left.disabled {
  cursor: no-drop;
}
.month-picker .default .navigation .left.disabled svg {
  fill: #ccc;
}
.month-picker .default .navigation .left svg {
  margin: 6px 0 0 6px;
  transform: rotate(90deg);
}
.month-picker .default .navigation .center {
  flex: 1;
  text-align: center;
  font-weight: bold;
}
.month-picker .default .navigation .center .center-year {
  display: inline-block;
  cursor: pointer;
  margin-top: 6px;
}
.month-picker .default .navigation .right {
  width: 36px;
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  margin-right: 30px;
  cursor: pointer;
}
.month-picker .default .navigation .right.disabled {
  cursor: no-drop;
}
.month-picker .default .navigation .right.disabled svg {
  fill: #ccc;
}
.month-picker .default .navigation .right svg {
  margin: 6px 0 0 6px;
  transform: rotate(-90deg);
}
.month-picker .default .months {
  margin-top: 11px;
}
.month-picker .default .months .row {
  display: flex;
  flex-direction: row;
  padding: 0 8px;
}
.month-picker .default .months .row .col {
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  color: #333;
  padding: 12px 0;
  cursor: pointer;
  font-size: 12px;
  border: 1px solid transparent;
}
.month-picker .default .months .row .col:hover {
  background-color: #eee;
}
.month-picker .default .months .row .col.active {
  border: 1px solid #0b3d91;
}
.month-picker .years {
  display: none;
  height: 100%;
}
.month-picker .years .wrapper {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
.month-picker .years .wrapper .year {
  font-size: 12px;
  padding: 11px 0;
  text-align: center;
  cursor: pointer;
}
.month-picker .years .wrapper .year:hover {
  background-color: #eee;
}
.hint {
  position: relative;
}
.hint .icon {
  border: 2px solid #5f5f5f;
  color: #5f5f5f;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 23px;
  font-weight: bold;
  cursor: pointer;
  margin: 14px 0 0 16px;
}
.hint .explanation {
  display: none;
  position: absolute;
  top: 31px;
  left: 17px;
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.16);
  min-width: 450px;
  max-width: 450px;
  padding: 16px 20px 16px 20px;
  color: #5f5f5f;
  z-index: 100;
}
.hint .explanation.show {
  display: block;
}

.login-dialog {
  max-width: 460px;
  width: 460px;
  min-width: 460px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
}
.login-dialog .wrapper h1 {
  color: #0b3d91;
  font-weight: bold;
  font-size: 32px;
}
.login-dialog .wrapper h2 {
  color: #333333;
  font-weight: bold;
  font-size: 18px;
  margin: 26px 0 0 0;
}
.login-dialog .wrapper .email {
  margin: 17px 0 16px 0;
}
.login-dialog .wrapper .password {
  margin: 3px 0 16px 0;
}
.login-dialog .wrapper .error {
  color: #e80004;
  font-size: 16px;
  display: none;
}
.login-dialog .wrapper .login-button {
  margin: 4px 0 0 0;
}
.login-dialog .wrapper .forgot {
  font-size: 14px;
  color: #5f5f5f;
  line-height: 16px;
  margin: 20px 0 0 0;
}

.usersettings-form .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.usersettings-form .row .col-label {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  font-size: 16px;
  color: #5f5f5f;
}
.usersettings-form .row .col-inputs {
  width: 450px;
  min-width: 450px;
  max-width: 450px;
}
.usersettings-form .row .col-inputs .col-input {
  margin-bottom: 16px;
}
.usersettings-form .row .col-inputs .col-input:last-of-type {
  margin-bottom: 0;
}
.usersettings-form .row .col-inputs .input-header {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 16px;
}
.usersettings-form .row .col-inputs .input-header:first-of-type {
  margin-top: 0;
}
.usersettings-form .row .col-hints {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
.usersettings-form .row-submit {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
}
.usersettings-form .row-submit .button {
  width: 300px;
  margin-right: 40px;
}

.search-langauge {
  display: flex;
  flex-direction: row;
}
.search-langauge .search {
  width: 260px;
}
.search-langauge .warehouse-language {
  margin-left: 21px;
  width: 260px;
  padding: 15px 0 0 0;
}
.search-langauge .warehouse-language .dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle {
  height: 40px;
}
.search-langauge .warehouse-language .dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__title {
  line-height: 22px;
}
.search-langauge .warehouse-language .dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__title .warehouse-count {
  color: #949494;
}
.search-langauge .warehouse-language .dropdown .dropdown__wrapper .dropdown__button .dropdown__toggle .dropdown__icon {
  margin-top: 0;
}
.search-langauge .warehouse-language .dropdown .dropdown__wrapper .dropdown__content .dropdown__list .dropdown__option .warehouse-count {
  color: #949494;
}

.data-table.warehouses .head .col:nth-child(1),
.data-table.warehouses .body .col:nth-child(1) {
  width: 9.3%;
  padding-left: 18px;
}
.data-table.warehouses .head .col:nth-child(2),
.data-table.warehouses .body .col:nth-child(2) {
  width: 9.3%;
}
.data-table.warehouses .head .col:nth-child(3),
.data-table.warehouses .body .col:nth-child(3) {
  width: 29%;
}
.data-table.warehouses .head .col:nth-child(4),
.data-table.warehouses .body .col:nth-child(4) {
  width: 15.4%;
}
.data-table.warehouses .head .col:nth-child(5),
.data-table.warehouses .body .col:nth-child(5) {
  width: 15.4%;
}
.data-table.warehouses .head .col:nth-child(6),
.data-table.warehouses .body .col:nth-child(6) {
  width: 14.4%;
}
.data-table.warehouses .head .col:nth-child(7),
.data-table.warehouses .body .col:nth-child(7) {
  width: 7.2%;
}
.data-table.warehouses .head .col:nth-child(7) .edit,
.data-table.warehouses .body .col:nth-child(7) .edit {
  width: 34px;
  height: 75px;
  cursor: pointer;
}
.data-table.warehouses .head .col:nth-child(7) .edit img,
.data-table.warehouses .body .col:nth-child(7) .edit img {
  width: 25px;
  transform: rotate(90deg);
  margin: 20px 0 0 4px;
}
.data-table.warehouses .head .state-icon,
.data-table.warehouses .body .state-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: help;
}
.data-table.warehouses .head .state-icon.draft,
.data-table.warehouses .body .state-icon.draft {
  background: #f9ba3c;
}
.data-table.warehouses .head .state-icon.active,
.data-table.warehouses .body .state-icon.active {
  background: #77c649;
}
.data-table.warehouses .head .state-icon.archive,
.data-table.warehouses .body .state-icon.archive {
  background: #a3a3a3;
}
.data-table.warehouses .head .state-icon.planned,
.data-table.warehouses .body .state-icon.planned {
  background: #317ccb;
}
.data-table.warehouses .head .state-icon .state-text,
.data-table.warehouses .body .state-icon .state-text {
  display: none;
}

.warehouse-form .mandatory {
  margin-bottom: 28px;
  color: #5f5f5f;
}
.warehouse-form .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.warehouse-form .row.space-top {
  margin-top: 33px;
}
.warehouse-form .row .col-label {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  font-size: 16px;
  color: #5f5f5f;
}
.warehouse-form .row .col-inputs {
  width: 450px;
  min-width: 450px;
  max-width: 450px;
}
.warehouse-form .row .col-inputs.two-column {
  width: 940px;
  min-width: 940px;
  max-width: 940px;
}
.warehouse-form .row .col-inputs .col-input {
  margin-bottom: 16px;
}
.warehouse-form .row .col-inputs .col-input:last-of-type {
  margin-bottom: 0;
}
.warehouse-form .row .col-inputs .col-input.two-column {
  display: flex;
  flex-direction: row;
}
.warehouse-form .row .col-inputs .col-input .date-month {
  display: flex;
  flex-direction: row;
}
.warehouse-form .row .col-inputs .col-input .date-month .icon {
  width: 24px;
  height: 24px;
  margin-top: 7px;
  margin-left: 10px;
  cursor: pointer;
}
.warehouse-form .row .col-inputs .col-input .date-month .icon svg {
  fill: #0b3d91;
}
.warehouse-form .row .col-inputs .col-input .date-month .selected-month {
  margin: 12px 0 0 8px;
  color: #343434;
}
.warehouse-form .row .col-inputs .col-left {
  width: 450px;
  margin-right: 40px;
}
.warehouse-form .row .col-inputs .col-left .warehouse-image {
  border: 1px solid #a3a3a3;
}
.warehouse-form .row .col-inputs .col-left .warehouse-image img {
  width: 448px;
  height: auto;
}
.warehouse-form .row .col-inputs .col-right {
  width: 450px;
}
.warehouse-form .row .col-inputs .col-right #select-image {
  margin-top: 72px;
}
.warehouse-form .row .col-inputs .input-header {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 16px;
}
.warehouse-form .row .col-inputs .input-header:first-of-type {
  margin-top: 0;
}
.warehouse-form .row .col-inputs .two-cols {
  display: flex;
  flex-direction: row;
}
.warehouse-form .row .col-inputs .two-cols .col {
  flex: 1;
}
.warehouse-form .row .col-hints {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
.warehouse-form .row-submit {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
}
.warehouse-form .row-submit .button {
  width: 300px;
  margin-right: 40px;
}

.image-dialog {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.image-dialog.pre-show {
  display: flex;
}
.image-dialog.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.image-dialog.show .image-dialog-container {
  transform: translateY(0);
}
.image-dialog .image-dialog-container {
  position: relative;
  box-sizing: border-box;
  width: 760px;
  padding: 34px 40px 50px 40px;
  background: #ffffff;
  transform: translateY(-40px);
  transition-property: transform;
  transition-duration: 0.3s;
}
.image-dialog .image-dialog-container h2 {
  color: #0b3d91;
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 28px 0;
  padding: 0;
}
.image-dialog .image-dialog-container .images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-height: 375px;
  margin-bottom: 40px;
  overflow-y: auto;
}
.image-dialog .image-dialog-container .images .image {
  width: 306px;
  margin: 0 40px 40px 0;
  cursor: pointer;
  border: 4px solid #ffffff;
}
.image-dialog .image-dialog-container .images .image:nth-child(2n) {
  margin-right: 0;
}
.image-dialog .image-dialog-container .images .image.selected {
  border-color: #f9ba3c;
}
.image-dialog .image-dialog-container .images .image img {
  width: 100%;
  height: auto;
}
.image-dialog .image-dialog-container .buttons {
  display: flex;
  flex-direction: row;
  padding: 0 0 0 4px;
}
.image-dialog .image-dialog-container .buttons .btn {
  margin-right: 40px;
  width: 250px;
}
.image-dialog .image-dialog-container .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 60px;
  cursor: pointer;
}
.image-dialog .image-dialog-container .close img {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 52px;
}

.data-table.users .head .col:nth-child(1),
.data-table.users .body .col:nth-child(1) {
  width: 18%;
  padding-left: 40px;
}
.data-table.users .head .col:nth-child(2),
.data-table.users .body .col:nth-child(2) {
  width: 14.5%;
}
.data-table.users .head .col:nth-child(3),
.data-table.users .body .col:nth-child(3) {
  width: 28%;
}
.data-table.users .head .col:nth-child(4),
.data-table.users .body .col:nth-child(4) {
  width: 19%;
}
.data-table.users .head .col:nth-child(5),
.data-table.users .body .col:nth-child(5) {
  width: 13%;
}
.data-table.users .head .col:nth-child(6),
.data-table.users .body .col:nth-child(6) {
  width: 7.5%;
}
.data-table.users .head .col:nth-child(6) .edit,
.data-table.users .body .col:nth-child(6) .edit {
  width: 34px;
  height: 75px;
  cursor: pointer;
}
.data-table.users .head .col:nth-child(6) .edit img,
.data-table.users .body .col:nth-child(6) .edit img {
  width: 25px;
  transform: rotate(90deg);
  margin: 20px 0 0 4px;
}

.user-form .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.user-form .row .col-label {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  font-size: 16px;
  color: #5f5f5f;
}
.user-form .row .col-inputs {
  width: 450px;
  min-width: 450px;
  max-width: 450px;
}
.user-form .row .col-inputs .col-input {
  margin-bottom: 16px;
}
.user-form .row .col-inputs .col-input:last-of-type {
  margin-bottom: 0;
}
.user-form .row .col-inputs .col-input .generate-password {
  margin: 0;
  padding: 0;
  font-size: 14px;
  text-decoration: underline;
  text-align: right;
  color: #0b3d91;
  cursor: pointer;
}
.user-form .row .col-inputs .input-header {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  margin-top: 16px;
}
.user-form .row .col-inputs .input-header:first-of-type {
  margin-top: 0;
}
.user-form .row .col-inputs .two-cols {
  display: flex;
  flex-direction: row;
}
.user-form .row .col-inputs .two-cols .col {
  flex: 1;
}
.user-form .row .col-hints {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}
.user-form .row-submit {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
}
.user-form .row-submit .button {
  width: 300px;
  margin-right: 40px;
}

.preview-dialog {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preview-dialog.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.preview-dialog.show .preview-dialog-container {
  transform: translateY(0);
}
.preview-dialog .preview-dialog-container {
  position: relative;
  box-sizing: border-box;
  width: 850px;
  padding: 34px 40px 50px 40px;
  background: #ffffff;
  transform: translateY(-40px);
  transition-property: transform;
  transition-duration: 0.3s;
}
.preview-dialog .preview-dialog-container .preview-iframe-wrapper {
  width: 753px;
  height: 400px;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.preview-dialog .preview-dialog-container .preview-iframe-wrapper .preview-iframe {
  width: 1048px;
  border: 0;
  transform: scale(0.7);
  transform-origin: 0 0;
}
.preview-dialog .preview-dialog-container .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 60px;
  cursor: pointer;
}
.preview-dialog .preview-dialog-container .close img {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 52px;
}

.preview-wrapper {
  max-width: 1048px;
  min-width: 1048px;
  width: 1048px;
  background: #ffffff;
}
.preview-wrapper .top {
  color: #f9ba3c;
  background-color: #0b3d91;
  border-top: 10px solid #f9ba3c;
  padding: 20px 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.preview-wrapper .top .title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.preview-wrapper .top .number {
  font-size: 20px;
}
.preview-wrapper .image {
  position: relative;
}
.preview-wrapper .image img {
  width: 100%;
  height: auto;
}
.preview-wrapper .image .caption {
  background-color: #0058a2bf;
  border-top: 6px solid #fbba00;
  bottom: -20px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 80px);
}
.preview-wrapper .image .caption .caption-top {
  color: #fbba00;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 30px 10px 30px;
  text-transform: uppercase;
}
.preview-wrapper .image .caption .caption-middle {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  padding: 0 30px;
  text-transform: uppercase;
}
.preview-wrapper .image .caption .caption-pre-bottom {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 10px 30px 15px 30px;
  text-transform: uppercase;
}
.preview-wrapper .image .caption .caption-bottom {
  background-color: #fbba00;
  color: #0058a2;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 30px;
  text-transform: uppercase;
}
.preview-wrapper .description {
  background-color: #d8d8d8;
  padding: 60px 55px 40px 55px;
}
.preview-wrapper .description .block {
  margin-bottom: 20px;
}
.preview-wrapper .description .block .title {
  color: #0058a2;
  font-size: 18px;
  line-height: 40px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: bold;
}
.preview-wrapper .description .block ul {
  list-style: none inside;
  margin: 0;
  margin-top: -0.8em;
  padding-left: 1.6em;
}
.preview-wrapper .description .block ul li {
  font-size: 18px;
  line-height: 28px;
}
.preview-wrapper .description .block ul li:before {
  color: #0058a2;
  content: "■";
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  margin-left: -0.8em;
  padding-right: 0.3em;
  position: relative;
  top: -1px;
  width: 0.8em;
}
.preview-wrapper .description .address {
  font-size: 18px;
  margin-bottom: 2.5em;
  margin-top: 50px;
  line-height: 28px;
}

.data-table.images .head .col:nth-child(1),
.data-table.images .body .col:nth-child(1) {
  width: 35%;
  padding-left: 40px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.data-table.images .head .col:nth-child(2),
.data-table.images .body .col:nth-child(2) {
  width: 13%;
}
.data-table.images .head .col:nth-child(2) img,
.data-table.images .body .col:nth-child(2) img {
  height: 89px;
  width: 116px;
}
.data-table.images .head .col:nth-child(3),
.data-table.images .body .col:nth-child(3) {
  width: 47%;
}
.data-table.images .head .col:nth-child(4),
.data-table.images .body .col:nth-child(4) {
  width: 5%;
}
.data-table.images .head .col:nth-child(4) .edit,
.data-table.images .body .col:nth-child(4) .edit {
  width: 34px;
  height: 75px;
  cursor: pointer;
}
.data-table.images .head .col:nth-child(4) .edit img,
.data-table.images .body .col:nth-child(4) .edit img {
  width: 25px;
  transform: rotate(90deg);
  margin: 20px 0 0 4px;
}

.language-dialog {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.language-dialog.pre-show {
  display: flex;
}
.language-dialog.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.language-dialog.show .image-dialog-container {
  transform: translateY(0);
}
.language-dialog .language-dialog-container {
  position: relative;
  box-sizing: border-box;
  width: 760px;
  padding: 34px 40px 50px 40px;
  background: #ffffff;
  transform: translateY(-40px);
  transition-property: transform;
  transition-duration: 0.3s;
}
.language-dialog .language-dialog-container h2 {
  color: #0b3d91;
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 28px 0;
  padding: 0;
}
.language-dialog .language-dialog-container .languages {
  max-height: 435px;
  overflow-x: hidden;
  overflow-y: scroll;
  margin-bottom: 40px;
}
.language-dialog .language-dialog-container .languages .input-header {
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 16px;
}
.language-dialog .language-dialog-container .languages .input-header:first-of-type {
  margin-top: 0;
}
.language-dialog .language-dialog-container .languages .two-cols {
  display: flex;
  flex-direction: row;
}
.language-dialog .language-dialog-container .languages .two-cols .col {
  flex: 1;
}
.language-dialog .language-dialog-container .buttons {
  display: flex;
  flex-direction: row;
  padding: 0 0 0 4px;
}
.language-dialog .language-dialog-container .buttons .btn {
  margin-right: 40px;
  width: 250px;
}
.language-dialog .language-dialog-container .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 60px;
  cursor: pointer;
}
.language-dialog .language-dialog-container .close img {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 52px;
}

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