.active.svelte-1o2b5yq{opacity:1}
.active.svelte-1o2b5yq{opacity:1}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(../Roboto-Regular.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --primary: #1e88e5;
  --on-primary: white;
  --secondary: #d8701b;
  --on-secondary: black;
  --error: rgb(255, 0, 0);
  --on-error: white;
  --primary-transparent: #196eb917;
  --success: #28a745;
  --on-success: white;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100vh;
  min-width: 100%;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.margin, .input-checkbox, .input-group {
  margin-bottom: 1.5rem;
}

.container {
  box-sizing: content-box;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto;
  max-width: 50rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

hr {
  border-top: 1px solid rgb(128, 128, 128);
}

.btn-flat {
  position: relative;
  border: 0;
  margin: 0.3rem;
  padding: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.05s background-color linear;
  text-decoration: unset;
  text-align: center;
  align-items: flex-start;
  cursor: pointer;
  outline: none;
}

.btn, .modal .modal-action button {
  position: relative;
  border: 0;
  margin: 0.3rem;
  padding: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.05s background-color linear;
  text-decoration: unset;
  text-align: center;
  align-items: flex-start;
  cursor: pointer;
  outline: none;
}

.btn-primary {
  background: var(--primary) !important;
  color: var(--on-primary) !important;
}
.btn-primary:hover {
  filter: brightness(0.95);
}
.btn-primary:active {
  filter: brightness(1.05);
}

.btn-secondary {
  background: var(--secondary) !important;
  color: var(--on-secondary) !important;
}
.btn-secondary:hover {
  filter: brightness(0.95);
}
.btn-secondary:active {
  filter: brightness(1.05);
}

.btn-success {
  background: var(--success) !important;
  color: var(--on-success) !important;
}
.btn-success:hover {
  filter: brightness(0.95);
}
.btn-success:active {
  filter: brightness(1.05);
}

.btn-error {
  background: var(--error) !important;
  color: var(--on-error) !important;
}
.btn-error:hover {
  filter: brightness(0.95);
}
.btn-error:active {
  filter: brightness(1.05);
}

.btn-icon {
  background-color: unset !important;
  border: 0 !important;
  box-shadow: unset !important;
}
.btn-icon > svg {
  height: 1.5rem;
  width: 1.5rem;
}

.fab {
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0.5rem;
  line-height: 2rem;
  font-size: 2rem;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  border: none;
}
.fab > svg {
  height: 2rem;
  width: 2rem;
}

.fab-left {
  right: unset;
  left: 1.5rem;
}

.modal {
  padding: 1rem;
  margin: auto;
  max-width: 600px;
  min-width: 250px;
  width: calc(100% - 2rem);
  max-height: calc(100vh - 2rem);
  transform: translate(-50%, -50%);
  position: fixed;
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: growModalBox 0.2s linear;
}
.modal .modal-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.modal .modal-content {
  overflow-y: auto;
  max-height: calc(100vh - 10rem);
}
.modal .modal-action {
  margin-top: 0.5rem;
  display: flex;
}
.modal .modal-action :first-child {
  margin-left: auto;
}
@keyframes growModalBox {
  from {
    filter: opacity(0);
  }
  to {
    filter: opacity(1);
  }
}
.modal-hidden {
  display: none;
}

.inp, .input-group input {
  background: unset;
  border: 1px grey solid;
  padding: 0 0.5rem;
  height: 2rem;
  display: inline-block;
  min-width: 10rem;
  outline: none;
}
.inp:focus, .input-group input:focus {
  border-width: 1px;
  border-color: var(--primary);
}

textarea.inp {
  height: unset;
  min-height: 6rem !important;
  font-size: 1.1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
}
.input-group label {
  display: inline-block;
  margin-bottom: 0.3rem;
  margin-left: 0.5rem;
}

.input-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
}
.input-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.input-checkbox span {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  transition: background-color 0.2s;
}
.input-checkbox :hover input ~ span {
  background-color: #ccc;
}
.input-checkbox input:checked ~ span {
  background-color: var(--primary);
}
.input-checkbox span:after {
  content: "";
  position: absolute;
  display: none;
}
.input-checkbox input:checked ~ span:after {
  display: block;
}
.input-checkbox input[type=checkbox] + span:after {
  /* Style the checkmark/indicator */
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.input-checkbox input[type=radio] + span {
  border-radius: 50%;
}
.input-checkbox input[type=radio] + span:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
}

.list {
  padding: 0;
  list-style: none;
}
.list li {
  padding: 0.5rem;
}

.list-divider li:nth-child(n+2) {
  border-top: 1px solid rgb(128, 128, 128);
}

:root {
  --header-height: 4rem;
}

.header {
  background: var(--primary) !important;
  color: var(--on-primary) !important;
  display: flex;
  padding: 1rem;
}
.header > * {
  max-height: 2rem;
  margin: 0;
  background: var(--primary);
  color: var(--on-primary);
}
.header > *:not(:last-child) {
  margin-right: 1rem;
}
.header span {
  line-height: 1.5rem;
  font-size: 1.5rem;
  padding: 0.25rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header svg {
  height: 2rem;
  width: auto;
}
.header > a {
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.5rem;
  text-decoration: none;
}
.header > a:hover {
  filter: brightness(0.95);
}
.header > a:active {
  filter: brightness(1.05);
}

.card {
  padding: 1rem;
}

.table {
  border-collapse: collapse;
  width: 100%;
}
.table th,
.table td {
  text-align: left;
  padding: 8px;
}
.table tr:first-child {
  background-color: var(--primary);
  color: var(--on-primary);
}

::-webkit-scrollbar {
  margin-left: 4px;
}

::-webkit-scrollbar-track {
  background: rgba(127, 127, 127, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(127, 127, 127, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(127, 127, 127, 0.25);
}

::-webkit-scrollbar-thumb:active {
  background: rgba(127, 127, 127, 0.3);
}

:root {
   --primary: #1e88e5;
   --mdc-theme-primary: var(--primary);
   --mdc-theme-primary-bg: var(--mdc-theme--primary);
   --mdc-theme-on-primary: white;
   --error: #ff2f00;
   --border-color: #ababab;

   --default-font-size: 1.05rem;
}

* {
   font-family: "Roboto", "Helvetica", sans-serif;
}

html,
body {
   margin: 0;
   color: #636363;
   position: relative;
   background: #eee;
   height: 100%;
   font-size: var(--default-font-size);
   min-width: 100vw;
   min-height: 100vh;
   box-sizing: border-box;
}

.group {
   position: relative;
   margin-top: 2rem;
   margin-bottom: 24px;
   min-height: 45px;
}

.floating > input {
   font-size: 1.2rem;
   padding: 10px 10px 10px 5px;
   -moz-appearance: none;
        appearance: none;
   -webkit-appearance: none;
   display: block;
   background: #fafafa;
   background: unset;
   color: #636363;
   width: 100%;
   border: none;
   border-radius: 0;
   /* border-bottom: 1px solid #757575; */
   border-bottom: 1px solid var(--border-color);
   box-sizing: border-box;
}

.floating > input:focus {
   outline: none;
}

/* Label */

.floating > label {
   color: #999;
   font-size: 18px;
   font-weight: normal;
   position: absolute;
   pointer-events: none;
   left: 5px;
   top: 10px;
   transition: all 0.2s ease;
}

/* active */

.floating > input:focus ~ label,
.floating > input.used ~ label {
   top: -0.75em;
   transform: scale(0.75);
   left: -2px;
   /* font-size: 14px; */
   color: var(--primary);
   transform-origin: left;
}

/* Underline */

.bar {
   position: relative;
   display: block;
   width: 100%;
}

.bar:before,
.bar:after {
   content: "";
   height: 2px;
   width: 0;
   bottom: 1px;
   position: absolute;
   background: var(--primary);
   transition: all 0.2s ease;
}

.bar:before {
   left: 50%;
}

.bar:after {
   right: 50%;
}

/* active */

.floating > input:focus ~ .bar:before,
.floating > input:focus ~ .bar:after {
   width: 50%;
}

/* Highlight */

.highlight {
   position: absolute;
   height: 60%;
   width: 100px;
   top: 25%;
   left: 0;
   pointer-events: none;
   opacity: 0.5;
}

/* active */

.floating > input:focus ~ .highlight {
   animation: inputHighlighter 0.3s ease;
}

/* Animations */

@keyframes inputHighlighter {
   from {
      background: var(--primary);
   }

   to {
      width: 0;
      background: transparent;
   }
}

.btn {
   position: relative;

   display: block;
   margin: 2rem;
   padding: 0 1em;

   overflow: hidden;

   border-width: 0;
   outline: none;
   border-radius: 4px;
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);

   background-color: #cccccc;
   color: #ecf0f1;

   transition: background-color 0.3s;

   height: 48px;

   text-transform: uppercase;
   font-weight: 500;
   font-size: 1.2rem;
}

.btn:hover,
.btn:focus {
   filter: brightness(90%);
}

.btn > * {
   position: relative;
}

.btn span {
   display: block;
   padding: 12px 24px;
}

.btn:before {
   content: "";

   position: absolute;
   top: 50%;
   left: 50%;

   display: block;
   width: 0;
   padding-top: 0;

   border-radius: 100%;

   background-color: rgba(236, 240, 241, 0.3);
   transform: translate(-50%, -50%);
}

.btn:active:before {
   width: 120%;
   padding-top: 120%;

   transition: width 0.2s ease-out, padding-top 0.2s ease-out;
}

.btn-wide {
   width: 100%;
   margin: 0;
}

.loader_box {
   width: 64px;
   height: 64px;
   margin: auto;
}

.loader {
   display: inline-block;
   position: relative;
   z-index: 100;
}

.loader:after {
   content: " ";
   display: block;
   width: 46px;
   height: 46px;
   margin: 1px;
   border-radius: 50%;
   border: 5px solid var(--primary);
   border-color: var(--primary) transparent var(--primary) transparent;
   animation: loader 1.2s linear infinite;
}

@keyframes loader {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

#content {
   height: 100%;
}

.wrapper.svelte-1ibybk.svelte-1ibybk{min-height:100vh;width:100vw;display:flex;align-items:center;justify-content:center;padding:1rem;box-sizing:border-box}.container.svelte-1ibybk.svelte-1ibybk{border-radius:4px;position:relative;padding-top:2.5rem;width:25rem;min-height:calc(100px + 2.5rem);min-width:100px;margin-top:3rem}.title-container.svelte-1ibybk.svelte-1ibybk{margin:-4.8rem auto 0 auto;max-width:250px;background-color:var(--primary);color:white;border-radius:4px;text-align:center}.title-container.svelte-1ibybk>h1.svelte-1ibybk{font-size:2rem;line-height:1}.content-container.svelte-1ibybk.svelte-1ibybk{padding:2em;margin:0 auto;max-width:380px;overflow:hidden}.loading_container.svelte-1ibybk.svelte-1ibybk{filter:blur(1px) opacity(50%)}.loader_container.svelte-1ibybk.svelte-1ibybk{position:absolute;display:flex;flex-direction:column;justify-content:center;top:0;bottom:0;left:0;right:0;z-index:2}
.error.svelte-12ijoj5{color:var(--error);padding:4px}
.checkmark__circle.svelte-108jjh0{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;stroke:#7ac142;fill:none;animation:svelte-108jjh0-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.checkmark.svelte-108jjh0{width:56px;height:56px;border-radius:50%;display:block;stroke-width:2;stroke:#fff;stroke-miterlimit:10;margin:10% auto;box-shadow:inset 0px 0px 0px #7ac142;animation:svelte-108jjh0-fill 0.4s ease-in-out 0.4s forwards,
      svelte-108jjh0-scale 0.3s ease-in-out 0.9s both}.checkmark__check.svelte-108jjh0{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:svelte-108jjh0-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards}@keyframes svelte-108jjh0-stroke{100%{stroke-dashoffset:0}}@keyframes svelte-108jjh0-scale{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes svelte-108jjh0-fill{100%{box-shadow:inset 0px 0px 0px 30px #7ac142}}.scale.svelte-108jjh0{transform:scale(1.5)}
ul.svelte-1qhbaoc{list-style:none;-webkit-padding-start:0;padding-inline-start:0;margin-bottom:0}li.svelte-1qhbaoc{border-top:1px grey solid;padding:1em;cursor:pointer;display:flex}li.svelte-1qhbaoc:hover{background-color:#e2e2e2}li.svelte-1qhbaoc:first-child{border-top:none !important}.icon.svelte-1qhbaoc{height:1.5rem;width:1.5rem}.name.svelte-1qhbaoc{margin-left:1rem;line-height:1.5rem;font-size:20px;flex-grow:1}.to-list.svelte-1qhbaoc{color:var(--primary);text-decoration:none;margin-right:1rem}