@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ubuntu/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;
}

/*
@font-face {
    font-family: Gotham;
    src: url("/assets/fonts/gotham/regular.otf") format("opentype");
}
*/

.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 {
  -webkit-animation: bounce-in 0.3s;
          animation: bounce-in 0.3s;
}

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

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

@-webkit-keyframes bounce-in {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

.heartbeat {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  10% {
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  17% {
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  33% {
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  45% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  10% {
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  17% {
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  33% {
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  45% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.pulsate {
  -webkit-animation: pulsate-bck 0.5s ease-in-out infinite both;
  animation: pulsate-bck 0.5s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-bck {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pulsate-bck {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.vibrate {
  -webkit-animation: vibrate-1 0.6s linear infinite both;
  animation: vibrate-1 0.6s linear infinite both;
}

@-webkit-keyframes vibrate-1 {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes vibrate-1 {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

/* 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;
  }
}

:root {
  --font-size-xl: 18px;
  --font-size-lg: 16px;
  --font-size-body: 14px;
  --font-size-sm: 12px;
  --font-size-xs: 10px;
  --font-family-body: "Ubuntu", sans-serif;
  --font-color-body: #22282b;
  --dark: #000000;
  --light: #ffffff;
  --dimmed: #eceff1;
  --gray: #9e9e9e;
  --primary: #712A62;
  --purple: #8C2853;
  --secondary: #A32349;
  --red: #B91E3C;
  --green: #8bc34a;
  --blue: #3f51b5;
  --default-modal-width: 38em;
}

* {
  box-sizing: border-box;
  scrollbar-color: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--font-family-body);
  font-size: var(--font-size-body);
  color: var(--font-color-body);
  font-weight: normal;
}

nav {
  position: fixed;
  left: 0;
  right: 0;
  min-height: 4em;
  z-index: 1022;
}

main.app {
  position: relative;
  height: 100vh;
  width: calc(100vw - 16em);
  padding-top: 4.2em;
  margin-left: 18em;
}

main.app.wide {
  width: calc(100vw);
  margin-left: 0;
}

main.app section {
  padding: 1em 2em;
  height: calc(100vh - 4em);
}

.card {
  position: relative;
  padding: 2em 1em;
}

.modal {
  background: rgba(0, 0, 0, 0.4);
  z-index: 1024;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
}

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

.static-modal {
  background: rgba(0, 0, 0, 0.4);
  z-index: 1024;
  overflow: auto;
}

.modal > .inner,
.static-modal > .inner {
  max-width: 100%;
  width: var(--default-modal-width);
}

.btn,
button {
  cursor: pointer;
  text-transform: uppercase;
  color: var(--light);
  transition: all 0.2s;
  background: var(--green);
}

.btn:hover,
button:hover {
  background: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=search],
input[type=url],
input[type=date],
textarea,
select,
button,
.btn {
  padding: 12px 16px;
  font-family: inherit;
}

.input-xs,
.btn-xs {
  padding: 6px 10px !important;
  font-size: var(--font-size-xs) !important;
}

.input-sm,
.btn-sm {
  padding: 9px 13px !important;
  font-size: var(--font-size-sm) !important;
}

.input-lg,
.btn-lg {
  padding: 16px 22px !important;
  font-size: var(--font-size-lg) !important;
}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=search],
input[type=url],
input[type=date],
select,
textarea {
  outline: none;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=url]:focus,
input[type=date]:focus,
select:focus,
textarea:focus {
  color: var(--green) !important;
  border-color: var(--green) !important;
}

img {
  max-width: 100%;
}

blockquote {
  font-style: italic;
  font-size: 12px;
  word-break: break-all;
}

.table-responsive {
  overflow: auto;
  height: 40vh;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table td,
table th {
  border: none;
  padding: 8px;
  text-align: center;
}

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

table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--primary);
  color: var(--light);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  text-align: center;
}

.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;
}

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

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

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

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

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

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

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

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

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.p-sticky {
  position: -webkit-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;
}

.h-100 {
  height: 100% !important;
}

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

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

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

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

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

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

.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-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 rgba(0, 0, 0, 0.06);
}

.shadow-md {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.shadow-xl {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.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;
}

.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-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;
}

.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-1 {
  padding-top: 1em !important;
}

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

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

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

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

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

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

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

.pl-3 {
  padding-left: 3em !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-dark {
  color: var(--dark);
}

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

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

.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;
}

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

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

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

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

.text-truncated {
  display: block;
  overflow: hidden;
}

.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;
}

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

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

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

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

.bg-secondary {
  background-color: var(--secondary);
}

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

.bg-purple {
  background-color: var(--purple);
}

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

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

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

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

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

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

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

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

.pointer {
  cursor: pointer;
}

.move-cursor {
  cursor: move;
}

.grayscale {
  filter: grayscale(1);
}

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

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

.opacity-1 {
  opacity: 1;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-0 {
  opacity: 0;
}

.badge {
  white-space: nowrap;
  padding: 2px 6px;
}

.swal2-styled.swal2-confirm {
  background: var(--green) !important;
}

.swal2-styled.swal2-cancel {
  background: var(--gray) !important;
}

.swal2-title,
.swal2-content,
.swal2-styled.swal2-confirm,
.swal2-styled.swal2-deny,
.swal2-styled.swal2-cancel,
.swal2-validation-message {
  font-size: var(--font-size-body) !important;
}

.swal2-file,
.swal2-input,
.swal2-textarea {
  border: solid 1px var(--gray) !important;
  border-radius: 6px !important;
  background: inherit !important;
  box-shadow: none !important;
  font-size: var(--font-size-body) !important;
}

@media (max-width: 768px) {
  nav {
    z-index: 1032;
  }

  main.app {
    width: 100vw;
    margin-left: 0;
  }
}

