@charset "UTF-8";
/******************************************
* Base CSS
******************************************/
.red {
  color: #f2645a;
}

.grey {
  color: #7d7d7d;
}

.grey-light {
  color: #ccc;
}

.white {
  color: #fff;
}

/********************
* Main HTML Elements
*********************/
html {
  overflow-y: scroll;
}

.main {
  min-height: 100%;
  position: relative;
  padding-bottom: 48px;
}

.content-wrapper {
  margin-left: 200px;
}

.content {
  margin: 72px 24px 24px;
}

/**************
* Placeholder
**************/
::-webkit-input-placeholder {
  color: #bbb;
}

:-moz-placeholder {
  color: #bbb;
}

::-moz-placeholder {
  color: #bbb;
}

:-ms-input-placeholder {
  color: #bbb;
}

/************************
* Include components
*************************/
.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.underline {
  text-decoration: underline;
}

.block-element {
  display: block;
}

.pointer {
  cursor: pointer;
}

.vertical-center {
  vertical-align: middle;
}

.centered-text {
  text-align: center;
}

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

.small-font {
  font-size: 0.8em;
}

.margin-top {
  margin-top: 40px;
}

.margin-top-double {
  margin-top: 80px;
}

.margin-top-half {
  margin-top: 20px;
}

.margin-left {
  margin-left: 40px;
}

.margin-left-half {
  margin-left: 20px;
}

.margin-right {
  margin-right: 40px;
}

.margin-right-half {
  margin-right: 20px;
}

.margin-bottom {
  margin-bottom: 40px;
}

.margin-bottom-half {
  margin-bottom: 20px;
}

.no-margin {
  margin: 0;
}

.strong {
  font-weight: 700;
}

.no-uppercase {
  text-transform: none;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #333;
}

h1 {
  font-size: 1.75rem;
  font-weight: 400;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
}

h3 {
  font-size: 1.25rem;
  font-weight: 400;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
}

a {
  color: #48A882;
  text-decoration: none;
}
a:hover {
  color: #76B07A;
}
a.nocolor {
  color: inherit;
}

.small-font {
  font-size: 0.75rem;
}

.space {
  margin: 24px 0;
}

