@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Mulish:wght@300;400;500;600;700&display=swap);
@charset "UTF-8";
:root {
  --primary: #9C21AF;
  --primary-dark: #86099a;
  --primary-light: #a664b0;
  --primary-dimmed: #d2a6d9;
  --primary-vanished: #fce7ff;
  --background: #fafafe;
  --white: #fff;
  --black: #000;
  --gray: #6177A4;
  --gray-light: #97a9ce;
  --gray-dark: #3f5b94;
  --dimmed: #f8f8ff;
  --vanished: #eaeaea;
  --red: #E91E63;
  --red-dark: #880E4F;
  --green: #689F38;
  --green-dark: #33691E;
  --blue: #03A9F4;
  --blue-dark: #0277BD;
  --yellow: #FFC107;
  --yellow-dark: #FFA000;
  --yellow-light: #FFE082;
  --head-font: "Montserrat", sans-serif;
  --body-font: "Mulish", sans-serif;
  --body-font-color: #1e1e1e;
  --font-size: 16px;
  --font-size-xs: 10px;
  --font-size-sm: 12px;
  --font-size-md: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-xxl: 26px;
  --font-size-xxxl: 32px;
  --font-size-xxxxl: 48px;
  --max-width-desktop: 1200px;
}

/* GRID SYSTEM https://github.com/zachacole/Simple-Grid */
.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  position: relative;
  width: 100%;
}

.row [class^=col] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) { /* 540px */
  .container {
    width: 80%;
  }
}
@media only screen and (min-width: 45em) { /* 720px */
  .col-1 {
    width: 4.33%;
  }
  .col-2 {
    width: 12.66%;
  }
  .col-3 {
    width: 21%;
  }
  .col-4 {
    width: 29.33%;
  }
  .col-5 {
    width: 37.66%;
  }
  .col-6 {
    width: 46%;
  }
  .col-7 {
    width: 54.33%;
  }
  .col-8 {
    width: 62.66%;
  }
  .col-9 {
    width: 71%;
  }
  .col-10 {
    width: 79.33%;
  }
  .col-11 {
    width: 87.66%;
  }
  .col-12 {
    width: 96%;
  }
  .hidden-sm {
    display: block;
  }
}
@media only screen and (min-width: 60em) { /* 960px */
  .container {
    width: 75%;
    max-width: 60rem;
  }
}
.animated {
  transition: all 0.1s;
}

.animated:hover {
  transform: scale(1.2);
}

.component-fade-enter-active, .component-fade-leave-active {
  transition: opacity 0.2s ease;
}