.login-wrapper {
  background: none;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  width: 100vw;
  height: 100vh;
}
.login-container .left {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  align-self: auto;
  background-color: #fff;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 1023px) {
  .login-container .left {
    width: 50%;
  }
}
.login-container .left .login-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  align-self: auto;
  max-width: 500px;
  min-height: 100vh;
  background: #fff;
  height: auto;
  box-shadow: none;
  padding: 24px;
}
@media screen and (min-width: 767px) {
  .login-container .left .login-content {
    width: 66.6667%;
    padding: 48px;
  }
}
@media screen and (min-width: 1023px) {
  .login-container .left .login-content {
    padding: 24px;
  }
}
.login-container .left .login-content .inner {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: auto;
  margin-bottom: auto;
  flex-flow: row wrap;
  height: auto;
}
.login-container .left .login-content .inner .login-logo,
.login-container .left .login-content .inner .login-title {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: auto;
  margin-bottom: 48px;
}
.login-container .left .login-content .inner .login-logo img,
.login-container .left .login-content .inner .login-title img {
  width: 70px;
}
.login-container .left .login-content .inner .login-logo h1,
.login-container .left .login-content .inner .login-title h1 {
  font-size: 2.125rem;
  font-weight: 300;
}
.login-container .left .login-content .inner .form {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}
.login-container .left .login-content .inner .form .form-row {
  display: flex;
  flex-flow: column wrap;
  width: 100%;
  align-items: flex-start;
  margin-bottom: 24px;
  height: auto;
}
.login-container .left .login-content .inner .form .form-row.margin-bottom-double {
  margin-bottom: 48px;
}
.login-container .left .login-content .inner .form input[type=text],
.login-container .left .login-content .inner .form input[type=search],
.login-container .left .login-content .inner .form input[type=email],
.login-container .left .login-content .inner .form input[type=date],
.login-container .left .login-content .inner .form input[type=password],
.login-container .left .login-content .inner .form input[type=url],
.login-container .left .login-content .inner .form input[type=tel],
.login-container .left .login-content .inner .form textarea {
  margin: 0;
  border-radius: 2px;
  font-size: 1rem;
  padding: 10px 16px;
  width: 100%;
}
.login-container .left .login-content .inner .form label {
  font-size: 0.9em;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 8px;
}
.login-container .left .login-content .inner .form .btn {
  width: 100%;
  text-transform: none;
  letter-spacing: normal;
  border-radius: 2px;
  padding: 12px 32px;
}
.login-container .left .login-content .inner .form .lost-password-link-container {
  margin-top: 16px;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: center;
}
.login-container .left .login-content .inner .login-token {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.login-container .left .login-content .inner .login-token label span {
  display: block;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  margin-block-end: 1ch;
}
.login-container .left .login-content .inner .login-token input[name=token]:where([autocomplete=one-time-code]) {
  --otp-digits: 6;
  --otp-ls: 3ch;
  --otp-gap: 1.25;
  /* private consts */
  --_otp-bgsz: calc(var(--otp-ls) + 1ch);
  --_otp-digit: 0;
  width: auto;
  all: unset;
  background: linear-gradient(90deg, var(--otp-bg, #CCC) calc(var(--otp-gap) * var(--otp-ls)), transparent 0), linear-gradient(90deg, var(--otp-bg, #EEE) calc(var(--otp-gap) * var(--otp-ls)), transparent 0);
  background-position: calc(var(--_otp-digit) * var(--_otp-bgsz)) 0, 0 0;
  background-repeat: no-repeat, repeat-x;
  background-size: var(--_otp-bgsz) 100%;
  caret-color: var(--otp-cc, #222);
  caret-shape: block;
  clip-path: inset(0% calc(var(--otp-ls) / 2) 0% 0%);
  font-family: ui-monospace, monospace;
  font-size: var(--otp-fz, 1.8em);
  inline-size: calc(var(--otp-digits) * var(--_otp-bgsz));
  letter-spacing: var(--otp-ls);
  padding-block: var(--otp-pb, 1ch);
  padding-inline-start: calc((var(--otp-ls) - 1ch) / 1.8 * var(--otp-gap));
}
.login-container .left .login-content .inner .login-token label[for=trustdevice] {
  line-height: 1.4;
}
.login-container .login-failed {
  margin-bottom: 24px;
}
.login-container .login-failed h3 {
  color: #bf4f47;
  margin-bottom: 8px;
}
.login-container .login-failed p {
  color: #bf4f47;
  margin-bottom: 24px;
}
.login-container .right {
  width: 50%;
  position: fixed;
  right: 0;
  height: auto;
  background: linear-gradient(83deg, #76B07A 0%, #76B07A 50%, #48A882 100%);
}
@media screen and (min-width: 1023px) {
  .login-container .right {
    height: 100vh;
  }
}

.ie8 div.login-content {
  background-color: #444;
}

.login-input {
  border: 0;
  width: 66%;
  height: 36px;
  font-size: 1.2em;
  padding-left: 10px;
}

.topbar {
  position: fixed;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  height: 48px;
}
.topbar .topbar-content {
  position: relative;
  float: right;
  z-index: 100;
  background: transparent;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.topbar .topbar-content .topbar-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 calc(24px/2);
  height: 48px;
}
.topbar .topbar-content .topbar-box img {
  display: block;
}
.topbar .topbar-content .topbar-box img:hover {
  filter: invert(50%);
}
.topbar .topbar-content .topbar-box a {
  display: inline-block;
}
.topbar .topbar-content .topbar-box:last-child {
  padding-right: 0;
}
.topbar .topbar-content .topbar-switched-user {
  margin-right: 12px;
  padding: 4px 8px;
  color: #fff;
  background-color: #f2645a;
  border-radius: 2px;
}
.topbar .topbar-content .topbar-switched-user a {
  color: #ddd;
}
.topbar .topbar-content .topbar-switched-user a:hover {
  text-decoration: underline;
}
.topbar .loader {
  display: none;
}
.topbar .loader .balls {
  width: 4em;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.topbar .loader .balls div {
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  background-color: #76B07A;
}
.topbar .loader .balls div:nth-of-type(1) {
  transform: translateX(-100%);
  animation: left-swing 0.5s ease-in alternate infinite;
}
.topbar .loader .balls div:nth-of-type(3) {
  transform: translateX(-95%);
  animation: right-swing 0.5s ease-out alternate infinite;
}

@keyframes left-swing {
  50%, 100% {
    transform: translateX(95%);
  }
}
@keyframes right-swing {
  50% {
    transform: translateX(-95%);
  }
  100% {
    transform: translateX(100%);
  }
}
.headroom {
  will-change: transform;
  transition: transform 200ms linear;
}

.headroom--pinned {
  transform: translateY(0%);
}

.headroom--unpinned {
  transform: translateY(-100%);
}

.infomessage-container {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 50;
  height: 48px;
  padding: 12px 24px;
  margin-left: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.infomessage-container.info {
  color: #00529B;
  background-color: #BDE5F8;
}
.infomessage-container.success {
  color: #4F8A10;
  background-color: #DFF2BF;
}
.infomessage-container.warning {
  color: #9F6000;
  background-color: #FEEFB3;
}
.infomessage-container.error {
  color: #D8000C;
  background-color: #FFBABA;
}
.infomessage-container.loading {
  color: #76B07A;
  background-color: #f5f5f5;
}

.error-message {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
  padding: 6px;
  background-color: #f2645a;
  color: #fff;
}

.breadcrumbs {
  position: absolute;
  width: 100%;
  left: 200px;
  z-index: 40;
  height: 48px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumbs.transition {
  transition: 0.5s;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

/******************
 * Tabs           *
 ******************/
.tab-container {
  height: 37px;
  background-color: #fff;
  border-bottom: 2px solid #f2645a;
}

.tab {
  float: left;
  height: 35px;
  padding: 5px 20px;
  margin: 0 5px 0 0;
  color: #fff;
  background-color: #c5c5c5;
  cursor: pointer;
}

.tab:hover {
  background-color: #bf4f47;
}

.tab .tab-label {
  line-height: 25px;
  /*same as .tab height minus padding*/
}

.tab-selected {
  background-color: #bf4f47;
}

.tab-loader {
  display: none;
  width: 50px;
  height: 35px;
  background: url("/img/icons/ajax-loader.gif") no-repeat center center;
}

table.dataTable thead .sorting {
  background-image: url("/static/img/icons/sort_both.png");
}

table.dataTable thead .sorting_asc {
  background-image: url("/static/img/icons/sort_asc.png") !important;
}

table.dataTable thead .sorting_desc {
  background-image: url("/static/img/icons/sort_desc.png") !important;
}

table.dataTable thead .sorting_asc_disabled {
  background-image: url("/static/img/icons/sort_asc_disabled.png");
}

table.dataTable thead .sorting_desc_disabled {
  background-image: url("/static/img/icons/sort_desc_disabled.png");
}

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  background: #3d454d;
  color: #f9f9f9;
  border-radius: 6px;
  font-family: inherit;
  font-size: inherit;
  padding: 12px 48px;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
}
.btn:hover {
  background: #48A882;
}

.btn-lighter {
  background: #5d6975;
}

.btn-red-bg {
  background-color: #48A882;
}

.btn-grey-bg {
  background-color: #b0afb0;
}

.form input[type=text],
.form input[type=search],
.form input[type=email],
.form input[type=date],
.form input[type=number],
.form input[type=password],
.form textarea {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  outline: 0;
  background: #f2f2f2;
  border: 0;
  border-radius: 6px;
  margin: 0 0 16px;
  padding: 12px 2.2em 12px 8px;
}
.form input[type=text].full-width,
.form input[type=search].full-width,
.form input[type=email].full-width,
.form input[type=date].full-width,
.form input[type=number].full-width,
.form input[type=password].full-width,
.form textarea.full-width {
  width: 100%;
}
.form input[type=text]::placeholder,
.form input[type=search]::placeholder,
.form input[type=email]::placeholder,
.form input[type=date]::placeholder,
.form input[type=number]::placeholder,
.form input[type=password]::placeholder,
.form textarea::placeholder {
  color: #777777;
}
.form.form-invers input[type=text],
.form.form-invers input[type=email],
.form.form-invers input[type=date],
.form.form-invers input[type=password],
.form.form-invers textarea {
  background: #ffffff;
}
.form select.full-width {
  width: 100%;
}
.form .show-inner-icon {
  position: relative;
}
.form .show-inner-icon i {
  position: absolute;
  right: 0.55em;
  top: 0.55em;
  padding: 1em;
  pointer-events: none;
  background: url("/static/img/checkmark.svg") no-repeat;
}

.user-edit-email .validation-field.ok {
  background: url("/static/img/icons/check.svg") #f2f2f2 no-repeat right 4px bottom 10px;
}
.user-edit-email .validation-field.failed {
  background: url("/static/img/icons/error.svg") #f2f2f2 no-repeat right 4px bottom 10px;
}

/***********
* Checkbox
************/
input[type=checkbox] + label {
  display: block;
  cursor: pointer;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label:before {
  content: "✓";
  border: 0.1em solid #999;
  border-radius: 0.1em;
  width: 1.2em;
  height: 1.2em;
  padding-left: 0.1em;
  margin-right: 0.2em;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
}

input[type=checkbox]:checked + label:before {
  background-color: #48A882;
  border-color: #48A882;
  color: #fff;
}

input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #76B07A;
}

input[type=checkbox]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #fff;
  border-color: #76B07A;
}

/****************
* Tables
*****************/
table th, table td {
  padding: 2px 10px 2px 0;
}

table {
  border-spacing: 0;
  margin-bottom: 30px;
}

.list-table {
  width: 100%;
}

.list-table th,
.list-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px #ddd solid;
}

.list-table th.no-border-padding,
.list-table td.no-border-padding {
  padding: 12px 8px 12px 0;
}

.list-table th {
  background-color: #e7e7e7;
  color: #909090;
  vertical-align: middle;
  height: 38px;
}

.list-table-preview-image-cell {
  width: 86px;
}

.list-table td {
  vertical-align: middle;
}

.list-table td.strong {
  font-weight: 700;
}

.list-table tr {
  cursor: pointer;
}

.list-table tr:hover {
  background-color: #f2f2f2;
}

.list-table tr .editicons {
  display: none;
}

.list-table tr:hover .editicons {
  display: inline;
}

.list-table tr.topOfTOPList {
  background-color: #bae7ba;
}

.list-table tr.topOfTOPList:hover {
  background-color: #aae7aa;
}

table tr.no-td-border td {
  border: 0;
}

.list-reloaded .pagination li {
  display: inline-block;
  background-color: #f5f5f5;
  margin-right: 6px;
}
.list-reloaded .pagination li.active {
  background-color: #76B07A;
}
.list-reloaded .pagination li.active a.page {
  color: #f9f9f9;
}
.list-reloaded .pagination li.active a.page:hover {
  cursor: pointer;
  background-color: #48A882;
}
.list-reloaded .pagination li a.page {
  padding: 12px;
  display: block;
}
.list-reloaded .pagination li a.page:hover {
  cursor: pointer;
  background-color: #e5e5e5;
}

.menu-button {
  width: 40px;
  margin: 4px;
  left: 10;
  z-index: 40;
  height: 48px;
  display: block;
  visibility: visible;
}
.menu-button label.hamburg {
  display: block;
  background: rgba(85, 85, 85, 0);
  width: 50px;
  height: 40px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
}
.menu-button .line {
  position: absolute;
  height: calc(40px / 10);
  width: 100%;
  background: #000;
  border-radius: 2px;
  display: block;
  transition: 0.5s;
  transform-origin: center;
}
.menu-button .line:nth-child(1) {
  top: calc((40px - 5 * calc(40px / 10)) / 2);
}
.menu-button .line:nth-child(2) {
  top: calc(calc((40px - 5 * calc(40px / 10)) / 2) + 2 * calc(40px / 10));
}
.menu-button .line:nth-child(3) {
  top: calc(calc((40px - 5 * calc(40px / 10)) / 2) + 4 * calc(40px / 10));
}
.menu-button .line:nth-child(1).open {
  transform: translateY(calc(48px / 6)) rotate(-45deg);
}
.menu-button .line:nth-child(2).open {
  opacity: 0;
}
.menu-button .line:nth-child(3).open {
  transform: translateY(calc((48px / 6) * -1)) rotate(45deg);
}

.sidemenu {
  display: flex;
  flex-direction: column;
  width: 200px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #f5f5f5;
  color: #b9bbbe;
  border-right: 1px solid #e5e5e5;
  z-index: 200;
}
.sidemenu.transition {
  transition: 0.5s;
}
.sidemenu .logo {
  width: 100%;
  margin: 8% auto 5% auto;
  text-align: center;
}
.sidemenu .logo img {
  width: 50%;
}
.sidemenu .title {
  font-size: 1.5rem;
  margin: 0 auto;
  text-align: center;
}
.sidemenu .entries {
  margin-top: 24px;
}
.sidemenu .entries .entry {
  height: 48px;
  border-bottom: 1px solid #e5e5e5;
}
.sidemenu .entries .entry:first-child {
  border-top: 1px solid #e5e5e5;
}
.sidemenu .entries .entry .icon {
  width: 24px;
  margin-right: 12px;
}
.sidemenu .entries .entry a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 24px;
  color: #3d454d;
}
.sidemenu .entries .entry a:hover {
  color: #48A882;
}
.sidemenu .entries .entry:hover {
  background-color: #e0e0e0;
}
.sidemenu .entries .entry.empty:hover {
  background-color: transparent;
}
.sidemenu .entries .entry.active {
  background-color: #e5e5e5;
}
.sidemenu .footer {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 32px;
  color: #999;
  font-size: 0.9rem;
  padding-left: 18px;
  border-top: 1px solid #e5e5e5;
}
.sidemenu .footer:hover {
  cursor: pointer;
  background-color: #e0e0e0;
}
.sidemenu .footer span.collapse-text {
  color: #333;
}

@media (min-width: 769px) {
  .menu-button {
    display: none;
  }

  .topbar-content .responsive-action {
    display: none !important;
  }

  .sidemenu {
    display: flex !important;
  }
  .sidemenu .responsive-topbar-actions {
    display: none;
  }

  body.collapsed .sidemenu {
    width: 48px;
  }
  body.collapsed .sidemenu .title {
    display: none;
  }
  body.collapsed .sidemenu .entries {
    margin-top: 0;
  }
  body.collapsed .sidemenu .entries .entry a {
    justify-content: center;
    padding: 0;
  }
  body.collapsed .sidemenu .entries .entry a .icon {
    margin: 0;
  }
  body.collapsed .sidemenu .entries .entry a .entry-text {
    display: none;
  }
  body.collapsed .sidemenu .logo {
    height: 37px;
    margin: 23% auto 1% auto;
  }
  body.collapsed .sidemenu .footer {
    margin-top: auto;
    display: flex;
  }
  body.collapsed .sidemenu .footer .collapse-text {
    display: none;
  }
  body.collapsed .content-wrapper {
    margin-left: 48px;
  }
  body.collapsed .breadcrumbs {
    left: 0;
    margin-left: 48px;
  }
  body.collapsed .infomessage-container {
    margin-left: 48px;
  }
}
@media (max-width: 768px) {
  .menu-button {
    display: block;
  }

  .topbar-content .desktop-action {
    display: none !important;
  }

  .sidemenu {
    display: none;
    right: 0;
    left: auto;
    margin-top: 48px;
    width: 200px;
    border-right: 1px solid #e5e5e5;
  }
  .sidemenu .logo {
    display: none;
  }
  .sidemenu .title {
    display: none;
  }
  .sidemenu .responsive-topbar-actions {
    display: flex;
    justify-content: space-evenly;
  }
  .sidemenu .responsive-topbar-actions .responsive-action img {
    height: 35px;
  }
  .sidemenu .footer {
    display: none;
  }

  .content-wrapper {
    margin-left: 0;
  }

  .content-wrapper {
    margin-left: 0;
  }

  .breadcrumbs {
    left: 0;
  }
}
/****************
* Block
*****************/
.block {
  width: 100%;
  padding: calc(24px / 2);
  border-radius: 6px;
  background-color: #f5f5f5;
  border: 1px solid #dee3ea;
}

.notfound {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem;
}
.notfound h1 {
  font-size: 7em;
  line-height: 1em;
}
.notfound h2 {
  font-size: 2.5em;
  line-height: 1em;
}

/********************
* Password validation
*********************/
#password-confirm-input[data-validated=true], #password-input[data-validated=true] {
  box-shadow: 0 0 5px green;
}

#password-strength-indicator-container {
  height: 5px;
  border-radius: 1rem;
  width: 100%;
  background-color: #f2f2f2;
}

#password-strength-indicator {
  height: 5px;
  border-radius: 1rem;
  background-color: red;
  width: 1rem;
  transition: all 1s;
}

.input-with-icon {
  white-space: nowrap;
  position: relative;
}
.input-with-icon > input[type=password], .input-with-icon input[type=text] {
  width: 100%;
  padding-right: 3em !important;
}

li[data-validated=false] {
  color: red;
  position: relative;
}

li[data-validated=false]::before {
  content: " ";
  background-image: url("/static/img/icons/error.svg");
  height: 1rem;
  width: 1rem;
  display: inline-block;
  background-size: cover;
  position: relative;
  top: 0.125rem;
  margin-right: 5px;
}

li[data-validated=true] {
  color: green;
  position: relative;
}

li[data-validated=true]::before {
  content: " ";
  background-image: url("/static/img/icons/check.svg");
  height: 1rem;
  width: 1rem;
  display: inline-block;
  background-size: cover;
  margin-right: 5px;
}

.password-visibility[data-visible=true] {
  background: url("/static/img/icons/visibility_off.svg");
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  right: 1rem;
  bottom: 0.5rem;
  cursor: pointer;
}

.password-visibility[data-visible=false] {
  background: url("/static/img/icons/visibility.svg");
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  right: 1rem;
  bottom: 0.5rem;
  cursor: pointer;
}

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