.component-fade-enter, .component-fade-leave-to {
  opacity: 0;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.3s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.bounce-enter-active {
  animation: bounce-in 0.3s;
}

.bounce-leave-active {
  animation: bounce-in 0.3s reverse;
}

.flip-list-move {
  transition: transform 0.8s ease;
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite both;
}
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
.pulsate {
  animation: pulsate-bck 0.5s ease-in-out infinite both;
}
@keyframes pulsate-bck {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.blink {
  animation: blink 3s infinite both;
}
@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.wave-red {
  animation: wave-red 1s infinite;
}

@keyframes wave-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}
.icon-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-xs {
  height: 0.5em;
  width: 0.5em;
}

.icon-sm {
  height: 1em;
  width: 1em;
}

.icon-md {
  height: 2em;
  width: 2em;
}

.icon-lg {
  height: 3em;
  width: 3em;
}

.icon-xl {
  height: 6em;
  width: 6em;
}

.icon-xxl {
  height: 9em;
  width: 9em;
}

.icon-invert {
  filter: invert(1);
}

.icon-bright {
  filter: brightness(10);
}

.chevron-down {
  transform: rotate(90deg);
}

.chevron-up {
  transform: rotate(-90deg);
}

.round-0 {
  border-radius: 0;
}

.round-sm {
  border-radius: 3px;
}

.round-md {
  border-radius: 6px;
}

.round-lg {
  border-radius: 12px;
}

.round-xl {
  border-radius: 36px;
}

.round-full {
  border-radius: 50%;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.p-sticky {
  position: sticky;
}

.p-relative {
  position: relative;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.left-0 {
  left: 0;
}

.bottom-0 {
  bottom: 0;
}

.w-100 {
  width: 100% !important;
}

.w-75 {
  width: 75% !important;
}

.w-66 {
  width: 66.66% !important;
}

.w-50 {
  width: 50% !important;
}

.w-33 {
  width: 33.33% !important;
}

.w-25 {
  width: 25% !important;
}

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100%;
}

.full-height {
  height: 100vh;
}

.no-border {
  border: none;
}

.border-solid {
  border: solid;
}

.border-dashed {
  border: dashed;
}

.border-dotted {
  border: dotted;
}

.border-sm {
  border-width: 1px;
}

.border-md {
  border-width: 2px;
}

.border-lg {
  border-width: 3px;
}

.border-xl {
  border-width: 6px;
}

.border-dark {
  border-color: var(--dark);
}

.border-darkish {
  border-color: var(--darkish);
}

.border-background {
  border-color: var(--background);
}

.border-light {
  border-color: var(--light);
}

.border-gray {
  border-color: var(--gray);
}

.border-red {
  border-color: var(--red);
}

.border-green {
  border-color: var(--green);
}

.border-primary {
  border-color: var(--primary);
}

.border-secondary {
  border-color: var(--secondary);
}

.border-dimmed {
  border-color: var(--dimmed);
}

.shadow-sm {
  box-shadow: 0 2px 4px var(--darkish);
}

.shadow-md {
  box-shadow: 0 4px 8px var(--darkish);
}

.shadow-lg {
  box-shadow: 0 8px 16px var(--darkish);
}

.shadow-xl {
  box-shadow: 0 16px 32px var(--darkish);
}

.m0 {
  margin: 0 !important;
}

.m-auto {
  margin: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.my-1 {
  margin: 1em 0;
}

.my-2 {
  margin: 2em 0;
}

.my-3 {
  margin: 3em 0;
}

.mx-1 {
  margin: 0 1em;
}

.mx-2 {
  margin: 0 2em;
}

.mx-3 {
  margin: 0 3em;
}

.mb-05 {
  margin-bottom: 0.5em !important;
}

.mt-05 {
  margin-top: 0.5em !important;
}

.mt-1 {
  margin-top: 1em !important;
}

.mt-2 {
  margin-top: 2em !important;
}

.mt-3 {
  margin-top: 3em !important;
}

.mb-1 {
  margin-bottom: 1em !important;
}

.mb-2 {
  margin-bottom: 2em !important;
}

.mb-3 {
  margin-bottom: 3em !important;
}

.ml-05 {
  margin-left: 0.5em !important;
}

.ml-1 {
  margin-left: 1em !important;
}

.ml-2 {
  margin-left: 2em !important;
}

.ml-3 {
  margin-left: 3em !important;
}

.mr-1 {
  margin-right: 1em !important;
}

.mr-2 {
  margin-right: 2em !important;
}

.mr-3 {
  margin-right: 3em !important;
}

.mr-4 {
  margin-right: 4em !important;
}

.mr-5 {
  margin-right: 5em !important;
}

.p0 {
  padding: 0 !important;
}

.py-05 {
  padding: 0.5em 0;
}

.py-1 {
  padding: 1em 0;
}

.py-2 {
  padding: 2em 0;
}

.py-3 {
  padding: 3em 0;
}

.px-05 {
  padding: 0 0.5em;
}

.px-1 {
  padding: 0 1em;
}

.px-2 {
  padding: 0 2em;
}

.px-3 {
  padding: 0 3em;
}

.pt-05 {
  padding-top: 0.5em !important;
}

.pt-1 {
  padding-top: 1em !important;
}

.pt-2 {
  padding-top: 2em !important;
}

.pt-3 {
  padding-top: 3em !important;
}

.pb-05 {
  padding-bottom: 0.5em !important;
}

.pb-1 {
  padding-bottom: 1em !important;
}

.pb-2 {
  padding-bottom: 2em !important;
}

.pb-3 {
  padding-bottom: 3em !important;
}

.pl-05 {
  padding-left: 0.5em !important;
}

.pl-1 {
  padding-left: 1em !important;
}

.pl-2 {
  padding-left: 2em !important;
}

.pl-3 {
  padding-left: 3em !important;
}

.pr-05 {
  padding-right: 0.5em !important;
}

.pr-1 {
  padding-right: 1em !important;
}

.pr-2 {
  padding-right: 2em !important;
}

.pr-3 {
  padding-right: 3em !important;
}

.child-y-spacing-sm > * {
  margin: 0.5em 0;
}

.child-y-spacing-md > * {
  margin: 1em 0;
}

.child-y-spacing-lg > * {
  margin: 1.5em 0;
}

.child-x-spacing-sm > * {
  margin: 0 0.5em;
}

.child-x-spacing-md > * {
  margin: 0 1em;
}

.child-x-spacing-lg > * {
  margin: 0 1.5em;
}

.text-light {
  font-weight: lighter;
}

.text-semi-heavy {
  font-weight: 500;
}

.text-heavy {
  font-weight: bold;
}

.text-dark {
  color: var(--black) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.text-vanished {
  color: var(--vanished) !important;
}

.text-primary {
  color: var(--primary);
}

.text-dark {
  color: var(--dark);
}

.text-secondary {
  color: var(--secondary);
}

.text-red {
  color: var(--red);
}

.text-green {
  color: var(--green);
}

.text-blue {
  color: var(--blue);
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-upper {
  text-transform: uppercase;
}

.text-lower {
  text-transform: lowercase;
}

.text-truncated {
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-truncated-2-lines {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-truncated-3-lines {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-truncated-4-lines {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-xxs {
  font-size: 9px !important;
}

.text-xs {
  font-size: var(--font-size-xs) !important;
}

.text-sm {
  font-size: var(--font-size-sm) !important;
}

.text-lg {
  font-size: var(--font-size-lg) !important;
}

.text-xl {
  font-size: var(--font-size-xl) !important;
}

.text-xxl {
  font-size: var(--font-size-xxl) !important;
}

.text-xxxl {
  font-size: var(--font-size-xxxl) !important;
}

.text-xxxxl {
  font-size: var(--font-size-xxxxl) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-primary-dark {
  background-color: var(--primary-dark) !important;
}

.bg-primary-light {
  background-color: var(--primary-light) !important;
}

.bg-primary-vanished {
  background-color: var(--primary-vanished) !important;
}

.bg-green {
  background-color: var(--green) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.bg-red {
  background-color: var(--red) !important;
}

.bg-red-dark {
  background-color: var(--red-dark) !important;
}

.bg-yellow {
  background-color: var(--yellow) !important;
}

.bg-yellow-light {
  background-color: var(--yellow-light) !important;
}

.bg-dimmed {
  background-color: var(--dimmed) !important;
}

.btn-success {
  background-color: var(--green);
  border-color: var(--green-dark);
  color: var(--white);
}

.btn-success:hover {
  background-color: var(--green-dark);
}

.btn-info {
  background-color: var(--blue);
  border-color: var(--blue-dark);
  color: var(--white);
}

.btn-info:hover {
  background-color: var(--blue-dark);
}

.btn-danger {
  background-color: var(--red);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn-danger:hover {
  background-color: var(--red-dark);
}

.btn-warning {
  background-color: var(--yellow);
  border-color: var(--yellow-dark);
  color: var(--white);
}

.btn-warning:hover {
  background-color: var(--yellow-dark);
}

.btn-neutral {
  background-color: var(--gray);
  border-color: var(--gray-dark);
  color: var(--white);
}

.btn-neutral:hover {
  background-color: var(--gray-dark);
}

.list-unstyled {
  list-style-type: none;
}

.list-numeric {
  list-style-type: decimal;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-auto {
  overflow-y: auto;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-left {
  justify-content: left;
}

.justify-content-right {
  justify-content: right;
}

.pointer {
  cursor: pointer;
}

.handle {
  cursor: grab;
}

.handle:active {
  cursor: grabbing !important;
}

.cursor-help {
  cursor: help;
}

.move-cursor {
  cursor: move;
}

.grayscale {
  filter: grayscale(1);
}

.no-select {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

[disabled],
[readonly] {
  opacity: 0.5;
  cursor: not-allowed;
}

.opacity-1 {
  opacity: 1;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-06 {
  opacity: 0.6;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-03 {
  opacity: 0.3;
}

.opacity-02 {
  opacity: 0.2;
}

.opacity-01 {
  opacity: 0.1;
}

.opacity-0 {
  opacity: 0;
}

.badge.primary {
  color: var(--primary);
}

.badge.light {
  color: var(--light);
}

.badge.green {
  color: var(--green);
}

.badge.blue {
  color: var(--blue);
}

.badge.red {
  color: var(--red);
}

.hidden {
  display: none !important;
}

div:where(.swal2-container).swal2-backdrop-show, div:where(.swal2-container).swal2-noanimation {
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
}

div:where(.swal2-container).swal2-center > .swal2-popup {
  border-radius: 16px !important;
}

div:where(.swal2-container) button:where(.swal2-styled) {
  border: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  padding: 16px 20px !important;
  border-radius: 12px !important;
  outline: none !important;
  font-weight: bold !important;
  color: var(--white) !important;
  transition: all 0.1s !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  background: var(--primary) !important;
  border-bottom: solid 6px var(--primary-dark) !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
  background: var(--gray) !important;
  border-bottom: solid 6px var(--gray-dark) !important;
}

body.swal2-toast-shown .swal2-container {
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
}

.swal2-popup.swal2-toast {
  box-shadow: 0 16px 16px rgba(0, 0, 0, 0.1) !important;
  border: solid 2px var(--primary);
  border-radius: 12px;
}

div:where(.swal2-icon).swal2-warning {
  border-color: var(--yellow) !important;
  background-color: var(--yellow) !important;
  color: var(--white) !important;
}

div:where(.swal2-icon).swal2-info {
  border-color: var(--blue) !important;
  background-color: var(--blue) !important;
  color: var(--white) !important;
}

div:where(.swal2-icon).swal2-question {
  border-color: var(--gray-dark) !important;
  background-color: var(--gray-dark) !important;
  color: var(--white) !important;
}

div:where(.swal2-icon).swal2-error {
  border-color: var(--red) !important;
  background-color: var(--red) !important;
  color: var(--white) !important;
}

div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line] {
  background-color: var(--white) !important;
}

div:where(.swal2-icon).swal2-success {
  border-color: var(--green) !important;
  background-color: var(--green) !important;
  color: var(--white) !important;
}

div:where(.swal2-icon).swal2-success .swal2-success-ring {
  background-color: var(--green) !important;
  border: 0.25em solid var(--green) !important;
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
  background-color: var(--white) !important;
  z-index: 3 !important;
}

* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  background: var(--background);
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

::-moz-selection {
  background-color: var(--gray-dark);
  color: var(--white);
}

::selection {
  background-color: var(--gray-dark);
  color: var(--white);
}

body {
  font-family: var(--body-font);
  font-size: var(--font-size);
  background-color: var(--background);
  color: var(--body-font-color);
  margin: 0;
  letter-spacing: -0.5px;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--head-font);
  font-weight: 600;
  color: inherit;
}

.card {
  background-color: white;
  padding: 2em 3em;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  position: relative;
}

.tag {
  background: var(--primary-vanished);
  padding: 3px 9px;
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: bold;
  display: inline-block;
  border: none;
  border-radius: 36px;
}

.badge {
  display: block;
  font-weight: 900;
  position: absolute;
  transform: skew(6deg, -6deg);
  background: var(--gray-dark);
  padding: 4px 8px;
  color: var(--white);
  white-space: nowrap;
  border-radius: 2px;
  border: transparent solid 2px;
  text-transform: uppercase;
}

.sheet {
  margin: auto;
  margin-top: 1em;
  display: block;
  width: 80%;
  min-width: 320px;
  min-height: 28em;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 2em;
  position: relative;
  z-index: 0;
  transform-style: preserve-3d;
}
.sheet > * {
  padding: 1em;
  border: solid 1px var(--vanished);
  border-radius: 3px;
  margin-top: 1em;
  position: relative;
}
.sheet > *:first-child {
  margin-top: 0;
}
.sheet .field-list {
  list-style-type: none;
  padding: 1em;
}
.sheet .field-list li {
  position: relative;
}
.sheet .field-list .field-item:first-child {
  margin-top: 1em;
}
.sheet .field-list .field-item {
  position: relative;
  margin: 2em 0;
  transition: all 0.2s;
}
.sheet .field-list .field-item label {
  display: block;
  position: absolute;
  background: var(--dimmed);
  border-radius: 36px;
  padding: 0px 12px;
  font-weight: bold;
  top: -25%;
  z-index: 1;
}
.sheet .field-list .field-item label.label-checkbox {
  position: relative;
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 4px;
  padding: 1em;
}
.sheet .field-list .field-item label.label-checkbox input {
  display: block;
  width: 2em;
  margin: auto 1em;
  height: 2em;
}
.sheet .field-list .field-item label.label-checkbox span {
  display: block;
  margin: auto 0.5em;
}
.sheet .field-list .field-item input, .sheet .field-list .field-item select, .sheet .field-list .field-item textarea {
  width: 100%;
}
.sheet .field-list .field-item.editing label {
  box-shadow: 0 0 32px var(--green);
}
.sheet .field-list .field-edit-tools {
  position: absolute;
  bottom: -22px;
  right: 0;
  padding: 3px;
  z-index: 1;
}

.sheet:before, .sheet:after {
  content: "";
  height: 98%;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.sheet:before {
  background: var(--primary-vanished);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  left: -5px;
  top: 4px;
  transform: rotate(-2.5deg) translateZ(-1px);
}

.sheet:after {
  background: var(--primary-light);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  right: -3px;
  top: 1px;
  transform: rotate(1.4deg) translateZ(-1px);
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  background: rgba(0, 0, 0, 0.66);
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal > .content {
  margin: auto;
  background: var(--white);
  width: 320px;
  max-width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  padding: 2em;
  padding-bottom: 2em !important;
}
.modal > .content > .head {
  display: flex;
  position: sticky;
  top: 0;
  border-bottom: solid 2px var(--vanished);
  z-index: 1;
  background: inherit;
}
.modal > .content > .head > .close {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: auto 0 auto auto;
  display: block;
  padding: 1em;
  font-weight: bold;
  color: var(--primary);
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

input[type=text],
input[type=number],
input[type=url],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=date],
textarea,
select,
button {
  border: none;
  font-size: inherit;
  font-family: inherit;
  padding: 8px 16px;
  border-radius: 12px;
  outline: none;
}

input[type=text],
input[type=number],
input[type=url],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=date],
textarea,
select {
  background-color: var(--white);
  border: solid 1px var(--vanished);
  color: var(--primary);
  padding: 12px 16px;
}

input[type=date]::before {
  color: var(--gray);
  content: attr(placeholder) ":  ";
}

input[type=date]:focus::before {
  content: "" !important;
}

[contenteditable] {
  outline: none;
  border: solid 1px transparent;
}

[contenteditable]:focus,
input[type=text]:focus,
input[type=number]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=date]:focus,
textarea:focus,
select:focus {
  border-style: solid;
  border-width: 1px;
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

label {
  color: var(--gray);
}

a {
  color: var(--primary-light);
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
}

a:hover {
  color: var(--primary-dark);
  border-bottom: solid 1px;
}

form.form-block input[type=text],
form.form-block input[type=number],
form.form-block input[type=url],
form.form-block input[type=password],
form.form-block input[type=email],
form.form-block input[type=tel],
form.form-block input[type=search],
form.form-block input[type=date],
form.form-block label,
form.form-block button,
form.form-block textarea,
form.form-block select {
  margin-top: 1em;
  display: block;
  width: 100%;
}

button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  font-weight: bold;
  color: var(--white);
  transition: all 0.1s;
  background: var(--primary);
  border-bottom: solid 6px var(--primary-dark);
}

button:hover {
  transform: translate(0, -2px);
  background: var(--primary-dark);
  box-shadow: 2px 8px 16px rgba(0, 0, 0, 0.1);
}

button:active {
  transform: none;
}

button:focus {
  box-shadow: 0 0 12px var(--primary);
}

button.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

label.checkbox {
  display: block;
  position: relative;
  padding-left: 2em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

label.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--primary-vanished);
}

label.checkbox:hover input ~ .checkmark {
  background-color: var(--primary-light);
}

label.checkbox input:checked ~ .checkmark {
  background-color: var(--primary);
}

label.checkbox input[disabled] ~ .checkmark {
  pointer-events: none;
  cursor: disabled !important;
  opacity: 0.5;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

label.checkbox input:checked ~ .checkmark:after {
  display: block;
}

label.checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.login-box, .restore-pass-box {
  min-width: 280px;
  z-index: 1;
}

main {
  width: calc(100vw - 320px);
  overflow: auto;
  height: 100vh;
}
main .content {
  padding: 1em 3em;
  padding-bottom: 6em !important;
}
main .content section {
  min-height: 60vh;
  max-width: var(--max-width-desktop);
  margin: auto;
}
main .section-title {
  font-size: 24px;
  margin: auto;
}
main .section-title small {
  display: block;
  font-size: 12px;
  color: var(--gray-light);
  margin: 1em 0;
}

aside {
  min-width: 320px;
  width: 320px;
  height: 100vh;
  background: var(--white);
  color: var(--gray);
  position: relative;
}
aside ul {
  height: 100%;
  overflow: auto;
}
aside ul li {
  cursor: pointer;
  padding: 2em;
  transition: all 0.1s;
}
aside ul li:not(:first-child) {
  display: flex;
}
aside ul li:not(:first-child) img {
  min-width: 3em;
}
aside ul li:not(:first-child) h4 {
  width: 100%;
  text-align: left;
  margin-left: 2em !important;
}
aside ul li:not(:first-child):hover {
  background-color: var(--primary-vanished);
}
aside ul li.router-link-exact-active.router-link-active {
  background-color: var(--primary);
  color: var(--white);
}
aside ul li.router-link-exact-active.router-link-active img {
  filter: brightness(10);
}

nav {
  height: 6em;
  max-width: var(--max-width-desktop);
  margin: auto;
  color: var(--gray);
}
nav .menu-mobile {
  display: none;
  background: transparent;
  height: 2em;
  width: 2em;
  margin: auto;
  cursor: pointer;
}
nav .menu-mobile span {
  display: block;
  border-radius: 36px;
  background-color: var(--primary);
  width: 100%;
  height: 3px;
  margin-top: 6px;
}

.table-container {
  border-radius: inherit;
  position: relative;
}
.table-container .loading, .table-container .empty {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  display: flex;
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  text-align: center;
  z-index: 3;
  border-radius: inherit;
}
.table-container .loading *, .table-container .empty * {
  z-index: 1;
}
.table-container .loading h4, .table-container .empty h4 {
  font-size: 24px;
}
.table-container .loading img, .table-container .empty img {
  display: block;
  margin: auto;
  width: 6em;
  height: 6em;
}

.table-wrapper {
  overflow: auto;
  border-radius: 12px;
  position: relative;
  height: 24em;
  width: 100%;
}

.table-pagination {
  padding: 1em;
  text-align: center;
  border-top: solid 2px var(--vanished);
}

table {
  font-family: inherit;
  border-collapse: collapse;
  width: 100%;
}

table td, table th {
  border: none;
  padding: 0.5em;
}

table tr:nth-child(even) {
  background-color: var(--dimmed);
}

table tr:hover {
  background-color: var(--primary-vanished);
}

table th {
  padding: 12px;
  text-align: left;
  color: var(--gray);
  font-weight: bolder;
  font-size: 14px;
  text-transform: uppercase;
  font-family: var(--head-font);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--white);
}

table th, table td {
  text-align: center;
}

table tr.inactive {
  opacity: 0.3;
  background-color: var(--gray-light);
  cursor: not-allowed;
}

.loading, .empty {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  display: flex;
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  text-align: center;
  z-index: 2;
  border-radius: inherit;
}
.loading *, .empty * {
  z-index: 1;
}

.mobile-action-bar .head {
  display: none;
}
.mobile-action-bar .toggle {
  position: absolute;
  z-index: 5;
  width: 30%;
  top: -6px;
  right: 0;
  border-radius: 0;
  border: 0;
  padding: 18px 16px;
}

@media (max-width: 1200px) {
  main {
    width: 100%;
  }
  main .content {
    padding: 2em;
  }
  aside {
    position: absolute;
    z-index: 6;
    transition: all 0.3s;
    transform: translateX(-100%);
  }
  aside .copy {
    opacity: 0.3;
  }
  aside.opened:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    margin-left: 100%;
    margin-right: -100vw;
    -webkit-backdrop-filter: blur(32px);
            backdrop-filter: blur(32px);
  }
  aside.opened {
    transform: translateX(0);
  }
  nav {
    height: 4em;
    background: var(--white);
  }
  nav .menu-mobile {
    display: block;
  }
}
@media (max-width: 719px) {
  nav {
    padding: 0 1em !important;
    background: var(--white);
    position: fixed;
    width: 100%;
    z-index: 4;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  nav .icon-bg {
    display: none !important;
  }
  nav h4 span:last-child {
    display: none;
  }
  main .content {
    padding: 6px;
    padding-top: 5em;
  }
  main .section-title {
    font-size: 18px;
  }
  main .section-title small {
    margin-top: 3px;
  }
  .card {
    padding: 1em;
  }
  table {
    width: 100%;
  }
  table thead {
    display: none;
  }
  table tr {
    margin-bottom: 2em;
    display: block;
    border: solid 2px var(--vanished);
  }
  table tr:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  table tr:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-bottom: 0;
  }
  table tr:hover {
    background-color: initial;
  }
  table td {
    display: flex;
    padding: 4px 0;
    border-bottom: solid 2px var(--vanished);
  }
  table td * {
    display: block !important;
    text-align: left;
    margin: auto auto auto 0 !important;
  }
  table td .icon-bg {
    width: 4em;
    height: 4em;
    margin-left: 0 !important;
  }
  table td .d-flex {
    display: list-item !important;
    list-style-type: none;
  }
  table td .d-flex button {
    width: 100%;
    text-align: center;
    margin-bottom: -1em !important;
  }
  table td::before {
    content: attr(data-label);
    font-weight: bolder;
    font-size: var(--font-size-sm);
    font-family: var(--head-font);
    text-transform: uppercase;
    width: 60px;
    min-width: 60px;
    word-wrap: break-word;
    color: var(--gray);
    text-align: left;
    padding: 12px;
    background: var(--dimmed);
    margin-right: 1em;
  }
  .mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    width: 100%;
    padding: 12px;
    z-index: 5;
    box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.2);
    margin: 0 !important;
    transition: all 0.3s;
    transform: translateY(calc(100% - 3em));
    max-height: 50vh;
    overflow: hidden auto;
    padding: 0;
  }
  .mobile-action-bar .toggle {
    display: block;
  }
  .mobile-action-bar .d-flex {
    display: inline-block !important;
    width: 100%;
  }
  .mobile-action-bar .float-left, .mobile-action-bar .float-right {
    float: none !important;
    width: 100%;
  }
  .mobile-action-bar input, .mobile-action-bar select, .mobile-action-bar button {
    width: 100%;
    margin: 6px 0 !important;
  }
  .mobile-action-bar.opened {
    transform: translateY(0);
  }
  .mobile-action-bar .head {
    position: sticky;
    top: -1px;
    background-color: var(--white);
    left: 0;
    right: 0;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    z-index: 1;
    width: 100%;
    display: block;
  }
  .mobile-action-bar .head h5 {
    color: var(--primary);
    font-family: var(--head-font);
    font-size: var(--font-size-md);
    font-weight: bolder;
    text-align: left;
  }
  .sheet {
    padding: 1em !important;
    min-width: 100%;
  }
  .sheet .head .text-xxxl {
    font-size: var(--font-size-lg) !important;
  }
  .sheet .citizen-selector {
    flex-direction: column-reverse;
  }
  .sheet .citizen-selector > button {
    width: 100% !important;
    margin: auto !important;
    margin-bottom: 1em !important;
  }
  .sheet > * {
    padding: 16px 8px;
  }
  .builder > .d-flex {
    flex-direction: column-reverse;
  }
  .builder .sidebar {
    margin-top: 1em;
  }
  .builder .sidebar .input-list-selector {
    padding: 0 0 3em;
  }
  .builder .sidebar .input-list-selector:before {
    content: "Desliza de aquí a la derecha";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    font-size: var(--font-size-md);
    color: var(--primary-light);
    background: var(--dimmed);
    padding: 16px;
    right: 0;
    text-align: center;
  }
  .builder .sidebar .input-list-selector ul {
    display: inline-block;
    white-space: nowrap;
  }
  .builder .sidebar .input-list-selector ul li {
    display: inherit;
    margin: 0 6px !important;
  }
  .builder .sidebar .head {
    position: sticky;
    left: 0;
  }
  .builder .preview {
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  aside {
    width: 100%;
  }
  aside ul li:not(:first-child) h4 {
    margin-left: auto !important;
  }
  aside ul li:not(:first-child) img {
    display: none;
  }
  aside.opened:after {
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
